Page MenuHomeFreeBSD

bdcom.dragon_gmail.com (Shahriar Shanto)
Research

Projects

User does not belong to any projects.

User Details

User Since
Sep 25 2024, 4:11 AM (78 w, 4 d)

Recent Activity

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 26 2024, 7:07 AM

Sep 25 2024

bdcom.dragon_gmail.com added inline comments to D16851: Add support for header chain validation on IPv6 Fragments (RFC7112).
Sep 25 2024, 5:37 AM
bdcom.dragon_gmail.com updated bdcom.dragon_gmail.com.
Sep 25 2024, 5:22 AM