Commit 2efc6dc2 authored by Tom Lane's avatar Tom Lane

Add HOLD/RESUME_INTERRUPTS in HandleCatchupInterrupt/HandleNotifyInterrupt.

This prevents a possible longjmp out of the signal handler if a timeout
or SIGINT occurs while something within the handler has transiently set
ImmediateInterruptOK.  For safety we must hold off the timeout or cancel
error until we're back in mainline, or at least till we reach the end of
the signal handler when ImmediateInterruptOK was true at entry.  This
syncs these functions with the logic now present in handle_sig_alarm.

AFAICT there is no live bug here in 9.0 and up, because I don't think we
currently can wait for any heavyweight lock inside these functions, and
there is no other code (except read-from-client) that will turn on
ImmediateInterruptOK.  However, that was not true pre-9.0: in older
branches ProcessIncomingNotify might block trying to lock pg_listener, and
then a SIGINT could lead to undesirable control flow.  It might be all
right anyway given the relatively narrow code ranges in which NOTIFY
interrupts are enabled, but for safety's sake I'm back-patching this.
parent dde62825
...@@ -1650,11 +1650,15 @@ HandleNotifyInterrupt(void) ...@@ -1650,11 +1650,15 @@ HandleNotifyInterrupt(void)
/* /*
* We may be called while ImmediateInterruptOK is true; turn it off * We may be called while ImmediateInterruptOK is true; turn it off
* while messing with the NOTIFY state. (We would have to save and * while messing with the NOTIFY state. This prevents problems if
* restore it anyway, because PGSemaphore operations inside * SIGINT or similar arrives while we're working. Just to be real
* ProcessIncomingNotify() might reset it.) * sure, bump the interrupt holdoff counter as well. That way, even
* if something inside ProcessIncomingNotify() transiently sets
* ImmediateInterruptOK (eg while waiting on a lock), we won't get
* interrupted until we're done with the notify interrupt.
*/ */
ImmediateInterruptOK = false; ImmediateInterruptOK = false;
HOLD_INTERRUPTS();
/* /*
* I'm not sure whether some flavors of Unix might allow another * I'm not sure whether some flavors of Unix might allow another
...@@ -1684,8 +1688,10 @@ HandleNotifyInterrupt(void) ...@@ -1684,8 +1688,10 @@ HandleNotifyInterrupt(void)
} }
/* /*
* Restore ImmediateInterruptOK, and check for interrupts if needed. * Restore the holdoff level and ImmediateInterruptOK, and check for
* interrupts if needed.
*/ */
RESUME_INTERRUPTS();
ImmediateInterruptOK = save_ImmediateInterruptOK; ImmediateInterruptOK = save_ImmediateInterruptOK;
if (save_ImmediateInterruptOK) if (save_ImmediateInterruptOK)
CHECK_FOR_INTERRUPTS(); CHECK_FOR_INTERRUPTS();
......
...@@ -180,11 +180,15 @@ HandleCatchupInterrupt(void) ...@@ -180,11 +180,15 @@ HandleCatchupInterrupt(void)
/* /*
* We may be called while ImmediateInterruptOK is true; turn it off * We may be called while ImmediateInterruptOK is true; turn it off
* while messing with the catchup state. (We would have to save and * while messing with the catchup state. This prevents problems if
* restore it anyway, because PGSemaphore operations inside * SIGINT or similar arrives while we're working. Just to be real
* ProcessCatchupEvent() might reset it.) * sure, bump the interrupt holdoff counter as well. That way, even
* if something inside ProcessCatchupEvent() transiently sets
* ImmediateInterruptOK (eg while waiting on a lock), we won't get
* interrupted until we're done with the catchup interrupt.
*/ */
ImmediateInterruptOK = false; ImmediateInterruptOK = false;
HOLD_INTERRUPTS();
/* /*
* I'm not sure whether some flavors of Unix might allow another * I'm not sure whether some flavors of Unix might allow another
...@@ -208,8 +212,10 @@ HandleCatchupInterrupt(void) ...@@ -208,8 +212,10 @@ HandleCatchupInterrupt(void)
} }
/* /*
* Restore ImmediateInterruptOK, and check for interrupts if needed. * Restore the holdoff level and ImmediateInterruptOK, and check for
* interrupts if needed.
*/ */
RESUME_INTERRUPTS();
ImmediateInterruptOK = save_ImmediateInterruptOK; ImmediateInterruptOK = save_ImmediateInterruptOK;
if (save_ImmediateInterruptOK) if (save_ImmediateInterruptOK)
CHECK_FOR_INTERRUPTS(); CHECK_FOR_INTERRUPTS();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment