PostgreSQL Source Code git master
Loading...
Searching...
No Matches
bgworker.c File Reference
#include "postgres.h"
#include "access/parallel.h"
#include "libpq/pqsignal.h"
#include "miscadmin.h"
#include "pgstat.h"
#include "port/atomics.h"
#include "postmaster/bgworker_internals.h"
#include "postmaster/postmaster.h"
#include "replication/logicallauncher.h"
#include "replication/logicalworker.h"
#include "storage/ipc.h"
#include "storage/latch.h"
#include "storage/lwlock.h"
#include "storage/pmsignal.h"
#include "storage/proc.h"
#include "storage/procarray.h"
#include "storage/procsignal.h"
#include "storage/shmem.h"
#include "tcop/tcopprot.h"
#include "utils/ascii.h"
#include "utils/memutils.h"
#include "utils/ps_status.h"
#include "utils/timeout.h"
Include dependency graph for bgworker.c:

Go to the source code of this file.

Data Structures

struct  BackgroundWorkerSlot
 
struct  BackgroundWorkerArray
 
struct  BackgroundWorkerHandle
 

Typedefs

typedef struct BackgroundWorkerSlot BackgroundWorkerSlot
 
typedef struct BackgroundWorkerArray BackgroundWorkerArray
 

Functions

static bgworker_main_type LookupBackgroundWorkerFunction (const char *libraryname, const char *funcname)
 
Size BackgroundWorkerShmemSize (void)
 
void BackgroundWorkerShmemInit (void)
 
static RegisteredBgWorkerFindRegisteredWorkerBySlotNumber (int slotno)
 
void BackgroundWorkerStateChange (bool allow_new_workers)
 
void ForgetBackgroundWorker (RegisteredBgWorker *rw)
 
void ReportBackgroundWorkerPID (RegisteredBgWorker *rw)
 
void ReportBackgroundWorkerExit (RegisteredBgWorker *rw)
 
void BackgroundWorkerStopNotifications (pid_t pid)
 
void ForgetUnstartedBackgroundWorkers (void)
 
void ResetBackgroundWorkerCrashTimes (void)
 
static bool SanityCheckBackgroundWorker (BackgroundWorker *worker, int elevel)
 
void BackgroundWorkerMain (const void *startup_data, size_t startup_data_len)
 
void BackgroundWorkerInitializeConnection (const char *dbname, const char *username, uint32 flags)
 
void BackgroundWorkerInitializeConnectionByOid (Oid dboid, Oid useroid, uint32 flags)
 
void BackgroundWorkerBlockSignals (void)
 
void BackgroundWorkerUnblockSignals (void)
 
void RegisterBackgroundWorker (BackgroundWorker *worker)
 
bool RegisterDynamicBackgroundWorker (BackgroundWorker *worker, BackgroundWorkerHandle **handle)
 
BgwHandleStatus GetBackgroundWorkerPid (BackgroundWorkerHandle *handle, pid_t *pidp)
 
BgwHandleStatus WaitForBackgroundWorkerStartup (BackgroundWorkerHandle *handle, pid_t *pidp)
 
BgwHandleStatus WaitForBackgroundWorkerShutdown (BackgroundWorkerHandle *handle)
 
void TerminateBackgroundWorker (BackgroundWorkerHandle *handle)
 
const charGetBackgroundWorkerTypeByPid (pid_t pid)
 
void TerminateBackgroundWorkersForDatabase (Oid databaseId)
 

Variables

dlist_head BackgroundWorkerList = DLIST_STATIC_INIT(BackgroundWorkerList)
 
static BackgroundWorkerArrayBackgroundWorkerData
 
struct { 
 
   const char *   fn_name 
 
   bgworker_main_type   fn_addr 
 
InternalBGWorkers [] 
 

Typedef Documentation

◆ BackgroundWorkerArray

◆ BackgroundWorkerSlot

Function Documentation

◆ BackgroundWorkerBlockSignals()

void BackgroundWorkerBlockSignals ( void  )

Definition at line 927 of file bgworker.c.

928{
930}
sigset_t BlockSig
Definition pqsignal.c:23
static int fb(int x)

References BlockSig, and fb().

◆ BackgroundWorkerInitializeConnection()

void BackgroundWorkerInitializeConnection ( const char dbname,
const char username,
uint32  flags 
)

Definition at line 859 of file bgworker.c.

860{
862 bits32 init_flags = 0; /* never honor session_preload_libraries */
863
864 /* ignore datallowconn and ACL_CONNECT? */
865 if (flags & BGWORKER_BYPASS_ALLOWCONN)
867 /* ignore rolcanlogin? */
870
871 /* XXX is this the right errcode? */
875 errmsg("database connection requirement not indicated during registration")));
876
877 InitPostgres(dbname, InvalidOid, /* database to connect to */
878 username, InvalidOid, /* role to connect as */
880 NULL); /* no out_dbname */
881
882 /* it had better not gotten out of "init" mode yet */
885 (errmsg("invalid processing mode in background worker")));
887}
#define BGWORKER_BYPASS_ROLELOGINCHECK
Definition bgworker.h:167
#define BGWORKER_BACKEND_DATABASE_CONNECTION
Definition bgworker.h:60
#define BGWORKER_BYPASS_ALLOWCONN
Definition bgworker.h:166
uint32 bits32
Definition c.h:555
int errcode(int sqlerrcode)
Definition elog.c:864
int errmsg(const char *fmt,...)
Definition elog.c:1081
#define FATAL
Definition elog.h:41
#define ERROR
Definition elog.h:39
#define ereport(elevel,...)
Definition elog.h:150
static char * username
Definition initdb.c:153
@ NormalProcessing
Definition miscadmin.h:472
#define IsInitProcessingMode()
Definition miscadmin.h:478
#define SetProcessingMode(mode)
Definition miscadmin.h:483
#define INIT_PG_OVERRIDE_ROLE_LOGIN
Definition miscadmin.h:501
#define INIT_PG_OVERRIDE_ALLOW_CONNS
Definition miscadmin.h:500
#define InvalidOid
void InitPostgres(const char *in_dbname, Oid dboid, const char *username, Oid useroid, bits32 flags, char *out_dbname)
Definition postinit.c:718
BackgroundWorker * MyBgworkerEntry
Definition postmaster.c:200
char * dbname
Definition streamutil.c:49

References BackgroundWorker::bgw_flags, BGWORKER_BACKEND_DATABASE_CONNECTION, BGWORKER_BYPASS_ALLOWCONN, BGWORKER_BYPASS_ROLELOGINCHECK, dbname, ereport, errcode(), errmsg(), ERROR, FATAL, fb(), INIT_PG_OVERRIDE_ALLOW_CONNS, INIT_PG_OVERRIDE_ROLE_LOGIN, InitPostgres(), InvalidOid, IsInitProcessingMode, MyBgworkerEntry, NormalProcessing, SetProcessingMode, and username.

Referenced by ApplyLauncherMain(), and worker_spi_main().

◆ BackgroundWorkerInitializeConnectionByOid()

void BackgroundWorkerInitializeConnectionByOid ( Oid  dboid,
Oid  useroid,
uint32  flags 
)

