Skip to content

Commit aa9d916

Browse files
author
Amit Kapila
committed
Fix uninitialized access to InitialRunningXacts during decoding.
In commit 272248a, we introduced an InitialRunningXacts array to remember transactions and subtransactions that were running when the xl_running_xacts record that we decoded was written. This array was allocated in the snapshot builder memory context after we restore serialized snapshot but we forgot to reset the array while freeing the builder memory context. So, the next time when we start decoding in the same session where we don't restore any serialized snapshot, we ended up using the uninitialized array and that can lead to unpredictable behavior. This problem doesn't exist in HEAD as instead of using InitialRunningXacts, we added the list of transaction IDs and sub-transaction IDs, that have modified catalogs and are running during snapshot serialization, to the serialized snapshot (see commit 7f13ac8). Reported-by: Maxim Orlov Author: Masahiko Sawada Reviewed-by: Amit Kapila, Maxim Orlov Backpatch-through: 11 Discussion: https://postgr.es/m/CACG=ezZoz_KG+Ryh9MrU_g5e0HiVoHocEvqFF=NRrhrwKmEQJQ@mail.gmail.com
1 parent de95928 commit aa9d916

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/backend/replication/logical/snapbuild.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,9 @@ AllocateSnapshotBuilder(ReorderBuffer *reorder,
376376

377377
MemoryContextSwitchTo(oldcontext);
378378

379+
/* The initial running transactions array must be empty. */
380+
Assert(NInitialRunningXacts == 0 && InitialRunningXacts == NULL);
381+
379382
return builder;
380383
}
381384

@@ -396,6 +399,10 @@ FreeSnapshotBuilder(SnapBuild *builder)
396399

397400
/* other resources are deallocated via memory context reset */
398401
MemoryContextDelete(context);
402+
403+
/* InitialRunningXacts is freed along with the context */
404+
NInitialRunningXacts = 0;
405+
InitialRunningXacts = NULL;
399406
}
400407

401408
/*

0 commit comments

Comments
 (0)