PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
pmchild.c File Reference
#include "postgres.h"
#include "miscadmin.h"
#include "postmaster/autovacuum.h"
#include "postmaster/postmaster.h"
#include "replication/walsender.h"
#include "storage/pmsignal.h"
#include "storage/proc.h"
Include dependency graph for pmchild.c:

Go to the source code of this file.

Data Structures

struct  PMChildPool
 

Typedefs

typedef struct PMChildPool PMChildPool
 

Functions

int MaxLivePostmasterChildren (void)
 
void InitPostmasterChildSlots (void)
 
PMChildAssignPostmasterChildSlot (BackendType btype)
 
PMChildAllocDeadEndChild (void)
 
bool ReleasePostmasterChildSlot (PMChild *pmchild)
 
PMChildFindPostmasterChildByPid (int pid)
 

Variables

static PMChildPool pmchild_pools [BACKEND_NUM_TYPES]
 
NON_EXEC_STATIC int num_pmchild_slots = 0
 
dlist_head ActiveChildList
 

Typedef Documentation

◆ PMChildPool

typedef struct PMChildPool PMChildPool

Function Documentation

◆ AllocDeadEndChild()

PMChild * AllocDeadEndChild ( void  )

Definition at line 208 of file pmchild.c.

209{
210 PMChild *pmchild;
211
212 elog(DEBUG2, "allocating dead-end child");
213
214 pmchild = (PMChild *) palloc_extended(sizeof(PMChild), MCXT_ALLOC_NO_OOM);
215 if (pmchild)
216 {
217 pmchild->pid = 0;
218 pmchild->child_slot = 0;
220 pmchild->rw = NULL;
221 pmchild->bgworker_notify = false;
222
224 }
225
226 return pmchild;
227}
#define DEBUG2
Definition: elog.h:29
#define elog(elevel,...)
Definition: elog.h:226
#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 * palloc_extended(Size size, int flags)
Definition: mcxt.c:1991
@ B_DEAD_END_BACKEND
Definition: miscadmin.h:343
dlist_head ActiveChildList
Definition: pmchild.c:60
struct RegisteredBgWorker * rw
Definition: postmaster.h:45
bool bgworker_notify
Definition: postmaster.h:46
BackendType bkend_type
Definition: postmaster.h:44
dlist_node elem
Definition: postmaster.h:47
pid_t pid
Definition: postmaster.h:42
int child_slot
Definition: postmaster.h:43

References ActiveChildList, B_DEAD_END_BACKEND, PMChild::bgworker_notify, PMChild::bkend_type, PMChild::child_slot, DEBUG2, dlist_push_head(), PMChild::elem, elog, MCXT_ALLOC_NO_OOM, palloc_extended(), PMChild::pid, and PMChild::rw.

Referenced by BackendStartup().

◆ AssignPostmasterChildSlot()

PMChild * AssignPostmasterChildSlot ( BackendType  btype)

Definition at line 162 of file pmchild.c.

163{
164 dlist_head *freelist;
165 PMChild *pmchild;
166
167 if (pmchild_pools[btype].size == 0)
168 elog(ERROR, "cannot allocate a PMChild slot for backend type %d", btype);
169
170 freelist = &pmchild_pools[btype].freelist;
171 if (dlist_is_empty(freelist))
172 return NULL;
173
174 pmchild = dlist_container(PMChild, elem, dlist_pop_head_node(freelist));
175 pmchild->pid = 0;
176 pmchild->bkend_type = btype;
177 pmchild->rw = NULL;
178 pmchild->bgworker_notify = true;
179
180 /*
181 * pmchild->child_slot for each entry was initialized when the array of
182 * slots was allocated. Sanity check it.
183 */
184 if (!(pmchild->child_slot >= pmchild_pools[btype].first_slotno &&
185 pmchild->child_slot < pmchild_pools[btype].first_slotno + pmchild_pools[btype].size))
186 {
187 elog(ERROR, "pmchild freelist for backend type %d is corrupt",
188 pmchild->bkend_type);
189 }
190
192
193 /* Update the status in the shared memory array */
195
196 elog(DEBUG2, "assigned pm child slot %d for %s",
197 pmchild->child_slot, PostmasterChildName(btype));
198
199 return pmchild;
200}
#define ERROR
Definition: elog.h:39
static dlist_node * dlist_pop_head_node(dlist_head *head)
Definition: ilist.h:450
static bool dlist_is_empty(const dlist_head *head)
Definition: ilist.h:336
#define dlist_container(type, membername, ptr)
Definition: ilist.h:593
const char * PostmasterChildName(BackendType child_type)
static PMChildPool pmchild_pools[BACKEND_NUM_TYPES]
Definition: pmchild.c:54
void MarkPostmasterChildSlotAssigned(int slot)
Definition: pmsignal.c:230
int first_slotno
Definition: pmchild.c:50
int size
Definition: pmchild.c:48
dlist_head freelist
Definition: pmchild.c:51