Definition at line 893 of file bgworker.c.

894{
896 bits32 init_flags = 0; /* never honor session_preload_libraries */
897
898 /* ignore datallowconn and ACL_CONNECT? */
899 if (flags & BGWORKER_BYPASS_ALLOWCONN)
901 /* ignore rolcanlogin? */
904
905 /* XXX is this the right errcode? */
909 errmsg("database connection requirement not indicated during registration")));
910
911 InitPostgres(NULL, dboid, /* database to connect to */
912 NULL, useroid, /* role to connect as */
914 NULL); /* no out_dbname */
915
916 /* it had better not gotten out of "init" mode yet */
919 (errmsg("invalid processing mode in background worker")));
921}

References BackgroundWorker::bgw_flags, BGWORKER_BACKEND_DATABASE_CONNECTION, BGWORKER_BYPASS_ALLOWCONN, BGWORKER_BYPASS_ROLELOGINCHECK, ereport, errcode(), errmsg(), ERROR, FATAL, fb(), INIT_PG_OVERRIDE_ALLOW_CONNS, INIT_PG_OVERRIDE_ROLE_LOGIN, InitPostgres(), IsInitProcessingMode, MyBgworkerEntry, NormalProcessing, and SetProcessingMode.

Referenced by autoprewarm_database_main(), InitializeLogRepWorker(), ParallelWorkerMain(), and worker_spi_main().

◆ BackgroundWorkerMain()

void BackgroundWorkerMain ( const void startup_data,
size_t  startup_data_len 
)

Definition at line 725 of file bgworker.c.

726{
728 BackgroundWorker *worker;
730
731 if (startup_data == NULL)
732 elog(FATAL, "unable to find bgworker entry");
735 memcpy(worker, startup_data, sizeof(BackgroundWorker));
736
737 /*
738 * Now that we're done reading the startup data, release postmaster's
739 * working memory context.
740 */
742 {
745 }
746
747 MyBgworkerEntry = worker;
748 init_ps_display(worker->bgw_name);
749
751
752 /* Apply PostAuthDelay */
753 if (PostAuthDelay > 0)
754 pg_usleep(PostAuthDelay * 1000000L);
755
756 /*
757 * Set up signal handlers.
758 */
760 {
761 /*
762 * SIGINT is used to signal canceling the current action
763 */
767
768 /* XXX Any other handlers needed here? */
769 }
770 else
771 {
775 }
777 /* SIGQUIT handler was already set up by InitPostmasterChild */
779
780 InitializeTimeouts(); /* establishes SIGALRM handler */
781
785
786 /*
787 * If an exception is encountered, processing resumes here.
788 *
789 * We just need to clean up, report the error, and go away.
790 */
791 if (sigsetjmp(local_sigjmp_buf, 1) != 0)
792 {
793 /* Since not using PG_TRY, must reset error stack by hand */
795
796 /* Prevent interrupts while cleaning up */
798
799 /*
800 * sigsetjmp will have blocked all signals, but we may need to accept
801 * signals while communicating with our parallel leader. Once we've
802 * done HOLD_INTERRUPTS() it should be safe to unblock signals.
803 */
805
806 /* Report the error to the parallel leader and the server log */
808
809 /*
810 * Do we need more cleanup here? For shmem-connected bgworkers, we
811 * will call InitProcess below, which will install ProcKill as exit
812 * callback. That will take care of releasing locks, etc.
813 */
814
815 /* and go away */
816 proc_exit(1);
817 }
818
819 /* We can now handle ereport(ERROR) */
821
822 /*
823 * Create a per-backend PGPROC struct in shared memory. We must do this
824 * before we can use LWLocks or access any shared memory.
825 */
826 InitProcess();
827
828 /*
829 * Early initialization.
830 */
831 BaseInit();
832
833 /*
834 * Look up the entry point function, loading its library if necessary.
835 */
837 worker->bgw_function_name);
838
839 /*
840 * Note that in normal processes, we would call InitPostgres here. For a
841 * worker, however, we don't know what database to connect to, yet; so we
842 * need to wait until the user code does it via
843 * BackgroundWorkerInitializeConnection().
844 */
845
846 /*
847 * Now invoke the user-defined worker code
848 */
849 entrypt(worker->bgw_main_arg);
850
851 /* ... and if it returns, we're done */
852 proc_exit(0);
853}
void BackgroundWorkerUnblockSignals(void)
Definition bgworker.c:933
static bgworker_main_type LookupBackgroundWorkerFunction(const char *libraryname, const char *funcname)
Definition bgworker.c:1344
void(* bgworker_main_type)(Datum main_arg)
Definition bgworker.h:79
#define Assert(condition)
Definition c.h:873
void EmitErrorReport(void)
Definition elog.c:1705
ErrorContextCallback * error_context_stack
Definition elog.c:95
sigjmp_buf * PG_exception_stack
Definition elog.c:97
#define elog(elevel,...)
Definition elog.h:226
void proc_exit(int code)
Definition ipc.c:105
void * MemoryContextAlloc(MemoryContext context, Size size)
Definition mcxt.c:1232
MemoryContext TopMemoryContext
Definition mcxt.c:166
MemoryContext PostmasterContext
Definition mcxt.c:168
void MemoryContextDelete(MemoryContext context)
Definition mcxt.c:472
@ InitProcessing
Definition miscadmin.h:471
#define GetProcessingMode()
Definition miscadmin.h:481
#define HOLD_INTERRUPTS()
Definition miscadmin.h:134
#define die(msg)
#define pqsignal
Definition port.h:547
int PostAuthDelay
Definition postgres.c:101
void FloatExceptionHandler(SIGNAL_ARGS)
Definition postgres.c:3058
void StatementCancelHandler(SIGNAL_ARGS)
Definition postgres.c:3041
void BaseInit(void)
Definition postinit.c:615
void procsignal_sigusr1_handler(SIGNAL_ARGS)
Definition procsignal.c:677
void init_ps_display(const char *fixed_part)
Definition ps_status.c:285
void pg_usleep(long microsec)
Definition signal.c:53
void InitProcess(void)
Definition proc.c:379
char bgw_function_name[BGW_MAXLEN]
Definition bgworker.h:104
char bgw_name[BGW_MAXLEN]
Definition bgworker.h:98
char bgw_library_name[MAXPGPATH]
Definition bgworker.h:103
void InitializeTimeouts(void)
Definition timeout.c:470
#define SIGCHLD
Definition win32_port.h:168
#define SIGHUP
Definition win32_port.h:158
#define SIGPIPE
Definition win32_port.h:163
#define SIGUSR1
Definition win32_port.h:170
#define SIGUSR2
Definition win32_port.h:171

