PostgreSQL Source Code git master
miscadmin.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * miscadmin.h
4 * This file contains general postgres administration and initialization
5 * stuff that used to be spread out between the following files:
6 * globals.h global variables
7 * pdir.h directory path crud
8 * pinit.h postgres initialization
9 * pmod.h processing modes
10 * Over time, this has also become the preferred place for widely known
11 * resource-limitation stuff, such as work_mem and check_stack_depth().
12 *
13 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
14 * Portions Copyright (c) 1994, Regents of the University of California
15 *
16 * src/include/miscadmin.h
17 *
18 * NOTES
19 * some of the information in this file should be moved to other files.
20 *
21 *-------------------------------------------------------------------------
22 */
23#ifndef MISCADMIN_H
24#define MISCADMIN_H
25
26#include <signal.h>
27
28#include "datatype/timestamp.h" /* for TimestampTz */
29#include "pgtime.h" /* for pg_time_t */
30
31
32#define InvalidPid (-1)
33
34
35/*****************************************************************************
36 * System interrupt and critical section handling
37 *
38 * There are two types of interrupts that a running backend needs to accept
39 * without messing up its state: QueryCancel (SIGINT) and ProcDie (SIGTERM).
40 * In both cases, we need to be able to clean up the current transaction
41 * gracefully, so we can't respond to the interrupt instantaneously ---
42 * there's no guarantee that internal data structures would be self-consistent
43 * if the code is interrupted at an arbitrary instant. Instead, the signal
44 * handlers set flags that are checked periodically during execution.
45 *
46 * The CHECK_FOR_INTERRUPTS() macro is called at strategically located spots
47 * where it is normally safe to accept a cancel or die interrupt. In some
48 * cases, we invoke CHECK_FOR_INTERRUPTS() inside low-level subroutines that
49 * might sometimes be called in contexts that do *not* want to allow a cancel
50 * or die interrupt. The HOLD_INTERRUPTS() and RESUME_INTERRUPTS() macros
51 * allow code to ensure that no cancel or die interrupt will be accepted,
52 * even if CHECK_FOR_INTERRUPTS() gets called in a subroutine. The interrupt
53 * will be held off until CHECK_FOR_INTERRUPTS() is done outside any
54 * HOLD_INTERRUPTS() ... RESUME_INTERRUPTS() section.
55 *
56 * There is also a mechanism to prevent query cancel interrupts, while still
57 * allowing die interrupts: HOLD_CANCEL_INTERRUPTS() and
58 * RESUME_CANCEL_INTERRUPTS().
59 *
60 * Note that ProcessInterrupts() has also acquired a number of tasks that
61 * do not necessarily cause a query-cancel-or-die response. Hence, it's
62 * possible that it will just clear InterruptPending and return.
63 *
64 * INTERRUPTS_PENDING_CONDITION() can be checked to see whether an
65 * interrupt needs to be serviced, without trying to do so immediately.
66 * Some callers are also interested in INTERRUPTS_CAN_BE_PROCESSED(),
67 * which tells whether ProcessInterrupts is sure to clear the interrupt.
68 *
69 * Special mechanisms are used to let an interrupt be accepted when we are
70 * waiting for a lock or when we are waiting for command input (but, of
71 * course, only if the interrupt holdoff counter is zero). See the
72 * related code for details.
73 *
74 * A lost connection is handled similarly, although the loss of connection
75 * does not raise a signal, but is detected when we fail to write to the
76 * socket. If there was a signal for a broken connection, we could make use of
77 * it by setting ClientConnectionLost in the signal handler.
78 *
79 * A related, but conceptually distinct, mechanism is the "critical section"
80 * mechanism. A critical section not only holds off cancel/die interrupts,
81 * but causes any ereport(ERROR) or ereport(FATAL) to become ereport(PANIC)
82 * --- that is, a system-wide reset is forced. Needless to say, only really
83 * *critical* code should be marked as a critical section! Currently, this
84 * mechanism is only used for XLOG-related code.
85 *
86 *****************************************************************************/
87
88/* in globals.c */
89/* these are marked volatile because they are set by signal handlers: */
90extern PGDLLIMPORT volatile sig_atomic_t InterruptPending;
91extern PGDLLIMPORT volatile sig_atomic_t QueryCancelPending;
92extern PGDLLIMPORT volatile sig_atomic_t ProcDiePending;
93extern PGDLLIMPORT volatile sig_atomic_t IdleInTransactionSessionTimeoutPending;
94extern PGDLLIMPORT volatile sig_atomic_t TransactionTimeoutPending;
95extern PGDLLIMPORT volatile sig_atomic_t IdleSessionTimeoutPending;
96extern PGDLLIMPORT volatile sig_atomic_t ProcSignalBarrierPending;
97extern PGDLLIMPORT volatile sig_atomic_t LogMemoryContextPending;
98extern PGDLLIMPORT volatile sig_atomic_t IdleStatsUpdateTimeoutPending;
99
100extern PGDLLIMPORT volatile sig_atomic_t CheckClientConnectionPending;
101extern PGDLLIMPORT volatile sig_atomic_t ClientConnectionLost;
102
103/* these are marked volatile because they are examined by signal handlers: */
106extern PGDLLIMPORT volatile uint32 CritSectionCount;
107
108/* in tcop/postgres.c */
109extern void ProcessInterrupts(void);
110
111/* Test whether an interrupt is pending */
112#ifndef WIN32
113#define INTERRUPTS_PENDING_CONDITION() \
114 (unlikely(InterruptPending))
115#else
116#define INTERRUPTS_PENDING_CONDITION() \
117 (unlikely(UNBLOCKED_SIGNAL_QUEUE()) ? pgwin32_dispatch_queued_signals() : 0, \
118 unlikely(InterruptPending))
119#endif
120
121/* Service interrupt, if one is pending and it's safe to service it now */
122#define CHECK_FOR_INTERRUPTS() \
123do { \
124 if (INTERRUPTS_PENDING_CONDITION()) \
125 ProcessInterrupts(); \
126} while(0)
127
128/* Is ProcessInterrupts() guaranteed to clear InterruptPending? */
129#define INTERRUPTS_CAN_BE_PROCESSED() \
130 (InterruptHoldoffCount == 0 && CritSectionCount == 0 && \
131 QueryCancelHoldoffCount == 0)
132
133#define HOLD_INTERRUPTS() (InterruptHoldoffCount++)
134
135#define RESUME_INTERRUPTS() \
136do { \
137 Assert(InterruptHoldoffCount > 0); \
138 InterruptHoldoffCount--; \
139} while(0)
140
141#define HOLD_CANCEL_INTERRUPTS() (QueryCancelHoldoffCount++)
142
143#define RESUME_CANCEL_INTERRUPTS() \
144do { \
145 Assert(QueryCancelHoldoffCount > 0); \
146 QueryCancelHoldoffCount--; \
147} while(0)
148
149#define START_CRIT_SECTION() (CritSectionCount++)
150
151#define END_CRIT_SECTION() \
152do { \
153 Assert(CritSectionCount > 0); \
154 CritSectionCount--; \
155} while(0)
156
157
158/*****************************************************************************
159 * globals.h -- *
160 *****************************************************************************/
161
162/*
163 * from utils/init/globals.c
164 */
165extern PGDLLIMPORT pid_t PostmasterPid;
168extern PGDLLIMPORT bool IsBinaryUpgrade;
169
170extern PGDLLIMPORT bool ExitOnAnyError;
171
172extern PGDLLIMPORT char *DataDir;
174
175extern PGDLLIMPORT int NBuffers;
176extern PGDLLIMPORT int MaxBackends;
177extern PGDLLIMPORT int MaxConnections;
180
184extern PGDLLIMPORT int notify_buffers;
188
189extern PGDLLIMPORT int MyProcPid;
192extern PGDLLIMPORT struct Port *MyProcPort;
193extern PGDLLIMPORT struct Latch *MyLatch;
194extern PGDLLIMPORT bool MyCancelKeyValid;
196extern PGDLLIMPORT int MyPMChildSlot;
197
198extern PGDLLIMPORT char OutputFileName[];
199extern PGDLLIMPORT char my_exec_path[];
200extern PGDLLIMPORT char pkglib_path[];
201
202#ifdef EXEC_BACKEND
203extern PGDLLIMPORT char postgres_exec_path[];
204#endif
205
207
209
211
212/*
213 * Date/Time Configuration
214 *
215 * DateStyle defines the output formatting choice for date/time types:
216 * USE_POSTGRES_DATES specifies traditional Postgres format
217 * USE_ISO_DATES specifies ISO-compliant format
218 * USE_SQL_DATES specifies Oracle/Ingres-compliant format
219 * USE_GERMAN_DATES specifies German-style dd.mm/yyyy
220 *
221 * DateOrder defines the field order to be assumed when reading an
222 * ambiguous date (anything not in YYYY-MM-DD format, with a four-digit
223 * year field first, is taken to be ambiguous):
224 * DATEORDER_YMD specifies field order yy-mm-dd
225 * DATEORDER_DMY specifies field order dd-mm-yy ("European" convention)
226 * DATEORDER_MDY specifies field order mm-dd-yy ("US" convention)
227 *
228 * In the Postgres and SQL DateStyles, DateOrder also selects output field
229 * order: day comes before month in DMY style, else month comes before day.
230 *
231 * The user-visible "DateStyle" run-time parameter subsumes both of these.
232 */
233
234/* valid DateStyle values */
235#define USE_POSTGRES_DATES 0
236#define USE_ISO_DATES 1
237#define USE_SQL_DATES 2
238#define USE_GERMAN_DATES 3
239#define USE_XSD_DATES 4
240
241/* valid DateOrder values */
242#define DATEORDER_YMD 0
243#define DATEORDER_DMY 1
244#define DATEORDER_MDY 2
245
246extern PGDLLIMPORT int DateStyle;
247extern PGDLLIMPORT int DateOrder;
248
249/*
250 * IntervalStyles
251 * INTSTYLE_POSTGRES Like Postgres < 8.4 when DateStyle = 'iso'
252 * INTSTYLE_POSTGRES_VERBOSE Like Postgres < 8.4 when DateStyle != 'iso'
253 * INTSTYLE_SQL_STANDARD SQL standard interval literals
254 * INTSTYLE_ISO_8601 ISO-8601-basic formatted intervals
255 */
256#define INTSTYLE_POSTGRES 0
257#define INTSTYLE_POSTGRES_VERBOSE 1
258#define INTSTYLE_SQL_STANDARD 2
259#define INTSTYLE_ISO_8601 3
260
261extern PGDLLIMPORT int IntervalStyle;
262
263#define MAXTZLEN 10 /* max TZ name len, not counting tr. null */
264
265extern PGDLLIMPORT bool enableFsync;
267extern PGDLLIMPORT int work_mem;
268extern PGDLLIMPORT double hash_mem_multiplier;
271
272/*
273 * Upper and lower hard limits for the buffer access strategy ring size
274 * specified by the VacuumBufferUsageLimit GUC and BUFFER_USAGE_LIMIT option
275 * to VACUUM and ANALYZE.
276 */
277#define MIN_BAS_VAC_RING_SIZE_KB 128
278#define MAX_BAS_VAC_RING_SIZE_KB (16 * 1024 * 1024)
279
285extern PGDLLIMPORT double VacuumCostDelay;
286
288extern PGDLLIMPORT bool VacuumCostActive;
289
290
291/* in utils/misc/stack_depth.c */
292
294
295/* Required daylight between max_stack_depth and the kernel limit, in bytes */
296#define STACK_DEPTH_SLOP (512 * 1024)
297
298typedef char *pg_stack_base_t;
299
301extern void restore_stack_base(pg_stack_base_t base);
302extern void check_stack_depth(void);
303extern bool stack_is_too_deep(void);
304extern ssize_t get_stack_depth_rlimit(void);
305
306/* in tcop/utility.c */
307extern void PreventCommandIfReadOnly(const char *cmdname);
308extern void PreventCommandIfParallelMode(const char *cmdname);
309extern void PreventCommandDuringRecovery(const char *cmdname);
310
311/*****************************************************************************
312 * pdir.h -- *
313 * POSTGRES directory path definitions. *
314 *****************************************************************************/
315
316/* flags to be OR'd to form sec_context */
317#define SECURITY_LOCAL_USERID_CHANGE 0x0001
318#define SECURITY_RESTRICTED_OPERATION 0x0002
319#define SECURITY_NOFORCE_RLS 0x0004
320
321extern PGDLLIMPORT char *DatabasePath;
322
323/* now in utils/init/miscinit.c */
324extern void InitPostmasterChild(void);
325extern void InitStandaloneProcess(const char *argv0);
326extern void InitProcessLocalLatch(void);
327extern void SwitchToSharedLatch(void);
328extern void SwitchBackToLocalLatch(void);
329
330/*
331 * MyBackendType indicates what kind of a backend this is.
332 *
333 * If you add entries, please also update the child_process_kinds array in
334 * launch_backend.c.
335 */
336typedef enum BackendType
337{
339
340 /* Backends and other backend-like processes */
348
350
351 /*
352 * Auxiliary processes. These have PGPROC entries, but they are not
353 * attached to any particular database, and cannot run transactions or
354 * even take heavyweight locks. There can be only one of each of these
355 * running at a time.
356 *
357 * If you modify these, make sure to update NUM_AUXILIARY_PROCS and the
358 * glossary in the docs.
359 */
367
368 /*
369 * Logger is not connected to shared memory and does not have a PGPROC
370 * entry.
371 */
374
375#define BACKEND_NUM_TYPES (B_LOGGER + 1)
376
378
379#define AmRegularBackendProcess() (MyBackendType == B_BACKEND)
380#define AmAutoVacuumLauncherProcess() (MyBackendType == B_AUTOVAC_LAUNCHER)
381#define AmAutoVacuumWorkerProcess() (MyBackendType == B_AUTOVAC_WORKER)
382#define AmBackgroundWorkerProcess() (MyBackendType == B_BG_WORKER)
383#define AmWalSenderProcess() (MyBackendType == B_WAL_SENDER)
384#define AmLogicalSlotSyncWorkerProcess() (MyBackendType == B_SLOTSYNC_WORKER)
385#define AmArchiverProcess() (MyBackendType == B_ARCHIVER)
386#define AmBackgroundWriterProcess() (MyBackendType == B_BG_WRITER)
387#define AmCheckpointerProcess() (MyBackendType == B_CHECKPOINTER)
388#define AmStartupProcess() (MyBackendType == B_STARTUP)
389#define AmWalReceiverProcess() (MyBackendType == B_WAL_RECEIVER)
390#define AmWalSummarizerProcess() (MyBackendType == B_WAL_SUMMARIZER)
391#define AmWalWriterProcess() (MyBackendType == B_WAL_WRITER)
392
393#define AmSpecialWorkerProcess() \
394 (AmAutoVacuumLauncherProcess() || \
395 AmLogicalSlotSyncWorkerProcess())
396
397extern const char *GetBackendTypeDesc(BackendType backendType);
398
399extern void SetDatabasePath(const char *path);
400extern void checkDataDir(void);
401extern void SetDataDir(const char *dir);
402extern void ChangeToDataDir(void);
403
404extern char *GetUserNameFromId(Oid roleid, bool noerr);
405extern Oid GetUserId(void);
406extern Oid GetOuterUserId(void);
407extern Oid GetSessionUserId(void);
408extern bool GetSessionUserIsSuperuser(void);
409extern Oid GetAuthenticatedUserId(void);
410extern void SetAuthenticatedUserId(Oid userid);
411extern void GetUserIdAndSecContext(Oid *userid, int *sec_context);
412extern void SetUserIdAndSecContext(Oid userid, int sec_context);
413extern bool InLocalUserIdChange(void);
414extern bool InSecurityRestrictedOperation(void);
415extern bool InNoForceRLSOperation(void);
416extern void GetUserIdAndContext(Oid *userid, bool *sec_def_context);
417extern void SetUserIdAndContext(Oid userid, bool sec_def_context);
418extern void InitializeSessionUserId(const char *rolename, Oid roleid,
419 bool bypass_login_check);
420extern void InitializeSessionUserIdStandalone(void);
421extern void SetSessionAuthorization(Oid userid, bool is_superuser);
422extern Oid GetCurrentRoleId(void);
423extern void SetCurrentRoleId(Oid roleid, bool is_superuser);
424extern void InitializeSystemUser(const char *authn_id,
425 const char *auth_method);
426extern const char *GetSystemUser(void);
427
428/* in utils/misc/superuser.c */
429extern bool superuser(void); /* current user is superuser */
430extern bool superuser_arg(Oid roleid); /* given user is superuser */
431
432
433/*****************************************************************************
434 * pmod.h -- *
435 * POSTGRES processing mode definitions. *
436 *****************************************************************************/
437
438/*
439 * Description:
440 * There are three processing modes in POSTGRES. They are
441 * BootstrapProcessing or "bootstrap," InitProcessing or
442 * "initialization," and NormalProcessing or "normal."
443 *
444 * The first two processing modes are used during special times. When the
445 * system state indicates bootstrap processing, transactions are all given
446 * transaction id "one" and are consequently guaranteed to commit. This mode
447 * is used during the initial generation of template databases.
448 *
449 * Initialization mode: used while starting a backend, until all normal
450 * initialization is complete. Some code behaves differently when executed
451 * in this mode to enable system bootstrapping.
452 *
453 * If a POSTGRES backend process is in normal mode, then all code may be
454 * executed normally.
455 */
456
457typedef enum ProcessingMode
458{
459 BootstrapProcessing, /* bootstrap creation of template database */
460 InitProcessing, /* initializing system */
461 NormalProcessing, /* normal processing */
463
465
466#define IsBootstrapProcessingMode() (Mode == BootstrapProcessing)
467#define IsInitProcessingMode() (Mode == InitProcessing)
468#define IsNormalProcessingMode() (Mode == NormalProcessing)
469
470#define GetProcessingMode() Mode
471
472#define SetProcessingMode(mode) \
473 do { \
474 Assert((mode) == BootstrapProcessing || \
475 (mode) == InitProcessing || \
476 (mode) == NormalProcessing); \
477 Mode = (mode); \
478 } while(0)
479
480
481/*****************************************************************************
482 * pinit.h -- *
483 * POSTGRES initialization and cleanup definitions. *
484 *****************************************************************************/
485
486/* in utils/init/postinit.c */
487/* flags for InitPostgres() */
488#define INIT_PG_LOAD_SESSION_LIBS 0x0001
489#define INIT_PG_OVERRIDE_ALLOW_CONNS 0x0002
490#define INIT_PG_OVERRIDE_ROLE_LOGIN 0x0004
491extern void pg_split_opts(char **argv, int *argcp, const char *optstr);
492extern void InitializeMaxBackends(void);
493extern void InitializeFastPathLocks(void);
494extern void InitPostgres(const char *in_dbname, Oid dboid,
495 const char *username, Oid useroid,
496 bits32 flags,
497 char *out_dbname);
498extern void BaseInit(void);
499
500/* in utils/init/miscinit.c */
508
509extern void CreateDataDirLockFile(bool amPostmaster);
510extern void CreateSocketLockFile(const char *socketfile, bool amPostmaster,
511 const char *socketDir);
512extern void TouchSocketLockFiles(void);
513extern void AddToDataDirLockFile(int target_line, const char *str);
514extern bool RecheckDataDirLockFile(void);
515extern void ValidatePgVersion(const char *path);
516extern void process_shared_preload_libraries(void);
517extern void process_session_preload_libraries(void);
518extern void process_shmem_requests(void);
519extern void pg_bindtextdomain(const char *domain);
520extern bool has_rolreplication(Oid roleid);
521
522typedef void (*shmem_request_hook_type) (void);
524
526extern void SerializeClientConnectionInfo(Size maxsize, char *start_address);
527extern void RestoreClientConnectionInfo(char *conninfo);
528
529/* in executor/nodeHash.c */
530extern size_t get_hash_memory_limit(void);
531
532#endif /* MISCADMIN_H */
#define PGDLLIMPORT
Definition: c.h:1277
uint32 bits32
Definition: c.h:497
int32_t int32
Definition: c.h:484
uint32_t uint32
Definition: c.h:488
size_t Size
Definition: c.h:562
int64 TimestampTz
Definition: timestamp.h:39
const char * str
static char * username
Definition: initdb.c:153
PGDLLIMPORT int IntervalStyle
Definition: globals.c:126
PGDLLIMPORT shmem_request_hook_type shmem_request_hook
Definition: miscinit.c:1837
PGDLLIMPORT double VacuumCostDelay
Definition: globals.c:154
void ChangeToDataDir(void)
Definition: miscinit.c:457
PGDLLIMPORT bool IsPostmasterEnvironment
Definition: globals.c:118
Oid GetOuterUserId(void)
Definition: miscinit.c:528
void process_shmem_requests(void)
Definition: miscinit.c:1927
PGDLLIMPORT struct Port * MyProcPort
Definition: globals.c:50
void restore_stack_base(pg_stack_base_t base)
Definition: stack_depth.c:77
void InitializeMaxBackends(void)
Definition: postinit.c:545
void PreventCommandIfReadOnly(const char *cmdname)
Definition: utility.c:404
PGDLLIMPORT volatile uint32 InterruptHoldoffCount
Definition: globals.c:42
ProcessingMode
Definition: miscadmin.h:458
@ NormalProcessing
Definition: miscadmin.h:461
@ InitProcessing
Definition: miscadmin.h:460
@ BootstrapProcessing
Definition: miscadmin.h:459
void pg_split_opts(char **argv, int *argcp, const char *optstr)
Definition: postinit.c:487
void InitializeSessionUserId(const char *rolename, Oid roleid, bool bypass_login_check)
Definition: miscinit.c:758
void InitStandaloneProcess(const char *argv0)
Definition: miscinit.c:175
void SerializeClientConnectionInfo(Size maxsize, char *start_address)
Definition: miscinit.c:1099
void PreventCommandIfParallelMode(const char *cmdname)
Definition: utility.c:422
PGDLLIMPORT int commit_timestamp_buffers
Definition: globals.c:160
PGDLLIMPORT bool IsUnderPostmaster
Definition: globals.c:119
void InitializeSystemUser(const char *authn_id, const char *auth_method)
Definition: miscinit.c:922
PGDLLIMPORT int VacuumCostBalance
Definition: globals.c:156
PGDLLIMPORT Oid MyDatabaseTableSpace
Definition: globals.c:95
void InitializeSessionUserIdStandalone(void)
Definition: miscinit.c:888
ssize_t get_stack_depth_rlimit(void)
Definition: stack_depth.c:176
void AddToDataDirLockFile(int target_line, const char *str)
Definition: miscinit.c:1567
void InitProcessLocalLatch(void)
Definition: miscinit.c:235
void BaseInit(void)
Definition: postinit.c:606
PGDLLIMPORT int maintenance_work_mem
Definition: globals.c:132
void GetUserIdAndSecContext(Oid *userid, int *sec_context)
Definition: miscinit.c:660
void SetSessionAuthorization(Oid userid, bool is_superuser)
Definition: miscinit.c:968
void process_session_preload_libraries(void)
Definition: miscinit.c:1913
PGDLLIMPORT bool enableFsync
Definition: globals.c:128
PGDLLIMPORT bool ExitOnAnyError
Definition: globals.c:122
PGDLLIMPORT volatile sig_atomic_t IdleInTransactionSessionTimeoutPending
Definition: globals.c:36
const char * GetSystemUser(void)
Definition: miscinit.c:583
bool InSecurityRestrictedOperation(void)
Definition: miscinit.c:687
PGDLLIMPORT char * shared_preload_libraries_string
Definition: miscinit.c:1830
Oid GetUserId(void)
Definition: miscinit.c:517
PGDLLIMPORT bool allowSystemTableMods
Definition: globals.c:129
bool GetSessionUserIsSuperuser(void)
Definition: miscinit.c:563
const char * GetBackendTypeDesc(BackendType backendType)
Definition: miscinit.c:263
PGDLLIMPORT bool IsBinaryUpgrade
Definition: globals.c:120
Size EstimateClientConnectionInfoSpace(void)
Definition: miscinit.c:1083
PGDLLIMPORT volatile sig_atomic_t LogMemoryContextPending
Definition: globals.c:40
PGDLLIMPORT int VacuumCostPageDirty
Definition: globals.c:152
PGDLLIMPORT int data_directory_mode
Definition: globals.c:76
Oid GetSessionUserId(void)
Definition: miscinit.c:556
void SetCurrentRoleId(Oid roleid, bool is_superuser)
Definition: miscinit.c:1004
PGDLLIMPORT bool VacuumCostActive
Definition: globals.c:157
PGDLLIMPORT int subtransaction_buffers
Definition: globals.c:165
PGDLLIMPORT volatile sig_atomic_t InterruptPending
Definition: globals.c:31
PGDLLIMPORT bool IgnoreSystemIndexes
Definition: miscinit.c:81
Oid GetAuthenticatedUserId(void)
Definition: miscinit.c:593
PGDLLIMPORT int VacuumCostLimit
Definition: globals.c:153
PGDLLIMPORT bool MyDatabaseHasLoginEventTriggers
Definition: globals.c:97
PGDLLIMPORT volatile sig_atomic_t ProcSignalBarrierPending
Definition: globals.c:39
PGDLLIMPORT int MaxConnections
Definition: globals.c:142
PGDLLIMPORT int NBuffers
Definition: globals.c:141
bool InLocalUserIdChange(void)
Definition: miscinit.c:678
PGDLLIMPORT int VacuumCostPageHit
Definition: globals.c:150
PGDLLIMPORT bool process_shmem_requests_in_progress
Definition: miscinit.c:1838
void SetDatabasePath(const char *path)
Definition: miscinit.c:331
void InitPostmasterChild(void)
Definition: miscinit.c:96
void process_shared_preload_libraries(void)
Definition: miscinit.c:1899
PGDLLIMPORT bool MyCancelKeyValid
Definition: globals.c:51
PGDLLIMPORT volatile sig_atomic_t IdleStatsUpdateTimeoutPending
Definition: globals.c:41
PGDLLIMPORT int notify_buffers
Definition: globals.c:163
PGDLLIMPORT bool process_shared_preload_libraries_in_progress
Definition: miscinit.c:1834
void InitializeFastPathLocks(void)
Definition: postinit.c:577
PGDLLIMPORT struct Latch * MyLatch
Definition: globals.c:62
PGDLLIMPORT TimestampTz MyStartTimestamp
Definition: globals.c:48
PGDLLIMPORT char * DatabasePath
Definition: globals.c:103
PGDLLIMPORT int MyPMChildSlot
Definition: globals.c:53
void TouchSocketLockFiles(void)
Definition: miscinit.c:1538
PGDLLIMPORT double hash_mem_multiplier
Definition: globals.c:131
size_t get_hash_memory_limit(void)
Definition: nodeHash.c:3487
PGDLLIMPORT int max_stack_depth
Definition: stack_depth.c:26
PGDLLIMPORT volatile sig_atomic_t ClientConnectionLost
Definition: globals.c:35
void RestoreClientConnectionInfo(char *conninfo)
Definition: miscinit.c:1131
PGDLLIMPORT int DateOrder
Definition: globals.c:125
PGDLLIMPORT int max_parallel_maintenance_workers
Definition: globals.c:133
PGDLLIMPORT char * local_preload_libraries_string
Definition: miscinit.c:1831
PGDLLIMPORT BackendType MyBackendType
Definition: miscinit.c:64
bool InNoForceRLSOperation(void)
Definition: miscinit.c:696
PGDLLIMPORT int serializable_buffers
Definition: globals.c:164
PGDLLIMPORT volatile sig_atomic_t QueryCancelPending
Definition: globals.c:32
bool superuser_arg(Oid roleid)
Definition: superuser.c:56
PGDLLIMPORT char * session_preload_libraries_string
Definition: miscinit.c:1829
PGDLLIMPORT int multixact_member_buffers
Definition: globals.c:161
void PreventCommandDuringRecovery(const char *cmdname)
Definition: utility.c:441
PGDLLIMPORT volatile sig_atomic_t CheckClientConnectionPending
Definition: globals.c:34
void InitPostgres(const char *in_dbname, Oid dboid, const char *username, Oid useroid, bits32 flags, char *out_dbname)
Definition: postinit.c:700
bool stack_is_too_deep(void)
Definition: stack_depth.c:109
PGDLLIMPORT pg_time_t MyStartTime
Definition: globals.c:47
PGDLLIMPORT volatile sig_atomic_t ProcDiePending
Definition: globals.c:33
void ProcessInterrupts(void)
Definition: postgres.c:3273
void SetAuthenticatedUserId(Oid userid)
Definition: miscinit.c:600
PGDLLIMPORT int VacuumBufferUsageLimit
Definition: globals.c:148
PGDLLIMPORT char pkglib_path[]
Definition: globals.c:81
PGDLLIMPORT char my_exec_path[]
Definition: globals.c:80
Oid GetCurrentRoleId(void)
Definition: miscinit.c:983
void checkDataDir(void)
Definition: miscinit.c:344
bool superuser(void)
Definition: superuser.c:46
PGDLLIMPORT pid_t PostmasterPid
Definition: globals.c:105
PGDLLIMPORT int32 MyCancelKey
Definition: globals.c:52
PGDLLIMPORT int VacuumCostPageMiss
Definition: globals.c:151
PGDLLIMPORT volatile uint32 QueryCancelHoldoffCount
Definition: globals.c:43
PGDLLIMPORT int work_mem
Definition: globals.c:130
void SwitchToSharedLatch(void)
Definition: miscinit.c:215
PGDLLIMPORT int multixact_offset_buffers
Definition: globals.c:162
PGDLLIMPORT int DateStyle
Definition: globals.c:124
void GetUserIdAndContext(Oid *userid, bool *sec_def_context)
Definition: miscinit.c:709
BackendType
Definition: miscadmin.h:337
@ B_WAL_SUMMARIZER
Definition: miscadmin.h:365
@ B_WAL_WRITER
Definition: miscadmin.h:366
@ B_WAL_RECEIVER
Definition: miscadmin.h:364
@ B_CHECKPOINTER
Definition: miscadmin.h:362
@ B_WAL_SENDER
Definition: miscadmin.h:346
@ B_LOGGER
Definition: miscadmin.h:372
@ B_STARTUP
Definition: miscadmin.h:363
@ B_BG_WORKER
Definition: miscadmin.h:345
@ B_INVALID
Definition: miscadmin.h:338
@ B_STANDALONE_BACKEND
Definition: miscadmin.h:349
@ B_BG_WRITER
Definition: miscadmin.h:361
@ B_BACKEND
Definition: miscadmin.h:341
@ B_ARCHIVER
Definition: miscadmin.h:360
@ B_AUTOVAC_LAUNCHER
Definition: miscadmin.h:343
@ B_SLOTSYNC_WORKER
Definition: miscadmin.h:347
@ B_DEAD_END_BACKEND
Definition: miscadmin.h:342
@ B_AUTOVAC_WORKER
Definition: miscadmin.h:344
void SetDataDir(const char *dir)
Definition: miscinit.c:437
PGDLLIMPORT volatile sig_atomic_t IdleSessionTimeoutPending
Definition: globals.c:38
PGDLLIMPORT Oid MyDatabaseId
Definition: globals.c:93
void SetUserIdAndContext(Oid userid, bool sec_def_context)
Definition: miscinit.c:716
PGDLLIMPORT char OutputFileName[]
Definition: globals.c:78
PGDLLIMPORT int transaction_buffers
Definition: globals.c:166
PGDLLIMPORT int max_worker_processes
Definition: globals.c:143
PGDLLIMPORT ProcessingMode Mode
Definition: miscinit.c:62
void(* shmem_request_hook_type)(void)
Definition: miscadmin.h:522
void pg_bindtextdomain(const char *domain)
Definition: miscinit.c:1936
bool has_rolreplication(Oid roleid)
Definition: miscinit.c:736
char * GetUserNameFromId(Oid roleid, bool noerr)
Definition: miscinit.c:1036
PGDLLIMPORT char * DataDir
Definition: globals.c:70
PGDLLIMPORT int MaxBackends
Definition: globals.c:145
char * pg_stack_base_t
Definition: miscadmin.h:298
PGDLLIMPORT bool process_shared_preload_libraries_done
Definition: miscinit.c:1835
void ValidatePgVersion(const char *path)
Definition: miscinit.c:1766
PGDLLIMPORT volatile uint32 CritSectionCount
Definition: globals.c:44
void SetUserIdAndSecContext(Oid userid, int sec_context)
Definition: miscinit.c:667
bool RecheckDataDirLockFile(void)
Definition: miscinit.c:1694
void check_stack_depth(void)
Definition: stack_depth.c:95
pg_stack_base_t set_stack_base(void)
Definition: stack_depth.c:44
void CreateDataDirLockFile(bool amPostmaster)
Definition: miscinit.c:1511
void SwitchBackToLocalLatch(void)
Definition: miscinit.c:242
void CreateSocketLockFile(const char *socketfile, bool amPostmaster, const char *socketDir)
Definition: miscinit.c:1520
PGDLLIMPORT volatile sig_atomic_t TransactionTimeoutPending
Definition: globals.c:37
PGDLLIMPORT int max_parallel_workers
Definition: globals.c:144
PGDLLIMPORT int MyProcPid
Definition: globals.c:46
static char * argv0
Definition: pg_ctl.c:93
static bool is_superuser(Archive *fout)
Definition: pg_dump.c:4810
int64 pg_time_t
Definition: pgtime.h:23
unsigned int Oid
Definition: postgres_ext.h:32
Definition: latch.h:113
Definition: libpq-be.h:135