]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Fix a panic during CAM EDT traversal.
authorken <ken@FreeBSD.org>
Fri, 7 Dec 2012 23:48:54 +0000 (23:48 +0000)
committerken <ken@FreeBSD.org>
Fri, 7 Dec 2012 23:48:54 +0000 (23:48 +0000)
commitb8327e28a33a6bb69cb12171c683fc2756305c0a
tree28c4c730a9cb2bfa02e5897d3d92e578e4ee1755
parent24b0c94606e6b293ab6908adf7e5489f94a6190b
Fix a panic during CAM EDT traversal.

The problem was a race condition between the EDT traversal used by
things like 'camcontrol devlist', and CAM peripheral driver
removal.

The EDT traversal code holds the CAM topology lock, and wants
to show devices that have been invalidated.  It acquires a
reference to the peripheral to make sure the peripheral it is
examining doesn't go away.

However, because the peripheral removal code in camperiphfree()
drops the CAM topology lock to call the peripheral's destructor
routine, we can run into a situation where the EDT traversal
increments the peripheral reference count after free process is
already in progress.  At that point, the reference count is
ignored, because it was 0 when we started the process.

Fix this race by setting a flag, CAM_PERIPH_FREE, that I previously
added and checked in xptperiphtraverse() and xptpdperiphtravsere(),
but failed to use.  If the EDT traversal code sees that flag,
it will know that the peripheral free process has already started,
and that it should not access that peripheral.

Also, fix an inconsistency in the locking between
xptpdperiphtraverse() and xptperiphtraverse().  They now both
hold the CAM topology lock while calling the peripheral traversal
function.

cam_xpt.c: Change xptperiphtraverse() to hold the CAM topology
lock across calls to the traversal function.

Take out the comment in xptpdperiphtraverse() that
referenced the locking inconsistency.

cam_periph.c: Set the CAM_PERIPH_FREE flag when we are in the
process of freeing a peripheral driver.

Sponsored by: Spectra Logic Corporation
MFC after: 1 week
sys/cam/cam_periph.c
sys/cam/cam_xpt.c