PostgreSQL Source Code  git master
postmaster.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * postmaster.h
4  * Exports from postmaster/postmaster.c.
5  *
6  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  * src/include/postmaster/postmaster.h
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef _POSTMASTER_H
14 #define _POSTMASTER_H
15 
16 #include "miscadmin.h"
17 
18 /* GUC options */
19 extern PGDLLIMPORT bool EnableSSL;
22 extern PGDLLIMPORT int PostPortNumber;
24 extern PGDLLIMPORT char *Unix_socket_group;
26 extern PGDLLIMPORT char *ListenAddresses;
28 extern PGDLLIMPORT int PreAuthDelay;
30 extern PGDLLIMPORT bool Log_connections;
31 extern PGDLLIMPORT bool log_hostname;
32 extern PGDLLIMPORT bool enable_bonjour;
33 extern PGDLLIMPORT char *bonjour_name;
38 
39 #ifdef WIN32
40 extern PGDLLIMPORT HANDLE PostmasterHandle;
41 #else
42 extern PGDLLIMPORT int postmaster_alive_fds[2];
43 
44 /*
45  * Constants that represent which of postmaster_alive_fds is held by
46  * postmaster, and which is used in children to check for postmaster death.
47  */
48 #define POSTMASTER_FD_WATCH 0 /* used in children to check for
49  * postmaster death */
50 #define POSTMASTER_FD_OWN 1 /* kept open by postmaster only */
51 #endif
52 
53 extern PGDLLIMPORT const char *progname;
54 
55 extern PGDLLIMPORT bool redirection_done;
56 extern PGDLLIMPORT bool LoadedSSL;
57 
58 extern void PostmasterMain(int argc, char *argv[]) pg_attribute_noreturn();
59 extern void ClosePostmasterPorts(bool am_syslogger);
60 extern void InitProcessGlobals(void);
61 
62 extern int MaxLivePostmasterChildren(void);
63 
64 extern bool PostmasterMarkPIDForWorkerNotify(int);
65 
66 #ifdef WIN32
67 extern void pgwin32_register_deadchild_callback(HANDLE procHandle, DWORD procId);
68 #endif
69 
70 /* defined in globals.c */
72 
73 /* prototypes for functions in launch_backend.c */
74 extern pid_t postmaster_child_launch(BackendType child_type,
75  char *startup_data,
76  size_t startup_data_len,
77  struct ClientSocket *client_sock);
78 const char *PostmasterChildName(BackendType child_type);
79 #ifdef EXEC_BACKEND
80 extern void SubPostmasterMain(int argc, char *argv[]) pg_attribute_noreturn();
81 #endif
82 
83 /*
84  * Note: MAX_BACKENDS is limited to 2^18-1 because that's the width reserved
85  * for buffer references in buf_internals.h. This limitation could be lifted
86  * by using a 64bit state; but it's unlikely to be worthwhile as 2^18-1
87  * backends exceed currently realistic configurations. Even if that limitation
88  * were removed, we still could not a) exceed 2^23-1 because inval.c stores
89  * the ProcNumber as a 3-byte signed integer, b) INT_MAX/4 because some places
90  * compute 4*MaxBackends without any overflow check. This is rechecked in the
91  * relevant GUC check hooks and in RegisterBackgroundWorker().
92  */
93 #define MAX_BACKENDS 0x3FFFF
94 
95 #endif /* _POSTMASTER_H */
#define PGDLLIMPORT
Definition: c.h:1307
#define pg_attribute_noreturn()
Definition: c.h:220
BackendType
Definition: miscadmin.h:331
PGDLLIMPORT bool enable_bonjour
Definition: postmaster.c:229
PGDLLIMPORT bool log_hostname
Definition: postmaster.c:226
PGDLLIMPORT int PostPortNumber
Definition: postmaster.c:186
PGDLLIMPORT bool send_abort_for_kill
Definition: postmaster.c:234
PGDLLIMPORT int Unix_socket_permissions
Definition: pqcomm.c:106
PGDLLIMPORT char * ListenAddresses
Definition: postmaster.c:192
PGDLLIMPORT bool send_abort_for_crash
Definition: postmaster.c:233
void InitProcessGlobals(void)
Definition: postmaster.c:1899
PGDLLIMPORT int postmaster_alive_fds[2]
Definition: postmaster.c:453
PGDLLIMPORT char * Unix_socket_directories
Definition: postmaster.c:189
PGDLLIMPORT bool redirection_done
Definition: postmaster.c:349
PGDLLIMPORT const char * progname
Definition: main.c:44
PGDLLIMPORT int AuthenticationTimeout
Definition: postmaster.c:224
PGDLLIMPORT bool ClientAuthInProgress
Definition: postmaster.c:346
PGDLLIMPORT char * bonjour_name
Definition: postmaster.c:230
PGDLLIMPORT int SuperuserReservedConnections
Definition: postmaster.c:212
PGDLLIMPORT int PreAuthDelay
Definition: postmaster.c:223
void PostmasterMain(int argc, char *argv[]) pg_attribute_noreturn()
Definition: postmaster.c:463
PGDLLIMPORT char * Unix_socket_group
Definition: pqcomm.c:107
bool PostmasterMarkPIDForWorkerNotify(int)
Definition: postmaster.c:4155
PGDLLIMPORT bool remove_temp_files_after_crash
Definition: postmaster.c:232
PGDLLIMPORT int ReservedConnections
Definition: postmaster.c:213
PGDLLIMPORT bool LoadedSSL
PGDLLIMPORT bool Log_connections
Definition: postmaster.c:227
PGDLLIMPORT bool EnableSSL
Definition: postmaster.c:221
int MaxLivePostmasterChildren(void)
Definition: postmaster.c:3876
const char * PostmasterChildName(BackendType child_type)
void ClosePostmasterPorts(bool am_syslogger)
Definition: postmaster.c:1822
PGDLLIMPORT bool restart_after_crash
Definition: postmaster.c:231
PGDLLIMPORT struct ClientSocket * MyClientSocket
Definition: globals.c:49
pid_t postmaster_child_launch(BackendType child_type, char *startup_data, size_t startup_data_len, struct ClientSocket *client_sock)