Page MenuHomeFreeBSD

Make pf more VNET safe
ClosedPublic

Authored by bz on Jun 22 2016, 12:59 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 5 2024, 8:29 AM
Unknown Object (File)
Feb 29 2024, 11:45 PM
Unknown Object (File)
Jan 14 2024, 7:34 PM
Unknown Object (File)
Jan 10 2024, 5:07 PM
Unknown Object (File)
Dec 24 2023, 12:23 PM
Unknown Object (File)
Dec 22 2023, 10:13 PM
Unknown Object (File)
Dec 22 2023, 9:09 AM
Unknown Object (File)
Nov 24 2023, 10:51 AM
Subscribers

Details

Summary

Update pf(4) and pflog(4) to survive basic VNET testing, which includes
proper virtualisation, teardown, avoiding use-after-free, race conditions,
no longer creating a thread per VNET (which could easily be a couple of
thousand threads), handling global events (e.g., eventhandlers) on teardown,
clearing various globally cached pointers and checking them before use.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 4309
Build 4353: arc lint + arc unit

Event Timeline

bz retitled this revision from to Make pf more VNET safe.
bz updated this object.
bz edited the test plan for this revision. (Show Details)
bz added reviewers: gnn, emaste, kp, nvass-gmx.com.
bz added a subscriber: network.

I can't discuss the code, I can only test it and see if it makes the difference in system stability. Any chance for this to land in 11.0?

In D6924#145160, @robak wrote:

I can't discuss the code, I can only test it and see if it makes the difference in system stability. Any chance for this to land in 11.0?

Yes, that's the plan. Needs all the testing it can get and I am still looking at pfsync and a possible very old security issue (don't run with untrusted customers in VNET yet) which I don't know if FreeBSD is vulnerable to.

sys/netpfil/pf/pf.c
302

There's a '#define V_pf_end_threads VNET(pf_end_threads)' in net/pfvar.h.
Presumably you'll want to get rid of that too.

sys/netpfil/pf/pf_if.c
911

Minor typo here and in the others like it. 'expensie'.

sys/netpfil/pf/pf_ioctl.c
3782

When is this ever not true?
As far as I can tell you removed the only pf_end_threads++; from pf_purge_thread()

bz marked 3 inline comments as done.Jun 23 2016, 12:39 AM

Should all be addressed in the updated diff to come.

sys/netpfil/pf/pf_ioctl.c
3782

Good catch; that would be an endless loop...

bz marked an inline comment as done.

Address comments from @kristof .
Especially get rid of an endless loooCp on unload hopefully.p

kp edited edge metadata.
This revision is now accepted and ready to land.Jun 23 2016, 6:03 AM
This revision was automatically updated to reflect the committed changes.