]> granicus.if.org Git - postgresql/commitdiff
Properly terminate the array returned by GetLockConflicts().
authorAndres Freund <andres@anarazel.de>
Thu, 29 Jan 2015 16:49:03 +0000 (17:49 +0100)
committerAndres Freund <andres@anarazel.de>
Thu, 29 Jan 2015 21:48:46 +0000 (22:48 +0100)
GetLockConflicts() has for a long time not properly terminated the
returned array. During normal processing the returned array is zero
initialized which, while not pretty, is sufficient to be recognized as
a invalid virtual transaction id. But the HotStandby case is more than
aesthetically broken: The allocated (and reused) array is neither
zeroed upon allocation, nor reinitialized, nor terminated.

Not having a terminating element means that the end of the array will
not be recognized and that recovery conflict handling will thus read
ahead into adjacent memory. Only terminating when hitting memory
content that looks like a invalid virtual transaction id.  Luckily
this seems so far not have caused significant problems, besides making
recovery conflict more expensive.

Discussion: 20150127142713.GD29457@awork2.anarazel.de

Backpatch into all supported branches.

src/backend/storage/lmgr/lock.c

index 3fc91740b89ffd3c58a78aff79d191f893816e7a..eb3e5bdf25381416fcc4ea2597ca006974fb887e 100644 (file)
@@ -1990,6 +1990,8 @@ GetLockConflicts(const LOCKTAG *locktag, LOCKMODE lockmode)
                 * on this lockable object.
                 */
                LWLockRelease(partitionLock);
+               vxids[count].backendId = InvalidBackendId;
+               vxids[count].localTransactionId = InvalidLocalTransactionId;
                return vxids;
        }
 
@@ -2035,6 +2037,8 @@ GetLockConflicts(const LOCKTAG *locktag, LOCKMODE lockmode)
        if (count > MaxBackends)        /* should never happen */
                elog(PANIC, "too many conflicting locks found");
 
+       vxids[count].backendId = InvalidBackendId;
+       vxids[count].localTransactionId = InvalidLocalTransactionId;
        return vxids;
 }