User Details
User Details
- User Since
- Sep 25 2024, 4:11 AM (78 w, 4 d)
Sep 26 2024
Sep 26 2024
bdcom.dragon_gmail.com added a comment to D16851: Add support for header chain validation on IPv6 Fragments (RFC7112).
I think we just need to check first fragments in frag6_input() and check whole header chain everytime:
if (fragoff == 0)
{
if (!ip6_valid_hdrchain(&m, off, nxt, frgpartlen))
{
icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_MISSING_HDR, 0);
return (IPPROTO_DONE);
}
}This will conform with RFC 8200, page 21, last paragraph.
Sep 25 2024
Sep 25 2024
bdcom.dragon_gmail.com added inline comments to D16851: Add support for header chain validation on IPv6 Fragments (RFC7112).