PostgreSQL Source Code git master
twophase.c
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * twophase.c
4 * Two-phase commit support functions.
5 *
6 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
8 *
9 * IDENTIFICATION
10 * src/backend/access/transam/twophase.c
11 *
12 * NOTES
13 * Each global transaction is associated with a global transaction
14 * identifier (GID). The client assigns a GID to a postgres
15 * transaction with the PREPARE TRANSACTION command.
16 *
17 * We keep all active global transactions in a shared memory array.
18 * When the PREPARE TRANSACTION command is issued, the GID is
19 * reserved for the transaction in the array. This is done before
20 * a WAL entry is made, because the reservation checks for duplicate
21 * GIDs and aborts the transaction if there already is a global
22 * transaction in prepared state with the same GID.
23 *
24 * A global transaction (gxact) also has dummy PGPROC; this is what keeps
25 * the XID considered running by TransactionIdIsInProgress. It is also
26 * convenient as a PGPROC to hook the gxact's locks to.
27 *
28 * Information to recover prepared transactions in case of crash is
29 * now stored in WAL for the common case. In some cases there will be
30 * an extended period between preparing a GXACT and commit/abort, in
31 * which case we need to separately record prepared transaction data
32 * in permanent storage. This includes locking information, pending
33 * notifications etc. All that state information is written to the
34 * per-transaction state file in the pg_twophase directory.
35 * All prepared transactions will be written prior to shutdown.
36 *
37 * Life track of state data is following:
38 *
39 * * On PREPARE TRANSACTION backend writes state data only to the WAL and
40 * stores pointer to the start of the WAL record in
41 * gxact->prepare_start_lsn.
42 * * If COMMIT occurs before checkpoint then backend reads data from WAL
43 * using prepare_start_lsn.
44 * * On checkpoint state data copied to files in pg_twophase directory and
45 * fsynced
46 * * If COMMIT happens after checkpoint then backend reads state data from
47 * files
48 *
49 * During replay and replication, TwoPhaseState also holds information
50 * about active prepared transactions that haven't been moved to disk yet.
51 *
52 * Replay of twophase records happens by the following rules:
53 *
54 * * At the beginning of recovery, pg_twophase is scanned once, filling
55 * TwoPhaseState with entries marked with gxact->inredo and
56 * gxact->ondisk. Two-phase file data older than the XID horizon of
57 * the redo position are discarded.
58 * * On PREPARE redo, the transaction is added to TwoPhaseState->prepXacts.
59 * gxact->inredo is set to true for such entries.
60 * * On Checkpoint we iterate through TwoPhaseState->prepXacts entries
61 * that have gxact->inredo set and are behind the redo_horizon. We
62 * save them to disk and then switch gxact->ondisk to true.
63 * * On COMMIT/ABORT we delete the entry from TwoPhaseState->prepXacts.
64 * If gxact->ondisk is true, the corresponding entry from the disk
65 * is additionally deleted.
66 * * RecoverPreparedTransactions(), StandbyRecoverPreparedTransactions()
67 * and PrescanPreparedTransactions() have been modified to go through
68 * gxact->inredo entries that have not made it to disk.
69 *
70 *-------------------------------------------------------------------------
71 */
72#include "postgres.h"
73
74#include <fcntl.h>
75#include <sys/stat.h>
76#include <time.h>
77#include <unistd.h>
78
79#include "access/commit_ts.h"
80#include "access/htup_details.h"
81#include "access/subtrans.h"
82#include "access/transam.h"
83#include "access/twophase.h"
85#include "access/xact.h"
86#include "access/xlog.h"
87#include "access/xloginsert.h"
88#include "access/xlogreader.h"
89#include "access/xlogrecovery.h"
90#include "access/xlogutils.h"
91#include "catalog/pg_type.h"
92#include "catalog/storage.h"
93#include "funcapi.h"
94#include "miscadmin.h"
95#include "pg_trace.h"
96#include "pgstat.h"
97#include "replication/origin.h"
98#include "replication/syncrep.h"
99#include "storage/fd.h"
100#include "storage/ipc.h"
101#include "storage/md.h"
102#include "storage/predicate.h"
103#include "storage/proc.h"
104#include "storage/procarray.h"
105#include "utils/builtins.h"
106#include "utils/memutils.h"
107#include "utils/timestamp.h"
108
109/*
110 * Directory where Two-phase commit files reside within PGDATA
111 */
112#define TWOPHASE_DIR "pg_twophase"
113
114/* GUC variable, can't be changed after startup */
116
117/*
118 * This struct describes one global transaction that is in prepared state
119 * or attempting to become prepared.
120 *
121 * The lifecycle of a global transaction is:
122 *
123 * 1. After checking that the requested GID is not in use, set up an entry in
124 * the TwoPhaseState->prepXacts array with the correct GID and valid = false,
125 * and mark it as locked by my backend.
126 *
127 * 2. After successfully completing prepare, set valid = true and enter the
128 * referenced PGPROC into the global ProcArray.
129 *
130 * 3. To begin COMMIT PREPARED or ROLLBACK PREPARED, check that the entry is
131 * valid and not locked, then mark the entry as locked by storing my current
132 * proc number into locking_backend. This prevents concurrent attempts to
133 * commit or rollback the same prepared xact.
134 *
135 * 4. On completion of COMMIT PREPARED or ROLLBACK PREPARED, remove the entry
136 * from the ProcArray and the TwoPhaseState->prepXacts array and return it to
137 * the freelist.
138 *
139 * Note that if the preparing transaction fails between steps 1 and 2, the
140 * entry must be removed so that the GID and the GlobalTransaction struct
141 * can be reused. See AtAbort_Twophase().
142 *
143 * typedef struct GlobalTransactionData *GlobalTransaction appears in
144 * twophase.h
145 */
146
148{
149 GlobalTransaction next; /* list link for free list */
150 int pgprocno; /* ID of associated dummy PGPROC */
151 TimestampTz prepared_at; /* time of preparation */
152
153 /*
154 * Note that we need to keep track of two LSNs for each GXACT. We keep
155 * track of the start LSN because this is the address we must use to read
156 * state data back from WAL when committing a prepared GXACT. We keep
157 * track of the end LSN because that is the LSN we need to wait for prior
158 * to commit.
159 */
160 XLogRecPtr prepare_start_lsn; /* XLOG offset of prepare record start */
161 XLogRecPtr prepare_end_lsn; /* XLOG offset of prepare record end */
162 TransactionId xid; /* The GXACT id */
163
164 Oid owner; /* ID of user that executed the xact */
165 ProcNumber locking_backend; /* backend currently working on the xact */
166 bool valid; /* true if PGPROC entry is in proc array */
167 bool ondisk; /* true if prepare state file is on disk */
168 bool inredo; /* true if entry was added via xlog_redo */
169 char gid[GIDSIZE]; /* The GID assigned to the prepared xact */
171
172/*
173 * Two Phase Commit shared state. Access to this struct is protected
174 * by TwoPhaseStateLock.
175 */
176typedef struct TwoPhaseStateData
177{
178 /* Head of linked list of free GlobalTransactionData structs */
180
181 /* Number of valid prepXacts entries. */
183
184 /* There are max_prepared_xacts items in this array */
187
189
190/*
191 * Global transaction entry currently locked by us, if any. Note that any
192 * access to the entry pointed to by this variable must be protected by
193 * TwoPhaseStateLock, though obviously the pointer itself doesn't need to be
194 * (since it's just local memory).
195 */
197
198static bool twophaseExitRegistered = false;
199
201 int nchildren,
202 TransactionId *children,
203 int nrels,
204 RelFileLocator *rels,
205 int nstats,
206 xl_xact_stats_item *stats,
207 int ninvalmsgs,
208 SharedInvalidationMessage *invalmsgs,
209 bool initfileinval,
210 const char *gid);
212 int nchildren,
213 TransactionId *children,
214 int nrels,
215 RelFileLocator *rels,
216 int nstats,
217 xl_xact_stats_item *stats,
218 const char *gid);
219static void ProcessRecords(char *bufptr, TransactionId xid,
220 const TwoPhaseCallback callbacks[]);
221static void RemoveGXact(GlobalTransaction gxact);
222
223static void XlogReadTwoPhaseData(XLogRecPtr lsn, char **buf, int *len);
224static char *ProcessTwoPhaseBuffer(TransactionId xid,
225 XLogRecPtr prepare_start_lsn,
226 bool fromdisk, bool setParent, bool setNextXid);
228 const char *gid, TimestampTz prepared_at, Oid owner,
229 Oid databaseid);
230static void RemoveTwoPhaseFile(TransactionId xid, bool giveWarning);
231static void RecreateTwoPhaseFile(TransactionId xid, void *content, int len);
232
233/*
234 * Initialization of shared memory
235 */
236Size
238{
239 Size size;
240
241 /* Need the fixed struct, the array of pointers, and the GTD structs */
242 size = offsetof(TwoPhaseStateData, prepXacts);
244 sizeof(GlobalTransaction)));
245 size = MAXALIGN(size);
247 sizeof(GlobalTransactionData)));
248
249 return size;
250}
251
252void
254{
255 bool found;
256
257 TwoPhaseState = ShmemInitStruct("Prepared Transaction Table",
259 &found);
261 {
262 GlobalTransaction gxacts;
263 int i;
264
265 Assert(!found);
268
269 /*
270 * Initialize the linked list of free GlobalTransactionData structs
271 */
272 gxacts = (GlobalTransaction)
273 ((char *) TwoPhaseState +
274 MAXALIGN(offsetof(TwoPhaseStateData, prepXacts) +
276 for (i = 0; i < max_prepared_xacts; i++)
277 {
278 /* insert into linked list */
279 gxacts[i].next = TwoPhaseState->freeGXacts;
280 TwoPhaseState->freeGXacts = &gxacts[i];
281
282 /* associate it with a PGPROC assigned by InitProcGlobal */
284 }
285 }
286 else
287 Assert(found);
288}
289
290/*
291 * Exit hook to unlock the global transaction entry we're working on.
292 */
293static void
295{
296 /* same logic as abort */
298}
299
300/*
301 * Abort hook to unlock the global transaction entry we're working on.
302 */
303void
305{
306 if (MyLockedGxact == NULL)
307 return;
308
309 /*
310 * What to do with the locked global transaction entry? If we were in the
311 * process of preparing the transaction, but haven't written the WAL
312 * record and state file yet, the transaction must not be considered as
313 * prepared. Likewise, if we are in the process of finishing an
314 * already-prepared transaction, and fail after having already written the
315 * 2nd phase commit or rollback record to the WAL, the transaction should
316 * not be considered as prepared anymore. In those cases, just remove the
317 * entry from shared memory.
318 *
319 * Otherwise, the entry must be left in place so that the transaction can
320 * be finished later, so just unlock it.
321 *
322 * If we abort during prepare, after having written the WAL record, we
323 * might not have transferred all locks and other state to the prepared
324 * transaction yet. Likewise, if we abort during commit or rollback,
325 * after having written the WAL record, we might not have released all the
326 * resources held by the transaction yet. In those cases, the in-memory
327 * state can be wrong, but it's too late to back out.
328 */
329 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
330 if (!MyLockedGxact->valid)
332 else
334 LWLockRelease(TwoPhaseStateLock);
335
336 MyLockedGxact = NULL;
337}
338
339/*
340 * This is called after we have finished transferring state to the prepared
341 * PGPROC entry.
342 */
343void
345{
346 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
348 LWLockRelease(TwoPhaseStateLock);
349
350 MyLockedGxact = NULL;
351}
352
353
354/*
355 * MarkAsPreparing
356 * Reserve the GID for the given transaction.
357 */
359MarkAsPreparing(TransactionId xid, const char *gid,
360 TimestampTz prepared_at, Oid owner, Oid databaseid)
361{
362 GlobalTransaction gxact;
363 int i;
364
365 if (strlen(gid) >= GIDSIZE)
367 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
368 errmsg("transaction identifier \"%s\" is too long",
369 gid)));
370
371 /* fail immediately if feature is disabled */
372 if (max_prepared_xacts == 0)
374 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
375 errmsg("prepared transactions are disabled"),
376 errhint("Set \"max_prepared_transactions\" to a nonzero value.")));
377
378 /* on first call, register the exit hook */
380 {
383 }
384
385 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
386
387 /* Check for conflicting GID */
388 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
389 {
390 gxact = TwoPhaseState->prepXacts[i];
391 if (strcmp(gxact->gid, gid) == 0)
392 {
395 errmsg("transaction identifier \"%s\" is already in use",
396 gid)));
397 }
398 }
399
400 /* Get a free gxact from the freelist */
401 if (TwoPhaseState->freeGXacts == NULL)
403 (errcode(ERRCODE_OUT_OF_MEMORY),
404 errmsg("maximum number of prepared transactions reached"),
405 errhint("Increase \"max_prepared_transactions\" (currently %d).",
407 gxact = TwoPhaseState->freeGXacts;
408 TwoPhaseState->freeGXacts = gxact->next;
409
410 MarkAsPreparingGuts(gxact, xid, gid, prepared_at, owner, databaseid);
411
412 gxact->ondisk = false;
413
414 /* And insert it into the active array */
417
418 LWLockRelease(TwoPhaseStateLock);
419
420 return gxact;
421}
422
423/*
424 * MarkAsPreparingGuts
425 *
426 * This uses a gxact struct and puts it into the active array.
427 * NOTE: this is also used when reloading a gxact after a crash; so avoid
428 * assuming that we can use very much backend context.
429 *
430 * Note: This function should be called with appropriate locks held.
431 */
432static void
434 TimestampTz prepared_at, Oid owner, Oid databaseid)
435{
436 PGPROC *proc;
437 int i;
438
439 Assert(LWLockHeldByMeInMode(TwoPhaseStateLock, LW_EXCLUSIVE));
440
441 Assert(gxact != NULL);
442 proc = GetPGProcByNumber(gxact->pgprocno);
443
444 /* Initialize the PGPROC entry */
445 MemSet(proc, 0, sizeof(PGPROC));
446 dlist_node_init(&proc->links);
449 {
450 /* clone VXID, for TwoPhaseGetXidByVirtualXID() to find */
451 proc->vxid.lxid = MyProc->vxid.lxid;
453 }
454 else
455 {
457 /* GetLockConflicts() uses this to specify a wait on the XID */
458 proc->vxid.lxid = xid;
460 }
461 proc->xid = xid;
463 proc->delayChkptFlags = 0;
464 proc->statusFlags = 0;
465 proc->pid = 0;
466 proc->databaseId = databaseid;
467 proc->roleId = owner;
469 proc->isRegularBackend = false;
471 proc->lwWaitMode = 0;
472 proc->waitLock = NULL;
473 proc->waitProcLock = NULL;
474 pg_atomic_init_u64(&proc->waitStart, 0);
475 for (i = 0; i < NUM_LOCK_PARTITIONS; i++)
476 dlist_init(&proc->myProcLocks[i]);
477 /* subxid data must be filled later by GXactLoadSubxactData */
478 proc->subxidStatus.overflowed = false;
479 proc->subxidStatus.count = 0;
480
481 gxact->prepared_at = prepared_at;
482 gxact->xid = xid;
483 gxact->owner = owner;
485 gxact->valid = false;
486 gxact->inredo = false;
487 strcpy(gxact->gid, gid);
488
489 /*
490 * Remember that we have this GlobalTransaction entry locked for us. If we
491 * abort after this, we must release it.
492 */
493 MyLockedGxact = gxact;
494}
495
496/*
497 * GXactLoadSubxactData
498 *
499 * If the transaction being persisted had any subtransactions, this must
500 * be called before MarkAsPrepared() to load information into the dummy
501 * PGPROC.
502 */
503static void
505 TransactionId *children)
506{
507 PGPROC *proc = GetPGProcByNumber(gxact->pgprocno);
508
509 /* We need no extra lock since the GXACT isn't valid yet */
510 if (nsubxacts > PGPROC_MAX_CACHED_SUBXIDS)
511 {
512 proc->subxidStatus.overflowed = true;
513 nsubxacts = PGPROC_MAX_CACHED_SUBXIDS;
514 }
515 if (nsubxacts > 0)
516 {
517 memcpy(proc->subxids.xids, children,
518 nsubxacts * sizeof(TransactionId));
519 proc->subxidStatus.count = nsubxacts;
520 }
521}
522
523/*
524 * MarkAsPrepared
525 * Mark the GXACT as fully valid, and enter it into the global ProcArray.
526 *
527 * lock_held indicates whether caller already holds TwoPhaseStateLock.
528 */
529static void
530MarkAsPrepared(GlobalTransaction gxact, bool lock_held)
531{
532 /* Lock here may be overkill, but I'm not convinced of that ... */
533 if (!lock_held)
534 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
535 Assert(!gxact->valid);
536 gxact->valid = true;
537 if (!lock_held)
538 LWLockRelease(TwoPhaseStateLock);
539
540 /*
541 * Put it into the global ProcArray so TransactionIdIsInProgress considers
542 * the XID as still running.
543 */
545}
546
547/*
548 * LockGXact
549 * Locate the prepared transaction and mark it busy for COMMIT or PREPARE.
550 */
552LockGXact(const char *gid, Oid user)
553{
554 int i;
555
556 /* on first call, register the exit hook */
558 {
561 }
562
563 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
564
565 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
566 {
568 PGPROC *proc = GetPGProcByNumber(gxact->pgprocno);
569
570 /* Ignore not-yet-valid GIDs */
571 if (!gxact->valid)
572 continue;
573 if (strcmp(gxact->gid, gid) != 0)
574 continue;
575
576 /* Found it, but has someone else got it locked? */
579 (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
580 errmsg("prepared transaction with identifier \"%s\" is busy",
581 gid)));
582
583 if (user != gxact->owner && !superuser_arg(user))
585 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
586 errmsg("permission denied to finish prepared transaction"),
587 errhint("Must be superuser or the user that prepared the transaction.")));
588
589 /*
590 * Note: it probably would be possible to allow committing from
591 * another database; but at the moment NOTIFY is known not to work and
592 * there may be some other issues as well. Hence disallow until
593 * someone gets motivated to make it work.
594 */
595 if (MyDatabaseId != proc->databaseId)
597 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
598 errmsg("prepared transaction belongs to another database"),
599 errhint("Connect to the database where the transaction was prepared to finish it.")));
600
601 /* OK for me to lock it */
603 MyLockedGxact = gxact;
604
605 LWLockRelease(TwoPhaseStateLock);
606
607 return gxact;
608 }
609
610 LWLockRelease(TwoPhaseStateLock);
611
613 (errcode(ERRCODE_UNDEFINED_OBJECT),
614 errmsg("prepared transaction with identifier \"%s\" does not exist",
615 gid)));
616
617 /* NOTREACHED */
618 return NULL;
619}
620
621/*
622 * RemoveGXact
623 * Remove the prepared transaction from the shared memory array.
624 *
625 * NB: caller should have already removed it from ProcArray
626 */
627static void
629{
630 int i;
631
632 Assert(LWLockHeldByMeInMode(TwoPhaseStateLock, LW_EXCLUSIVE));
633
634 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
635 {
636 if (gxact == TwoPhaseState->prepXacts[i])
637 {
638 /* remove from the active array */
641
642 /* and put it back in the freelist */
643 gxact->next = TwoPhaseState->freeGXacts;
644 TwoPhaseState->freeGXacts = gxact;
645
646 return;
647 }
648 }
649
650 elog(ERROR, "failed to find %p in GlobalTransaction array", gxact);
651}
652
653/*
654 * Returns an array of all prepared transactions for the user-level
655 * function pg_prepared_xact.
656 *
657 * The returned array and all its elements are copies of internal data
658 * structures, to minimize the time we need to hold the TwoPhaseStateLock.
659 *
660 * WARNING -- we return even those transactions that are not fully prepared
661 * yet. The caller should filter them out if he doesn't want them.
662 *
663 * The returned array is palloc'd.
664 */
665static int
667{
668 GlobalTransaction array;
669 int num;
670 int i;
671
672 LWLockAcquire(TwoPhaseStateLock, LW_SHARED);
673
674 if (TwoPhaseState->numPrepXacts == 0)
675 {
676 LWLockRelease(TwoPhaseStateLock);
677
678 *gxacts = NULL;
679 return 0;
680 }
681
683 array = (GlobalTransaction) palloc(sizeof(GlobalTransactionData) * num);
684 *gxacts = array;
685 for (i = 0; i < num; i++)
686 memcpy(array + i, TwoPhaseState->prepXacts[i],
687 sizeof(GlobalTransactionData));
688
689 LWLockRelease(TwoPhaseStateLock);
690
691 return num;
692}
693
694
695/* Working status for pg_prepared_xact */
696typedef struct
697{
702
703/*
704 * pg_prepared_xact
705 * Produce a view with one row per prepared transaction.
706 *
707 * This function is here so we don't have to export the
708 * GlobalTransactionData struct definition.
709 */
710Datum
712{
713 FuncCallContext *funcctx;
714 Working_State *status;
715
716 if (SRF_IS_FIRSTCALL())
717 {
718 TupleDesc tupdesc;
719 MemoryContext oldcontext;
720
721 /* create a function context for cross-call persistence */
722 funcctx = SRF_FIRSTCALL_INIT();
723
724 /*
725 * Switch to memory context appropriate for multiple function calls
726 */
727 oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
728
729 /* build tupdesc for result tuples */
730 /* this had better match pg_prepared_xacts view in system_views.sql */
731 tupdesc = CreateTemplateTupleDesc(5);
732 TupleDescInitEntry(tupdesc, (AttrNumber) 1, "transaction",
733 XIDOID, -1, 0);
734 TupleDescInitEntry(tupdesc, (AttrNumber) 2, "gid",
735 TEXTOID, -1, 0);
736 TupleDescInitEntry(tupdesc, (AttrNumber) 3, "prepared",
737 TIMESTAMPTZOID, -1, 0);
738 TupleDescInitEntry(tupdesc, (AttrNumber) 4, "ownerid",
739 OIDOID, -1, 0);
740 TupleDescInitEntry(tupdesc, (AttrNumber) 5, "dbid",
741 OIDOID, -1, 0);
742
743 funcctx->tuple_desc = BlessTupleDesc(tupdesc);
744
745 /*
746 * Collect all the 2PC status information that we will format and send
747 * out as a result set.
748 */
749 status = (Working_State *) palloc(sizeof(Working_State));
750 funcctx->user_fctx = status;
751
752 status->ngxacts = GetPreparedTransactionList(&status->array);
753 status->currIdx = 0;
754
755 MemoryContextSwitchTo(oldcontext);
756 }
757
758 funcctx = SRF_PERCALL_SETUP();
759 status = (Working_State *) funcctx->user_fctx;
760
761 while (status->array != NULL && status->currIdx < status->ngxacts)
762 {
763 GlobalTransaction gxact = &status->array[status->currIdx++];
764 PGPROC *proc = GetPGProcByNumber(gxact->pgprocno);
765 Datum values[5] = {0};
766 bool nulls[5] = {0};
767 HeapTuple tuple;
768 Datum result;
769
770 if (!gxact->valid)
771 continue;
772
773 /*
774 * Form tuple with appropriate data.
775 */
776
777 values[0] = TransactionIdGetDatum(proc->xid);
778 values[1] = CStringGetTextDatum(gxact->gid);
780 values[3] = ObjectIdGetDatum(gxact->owner);
782
783 tuple = heap_form_tuple(funcctx->tuple_desc, values, nulls);
784 result = HeapTupleGetDatum(tuple);
785 SRF_RETURN_NEXT(funcctx, result);
786 }
787
788 SRF_RETURN_DONE(funcctx);
789}
790
791/*
792 * TwoPhaseGetGXact
793 * Get the GlobalTransaction struct for a prepared transaction
794 * specified by XID
795 *
796 * If lock_held is set to true, TwoPhaseStateLock will not be taken, so the
797 * caller had better hold it.
798 */
800TwoPhaseGetGXact(TransactionId xid, bool lock_held)
801{
802 GlobalTransaction result = NULL;
803 int i;
804
805 static TransactionId cached_xid = InvalidTransactionId;
806 static GlobalTransaction cached_gxact = NULL;
807
808 Assert(!lock_held || LWLockHeldByMe(TwoPhaseStateLock));
809
810 /*
811 * During a recovery, COMMIT PREPARED, or ABORT PREPARED, we'll be called
812 * repeatedly for the same XID. We can save work with a simple cache.
813 */
814 if (xid == cached_xid)
815 return cached_gxact;
816
817 if (!lock_held)
818 LWLockAcquire(TwoPhaseStateLock, LW_SHARED);
819
820 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
821 {
823
824 if (gxact->xid == xid)
825 {
826 result = gxact;
827 break;
828 }
829 }
830
831 if (!lock_held)
832 LWLockRelease(TwoPhaseStateLock);
833
834 if (result == NULL) /* should not happen */
835 elog(ERROR, "failed to find GlobalTransaction for xid %u", xid);
836
837 cached_xid = xid;
838 cached_gxact = result;
839
840 return result;
841}
842
843/*
844 * TwoPhaseGetXidByVirtualXID
845 * Lookup VXID among xacts prepared since last startup.
846 *
847 * (This won't find recovered xacts.) If more than one matches, return any
848 * and set "have_more" to true. To witness multiple matches, a single
849 * proc number must consume 2^32 LXIDs, with no intervening database restart.
850 */
853 bool *have_more)
854{
855 int i;
857
859 LWLockAcquire(TwoPhaseStateLock, LW_SHARED);
860
861 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
862 {
864 PGPROC *proc;
865 VirtualTransactionId proc_vxid;
866
867 if (!gxact->valid)
868 continue;
869 proc = GetPGProcByNumber(gxact->pgprocno);
870 GET_VXID_FROM_PGPROC(proc_vxid, *proc);
871 if (VirtualTransactionIdEquals(vxid, proc_vxid))
872 {
873 /*
874 * Startup process sets proc->vxid.procNumber to
875 * INVALID_PROC_NUMBER.
876 */
877 Assert(!gxact->inredo);
878
879 if (result != InvalidTransactionId)
880 {
881 *have_more = true;
882 break;
883 }
884 result = gxact->xid;
885 }
886 }
887
888 LWLockRelease(TwoPhaseStateLock);
889
890 return result;
891}
892
893/*
894 * TwoPhaseGetDummyProcNumber
895 * Get the dummy proc number for prepared transaction specified by XID
896 *
897 * Dummy proc numbers are similar to proc numbers of real backends. They
898 * start at MaxBackends, and are unique across all currently active real
899 * backends and prepared transactions. If lock_held is set to true,
900 * TwoPhaseStateLock will not be taken, so the caller had better hold it.
901 */
904{
905 GlobalTransaction gxact = TwoPhaseGetGXact(xid, lock_held);
906
907 return gxact->pgprocno;
908}
909
910/*
911 * TwoPhaseGetDummyProc
912 * Get the PGPROC that represents a prepared transaction specified by XID
913 *
914 * If lock_held is set to true, TwoPhaseStateLock will not be taken, so the
915 * caller had better hold it.
916 */
917PGPROC *
919{
920 GlobalTransaction gxact = TwoPhaseGetGXact(xid, lock_held);
921
922 return GetPGProcByNumber(gxact->pgprocno);
923}
924
925/************************************************************************/
926/* State file support */
927/************************************************************************/
928
929/*
930 * Compute the FullTransactionId for the given TransactionId.
931 *
932 * The wrap logic is safe here because the span of active xids cannot exceed one
933 * epoch at any given time.
934 */
935static inline FullTransactionId
937{
938 FullTransactionId nextFullXid;
939 TransactionId nextXid;
941
943
944 LWLockAcquire(XidGenLock, LW_SHARED);
945 nextFullXid = TransamVariables->nextXid;
946 LWLockRelease(XidGenLock);
947
948 nextXid = XidFromFullTransactionId(nextFullXid);
949 epoch = EpochFromFullTransactionId(nextFullXid);
950 if (unlikely(xid > nextXid))
951 {
952 /* Wraparound occurred, must be from a prev epoch. */
953 Assert(epoch > 0);
954 epoch--;
955 }
956
958}
959
960static inline int
962{
964
965 return snprintf(path, MAXPGPATH, TWOPHASE_DIR "/%08X%08X",
968}
969
970/*
971 * 2PC state file format:
972 *
973 * 1. TwoPhaseFileHeader
974 * 2. TransactionId[] (subtransactions)
975 * 3. RelFileLocator[] (files to be deleted at commit)
976 * 4. RelFileLocator[] (files to be deleted at abort)
977 * 5. SharedInvalidationMessage[] (inval messages to be sent at commit)
978 * 6. TwoPhaseRecordOnDisk
979 * 7. ...
980 * 8. TwoPhaseRecordOnDisk (end sentinel, rmid == TWOPHASE_RM_END_ID)
981 * 9. checksum (CRC-32C)
982 *
983 * Each segment except the final checksum is MAXALIGN'd.
984 */
985
986/*
987 * Header for a 2PC state file
988 */
989#define TWOPHASE_MAGIC 0x57F94534 /* format identifier */
990
992
993/*
994 * Header for each record in a state file
995 *
996 * NOTE: len counts only the rmgr data, not the TwoPhaseRecordOnDisk header.
997 * The rmgr data will be stored starting on a MAXALIGN boundary.
998 */
1000{
1001 uint32 len; /* length of rmgr data */
1002 TwoPhaseRmgrId rmid; /* resource manager for this record */
1003 uint16 info; /* flag bits for use by rmgr */
1005
1006/*
1007 * During prepare, the state file is assembled in memory before writing it
1008 * to WAL and the actual state file. We use a chain of StateFileChunk blocks
1009 * for that.
1010 */
1011typedef struct StateFileChunk
1012{
1013 char *data;
1017
1018static struct xllist
1019{
1020 StateFileChunk *head; /* first data block in the chain */
1021 StateFileChunk *tail; /* last block in chain */
1023 uint32 bytes_free; /* free bytes left in tail block */
1024 uint32 total_len; /* total data bytes in chain */
1026
1027
1028/*
1029 * Append a block of data to records data structure.
1030 *
1031 * NB: each block is padded to a MAXALIGN multiple. This must be
1032 * accounted for when the file is later read!
1033 *
1034 * The data is copied, so the caller is free to modify it afterwards.
1035 */
1036static void
1038{
1039 uint32 padlen = MAXALIGN(len);
1040
1041 if (padlen > records.bytes_free)
1042 {
1045 records.tail->len = 0;
1046 records.tail->next = NULL;
1048
1049 records.bytes_free = Max(padlen, 512);
1051 }
1052
1053 memcpy(((char *) records.tail->data) + records.tail->len, data, len);
1054 records.tail->len += padlen;
1055 records.bytes_free -= padlen;
1056 records.total_len += padlen;
1057}
1058
1059/*
1060 * Start preparing a state file.
1061 *
1062 * Initializes data structure and inserts the 2PC file header record.
1063 */
1064void
1066{
1067 PGPROC *proc = GetPGProcByNumber(gxact->pgprocno);
1068 TransactionId xid = gxact->xid;
1070 TransactionId *children;
1071 RelFileLocator *commitrels;
1072 RelFileLocator *abortrels;
1073 xl_xact_stats_item *abortstats = NULL;
1074 xl_xact_stats_item *commitstats = NULL;
1075 SharedInvalidationMessage *invalmsgs;
1076
1077 /* Initialize linked list */
1079 records.head->len = 0;
1080 records.head->next = NULL;
1081
1082 records.bytes_free = Max(sizeof(TwoPhaseFileHeader), 512);
1084
1086 records.num_chunks = 1;
1087
1088 records.total_len = 0;
1089
1090 /* Create header */
1091 hdr.magic = TWOPHASE_MAGIC;
1092 hdr.total_len = 0; /* EndPrepare will fill this in */
1093 hdr.xid = xid;
1094 hdr.database = proc->databaseId;
1095 hdr.prepared_at = gxact->prepared_at;
1096 hdr.owner = gxact->owner;
1097 hdr.nsubxacts = xactGetCommittedChildren(&children);
1098 hdr.ncommitrels = smgrGetPendingDeletes(true, &commitrels);
1099 hdr.nabortrels = smgrGetPendingDeletes(false, &abortrels);
1100 hdr.ncommitstats =
1101 pgstat_get_transactional_drops(true, &commitstats);
1102 hdr.nabortstats =
1103 pgstat_get_transactional_drops(false, &abortstats);
1105 &hdr.initfileinval);
1106 hdr.gidlen = strlen(gxact->gid) + 1; /* Include '\0' */
1107 /* EndPrepare will fill the origin data, if necessary */
1109 hdr.origin_timestamp = 0;
1110
1111 save_state_data(&hdr, sizeof(TwoPhaseFileHeader));
1112 save_state_data(gxact->gid, hdr.gidlen);
1113
1114 /*
1115 * Add the additional info about subxacts, deletable files and cache
1116 * invalidation messages.
1117 */
1118 if (hdr.nsubxacts > 0)
1119 {
1120 save_state_data(children, hdr.nsubxacts * sizeof(TransactionId));
1121 /* While we have the child-xact data, stuff it in the gxact too */
1122 GXactLoadSubxactData(gxact, hdr.nsubxacts, children);
1123 }
1124 if (hdr.ncommitrels > 0)
1125 {
1126 save_state_data(commitrels, hdr.ncommitrels * sizeof(RelFileLocator));
1127 pfree(commitrels);
1128 }
1129 if (hdr.nabortrels > 0)
1130 {
1131 save_state_data(abortrels, hdr.nabortrels * sizeof(RelFileLocator));
1132 pfree(abortrels);
1133 }
1134 if (hdr.ncommitstats > 0)
1135 {
1136 save_state_data(commitstats,
1137 hdr.ncommitstats * sizeof(xl_xact_stats_item));
1138 pfree(commitstats);
1139 }
1140 if (hdr.nabortstats > 0)
1141 {
1142 save_state_data(abortstats,
1143 hdr.nabortstats * sizeof(xl_xact_stats_item));
1144 pfree(abortstats);
1145 }
1146 if (hdr.ninvalmsgs > 0)
1147 {
1148 save_state_data(invalmsgs,
1150 pfree(invalmsgs);
1151 }
1152}
1153
1154/*
1155 * Finish preparing state data and writing it to WAL.
1156 */
1157void
1159{
1160 TwoPhaseFileHeader *hdr;
1161 StateFileChunk *record;
1162 bool replorigin;
1163
1164 /* Add the end sentinel to the list of 2PC records */
1166 NULL, 0);
1167
1168 /* Go back and fill in total_len in the file header record */
1170 Assert(hdr->magic == TWOPHASE_MAGIC);
1171 hdr->total_len = records.total_len + sizeof(pg_crc32c);
1172
1175
1176 if (replorigin)
1177 {
1180 }
1181
1182 /*
1183 * If the data size exceeds MaxAllocSize, we won't be able to read it in
1184 * ReadTwoPhaseFile. Check for that now, rather than fail in the case
1185 * where we write data to file and then re-read at commit time.
1186 */
1187 if (hdr->total_len > MaxAllocSize)
1188 ereport(ERROR,
1189 (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
1190 errmsg("two-phase state file maximum length exceeded")));
1191
1192 /*
1193 * Now writing 2PC state data to WAL. We let the WAL's CRC protection
1194 * cover us, so no need to calculate a separate CRC.
1195 *
1196 * We have to set DELAY_CHKPT_START here, too; otherwise a checkpoint
1197 * starting immediately after the WAL record is inserted could complete
1198 * without fsync'ing our state file. (This is essentially the same kind
1199 * of race condition as the COMMIT-to-clog-write case that
1200 * RecordTransactionCommit uses DELAY_CHKPT_START for; see notes there.)
1201 *
1202 * We save the PREPARE record's location in the gxact for later use by
1203 * CheckPointTwoPhase.
1204 */
1206
1208
1211
1213 for (record = records.head; record != NULL; record = record->next)
1214 XLogRegisterData(record->data, record->len);
1215
1217
1218 gxact->prepare_end_lsn = XLogInsert(RM_XACT_ID, XLOG_XACT_PREPARE);
1219
1220 if (replorigin)
1221 {
1222 /* Move LSNs forward for this replication origin */
1224 gxact->prepare_end_lsn);
1225 }
1226
1227 XLogFlush(gxact->prepare_end_lsn);
1228
1229 /* If we crash now, we have prepared: WAL replay will fix things */
1230
1231 /* Store record's start location to read that later on Commit */
1233
1234 /*
1235 * Mark the prepared transaction as valid. As soon as xact.c marks MyProc
1236 * as not running our XID (which it will do immediately after this
1237 * function returns), others can commit/rollback the xact.
1238 *
1239 * NB: a side effect of this is to make a dummy ProcArray entry for the
1240 * prepared XID. This must happen before we clear the XID from MyProc /
1241 * ProcGlobal->xids[], else there is a window where the XID is not running
1242 * according to TransactionIdIsInProgress, and onlookers would be entitled
1243 * to assume the xact crashed. Instead we have a window where the same
1244 * XID appears twice in ProcArray, which is OK.
1245 */
1246 MarkAsPrepared(gxact, false);
1247
1248 /*
1249 * Now we can mark ourselves as out of the commit critical section: a
1250 * checkpoint starting after this will certainly see the gxact as a
1251 * candidate for fsyncing.
1252 */
1253 MyProc->delayChkptFlags &= ~DELAY_CHKPT_START;
1254
1255 /*
1256 * Remember that we have this GlobalTransaction entry locked for us. If
1257 * we crash after this point, it's too late to abort, but we must unlock
1258 * it so that the prepared transaction can be committed or rolled back.
1259 */
1260 MyLockedGxact = gxact;
1261
1263
1264 /*
1265 * Wait for synchronous replication, if required.
1266 *
1267 * Note that at this stage we have marked the prepare, but still show as
1268 * running in the procarray (twice!) and continue to hold locks.
1269 */
1270 SyncRepWaitForLSN(gxact->prepare_end_lsn, false);
1271
1272 records.tail = records.head = NULL;
1273 records.num_chunks = 0;
1274}
1275
1276/*
1277 * Register a 2PC record to be written to state file.
1278 */
1279void
1281 const void *data, uint32 len)
1282{
1283 TwoPhaseRecordOnDisk record;
1284
1285 record.rmid = rmid;
1286 record.info = info;
1287 record.len = len;
1288 save_state_data(&record, sizeof(TwoPhaseRecordOnDisk));
1289 if (len > 0)
1291}
1292
1293
1294/*
1295 * Read and validate the state file for xid.
1296 *
1297 * If it looks OK (has a valid magic number and CRC), return the palloc'd
1298 * contents of the file, issuing an error when finding corrupted data. If
1299 * missing_ok is true, which indicates that missing files can be safely
1300 * ignored, then return NULL. This state can be reached when doing recovery.
1301 */
1302static char *
1303ReadTwoPhaseFile(TransactionId xid, bool missing_ok)
1304{
1305 char path[MAXPGPATH];
1306 char *buf;
1307 TwoPhaseFileHeader *hdr;
1308 int fd;
1309 struct stat stat;
1310 uint32 crc_offset;
1311 pg_crc32c calc_crc,
1312 file_crc;
1313 int r;
1314
1315 TwoPhaseFilePath(path, xid);
1316
1317 fd = OpenTransientFile(path, O_RDONLY | PG_BINARY);
1318 if (fd < 0)
1319 {
1320 if (missing_ok && errno == ENOENT)
1321 return NULL;
1322
1323 ereport(ERROR,
1325 errmsg("could not open file \"%s\": %m", path)));
1326 }
1327
1328 /*
1329 * Check file length. We can determine a lower bound pretty easily. We
1330 * set an upper bound to avoid palloc() failure on a corrupt file, though
1331 * we can't guarantee that we won't get an out of memory error anyway,
1332 * even on a valid file.
1333 */
1334 if (fstat(fd, &stat))
1335 ereport(ERROR,
1337 errmsg("could not stat file \"%s\": %m", path)));
1338
1339 if (stat.st_size < (MAXALIGN(sizeof(TwoPhaseFileHeader)) +
1341 sizeof(pg_crc32c)) ||
1343 ereport(ERROR,
1345 errmsg_plural("incorrect size of file \"%s\": %lld byte",
1346 "incorrect size of file \"%s\": %lld bytes",
1347 (long long int) stat.st_size, path,
1348 (long long int) stat.st_size)));
1349
1350 crc_offset = stat.st_size - sizeof(pg_crc32c);
1351 if (crc_offset != MAXALIGN(crc_offset))
1352 ereport(ERROR,
1354 errmsg("incorrect alignment of CRC offset for file \"%s\"",
1355 path)));
1356
1357 /*
1358 * OK, slurp in the file.
1359 */
1360 buf = (char *) palloc(stat.st_size);
1361
1362 pgstat_report_wait_start(WAIT_EVENT_TWOPHASE_FILE_READ);
1363 r = read(fd, buf, stat.st_size);
1364 if (r != stat.st_size)
1365 {
1366 if (r < 0)
1367 ereport(ERROR,
1369 errmsg("could not read file \"%s\": %m", path)));
1370 else
1371 ereport(ERROR,
1372 (errmsg("could not read file \"%s\": read %d of %lld",
1373 path, r, (long long int) stat.st_size)));
1374 }
1375
1377
1378 if (CloseTransientFile(fd) != 0)
1379 ereport(ERROR,
1381 errmsg("could not close file \"%s\": %m", path)));
1382
1383 hdr = (TwoPhaseFileHeader *) buf;
1384 if (hdr->magic != TWOPHASE_MAGIC)
1385 ereport(ERROR,
1387 errmsg("invalid magic number stored in file \"%s\"",
1388 path)));
1389
1390 if (hdr->total_len != stat.st_size)
1391 ereport(ERROR,
1393 errmsg("invalid size stored in file \"%s\"",
1394 path)));
1395
1396 INIT_CRC32C(calc_crc);
1397 COMP_CRC32C(calc_crc, buf, crc_offset);
1398 FIN_CRC32C(calc_crc);
1399
1400 file_crc = *((pg_crc32c *) (buf + crc_offset));
1401
1402 if (!EQ_CRC32C(calc_crc, file_crc))
1403 ereport(ERROR,
1405 errmsg("calculated CRC checksum does not match value stored in file \"%s\"",
1406 path)));
1407
1408 return buf;
1409}
1410
1411
1412/*
1413 * Reads 2PC data from xlog. During checkpoint this data will be moved to
1414 * twophase files and ReadTwoPhaseFile should be used instead.
1415 *
1416 * Note clearly that this function can access WAL during normal operation,
1417 * similarly to the way WALSender or Logical Decoding would do.
1418 */
1419static void
1421{
1422 XLogRecord *record;
1424 char *errormsg;
1425
1427 XL_ROUTINE(.page_read = &read_local_xlog_page,
1428 .segment_open = &wal_segment_open,
1429 .segment_close = &wal_segment_close),
1430 NULL);
1431 if (!xlogreader)
1432 ereport(ERROR,
1433 (errcode(ERRCODE_OUT_OF_MEMORY),
1434 errmsg("out of memory"),
1435 errdetail("Failed while allocating a WAL reading processor.")));
1436
1438 record = XLogReadRecord(xlogreader, &errormsg);
1439
1440 if (record == NULL)
1441 {
1442 if (errormsg)
1443 ereport(ERROR,
1445 errmsg("could not read two-phase state from WAL at %X/%X: %s",
1446 LSN_FORMAT_ARGS(lsn), errormsg)));
1447 else
1448 ereport(ERROR,
1450 errmsg("could not read two-phase state from WAL at %X/%X",
1451 LSN_FORMAT_ARGS(lsn))));
1452 }
1453
1454 if (XLogRecGetRmid(xlogreader) != RM_XACT_ID ||
1456 ereport(ERROR,
1458 errmsg("expected two-phase state data is not present in WAL at %X/%X",
1459 LSN_FORMAT_ARGS(lsn))));
1460
1461 if (len != NULL)
1463
1464 *buf = palloc(sizeof(char) * XLogRecGetDataLen(xlogreader));
1465 memcpy(*buf, XLogRecGetData(xlogreader), sizeof(char) * XLogRecGetDataLen(xlogreader));
1466
1468}
1469
1470
1471/*
1472 * Confirms an xid is prepared, during recovery
1473 */
1474bool
1476{
1477 char *buf;
1478 TwoPhaseFileHeader *hdr;
1479 bool result;
1480
1482
1483 if (max_prepared_xacts <= 0)
1484 return false; /* nothing to do */
1485
1486 /* Read and validate file */
1487 buf = ReadTwoPhaseFile(xid, true);
1488 if (buf == NULL)
1489 return false;
1490
1491 /* Check header also */
1492 hdr = (TwoPhaseFileHeader *) buf;
1493 result = TransactionIdEquals(hdr->xid, xid);
1494 pfree(buf);
1495
1496 return result;
1497}
1498
1499/*
1500 * FinishPreparedTransaction: execute COMMIT PREPARED or ROLLBACK PREPARED
1501 */
1502void
1503FinishPreparedTransaction(const char *gid, bool isCommit)
1504{
1505 GlobalTransaction gxact;
1506 PGPROC *proc;
1507 TransactionId xid;
1508 bool ondisk;
1509 char *buf;
1510 char *bufptr;
1511 TwoPhaseFileHeader *hdr;
1512 TransactionId latestXid;
1513 TransactionId *children;
1514 RelFileLocator *commitrels;
1515 RelFileLocator *abortrels;
1516 RelFileLocator *delrels;
1517 int ndelrels;
1518 xl_xact_stats_item *commitstats;
1519 xl_xact_stats_item *abortstats;
1520 SharedInvalidationMessage *invalmsgs;
1521
1522 /*
1523 * Validate the GID, and lock the GXACT to ensure that two backends do not
1524 * try to commit the same GID at once.
1525 */
1526 gxact = LockGXact(gid, GetUserId());
1527 proc = GetPGProcByNumber(gxact->pgprocno);
1528 xid = gxact->xid;
1529
1530 /*
1531 * Read and validate 2PC state data. State data will typically be stored
1532 * in WAL files if the LSN is after the last checkpoint record, or moved
1533 * to disk if for some reason they have lived for a long time.
1534 */
1535 if (gxact->ondisk)
1536 buf = ReadTwoPhaseFile(xid, false);
1537 else
1539
1540
1541 /*
1542 * Disassemble the header area
1543 */
1544 hdr = (TwoPhaseFileHeader *) buf;
1545 Assert(TransactionIdEquals(hdr->xid, xid));
1546 bufptr = buf + MAXALIGN(sizeof(TwoPhaseFileHeader));
1547 bufptr += MAXALIGN(hdr->gidlen);
1548 children = (TransactionId *) bufptr;
1549 bufptr += MAXALIGN(hdr->nsubxacts * sizeof(TransactionId));
1550 commitrels = (RelFileLocator *) bufptr;
1551 bufptr += MAXALIGN(hdr->ncommitrels * sizeof(RelFileLocator));
1552 abortrels = (RelFileLocator *) bufptr;
1553 bufptr += MAXALIGN(hdr->nabortrels * sizeof(RelFileLocator));
1554 commitstats = (xl_xact_stats_item *) bufptr;
1555 bufptr += MAXALIGN(hdr->ncommitstats * sizeof(xl_xact_stats_item));
1556 abortstats = (xl_xact_stats_item *) bufptr;
1557 bufptr += MAXALIGN(hdr->nabortstats * sizeof(xl_xact_stats_item));
1558 invalmsgs = (SharedInvalidationMessage *) bufptr;
1559 bufptr += MAXALIGN(hdr->ninvalmsgs * sizeof(SharedInvalidationMessage));
1560
1561 /* compute latestXid among all children */
1562 latestXid = TransactionIdLatest(xid, hdr->nsubxacts, children);
1563
1564 /* Prevent cancel/die interrupt while cleaning up */
1566
1567 /*
1568 * The order of operations here is critical: make the XLOG entry for
1569 * commit or abort, then mark the transaction committed or aborted in
1570 * pg_xact, then remove its PGPROC from the global ProcArray (which means
1571 * TransactionIdIsInProgress will stop saying the prepared xact is in
1572 * progress), then run the post-commit or post-abort callbacks. The
1573 * callbacks will release the locks the transaction held.
1574 */
1575 if (isCommit)
1577 hdr->nsubxacts, children,
1578 hdr->ncommitrels, commitrels,
1579 hdr->ncommitstats,
1580 commitstats,
1581 hdr->ninvalmsgs, invalmsgs,
1582 hdr->initfileinval, gid);
1583 else
1585 hdr->nsubxacts, children,
1586 hdr->nabortrels, abortrels,
1587 hdr->nabortstats,
1588 abortstats,
1589 gid);
1590
1591 ProcArrayRemove(proc, latestXid);
1592
1593 /*
1594 * In case we fail while running the callbacks, mark the gxact invalid so
1595 * no one else will try to commit/rollback, and so it will be recycled if
1596 * we fail after this point. It is still locked by our backend so it
1597 * won't go away yet.
1598 *
1599 * (We assume it's safe to do this without taking TwoPhaseStateLock.)
1600 */
1601 gxact->valid = false;
1602
1603 /*
1604 * We have to remove any files that were supposed to be dropped. For
1605 * consistency with the regular xact.c code paths, must do this before
1606 * releasing locks, so do it before running the callbacks.
1607 *
1608 * NB: this code knows that we couldn't be dropping any temp rels ...
1609 */
1610 if (isCommit)
1611 {
1612 delrels = commitrels;
1613 ndelrels = hdr->ncommitrels;
1614 }
1615 else
1616 {
1617 delrels = abortrels;
1618 ndelrels = hdr->nabortrels;
1619 }
1620
1621 /* Make sure files supposed to be dropped are dropped */
1622 DropRelationFiles(delrels, ndelrels, false);
1623
1624 if (isCommit)
1625 pgstat_execute_transactional_drops(hdr->ncommitstats, commitstats, false);
1626 else
1627 pgstat_execute_transactional_drops(hdr->nabortstats, abortstats, false);
1628
1629 /*
1630 * Handle cache invalidation messages.
1631 *
1632 * Relcache init file invalidation requires processing both before and
1633 * after we send the SI messages, only when committing. See
1634 * AtEOXact_Inval().
1635 */
1636 if (isCommit)
1637 {
1638 if (hdr->initfileinval)
1640 SendSharedInvalidMessages(invalmsgs, hdr->ninvalmsgs);
1641 if (hdr->initfileinval)
1643 }
1644
1645 /*
1646 * Acquire the two-phase lock. We want to work on the two-phase callbacks
1647 * while holding it to avoid potential conflicts with other transactions
1648 * attempting to use the same GID, so the lock is released once the shared
1649 * memory state is cleared.
1650 */
1651 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
1652
1653 /* And now do the callbacks */
1654 if (isCommit)
1656 else
1658
1659 PredicateLockTwoPhaseFinish(xid, isCommit);
1660
1661 /*
1662 * Read this value while holding the two-phase lock, as the on-disk 2PC
1663 * file is physically removed after the lock is released.
1664 */
1665 ondisk = gxact->ondisk;
1666
1667 /* Clear shared memory state */
1668 RemoveGXact(gxact);
1669
1670 /*
1671 * Release the lock as all callbacks are called and shared memory cleanup
1672 * is done.
1673 */
1674 LWLockRelease(TwoPhaseStateLock);
1675
1676 /* Count the prepared xact as committed or aborted */
1677 AtEOXact_PgStat(isCommit, false);
1678
1679 /*
1680 * And now we can clean up any files we may have left.
1681 */
1682 if (ondisk)
1683 RemoveTwoPhaseFile(xid, true);
1684
1685 MyLockedGxact = NULL;
1686
1688
1689 pfree(buf);
1690}
1691
1692/*
1693 * Scan 2PC state data in memory and call the indicated callbacks for each 2PC record.
1694 */
1695static void
1697 const TwoPhaseCallback callbacks[])
1698{
1699 for (;;)
1700 {
1701 TwoPhaseRecordOnDisk *record = (TwoPhaseRecordOnDisk *) bufptr;
1702
1703 Assert(record->rmid <= TWOPHASE_RM_MAX_ID);
1704 if (record->rmid == TWOPHASE_RM_END_ID)
1705 break;
1706
1707 bufptr += MAXALIGN(sizeof(TwoPhaseRecordOnDisk));
1708
1709 if (callbacks[record->rmid] != NULL)
1710 callbacks[record->rmid] (xid, record->info, bufptr, record->len);
1711
1712 bufptr += MAXALIGN(record->len);
1713 }
1714}
1715
1716/*
1717 * Remove the 2PC file for the specified XID.
1718 *
1719 * If giveWarning is false, do not complain about file-not-present;
1720 * this is an expected case during WAL replay.
1721 */
1722static void
1723RemoveTwoPhaseFile(TransactionId xid, bool giveWarning)
1724{
1725 char path[MAXPGPATH];
1726
1727 TwoPhaseFilePath(path, xid);
1728 if (unlink(path))
1729 if (errno != ENOENT || giveWarning)
1732 errmsg("could not remove file \"%s\": %m", path)));
1733}
1734
1735/*
1736 * Recreates a state file. This is used in WAL replay and during
1737 * checkpoint creation.
1738 *
1739 * Note: content and len don't include CRC.
1740 */
1741static void
1743{
1744 char path[MAXPGPATH];
1745 pg_crc32c statefile_crc;
1746 int fd;
1747
1748 /* Recompute CRC */
1749 INIT_CRC32C(statefile_crc);
1750 COMP_CRC32C(statefile_crc, content, len);
1751 FIN_CRC32C(statefile_crc);
1752
1753 TwoPhaseFilePath(path, xid);
1754
1755 fd = OpenTransientFile(path,
1756 O_CREAT | O_TRUNC | O_WRONLY | PG_BINARY);
1757 if (fd < 0)
1758 ereport(ERROR,
1760 errmsg("could not recreate file \"%s\": %m", path)));
1761
1762 /* Write content and CRC */
1763 errno = 0;
1764 pgstat_report_wait_start(WAIT_EVENT_TWOPHASE_FILE_WRITE);
1765 if (write(fd, content, len) != len)
1766 {
1767 /* if write didn't set errno, assume problem is no disk space */
1768 if (errno == 0)
1769 errno = ENOSPC;
1770 ereport(ERROR,
1772 errmsg("could not write file \"%s\": %m", path)));
1773 }
1774 if (write(fd, &statefile_crc, sizeof(pg_crc32c)) != sizeof(pg_crc32c))
1775 {
1776 /* if write didn't set errno, assume problem is no disk space */
1777 if (errno == 0)
1778 errno = ENOSPC;
1779 ereport(ERROR,
1781 errmsg("could not write file \"%s\": %m", path)));
1782 }
1784
1785 /*
1786 * We must fsync the file because the end-of-replay checkpoint will not do
1787 * so, there being no GXACT in shared memory yet to tell it to.
1788 */
1789 pgstat_report_wait_start(WAIT_EVENT_TWOPHASE_FILE_SYNC);
1790 if (pg_fsync(fd) != 0)
1791 ereport(ERROR,
1793 errmsg("could not fsync file \"%s\": %m", path)));
1795
1796 if (CloseTransientFile(fd) != 0)
1797 ereport(ERROR,
1799 errmsg("could not close file \"%s\": %m", path)));
1800}
1801
1802/*
1803 * CheckPointTwoPhase -- handle 2PC component of checkpointing.
1804 *
1805 * We must fsync the state file of any GXACT that is valid or has been
1806 * generated during redo and has a PREPARE LSN <= the checkpoint's redo
1807 * horizon. (If the gxact isn't valid yet, has not been generated in
1808 * redo, or has a later LSN, this checkpoint is not responsible for
1809 * fsyncing it.)
1810 *
1811 * This is deliberately run as late as possible in the checkpoint sequence,
1812 * because GXACTs ordinarily have short lifespans, and so it is quite
1813 * possible that GXACTs that were valid at checkpoint start will no longer
1814 * exist if we wait a little bit. With typical checkpoint settings this
1815 * will be about 3 minutes for an online checkpoint, so as a result we
1816 * expect that there will be no GXACTs that need to be copied to disk.
1817 *
1818 * If a GXACT remains valid across multiple checkpoints, it will already
1819 * be on disk so we don't bother to repeat that write.
1820 */
1821void
1823{
1824 int i;
1825 int serialized_xacts = 0;
1826
1827 if (max_prepared_xacts <= 0)
1828 return; /* nothing to do */
1829
1830 TRACE_POSTGRESQL_TWOPHASE_CHECKPOINT_START();
1831
1832 /*
1833 * We are expecting there to be zero GXACTs that need to be copied to
1834 * disk, so we perform all I/O while holding TwoPhaseStateLock for
1835 * simplicity. This prevents any new xacts from preparing while this
1836 * occurs, which shouldn't be a problem since the presence of long-lived
1837 * prepared xacts indicates the transaction manager isn't active.
1838 *
1839 * It's also possible to move I/O out of the lock, but on every error we
1840 * should check whether somebody committed our transaction in different
1841 * backend. Let's leave this optimization for future, if somebody will
1842 * spot that this place cause bottleneck.
1843 *
1844 * Note that it isn't possible for there to be a GXACT with a
1845 * prepare_end_lsn set prior to the last checkpoint yet is marked invalid,
1846 * because of the efforts with delayChkptFlags.
1847 */
1848 LWLockAcquire(TwoPhaseStateLock, LW_SHARED);
1849 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
1850 {
1851 /*
1852 * Note that we are using gxact not PGPROC so this works in recovery
1853 * also
1854 */
1856
1857 if ((gxact->valid || gxact->inredo) &&
1858 !gxact->ondisk &&
1859 gxact->prepare_end_lsn <= redo_horizon)
1860 {
1861 char *buf;
1862 int len;
1863
1865 RecreateTwoPhaseFile(gxact->xid, buf, len);
1866 gxact->ondisk = true;
1869 pfree(buf);
1870 serialized_xacts++;
1871 }
1872 }
1873 LWLockRelease(TwoPhaseStateLock);
1874
1875 /*
1876 * Flush unconditionally the parent directory to make any information
1877 * durable on disk. Two-phase files could have been removed and those
1878 * removals need to be made persistent as well as any files newly created
1879 * previously since the last checkpoint.
1880 */
1882
1883 TRACE_POSTGRESQL_TWOPHASE_CHECKPOINT_DONE();
1884
1885 if (log_checkpoints && serialized_xacts > 0)
1886 ereport(LOG,
1887 (errmsg_plural("%u two-phase state file was written "
1888 "for a long-running prepared transaction",
1889 "%u two-phase state files were written "
1890 "for long-running prepared transactions",
1891 serialized_xacts,
1892 serialized_xacts)));
1893}
1894
1895/*
1896 * restoreTwoPhaseData
1897 *
1898 * Scan pg_twophase and fill TwoPhaseState depending on the on-disk data.
1899 * This is called once at the beginning of recovery, saving any extra
1900 * lookups in the future. Two-phase files that are newer than the
1901 * minimum XID horizon are discarded on the way.
1902 */
1903void
1905{
1906 DIR *cldir;
1907 struct dirent *clde;
1908
1909 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
1910 cldir = AllocateDir(TWOPHASE_DIR);
1911 while ((clde = ReadDir(cldir, TWOPHASE_DIR)) != NULL)
1912 {
1913 if (strlen(clde->d_name) == 16 &&
1914 strspn(clde->d_name, "0123456789ABCDEF") == 16)
1915 {
1916 TransactionId xid;
1917 FullTransactionId fxid;
1918 char *buf;
1919
1920 fxid = FullTransactionIdFromU64(strtou64(clde->d_name, NULL, 16));
1921 xid = XidFromFullTransactionId(fxid);
1922
1924 true, false, false);
1925 if (buf == NULL)
1926 continue;
1927
1930 }
1931 }
1932 LWLockRelease(TwoPhaseStateLock);
1933 FreeDir(cldir);
1934}
1935
1936/*
1937 * PrescanPreparedTransactions
1938 *
1939 * Scan the shared memory entries of TwoPhaseState and determine the range
1940 * of valid XIDs present. This is run during database startup, after we
1941 * have completed reading WAL. TransamVariables->nextXid has been set to
1942 * one more than the highest XID for which evidence exists in WAL.
1943 *
1944 * We throw away any prepared xacts with main XID beyond nextXid --- if any
1945 * are present, it suggests that the DBA has done a PITR recovery to an
1946 * earlier point in time without cleaning out pg_twophase. We dare not
1947 * try to recover such prepared xacts since they likely depend on database
1948 * state that doesn't exist now.
1949 *
1950 * However, we will advance nextXid beyond any subxact XIDs belonging to
1951 * valid prepared xacts. We need to do this since subxact commit doesn't
1952 * write a WAL entry, and so there might be no evidence in WAL of those
1953 * subxact XIDs.
1954 *
1955 * On corrupted two-phase files, fail immediately. Keeping around broken
1956 * entries and let replay continue causes harm on the system, and a new
1957 * backup should be rolled in.
1958 *
1959 * Our other responsibility is to determine and return the oldest valid XID
1960 * among the prepared xacts (if none, return TransamVariables->nextXid).
1961 * This is needed to synchronize pg_subtrans startup properly.
1962 *
1963 * If xids_p and nxids_p are not NULL, pointer to a palloc'd array of all
1964 * top-level xids is stored in *xids_p. The number of entries in the array
1965 * is returned in *nxids_p.
1966 */
1969{
1971 TransactionId origNextXid = XidFromFullTransactionId(nextXid);
1972 TransactionId result = origNextXid;
1973 TransactionId *xids = NULL;
1974 int nxids = 0;
1975 int allocsize = 0;
1976 int i;
1977
1978 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
1979 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
1980 {
1981 TransactionId xid;
1982 char *buf;
1984
1985 Assert(gxact->inredo);
1986
1987 xid = gxact->xid;
1988
1990 gxact->prepare_start_lsn,
1991 gxact->ondisk, false, true);
1992
1993 if (buf == NULL)
1994 continue;
1995
1996 /*
1997 * OK, we think this file is valid. Incorporate xid into the
1998 * running-minimum result.
1999 */
2000 if (TransactionIdPrecedes(xid, result))
2001 result = xid;
2002
2003 if (xids_p)
2004 {
2005 if (nxids == allocsize)
2006 {
2007 if (nxids == 0)
2008 {
2009 allocsize = 10;
2010 xids = palloc(allocsize * sizeof(TransactionId));
2011 }
2012 else
2013 {
2014 allocsize = allocsize * 2;
2015 xids = repalloc(xids, allocsize * sizeof(TransactionId));
2016 }
2017 }
2018 xids[nxids++] = xid;
2019 }
2020
2021 pfree(buf);
2022 }
2023 LWLockRelease(TwoPhaseStateLock);
2024
2025 if (xids_p)
2026 {
2027 *xids_p = xids;
2028 *nxids_p = nxids;
2029 }
2030
2031 return result;
2032}
2033
2034/*
2035 * StandbyRecoverPreparedTransactions
2036 *
2037 * Scan the shared memory entries of TwoPhaseState and setup all the required
2038 * information to allow standby queries to treat prepared transactions as still
2039 * active.
2040 *
2041 * This is never called at the end of recovery - we use
2042 * RecoverPreparedTransactions() at that point.
2043 *
2044 * This updates pg_subtrans, so that any subtransactions will be correctly
2045 * seen as in-progress in snapshots taken during recovery.
2046 */
2047void
2049{
2050 int i;
2051
2052 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
2053 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
2054 {
2055 TransactionId xid;
2056 char *buf;
2058
2059 Assert(gxact->inredo);
2060
2061 xid = gxact->xid;
2062
2064 gxact->prepare_start_lsn,
2065 gxact->ondisk, true, false);
2066 if (buf != NULL)
2067 pfree(buf);
2068 }
2069 LWLockRelease(TwoPhaseStateLock);
2070}
2071
2072/*
2073 * RecoverPreparedTransactions
2074 *
2075 * Scan the shared memory entries of TwoPhaseState and reload the state for
2076 * each prepared transaction (reacquire locks, etc).
2077 *
2078 * This is run at the end of recovery, but before we allow backends to write
2079 * WAL.
2080 *
2081 * At the end of recovery the way we take snapshots will change. We now need
2082 * to mark all running transactions with their full SubTransSetParent() info
2083 * to allow normal snapshots to work correctly if snapshots overflow.
2084 * We do this here because by definition prepared transactions are the only
2085 * type of write transaction still running, so this is necessary and
2086 * complete.
2087 */
2088void
2090{
2091 int i;
2092
2093 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
2094 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
2095 {
2096 TransactionId xid;
2097 char *buf;
2099 char *bufptr;
2100 TwoPhaseFileHeader *hdr;
2101 TransactionId *subxids;
2102 const char *gid;
2103
2104 xid = gxact->xid;
2105
2106 /*
2107 * Reconstruct subtrans state for the transaction --- needed because
2108 * pg_subtrans is not preserved over a restart. Note that we are
2109 * linking all the subtransactions directly to the top-level XID;
2110 * there may originally have been a more complex hierarchy, but
2111 * there's no need to restore that exactly. It's possible that
2112 * SubTransSetParent has been set before, if the prepared transaction
2113 * generated xid assignment records.
2114 */
2116 gxact->prepare_start_lsn,
2117 gxact->ondisk, true, false);
2118 if (buf == NULL)
2119 continue;
2120
2121 ereport(LOG,
2122 (errmsg("recovering prepared transaction %u from shared memory", xid)));
2123
2124 hdr = (TwoPhaseFileHeader *) buf;
2125 Assert(TransactionIdEquals(hdr->xid, xid));
2126 bufptr = buf + MAXALIGN(sizeof(TwoPhaseFileHeader));
2127 gid = (const char *) bufptr;
2128 bufptr += MAXALIGN(hdr->gidlen);
2129 subxids = (TransactionId *) bufptr;
2130 bufptr += MAXALIGN(hdr->nsubxacts * sizeof(TransactionId));
2131 bufptr += MAXALIGN(hdr->ncommitrels * sizeof(RelFileLocator));
2132 bufptr += MAXALIGN(hdr->nabortrels * sizeof(RelFileLocator));
2133 bufptr += MAXALIGN(hdr->ncommitstats * sizeof(xl_xact_stats_item));
2134 bufptr += MAXALIGN(hdr->nabortstats * sizeof(xl_xact_stats_item));
2135 bufptr += MAXALIGN(hdr->ninvalmsgs * sizeof(SharedInvalidationMessage));
2136
2137 /*
2138 * Recreate its GXACT and dummy PGPROC. But, check whether it was
2139 * added in redo and already has a shmem entry for it.
2140 */
2141 MarkAsPreparingGuts(gxact, xid, gid,
2142 hdr->prepared_at,
2143 hdr->owner, hdr->database);
2144
2145 /* recovered, so reset the flag for entries generated by redo */
2146 gxact->inredo = false;
2147
2148 GXactLoadSubxactData(gxact, hdr->nsubxacts, subxids);
2149 MarkAsPrepared(gxact, true);
2150
2151 LWLockRelease(TwoPhaseStateLock);
2152
2153 /*
2154 * Recover other state (notably locks) using resource managers.
2155 */
2157
2158 /*
2159 * Release locks held by the standby process after we process each
2160 * prepared transaction. As a result, we don't need too many
2161 * additional locks at any one time.
2162 */
2163 if (InHotStandby)
2164 StandbyReleaseLockTree(xid, hdr->nsubxacts, subxids);
2165
2166 /*
2167 * We're done with recovering this transaction. Clear MyLockedGxact,
2168 * like we do in PrepareTransaction() during normal operation.
2169 */
2171
2172 pfree(buf);
2173
2174 LWLockAcquire(TwoPhaseStateLock, LW_EXCLUSIVE);
2175 }
2176
2177 LWLockRelease(TwoPhaseStateLock);
2178}
2179
2180/*
2181 * ProcessTwoPhaseBuffer
2182 *
2183 * Given a transaction id, read it either from disk or read it directly
2184 * via shmem xlog record pointer using the provided "prepare_start_lsn".
2185 *
2186 * If setParent is true, set up subtransaction parent linkages.
2187 *
2188 * If setNextXid is true, set TransamVariables->nextXid to the newest
2189 * value scanned.
2190 */
2191static char *
2193 XLogRecPtr prepare_start_lsn,
2194 bool fromdisk,
2195 bool setParent, bool setNextXid)
2196{
2198 TransactionId origNextXid = XidFromFullTransactionId(nextXid);
2199 TransactionId *subxids;
2200 char *buf;
2201 TwoPhaseFileHeader *hdr;
2202 int i;
2203
2204 Assert(LWLockHeldByMeInMode(TwoPhaseStateLock, LW_EXCLUSIVE));
2205
2206 if (!fromdisk)
2207 Assert(prepare_start_lsn != InvalidXLogRecPtr);
2208
2209 /* Already processed? */
2211 {
2212 if (fromdisk)
2213 {
2215 (errmsg("removing stale two-phase state file for transaction %u",
2216 xid)));
2217 RemoveTwoPhaseFile(xid, true);
2218 }
2219 else
2220 {
2222 (errmsg("removing stale two-phase state from memory for transaction %u",
2223 xid)));
2224 PrepareRedoRemove(xid, true);
2225 }
2226 return NULL;
2227 }
2228
2229 /* Reject XID if too new */
2230 if (TransactionIdFollowsOrEquals(xid, origNextXid))
2231 {
2232 if (fromdisk)
2233 {
2235 (errmsg("removing future two-phase state file for transaction %u",
2236 xid)));
2237 RemoveTwoPhaseFile(xid, true);
2238 }
2239 else
2240 {
2242 (errmsg("removing future two-phase state from memory for transaction %u",
2243 xid)));
2244 PrepareRedoRemove(xid, true);
2245 }
2246 return NULL;
2247 }
2248
2249 if (fromdisk)
2250 {
2251 /* Read and validate file */
2252 buf = ReadTwoPhaseFile(xid, false);
2253 }
2254 else
2255 {
2256 /* Read xlog data */
2257 XlogReadTwoPhaseData(prepare_start_lsn, &buf, NULL);
2258 }
2259
2260 /* Deconstruct header */
2261 hdr = (TwoPhaseFileHeader *) buf;
2262 if (!TransactionIdEquals(hdr->xid, xid))
2263 {
2264 if (fromdisk)
2265 ereport(ERROR,
2267 errmsg("corrupted two-phase state file for transaction %u",
2268 xid)));
2269 else
2270 ereport(ERROR,
2272 errmsg("corrupted two-phase state in memory for transaction %u",
2273 xid)));
2274 }
2275
2276 /*
2277 * Examine subtransaction XIDs ... they should all follow main XID, and
2278 * they may force us to advance nextXid.
2279 */
2280 subxids = (TransactionId *) (buf +
2281 MAXALIGN(sizeof(TwoPhaseFileHeader)) +
2282 MAXALIGN(hdr->gidlen));
2283 for (i = 0; i < hdr->nsubxacts; i++)
2284 {
2285 TransactionId subxid = subxids[i];
2286
2287 Assert(TransactionIdFollows(subxid, xid));
2288
2289 /* update nextXid if needed */
2290 if (setNextXid)
2292
2293 if (setParent)
2294 SubTransSetParent(subxid, xid);
2295 }
2296
2297 return buf;
2298}
2299
2300
2301/*
2302 * RecordTransactionCommitPrepared
2303 *
2304 * This is basically the same as RecordTransactionCommit (q.v. if you change
2305 * this function): in particular, we must set DELAY_CHKPT_START to avoid a
2306 * race condition.
2307 *
2308 * We know the transaction made at least one XLOG entry (its PREPARE),
2309 * so it is never possible to optimize out the commit record.
2310 */
2311static void
2313 int nchildren,
2314 TransactionId *children,
2315 int nrels,
2316 RelFileLocator *rels,
2317 int nstats,
2318 xl_xact_stats_item *stats,
2319 int ninvalmsgs,
2320 SharedInvalidationMessage *invalmsgs,
2321 bool initfileinval,
2322 const char *gid)
2323{
2324 XLogRecPtr recptr;
2325 TimestampTz committs = GetCurrentTimestamp();
2326 bool replorigin;
2327
2328 /*
2329 * Are we using the replication origins feature? Or, in other words, are
2330 * we replaying remote actions?
2331 */
2334
2336
2337 /* See notes in RecordTransactionCommit */
2340
2341 /*
2342 * Emit the XLOG commit record. Note that we mark 2PC commits as
2343 * potentially having AccessExclusiveLocks since we don't know whether or
2344 * not they do.
2345 */
2346 recptr = XactLogCommitRecord(committs,
2347 nchildren, children, nrels, rels,
2348 nstats, stats,
2349 ninvalmsgs, invalmsgs,
2350 initfileinval,
2352 xid, gid);
2353
2354
2355 if (replorigin)
2356 /* Move LSNs forward for this replication origin */
2359
2360 /*
2361 * Record commit timestamp. The value comes from plain commit timestamp
2362 * if replorigin is not enabled, or replorigin already set a value for us
2363 * in replorigin_session_origin_timestamp otherwise.
2364 *
2365 * We don't need to WAL-log anything here, as the commit record written
2366 * above already contains the data.
2367 */
2368 if (!replorigin || replorigin_session_origin_timestamp == 0)
2370
2371 TransactionTreeSetCommitTsData(xid, nchildren, children,
2374
2375 /*
2376 * We don't currently try to sleep before flush here ... nor is there any
2377 * support for async commit of a prepared xact (the very idea is probably
2378 * a contradiction)
2379 */
2380
2381 /* Flush XLOG to disk */
2382 XLogFlush(recptr);
2383
2384 /* Mark the transaction committed in pg_xact */
2385 TransactionIdCommitTree(xid, nchildren, children);
2386
2387 /* Checkpoint can proceed now */
2388 MyProc->delayChkptFlags &= ~DELAY_CHKPT_START;
2389
2391
2392 /*
2393 * Wait for synchronous replication, if required.
2394 *
2395 * Note that at this stage we have marked clog, but still show as running
2396 * in the procarray and continue to hold locks.
2397 */
2398 SyncRepWaitForLSN(recptr, true);
2399}
2400
2401/*
2402 * RecordTransactionAbortPrepared
2403 *
2404 * This is basically the same as RecordTransactionAbort.
2405 *
2406 * We know the transaction made at least one XLOG entry (its PREPARE),
2407 * so it is never possible to optimize out the abort record.
2408 */
2409static void
2411 int nchildren,
2412 TransactionId *children,
2413 int nrels,
2414 RelFileLocator *rels,
2415 int nstats,
2416 xl_xact_stats_item *stats,
2417 const char *gid)
2418{
2419 XLogRecPtr recptr;
2420 bool replorigin;
2421
2422 /*
2423 * Are we using the replication origins feature? Or, in other words, are
2424 * we replaying remote actions?
2425 */
2428
2429 /*
2430 * Catch the scenario where we aborted partway through
2431 * RecordTransactionCommitPrepared ...
2432 */
2433 if (TransactionIdDidCommit(xid))
2434 elog(PANIC, "cannot abort transaction %u, it was already committed",
2435 xid);
2436
2438
2439 /*
2440 * Emit the XLOG commit record. Note that we mark 2PC aborts as
2441 * potentially having AccessExclusiveLocks since we don't know whether or
2442 * not they do.
2443 */
2445 nchildren, children,
2446 nrels, rels,
2447 nstats, stats,
2449 xid, gid);
2450
2451 if (replorigin)
2452 /* Move LSNs forward for this replication origin */
2455
2456 /* Always flush, since we're about to remove the 2PC state file */
2457 XLogFlush(recptr);
2458
2459 /*
2460 * Mark the transaction aborted in clog. This is not absolutely necessary
2461 * but we may as well do it while we are here.
2462 */
2463 TransactionIdAbortTree(xid, nchildren, children);
2464
2466
2467 /*
2468 * Wait for synchronous replication, if required.
2469 *
2470 * Note that at this stage we have marked clog, but still show as running
2471 * in the procarray and continue to hold locks.
2472 */
2473 SyncRepWaitForLSN(recptr, false);
2474}
2475
2476/*
2477 * PrepareRedoAdd
2478 *
2479 * Store pointers to the start/end of the WAL record along with the xid in
2480 * a gxact entry in shared memory TwoPhaseState structure. If caller
2481 * specifies InvalidXLogRecPtr as WAL location to fetch the two-phase
2482 * data, the entry is marked as located on disk.
2483 */
2484void
2486 XLogRecPtr end_lsn, RepOriginId origin_id)
2487{
2489 char *bufptr;
2490 const char *gid;
2491 GlobalTransaction gxact;
2492
2493 Assert(LWLockHeldByMeInMode(TwoPhaseStateLock, LW_EXCLUSIVE));
2495
2496 bufptr = buf + MAXALIGN(sizeof(TwoPhaseFileHeader));
2497 gid = (const char *) bufptr;
2498
2499 /*
2500 * Reserve the GID for the given transaction in the redo code path.
2501 *
2502 * This creates a gxact struct and puts it into the active array.
2503 *
2504 * In redo, this struct is mainly used to track PREPARE/COMMIT entries in
2505 * shared memory. Hence, we only fill up the bare minimum contents here.
2506 * The gxact also gets marked with gxact->inredo set to true to indicate
2507 * that it got added in the redo phase
2508 */
2509
2510 /*
2511 * In the event of a crash while a checkpoint was running, it may be
2512 * possible that some two-phase data found its way to disk while its
2513 * corresponding record needs to be replayed in the follow-up recovery. As
2514 * the 2PC data was on disk, it has already been restored at the beginning
2515 * of recovery with restoreTwoPhaseData(), so skip this record to avoid
2516 * duplicates in TwoPhaseState. If a consistent state has been reached,
2517 * the record is added to TwoPhaseState and it should have no
2518 * corresponding file in pg_twophase.
2519 */
2520 if (!XLogRecPtrIsInvalid(start_lsn))
2521 {
2522 char path[MAXPGPATH];
2523
2524 TwoPhaseFilePath(path, hdr->xid);
2525
2526 if (access(path, F_OK) == 0)
2527 {
2529 (errmsg("could not recover two-phase state file for transaction %u",
2530 hdr->xid),
2531 errdetail("Two-phase state file has been found in WAL record %X/%X, but this transaction has already been restored from disk.",
2532 LSN_FORMAT_ARGS(start_lsn))));
2533 return;
2534 }
2535
2536 if (errno != ENOENT)
2537 ereport(ERROR,
2539 errmsg("could not access file \"%s\": %m", path)));
2540 }
2541
2542 /* Get a free gxact from the freelist */
2543 if (TwoPhaseState->freeGXacts == NULL)
2544 ereport(ERROR,
2545 (errcode(ERRCODE_OUT_OF_MEMORY),
2546 errmsg("maximum number of prepared transactions reached"),
2547 errhint("Increase \"max_prepared_transactions\" (currently %d).",
2549 gxact = TwoPhaseState->freeGXacts;
2550 TwoPhaseState->freeGXacts = gxact->next;
2551
2552 gxact->prepared_at = hdr->prepared_at;
2553 gxact->prepare_start_lsn = start_lsn;
2554 gxact->prepare_end_lsn = end_lsn;
2555 gxact->xid = hdr->xid;
2556 gxact->owner = hdr->owner;
2558 gxact->valid = false;
2559 gxact->ondisk = XLogRecPtrIsInvalid(start_lsn);
2560 gxact->inredo = true; /* yes, added in redo */
2561 strcpy(gxact->gid, gid);
2562
2563 /* And insert it into the active array */
2566
2567 if (origin_id != InvalidRepOriginId)
2568 {
2569 /* recover apply progress */
2570 replorigin_advance(origin_id, hdr->origin_lsn, end_lsn,
2571 false /* backward */ , false /* WAL */ );
2572 }
2573
2574 elog(DEBUG2, "added 2PC data in shared memory for transaction %u", gxact->xid);
2575}
2576
2577/*
2578 * PrepareRedoRemove
2579 *
2580 * Remove the corresponding gxact entry from TwoPhaseState. Also remove
2581 * the 2PC file if a prepared transaction was saved via an earlier checkpoint.
2582 *
2583 * Caller must hold TwoPhaseStateLock in exclusive mode, because TwoPhaseState
2584 * is updated.
2585 */
2586void
2587PrepareRedoRemove(TransactionId xid, bool giveWarning)
2588{
2589 GlobalTransaction gxact = NULL;
2590 int i;
2591 bool found = false;
2592
2593 Assert(LWLockHeldByMeInMode(TwoPhaseStateLock, LW_EXCLUSIVE));
2595
2596 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
2597 {
2598 gxact = TwoPhaseState->prepXacts[i];
2599
2600 if (gxact->xid == xid)
2601 {
2602 Assert(gxact->inredo);
2603 found = true;
2604 break;
2605 }
2606 }
2607
2608 /*
2609 * Just leave if there is nothing, this is expected during WAL replay.
2610 */
2611 if (!found)
2612 return;
2613
2614 /*
2615 * And now we can clean up any files we may have left.
2616 */
2617 elog(DEBUG2, "removing 2PC data for transaction %u", xid);
2618 if (gxact->ondisk)
2619 RemoveTwoPhaseFile(xid, giveWarning);
2620 RemoveGXact(gxact);
2621}
2622
2623/*
2624 * LookupGXact
2625 * Check if the prepared transaction with the given GID, lsn and timestamp
2626 * exists.
2627 *
2628 * Note that we always compare with the LSN where prepare ends because that is
2629 * what is stored as origin_lsn in the 2PC file.
2630 *
2631 * This function is primarily used to check if the prepared transaction
2632 * received from the upstream (remote node) already exists. Checking only GID
2633 * is not sufficient because a different prepared xact with the same GID can
2634 * exist on the same node. So, we are ensuring to match origin_lsn and
2635 * origin_timestamp of prepared xact to avoid the possibility of a match of
2636 * prepared xact from two different nodes.
2637 */
2638bool
2639LookupGXact(const char *gid, XLogRecPtr prepare_end_lsn,
2640 TimestampTz origin_prepare_timestamp)
2641{
2642 int i;
2643 bool found = false;
2644
2645 LWLockAcquire(TwoPhaseStateLock, LW_SHARED);
2646 for (i = 0; i < TwoPhaseState->numPrepXacts; i++)
2647 {
2649
2650 /* Ignore not-yet-valid GIDs. */
2651 if (gxact->valid && strcmp(gxact->gid, gid) == 0)
2652 {
2653 char *buf;
2654 TwoPhaseFileHeader *hdr;
2655
2656 /*
2657 * We are not expecting collisions of GXACTs (same gid) between
2658 * publisher and subscribers, so we perform all I/O while holding
2659 * TwoPhaseStateLock for simplicity.
2660 *
2661 * To move the I/O out of the lock, we need to ensure that no
2662 * other backend commits the prepared xact in the meantime. We can
2663 * do this optimization if we encounter many collisions in GID
2664 * between publisher and subscriber.
2665 */
2666 if (gxact->ondisk)
2667 buf = ReadTwoPhaseFile(gxact->xid, false);
2668 else
2669 {
2670 Assert(gxact->prepare_start_lsn);
2672 }
2673
2674 hdr = (TwoPhaseFileHeader *) buf;
2675
2676 if (hdr->origin_lsn == prepare_end_lsn &&
2677 hdr->origin_timestamp == origin_prepare_timestamp)
2678 {
2679 found = true;
2680 pfree(buf);
2681 break;
2682 }
2683
2684 pfree(buf);
2685 }
2686 }
2687 LWLockRelease(TwoPhaseStateLock);
2688 return found;
2689}
2690
2691/*
2692 * TwoPhaseTransactionGid
2693 * Form the prepared transaction GID for two_phase transactions.
2694 *
2695 * Return the GID in the supplied buffer.
2696 */
2697void
2698TwoPhaseTransactionGid(Oid subid, TransactionId xid, char *gid_res, int szgid)
2699{
2700 Assert(OidIsValid(subid));
2701
2702 if (!TransactionIdIsValid(xid))
2703 ereport(ERROR,
2704 (errcode(ERRCODE_PROTOCOL_VIOLATION),
2705 errmsg_internal("invalid two-phase transaction ID")));
2706
2707 snprintf(gid_res, szgid, "pg_gid_%u_%u", subid, xid);
2708}
2709
2710/*
2711 * IsTwoPhaseTransactionGidForSubid
2712 * Check whether the given GID (as formed by TwoPhaseTransactionGid) is
2713 * for the specified 'subid'.
2714 */
2715static bool
2717{
2718 int ret;
2719 Oid subid_from_gid;
2720 TransactionId xid_from_gid;
2721 char gid_tmp[GIDSIZE];
2722
2723 /* Extract the subid and xid from the given GID */
2724 ret = sscanf(gid, "pg_gid_%u_%u", &subid_from_gid, &xid_from_gid);
2725
2726 /*
2727 * Check that the given GID has expected format, and at least the subid
2728 * matches.
2729 */
2730 if (ret != 2 || subid != subid_from_gid)
2731 return false;
2732
2733 /*
2734 * Reconstruct a temporary GID based on the subid and xid extracted from
2735 * the given GID and check whether the temporary GID and the given GID
2736 * match.
2737 */
2738 TwoPhaseTransactionGid(subid, xid_from_gid, gid_tmp, sizeof(gid_tmp));
2739
2740 return strcmp(gid, gid_tmp) == 0;
2741}
2742
2743/*
2744 * LookupGXactBySubid
2745 * Check if the prepared transaction done by apply worker exists.
2746 */
2747bool
2749{
2750 bool found = false;
2751
2752 LWLockAcquire(TwoPhaseStateLock, LW_SHARED);
2753 for (int i = 0; i < TwoPhaseState->numPrepXacts; i++)
2754 {
2756
2757 /* Ignore not-yet-valid GIDs. */
2758 if (gxact->valid &&
2760 {
2761 found = true;
2762 break;
2763 }
2764 }
2765 LWLockRelease(TwoPhaseStateLock);
2766
2767 return found;
2768}
static void pg_atomic_init_u64(volatile pg_atomic_uint64 *ptr, uint64 val)
Definition: atomics.h:453
int16 AttrNumber
Definition: attnum.h:21
TimestampTz GetCurrentTimestamp(void)
Definition: timestamp.c:1644
static Datum values[MAXATTR]
Definition: bootstrap.c:151
#define CStringGetTextDatum(s)
Definition: builtins.h:97
#define MAXALIGN(LEN)
Definition: c.h:768
#define Max(x, y)
Definition: c.h:955
#define Assert(condition)
Definition: c.h:815
#define PG_BINARY
Definition: c.h:1230
#define FLEXIBLE_ARRAY_MEMBER
Definition: c.h:420
uint16_t uint16
Definition: c.h:487
#define unlikely(x)
Definition: c.h:333
uint32_t uint32
Definition: c.h:488
#define MemSet(start, val, len)
Definition: c.h:977
uint32 TransactionId
Definition: c.h:609
#define OidIsValid(objectId)
Definition: c.h:732
size_t Size
Definition: c.h:562
void TransactionTreeSetCommitTsData(TransactionId xid, int nsubxids, TransactionId *subxids, TimestampTz timestamp, RepOriginId nodeid)
Definition: commit_ts.c:141
int64 TimestampTz
Definition: timestamp.h:39
int errmsg_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...)
Definition: elog.c:1180
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1157
int errcode_for_file_access(void)
Definition: elog.c:876
int errdetail(const char *fmt,...)
Definition: elog.c:1203
int errhint(const char *fmt,...)
Definition: elog.c:1317
int errcode(int sqlerrcode)
Definition: elog.c:853
int errmsg(const char *fmt,...)
Definition: elog.c:1070
#define LOG
Definition: elog.h:31
#define WARNING
Definition: elog.h:36
#define DEBUG2
Definition: elog.h:29
#define PANIC
Definition: elog.h:42
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:225
#define ereport(elevel,...)
Definition: elog.h:149
TupleDesc BlessTupleDesc(TupleDesc tupdesc)
Definition: execTuples.c:2258
int FreeDir(DIR *dir)
Definition: fd.c:2983
int CloseTransientFile(int fd)
Definition: fd.c:2831
void fsync_fname(const char *fname, bool isdir)
Definition: fd.c:755
DIR * AllocateDir(const char *dirname)
Definition: fd.c:2865
struct dirent * ReadDir(DIR *dir, const char *dirname)
Definition: fd.c:2931
int pg_fsync(int fd)
Definition: fd.c:385
int OpenTransientFile(const char *fileName, int fileFlags)
Definition: fd.c:2655
#define MaxAllocSize
Definition: fe_memutils.h:22
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
#define SRF_IS_FIRSTCALL()
Definition: funcapi.h:304
#define SRF_PERCALL_SETUP()
Definition: funcapi.h:308
#define SRF_RETURN_NEXT(_funcctx, _result)
Definition: funcapi.h:310
#define SRF_FIRSTCALL_INIT()
Definition: funcapi.h:306
static Datum HeapTupleGetDatum(const HeapTupleData *tuple)
Definition: funcapi.h:230
#define SRF_RETURN_DONE(_funcctx)
Definition: funcapi.h:328
ProcNumber MyProcNumber
Definition: globals.c:89
bool IsUnderPostmaster
Definition: globals.c:119
bool IsPostmasterEnvironment
Definition: globals.c:118
Oid MyDatabaseId
Definition: globals.c:93
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
Definition: heaptuple.c:1117
static void dlist_init(dlist_head *head)
Definition: ilist.h:314
static void dlist_node_init(dlist_node *node)
Definition: ilist.h:325
#define write(a, b, c)
Definition: win32.h:14
#define read(a, b, c)
Definition: win32.h:13
int xactGetCommittedInvalidationMessages(SharedInvalidationMessage **msgs, bool *RelcacheInitFileInval)
Definition: inval.c:939
void before_shmem_exit(pg_on_exit_callback function, Datum arg)
Definition: ipc.c:337
int i
Definition: isn.c:72
#define VirtualTransactionIdIsValid(vxid)
Definition: lock.h:67
#define GET_VXID_FROM_PGPROC(vxid_dst, proc)
Definition: lock.h:77
#define LocalTransactionIdIsValid(lxid)
Definition: lock.h:66
#define VirtualTransactionIdEquals(vxid1, vxid2)
Definition: lock.h:71
bool LWLockHeldByMe(LWLock *lock)
Definition: lwlock.c:1893
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1168
bool LWLockHeldByMeInMode(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1937
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1781
@ LW_WS_NOT_WAITING
Definition: lwlock.h:30
#define NUM_LOCK_PARTITIONS
Definition: lwlock.h:97
@ LW_SHARED
Definition: lwlock.h:115
@ LW_EXCLUSIVE
Definition: lwlock.h:114
void * repalloc(void *pointer, Size size)
Definition: mcxt.c:1541
void pfree(void *pointer)
Definition: mcxt.c:1521
void * palloc0(Size size)
Definition: mcxt.c:1347
void * palloc(Size size)
Definition: mcxt.c:1317
void DropRelationFiles(RelFileLocator *delrels, int ndelrels, bool isRedo)
Definition: md.c:1461
#define RESUME_INTERRUPTS()
Definition: miscadmin.h:135
#define AmStartupProcess()
Definition: miscadmin.h:388
#define START_CRIT_SECTION()
Definition: miscadmin.h:149
#define HOLD_INTERRUPTS()
Definition: miscadmin.h:133
#define END_CRIT_SECTION()
Definition: miscadmin.h:151
Oid GetUserId(void)
Definition: miscinit.c:517
TimestampTz replorigin_session_origin_timestamp
Definition: origin.c:161
void replorigin_session_advance(XLogRecPtr remote_commit, XLogRecPtr local_commit)
Definition: origin.c:1223
RepOriginId replorigin_session_origin
Definition: origin.c:159
void replorigin_advance(RepOriginId node, XLogRecPtr remote_commit, XLogRecPtr local_commit, bool go_backward, bool wal_log)
Definition: origin.c:892
XLogRecPtr replorigin_session_origin_lsn
Definition: origin.c:160
#define DoNotReplicateId
Definition: origin.h:34
#define InvalidRepOriginId
Definition: origin.h:33
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124
void * arg
#define ERRCODE_DATA_CORRUPTED
Definition: pg_basebackup.c:41
#define MAXPGPATH
uint32 pg_crc32c
Definition: pg_crc32c.h:38
#define COMP_CRC32C(crc, data, len)
Definition: pg_crc32c.h:98
#define EQ_CRC32C(c1, c2)
Definition: pg_crc32c.h:42
#define INIT_CRC32C(crc)
Definition: pg_crc32c.h:41
#define FIN_CRC32C(crc)
Definition: pg_crc32c.h:103
const void size_t len
const void * data
while(p+4<=pend)
static char * user
Definition: pg_regress.c:119
static char * buf
Definition: pg_test_fsync.c:72
void pgstat_execute_transactional_drops(int ndrops, struct xl_xact_stats_item *items, bool is_redo)
Definition: pgstat_xact.c:314
void AtEOXact_PgStat(bool isCommit, bool parallel)
Definition: pgstat_xact.c:40
int pgstat_get_transactional_drops(bool isCommit, xl_xact_stats_item **items)
Definition: pgstat_xact.c:272
#define snprintf
Definition: port.h:238
static Datum TransactionIdGetDatum(TransactionId X)
Definition: postgres.h:277
uintptr_t Datum
Definition: postgres.h:69
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:257
#define InvalidOid
Definition: postgres_ext.h:37
unsigned int Oid
Definition: postgres_ext.h:32
void PredicateLockTwoPhaseFinish(TransactionId xid, bool isCommit)
Definition: predicate.c:4872
static int fd(const char *x, int i)
Definition: preproc-init.c:105
short access
Definition: preproc-type.c:36
#define GetPGProcByNumber(n)
Definition: proc.h:423
#define PGPROC_MAX_CACHED_SUBXIDS
Definition: proc.h:39
#define GetNumberFromPGProc(proc)
Definition: proc.h:424
#define DELAY_CHKPT_START
Definition: proc.h:119
@ PROC_WAIT_STATUS_OK
Definition: proc.h:124
void ProcArrayAdd(PGPROC *proc)
Definition: procarray.c:468
void ProcArrayRemove(PGPROC *proc, TransactionId latestXid)
Definition: procarray.c:565
#define INVALID_PROC_NUMBER
Definition: procnumber.h:26
int ProcNumber
Definition: procnumber.h:24
void RelationCacheInitFilePostInvalidate(void)
Definition: relcache.c:6805
void RelationCacheInitFilePreInvalidate(void)
Definition: relcache.c:6780
Size add_size(Size s1, Size s2)
Definition: shmem.c:488
Size mul_size(Size s1, Size s2)
Definition: shmem.c:505
void * ShmemInitStruct(const char *name, Size size, bool *foundPtr)
Definition: shmem.c:382
void SendSharedInvalidMessages(const SharedInvalidationMessage *msgs, int n)
Definition: sinval.c:47
static pg_noinline void Size size
Definition: slab.c:607
PGPROC * MyProc
Definition: proc.c:66
PGPROC * PreparedXactProcs
Definition: proc.c:80
void StandbyReleaseLockTree(TransactionId xid, int nsubxids, TransactionId *subxids)
Definition: standby.c:1091
int smgrGetPendingDeletes(bool forCommit, RelFileLocator **ptr)
Definition: storage.c:877
#define ERRCODE_DUPLICATE_OBJECT
Definition: streamutil.c:30
Definition: dirent.c:26
void * user_fctx
Definition: funcapi.h:82
MemoryContext multi_call_memory_ctx
Definition: funcapi.h:101
TupleDesc tuple_desc
Definition: funcapi.h:112
TimestampTz prepared_at
Definition: twophase.c:151
TransactionId xid
Definition: twophase.c:162
XLogRecPtr prepare_start_lsn
Definition: twophase.c:160
XLogRecPtr prepare_end_lsn
Definition: twophase.c:161
GlobalTransaction next
Definition: twophase.c:149
ProcNumber locking_backend
Definition: twophase.c:165
char gid[GIDSIZE]
Definition: twophase.c:169
Definition: proc.h:162
bool isRegularBackend
Definition: proc.h:213
TransactionId xmin
Definition: proc.h:177
LocalTransactionId lxid
Definition: proc.h:200
PROCLOCK * waitProcLock
Definition: proc.h:233
uint8 lwWaitMode
Definition: proc.h:224
struct PGPROC::@124 vxid
uint8 statusFlags
Definition: proc.h:242
Oid databaseId
Definition: proc.h:207
pg_atomic_uint64 waitStart
Definition: proc.h:237
ProcNumber procNumber
Definition: proc.h:195
int pid
Definition: proc.h:182
XidCacheStatus subxidStatus
Definition: proc.h:263
LOCK * waitLock
Definition: proc.h:232
TransactionId xid
Definition: proc.h:172
struct XidCache subxids
Definition: proc.h:265
int delayChkptFlags
Definition: proc.h:240
dlist_head myProcLocks[NUM_LOCK_PARTITIONS]
Definition: proc.h:261
Oid roleId
Definition: proc.h:208
ProcWaitStatus waitStatus
Definition: proc.h:167
Oid tempNamespaceId
Definition: proc.h:210
dlist_node links
Definition: proc.h:163
uint8 lwWaiting
Definition: proc.h:223
struct StateFileChunk * next
Definition: twophase.c:1015
FullTransactionId nextXid
Definition: transam.h:220
TwoPhaseRmgrId rmid
Definition: twophase.c:1002
GlobalTransaction freeGXacts
Definition: twophase.c:179
GlobalTransaction prepXacts[FLEXIBLE_ARRAY_MEMBER]
Definition: twophase.c:185
GlobalTransaction array
Definition: twophase.c:698
bool overflowed
Definition: proc.h:46
uint8 count
Definition: proc.h:44
TransactionId xids[PGPROC_MAX_CACHED_SUBXIDS]
Definition: proc.h:51
Definition: dirent.h:10
char d_name[MAX_PATH]
Definition: dirent.h:15
__int64 st_size
Definition: win32_port.h:263
TimestampTz prepared_at
Definition: xact.h:358
int32 nabortrels
Definition: xact.h:362
int32 ninvalmsgs
Definition: xact.h:365
bool initfileinval
Definition: xact.h:366
int32 ncommitstats
Definition: xact.h:363
TimestampTz origin_timestamp
Definition: xact.h:369
uint16 gidlen
Definition: xact.h:367
uint32 total_len
Definition: xact.h:355
int32 nabortstats
Definition: xact.h:364
Oid database
Definition: xact.h:357
XLogRecPtr origin_lsn
Definition: xact.h:368
uint32 magic
Definition: xact.h:354
int32 ncommitrels
Definition: xact.h:361
TransactionId xid
Definition: xact.h:356
int32 nsubxacts
Definition: xact.h:360
uint32 total_len
Definition: twophase.c:1024
uint32 num_chunks
Definition: twophase.c:1022
StateFileChunk * head
Definition: twophase.c:1020
StateFileChunk * tail
Definition: twophase.c:1021
uint32 bytes_free
Definition: twophase.c:1023
void SubTransSetParent(TransactionId xid, TransactionId parent)
Definition: subtrans.c:85
bool superuser_arg(Oid roleid)
Definition: superuser.c:56
void SyncRepWaitForLSN(XLogRecPtr lsn, bool commit)
Definition: syncrep.c:148
TransactionId TransactionIdLatest(TransactionId mainxid, int nxids, const TransactionId *xids)
Definition: transam.c:345
bool TransactionIdDidCommit(TransactionId transactionId)
Definition: transam.c:126
void TransactionIdCommitTree(TransactionId xid, int nxids, TransactionId *xids)
Definition: transam.c:240
void TransactionIdAbortTree(TransactionId xid, int nxids, TransactionId *xids)
Definition: transam.c:270
bool TransactionIdPrecedes(TransactionId id1, TransactionId id2)
Definition: transam.c:280
bool TransactionIdDidAbort(TransactionId transactionId)
Definition: transam.c:188
bool TransactionIdFollows(TransactionId id1, TransactionId id2)
Definition: transam.c:314
bool TransactionIdFollowsOrEquals(TransactionId id1, TransactionId id2)
Definition: transam.c:329
#define InvalidTransactionId
Definition: transam.h:31
#define EpochFromFullTransactionId(x)
Definition: transam.h:47
static FullTransactionId FullTransactionIdFromU64(uint64 value)
Definition: transam.h:81
#define TransactionIdEquals(id1, id2)
Definition: transam.h:43
#define XidFromFullTransactionId(x)
Definition: transam.h:48
#define TransactionIdIsValid(xid)
Definition: transam.h:41
static FullTransactionId FullTransactionIdFromEpochAndXid(uint32 epoch, TransactionId xid)
Definition: transam.h:71
TupleDesc CreateTemplateTupleDesc(int natts)
Definition: tupdesc.c:164
void TupleDescInitEntry(TupleDesc desc, AttrNumber attributeNumber, const char *attributeName, Oid oidtypeid, int32 typmod, int attdim)
Definition: tupdesc.c:798
static void XlogReadTwoPhaseData(XLogRecPtr lsn, char **buf, int *len)
Definition: twophase.c:1420
void TwoPhaseTransactionGid(Oid subid, TransactionId xid, char *gid_res, int szgid)
Definition: twophase.c:2698
void RecoverPreparedTransactions(void)
Definition: twophase.c:2089
static bool twophaseExitRegistered
Definition: twophase.c:198
void restoreTwoPhaseData(void)
Definition: twophase.c:1904
bool LookupGXact(const char *gid, XLogRecPtr prepare_end_lsn, TimestampTz origin_prepare_timestamp)
Definition: twophase.c:2639
Size TwoPhaseShmemSize(void)
Definition: twophase.c:237
#define TWOPHASE_DIR
Definition: twophase.c:112
static void RecordTransactionAbortPrepared(TransactionId xid, int nchildren, TransactionId *children, int nrels, RelFileLocator *rels, int nstats, xl_xact_stats_item *stats, const char *gid)
Definition: twophase.c:2410
void RegisterTwoPhaseRecord(TwoPhaseRmgrId rmid, uint16 info, const void *data, uint32 len)
Definition: twophase.c:1280
int max_prepared_xacts
Definition: twophase.c:115
static FullTransactionId AdjustToFullTransactionId(TransactionId xid)
Definition: twophase.c:936
static void RecordTransactionCommitPrepared(TransactionId xid, int nchildren, TransactionId *children, int nrels, RelFileLocator *rels, int nstats, xl_xact_stats_item *stats, int ninvalmsgs, SharedInvalidationMessage *invalmsgs, bool initfileinval, const char *gid)
Definition: twophase.c:2312
static void RemoveGXact(GlobalTransaction gxact)
Definition: twophase.c:628
struct TwoPhaseStateData TwoPhaseStateData
static GlobalTransaction MyLockedGxact
Definition: twophase.c:196
static TwoPhaseStateData * TwoPhaseState
Definition: twophase.c:188
static void ProcessRecords(char *bufptr, TransactionId xid, const TwoPhaseCallback callbacks[])
Definition: twophase.c:1696
void AtAbort_Twophase(void)
Definition: twophase.c:304
static void MarkAsPreparingGuts(GlobalTransaction gxact, TransactionId xid, const char *gid, TimestampTz prepared_at, Oid owner, Oid databaseid)
Definition: twophase.c:433
struct GlobalTransactionData GlobalTransactionData
static void save_state_data(const void *data, uint32 len)
Definition: twophase.c:1037
#define TWOPHASE_MAGIC
Definition: twophase.c:989
void FinishPreparedTransaction(const char *gid, bool isCommit)
Definition: twophase.c:1503
struct TwoPhaseRecordOnDisk TwoPhaseRecordOnDisk
TransactionId TwoPhaseGetXidByVirtualXID(VirtualTransactionId vxid, bool *have_more)
Definition: twophase.c:852
static void GXactLoadSubxactData(GlobalTransaction gxact, int nsubxacts, TransactionId *children)
Definition: twophase.c:504
static char * ReadTwoPhaseFile(TransactionId xid, bool missing_ok)
Definition: twophase.c:1303
void PrepareRedoRemove(TransactionId xid, bool giveWarning)
Definition: twophase.c:2587
Datum pg_prepared_xact(PG_FUNCTION_ARGS)
Definition: twophase.c:711
void EndPrepare(GlobalTransaction gxact)
Definition: twophase.c:1158
static void RemoveTwoPhaseFile(TransactionId xid, bool giveWarning)
Definition: twophase.c:1723
TransactionId PrescanPreparedTransactions(TransactionId **xids_p, int *nxids_p)
Definition: twophase.c:1968
void StartPrepare(GlobalTransaction gxact)
Definition: twophase.c:1065
static int GetPreparedTransactionList(GlobalTransaction *gxacts)
Definition: twophase.c:666
ProcNumber TwoPhaseGetDummyProcNumber(TransactionId xid, bool lock_held)
Definition: twophase.c:903
void TwoPhaseShmemInit(void)
Definition: twophase.c:253
void PrepareRedoAdd(char *buf, XLogRecPtr start_lsn, XLogRecPtr end_lsn, RepOriginId origin_id)
Definition: twophase.c:2485
static int TwoPhaseFilePath(char *path, TransactionId xid)
Definition: twophase.c:961
static GlobalTransaction TwoPhaseGetGXact(TransactionId xid, bool lock_held)
Definition: twophase.c:800
void StandbyRecoverPreparedTransactions(void)
Definition: twophase.c:2048
static void AtProcExit_Twophase(int code, Datum arg)
Definition: twophase.c:294
static char * ProcessTwoPhaseBuffer(TransactionId xid, XLogRecPtr prepare_start_lsn, bool fromdisk, bool setParent, bool setNextXid)
Definition: twophase.c:2192
PGPROC * TwoPhaseGetDummyProc(TransactionId xid, bool lock_held)
Definition: twophase.c:918
static void MarkAsPrepared(GlobalTransaction gxact, bool lock_held)
Definition: twophase.c:530
void PostPrepare_Twophase(void)
Definition: twophase.c:344
bool LookupGXactBySubid(Oid subid)
Definition: twophase.c:2748
xl_xact_prepare TwoPhaseFileHeader
Definition: twophase.c:991
void CheckPointTwoPhase(XLogRecPtr redo_horizon)
Definition: twophase.c:1822
struct StateFileChunk StateFileChunk
bool StandbyTransactionIdIsPrepared(TransactionId xid)
Definition: twophase.c:1475
static void RecreateTwoPhaseFile(TransactionId xid, void *content, int len)
Definition: twophase.c:1742
GlobalTransaction MarkAsPreparing(TransactionId xid, const char *gid, TimestampTz prepared_at, Oid owner, Oid databaseid)
Definition: twophase.c:359
static GlobalTransaction LockGXact(const char *gid, Oid user)
Definition: twophase.c:552
static bool IsTwoPhaseTransactionGidForSubid(Oid subid, char *gid)
Definition: twophase.c:2716
static struct xllist records
struct GlobalTransactionData * GlobalTransaction
Definition: twophase.h:26
const TwoPhaseCallback twophase_postcommit_callbacks[TWOPHASE_RM_MAX_ID+1]
Definition: twophase_rmgr.c:33
const TwoPhaseCallback twophase_recover_callbacks[TWOPHASE_RM_MAX_ID+1]
Definition: twophase_rmgr.c:24
const TwoPhaseCallback twophase_postabort_callbacks[TWOPHASE_RM_MAX_ID+1]
Definition: twophase_rmgr.c:42
#define TWOPHASE_RM_MAX_ID
Definition: twophase_rmgr.h:29
uint8 TwoPhaseRmgrId
Definition: twophase_rmgr.h:19
#define TWOPHASE_RM_END_ID
Definition: twophase_rmgr.h:24
void(* TwoPhaseCallback)(TransactionId xid, uint16 info, void *recdata, uint32 len)
Definition: twophase_rmgr.h:17
static Datum TimestampTzGetDatum(TimestampTz X)
Definition: timestamp.h:52
void AdvanceNextFullTransactionIdPastXid(TransactionId xid)
Definition: varsup.c:304
TransamVariablesData * TransamVariables
Definition: varsup.c:34
static void pgstat_report_wait_start(uint32 wait_event_info)
Definition: wait_event.h:85
static void pgstat_report_wait_end(void)
Definition: wait_event.h:101
#define fstat
Definition: win32_port.h:273
static const unsigned __int64 epoch
XLogRecPtr XactLogCommitRecord(TimestampTz commit_time, int nsubxacts, TransactionId *subxacts, int nrels, RelFileLocator *rels, int ndroppedstats, xl_xact_stats_item *droppedstats, int nmsgs, SharedInvalidationMessage *msgs, bool relcacheInval, int xactflags, TransactionId twophase_xid, const char *twophase_gid)
Definition: xact.c:5802
int xactGetCommittedChildren(TransactionId **ptr)
Definition: xact.c:5778
int MyXactFlags
Definition: xact.c:135
XLogRecPtr XactLogAbortRecord(TimestampTz abort_time, int nsubxacts, TransactionId *subxacts, int nrels, RelFileLocator *rels, int ndroppedstats, xl_xact_stats_item *droppedstats, int xactflags, TransactionId twophase_xid, const char *twophase_gid)
Definition: xact.c:5974
#define XLOG_XACT_PREPARE
Definition: xact.h:170
#define XACT_FLAGS_ACQUIREDACCESSEXCLUSIVELOCK
Definition: xact.h:108
#define XLOG_XACT_OPMASK
Definition: xact.h:179
#define GIDSIZE
Definition: xact.h:31
XLogRecPtr ProcLastRecPtr
Definition: xlog.c:253
bool RecoveryInProgress(void)
Definition: xlog.c:6334
XLogRecPtr XactLastRecEnd
Definition: xlog.c:254
int wal_segment_size
Definition: xlog.c:143
bool log_checkpoints
Definition: xlog.c:129
void XLogFlush(XLogRecPtr record)
Definition: xlog.c:2802
#define XLOG_INCLUDE_ORIGIN
Definition: xlog.h:154
#define LSN_FORMAT_ARGS(lsn)
Definition: xlogdefs.h:43
#define XLogRecPtrIsInvalid(r)
Definition: xlogdefs.h:29
uint16 RepOriginId
Definition: xlogdefs.h:65
uint64 XLogRecPtr
Definition: xlogdefs.h:21
#define InvalidXLogRecPtr
Definition: xlogdefs.h:28
XLogRecPtr XLogInsert(RmgrId rmid, uint8 info)
Definition: xloginsert.c:474
void XLogSetRecordFlags(uint8 flags)
Definition: xloginsert.c:456
void XLogRegisterData(const char *data, uint32 len)
Definition: xloginsert.c:364
void XLogBeginInsert(void)
Definition: xloginsert.c:149
void XLogEnsureRecordSpace(int max_block_id, int ndatas)
Definition: xloginsert.c:175
XLogReaderState * XLogReaderAllocate(int wal_segment_size, const char *waldir, XLogReaderRoutine *routine, void *private_data)
Definition: xlogreader.c:106
XLogRecord * XLogReadRecord(XLogReaderState *state, char **errormsg)
Definition: xlogreader.c:389
void XLogReaderFree(XLogReaderState *state)
Definition: xlogreader.c:161
void XLogBeginRead(XLogReaderState *state, XLogRecPtr RecPtr)
Definition: xlogreader.c:231
#define XLogRecGetDataLen(decoder)
Definition: xlogreader.h:416
#define XLogRecGetInfo(decoder)
Definition: xlogreader.h:410
#define XLogRecGetRmid(decoder)
Definition: xlogreader.h:411
#define XLogRecGetData(decoder)
Definition: xlogreader.h:415
#define XL_ROUTINE(...)
Definition: xlogreader.h:117
bool reachedConsistency
Definition: xlogrecovery.c:294
static XLogReaderState * xlogreader
Definition: xlogrecovery.c:188
void wal_segment_close(XLogReaderState *state)
Definition: xlogutils.c:842
void wal_segment_open(XLogReaderState *state, XLogSegNo nextSegNo, TimeLineID *tli_p)
Definition: xlogutils.c:817
int read_local_xlog_page(XLogReaderState *state, XLogRecPtr targetPagePtr, int reqLen, XLogRecPtr targetRecPtr, char *cur_page)
Definition: xlogutils.c:861
#define InHotStandby
Definition: xlogutils.h:60