References Assert, BackgroundWorkerUnblockSignals(), BaseInit(), BackgroundWorker::bgw_flags, BackgroundWorker::bgw_function_name, BackgroundWorker::bgw_library_name, BackgroundWorker::bgw_main_arg, BackgroundWorker::bgw_name, BGWORKER_BACKEND_DATABASE_CONNECTION, die, elog, EmitErrorReport(), error_context_stack, FATAL, fb(), FloatExceptionHandler(), GetProcessingMode, HOLD_INTERRUPTS, init_ps_display(), InitializeTimeouts(), InitProcess(), InitProcessing, LookupBackgroundWorkerFunction(), MemoryContextAlloc(), MemoryContextDelete(), MyBgworkerEntry, PG_exception_stack, pg_usleep(), PostAuthDelay, PostmasterContext, pqsignal, proc_exit(), procsignal_sigusr1_handler(), SIGCHLD, SIGHUP, SIGPIPE, SIGUSR1, SIGUSR2, StatementCancelHandler(), and TopMemoryContext.

◆ BackgroundWorkerShmemInit()

void BackgroundWorkerShmemInit ( void  )

Definition at line 172 of file bgworker.c.

173{
174 bool found;
175
176 BackgroundWorkerData = ShmemInitStruct("Background Worker Data",
178 &found);
180 {
181 dlist_iter iter;
182 int slotno = 0;
183
187
188 /*
189 * Copy contents of worker list into shared memory. Record the shared
190 * memory slot assigned to each worker. This ensures a 1-to-1
191 * correspondence between the postmaster's private list and the array
192 * in shared memory.
193 */
195 {
198
199 rw = dlist_container(RegisteredBgWorker, rw_lnode, iter.cur);
201 slot->in_use = true;
202 slot->terminate = false;
203 slot->pid = InvalidPid;
204 slot->generation = 0;
205 rw->rw_shmem_slot = slotno;
206 rw->rw_worker.bgw_notify_pid = 0; /* might be reinit after crash */
207 memcpy(&slot->worker, &rw->rw_worker, sizeof(BackgroundWorker));
208 ++slotno;
209 }
210
211 /*
212 * Mark any remaining slots as not in use.
213 */
215 {
217
218 slot->in_use = false;
219 ++slotno;
220 }
221 }
222 else
223 Assert(found);
224}
dlist_head BackgroundWorkerList
Definition bgworker.c:41
static BackgroundWorkerArray * BackgroundWorkerData
Definition bgworker.c:109
Size BackgroundWorkerShmemSize(void)
Definition bgworker.c:156
bool IsUnderPostmaster
Definition globals.c:120
int max_worker_processes
Definition globals.c:144
#define dlist_foreach(iter, lhead)
Definition ilist.h:623
#define dlist_container(type, membername, ptr)
Definition ilist.h:593
#define InvalidPid
Definition miscadmin.h:32
void * ShmemInitStruct(const char *name, Size size, bool *foundPtr)
Definition shmem.c:378
uint32 parallel_terminate_count
Definition bgworker.c:99
uint32 parallel_register_count
Definition bgworker.c:98
BackgroundWorkerSlot slot[FLEXIBLE_ARRAY_MEMBER]
Definition bgworker.c:100
BackgroundWorker worker
Definition bgworker.c:81
pid_t bgw_notify_pid
Definition bgworker.h:107
BackgroundWorker rw_worker
dlist_node * cur
Definition ilist.h:179

References Assert, BackgroundWorkerData, BackgroundWorkerList, BackgroundWorkerShmemSize(), BackgroundWorker::bgw_notify_pid, dlist_iter::cur, dlist_container, dlist_foreach, fb(), BackgroundWorkerSlot::generation, BackgroundWorkerSlot::in_use, InvalidPid, IsUnderPostmaster, max_worker_processes, BackgroundWorkerArray::parallel_register_count, BackgroundWorkerArray::parallel_terminate_count, BackgroundWorkerSlot::pid, RegisteredBgWorker::rw_shmem_slot, RegisteredBgWorker::rw_worker, ShmemInitStruct(), BackgroundWorkerArray::slot, BackgroundWorkerSlot::terminate, BackgroundWorkerArray::total_slots, and BackgroundWorkerSlot::worker.

Referenced by CreateOrAttachShmemStructs().

◆ BackgroundWorkerShmemSize()

Size BackgroundWorkerShmemSize ( void  )

Definition at line 156 of file bgworker.c.

157{
158 Size size;
159
160 /* Array of workers is variably sized. */
161 size = offsetof(BackgroundWorkerArray, slot);
163 sizeof(BackgroundWorkerSlot)));
164
165 return size;
166}
size_t Size
Definition c.h:619
Size add_size(Size s1, Size s2)
Definition shmem.c:482
Size mul_size(Size s1, Size s2)
Definition shmem.c:497

References add_size(), fb(), max_worker_processes, and mul_size().

Referenced by BackgroundWorkerShmemInit(), and CalculateShmemSize().

◆ BackgroundWorkerStateChange()

void BackgroundWorkerStateChange ( bool  allow_new_workers)

Definition at line 256 of file bgworker.c.

