Re: LockHasWaiters() crashes on fast-path locks - Mailing list pgsql-hackers

From Bharath Rupireddy
Subject Re: LockHasWaiters() crashes on fast-path locks
Date
Msg-id CALj2ACUKM1KQC=NHESOJw=ZgjAXgxapJfAEovKN0n3ZF8Csr5w@mail.gmail.com
Whole thread
In response to LockHasWaiters() crashes on fast-path locks  (SATYANARAYANA NARLAPURAM <satyanarlapuram@gmail.com>)
Responses Re: LockHasWaiters() crashes on fast-path locks
List pgsql-hackers
Hi,

On Wed, Mar 25, 2026 at 2:15 PM SATYANARAYANA NARLAPURAM
<satyanarlapuram@gmail.com> wrote:
>
> Hi Hackers,
>
> LockHasWaiters() assumes that the LOCALLOCK's lock and proclock pointers are populated, but this is not the case for
locksacquired via the fast-path optimization. Weak locks (< ShareUpdateExclusiveLock) on relations may not be stored in
theshared lock hash table, and the LOCALLOCK entry is left with lock = NULL and proclock = NULL in such a case. 
>
> If LockHasWaiters() is called for such a lock, it dereferences those NULL pointers when it reads proclock->holdMask
andlock->waitMask, causing a segfault. 
>
> The only existing caller is lazy_truncate_heap() in VACUUM, which queries LockHasWaitersRelation(rel,
AccessExclusiveLock).Since AccessExclusiveLock is the strongest lock level, it is never fast-pathed, so the bug has
neverbeen triggered in practice. However, any new caller that passes a weak lock mode, for example, checking whether a
DDLis waiting on an AccessShareLock will crash. The fix is to transfer the lock to the main lock table before we access
them.
>
> Attached a patch to address this issue.

Nice find! It would be good to add a test case (perhaps in an existing
test extension even though we may not commit it; it can act as a
demo).

I see that this type of lock transfer is happening for prepared
statements (see AtPrepare_Locks [1]). However, I see the proposed
patch relying on lock == NULL for detecting whether the lock was
acquired using fast-path. Although this looks correct because if the
lock or proclock pointers are NULL, this identifies that the lock was
taken using fast-path. But for consistency purposes, can we have the
same check as that of AtPrepare_Locks?

[1]
/*
* If the local lock was taken via the fast-path, we need to move it
* to the primary lock table, or just get a pointer to the existing
* primary lock table entry if by chance it's already been
* transferred.
*/
if (locallock->proclock == NULL)

--
Bharath Rupireddy
Amazon Web Services: https://aws.amazon.com



pgsql-hackers by date:

Previous
From: David Rowley
Date:
Subject: Re: another autovacuum scheduling thread
Next
From: David Rowley
Date:
Subject: Re: Test timings are increasing too fast for cfbot