References ActiveChildList, PMChild::bgworker_notify, PMChild::bkend_type, PMChild::child_slot, DEBUG2, dlist_container, dlist_is_empty(), dlist_pop_head_node(), dlist_push_head(), PMChild::elem, elog, ERROR, PMChildPool::first_slotno, PMChildPool::freelist, MarkPostmasterChildSlotAssigned(), PMChild::pid, pmchild_pools, PostmasterChildName(), PMChild::rw, and PMChildPool::size.

Referenced by BackendStartup(), StartBackgroundWorker(), StartChildProcess(), and StartSysLogger().

◆ FindPostmasterChildByPid()

PMChild * FindPostmasterChildByPid ( int  pid)

Definition at line 274 of file pmchild.c.

275{
276 dlist_iter iter;
277
279 {
280 PMChild *bp = dlist_container(PMChild, elem, iter.cur);
281
282 if (bp->pid == pid)
283 return bp;
284 }
285 return NULL;
286}
#define dlist_foreach(iter, lhead)
Definition: ilist.h:623
dlist_node * cur
Definition: ilist.h:179

References ActiveChildList, dlist_iter::cur, dlist_container, dlist_foreach, and PMChild::pid.

Referenced by process_pm_child_exit().

◆ InitPostmasterChildSlots()

void InitPostmasterChildSlots ( void  )

Definition at line 86 of file pmchild.c.

87{
88 int slotno;
89 PMChild *slots;
90
91 /*
92 * We allow more connections here than we can have backends because some
93 * might still be authenticating; they might fail auth, or some existing
94 * backend might exit before the auth cycle is completed. The exact
95 * MaxConnections limit is enforced when a new backend tries to join the
96 * PGPROC array.
97 *
98 * WAL senders start out as regular backends, so they share the same pool.
99 */
101
105
106 /*
107 * There can be only one of each of these running at a time. They each
108 * get their own pool of just one entry.
109 */
120
121 /* The rest of the pmchild_pools are left at zero size */
122
123 /* Count the total number of slots */
125 for (int i = 0; i < BACKEND_NUM_TYPES; i++)
127
128 /* Initialize them */
129 slots = palloc(num_pmchild_slots * sizeof(PMChild));
130 slotno = 0;
131 for (int btype = 0; btype < BACKEND_NUM_TYPES; btype++)
132 {
133 pmchild_pools[btype].first_slotno = slotno + 1;
134 dlist_init(&pmchild_pools[btype].freelist);
135
136 for (int j = 0; j < pmchild_pools[btype].size; j++)
137 {
138 slots[slotno].pid = 0;
139 slots[slotno].child_slot = slotno + 1;
140 slots[slotno].bkend_type = B_INVALID;
141 slots[slotno].rw = NULL;
142 slots[slotno].bgworker_notify = false;
143 dlist_push_tail(&pmchild_pools[btype].freelist, &slots[slotno].elem);
144 slotno++;
145 }
146 }
147 Assert(slotno == num_pmchild_slots);
148
149 /* Initialize other structures */
151}
int autovacuum_worker_slots
Definition: autovacuum.c:119
int MaxConnections
Definition: globals.c:144
int max_worker_processes
Definition: globals.c:145
Assert(PointerIsAligned(start, uint64))
static void dlist_init(dlist_head *head)
Definition: ilist.h:314
static void dlist_push_tail(dlist_head *head, dlist_node *node)
Definition: ilist.h:364
int j
Definition: isn.c:78
int i
Definition: isn.c:77
void * palloc(Size size)
Definition: mcxt.c:1939
#define BACKEND_NUM_TYPES
Definition: miscadmin.h:377
@ B_WAL_SUMMARIZER
Definition: miscadmin.h:367
@ B_WAL_WRITER
Definition: miscadmin.h:368
@ B_WAL_RECEIVER
Definition: miscadmin.h:366
@ B_CHECKPOINTER
Definition: miscadmin.h:363
@ B_IO_WORKER
Definition: miscadmin.h:364
@ B_LOGGER
Definition: miscadmin.h:374
@ B_STARTUP
Definition: miscadmin.h:365
@ B_BG_WORKER
Definition: miscadmin.h:346
@ B_INVALID
Definition: miscadmin.h:339
@ B_BG_WRITER
Definition: miscadmin.h:362
@ B_BACKEND
Definition: miscadmin.h:342
@ B_ARCHIVER
Definition: miscadmin.h:361
@ B_AUTOVAC_LAUNCHER
Definition: miscadmin.h:344
@ B_SLOTSYNC_WORKER
Definition: miscadmin.h:348
@ B_AUTOVAC_WORKER
Definition: miscadmin.h:345
NON_EXEC_STATIC int num_pmchild_slots
Definition: pmchild.c:55
#define MAX_IO_WORKERS
Definition: proc.h:446
int max_wal_senders
Definition: walsender.c:126