257{
258 int slotno;
259
260 /*
261 * The total number of slots stored in shared memory should match our
262 * notion of max_worker_processes. If it does not, something is very
263 * wrong. Further down, we always refer to this value as
264 * max_worker_processes, in case shared memory gets corrupted while we're
265 * looping.
266 */
268 {
269 ereport(LOG,
270 (errmsg("inconsistent background worker state (\"max_worker_processes\"=%d, total slots=%d)",
273 return;
274 }
275
276 /*
277 * Iterate through slots, looking for newly-registered workers or workers
278 * who must die.
279 */
281 {
284
285 if (!slot->in_use)
286 continue;
287
288 /*
289 * Make sure we don't see the in_use flag before the updated slot
290 * contents.
291 */
293
294 /* See whether we already know about this worker. */
296 if (rw != NULL)
297 {
298 /*
299 * In general, the worker data can't change after it's initially
300 * registered. However, someone can set the terminate flag.
301 */
302 if (slot->terminate && !rw->rw_terminate)
303 {
304 rw->rw_terminate = true;
305 if (rw->rw_pid != 0)
306 kill(rw->rw_pid, SIGTERM);
307 else
308 {
309 /* Report never-started, now-terminated worker as dead. */
311 }
312 }
313 continue;
314 }
315
316 /*
317 * If we aren't allowing new workers, then immediately mark it for
318 * termination; the next stanza will take care of cleaning it up.
319 * Doing this ensures that any process waiting for the worker will get
320 * awoken, even though the worker will never be allowed to run.
321 */
323 slot->terminate = true;
324
325 /*
326 * If the worker is marked for termination, we don't need to add it to
327 * the registered workers list; we can just free the slot. However, if
328 * bgw_notify_pid is set, the process that registered the worker may
329 * need to know that we've processed the terminate request, so be sure
330 * to signal it.
331 */
332 if (slot->terminate)
333 {
334 int notify_pid;
335
336 /*
337 * We need a memory barrier here to make sure that the load of
338 * bgw_notify_pid and the update of parallel_terminate_count
339 * complete before the store to in_use.
340 */
342 if ((slot->worker.bgw_flags & BGWORKER_CLASS_PARALLEL) != 0)
344 slot->pid = 0;
345
347 slot->in_use = false;
348
349 if (notify_pid != 0)
351
352 continue;
353 }
354
355 /*
356 * Copy the registration data into the registered workers list.
357 */
359 sizeof(RegisteredBgWorker),
361 if (rw == NULL)
362 {
363 ereport(LOG,
365 errmsg("out of memory")));
366 return;
367 }
368
369 /*
370 * Copy strings in a paranoid way. If shared memory is corrupted, the
371 * source data might not even be NUL-terminated.
372 */
374 slot->worker.bgw_name, BGW_MAXLEN);
376 slot->worker.bgw_type, BGW_MAXLEN);
381
382 /*
383 * Copy various fixed-size fields.
384 *
385 * flags, start_time, and restart_time are examined by the postmaster,
386 * but nothing too bad will happen if they are corrupted. The
387 * remaining fields will only be examined by the child process. It
388 * might crash, but we won't.
389 */
395
396 /*
397 * Copy the PID to be notified about state changes, but only if the
398 * postmaster knows about a backend with that PID. It isn't an error
399 * if the postmaster doesn't know about the PID, because the backend
400 * that requested the worker could have died (or been killed) just
401 * after doing so. Nonetheless, at least until we get some experience
402 * with how this plays out in the wild, log a message at a relative
403 * high debug level.
404 */
407 {
408 elog(DEBUG1, "worker notification PID %d is not valid",
409 (int) rw->rw_worker.bgw_notify_pid);
411 }
412
413 /* Initialize postmaster bookkeeping. */
414 rw->rw_pid = 0;
415 rw->rw_crashed_at = 0;
416 rw->rw_shmem_slot = slotno;
417 rw->rw_terminate = false;
418
419 /* Log it! */
421 (errmsg_internal("registering background worker \"%s\"",
422 rw->rw_worker.bgw_name)));
423
425 }
426}
void ascii_safe_strlcpy(char *dest, const char *src, size_t destsiz)
Definition ascii.c:174
#define pg_memory_barrier()
Definition atomics.h:141
#define pg_read_barrier()
Definition atomics.h:154
void ReportBackgroundWorkerPID(RegisteredBgWorker *rw)
Definition bgworker.c:471
static RegisteredBgWorker * FindRegisteredWorkerBySlotNumber(int slotno)
Definition bgworker.c:231
#define BGW_EXTRALEN
Definition bgworker.h:94
#define BGWORKER_CLASS_PARALLEL
Definition bgworker.h:75
#define BGW_MAXLEN
Definition bgworker.h:93
int errmsg_internal(const char *fmt,...)
Definition elog.c:1171
#define LOG
Definition elog.h:31
#define DEBUG1
Definition elog.h:30
#define MCXT_ALLOC_ZERO
Definition fe_memutils.h:30
#define MCXT_ALLOC_NO_OOM
Definition fe_memutils.h:29
static void dlist_push_head(dlist_head *head, dlist_node *node)
Definition ilist.h:347
void * MemoryContextAllocExtended(MemoryContext context, Size size, int flags)
Definition mcxt.c:1289
#define MAXPGPATH
bool PostmasterMarkPIDForWorkerNotify(int pid)
char bgw_type[BGW_MAXLEN]
Definition bgworker.h:99
BgWorkerStartTime bgw_start_time
Definition bgworker.h:101
char bgw_extra[BGW_EXTRALEN]
Definition bgworker.h:106
#define kill(pid, sig)
Definition win32_port.h:490

References ascii_safe_strlcpy(), BackgroundWorkerData, BackgroundWorkerList, BackgroundWorker::bgw_extra, BGW_EXTRALEN, BackgroundWorker::bgw_flags, BackgroundWorker::bgw_function_name, BackgroundWorker::bgw_library_name, BackgroundWorker::bgw_main_arg, BGW_MAXLEN, BackgroundWorker::bgw_name, BackgroundWorker::bgw_notify_pid, BackgroundWorker::bgw_restart_time, BackgroundWorker::bgw_start_time, BackgroundWorker::bgw_type, BGWORKER_CLASS_PARALLEL, DEBUG1, dlist_push_head(), elog, ereport, errcode(), errmsg(), errmsg_internal(), fb(), FindRegisteredWorkerBySlotNumber(), BackgroundWorkerSlot::in_use, kill, LOG, max_worker_processes, MAXPGPATH, MCXT_ALLOC_NO_OOM, MCXT_ALLOC_ZERO, MemoryContextAllocExtended(), BackgroundWorkerArray::parallel_terminate_count, pg_memory_barrier, pg_read_barrier, BackgroundWorkerSlot::pid, PostmasterContext, PostmasterMarkPIDForWorkerNotify(), ReportBackgroundWorkerPID(), RegisteredBgWorker::rw_crashed_at, RegisteredBgWorker::rw_lnode, RegisteredBgWorker::rw_pid, RegisteredBgWorker::rw_shmem_slot, RegisteredBgWorker::rw_terminate, RegisteredBgWorker::rw_worker, SIGUSR1, BackgroundWorkerArray::slot, BackgroundWorkerSlot::terminate, BackgroundWorkerArray::total_slots, and BackgroundWorkerSlot::worker.

Referenced by process_pm_pmsignal().

◆ BackgroundWorkerStopNotifications()

void BackgroundWorkerStopNotifications ( pid_t  pid)

Definition at line 524 of file bgworker.c.

525{
526 dlist_iter iter;
527
529 {
531
532 rw = dlist_container(RegisteredBgWorker, rw_lnode, iter.cur);
533 if (rw->rw_worker.bgw_notify_pid == pid)
535 }
536}

References BackgroundWorkerList, BackgroundWorker::bgw_notify_pid, dlist_iter::cur, dlist_container, dlist_foreach, and RegisteredBgWorker::rw_worker.

Referenced by CleanupBackend().

◆ BackgroundWorkerUnblockSignals()

◆ FindRegisteredWorkerBySlotNumber()

static RegisteredBgWorker * FindRegisteredWorkerBySlotNumber ( int  slotno)
static

Definition at line 231 of file bgworker.c.

232{
233 dlist_iter iter;
234
236 {
238
239 rw = dlist_container(RegisteredBgWorker, rw_lnode, iter.cur);
240 if (rw->rw_shmem_slot == slotno)
241 return rw;
242 }
243
244 return NULL;
245}

References BackgroundWorkerList, dlist_iter::cur, dlist_container, dlist_foreach, fb(), and RegisteredBgWorker::rw_shmem_slot.

Referenced by BackgroundWorkerStateChange().

◆ ForgetBackgroundWorker()

void ForgetBackgroundWorker ( RegisteredBgWorker rw)

Definition at line 439 of file bgworker.c.

440{
442
445 Assert(slot->in_use);
446
447 /*
448 * We need a memory barrier here to make sure that the update of
449 * parallel_terminate_count completes before the store to in_use.
450 */
453
455 slot->in_use = false;
456
458 (errmsg_internal("unregistering background worker \"%s\"",
459 rw->rw_worker.bgw_name)));
460
462 pfree(rw);
463}
static void dlist_delete(dlist_node *node)
Definition ilist.h:405
void pfree(void *pointer)
Definition mcxt.c:1616

