To make protocol input functions MP safe, internet PCB need protection.
authorbluhm <bluhm@openbsd.org>
Mon, 8 Aug 2022 12:06:30 +0000 (12:06 +0000)
committerbluhm <bluhm@openbsd.org>
Mon, 8 Aug 2022 12:06:30 +0000 (12:06 +0000)
commit9e8a1cdfd23caf414ca874057442fd8062181c6e
tree49f800ca9928723ddef78756ec64b504ce125be5
parent470043df5a59613d08c5ef8a9153e75eb2bdd99c
To make protocol input functions MP safe, internet PCB need protection.
Use their reference counter in more places.
The in_pcb lookup functions hold the PCBs in hash tables protected
by table->inpt_mtx mutex.  Whenever a result is returned, increment
the ref count before releasing the mutex.  Then the inp can be used
as long as neccessary.  Unref it at the end of all functions that
call in_pcb lookup.
As a shortcut, pf may also hold a reference to the PCB.  When
pf_inp_lookup() returns it, it also incements the ref count and the
caller can handle it like the inp from table lookup.
OK sashan@
sys/net/pf.c
sys/netinet/in_pcb.c
sys/netinet/tcp_input.c
sys/netinet/tcp_subr.c
sys/netinet/tcp_usrreq.c
sys/netinet/udp_usrreq.c
sys/netinet6/in6_pcb.c
sys/netinet6/raw_ip6.c