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)
Fri, Aug 22, 5:51 AM
Unknown Object (File)
Thu, Aug 14, 6:15 AM
Unknown Object (File)
Wed, Aug 13, 11:24 AM
Unknown Object (File)
Sun, Aug 3, 4:31 PM
Unknown Object (File)
Sat, Aug 2, 11:54 AM
Unknown Object (File)
Tue, Jul 29, 7:30 PM
Unknown Object (File)
Tue, Jul 29, 7:35 AM
Unknown Object (File)
Tue, Jul 29, 5:31 AM

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).