References Assert, BackgroundWorkerData, BackgroundWorker::bgw_flags, BackgroundWorker::bgw_name, BGWORKER_CLASS_PARALLEL, DEBUG1, dlist_delete(), ereport, errmsg_internal(), BackgroundWorkerSlot::in_use, max_worker_processes, BackgroundWorkerArray::parallel_terminate_count, pfree(), pg_memory_barrier, RegisteredBgWorker::rw_lnode, RegisteredBgWorker::rw_shmem_slot, RegisteredBgWorker::rw_worker, and BackgroundWorkerArray::slot.

Referenced by DetermineSleepTime(), ForgetUnstartedBackgroundWorkers(), maybe_start_bgworkers(), ReportBackgroundWorkerExit(), and ResetBackgroundWorkerCrashTimes().

◆ ForgetUnstartedBackgroundWorkers()

void ForgetUnstartedBackgroundWorkers ( void  )

Definition at line 551 of file bgworker.c.

552{
554
556 {
559
560 rw = dlist_container(RegisteredBgWorker, rw_lnode, iter.cur);
563
564 /* If it's not yet started, and there's someone waiting ... */
565 if (slot->pid == InvalidPid &&
566 rw->rw_worker.bgw_notify_pid != 0)
567 {
568 /* ... then zap it, and notify the waiter */
570
572 if (notify_pid != 0)
574 }
575 }
576}
void ForgetBackgroundWorker(RegisteredBgWorker *rw)
Definition bgworker.c:439
#define dlist_foreach_modify(iter, lhead)
Definition ilist.h:640
dlist_node * cur
Definition ilist.h:200

References Assert, BackgroundWorkerData, BackgroundWorkerList, BackgroundWorker::bgw_notify_pid, dlist_mutable_iter::cur, dlist_container, dlist_foreach_modify, fb(), ForgetBackgroundWorker(), InvalidPid, kill, max_worker_processes, BackgroundWorkerSlot::pid, RegisteredBgWorker::rw_shmem_slot, RegisteredBgWorker::rw_worker, SIGUSR1, and BackgroundWorkerArray::slot.

Referenced by PostmasterStateMachine().

◆ GetBackgroundWorkerPid()

BgwHandleStatus GetBackgroundWorkerPid ( BackgroundWorkerHandle handle,
pid_t pidp 
)

Definition at line 1164 of file bgworker.c.

1165{
1167 pid_t pid;
1168
1169 Assert(handle->slot < max_worker_processes);
1170 slot = &BackgroundWorkerData->slot[handle->slot];
1171
1172 /*
1173 * We could probably arrange to synchronize access to data using memory
1174 * barriers only, but for now, let's just keep it simple and grab the
1175 * lock. It seems unlikely that there will be enough traffic here to
1176 * result in meaningful contention.
1177 */
1179
1180 /*
1181 * The generation number can't be concurrently changed while we hold the
1182 * lock. The pid, which is updated by the postmaster, can change at any
1183 * time, but we assume such changes are atomic. So the value we read
1184 * won't be garbage, but it might be out of date by the time the caller
1185 * examines it (but that's unavoidable anyway).
1186 *
1187 * The in_use flag could be in the process of changing from true to false,
1188 * but if it is already false then it can't change further.
1189 */
1190 if (handle->generation != slot->generation || !slot->in_use)
1191 pid = 0;
1192 else
1193 pid = slot->pid;
1194
1195 /* All done. */
1197
1198 if (pid == 0)
1199 return BGWH_STOPPED;
1200 else if (pid == InvalidPid)
1201 return BGWH_NOT_YET_STARTED;
1202 *pidp = pid;
1203 return BGWH_STARTED;
1204}
@ BGWH_STARTED
Definition bgworker.h:112
@ BGWH_NOT_YET_STARTED
Definition bgworker.h:113
@ BGWH_STOPPED
Definition bgworker.h:114
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition lwlock.c:1176
void LWLockRelease(LWLock *lock)
Definition lwlock.c:1793
@ LW_SHARED
Definition lwlock.h:113

References Assert, BackgroundWorkerData, BGWH_NOT_YET_STARTED, BGWH_STARTED, BGWH_STOPPED, fb(), BackgroundWorkerSlot::generation, BackgroundWorkerHandle::generation, BackgroundWorkerSlot::in_use, InvalidPid, LW_SHARED, LWLockAcquire(), LWLockRelease(), max_worker_processes, BackgroundWorkerSlot::pid, BackgroundWorkerArray::slot, and BackgroundWorkerHandle::slot.

Referenced by check_worker_status(), shm_mq_counterparty_gone(), shm_mq_wait_internal(), WaitForBackgroundWorkerShutdown(), WaitForBackgroundWorkerStartup(), WaitForParallelWorkersToAttach(), WaitForParallelWorkersToFinish(), and WaitForReplicationWorkerAttach().

◆ GetBackgroundWorkerTypeByPid()

const char * GetBackgroundWorkerTypeByPid ( pid_t  pid)

Definition at line 1378 of file bgworker.c.

1379{
1380 int slotno;
1381 bool found = false;
1382 static char result[BGW_MAXLEN];
1383
1385
1387 {
1389
1390 if (slot->pid > 0 && slot->pid == pid)
1391 {
1392 strcpy(result, slot->worker.bgw_type);
1393 found = true;
1394 break;
1395 }
1396 }
1397
1399
1400 if (!found)
1401 return NULL;
1402
1403 return result;
1404}

References BackgroundWorkerData, BGW_MAXLEN, BackgroundWorker::bgw_type, fb(), LW_SHARED, LWLockAcquire(), LWLockRelease(), BackgroundWorkerSlot::pid, BackgroundWorkerArray::slot, BackgroundWorkerArray::total_slots, and BackgroundWorkerSlot::worker.

Referenced by pg_stat_get_activity().

◆ LookupBackgroundWorkerFunction()

static bgworker_main_type LookupBackgroundWorkerFunction ( const char libraryname,
const char funcname 
)
static

Definition at line 1344 of file bgworker.c.

1345{
1346 /*
1347 * If the function is to be loaded from postgres itself, search the
1348 * InternalBGWorkers array.
1349 */
1350 if (strcmp(libraryname, "postgres") == 0)
1351 {
1352 int i;
1353
1354 for (i = 0; i < lengthof(InternalBGWorkers); i++)
1355 {
1357 return InternalBGWorkers[i].fn_addr;
1358 }
1359
1360 /* We can only reach this by programming error. */
1361 elog(ERROR, "internal function \"%s\" not found", funcname);
1362 }
1363
1364 /* Otherwise load from external library. */
1365 return (bgworker_main_type)
1367}
static const struct @18 InternalBGWorkers[]
const char * fn_name
Definition bgworker.c:117
bgworker_main_type fn_addr
Definition bgworker.c:118
#define lengthof(array)
Definition c.h:803
void * load_external_function(const char *filename, const char *funcname, bool signalNotFound, void **filehandle)
Definition dfmgr.c:95
#define funcname
int i
Definition isn.c:77

References elog, ERROR, fb(), fn_addr, fn_name, funcname, i, InternalBGWorkers, lengthof, and load_external_function().

Referenced by BackgroundWorkerMain().

◆ RegisterBackgroundWorker()

void RegisterBackgroundWorker ( BackgroundWorker worker)