References ActiveChildList, Assert(), autovacuum_worker_slots, B_ARCHIVER, B_AUTOVAC_LAUNCHER, B_AUTOVAC_WORKER, B_BACKEND, B_BG_WORKER, B_BG_WRITER, B_CHECKPOINTER, B_INVALID, B_IO_WORKER, B_LOGGER, B_SLOTSYNC_WORKER, B_STARTUP, B_WAL_RECEIVER, B_WAL_SUMMARIZER, B_WAL_WRITER, BACKEND_NUM_TYPES, PMChild::bgworker_notify, PMChild::bkend_type, PMChild::child_slot, dlist_init(), dlist_push_tail(), PMChildPool::first_slotno, i, j, MAX_IO_WORKERS, max_wal_senders, max_worker_processes, MaxConnections, num_pmchild_slots, palloc(), PMChild::pid, pmchild_pools, PMChild::rw, and PMChildPool::size.

Referenced by BootstrapModeMain(), PostgresSingleUserMain(), and PostmasterMain().

◆ MaxLivePostmasterChildren()

int MaxLivePostmasterChildren ( void  )

Definition at line 70 of file pmchild.c.

71{
72 if (num_pmchild_slots == 0)
73 elog(ERROR, "PM child array not initialized yet");
74 return num_pmchild_slots;
75}

References elog, ERROR, and num_pmchild_slots.

Referenced by PMSignalShmemInit(), and PMSignalShmemSize().

◆ ReleasePostmasterChildSlot()

bool ReleasePostmasterChildSlot ( PMChild pmchild)

Definition at line 236 of file pmchild.c.

237{
238 dlist_delete(&pmchild->elem);
239 if (pmchild->bkend_type == B_DEAD_END_BACKEND)
240 {
241 elog(DEBUG2, "releasing dead-end backend");
242 pfree(pmchild);
243 return true;
244 }
245 else
246 {
247 PMChildPool *pool;
248
249 elog(DEBUG2, "releasing pm child slot %d", pmchild->child_slot);
250
251 /* WAL senders start out as regular backends, and share the pool */
252 if (pmchild->bkend_type == B_WAL_SENDER)
253 pool = &pmchild_pools[B_BACKEND];
254 else
255 pool = &pmchild_pools[pmchild->bkend_type];
256
257 /* sanity check that we return the entry to the right pool */
258 if (!(pmchild->child_slot >= pool->first_slotno &&
259 pmchild->child_slot < pool->first_slotno + pool->size))
260 {
261 elog(ERROR, "pmchild freelist for backend type %d is corrupt",
262 pmchild->bkend_type);
263 }
264
265 dlist_push_head(&pool->freelist, &pmchild->elem);
267 }
268}
static void dlist_delete(dlist_node *node)
Definition: ilist.h:405
void pfree(void *pointer)
Definition: mcxt.c:2146
@ B_WAL_SENDER
Definition: miscadmin.h:347
bool MarkPostmasterChildSlotUnassigned(int slot)
Definition: pmsignal.c:249

References B_BACKEND, B_DEAD_END_BACKEND, B_WAL_SENDER, PMChild::bkend_type, PMChild::child_slot, DEBUG2, dlist_delete(), dlist_push_head(), PMChild::elem, elog, ERROR, PMChildPool::first_slotno, PMChildPool::freelist, MarkPostmasterChildSlotUnassigned(), pfree(), pmchild_pools, and PMChildPool::size.

Referenced by BackendStartup(), CleanupBackend(), maybe_reap_io_worker(), process_pm_child_exit(), StartBackgroundWorker(), StartChildProcess(), and StartSysLogger().

Variable Documentation

◆ ActiveChildList

◆ num_pmchild_slots

NON_EXEC_STATIC int num_pmchild_slots = 0

Definition at line 55 of file pmchild.c.

Referenced by InitPostmasterChildSlots(), and MaxLivePostmasterChildren().

◆ pmchild_pools