]> granicus.if.org Git - postgresql/commit
Fix potential corruption of lock table in CREATE/DROP INDEX CONCURRENTLY.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 8 Jan 2013 23:25:58 +0000 (18:25 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 8 Jan 2013 23:25:58 +0000 (18:25 -0500)
commitc00dc337b8752ec959e27bfdc58e13f3d305154a
tree85bcd74d6327b4ba2adf6de967abf210dd2b0add
parentf31d5baff6cda85554731926bd63268a3c0afa1c
Fix potential corruption of lock table in CREATE/DROP INDEX CONCURRENTLY.

If VirtualXactLock() has to wait for a transaction that holds its VXID lock
as a fast-path lock, it must first convert the fast-path lock to a regular
lock.  It failed to take the required "partition" lock on the main
shared-memory lock table while doing so.  This is the direct cause of the
assert failure in GetLockStatusData() recently observed in the buildfarm,
but more worryingly it could result in arbitrary corruption of the shared
lock table if some other process were concurrently engaged in modifying the
same partition of the lock table.  Fortunately, VirtualXactLock() is only
used by CREATE INDEX CONCURRENTLY and DROP INDEX CONCURRENTLY, so the
opportunities for failure are fewer than they might have been.

In passing, improve some comments and be a bit more consistent about
order of operations.
src/backend/storage/lmgr/lock.c