PostgreSQL Source Code git master
condition_variable.c File Reference
#include "postgres.h"
#include <limits.h>
#include "miscadmin.h"
#include "portability/instr_time.h"
#include "storage/condition_variable.h"
#include "storage/proc.h"
#include "storage/proclist.h"
#include "storage/spin.h"
Include dependency graph for condition_variable.c:

Go to the source code of this file.

Functions

void ConditionVariableInit (ConditionVariable *cv)
 
void ConditionVariablePrepareToSleep (ConditionVariable *cv)
 
void ConditionVariableSleep (ConditionVariable *cv, uint32 wait_event_info)
 
bool ConditionVariableTimedSleep (ConditionVariable *cv, long timeout, uint32 wait_event_info)
 
bool ConditionVariableCancelSleep (void)
 
void ConditionVariableSignal (ConditionVariable *cv)
 
void ConditionVariableBroadcast (ConditionVariable *cv)
 

Variables

static ConditionVariablecv_sleep_target = NULL
 

Function Documentation

◆ ConditionVariableBroadcast()

void ConditionVariableBroadcast ( ConditionVariable cv)

Definition at line 284 of file condition_variable.c.

285{
286 int pgprocno = MyProcNumber;
287 PGPROC *proc = NULL;
288 bool have_sentinel = false;
289
290 /*
291 * In some use-cases, it is common for awakened processes to immediately
292 * re-queue themselves. If we just naively try to reduce the wakeup list
293 * to empty, we'll get into a potentially-indefinite loop against such a
294 * process. The semantics we really want are just to be sure that we have
295 * wakened all processes that were in the list at entry. We can use our
296 * own cvWaitLink as a sentinel to detect when we've finished.
297 *
298 * A seeming flaw in this approach is that someone else might signal the
299 * CV and in doing so remove our sentinel entry. But that's fine: since
300 * CV waiters are always added and removed in order, that must mean that
301 * every previous waiter has been wakened, so we're done. We'll get an
302 * extra "set" on our latch from the someone else's signal, which is
303 * slightly inefficient but harmless.
304 *
305 * We can't insert our cvWaitLink as a sentinel if it's already in use in
306 * some other proclist. While that's not expected to be true for typical
307 * uses of this function, we can deal with it by simply canceling any
308 * prepared CV sleep. The next call to ConditionVariableSleep will take
309 * care of re-establishing the lost state.
310 */
311 if (cv_sleep_target != NULL)
313
314 /*
315 * Inspect the state of the queue. If it's empty, we have nothing to do.
316 * If there's exactly one entry, we need only remove and signal that
317 * entry. Otherwise, remove the first entry and insert our sentinel.
318 */
320 /* While we're here, let's assert we're not in the list. */
321 Assert(!proclist_contains(&cv->wakeup, pgprocno, cvWaitLink));
322
323 if (!proclist_is_empty(&cv->wakeup))
324 {
325 proc = proclist_pop_head_node(&cv->wakeup, cvWaitLink);
326 if (!proclist_is_empty(&cv->wakeup))
327 {
328 proclist_push_tail(&cv->wakeup, pgprocno, cvWaitLink);
329 have_sentinel = true;
330 }
331 }
333
334 /* Awaken first waiter, if there was one. */
335 if (proc != NULL)
336 SetLatch(&proc->procLatch);
337
338 while (have_sentinel)
339 {
340 /*
341 * Each time through the loop, remove the first wakeup list entry, and
342 * signal it unless it's our sentinel. Repeat as long as the sentinel
343 * remains in the list.
344 *
345 * Notice that if someone else removes our sentinel, we will waken one
346 * additional process before exiting. That's intentional, because if
347 * someone else signals the CV, they may be intending to waken some
348 * third process that added itself to the list after we added the
349 * sentinel. Better to give a spurious wakeup (which should be
350 * harmless beyond wasting some cycles) than to lose a wakeup.
351 */
352 proc = NULL;
354 if (!proclist_is_empty(&cv->wakeup))
355 proc = proclist_pop_head_node(&cv->wakeup, cvWaitLink);
356 have_sentinel = proclist_contains(&cv->wakeup, pgprocno, cvWaitLink);
358
359 if (proc != NULL && proc != MyProc)
360 SetLatch(&proc->procLatch);
361 }
362}
bool ConditionVariableCancelSleep(void)
static ConditionVariable * cv_sleep_target
ProcNumber MyProcNumber
Definition: globals.c:90
Assert(PointerIsAligned(start, uint64))
void SetLatch(Latch *latch)
Definition: latch.c:290
#define proclist_pop_head_node(list, link_member)
Definition: proclist.h:193
#define proclist_push_tail(list, procno, link_member)
Definition: proclist.h:191
#define proclist_contains(list, procno, link_member)
Definition: proclist.h:195
static bool proclist_is_empty(const proclist_head *list)
Definition: proclist.h:38
#define SpinLockRelease(lock)
Definition: spin.h:61
#define SpinLockAcquire(lock)
Definition: spin.h:59
PGPROC * MyProc
Definition: proc.c:67
proclist_head wakeup
Definition: proc.h:179
Latch procLatch
Definition: proc.h:186

