From owner-cvs-all@FreeBSD.ORG Mon Feb 21 21:58:18 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A76F16A4CE; Mon, 21 Feb 2005 21:58:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3E3843D1D; Mon, 21 Feb 2005 21:58:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1LLwHBg071163; Mon, 21 Feb 2005 21:58:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1LLwHSO071162; Mon, 21 Feb 2005 21:58:17 GMT (envelope-from rwatson) Message-Id: <200502212158.j1LLwHSO071162@repoman.freebsd.org> From: Robert Watson Date: Mon, 21 Feb 2005 21:58:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_socket.c uipc_usrreq.c src/sys/netatm atm_cm.c atm_socket.c atm_var.h src/sys/netgraph/bluetooth/socket ng_btsocket_l2cap.c ng_btsocket_rfcomm.c src/sys/netinet ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2005 21:58:18 -0000 rwatson 2005-02-21 21:58:17 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c uipc_usrreq.c sys/netatm atm_cm.c atm_socket.c atm_var.h sys/netatm/ipatm ipatm_load.c sys/netgraph/bluetooth/socket ng_btsocket_l2cap.c ng_btsocket_rfcomm.c sys/netinet tcp_usrreq.c sys/netipx spx_usrreq.c sys/sys socketvar.h Log: In the current world order, solisten() implements the state transition of a socket from a regular socket to a listening socket able to accept new connections. As part of this state transition, solisten() calls into the protocol to update protocol-layer state. There were several bugs in this implementation that could result in a race wherein a TCP SYN received in the interval between the protocol state transition and the shortly following socket layer transition would result in a panic in the TCP code, as the socket would be in the TCPS_LISTEN state, but the socket would not have the SO_ACCEPTCONN flag set. This change does the following: - Pushes the socket state transition from the socket layer solisten() to to socket "library" routines called from the protocol. This permits the socket routines to be called while holding the protocol mutexes, preventing a race exposing the incomplete socket state transition to TCP after the TCP state transition has completed. The check for a socket layer state transition is performed by solisten_proto_check(), and the actual transition is performed by solisten_proto(). - Holds the socket lock for the duration of the socket state test and set, and over the protocol layer state transition, which is now possible as the socket lock is acquired by the protocol layer, rather than vice versa. This prevents additional state related races in the socket layer. This permits the dual transition of socket layer and protocol layer state to occur while holding locks for both layers, making the two changes atomic with respect to one another. Similar changes are likely require elsewhere in the socket/protocol code. Reported by: Peter Holm Review and fixes from: emax, Antoine Brodin Philosophical head nod: gnn Revision Changes Path 1.233 +42 -14 src/sys/kern/uipc_socket.c 1.151 +14 -9 src/sys/kern/uipc_usrreq.c 1.33 +13 -1 src/sys/netatm/atm_cm.c 1.23 +1 -1 src/sys/netatm/atm_socket.c 1.26 +2 -2 src/sys/netatm/atm_var.h 1.21 +2 -2 src/sys/netatm/ipatm/ipatm_load.c 1.16 +21 -6 src/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c 1.15 +25 -19 src/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c 1.115 +14 -4 src/sys/netinet/tcp_usrreq.c 1.62 +7 -2 src/sys/netipx/spx_usrreq.c 1.139 +2 -0 src/sys/sys/socketvar.h