Definition at line 946 of file bgworker.c.

947{
949 static int numworkers = 0;
950
951 /*
952 * Static background workers can only be registered in the postmaster
953 * process.
954 */
956 {
957 /*
958 * In EXEC_BACKEND or single-user mode, we process
959 * shared_preload_libraries in backend processes too. We cannot
960 * register static background workers at that stage, but many
961 * libraries' _PG_init() functions don't distinguish whether they're
962 * being loaded in the postmaster or in a backend, they just check
963 * process_shared_preload_libraries_in_progress. It's a bit sloppy,
964 * but for historical reasons we tolerate it. In EXEC_BACKEND mode,
965 * the background workers should already have been registered when the
966 * library was loaded in postmaster.
967 */
969 return;
970 ereport(LOG,
972 errmsg("background worker \"%s\": must be registered in \"shared_preload_libraries\"",
973 worker->bgw_name)));
974 return;
975 }
976
977 /*
978 * Cannot register static background workers after calling
979 * BackgroundWorkerShmemInit().
980 */
982 elog(ERROR, "cannot register background worker \"%s\" after shmem init",
983 worker->bgw_name);
984
986 (errmsg_internal("registering background worker \"%s\"", worker->bgw_name)));
987
988 if (!SanityCheckBackgroundWorker(worker, LOG))
989 return;
990
991 if (worker->bgw_notify_pid != 0)
992 {
993 ereport(LOG,
995 errmsg("background worker \"%s\": only dynamic background workers can request notification",
996 worker->bgw_name)));
997 return;
998 }
999
1000 /*
1001 * Enforce maximum number of workers. Note this is overly restrictive: we
1002 * could allow more non-shmem-connected workers, because these don't count
1003 * towards the MAX_BACKENDS limit elsewhere. For now, it doesn't seem
1004 * important to relax this restriction.
1005 */
1007 {
1008 ereport(LOG,
1010 errmsg("too many background workers"),
1011 errdetail_plural("Up to %d background worker can be registered with the current settings.",
1012 "Up to %d background workers can be registered with the current settings.",
1015 errhint("Consider increasing the configuration parameter \"%s\".", "max_worker_processes")));
1016 return;
1017 }
1018
1019 /*
1020 * Copy the registration data into the registered workers list.
1021 */
1023 sizeof(RegisteredBgWorker),
1025 if (rw == NULL)
1026 {
1027 ereport(LOG,
1029 errmsg("out of memory")));
1030 return;
1031 }
1032
1033 rw->rw_worker = *worker;
1034 rw->rw_pid = 0;
1035 rw->rw_crashed_at = 0;
1036 rw->rw_terminate = false;
1037
1039}
static bool SanityCheckBackgroundWorker(BackgroundWorker *worker, int elevel)
Definition bgworker.c:642
int errdetail_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...)
Definition elog.c:1309
int errhint(const char *fmt,...)
Definition elog.c:1331
bool IsPostmasterEnvironment
Definition globals.c:119
bool process_shared_preload_libraries_in_progress
Definition miscinit.c:1786

References BackgroundWorkerData, BackgroundWorkerList, BackgroundWorker::bgw_name, BackgroundWorker::bgw_notify_pid, DEBUG1, dlist_push_head(), elog, ereport, errcode(), errdetail_plural(), errhint(), errmsg(), errmsg_internal(), ERROR, fb(), IsPostmasterEnvironment, IsUnderPostmaster, LOG, max_worker_processes, MCXT_ALLOC_NO_OOM, MemoryContextAllocExtended(), PostmasterContext, process_shared_preload_libraries_in_progress, RegisteredBgWorker::rw_crashed_at, RegisteredBgWorker::rw_lnode, RegisteredBgWorker::rw_pid, RegisteredBgWorker::rw_terminate, RegisteredBgWorker::rw_worker, and SanityCheckBackgroundWorker().

Referenced by _PG_init(), ApplyLauncherRegister(), and apw_start_leader_worker().

◆ RegisterDynamicBackgroundWorker()

bool RegisterDynamicBackgroundWorker ( BackgroundWorker worker,
BackgroundWorkerHandle **  handle 
)

Definition at line 1052 of file bgworker.c.

1054{
1055 int slotno;
1056 bool success = false;
1057 bool parallel;
1058 uint64 generation = 0;
1059
1060 /*
1061 * We can't register dynamic background workers from the postmaster. If
1062 * this is a standalone backend, we're the only process and can't start
1063 * any more. In a multi-process environment, it might be theoretically
1064 * possible, but we don't currently support it due to locking
1065 * considerations; see comments on the BackgroundWorkerSlot data
1066 * structure.
1067 */
1068 if (!IsUnderPostmaster)
1069 return false;
1070
1071 if (!SanityCheckBackgroundWorker(worker, ERROR))
1072 return false;
1073
1074 parallel = (worker->bgw_flags & BGWORKER_CLASS_PARALLEL) != 0;
1075
1077
1078 /*
1079 * If this is a parallel worker, check whether there are already too many
1080 * parallel workers; if so, don't register another one. Our view of
1081 * parallel_terminate_count may be slightly stale, but that doesn't really
1082 * matter: we would have gotten the same result if we'd arrived here
1083 * slightly earlier anyway. There's no help for it, either, since the
1084 * postmaster must not take locks; a memory barrier wouldn't guarantee
1085 * anything useful.
1086 */
1090 {
1095 return false;
1096 }
1097
1098 /*
1099 * Look for an unused slot. If we find one, grab it.
1100 */
1102 {
1104
1105 if (!slot->in_use)
1106 {
1107 memcpy(&slot->worker, worker, sizeof(BackgroundWorker));
1108 slot->pid = InvalidPid; /* indicates not started yet */
1109 slot->generation++;
1110 slot->terminate = false;
1111 generation = slot->generation;
1112 if (parallel)
1114
1115 /*
1116 * Make sure postmaster doesn't see the slot as in use before it
1117 * sees the new contents.
1118 */
1120
1121 slot->in_use = true;
1122 success = true;
1123 break;
1124 }
1125 }
1126
1128
1129 /* If we found a slot, tell the postmaster to notice the change. */
1130 if (success)
1132
1133 /*
1134 * If we found a slot and the user has provided a handle, initialize it.
1135 */
1136 if (success && handle)
1137 {
1139 (*handle)->slot = slotno;
1140 (*handle)->generation = generation;
1141 }
1142
1143 return success;
1144}
#define pg_write_barrier()
Definition atomics.h:155
#define MAX_PARALLEL_WORKER_LIMIT
uint64_t uint64
Definition c.h:547
#define palloc_object(type)
Definition fe_memutils.h:74
int max_parallel_workers
Definition globals.c:145
static bool success
Definition initdb.c:187
@ LW_EXCLUSIVE
Definition lwlock.h:112
void SendPostmasterSignal(PMSignalReason reason)
Definition pmsignal.c:165
@ PMSIGNAL_BACKGROUND_WORKER_CHANGE
Definition pmsignal.h:41

