pf_socket_lookup() calls in_pcbhashlookup() in the PCB layer. To
authorbluhm <bluhm@openbsd.org>
Mon, 14 Mar 2022 17:23:00 +0000 (17:23 +0000)
committerbluhm <bluhm@openbsd.org>
Mon, 14 Mar 2022 17:23:00 +0000 (17:23 +0000)
commit771d03653b5acd59125b2087f804494ca025c433
tree8c5657b02191e2fbbe0f84cdbeb80ae4474825d2
parentf2ec1a1396ab80e38332c311eb55fa4fa7267f24
pf_socket_lookup() calls in_pcbhashlookup() in the PCB layer.  To
run pf in parallel, make parts of the stack MP safe.  Protect the
list and hashes in the PCB tables with a mutex.
Note that the protocol notify functions may call pf via tcp_output().
As the pf lock is a sleeping rw_lock, we must not hold a mutex.  To
solve this for now, collect these PCBs in inp_notify list and protect
it with exclusive netlock.
OK sashan@
sys/kern/kern_sysctl.c
sys/netinet/in_pcb.c
sys/netinet/in_pcb.h
sys/netinet/raw_ip.c
sys/netinet/udp_usrreq.c
sys/netinet6/in6_pcb.c
sys/netinet6/raw_ip6.c