]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Shut down transaction tracking at startup process exit.
authorFujii Masao <fujii@postgresql.org>
Mon, 5 Apr 2021 17:25:37 +0000 (02:25 +0900)
committerFujii Masao <fujii@postgresql.org>
Mon, 5 Apr 2021 17:27:30 +0000 (02:27 +0900)
Maxim Orlov reported that the shutdown of standby server could result in
the following assertion failure. The cause of this issue was that,
when the shutdown caused the startup process to exit, recovery-time
transaction tracking was not shut down even if it's already initialized,
and some locks the tracked transactions were holding could not be released.
At this situation, if other process was invoked and the PGPROC entry that
the startup process used was assigned to it, it found such unreleased locks
and caused the assertion failure, during the initialization of it.

    TRAP: FailedAssertion("SHMQueueEmpty(&(MyProc->myProcLocks[i]))"

This commit fixes this issue by making the startup process shut down
transaction tracking and release all locks, at the exit of it.

Back-patch to all supported branches.

Reported-by: Maxim Orlov
Author: Fujii Masao
Reviewed-by: Maxim Orlov
Discussion: https://postgr.es/m/ad4ce692cc1d89a093b471ab1d969b0b@postgrespro.ru

src/backend/postmaster/startup.c
src/backend/storage/ipc/standby.c

index 2926211e35da7a4f47da084837377fe83b411c74..d897cafb272c38ff509ca85b719940e49f23007d 100644 (file)
@@ -54,6 +54,9 @@ static void StartupProcSigUsr1Handler(SIGNAL_ARGS);
 static void StartupProcTriggerHandler(SIGNAL_ARGS);
 static void StartupProcSigHupHandler(SIGNAL_ARGS);
 
+/* Callbacks */
+static void StartupProcExit(int code, Datum arg);
+
 
 /* --------------------------------
  *             signal handler routines
@@ -165,6 +168,19 @@ HandleStartupProcInterrupts(void)
 }
 
 
+/* --------------------------------
+ *             signal handler routines
+ * --------------------------------
+ */
+static void
+StartupProcExit(int code, Datum arg)
+{
+       /* Shutdown the recovery environment */
+       if (standbyState != STANDBY_DISABLED)
+               ShutdownRecoveryTransactionEnvironment();
+}
+
+
 /* ----------------------------------
  *     Startup Process main entry point
  * ----------------------------------
@@ -172,6 +188,9 @@ HandleStartupProcInterrupts(void)
 void
 StartupProcessMain(void)
 {
+       /* Arrange to clean up at startup process exit */
+       on_shmem_exit(StartupProcExit, 0);
+
        /*
         * Properly accept or ignore signals the postmaster might send us.
         */
index 23238edd5f1b9609d1e9065551f4729a8321fb9b..35e264c56e81af3a9bc074d88ba78cacfc38de83 100644 (file)
@@ -124,10 +124,25 @@ InitRecoveryTransactionEnvironment(void)
  *
  * Prepare to switch from hot standby mode to normal operation. Shut down
  * recovery-time transaction tracking.
+ *
+ * This must be called even in shutdown of startup process if transaction
+ * tracking has been initialized. Otherwise some locks the tracked
+ * transactions were holding will not be released and and may interfere with
+ * the processes still running (but will exit soon later) at the exit of
+ * startup process.
  */
 void
 ShutdownRecoveryTransactionEnvironment(void)
 {
+       /*
+        * Do nothing if RecoveryLockLists is NULL because which means that
+        * transaction tracking has not been yet initialized or has been already
+        * shutdowned. This prevents transaction tracking from being shutdowned
+        * unexpectedly more than once.
+        */
+       if (RecoveryLockLists == NULL)
+               return;
+
        /* Mark all tracked in-progress transactions as finished. */
        ExpireAllKnownAssignedTransactionIds();