References Assert, BackgroundWorkerData, BackgroundWorker::bgw_flags, BGWORKER_CLASS_PARALLEL, ERROR, fb(), BackgroundWorkerSlot::generation, BackgroundWorkerSlot::in_use, InvalidPid, IsUnderPostmaster, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), MAX_PARALLEL_WORKER_LIMIT, max_parallel_workers, palloc_object, BackgroundWorkerArray::parallel_register_count, BackgroundWorkerArray::parallel_terminate_count, pg_write_barrier, BackgroundWorkerSlot::pid, PMSIGNAL_BACKGROUND_WORKER_CHANGE, SanityCheckBackgroundWorker(), SendPostmasterSignal(), BackgroundWorkerArray::slot, success, BackgroundWorkerSlot::terminate, BackgroundWorkerArray::total_slots, and BackgroundWorkerSlot::worker.

Referenced by apw_start_database_worker(), apw_start_leader_worker(), LaunchParallelWorkers(), logicalrep_worker_launch(), setup_background_workers(), and worker_spi_launch().

◆ ReportBackgroundWorkerExit()

void ReportBackgroundWorkerExit ( RegisteredBgWorker rw)

Definition at line 493 of file bgworker.c.

494{
496 int notify_pid;
497
500 slot->pid = rw->rw_pid;
502
503 /*
504 * If this worker is slated for deregistration, do that before notifying
505 * the process which started it. Otherwise, if that process tries to
506 * reuse the slot immediately, it might not be available yet. In theory
507 * that could happen anyway if the process checks slot->pid at just the
508 * wrong moment, but this makes the window narrower.
509 */
510 if (rw->rw_terminate ||
513
514 if (notify_pid != 0)
516}
#define BGW_NEVER_RESTART
Definition bgworker.h:92

References Assert, BackgroundWorkerData, BGW_NEVER_RESTART, BackgroundWorker::bgw_notify_pid, BackgroundWorker::bgw_restart_time, fb(), ForgetBackgroundWorker(), kill, max_worker_processes, BackgroundWorkerSlot::pid, RegisteredBgWorker::rw_pid, RegisteredBgWorker::rw_shmem_slot, RegisteredBgWorker::rw_terminate, RegisteredBgWorker::rw_worker, SIGUSR1, and BackgroundWorkerArray::slot.

Referenced by CleanupBackend().

◆ ReportBackgroundWorkerPID()

◆ ResetBackgroundWorkerCrashTimes()

void ResetBackgroundWorkerCrashTimes ( void  )

Definition at line 589 of file bgworker.c.

590{
592
594 {
596
597 rw = dlist_container(RegisteredBgWorker, rw_lnode, iter.cur);
598
600 {
601 /*
602 * Workers marked BGW_NEVER_RESTART shouldn't get relaunched after
603 * the crash, so forget about them. (If we wait until after the
604 * crash to forget about them, and they are parallel workers,
605 * parallel_terminate_count will get incremented after we've
606 * already zeroed parallel_register_count, which would be bad.)
607 */
609 }
610 else
611 {
612 /*
613 * The accounting which we do via parallel_register_count and
614 * parallel_terminate_count would get messed up if a worker marked
615 * parallel could survive a crash and restart cycle. All such
616 * workers should be marked BGW_NEVER_RESTART, and thus control
617 * should never reach this branch.
618 */
620
621 /*
622 * Allow this worker to be restarted immediately after we finish
623 * resetting.
624 */
625 rw->rw_crashed_at = 0;
626 rw->rw_pid = 0;
627
628 /*
629 * If there was anyone waiting for it, they're history.
630 */
632 }
633 }
634}

References Assert, BackgroundWorkerList, BackgroundWorker::bgw_flags, BGW_NEVER_RESTART, BackgroundWorker::bgw_notify_pid, BackgroundWorker::bgw_restart_time, BGWORKER_CLASS_PARALLEL, dlist_mutable_iter::cur, dlist_container, dlist_foreach_modify, ForgetBackgroundWorker(), RegisteredBgWorker::rw_crashed_at, RegisteredBgWorker::rw_pid, and RegisteredBgWorker::rw_worker.

Referenced by PostmasterStateMachine().

◆ SanityCheckBackgroundWorker()

static bool SanityCheckBackgroundWorker ( BackgroundWorker worker,
int  elevel 
)
static

Definition at line 642 of file bgworker.c.

643{
644 /* sanity check for flags */
645
646 /*
647 * We used to support workers not connected to shared memory, but don't
648 * anymore. Thus this is a required flag now. We're not removing the flag
649 * for compatibility reasons and because the flag still provides some
650 * signal when reading code.
651 */
652 if (!(worker->bgw_flags & BGWORKER_SHMEM_ACCESS))
653 {
654 ereport(elevel,
656 errmsg("background worker \"%s\": background workers without shared memory access are not supported",
657 worker->bgw_name)));
658 return false;
659 }
660
662 {
664 {
665 ereport(elevel,
667 errmsg("background worker \"%s\": cannot request database access if starting at postmaster start",
668 worker->bgw_name)));
669 return false;
670 }
671
672 /* XXX other checks? */
673 }
674
675 /* Interruptible workers require a database connection */
676 if ((worker->bgw_flags & BGWORKER_INTERRUPTIBLE) &&
678 {
679 ereport(elevel,
681 errmsg("background worker \"%s\": cannot make background workers interruptible without database access",
682 worker->bgw_name)));
683 return false;
684 }
685
686 if ((worker->bgw_restart_time < 0 &&
688 (worker->bgw_restart_time > USECS_PER_DAY / 1000))
689 {
690 ereport(elevel,
692 errmsg("background worker \"%s\": invalid restart interval",
693 worker->bgw_name)));
694 return false;
695 }
696
697 /*
698 * Parallel workers may not be configured for restart, because the
699 * parallel_register_count/parallel_terminate_count accounting can't
700 * handle parallel workers lasting through a crash-and-restart cycle.
701 */
702 if (worker->bgw_restart_time != BGW_NEVER_RESTART &&
703 (worker->bgw_flags & BGWORKER_CLASS_PARALLEL) != 0)
704 {
705 ereport(elevel,
707 errmsg("background worker \"%s\": parallel workers may not be configured for restart",
708 worker->bgw_name)));
709 return false;
710 }
711
712 /*
713 * If bgw_type is not filled in, use bgw_name.
714 */
715 if (strcmp(worker->bgw_type, "") == 0)
716 strcpy(worker->bgw_type, worker->bgw_name);
717
718 return true;
719}
#define BGWORKER_INTERRUPTIBLE
Definition bgworker.h:67
@ BgWorkerStart_PostmasterStart
Definition bgworker.h:86
#define BGWORKER_SHMEM_ACCESS
Definition bgworker.h:53
#define USECS_PER_DAY
Definition timestamp.h:131

References BackgroundWorker::bgw_flags, BackgroundWorker::bgw_name, BGW_NEVER_RESTART, BackgroundWorker::bgw_restart_time, BackgroundWorker::bgw_start_time, BackgroundWorker::bgw_type, BGWORKER_BACKEND_DATABASE_CONNECTION, BGWORKER_CLASS_PARALLEL, BGWORKER_INTERRUPTIBLE, BGWORKER_SHMEM_ACCESS, BgWorkerStart_PostmasterStart, ereport, errcode(), errmsg(), fb(), and USECS_PER_DAY.

