Skip to content

Commit 5f15107

Browse files
committed
Fix race condition in COMMIT PREPARED causing orphaned 2PC files
COMMIT PREPARED removes on-disk 2PC files near its end, but the state checked if a file is on-disk or not gets read from shared memory while not holding the two-phase state lock. Because of that, there was a small window where a second backend doing a PREPARE TRANSACTION could reuse the GlobalTransaction put back into the 2PC free list by the COMMIT PREPARED, overwriting the "ondisk" flag read afterwards by the COMMIT PREPARED to decide if its on-disk two-phase state file should be removed, preventing the file deletion. This commit fixes this issue so as the "ondisk" flag in the GlobalTransaction is read while holding the two-phase state lock, not from shared memory after its entry has been added to the free list. Orphaned two-phase state files flushed to disk after a checkpoint are discarded at the beginning of recovery. However, a truncation of pg_xact/ would make the startup process issue a FATAL when it cannot read the SLRU page holding the state of the transaction whose 2PC file was orphaned, which is a necessary step to decide if the 2PC file should be removed or not. Removing manually the file would be necessary in this case. Issue introduced by effe7d9, so backpatch all the way down. Mea culpa. Author: wuchengwen Discussion: https://postgr.es/m/tencent_A7F059B5136A359625C7B2E4A386B3C3F007@qq.com Backpatch-through: 12
1 parent ec33fdc commit 5f15107

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/backend/access/transam/twophase.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1477,6 +1477,7 @@ FinishPreparedTransaction(const char *gid, bool isCommit)
14771477
GlobalTransaction gxact;
14781478
PGPROC *proc;
14791479
TransactionId xid;
1480+
bool ondisk;
14801481
char *buf;
14811482
char *bufptr;
14821483
TwoPhaseFileHeader *hdr;
@@ -1610,6 +1611,12 @@ FinishPreparedTransaction(const char *gid, bool isCommit)
16101611

16111612
PredicateLockTwoPhaseFinish(xid, isCommit);
16121613

1614+
/*
1615+
* Read this value while holding the two-phase lock, as the on-disk 2PC
1616+
* file is physically removed after the lock is released.
1617+
*/
1618+
ondisk = gxact->ondisk;
1619+
16131620
/* Clear shared memory state */
16141621
RemoveGXact(gxact);
16151622

@@ -1625,7 +1632,7 @@ FinishPreparedTransaction(const char *gid, bool isCommit)
16251632
/*
16261633
* And now we can clean up any files we may have left.
16271634
*/
1628-
if (gxact->ondisk)
1635+
if (ondisk)
16291636
RemoveTwoPhaseFile(xid, true);
16301637

16311638
MyLockedGxact = NULL;

0 commit comments

Comments
 (0)