PostgreSQL Source Code  git master
libpq-be.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * libpq-be.h
4  * This file contains definitions for structures and externs used
5  * by the postmaster during client authentication.
6  *
7  * Note that this is backend-internal and is NOT exported to clients.
8  * Structs that need to be client-visible are in pqcomm.h.
9  *
10  *
11  * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
12  * Portions Copyright (c) 1994, Regents of the University of California
13  *
14  * src/include/libpq/libpq-be.h
15  *
16  *-------------------------------------------------------------------------
17  */
18 #ifndef LIBPQ_BE_H
19 #define LIBPQ_BE_H
20 
21 #include <sys/time.h>
22 #ifdef USE_OPENSSL
23 #include <openssl/ssl.h>
24 #include <openssl/err.h>
25 #endif
26 #include <netinet/tcp.h>
27 
28 #ifdef ENABLE_GSS
29 #if defined(HAVE_GSSAPI_H)
30 #include <gssapi.h>
31 #else
32 #include <gssapi/gssapi.h>
33 #endif /* HAVE_GSSAPI_H */
34 #endif /* ENABLE_GSS */
35 
36 #ifdef ENABLE_SSPI
37 #define SECURITY_WIN32
38 #if defined(WIN32) && !defined(_MSC_VER)
39 #include <ntsecapi.h>
40 #endif
41 #include <security.h>
42 #undef SECURITY_WIN32
43 
44 #ifndef ENABLE_GSS
45 /*
46  * Define a fake structure compatible with GSSAPI on Unix.
47  */
48 typedef struct
49 {
50  void *value;
51  int length;
52 } gss_buffer_desc;
53 #endif
54 #endif /* ENABLE_SSPI */
55 
56 #include "datatype/timestamp.h"
57 #include "libpq/hba.h"
58 #include "libpq/pqcomm.h"
59 
60 
61 typedef enum CAC_state
62 {
70 
71 
72 /*
73  * GSSAPI specific state information
74  */
75 #if defined(ENABLE_GSS) | defined(ENABLE_SSPI)
76 typedef struct
77 {
78  gss_buffer_desc outbuf; /* GSSAPI output token buffer */
79 #ifdef ENABLE_GSS
80  gss_cred_id_t cred; /* GSSAPI connection cred's */
81  gss_ctx_id_t ctx; /* GSSAPI connection context */
82  gss_name_t name; /* GSSAPI client name */
83  char *princ; /* GSSAPI Principal used for auth, NULL if
84  * GSSAPI auth was not used */
85  bool auth; /* GSSAPI Authentication used */
86  bool enc; /* GSSAPI encryption in use */
87  bool delegated_creds; /* GSSAPI Delegated credentials */
88 #endif
89 } pg_gssinfo;
90 #endif
91 
92 /*
93  * ClientConnectionInfo includes the fields describing the client connection
94  * that are copied over to parallel workers as nothing from Port does that.
95  * The same rules apply for allocations here as for Port (everything must be
96  * malloc'd or palloc'd in TopMemoryContext).
97  *
98  * If you add a struct member here, remember to also handle serialization in
99  * SerializeClientConnectionInfo() and co.
100  */
101 typedef struct ClientConnectionInfo
102 {
103  /*
104  * Authenticated identity. The meaning of this identifier is dependent on
105  * auth_method; it is the identity (if any) that the user presented during
106  * the authentication cycle, before they were assigned a database role.
107  * (It is effectively the "SYSTEM-USERNAME" of a pg_ident usermap --
108  * though the exact string in use may be different, depending on pg_hba
109  * options.)
110  *
111  * authn_id is NULL if the user has not actually been authenticated, for
112  * example if the "trust" auth method is in use.
113  */
114  const char *authn_id;
115 
116  /*
117  * The HBA method that determined the above authn_id. This only has
118  * meaning if authn_id is not NULL; otherwise it's undefined.
119  */
122 
123 /*
124  * This is used by the postmaster in its communication with frontends. It
125  * contains all state information needed during this communication before the
126  * backend is run. The Port structure is kept in malloc'd memory and is
127  * still available when a backend is running (see MyProcPort). The data
128  * it points to must also be malloc'd, or else palloc'd in TopMemoryContext,
129  * so that it survives into PostgresMain execution!
130  *
131  * remote_hostname is set if we did a successful reverse lookup of the
132  * client's IP address during connection setup.
133  * remote_hostname_resolv tracks the state of hostname verification:
134  * +1 = remote_hostname is known to resolve to client's IP address
135  * -1 = remote_hostname is known NOT to resolve to client's IP address
136  * 0 = we have not done the forward DNS lookup yet
137  * -2 = there was an error in name resolution
138  * If reverse lookup of the client IP address fails, remote_hostname will be
139  * left NULL while remote_hostname_resolv is set to -2. If reverse lookup
140  * succeeds but forward lookup fails, remote_hostname_resolv is also set to -2
141  * (the case is distinguishable because remote_hostname isn't NULL). In
142  * either of the -2 cases, remote_hostname_errcode saves the lookup return
143  * code for possible later use with gai_strerror.
144  */
145 
146 typedef struct Port
147 {
148  pgsocket sock; /* File descriptor */
149  bool noblock; /* is the socket in non-blocking mode? */
150  ProtocolVersion proto; /* FE/BE protocol version */
151  SockAddr laddr; /* local addr (postmaster) */
152  SockAddr raddr; /* remote addr (client) */
153  char *remote_host; /* name (or ip addr) of remote host */
154  char *remote_hostname; /* name (not ip addr) of remote host, if
155  * available */
156  int remote_hostname_resolv; /* see above */
157  int remote_hostname_errcode; /* see above */
158  char *remote_port; /* text rep of remote port */
159  CAC_state canAcceptConnections; /* postmaster connection status */
160 
161  /*
162  * Information that needs to be saved from the startup packet and passed
163  * into backend execution. "char *" fields are NULL if not set.
164  * guc_options points to a List of alternating option names and values.
165  */
167  char *user_name;
170 
171  /*
172  * The startup packet application name, only used here for the "connection
173  * authorized" log message. We shouldn't use this post-startup, instead
174  * the GUC should be used as application can change it afterward.
175  */
177 
178  /*
179  * Information that needs to be held during the authentication cycle.
180  */
182 
183  /*
184  * TCP keepalive and user timeout settings.
185  *
186  * default values are 0 if AF_UNIX or not yet known; current values are 0
187  * if AF_UNIX or using the default. Also, -1 in a default value means we
188  * were unable to find out the default (getsockopt failed).
189  */
198 
199  /*
200  * GSSAPI structures.
201  */
202 #if defined(ENABLE_GSS) || defined(ENABLE_SSPI)
203 
204  /*
205  * If GSSAPI is supported and used on this connection, store GSSAPI
206  * information. Even when GSSAPI is not compiled in, store a NULL pointer
207  * to keep struct offsets the same (for extension ABI compatibility).
208  */
209  pg_gssinfo *gss;
210 #else
211  void *gss;
212 #endif
213 
214  /*
215  * SSL structures.
216  */
218  char *peer_cn;
219  char *peer_dn;
221 
222  /*
223  * OpenSSL structures. (Keep these last so that the locations of other
224  * fields are the same whether or not you build with SSL enabled.)
225  */
226 #ifdef USE_OPENSSL
227  SSL *ssl;
228  X509 *peer;
229 #endif
231 
232 #ifdef USE_SSL
233 /*
234  * Hardcoded DH parameters, used in ephemeral DH keying. (See also
235  * README.SSL for more details on EDH.)
236  *
237  * This is the 2048-bit DH parameter from RFC 3526. The generation of the
238  * prime is specified in RFC 2412 Appendix E, which also discusses the
239  * design choice of the generator. Note that when loaded with OpenSSL
240  * this causes DH_check() to fail on DH_NOT_SUITABLE_GENERATOR, where
241  * leaking a bit is preferred.
242  */
243 #define FILE_DH2048 \
244 "-----BEGIN DH PARAMETERS-----\n\
245 MIIBCAKCAQEA///////////JD9qiIWjCNMTGYouA3BzRKQJOCIpnzHQCC76mOxOb\n\
246 IlFKCHmONATd75UZs806QxswKwpt8l8UN0/hNW1tUcJF5IW1dmJefsb0TELppjft\n\
247 awv/XLb0Brft7jhr+1qJn6WunyQRfEsf5kkoZlHs5Fs9wgB8uKFjvwWY2kg2HFXT\n\
248 mmkWP6j9JM9fg2VdI9yjrZYcYvNWIIVSu57VKQdwlpZtZww1Tkq8mATxdGwIyhgh\n\
249 fDKQXkYuNs474553LBgOhgObJ4Oi7Aeij7XFXfBvTFLJ3ivL9pVYFxg5lUl86pVq\n\
250 5RXSJhiY+gUQFXKOWoqsqmj//////////wIBAg==\n\
251 -----END DH PARAMETERS-----\n"
252 
253 /*
254  * These functions are implemented by the glue code specific to each
255  * SSL implementation (e.g. be-secure-openssl.c)
256  */
257 
258 /*
259  * Initialize global SSL context.
260  *
261  * If isServerStart is true, report any errors as FATAL (so we don't return).
262  * Otherwise, log errors at LOG level and return -1 to indicate trouble,
263  * preserving the old SSL state if any. Returns 0 if OK.
264  */
265 extern int be_tls_init(bool isServerStart);
266 
267 /*
268  * Destroy global SSL context, if any.
269  */
270 extern void be_tls_destroy(void);
271 
272 /*
273  * Attempt to negotiate SSL connection.
274  */
275 extern int be_tls_open_server(Port *port);
276 
277 /*
278  * Close SSL connection.
279  */
280 extern void be_tls_close(Port *port);
281 
282 /*
283  * Read data from a secure connection.
284  */
285 extern ssize_t be_tls_read(Port *port, void *ptr, size_t len, int *waitfor);
286 
287 /*
288  * Write data to a secure connection.
289  */
290 extern ssize_t be_tls_write(Port *port, void *ptr, size_t len, int *waitfor);
291 
292 /*
293  * Return information about the SSL connection.
294  */
295 extern int be_tls_get_cipher_bits(Port *port);
296 extern const char *be_tls_get_version(Port *port);
297 extern const char *be_tls_get_cipher(Port *port);
298 extern void be_tls_get_peer_subject_name(Port *port, char *ptr, size_t len);
299 extern void be_tls_get_peer_issuer_name(Port *port, char *ptr, size_t len);
300 extern void be_tls_get_peer_serial(Port *port, char *ptr, size_t len);
301 
302 /*
303  * Get the server certificate hash for SCRAM channel binding type
304  * tls-server-end-point.
305  *
306  * The result is a palloc'd hash of the server certificate with its
307  * size, and NULL if there is no certificate available.
308  */
309 extern char *be_tls_get_certificate_hash(Port *port, size_t *len);
310 
311 /* init hook for SSL, the default sets the password callback if appropriate */
312 #ifdef USE_OPENSSL
313 typedef void (*openssl_tls_init_hook_typ) (SSL_CTX *context, bool isServerStart);
314 extern PGDLLIMPORT openssl_tls_init_hook_typ openssl_tls_init_hook;
315 #endif
316 
317 #endif /* USE_SSL */
318 
319 #ifdef ENABLE_GSS
320 /*
321  * Return information about the GSSAPI authenticated connection
322  */
323 extern bool be_gssapi_get_auth(Port *port);
324 extern bool be_gssapi_get_enc(Port *port);
325 extern const char *be_gssapi_get_princ(Port *port);
326 extern bool be_gssapi_get_delegation(Port *port);
327 
328 /* Read and write to a GSSAPI-encrypted connection. */
329 extern ssize_t be_gssapi_read(Port *port, void *ptr, size_t len);
330 extern ssize_t be_gssapi_write(Port *port, void *ptr, size_t len);
331 #endif /* ENABLE_GSS */
332 
335 
336 /* TCP keepalives configuration. These are no-ops on an AF_UNIX socket. */
337 
338 extern int pq_getkeepalivesidle(Port *port);
339 extern int pq_getkeepalivesinterval(Port *port);
340 extern int pq_getkeepalivescount(Port *port);
341 extern int pq_gettcpusertimeout(Port *port);
342 
343 extern int pq_setkeepalivesidle(int idle, Port *port);
344 extern int pq_setkeepalivesinterval(int interval, Port *port);
345 extern int pq_setkeepalivescount(int count, Port *port);
346 extern int pq_settcpusertimeout(int timeout, Port *port);
347 
348 #endif /* LIBPQ_BE_H */
bool be_gssapi_get_auth(Port *port)
ssize_t be_gssapi_read(Port *port, void *ptr, size_t len)
ssize_t be_gssapi_write(Port *port, void *ptr, size_t len)
bool be_gssapi_get_enc(Port *port)
const char * be_gssapi_get_princ(Port *port)
bool be_gssapi_get_delegation(Port *port)
const char * be_tls_get_version(Port *port)
void be_tls_destroy(void)
int be_tls_init(bool isServerStart)
openssl_tls_init_hook_typ openssl_tls_init_hook
int be_tls_get_cipher_bits(Port *port)
int be_tls_open_server(Port *port)
char * be_tls_get_certificate_hash(Port *port, size_t *len)
void be_tls_get_peer_serial(Port *port, char *ptr, size_t len)
void be_tls_close(Port *port)
void be_tls_get_peer_issuer_name(Port *port, char *ptr, size_t len)
ssize_t be_tls_read(Port *port, void *ptr, size_t len, int *waitfor)
ssize_t be_tls_write(Port *port, void *ptr, size_t len, int *waitfor)
const char * be_tls_get_cipher(Port *port)
void be_tls_get_peer_subject_name(Port *port, char *ptr, size_t len)
#define PGDLLIMPORT
Definition: c.h:1326
enc
UserAuth
Definition: hba.h:26
static struct @148 value
int pq_setkeepalivesinterval(int interval, Port *port)
Definition: pqcomm.c:1729
PGDLLIMPORT ProtocolVersion FrontendProtocol
Definition: globals.c:28
int pq_getkeepalivescount(Port *port)
Definition: pqcomm.c:1778
int pq_getkeepalivesinterval(Port *port)
Definition: pqcomm.c:1694
int pq_settcpusertimeout(int timeout, Port *port)
Definition: pqcomm.c:1883
CAC_state
Definition: libpq-be.h:62
@ CAC_TOOMANY
Definition: libpq-be.h:68
@ CAC_OK
Definition: libpq-be.h:63
@ CAC_RECOVERY
Definition: libpq-be.h:66
@ CAC_NOTCONSISTENT
Definition: libpq-be.h:67
@ CAC_STARTUP
Definition: libpq-be.h:64
@ CAC_SHUTDOWN
Definition: libpq-be.h:65
int pq_setkeepalivesidle(int idle, Port *port)
Definition: pqcomm.c:1644
int pq_getkeepalivesidle(Port *port)
Definition: pqcomm.c:1609
struct Port Port
PGDLLIMPORT ClientConnectionInfo MyClientConnectionInfo
Definition: miscinit.c:996
struct ClientConnectionInfo ClientConnectionInfo
int pq_gettcpusertimeout(Port *port)
Definition: pqcomm.c:1853
int pq_setkeepalivescount(int count, Port *port)
Definition: pqcomm.c:1808
const void size_t len
static int port
Definition: pg_regress.c:109
int pgsocket
Definition: port.h:29
uint32 ProtocolVersion
Definition: pqcomm.h:99
const char * authn_id
Definition: libpq-be.h:114
UserAuth auth_method
Definition: libpq-be.h:120
Definition: hba.h:95
Definition: pg_list.h:54
Definition: libpq-be.h:147
bool ssl_in_use
Definition: libpq-be.h:217
char * user_name
Definition: libpq-be.h:167
ProtocolVersion proto
Definition: libpq-be.h:150
char * remote_port
Definition: libpq-be.h:158
SockAddr laddr
Definition: libpq-be.h:151
char * remote_hostname
Definition: libpq-be.h:154
int remote_hostname_errcode
Definition: libpq-be.h:157
int default_keepalives_idle
Definition: libpq-be.h:190
int keepalives_idle
Definition: libpq-be.h:194
int keepalives_count
Definition: libpq-be.h:196
void * gss
Definition: libpq-be.h:211
int default_keepalives_interval
Definition: libpq-be.h:191
bool peer_cert_valid
Definition: libpq-be.h:220
char * database_name
Definition: libpq-be.h:166
char * remote_host
Definition: libpq-be.h:153
pgsocket sock
Definition: libpq-be.h:148
HbaLine * hba
Definition: libpq-be.h:181
char * peer_cn
Definition: libpq-be.h:218
int default_keepalives_count
Definition: libpq-be.h:192
char * cmdline_options
Definition: libpq-be.h:168
int keepalives_interval
Definition: libpq-be.h:195
SockAddr raddr
Definition: libpq-be.h:152
int remote_hostname_resolv
Definition: libpq-be.h:156
List * guc_options
Definition: libpq-be.h:169
char * peer_dn
Definition: libpq-be.h:219
bool noblock
Definition: libpq-be.h:149
char * application_name
Definition: libpq-be.h:176
int default_tcp_user_timeout
Definition: libpq-be.h:193
CAC_state canAcceptConnections
Definition: libpq-be.h:159
int tcp_user_timeout
Definition: libpq-be.h:197
const char * name