Referenced by RegisterBackgroundWorker(), and RegisterDynamicBackgroundWorker().

◆ TerminateBackgroundWorker()

void TerminateBackgroundWorker ( BackgroundWorkerHandle handle)

Definition at line 1303 of file bgworker.c.

1304{
1306 bool signal_postmaster = false;
1307
1308 Assert(handle->slot < max_worker_processes);
1309 slot = &BackgroundWorkerData->slot[handle->slot];
1310
1311 /* Set terminate flag in shared memory, unless slot has been reused. */
1313 if (handle->generation == slot->generation)
1314 {
1315 slot->terminate = true;
1316 signal_postmaster = true;
1317 }
1319
1320 /* Make sure the postmaster notices the change to shared memory. */
1323}

References Assert, BackgroundWorkerData, fb(), BackgroundWorkerSlot::generation, BackgroundWorkerHandle::generation, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), max_worker_processes, PMSIGNAL_BACKGROUND_WORKER_CHANGE, SendPostmasterSignal(), BackgroundWorkerArray::slot, BackgroundWorkerHandle::slot, and BackgroundWorkerSlot::terminate.

Referenced by cleanup_background_workers(), and DestroyParallelContext().

◆ TerminateBackgroundWorkersForDatabase()

void TerminateBackgroundWorkersForDatabase ( Oid  databaseId)

Definition at line 1411 of file bgworker.c.

1412{
1413 bool signal_postmaster = false;
1414
1416
1417 /*
1418 * Iterate through slots, looking for workers connected to the given
1419 * database.
1420 */
1422 {
1424
1425 if (slot->in_use &&
1427 {
1428 PGPROC *proc = BackendPidGetProc(slot->pid);
1429
1430 if (proc && proc->databaseId == databaseId)
1431 {
1432 slot->terminate = true;
1433 signal_postmaster = true;
1434 }
1435 }
1436 }
1437
1439
1440 /* Make sure the postmaster notices the change to shared memory. */
1443}
PGPROC * BackendPidGetProc(int pid)
Definition procarray.c:3160
Definition proc.h:180
Oid databaseId
Definition proc.h:225

References BackendPidGetProc(), BackgroundWorkerData, BackgroundWorker::bgw_flags, BGWORKER_INTERRUPTIBLE, PGPROC::databaseId, fb(), BackgroundWorkerSlot::in_use, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), BackgroundWorkerSlot::pid, PMSIGNAL_BACKGROUND_WORKER_CHANGE, SendPostmasterSignal(), BackgroundWorkerArray::slot, BackgroundWorkerSlot::terminate, BackgroundWorkerArray::total_slots, and BackgroundWorkerSlot::worker.

Referenced by CountOtherDBBackends().

◆ WaitForBackgroundWorkerShutdown()

BgwHandleStatus WaitForBackgroundWorkerShutdown ( BackgroundWorkerHandle handle)

Definition at line 1264 of file bgworker.c.

1265{
1266 BgwHandleStatus status;
1267 int rc;
1268
1269 for (;;)
1270 {
1271 pid_t pid;
1272
1274
1275 status = GetBackgroundWorkerPid(handle, &pid);
1276 if (status == BGWH_STOPPED)
1277 break;
1278
1279 rc = WaitLatch(MyLatch,
1282
1283 if (rc & WL_POSTMASTER_DEATH)
1284 {
1285 status = BGWH_POSTMASTER_DIED;
1286 break;
1287 }
1288
1290 }
1291
1292 return status;
1293}
BgwHandleStatus GetBackgroundWorkerPid(BackgroundWorkerHandle *handle, pid_t *pidp)
Definition bgworker.c:1164
BgwHandleStatus
Definition bgworker.h:111
@ BGWH_POSTMASTER_DIED
Definition bgworker.h:115
struct Latch * MyLatch
Definition globals.c:63
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
#define WL_LATCH_SET
#define WL_POSTMASTER_DEATH

References BGWH_POSTMASTER_DIED, BGWH_STOPPED, CHECK_FOR_INTERRUPTS, fb(), GetBackgroundWorkerPid(), MyLatch, ResetLatch(), WaitLatch(), WL_LATCH_SET, and WL_POSTMASTER_DEATH.

Referenced by apw_start_database_worker(), and WaitForParallelWorkersToExit().

◆ WaitForBackgroundWorkerStartup()

BgwHandleStatus WaitForBackgroundWorkerStartup ( BackgroundWorkerHandle handle,
pid_t pidp 
)

Definition at line 1219 of file bgworker.c.

1220{
1221 BgwHandleStatus status;
1222 int rc;
1223
1224 for (;;)
1225 {
1226 pid_t pid;
1227
1229
1230 status = GetBackgroundWorkerPid(handle, &pid);
1231 if (status == BGWH_STARTED)
1232 *pidp = pid;
1233 if (status != BGWH_NOT_YET_STARTED)
1234 break;
1235
1236 rc = WaitLatch(MyLatch,
1239
1240 if (rc & WL_POSTMASTER_DEATH)
1241 {
1242 status = BGWH_POSTMASTER_DIED;
1243 break;
1244 }
1245
1247 }
1248
1249 return status;
1250}

References BGWH_NOT_YET_STARTED, BGWH_POSTMASTER_DIED, BGWH_STARTED, CHECK_FOR_INTERRUPTS, fb(), GetBackgroundWorkerPid(), MyLatch, ResetLatch(), WaitLatch(), WL_LATCH_SET, and WL_POSTMASTER_DEATH.

Referenced by apw_start_leader_worker(), and worker_spi_launch().

Variable Documentation

◆ BackgroundWorkerData

◆ BackgroundWorkerList

◆ fn_addr

Definition at line 118 of file bgworker.c.

Referenced by LookupBackgroundWorkerFunction().

◆ fn_name

const char* fn_name

Definition at line 117 of file bgworker.c.

Referenced by LookupBackgroundWorkerFunction().

◆ [struct]

const struct { ... } InternalBGWorkers[]
Initial value:
=
{
{
.fn_name = "ParallelWorkerMain",
.fn_addr = ParallelWorkerMain
},
{
.fn_name = "ApplyLauncherMain",
.fn_addr = ApplyLauncherMain
},
{
.fn_name = "ApplyWorkerMain",
.fn_addr = ApplyWorkerMain
},
{
.fn_name = "ParallelApplyWorkerMain",
},
{
.fn_name = "TableSyncWorkerMain",
},
{
.fn_name = "SequenceSyncWorkerMain",
}
}
void ParallelApplyWorkerMain(Datum main_arg)
void ParallelWorkerMain(Datum main_arg)
Definition parallel.c:1299
void ApplyWorkerMain(Datum main_arg)
Definition worker.c:5924
void ApplyLauncherMain(Datum main_arg)
Definition launcher.c:1204
void SequenceSyncWorkerMain(Datum main_arg)
void TableSyncWorkerMain(Datum main_arg)
Definition tablesync.c:1576

Referenced by LookupBackgroundWorkerFunction().