References Assert(), ConditionVariableCancelSleep(), cv_sleep_target, ConditionVariable::mutex, MyProc, MyProcNumber, PGPROC::procLatch, proclist_contains, proclist_is_empty(), proclist_pop_head_node, proclist_push_tail, SetLatch(), SpinLockAcquire, SpinLockRelease, and ConditionVariable::wakeup.

Referenced by _bt_parallel_done(), BarrierArriveAndWait(), BarrierDetachImpl(), BitmapDoneInitializingSharedState(), CheckpointerMain(), CleanupProcSignalState(), injection_points_wakeup(), pgaio_io_process_completion(), PhysicalWakeupLogicalWalSnd(), ProcessProcSignalBarrier(), RecordNewMultiXact(), ReplicationOriginExitCleanup(), ReplicationSlotAcquire(), ReplicationSlotCleanup(), ReplicationSlotCreate(), ReplicationSlotDropPtr(), ReplicationSlotRelease(), replorigin_session_reset(), replorigin_session_setup(), SetRecoveryPause(), ShutdownWalRcv(), TerminateBufferIO(), WalRcvDie(), WalRcvRunning(), WalRcvStreaming(), WalReceiverMain(), WalSndWakeup(), and WalSummarizerMain().

◆ ConditionVariableCancelSleep()

bool ConditionVariableCancelSleep ( void  )

Definition at line 232 of file condition_variable.c.

233{
235 bool signaled = false;
236
237 if (cv == NULL)
238 return false;
239
241 if (proclist_contains(&cv->wakeup, MyProcNumber, cvWaitLink))
242 proclist_delete(&cv->wakeup, MyProcNumber, cvWaitLink);
243 else
244 signaled = true;
246
247 cv_sleep_target = NULL;
248
249 return signaled;
250}
#define proclist_delete(list, procno, link_member)
Definition: proclist.h:187

References cv_sleep_target, ConditionVariable::mutex, MyProcNumber, proclist_contains, proclist_delete, SpinLockAcquire, SpinLockRelease, and ConditionVariable::wakeup.

Referenced by _brin_parallel_heapscan(), _bt_parallel_heapscan(), _bt_parallel_seize(), _gin_parallel_heapscan(), AbortSubTransaction(), AbortTransaction(), AuxiliaryProcKill(), BackgroundWriterMain(), BarrierArriveAndWait(), BitmapShouldInitializeSharedState(), CheckpointerMain(), ConditionVariableBroadcast(), ConditionVariablePrepareToSleep(), GetMultiXactIdMembers(), injection_wait(), pgaio_io_wait(), pgarch_archiveXlog(), ProcKill(), recoveryPausesHere(), RecoveryRequiresIntParameter(), ReplicationSlotAcquire(), replorigin_state_clear(), RequestCheckpoint(), ShutdownAuxiliaryProcess(), ShutdownWalRcv(), WaitForProcSignalBarrier(), WaitForStandbyConfirmation(), WaitForWalSummarization(), WaitIO(), WalSndErrorCleanup(), WalSndWait(), WalSummarizerMain(), and WalWriterMain().

