Page MenuHomeFreeBSD

dummynet: fix ip_dn_vnet_init() / dummynet_task() race
AbandonedPublic

Authored by kp on Jul 4 2022, 9:08 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Sep 2, 5:30 AM
Unknown Object (File)
Sat, Sep 2, 5:28 AM
Unknown Object (File)
Sat, Sep 2, 5:25 AM
Unknown Object (File)
Sat, Sep 2, 5:14 AM
Unknown Object (File)
Aug 18 2023, 4:53 PM
Unknown Object (File)
May 10 2023, 1:48 PM
Unknown Object (File)
May 7 2023, 9:38 AM
Unknown Object (File)
Apr 9 2023, 11:00 PM

Details

Summary

If dummynet_task() is run on a vnet where dummynet is still initialising
(i.e. still running ip_dn_vnet_init()) we can attempt to use an
uninitialised mutex.

We can use the existing init_done field to check if the per-vnet
V_dn_cfg is fully set up, if we ensure that it's only set to 1 when
we've done all of the init work.

Reported by: Alfredo Dal'Ava Júnior <alfredo@freebsd.org>
Sponsored by: Rubicon Communications, LLC ("Netgate")

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kp requested review of this revision.Jul 4 2022, 9:08 PM
This revision was not accepted when it landed; it landed in state Needs Review.Jul 5 2022, 5:56 PM
This revision was automatically updated to reflect the committed changes.

This commit breaks non-VIMAGE kernel build. Try MINIMAL kernel for example.

/usr/src/sys/netpfil/ipfw/ip_dn_io.c:674:4: error: 'continue' statement not in loop statement
                        continue;
                        ^
1 error generated.
In D35716#810455, @jkim wrote:

This commit breaks non-VIMAGE kernel build. Try MINIMAL kernel for example.

/usr/src/sys/netpfil/ipfw/ip_dn_io.c:674:4: error: 'continue' statement not in loop statement
                        continue;
                        ^
1 error generated.

I'm aware and am testing a fix (to the vnet macros).