freebsd-dev/sys/netgraph/bluetooth/socket
Robert Watson 81158452be Push acquisition of the accept mutex out of sofree() into the caller
(sorele()/sotryfree()):

- This permits the caller to acquire the accept mutex before the socket
  mutex, avoiding sofree() having to drop the socket mutex and re-order,
  which could lead to races permitting more than one thread to enter
  sofree() after a socket is ready to be free'd.

- This also covers clearing of the so_pcb weak socket reference from
  the protocol to the socket, preventing races in clearing and
  evaluation of the reference such that sofree() might be called more
  than once on the same socket.

This appears to close a race I was able to easily trigger by repeatedly
opening and resetting TCP connections to a host, in which the
tcp_close() code called as a result of the RST raced with the close()
of the accepted socket in the user process resulting in simultaneous
attempts to de-allocate the same socket.  The new locking increases
the overhead for operations that may potentially free the socket, so we
will want to revise the synchronization strategy here as we normalize
the reference counting model for sockets.  The use of the accept mutex
in freeing of sockets that are not listen sockets is primarily
motivated by the potential need to remove the socket from the
incomplete connection queue on its parent (listen) socket, so cleaning
up the reference model here may allow us to substantially weaken the
synchronization requirements.

RELENG_5_3 candidate.

MFC after:	3 days
Reviewed by:	dwhite
Discussed with:	gnn, dwhite, green
Reported by:	Marc UBM Bocklet <ubm at u-boot-man dot de>
Reported by:	Vlad <marchenko at gmail dot com>
2004-10-18 22:19:43 +00:00
..
ng_btsocket_hci_raw.c Push acquisition of the accept mutex out of sofree() into the caller 2004-10-18 22:19:43 +00:00
ng_btsocket_l2cap_raw.c Push acquisition of the accept mutex out of sofree() into the caller 2004-10-18 22:19:43 +00:00
ng_btsocket_l2cap.c Push acquisition of the accept mutex out of sofree() into the caller 2004-10-18 22:19:43 +00:00
ng_btsocket_rfcomm.c Push acquisition of the accept mutex out of sofree() into the caller 2004-10-18 22:19:43 +00:00
ng_btsocket.c Add '#include <sys/mbuf.h>' to fix the kernel build. 2004-06-25 23:03:33 +00:00
TODO Part one of undating the bluetooth code to the newest version 2003-05-10 21:44:42 +00:00