◆ ConditionVariableInit()

◆ ConditionVariablePrepareToSleep()

void ConditionVariablePrepareToSleep ( ConditionVariable cv)

Definition at line 58 of file condition_variable.c.

59{
60 int pgprocno = MyProcNumber;
61
62 /*
63 * If some other sleep is already prepared, cancel it; this is necessary
64 * because we have just one static variable tracking the prepared sleep,
65 * and also only one cvWaitLink in our PGPROC. It's okay to do this
66 * because whenever control does return to the other test-and-sleep loop,
67 * its ConditionVariableSleep call will just re-establish that sleep as
68 * the prepared one.
69 */
70 if (cv_sleep_target != NULL)
72
73 /* Record the condition variable on which we will sleep. */
74 cv_sleep_target = cv;
75
76 /* Add myself to the wait queue. */
78 proclist_push_tail(&cv->wakeup, pgprocno, cvWaitLink);
80}

References ConditionVariableCancelSleep(), cv_sleep_target, ConditionVariable::mutex, MyProcNumber, proclist_push_tail, SpinLockAcquire, SpinLockRelease, and ConditionVariable::wakeup.

Referenced by BarrierArriveAndWait(), ConditionVariableTimedSleep(), injection_wait(), InvalidatePossiblyObsoleteSlot(), pgaio_io_wait(), ReplicationSlotAcquire(), RequestCheckpoint(), ShutdownWalRcv(), WaitForStandbyConfirmation(), WaitIO(), and WalSndWait().

◆ ConditionVariableSignal()

void ConditionVariableSignal ( ConditionVariable cv)

Definition at line 261 of file condition_variable.c.

262{
263 PGPROC *proc = NULL;
264
265 /* Remove the first process from the wakeup queue (if any). */
267 if (!proclist_is_empty(&cv->wakeup))
268 proc = proclist_pop_head_node(&cv->wakeup, cvWaitLink);
270
271 /* If we found someone sleeping, set their latch to wake them up. */
272 if (proc != NULL)
273 SetLatch(&proc->procLatch);
274}

References ConditionVariable::mutex, PGPROC::procLatch, proclist_is_empty(), proclist_pop_head_node, SetLatch(), SpinLockAcquire, SpinLockRelease, and ConditionVariable::wakeup.

Referenced by _brin_parallel_scan_and_build(), _bt_parallel_release(), _bt_parallel_scan_and_sort(), and _gin_parallel_scan_and_build().

◆ ConditionVariableSleep()

void ConditionVariableSleep ( ConditionVariable cv,
uint32  wait_event_info 
)

◆ ConditionVariableTimedSleep()

bool ConditionVariableTimedSleep ( ConditionVariable cv,
long  timeout,
uint32  wait_event_info 
)

Definition at line 114 of file condition_variable.c.

