diff options
author | rmacklem <rmacklem@FreeBSD.org> | 2011-11-03 14:38:03 +0000 |
---|---|---|
committer | rmacklem <rmacklem@FreeBSD.org> | 2011-11-03 14:38:03 +0000 |
commit | 14312627659e83696790fe5cb90d4da4377f8da8 (patch) | |
tree | a05e8abe39c8e8d0962d9cb8f9391070f3c474f8 /sys/net/rtsock.c | |
parent | 90682e14dbcf60dff021b0bec254cca712533124 (diff) | |
download | FreeBSD-src-14312627659e83696790fe5cb90d4da4377f8da8.zip FreeBSD-src-14312627659e83696790fe5cb90d4da4377f8da8.tar.gz |
Both a crash reported on freebsd-current on Oct. 18 under the
subject heading "mtx_lock() of destroyed mutex on NFS" and
PR# 156168 appear to be caused by clnt_dg_destroy() closing
down the socket prematurely. When to close down the socket
is controlled by a reference count (cs_refs), but clnt_dg_create()
checks for sb_upcall being non-NULL to decide if a new socket
is needed. I believe the crashes were caused by the following race:
clnt_dg_destroy() finds cs_refs == 0 and decides to delete socket
clnt_dg_destroy() then loses race with clnt_dg_create() for
acquisition of the SOCKBUF_LOCK()
clnt_dg_create() finds sb_upcall != NULL and increments cs_refs to 1
clnt_dg_destroy() then acquires SOCKBUF_LOCK(), sets sb_upcall to
NULL and destroys socket
This patch fixes the above race by changing clnt_dg_destroy() so
that it acquires SOCKBUF_LOCK() before testing cs_refs.
Tested by: bz
PR: 156168
Reviewed by: dfr
MFC after: 2 weeks
Diffstat (limited to 'sys/net/rtsock.c')
0 files changed, 0 insertions, 0 deletions