Page MenuHomeFreeBSD

PF: Handle fragmented IPv6 packets
ClosedPublic

Authored by kp on Feb 3 2015, 8:06 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 4 2024, 1:55 AM
Unknown Object (File)
Dec 23 2023, 5:33 AM
Unknown Object (File)
Nov 10 2023, 12:38 AM
Unknown Object (File)
Nov 9 2023, 2:31 PM
Unknown Object (File)
Nov 7 2023, 1:34 AM
Unknown Object (File)
Nov 4 2023, 11:03 PM
Unknown Object (File)
Nov 3 2023, 4:06 AM
Unknown Object (File)
Oct 11 2023, 3:40 AM

Details

Reviewers
glebius
Summary

Roughly based on the OpenBSD work by Alexander Bluhm.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

kp retitled this revision from to PF: Handle fragmented IPv6 packets.
kp updated this object.
kp edited the test plan for this revision. (Show Details)
kp added a parent revision: D1764: Factor out ip6_deletefraghdr().
kp added a subscriber: Unknown Object (MLST).Feb 3 2015, 8:52 PM

Kristof, big thanks for working on this. See my comments.

sys/netpfil/pf/pf.c
366

This function can also be used not only for fragment rbtree, but can also substitute the PF_ANEQ, PF_AEQ and could be considered to substitute even pf_match_addr(). So, lots of code can be generalized using this function. That's good.

I'd suggest not to inline it, and rename it to pf_addr_cmp. "cmp" is a widely used abbreviation clear to anyone.

396

Please add a panic() for default switch case.

sys/netpfil/pf/pf_norm.c
64

Please use C99 types in new code instead of 80-ish BSD types: uint32_t, uint16_t, uint8_t.

72

When hacking pf, I strongly dislike this struct foo and struct foo_cmp, that must be kept synchronized. I skipped fixing that in 2012 and now I regret that. Let's now do it better in the new code. You can just embed pf_fragment_cmp into pf_fragment. Alternatively, you can do this trick:

#define fr_cmp_offset fr_entry

and in code you do:

bcmp(a, b, offsetof(struct pf_fragment, fr_cmp_offset))

I prefer the trick over embedding, but that's up to you.

340

Empty line here is style(9) requirement, shouldn't be removed.

403

Let's put PF_FRAG_ASSERT() at the beginning of this function. Kinda documenting its locking requirements.

459

Dots in end of comments throught the function, please. Thanks :)

735

Please use KASSERT:

m = m_getptr(m, hdrlen + offsetof(struct ip6_frag, ip6f_nxt), &off);
KASSERT(m, ("%s: short mbuf chain", func));

757

Same here.

This revision is now accepted and ready to land.Feb 12 2015, 8:59 PM
kp edited edge metadata.
This revision now requires review to proceed.Feb 14 2015, 2:09 PM

Thanks. Now let me complete universe with anonymous structs/unions on.

sys/netpfil/pf/pf_norm.c
88

This line looks like cut-n-paste typo. Don't hurry to fix, I am about to improve the code to use anonymous structure, which, I hope, will be enabled for the whole kernel build soon.

glebius edited edge metadata.
This revision is now accepted and ready to land.Feb 16 2015, 3:35 AM

Submitted as r278831 - head/sys/netpfil/pf