116{
117 long cur_timeout = -1;
119 instr_time cur_time;
120 int wait_events;
121
122 /*
123 * If the caller didn't prepare to sleep explicitly, then do so now and
124 * return immediately. The caller's predicate loop should immediately
125 * call again if its exit condition is not yet met. This will result in
126 * the exit condition being tested twice before we first sleep. The extra
127 * test can be prevented by calling ConditionVariablePrepareToSleep(cv)
128 * first. Whether it's worth doing that depends on whether you expect the
129 * exit condition to be met initially, in which case skipping the prepare
130 * is recommended because it avoids manipulations of the wait list, or not
131 * met initially, in which case preparing first is better because it
132 * avoids one extra test of the exit condition.
133 *
134 * If we are currently prepared to sleep on some other CV, we just cancel
135 * that and prepare this one; see ConditionVariablePrepareToSleep.
136 */
137 if (cv_sleep_target != cv)
138 {
140 return false;
141 }
142
143 /*
144 * Record the current time so that we can calculate the remaining timeout
145 * if we are woken up spuriously.
146 */
147 if (timeout >= 0)
148 {
150 Assert(timeout >= 0 && timeout <= INT_MAX);
151 cur_timeout = timeout;
153 }
154 else
155 wait_events = WL_LATCH_SET | WL_EXIT_ON_PM_DEATH;
156
157 while (true)
158 {
159 bool done = false;
160
161 /*
162 * Wait for latch to be set. (If we're awakened for some other
163 * reason, the code below will cope anyway.)
164 */
165 (void) WaitLatch(MyLatch, wait_events, cur_timeout, wait_event_info);
166
167 /* Reset latch before examining the state of the wait list. */
169
170 /*
171 * If this process has been taken out of the wait list, then we know
172 * that it has been signaled by ConditionVariableSignal (or
173 * ConditionVariableBroadcast), so we should return to the caller. But
174 * that doesn't guarantee that the exit condition is met, only that we
175 * ought to check it. So we must put the process back into the wait
176 * list, to ensure we don't miss any additional wakeup occurring while
177 * the caller checks its exit condition. We can take ourselves out of
178 * the wait list only when the caller calls
179 * ConditionVariableCancelSleep.
180 *
181 * If we're still in the wait list, then the latch must have been set
182 * by something other than ConditionVariableSignal; though we don't
183 * guarantee not to return spuriously, we'll avoid this obvious case.
184 */
186 if (!proclist_contains(&cv->wakeup, MyProcNumber, cvWaitLink))
187 {
188 done = true;
189 proclist_push_tail(&cv->wakeup, MyProcNumber, cvWaitLink);
190 }
192
193 /*
194 * Check for interrupts, and return spuriously if that caused the
195 * current sleep target to change (meaning that interrupt handler code
196 * waited for a different condition variable).
197 */
199 if (cv != cv_sleep_target)
200 done = true;
201
202 /* We were signaled, so return */
203 if (done)
204 return false;
205
206 /* If we're not done, update cur_timeout for next iteration */
207 if (timeout >= 0)
208 {
209 INSTR_TIME_SET_CURRENT(cur_time);
211 cur_timeout = timeout - (long) INSTR_TIME_GET_MILLISEC(cur_time);
212
213 /* Have we crossed the timeout threshold? */
214 if (cur_timeout <= 0)
215 return true;
216 }
217 }
218}
void ConditionVariablePrepareToSleep(ConditionVariable *cv)
struct Latch * MyLatch
Definition: globals.c:63
#define INSTR_TIME_SET_CURRENT(t)
Definition: instr_time.h:122
#define INSTR_TIME_SUBTRACT(x, y)
Definition: instr_time.h:181
#define INSTR_TIME_GET_MILLISEC(t)
Definition: instr_time.h:191
void ResetLatch(Latch *latch)
Definition: latch.c:374
int WaitLatch(Latch *latch, int wakeEvents, long timeout, uint32 wait_event_info)
Definition: latch.c:172
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:123
static time_t start_time
Definition: pg_ctl.c:96
#define WL_TIMEOUT
Definition: waiteventset.h:37
#define WL_EXIT_ON_PM_DEATH
Definition: waiteventset.h:39
#define WL_LATCH_SET
Definition: waiteventset.h:34

References Assert(), CHECK_FOR_INTERRUPTS, ConditionVariablePrepareToSleep(), cv_sleep_target, INSTR_TIME_GET_MILLISEC, INSTR_TIME_SET_CURRENT, INSTR_TIME_SUBTRACT, ConditionVariable::mutex, MyLatch, MyProcNumber, proclist_contains, proclist_push_tail, ResetLatch(), SpinLockAcquire, SpinLockRelease, start_time, WaitLatch(), ConditionVariable::wakeup, WL_EXIT_ON_PM_DEATH, WL_LATCH_SET, and WL_TIMEOUT.

Referenced by ConditionVariableSleep(), recoveryPausesHere(), RecoveryRequiresIntParameter(), WaitForProcSignalBarrier(), WaitForStandbyConfirmation(), and WaitForWalSummarization().

Variable Documentation

◆ cv_sleep_target