PostgreSQL Source Code git master
auth.c File Reference
#include "postgres.h"
#include <sys/param.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <pwd.h>
#include <unistd.h>
#include "commands/user.h"
#include "common/ip.h"
#include "common/md5.h"
#include "libpq/auth.h"
#include "libpq/crypt.h"
#include "libpq/libpq.h"
#include "libpq/oauth.h"
#include "libpq/pqformat.h"
#include "libpq/sasl.h"
#include "libpq/scram.h"
#include "miscadmin.h"
#include "port/pg_bswap.h"
#include "postmaster/postmaster.h"
#include "replication/walsender.h"
#include "storage/ipc.h"
#include "tcop/backend_startup.h"
#include "utils/memutils.h"
Include dependency graph for auth.c:

Go to the source code of this file.

Data Structures

struct  radius_attribute
 
struct  radius_packet
 

Macros

#define IDENT_USERNAME_MAX   512
 
#define IDENT_PORT   113
 
#define HOSTNAME_LOOKUP_DETAIL(port)
 
#define RADIUS_VECTOR_LENGTH   16
 
#define RADIUS_HEADER_LENGTH   20
 
#define RADIUS_MAX_PASSWORD_LENGTH   128
 
#define RADIUS_BUFFER_SIZE   1024
 
#define RADIUS_ACCESS_REQUEST   1
 
#define RADIUS_ACCESS_ACCEPT   2
 
#define RADIUS_ACCESS_REJECT   3
 
#define RADIUS_USER_NAME   1
 
#define RADIUS_PASSWORD   2
 
#define RADIUS_SERVICE_TYPE   6
 
#define RADIUS_NAS_IDENTIFIER   32
 
#define RADIUS_AUTHENTICATE_ONLY   8
 
#define RADIUS_TIMEOUT   3
 

Functions

static void auth_failed (Port *port, int status, const char *logdetail)
 
static char * recv_password_packet (Port *port)
 
static int CheckPasswordAuth (Port *port, const char **logdetail)
 
static int CheckPWChallengeAuth (Port *port, const char **logdetail)
 
static int CheckMD5Auth (Port *port, char *shadow_pass, const char **logdetail)
 
static int ident_inet (Port *port)
 
static int auth_peer (Port *port)
 
static int CheckRADIUSAuth (Port *port)
 
static int PerformRadiusTransaction (const char *server, const char *secret, const char *portstr, const char *identifier, const char *user_name, const char *passwd)
 
void set_authn_id (Port *port, const char *id)
 
void ClientAuthentication (Port *port)
 
void sendAuthRequest (Port *port, AuthRequest areq, const void *extradata, int extralen)
 
static bool is_ident_whitespace (const char c)
 
static bool interpret_ident_response (const char *ident_response, char *ident_user)
 
static void radius_add_attribute (radius_packet *packet, uint8 type, const unsigned char *data, int len)
 

Variables

char * pg_krb_server_keyfile
 
bool pg_krb_caseins_users
 
bool pg_gss_accept_delegation
 
ClientAuthentication_hook_type ClientAuthentication_hook = NULL
 

Macro Definition Documentation

◆ HOSTNAME_LOOKUP_DETAIL

#define HOSTNAME_LOOKUP_DETAIL (   port)
Value:
(port->remote_hostname ? \
(port->remote_hostname_resolv == +1 ? \
errdetail_log("Client IP address resolved to \"%s\", forward lookup matches.", \
port->remote_hostname) : \
port->remote_hostname_resolv == 0 ? \
errdetail_log("Client IP address resolved to \"%s\", forward lookup not checked.", \
port->remote_hostname) : \
port->remote_hostname_resolv == -1 ? \
errdetail_log("Client IP address resolved to \"%s\", forward lookup does not match.", \
port->remote_hostname) : \
port->remote_hostname_resolv == -2 ? \
errdetail_log("Could not translate client host name \"%s\" to IP address: %s.", \
port->remote_hostname, \
gai_strerror(port->remote_hostname_errcode)) : \
0) \
: (port->remote_hostname_resolv == -2 ? \
errdetail_log("Could not resolve client IP address to a host name: %s.", \
gai_strerror(port->remote_hostname_errcode)) : \
0))
int errdetail_log(const char *fmt,...)
Definition: elog.c:1264
static int port
Definition: pg_regress.c:115
const char * gai_strerror(int ecode)

◆ IDENT_PORT

#define IDENT_PORT   113

Definition at line 71 of file auth.c.

◆ IDENT_USERNAME_MAX

#define IDENT_USERNAME_MAX   512

Definition at line 68 of file auth.c.

◆ RADIUS_ACCESS_ACCEPT

#define RADIUS_ACCESS_ACCEPT   2

Definition at line 2812 of file auth.c.

◆ RADIUS_ACCESS_REJECT

#define RADIUS_ACCESS_REJECT   3

Definition at line 2813 of file auth.c.

◆ RADIUS_ACCESS_REQUEST

#define RADIUS_ACCESS_REQUEST   1

Definition at line 2811 of file auth.c.

◆ RADIUS_AUTHENTICATE_ONLY

#define RADIUS_AUTHENTICATE_ONLY   8

Definition at line 2822 of file auth.c.

◆ RADIUS_BUFFER_SIZE

#define RADIUS_BUFFER_SIZE   1024

Definition at line 2791 of file auth.c.

◆ RADIUS_HEADER_LENGTH

#define RADIUS_HEADER_LENGTH   20

Definition at line 2787 of file auth.c.

◆ RADIUS_MAX_PASSWORD_LENGTH

#define RADIUS_MAX_PASSWORD_LENGTH   128

Definition at line 2788 of file auth.c.

◆ RADIUS_NAS_IDENTIFIER

#define RADIUS_NAS_IDENTIFIER   32

Definition at line 2819 of file auth.c.

◆ RADIUS_PASSWORD

#define RADIUS_PASSWORD   2

Definition at line 2817 of file auth.c.

◆ RADIUS_SERVICE_TYPE

#define RADIUS_SERVICE_TYPE   6

Definition at line 2818 of file auth.c.

◆ RADIUS_TIMEOUT

#define RADIUS_TIMEOUT   3

Definition at line 2825 of file auth.c.

◆ RADIUS_USER_NAME

#define RADIUS_USER_NAME   1

Definition at line 2816 of file auth.c.

◆ RADIUS_VECTOR_LENGTH

#define RADIUS_VECTOR_LENGTH   16

Definition at line 2786 of file auth.c.

Function Documentation

◆ auth_failed()

static void auth_failed ( Port port,
int  status,
const char *  logdetail 
)
static

Definition at line 239 of file auth.c.

240{
241 const char *errstr;
242 char *cdetail;
243 int errcode_return = ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION;
244
245 /*
246 * If we failed due to EOF from client, just quit; there's no point in
247 * trying to send a message to the client, and not much point in logging
248 * the failure in the postmaster log. (Logging the failure might be
249 * desirable, were it not for the fact that libpq closes the connection
250 * unceremoniously if challenged for a password when it hasn't got one to
251 * send. We'll get a useless log entry for every psql connection under
252 * password auth, even if it's perfectly successful, if we log STATUS_EOF
253 * events.)
254 */
255 if (status == STATUS_EOF)
256 proc_exit(0);
257
258 switch (port->hba->auth_method)
259 {
260 case uaReject:
261 case uaImplicitReject:
262 errstr = gettext_noop("authentication failed for user \"%s\": host rejected");
263 break;
264 case uaTrust:
265 errstr = gettext_noop("\"trust\" authentication failed for user \"%s\"");
266 break;
267 case uaIdent:
268 errstr = gettext_noop("Ident authentication failed for user \"%s\"");
269 break;
270 case uaPeer:
271 errstr = gettext_noop("Peer authentication failed for user \"%s\"");
272 break;
273 case uaPassword:
274 case uaMD5:
275 case uaSCRAM:
276 errstr = gettext_noop("password authentication failed for user \"%s\"");
277 /* We use it to indicate if a .pgpass password failed. */
278 errcode_return = ERRCODE_INVALID_PASSWORD;
279 break;
280 case uaGSS:
281 errstr = gettext_noop("GSSAPI authentication failed for user \"%s\"");
282 break;
283 case uaSSPI:
284 errstr = gettext_noop("SSPI authentication failed for user \"%s\"");
285 break;
286 case uaPAM:
287 errstr = gettext_noop("PAM authentication failed for user \"%s\"");
288 break;
289 case uaBSD:
290 errstr = gettext_noop("BSD authentication failed for user \"%s\"");
291 break;
292 case uaLDAP:
293 errstr = gettext_noop("LDAP authentication failed for user \"%s\"");
294 break;
295 case uaCert:
296 errstr = gettext_noop("certificate authentication failed for user \"%s\"");
297 break;
298 case uaRADIUS:
299 errstr = gettext_noop("RADIUS authentication failed for user \"%s\"");
300 break;
301 case uaOAuth:
302 errstr = gettext_noop("OAuth bearer authentication failed for user \"%s\"");
303 break;
304 default:
305 errstr = gettext_noop("authentication failed for user \"%s\": invalid authentication method");
306 break;
307 }
308
309 cdetail = psprintf(_("Connection matched file \"%s\" line %d: \"%s\""),
310 port->hba->sourcefile, port->hba->linenumber,
311 port->hba->rawline);
312 if (logdetail)
313 logdetail = psprintf("%s\n%s", logdetail, cdetail);
314 else
315 logdetail = cdetail;
316
318 (errcode(errcode_return),
319 errmsg(errstr, port->user_name),
320 logdetail ? errdetail_log("%s", logdetail) : 0));
321
322 /* doesn't return */
323}
#define gettext_noop(x)
Definition: c.h:1184
#define STATUS_EOF
Definition: c.h:1159
int errcode(int sqlerrcode)
Definition: elog.c:863
int errmsg(const char *fmt,...)
Definition: elog.c:1080
#define _(x)
Definition: elog.c:91
#define FATAL
Definition: elog.h:41
#define ereport(elevel,...)
Definition: elog.h:150
#define ERRCODE_INVALID_PASSWORD
Definition: fe-connect.c:93
@ uaBSD
Definition: hba.h:37
@ uaLDAP
Definition: hba.h:38
@ uaPeer
Definition: hba.h:41
@ uaPAM
Definition: hba.h:36
@ uaPassword
Definition: hba.h:31
@ uaCert
Definition: hba.h:39
@ uaMD5
Definition: hba.h:32
@ uaReject
Definition: hba.h:27
@ uaGSS
Definition: hba.h:34
@ uaSCRAM
Definition: hba.h:33
@ uaImplicitReject
Definition: hba.h:28
@ uaRADIUS
Definition: hba.h:40
@ uaIdent
Definition: hba.h:30
@ uaOAuth
Definition: hba.h:42
@ uaTrust
Definition: hba.h:29
@ uaSSPI
Definition: hba.h:35
void proc_exit(int code)
Definition: ipc.c:104
char * psprintf(const char *fmt,...)
Definition: psprintf.c:43

References _, ereport, errcode(), ERRCODE_INVALID_PASSWORD, errdetail_log(), errmsg(), FATAL, gettext_noop, port, proc_exit(), psprintf(), STATUS_EOF, uaBSD, uaCert, uaGSS, uaIdent, uaImplicitReject, uaLDAP, uaMD5, uaOAuth, uaPAM, uaPassword, uaPeer, uaRADIUS, uaReject, uaSCRAM, uaSSPI, and uaTrust.

Referenced by ClientAuthentication().

◆ auth_peer()

static int auth_peer ( Port port)
static

Definition at line 1865 of file auth.c.

1866{
1867 uid_t uid;
1868 gid_t gid;
1869#ifndef WIN32
1870 struct passwd pwbuf;
1871 struct passwd *pw;
1872 char buf[1024];
1873 int rc;
1874 int ret;
1875#endif
1876
1877 if (getpeereid(port->sock, &uid, &gid) != 0)
1878 {
1879 /* Provide special error message if getpeereid is a stub */
1880 if (errno == ENOSYS)
1881 ereport(LOG,
1882 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1883 errmsg("peer authentication is not supported on this platform")));
1884 else
1885 ereport(LOG,
1887 errmsg("could not get peer credentials: %m")));
1888 return STATUS_ERROR;
1889 }
1890
1891#ifndef WIN32
1892 rc = getpwuid_r(uid, &pwbuf, buf, sizeof buf, &pw);
1893 if (rc != 0)
1894 {
1895 errno = rc;
1896 ereport(LOG,
1897 errmsg("could not look up local user ID %ld: %m", (long) uid));
1898 return STATUS_ERROR;
1899 }
1900 else if (!pw)
1901 {
1902 ereport(LOG,
1903 errmsg("local user with ID %ld does not exist", (long) uid));
1904 return STATUS_ERROR;
1905 }
1906
1907 /*
1908 * Make a copy of static getpw*() result area; this is our authenticated
1909 * identity. Set it before calling check_usermap, because authentication
1910 * has already succeeded and we want the log file to reflect that.
1911 */
1912 set_authn_id(port, pw->pw_name);
1913
1914 ret = check_usermap(port->hba->usermap, port->user_name,
1916
1917 return ret;
1918#else
1919 /* should have failed with ENOSYS above */
1920 Assert(false);
1921 return STATUS_ERROR;
1922#endif
1923}
void set_authn_id(Port *port, const char *id)
Definition: auth.c:341
#define STATUS_ERROR
Definition: c.h:1158
int errcode_for_socket_access(void)
Definition: elog.c:963
#define LOG
Definition: elog.h:31
Assert(PointerIsAligned(start, uint64))
int check_usermap(const char *usermap_name, const char *pg_user, const char *system_user, bool case_insensitive)
Definition: hba.c:2981
ClientConnectionInfo MyClientConnectionInfo
Definition: miscinit.c:1018
static char * buf
Definition: pg_test_fsync.c:72
int getpeereid(int sock, uid_t *uid, gid_t *gid)
Definition: getpeereid.c:33
const char * authn_id
Definition: libpq-be.h:99
int gid_t
Definition: win32_port.h:235
int uid_t
Definition: win32_port.h:234

References Assert(), ClientConnectionInfo::authn_id, buf, check_usermap(), ereport, errcode(), errcode_for_socket_access(), errmsg(), getpeereid(), LOG, MyClientConnectionInfo, port, set_authn_id(), and STATUS_ERROR.

Referenced by ClientAuthentication().

◆ CheckMD5Auth()

static int CheckMD5Auth ( Port port,
char *  shadow_pass,
const char **  logdetail 
)
static

Definition at line 883 of file auth.c.

884{
885 uint8 md5Salt[4]; /* Password salt */
886 char *passwd;
887 int result;
888
889 /* include the salt to use for computing the response */
890 if (!pg_strong_random(md5Salt, 4))
891 {
892 ereport(LOG,
893 (errmsg("could not generate random MD5 salt")));
894 return STATUS_ERROR;
895 }
896
897 sendAuthRequest(port, AUTH_REQ_MD5, md5Salt, 4);
898
899 passwd = recv_password_packet(port);
900 if (passwd == NULL)
901 return STATUS_EOF; /* client wouldn't send password */
902
903 if (shadow_pass)
904 result = md5_crypt_verify(port->user_name, shadow_pass, passwd,
905 md5Salt, 4, logdetail);
906 else
907 result = STATUS_ERROR;
908
909 pfree(passwd);
910
911 return result;
912}
void sendAuthRequest(Port *port, AuthRequest areq, const void *extradata, int extralen)
Definition: auth.c:677
static char * recv_password_packet(Port *port)
Definition: auth.c:707
uint8_t uint8
Definition: c.h:539
int md5_crypt_verify(const char *role, const char *shadow_pass, const char *client_pass, const uint8 *md5_salt, int md5_salt_len, const char **logdetail)
Definition: crypt.c:202
void pfree(void *pointer)
Definition: mcxt.c:1594
bool pg_strong_random(void *buf, size_t len)
#define AUTH_REQ_MD5
Definition: protocol.h:101

References AUTH_REQ_MD5, ereport, errmsg(), LOG, md5_crypt_verify(), pfree(), pg_strong_random(), port, recv_password_packet(), sendAuthRequest(), STATUS_EOF, and STATUS_ERROR.

Referenced by CheckPWChallengeAuth().

◆ CheckPasswordAuth()

static int CheckPasswordAuth ( Port port,
const char **  logdetail 
)
static

Definition at line 788 of file auth.c.

789{
790 char *passwd;
791 int result;
792 char *shadow_pass;
793
795
796 passwd = recv_password_packet(port);
797 if (passwd == NULL)
798 return STATUS_EOF; /* client wouldn't send password */
799
800 shadow_pass = get_role_password(port->user_name, logdetail);
801 if (shadow_pass)
802 {
803 result = plain_crypt_verify(port->user_name, shadow_pass, passwd,
804 logdetail);
805 }
806 else
807 result = STATUS_ERROR;
808
809 if (shadow_pass)
810 pfree(shadow_pass);
811 pfree(passwd);
812
813 if (result == STATUS_OK)
814 set_authn_id(port, port->user_name);
815
816 return result;
817}
#define STATUS_OK
Definition: c.h:1157
int plain_crypt_verify(const char *role, const char *shadow_pass, const char *client_pass, const char **logdetail)
Definition: crypt.c:256
char * get_role_password(const char *role, const char **logdetail)
Definition: crypt.c:38
#define AUTH_REQ_PASSWORD
Definition: protocol.h:99

References AUTH_REQ_PASSWORD, get_role_password(), pfree(), plain_crypt_verify(), port, recv_password_packet(), sendAuthRequest(), set_authn_id(), STATUS_EOF, STATUS_ERROR, and STATUS_OK.

Referenced by ClientAuthentication().

◆ CheckPWChallengeAuth()

static int CheckPWChallengeAuth ( Port port,
const char **  logdetail 
)
static

Definition at line 823 of file auth.c.

824{
825 int auth_result;
826 char *shadow_pass;
827 PasswordType pwtype;
828
829 Assert(port->hba->auth_method == uaSCRAM ||
830 port->hba->auth_method == uaMD5);
831
832 /* First look up the user's password. */
833 shadow_pass = get_role_password(port->user_name, logdetail);
834
835 /*
836 * If the user does not exist, or has no password or it's expired, we
837 * still go through the motions of authentication, to avoid revealing to
838 * the client that the user didn't exist. If 'md5' is allowed, we choose
839 * whether to use 'md5' or 'scram-sha-256' authentication based on current
840 * password_encryption setting. The idea is that most genuine users
841 * probably have a password of that type, and if we pretend that this user
842 * had a password of that type, too, it "blends in" best.
843 */
844 if (!shadow_pass)
845 pwtype = Password_encryption;
846 else
847 pwtype = get_password_type(shadow_pass);
848
849 /*
850 * If 'md5' authentication is allowed, decide whether to perform 'md5' or
851 * 'scram-sha-256' authentication based on the type of password the user
852 * has. If it's an MD5 hash, we must do MD5 authentication, and if it's a
853 * SCRAM secret, we must do SCRAM authentication.
854 *
855 * If MD5 authentication is not allowed, always use SCRAM. If the user
856 * had an MD5 password, CheckSASLAuth() with the SCRAM mechanism will
857 * fail.
858 */
859 if (port->hba->auth_method == uaMD5 && pwtype == PASSWORD_TYPE_MD5)
860 auth_result = CheckMD5Auth(port, shadow_pass, logdetail);
861 else
862 auth_result = CheckSASLAuth(&pg_be_scram_mech, port, shadow_pass,
863 logdetail);
864
865 if (shadow_pass)
866 pfree(shadow_pass);
867 else
868 {
869 /*
870 * If get_role_password() returned error, authentication better not
871 * have succeeded.
872 */
873 Assert(auth_result != STATUS_OK);
874 }
875
876 if (auth_result == STATUS_OK)
877 set_authn_id(port, port->user_name);
878
879 return auth_result;
880}
int CheckSASLAuth(const pg_be_sasl_mech *mech, Port *port, char *shadow_pass, const char **logdetail)
Definition: auth-sasl.c:44
const pg_be_sasl_mech pg_be_scram_mech
Definition: auth-scram.c:114
static int CheckMD5Auth(Port *port, char *shadow_pass, const char **logdetail)
Definition: auth.c:883
PasswordType get_password_type(const char *shadow_pass)
Definition: crypt.c:90
PasswordType
Definition: crypt.h:41
@ PASSWORD_TYPE_MD5
Definition: crypt.h:43
int Password_encryption
Definition: user.c:85

References Assert(), CheckMD5Auth(), CheckSASLAuth(), get_password_type(), get_role_password(), Password_encryption, PASSWORD_TYPE_MD5, pfree(), pg_be_scram_mech, port, set_authn_id(), STATUS_OK, uaMD5, and uaSCRAM.

Referenced by ClientAuthentication().

◆ CheckRADIUSAuth()

static int CheckRADIUSAuth ( Port port)
static

Definition at line 2854 of file auth.c.

2855{
2856 char *passwd;
2857 ListCell *server,
2858 *secrets,
2859 *radiusports,
2860 *identifiers;
2861
2862 /* Make sure struct alignment is correct */
2863 Assert(offsetof(radius_packet, vector) == 4);
2864
2865 /* Verify parameters */
2866 if (port->hba->radiusservers == NIL)
2867 {
2868 ereport(LOG,
2869 (errmsg("RADIUS server not specified")));
2870 return STATUS_ERROR;
2871 }
2872
2873 if (port->hba->radiussecrets == NIL)
2874 {
2875 ereport(LOG,
2876 (errmsg("RADIUS secret not specified")));
2877 return STATUS_ERROR;
2878 }
2879
2880 /* Send regular password request to client, and get the response */
2882
2883 passwd = recv_password_packet(port);
2884 if (passwd == NULL)
2885 return STATUS_EOF; /* client wouldn't send password */
2886
2887 if (strlen(passwd) > RADIUS_MAX_PASSWORD_LENGTH)
2888 {
2889 ereport(LOG,
2890 (errmsg("RADIUS authentication does not support passwords longer than %d characters", RADIUS_MAX_PASSWORD_LENGTH)));
2891 pfree(passwd);
2892 return STATUS_ERROR;
2893 }
2894
2895 /*
2896 * Loop over and try each server in order.
2897 */
2898 secrets = list_head(port->hba->radiussecrets);
2899 radiusports = list_head(port->hba->radiusports);
2900 identifiers = list_head(port->hba->radiusidentifiers);
2901 foreach(server, port->hba->radiusservers)
2902 {
2903 int ret = PerformRadiusTransaction(lfirst(server),
2904 lfirst(secrets),
2905 radiusports ? lfirst(radiusports) : NULL,
2906 identifiers ? lfirst(identifiers) : NULL,
2907 port->user_name,
2908 passwd);
2909
2910 /*------
2911 * STATUS_OK = Login OK
2912 * STATUS_ERROR = Login not OK, but try next server
2913 * STATUS_EOF = Login not OK, and don't try next server
2914 *------
2915 */
2916 if (ret == STATUS_OK)
2917 {
2918 set_authn_id(port, port->user_name);
2919
2920 pfree(passwd);
2921 return STATUS_OK;
2922 }
2923 else if (ret == STATUS_EOF)
2924 {
2925 pfree(passwd);
2926 return STATUS_ERROR;
2927 }
2928
2929 /*
2930 * secret, port and identifiers either have length 0 (use default),
2931 * length 1 (use the same everywhere) or the same length as servers.
2932 * So if the length is >1, we advance one step. In other cases, we
2933 * don't and will then reuse the correct value.
2934 */
2935 if (list_length(port->hba->radiussecrets) > 1)
2936 secrets = lnext(port->hba->radiussecrets, secrets);
2937 if (list_length(port->hba->radiusports) > 1)
2938 radiusports = lnext(port->hba->radiusports, radiusports);
2939 if (list_length(port->hba->radiusidentifiers) > 1)
2940 identifiers = lnext(port->hba->radiusidentifiers, identifiers);
2941 }
2942
2943 /* No servers left to try, so give up */
2944 pfree(passwd);
2945 return STATUS_ERROR;
2946}
#define RADIUS_MAX_PASSWORD_LENGTH
Definition: auth.c:2788
static int PerformRadiusTransaction(const char *server, const char *secret, const char *portstr, const char *identifier, const char *user_name, const char *passwd)
Definition: auth.c:2949
#define lfirst(lc)
Definition: pg_list.h:172
static int list_length(const List *l)
Definition: pg_list.h:152
#define NIL
Definition: pg_list.h:68
static ListCell * list_head(const List *l)
Definition: pg_list.h:128
static ListCell * lnext(const List *l, const ListCell *c)
Definition: pg_list.h:343

References Assert(), AUTH_REQ_PASSWORD, ereport, errmsg(), lfirst, list_head(), list_length(), lnext(), LOG, NIL, PerformRadiusTransaction(), pfree(), port, RADIUS_MAX_PASSWORD_LENGTH, recv_password_packet(), sendAuthRequest(), set_authn_id(), STATUS_EOF, STATUS_ERROR, and STATUS_OK.

Referenced by ClientAuthentication().

◆ ClientAuthentication()

void ClientAuthentication ( Port port)

Definition at line 379 of file auth.c.

380{
381 int status = STATUS_ERROR;
382 const char *logdetail = NULL;
383
384 /*
385 * Get the authentication method to use for this frontend/database
386 * combination. Note: we do not parse the file at this point; this has
387 * already been done elsewhere. hba.c dropped an error message into the
388 * server logfile if parsing the hba config file failed.
389 */
391
393
394 /*
395 * This is the first point where we have access to the hba record for the
396 * current connection, so perform any verifications based on the hba
397 * options field that should be done *before* the authentication here.
398 */
399 if (port->hba->clientcert != clientCertOff)
400 {
401 /* If we haven't loaded a root certificate store, fail */
404 (errcode(ERRCODE_CONFIG_FILE_ERROR),
405 errmsg("client certificates can only be checked if a root certificate store is available")));
406
407 /*
408 * If we loaded a root certificate store, and if a certificate is
409 * present on the client, then it has been verified against our root
410 * certificate store, and the connection would have been aborted
411 * already if it didn't verify ok.
412 */
413 if (!port->peer_cert_valid)
415 (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
416 errmsg("connection requires a valid client certificate")));
417 }
418
419 /*
420 * Now proceed to do the actual authentication check
421 */
422 switch (port->hba->auth_method)
423 {
424 case uaReject:
425
426 /*
427 * An explicit "reject" entry in pg_hba.conf. This report exposes
428 * the fact that there's an explicit reject entry, which is
429 * perhaps not so desirable from a security standpoint; but the
430 * message for an implicit reject could confuse the DBA a lot when
431 * the true situation is a match to an explicit reject. And we
432 * don't want to change the message for an implicit reject. As
433 * noted below, the additional information shown here doesn't
434 * expose anything not known to an attacker.
435 */
436 {
437 char hostinfo[NI_MAXHOST];
438 const char *encryption_state;
439
440 pg_getnameinfo_all(&port->raddr.addr, port->raddr.salen,
441 hostinfo, sizeof(hostinfo),
442 NULL, 0,
443 NI_NUMERICHOST);
444
445 encryption_state =
446#ifdef ENABLE_GSS
447 (port->gss && port->gss->enc) ? _("GSS encryption") :
448#endif
449#ifdef USE_SSL
450 port->ssl_in_use ? _("SSL encryption") :
451#endif
452 _("no encryption");
453
456 (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
457 /* translator: last %s describes encryption state */
458 errmsg("pg_hba.conf rejects replication connection for host \"%s\", user \"%s\", %s",
459 hostinfo, port->user_name,
460 encryption_state)));
461 else
463 (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
464 /* translator: last %s describes encryption state */
465 errmsg("pg_hba.conf rejects connection for host \"%s\", user \"%s\", database \"%s\", %s",
466 hostinfo, port->user_name,
467 port->database_name,
468 encryption_state)));
469 break;
470 }
471
472 case uaImplicitReject:
473
474 /*
475 * No matching entry, so tell the user we fell through.
476 *
477 * NOTE: the extra info reported here is not a security breach,
478 * because all that info is known at the frontend and must be
479 * assumed known to bad guys. We're merely helping out the less
480 * clueful good guys.
481 */
482 {
483 char hostinfo[NI_MAXHOST];
484 const char *encryption_state;
485
486 pg_getnameinfo_all(&port->raddr.addr, port->raddr.salen,
487 hostinfo, sizeof(hostinfo),
488 NULL, 0,
489 NI_NUMERICHOST);
490
491 encryption_state =
492#ifdef ENABLE_GSS
493 (port->gss && port->gss->enc) ? _("GSS encryption") :
494#endif
495#ifdef USE_SSL
496 port->ssl_in_use ? _("SSL encryption") :
497#endif
498 _("no encryption");
499
500#define HOSTNAME_LOOKUP_DETAIL(port) \
501 (port->remote_hostname ? \
502 (port->remote_hostname_resolv == +1 ? \
503 errdetail_log("Client IP address resolved to \"%s\", forward lookup matches.", \
504 port->remote_hostname) : \
505 port->remote_hostname_resolv == 0 ? \
506 errdetail_log("Client IP address resolved to \"%s\", forward lookup not checked.", \
507 port->remote_hostname) : \
508 port->remote_hostname_resolv == -1 ? \
509 errdetail_log("Client IP address resolved to \"%s\", forward lookup does not match.", \
510 port->remote_hostname) : \
511 port->remote_hostname_resolv == -2 ? \
512 errdetail_log("Could not translate client host name \"%s\" to IP address: %s.", \
513 port->remote_hostname, \
514 gai_strerror(port->remote_hostname_errcode)) : \
515 0) \
516 : (port->remote_hostname_resolv == -2 ? \
517 errdetail_log("Could not resolve client IP address to a host name: %s.", \
518 gai_strerror(port->remote_hostname_errcode)) : \
519 0))
520
523 (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
524 /* translator: last %s describes encryption state */
525 errmsg("no pg_hba.conf entry for replication connection from host \"%s\", user \"%s\", %s",
526 hostinfo, port->user_name,
527 encryption_state),
529 else
531 (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
532 /* translator: last %s describes encryption state */
533 errmsg("no pg_hba.conf entry for host \"%s\", user \"%s\", database \"%s\", %s",
534 hostinfo, port->user_name,
535 port->database_name,
536 encryption_state),
538 break;
539 }
540
541 case uaGSS:
542#ifdef ENABLE_GSS
543 /* We might or might not have the gss workspace already */
544 if (port->gss == NULL)
545 port->gss = (pg_gssinfo *)
547 sizeof(pg_gssinfo));
548 port->gss->auth = true;
549
550 /*
551 * If GSS state was set up while enabling encryption, we can just
552 * check the client's principal. Otherwise, ask for it.
553 */
554 if (port->gss->enc)
555 status = pg_GSS_checkauth(port);
556 else
557 {
559 status = pg_GSS_recvauth(port);
560 }
561#else
562 Assert(false);
563#endif
564 break;
565
566 case uaSSPI:
567#ifdef ENABLE_SSPI
568 if (port->gss == NULL)
569 port->gss = (pg_gssinfo *)
571 sizeof(pg_gssinfo));
573 status = pg_SSPI_recvauth(port);
574#else
575 Assert(false);
576#endif
577 break;
578
579 case uaPeer:
580 status = auth_peer(port);
581 break;
582
583 case uaIdent:
584 status = ident_inet(port);
585 break;
586
587 case uaMD5:
588 case uaSCRAM:
589 status = CheckPWChallengeAuth(port, &logdetail);
590 break;
591
592 case uaPassword:
593 status = CheckPasswordAuth(port, &logdetail);
594 break;
595
596 case uaPAM:
597#ifdef USE_PAM
598 status = CheckPAMAuth(port, port->user_name, "");
599#else
600 Assert(false);
601#endif /* USE_PAM */
602 break;
603
604 case uaBSD:
605#ifdef USE_BSD_AUTH
606 status = CheckBSDAuth(port, port->user_name);
607#else
608 Assert(false);
609#endif /* USE_BSD_AUTH */
610 break;
611
612 case uaLDAP:
613#ifdef USE_LDAP
614 status = CheckLDAPAuth(port);
615#else
616 Assert(false);
617#endif
618 break;
619 case uaRADIUS:
620 status = CheckRADIUSAuth(port);
621 break;
622 case uaCert:
623 /* uaCert will be treated as if clientcert=verify-full (uaTrust) */
624 case uaTrust:
625 status = STATUS_OK;
626 break;
627 case uaOAuth:
628 status = CheckSASLAuth(&pg_be_oauth_mech, port, NULL, NULL);
629 break;
630 }
631
632 if ((status == STATUS_OK && port->hba->clientcert == clientCertFull)
633 || port->hba->auth_method == uaCert)
634 {
635 /*
636 * Make sure we only check the certificate if we use the cert method
637 * or verify-full option.
638 */
639#ifdef USE_SSL
640 status = CheckCertAuth(port);
641#else
642 Assert(false);
643#endif
644 }
645
647 status == STATUS_OK &&
649 {
650 /*
651 * Normally, if log_connections is set, the call to set_authn_id()
652 * will log the connection. However, if that function is never
653 * called, perhaps because the trust method is in use, then we handle
654 * the logging here instead.
655 */
656 ereport(LOG,
657 errmsg("connection authenticated: user=\"%s\" method=%s "
658 "(%s:%d)",
659 port->user_name, hba_authname(port->hba->auth_method),
660 port->hba->sourcefile, port->hba->linenumber));
661 }
662
664 (*ClientAuthentication_hook) (port, status);
665
666 if (status == STATUS_OK)
668 else
669 auth_failed(port, status, logdetail);
670}
const pg_be_sasl_mech pg_be_oauth_mech
Definition: auth-oauth.c:48
static int CheckPWChallengeAuth(Port *port, const char **logdetail)
Definition: auth.c:823
static int auth_peer(Port *port)
Definition: auth.c:1865
static int CheckRADIUSAuth(Port *port)
Definition: auth.c:2854
static void auth_failed(Port *port, int status, const char *logdetail)
Definition: auth.c:239
ClientAuthentication_hook_type ClientAuthentication_hook
Definition: auth.c:223
static int ident_inet(Port *port)
Definition: auth.c:1680
#define HOSTNAME_LOOKUP_DETAIL(port)
static int CheckPasswordAuth(Port *port, const char **logdetail)
Definition: auth.c:788
uint32 log_connections
@ LOG_CONNECTION_AUTHENTICATION
bool secure_loaded_verify_locations(void)
Definition: be-secure.c:99
void hba_getauthmethod(Port *port)
Definition: hba.c:3125
const char * hba_authname(UserAuth auth_method)
Definition: hba.c:3138
@ clientCertOff
Definition: hba.h:70
@ clientCertFull
Definition: hba.h:72
int pg_getnameinfo_all(const struct sockaddr_storage *addr, int salen, char *node, int nodelen, char *service, int servicelen, int flags)
Definition: ip.c:117
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition: mcxt.c:1263
MemoryContext TopMemoryContext
Definition: mcxt.c:166
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:123
#define AUTH_REQ_SSPI
Definition: protocol.h:105
#define AUTH_REQ_GSS
Definition: protocol.h:103
#define AUTH_REQ_OK
Definition: protocol.h:96
bool am_walsender
Definition: walsender.c:123
bool am_db_walsender
Definition: walsender.c:126

References _, am_db_walsender, am_walsender, Assert(), auth_failed(), auth_peer(), AUTH_REQ_GSS, AUTH_REQ_OK, AUTH_REQ_SSPI, ClientConnectionInfo::authn_id, CHECK_FOR_INTERRUPTS, CheckPasswordAuth(), CheckPWChallengeAuth(), CheckRADIUSAuth(), CheckSASLAuth(), ClientAuthentication_hook, clientCertFull, clientCertOff, ereport, errcode(), errmsg(), FATAL, hba_authname(), hba_getauthmethod(), HOSTNAME_LOOKUP_DETAIL, ident_inet(), LOG, LOG_CONNECTION_AUTHENTICATION, log_connections, MemoryContextAllocZero(), MyClientConnectionInfo, pg_be_oauth_mech, pg_getnameinfo_all(), port, secure_loaded_verify_locations(), sendAuthRequest(), STATUS_ERROR, STATUS_OK, TopMemoryContext, uaBSD, uaCert, uaGSS, uaIdent, uaImplicitReject, uaLDAP, uaMD5, uaOAuth, uaPAM, uaPassword, uaPeer, uaRADIUS, uaReject, uaSCRAM, uaSSPI, and uaTrust.

Referenced by PerformAuthentication().

◆ ident_inet()

static int ident_inet ( Port port)
static

Definition at line 1680 of file auth.c.

1681{
1682 const SockAddr remote_addr = port->raddr;
1683 const SockAddr local_addr = port->laddr;
1684 char ident_user[IDENT_USERNAME_MAX + 1];
1685 pgsocket sock_fd = PGINVALID_SOCKET; /* for talking to Ident server */
1686 int rc; /* Return code from a locally called function */
1687 bool ident_return;
1688 char remote_addr_s[NI_MAXHOST];
1689 char remote_port[NI_MAXSERV];
1690 char local_addr_s[NI_MAXHOST];
1691 char local_port[NI_MAXSERV];
1692 char ident_port[NI_MAXSERV];
1693 char ident_query[80];
1694 char ident_response[80 + IDENT_USERNAME_MAX];
1695 struct addrinfo *ident_serv = NULL,
1696 *la = NULL,
1697 hints;
1698
1699 /*
1700 * Might look a little weird to first convert it to text and then back to
1701 * sockaddr, but it's protocol independent.
1702 */
1703 pg_getnameinfo_all(&remote_addr.addr, remote_addr.salen,
1704 remote_addr_s, sizeof(remote_addr_s),
1705 remote_port, sizeof(remote_port),
1706 NI_NUMERICHOST | NI_NUMERICSERV);
1707 pg_getnameinfo_all(&local_addr.addr, local_addr.salen,
1708 local_addr_s, sizeof(local_addr_s),
1709 local_port, sizeof(local_port),
1710 NI_NUMERICHOST | NI_NUMERICSERV);
1711
1712 snprintf(ident_port, sizeof(ident_port), "%d", IDENT_PORT);
1713 hints.ai_flags = AI_NUMERICHOST;
1714 hints.ai_family = remote_addr.addr.ss_family;
1715 hints.ai_socktype = SOCK_STREAM;
1716 hints.ai_protocol = 0;
1717 hints.ai_addrlen = 0;
1718 hints.ai_canonname = NULL;
1719 hints.ai_addr = NULL;
1720 hints.ai_next = NULL;
1721 rc = pg_getaddrinfo_all(remote_addr_s, ident_port, &hints, &ident_serv);
1722 if (rc || !ident_serv)
1723 {
1724 /* we don't expect this to happen */
1725 ident_return = false;
1726 goto ident_inet_done;
1727 }
1728
1729 hints.ai_flags = AI_NUMERICHOST;
1730 hints.ai_family = local_addr.addr.ss_family;
1731 hints.ai_socktype = SOCK_STREAM;
1732 hints.ai_protocol = 0;
1733 hints.ai_addrlen = 0;
1734 hints.ai_canonname = NULL;
1735 hints.ai_addr = NULL;
1736 hints.ai_next = NULL;
1737 rc = pg_getaddrinfo_all(local_addr_s, NULL, &hints, &la);
1738 if (rc || !la)
1739 {
1740 /* we don't expect this to happen */
1741 ident_return = false;
1742 goto ident_inet_done;
1743 }
1744
1745 sock_fd = socket(ident_serv->ai_family, ident_serv->ai_socktype,
1746 ident_serv->ai_protocol);
1747 if (sock_fd == PGINVALID_SOCKET)
1748 {
1749 ereport(LOG,
1751 errmsg("could not create socket for Ident connection: %m")));
1752 ident_return = false;
1753 goto ident_inet_done;
1754 }
1755
1756 /*
1757 * Bind to the address which the client originally contacted, otherwise
1758 * the ident server won't be able to match up the right connection. This
1759 * is necessary if the PostgreSQL server is running on an IP alias.
1760 */
1761 rc = bind(sock_fd, la->ai_addr, la->ai_addrlen);
1762 if (rc != 0)
1763 {
1764 ereport(LOG,
1766 errmsg("could not bind to local address \"%s\": %m",
1767 local_addr_s)));
1768 ident_return = false;
1769 goto ident_inet_done;
1770 }
1771
1772 rc = connect(sock_fd, ident_serv->ai_addr,
1773 ident_serv->ai_addrlen);
1774 if (rc != 0)
1775 {
1776 ereport(LOG,
1778 errmsg("could not connect to Ident server at address \"%s\", port %s: %m",
1779 remote_addr_s, ident_port)));
1780 ident_return = false;
1781 goto ident_inet_done;
1782 }
1783
1784 /* The query we send to the Ident server */
1785 snprintf(ident_query, sizeof(ident_query), "%s,%s\r\n",
1786 remote_port, local_port);
1787
1788 /* loop in case send is interrupted */
1789 do
1790 {
1792
1793 rc = send(sock_fd, ident_query, strlen(ident_query), 0);
1794 } while (rc < 0 && errno == EINTR);
1795
1796 if (rc < 0)
1797 {
1798 ereport(LOG,
1800 errmsg("could not send query to Ident server at address \"%s\", port %s: %m",
1801 remote_addr_s, ident_port)));
1802 ident_return = false;
1803 goto ident_inet_done;
1804 }
1805
1806 do
1807 {
1809
1810 rc = recv(sock_fd, ident_response, sizeof(ident_response) - 1, 0);
1811 } while (rc < 0 && errno == EINTR);
1812
1813 if (rc < 0)
1814 {
1815 ereport(LOG,
1817 errmsg("could not receive response from Ident server at address \"%s\", port %s: %m",
1818 remote_addr_s, ident_port)));
1819 ident_return = false;
1820 goto ident_inet_done;
1821 }
1822
1823 ident_response[rc] = '\0';
1824 ident_return = interpret_ident_response(ident_response, ident_user);
1825 if (!ident_return)
1826 ereport(LOG,
1827 (errmsg("invalidly formatted response from Ident server: \"%s\"",
1828 ident_response)));
1829
1830ident_inet_done:
1831 if (sock_fd != PGINVALID_SOCKET)
1832 closesocket(sock_fd);
1833 if (ident_serv)
1834 pg_freeaddrinfo_all(remote_addr.addr.ss_family, ident_serv);
1835 if (la)
1836 pg_freeaddrinfo_all(local_addr.addr.ss_family, la);
1837
1838 if (ident_return)
1839 {
1840 /*
1841 * Success! Store the identity, then check the usermap. Note that
1842 * setting the authenticated identity is done before checking the
1843 * usermap, because at this point authentication has succeeded.
1844 */
1845 set_authn_id(port, ident_user);
1846 return check_usermap(port->hba->usermap, port->user_name, ident_user, false);
1847 }
1848 return STATUS_ERROR;
1849}
#define IDENT_USERNAME_MAX
Definition: auth.c:68
#define IDENT_PORT
Definition: auth.c:71
static bool interpret_ident_response(const char *ident_response, char *ident_user)
Definition: auth.c:1599
void pg_freeaddrinfo_all(int hint_ai_family, struct addrinfo *ai)
Definition: ip.c:85
int pg_getaddrinfo_all(const char *hostname, const char *servname, const struct addrinfo *hintp, struct addrinfo **result)
Definition: ip.c:56
int pgsocket
Definition: port.h:29
#define snprintf
Definition: port.h:260
#define PGINVALID_SOCKET
Definition: port.h:31
#define closesocket
Definition: port.h:398
struct sockaddr_storage addr
Definition: pqcomm.h:32
socklen_t salen
Definition: pqcomm.h:33
#define bind(s, addr, addrlen)
Definition: win32_port.h:499
#define EINTR
Definition: win32_port.h:364
#define recv(s, buf, len, flags)
Definition: win32_port.h:504
#define send(s, buf, len, flags)
Definition: win32_port.h:505
#define socket(af, type, protocol)
Definition: win32_port.h:498
#define connect(s, name, namelen)
Definition: win32_port.h:502

References SockAddr::addr, bind, CHECK_FOR_INTERRUPTS, check_usermap(), closesocket, connect, EINTR, ereport, errcode_for_socket_access(), errmsg(), IDENT_PORT, IDENT_USERNAME_MAX, interpret_ident_response(), LOG, pg_freeaddrinfo_all(), pg_getaddrinfo_all(), pg_getnameinfo_all(), PGINVALID_SOCKET, port, recv, SockAddr::salen, send, set_authn_id(), snprintf, socket, and STATUS_ERROR.

Referenced by ClientAuthentication().

◆ interpret_ident_response()

static bool interpret_ident_response ( const char *  ident_response,
char *  ident_user 
)
static

Definition at line 1599 of file auth.c.

1601{
1602 const char *cursor = ident_response; /* Cursor into *ident_response */
1603
1604 /*
1605 * Ident's response, in the telnet tradition, should end in crlf (\r\n).
1606 */
1607 if (strlen(ident_response) < 2)
1608 return false;
1609 else if (ident_response[strlen(ident_response) - 2] != '\r')
1610 return false;
1611 else
1612 {
1613 while (*cursor != ':' && *cursor != '\r')
1614 cursor++; /* skip port field */
1615
1616 if (*cursor != ':')
1617 return false;
1618 else
1619 {
1620 /* We're positioned to colon before response type field */
1621 char response_type[80];
1622 int i; /* Index into *response_type */
1623
1624 cursor++; /* Go over colon */
1625 while (is_ident_whitespace(*cursor))
1626 cursor++; /* skip blanks */
1627 i = 0;
1628 while (*cursor != ':' && *cursor != '\r' && !is_ident_whitespace(*cursor) &&
1629 i < (int) (sizeof(response_type) - 1))
1630 response_type[i++] = *cursor++;
1631 response_type[i] = '\0';
1632 while (is_ident_whitespace(*cursor))
1633 cursor++; /* skip blanks */
1634 if (strcmp(response_type, "USERID") != 0)
1635 return false;
1636 else
1637 {
1638 /*
1639 * It's a USERID response. Good. "cursor" should be pointing
1640 * to the colon that precedes the operating system type.
1641 */
1642 if (*cursor != ':')
1643 return false;
1644 else
1645 {
1646 cursor++; /* Go over colon */
1647 /* Skip over operating system field. */
1648 while (*cursor != ':' && *cursor != '\r')
1649 cursor++;
1650 if (*cursor != ':')
1651 return false;
1652 else
1653 {
1654 cursor++; /* Go over colon */
1655 while (is_ident_whitespace(*cursor))
1656 cursor++; /* skip blanks */
1657 /* Rest of line is user name. Copy it over. */
1658 i = 0;
1659 while (*cursor != '\r' && i < IDENT_USERNAME_MAX)
1660 ident_user[i++] = *cursor++;
1661 ident_user[i] = '\0';
1662 return true;
1663 }
1664 }
1665 }
1666 }
1667 }
1668}
static bool is_ident_whitespace(const char c)
Definition: auth.c:1587
int i
Definition: isn.c:77
Definition: type.h:138

References i, IDENT_USERNAME_MAX, and is_ident_whitespace().

Referenced by ident_inet().

◆ is_ident_whitespace()

static bool is_ident_whitespace ( const char  c)
static

Definition at line 1587 of file auth.c.

1588{
1589 return c == ' ' || c == '\t';
1590}
char * c

Referenced by interpret_ident_response().

◆ PerformRadiusTransaction()

static int PerformRadiusTransaction ( const char *  server,
const char *  secret,
const char *  portstr,
const char *  identifier,
const char *  user_name,
const char *  passwd 
)
static

Definition at line 2949 of file auth.c.

2950{
2951 radius_packet radius_send_pack;
2952 radius_packet radius_recv_pack;
2953 radius_packet *packet = &radius_send_pack;
2954 radius_packet *receivepacket = &radius_recv_pack;
2955 void *radius_buffer = &radius_send_pack;
2956 void *receive_buffer = &radius_recv_pack;
2958 uint8 *cryptvector;
2959 int encryptedpasswordlen;
2960 uint8 encryptedpassword[RADIUS_MAX_PASSWORD_LENGTH];
2961 uint8 *md5trailer;
2962 int packetlength;
2963 pgsocket sock;
2964
2965 struct sockaddr_in6 localaddr;
2966 struct sockaddr_in6 remoteaddr;
2967 struct addrinfo hint;
2968 struct addrinfo *serveraddrs;
2969 int port;
2970 socklen_t addrsize;
2971 fd_set fdset;
2972 struct timeval endtime;
2973 int i,
2974 j,
2975 r;
2976
2977 /* Assign default values */
2978 if (portstr == NULL)
2979 portstr = "1812";
2980 if (identifier == NULL)
2981 identifier = "postgresql";
2982
2983 MemSet(&hint, 0, sizeof(hint));
2984 hint.ai_socktype = SOCK_DGRAM;
2985 hint.ai_family = AF_UNSPEC;
2986 port = atoi(portstr);
2987
2988 r = pg_getaddrinfo_all(server, portstr, &hint, &serveraddrs);
2989 if (r || !serveraddrs)
2990 {
2991 ereport(LOG,
2992 (errmsg("could not translate RADIUS server name \"%s\" to address: %s",
2993 server, gai_strerror(r))));
2994 if (serveraddrs)
2995 pg_freeaddrinfo_all(hint.ai_family, serveraddrs);
2996 return STATUS_ERROR;
2997 }
2998 /* XXX: add support for multiple returned addresses? */
2999
3000 /* Construct RADIUS packet */
3001 packet->code = RADIUS_ACCESS_REQUEST;
3002 packet->length = RADIUS_HEADER_LENGTH;
3004 {
3005 ereport(LOG,
3006 (errmsg("could not generate random encryption vector")));
3007 pg_freeaddrinfo_all(hint.ai_family, serveraddrs);
3008 return STATUS_ERROR;
3009 }
3010 packet->id = packet->vector[0];
3011 radius_add_attribute(packet, RADIUS_SERVICE_TYPE, (const unsigned char *) &service, sizeof(service));
3012 radius_add_attribute(packet, RADIUS_USER_NAME, (const unsigned char *) user_name, strlen(user_name));
3013 radius_add_attribute(packet, RADIUS_NAS_IDENTIFIER, (const unsigned char *) identifier, strlen(identifier));
3014
3015 /*
3016 * RADIUS password attributes are calculated as: e[0] = p[0] XOR
3017 * MD5(secret + Request Authenticator) for the first group of 16 octets,
3018 * and then: e[i] = p[i] XOR MD5(secret + e[i-1]) for the following ones
3019 * (if necessary)
3020 */
3021 encryptedpasswordlen = ((strlen(passwd) + RADIUS_VECTOR_LENGTH - 1) / RADIUS_VECTOR_LENGTH) * RADIUS_VECTOR_LENGTH;
3022 cryptvector = palloc(strlen(secret) + RADIUS_VECTOR_LENGTH);
3023 memcpy(cryptvector, secret, strlen(secret));
3024
3025 /* for the first iteration, we use the Request Authenticator vector */
3026 md5trailer = packet->vector;
3027 for (i = 0; i < encryptedpasswordlen; i += RADIUS_VECTOR_LENGTH)
3028 {
3029 const char *errstr = NULL;
3030
3031 memcpy(cryptvector + strlen(secret), md5trailer, RADIUS_VECTOR_LENGTH);
3032
3033 /*
3034 * .. and for subsequent iterations the result of the previous XOR
3035 * (calculated below)
3036 */
3037 md5trailer = encryptedpassword + i;
3038
3039 if (!pg_md5_binary(cryptvector, strlen(secret) + RADIUS_VECTOR_LENGTH,
3040 encryptedpassword + i, &errstr))
3041 {
3042 ereport(LOG,
3043 (errmsg("could not perform MD5 encryption of password: %s",
3044 errstr)));
3045 pfree(cryptvector);
3046 pg_freeaddrinfo_all(hint.ai_family, serveraddrs);
3047 return STATUS_ERROR;
3048 }
3049
3050 for (j = i; j < i + RADIUS_VECTOR_LENGTH; j++)
3051 {
3052 if (j < strlen(passwd))
3053 encryptedpassword[j] = passwd[j] ^ encryptedpassword[j];
3054 else
3055 encryptedpassword[j] = '\0' ^ encryptedpassword[j];
3056 }
3057 }
3058 pfree(cryptvector);
3059
3060 radius_add_attribute(packet, RADIUS_PASSWORD, encryptedpassword, encryptedpasswordlen);
3061
3062 /* Length needs to be in network order on the wire */
3063 packetlength = packet->length;
3064 packet->length = pg_hton16(packet->length);
3065
3066 sock = socket(serveraddrs[0].ai_family, SOCK_DGRAM, 0);
3067 if (sock == PGINVALID_SOCKET)
3068 {
3069 ereport(LOG,
3070 (errmsg("could not create RADIUS socket: %m")));
3071 pg_freeaddrinfo_all(hint.ai_family, serveraddrs);
3072 return STATUS_ERROR;
3073 }
3074
3075 memset(&localaddr, 0, sizeof(localaddr));
3076 localaddr.sin6_family = serveraddrs[0].ai_family;
3077 localaddr.sin6_addr = in6addr_any;
3078 if (localaddr.sin6_family == AF_INET6)
3079 addrsize = sizeof(struct sockaddr_in6);
3080 else
3081 addrsize = sizeof(struct sockaddr_in);
3082
3083 if (bind(sock, (struct sockaddr *) &localaddr, addrsize))
3084 {
3085 ereport(LOG,
3086 (errmsg("could not bind local RADIUS socket: %m")));
3087 closesocket(sock);
3088 pg_freeaddrinfo_all(hint.ai_family, serveraddrs);
3089 return STATUS_ERROR;
3090 }
3091
3092 if (sendto(sock, radius_buffer, packetlength, 0,
3093 serveraddrs[0].ai_addr, serveraddrs[0].ai_addrlen) < 0)
3094 {
3095 ereport(LOG,
3096 (errmsg("could not send RADIUS packet: %m")));
3097 closesocket(sock);
3098 pg_freeaddrinfo_all(hint.ai_family, serveraddrs);
3099 return STATUS_ERROR;
3100 }
3101
3102 /* Don't need the server address anymore */
3103 pg_freeaddrinfo_all(hint.ai_family, serveraddrs);
3104
3105 /*
3106 * Figure out at what time we should time out. We can't just use a single
3107 * call to select() with a timeout, since somebody can be sending invalid
3108 * packets to our port thus causing us to retry in a loop and never time
3109 * out.
3110 *
3111 * XXX: Using WaitLatchOrSocket() and doing a CHECK_FOR_INTERRUPTS() if
3112 * the latch was set would improve the responsiveness to
3113 * timeouts/cancellations.
3114 */
3115 gettimeofday(&endtime, NULL);
3116 endtime.tv_sec += RADIUS_TIMEOUT;
3117
3118 while (true)
3119 {
3120 struct timeval timeout;
3121 struct timeval now;
3122 int64 timeoutval;
3123 const char *errstr = NULL;
3124
3125 gettimeofday(&now, NULL);
3126 timeoutval = (endtime.tv_sec * 1000000 + endtime.tv_usec) - (now.tv_sec * 1000000 + now.tv_usec);
3127 if (timeoutval <= 0)
3128 {
3129 ereport(LOG,
3130 (errmsg("timeout waiting for RADIUS response from %s",
3131 server)));
3132 closesocket(sock);
3133 return STATUS_ERROR;
3134 }
3135 timeout.tv_sec = timeoutval / 1000000;
3136 timeout.tv_usec = timeoutval % 1000000;
3137
3138 FD_ZERO(&fdset);
3139 FD_SET(sock, &fdset);
3140
3141 r = select(sock + 1, &fdset, NULL, NULL, &timeout);
3142 if (r < 0)
3143 {
3144 if (errno == EINTR)
3145 continue;
3146
3147 /* Anything else is an actual error */
3148 ereport(LOG,
3149 (errmsg("could not check status on RADIUS socket: %m")));
3150 closesocket(sock);
3151 return STATUS_ERROR;
3152 }
3153 if (r == 0)
3154 {
3155 ereport(LOG,
3156 (errmsg("timeout waiting for RADIUS response from %s",
3157 server)));
3158 closesocket(sock);
3159 return STATUS_ERROR;
3160 }
3161
3162 /*
3163 * Attempt to read the response packet, and verify the contents.
3164 *
3165 * Any packet that's not actually a RADIUS packet, or otherwise does
3166 * not validate as an explicit reject, is just ignored and we retry
3167 * for another packet (until we reach the timeout). This is to avoid
3168 * the possibility to denial-of-service the login by flooding the
3169 * server with invalid packets on the port that we're expecting the
3170 * RADIUS response on.
3171 */
3172
3173 addrsize = sizeof(remoteaddr);
3174 packetlength = recvfrom(sock, receive_buffer, RADIUS_BUFFER_SIZE, 0,
3175 (struct sockaddr *) &remoteaddr, &addrsize);
3176 if (packetlength < 0)
3177 {
3178 ereport(LOG,
3179 (errmsg("could not read RADIUS response: %m")));
3180 closesocket(sock);
3181 return STATUS_ERROR;
3182 }
3183
3184 if (remoteaddr.sin6_port != pg_hton16(port))
3185 {
3186 ereport(LOG,
3187 (errmsg("RADIUS response from %s was sent from incorrect port: %d",
3188 server, pg_ntoh16(remoteaddr.sin6_port))));
3189 continue;
3190 }
3191
3192 if (packetlength < RADIUS_HEADER_LENGTH)
3193 {
3194 ereport(LOG,
3195 (errmsg("RADIUS response from %s too short: %d", server, packetlength)));
3196 continue;
3197 }
3198
3199 if (packetlength != pg_ntoh16(receivepacket->length))
3200 {
3201 ereport(LOG,
3202 (errmsg("RADIUS response from %s has corrupt length: %d (actual length %d)",
3203 server, pg_ntoh16(receivepacket->length), packetlength)));
3204 continue;
3205 }
3206
3207 if (packet->id != receivepacket->id)
3208 {
3209 ereport(LOG,
3210 (errmsg("RADIUS response from %s is to a different request: %d (should be %d)",
3211 server, receivepacket->id, packet->id)));
3212 continue;
3213 }
3214
3215 /*
3216 * Verify the response authenticator, which is calculated as
3217 * MD5(Code+ID+Length+RequestAuthenticator+Attributes+Secret)
3218 */
3219 cryptvector = palloc(packetlength + strlen(secret));
3220
3221 memcpy(cryptvector, receivepacket, 4); /* code+id+length */
3222 memcpy(cryptvector + 4, packet->vector, RADIUS_VECTOR_LENGTH); /* request
3223 * authenticator, from
3224 * original packet */
3225 if (packetlength > RADIUS_HEADER_LENGTH) /* there may be no
3226 * attributes at all */
3227 memcpy(cryptvector + RADIUS_HEADER_LENGTH,
3228 (char *) receive_buffer + RADIUS_HEADER_LENGTH,
3229 packetlength - RADIUS_HEADER_LENGTH);
3230 memcpy(cryptvector + packetlength, secret, strlen(secret));
3231
3232 if (!pg_md5_binary(cryptvector,
3233 packetlength + strlen(secret),
3234 encryptedpassword, &errstr))
3235 {
3236 ereport(LOG,
3237 (errmsg("could not perform MD5 encryption of received packet: %s",
3238 errstr)));
3239 pfree(cryptvector);
3240 continue;
3241 }
3242 pfree(cryptvector);
3243
3244 if (memcmp(receivepacket->vector, encryptedpassword, RADIUS_VECTOR_LENGTH) != 0)
3245 {
3246 ereport(LOG,
3247 (errmsg("RADIUS response from %s has incorrect MD5 signature",
3248 server)));
3249 continue;
3250 }
3251
3252 if (receivepacket->code == RADIUS_ACCESS_ACCEPT)
3253 {
3254 closesocket(sock);
3255 return STATUS_OK;
3256 }
3257 else if (receivepacket->code == RADIUS_ACCESS_REJECT)
3258 {
3259 closesocket(sock);
3260 return STATUS_EOF;
3261 }
3262 else
3263 {
3264 ereport(LOG,
3265 (errmsg("RADIUS response from %s has invalid code (%d) for user \"%s\"",
3266 server, receivepacket->code, user_name)));
3267 continue;
3268 }
3269 } /* while (true) */
3270}
static void radius_add_attribute(radius_packet *packet, uint8 type, const unsigned char *data, int len)
Definition: auth.c:2828
#define RADIUS_HEADER_LENGTH
Definition: auth.c:2787
#define RADIUS_AUTHENTICATE_ONLY
Definition: auth.c:2822
#define RADIUS_ACCESS_REQUEST
Definition: auth.c:2811
#define RADIUS_NAS_IDENTIFIER
Definition: auth.c:2819
#define RADIUS_TIMEOUT
Definition: auth.c:2825
#define RADIUS_USER_NAME
Definition: auth.c:2816
#define RADIUS_SERVICE_TYPE
Definition: auth.c:2818
#define RADIUS_PASSWORD
Definition: auth.c:2817
#define RADIUS_ACCESS_REJECT
Definition: auth.c:2813
#define RADIUS_ACCESS_ACCEPT
Definition: auth.c:2812
#define RADIUS_VECTOR_LENGTH
Definition: auth.c:2786
#define RADIUS_BUFFER_SIZE
Definition: auth.c:2791
Datum now(PG_FUNCTION_ARGS)
Definition: timestamp.c:1609
int64_t int64
Definition: c.h:538
int32_t int32
Definition: c.h:537
#define MemSet(start, val, len)
Definition: c.h:1022
int j
Definition: isn.c:78
void * palloc(Size size)
Definition: mcxt.c:1365
bool pg_md5_binary(const void *buff, size_t len, uint8 *outbuf, const char **errstr)
Definition: md5_common.c:108
#define pg_hton32(x)
Definition: pg_bswap.h:121
#define pg_hton16(x)
Definition: pg_bswap.h:120
#define pg_ntoh16(x)
Definition: pg_bswap.h:124
static char portstr[16]
Definition: pg_regress.c:116
unsigned int socklen_t
Definition: port.h:40
uint8 vector[RADIUS_VECTOR_LENGTH]
Definition: auth.c:2805
uint16 length
Definition: auth.c:2804
uint8 code
Definition: auth.c:2802
uint8 id
Definition: auth.c:2803
#define select(n, r, w, e, timeout)
Definition: win32_port.h:503
int gettimeofday(struct timeval *tp, void *tzp)

References bind, closesocket, radius_packet::code, EINTR, ereport, errmsg(), gai_strerror(), gettimeofday(), i, radius_packet::id, j, radius_packet::length, LOG, MemSet, now(), palloc(), pfree(), pg_freeaddrinfo_all(), pg_getaddrinfo_all(), pg_hton16, pg_hton32, pg_md5_binary(), pg_ntoh16, pg_strong_random(), PGINVALID_SOCKET, port, portstr, RADIUS_ACCESS_ACCEPT, RADIUS_ACCESS_REJECT, RADIUS_ACCESS_REQUEST, radius_add_attribute(), RADIUS_AUTHENTICATE_ONLY, RADIUS_BUFFER_SIZE, RADIUS_HEADER_LENGTH, RADIUS_MAX_PASSWORD_LENGTH, RADIUS_NAS_IDENTIFIER, RADIUS_PASSWORD, RADIUS_SERVICE_TYPE, RADIUS_TIMEOUT, RADIUS_USER_NAME, RADIUS_VECTOR_LENGTH, select, socket, STATUS_EOF, STATUS_ERROR, STATUS_OK, and radius_packet::vector.

Referenced by CheckRADIUSAuth().

◆ radius_add_attribute()

static void radius_add_attribute ( radius_packet packet,
uint8  type,
const unsigned char *  data,
int  len 
)
static

Definition at line 2828 of file auth.c.

2829{
2830 radius_attribute *attr;
2831
2832 if (packet->length + len > RADIUS_BUFFER_SIZE)
2833 {
2834 /*
2835 * With remotely realistic data, this can never happen. But catch it
2836 * just to make sure we don't overrun a buffer. We'll just skip adding
2837 * the broken attribute, which will in the end cause authentication to
2838 * fail.
2839 */
2840 elog(WARNING,
2841 "adding attribute code %d with length %d to radius packet would create oversize packet, ignoring",
2842 type, len);
2843 return;
2844 }
2845
2846 attr = (radius_attribute *) ((unsigned char *) packet + packet->length);
2847 attr->attribute = type;
2848 attr->length = len + 2; /* total size includes type and length */
2849 memcpy(attr->data, data, len);
2850 packet->length += attr->length;
2851}
#define WARNING
Definition: elog.h:36
#define elog(elevel,...)
Definition: elog.h:226
const void size_t len
const void * data
uint8 data[FLEXIBLE_ARRAY_MEMBER]
Definition: auth.c:2797
uint8 length
Definition: auth.c:2796
uint8 attribute
Definition: auth.c:2795
const char * type

References radius_attribute::attribute, radius_attribute::data, data, elog, len, radius_attribute::length, radius_packet::length, RADIUS_BUFFER_SIZE, type, and WARNING.

Referenced by PerformRadiusTransaction().

◆ recv_password_packet()

static char * recv_password_packet ( Port port)
static

Definition at line 707 of file auth.c.

708{
710 int mtype;
711
713
714 /* Expect 'p' message type */
715 mtype = pq_getbyte();
716 if (mtype != PqMsg_PasswordMessage)
717 {
718 /*
719 * If the client just disconnects without offering a password, don't
720 * make a log entry. This is legal per protocol spec and in fact
721 * commonly done by psql, so complaining just clutters the log.
722 */
723 if (mtype != EOF)
725 (errcode(ERRCODE_PROTOCOL_VIOLATION),
726 errmsg("expected password response, got message type %d",
727 mtype)));
728 return NULL; /* EOF or bad message type */
729 }
730
732 if (pq_getmessage(&buf, PG_MAX_AUTH_TOKEN_LENGTH)) /* receive password */
733 {
734 /* EOF - pq_getmessage already logged a suitable message */
735 pfree(buf.data);
736 return NULL;
737 }
738
739 /*
740 * Apply sanity check: password packet length should agree with length of
741 * contained string. Note it is safe to use strlen here because
742 * StringInfo is guaranteed to have an appended '\0'.
743 */
744 if (strlen(buf.data) + 1 != buf.len)
746 (errcode(ERRCODE_PROTOCOL_VIOLATION),
747 errmsg("invalid password packet size")));
748
749 /*
750 * Don't allow an empty password. Libpq treats an empty password the same
751 * as no password at all, and won't even try to authenticate. But other
752 * clients might, so allowing it would be confusing.
753 *
754 * Note that this only catches an empty password sent by the client in
755 * plaintext. There's also a check in CREATE/ALTER USER that prevents an
756 * empty string from being stored as a user's password in the first place.
757 * We rely on that for MD5 and SCRAM authentication, but we still need
758 * this check here, to prevent an empty password from being used with
759 * authentication methods that check the password against an external
760 * system, like PAM, LDAP and RADIUS.
761 */
762 if (buf.len == 1)
765 errmsg("empty password returned by client")));
766
767 /* Do not echo password to logs, for security. */
768 elog(DEBUG5, "received password packet");
769
770 /*
771 * Return the received string. Note we do not attempt to do any
772 * character-set conversion on it; since we don't yet know the client's
773 * encoding, there wouldn't be much point.
774 */
775 return buf.data;
776}
#define PG_MAX_AUTH_TOKEN_LENGTH
Definition: auth.h:33
#define ERROR
Definition: elog.h:39
#define DEBUG5
Definition: elog.h:26
int pq_getmessage(StringInfo s, int maxlen)
Definition: pqcomm.c:1203
int pq_getbyte(void)
Definition: pqcomm.c:963
void pq_startmsgread(void)
Definition: pqcomm.c:1141
#define PqMsg_PasswordMessage
Definition: protocol.h:31
void initStringInfo(StringInfo str)
Definition: stringinfo.c:97

References buf, DEBUG5, elog, ereport, errcode(), ERRCODE_INVALID_PASSWORD, errmsg(), ERROR, initStringInfo(), pfree(), PG_MAX_AUTH_TOKEN_LENGTH, pq_getbyte(), pq_getmessage(), pq_startmsgread(), and PqMsg_PasswordMessage.

Referenced by CheckMD5Auth(), CheckPasswordAuth(), and CheckRADIUSAuth().

◆ sendAuthRequest()

void sendAuthRequest ( Port port,
AuthRequest  areq,
const void *  extradata,
int  extralen 
)

Definition at line 677 of file auth.c.

678{
680
682
684 pq_sendint32(&buf, (int32) areq);
685 if (extralen > 0)
686 pq_sendbytes(&buf, extradata, extralen);
687
689
690 /*
691 * Flush message so client will see it, except for AUTH_REQ_OK and
692 * AUTH_REQ_SASL_FIN, which need not be sent until we are ready for
693 * queries.
694 */
695 if (areq != AUTH_REQ_OK && areq != AUTH_REQ_SASL_FIN)
696 pq_flush();
697
699}
#define pq_flush()
Definition: libpq.h:46
void pq_sendbytes(StringInfo buf, const void *data, int datalen)
Definition: pqformat.c:126
void pq_endmessage(StringInfo buf)
Definition: pqformat.c:296
void pq_beginmessage(StringInfo buf, char msgtype)
Definition: pqformat.c:88
static void pq_sendint32(StringInfo buf, uint32 i)
Definition: pqformat.h:144
#define PqMsg_AuthenticationRequest
Definition: protocol.h:50
#define AUTH_REQ_SASL_FIN
Definition: protocol.h:108

References AUTH_REQ_OK, AUTH_REQ_SASL_FIN, buf, CHECK_FOR_INTERRUPTS, pq_beginmessage(), pq_endmessage(), pq_flush, pq_sendbytes(), pq_sendint32(), and PqMsg_AuthenticationRequest.

Referenced by CheckMD5Auth(), CheckPasswordAuth(), CheckRADIUSAuth(), CheckSASLAuth(), and ClientAuthentication().

◆ set_authn_id()

void set_authn_id ( Port port,
const char *  id 
)

Definition at line 341 of file auth.c.

342{
343 Assert(id);
344
346 {
347 /*
348 * An existing authn_id should never be overwritten; that means two
349 * authentication providers are fighting (or one is fighting itself).
350 * Don't leak any authn details to the client, but don't let the
351 * connection continue, either.
352 */
354 (errmsg("authentication identifier set more than once"),
355 errdetail_log("previous identifier: \"%s\"; new identifier: \"%s\"",
357 }
358
360 MyClientConnectionInfo.auth_method = port->hba->auth_method;
361
363 {
364 ereport(LOG,
365 errmsg("connection authenticated: identity=\"%s\" method=%s "
366 "(%s:%d)",
369 port->hba->sourcefile, port->hba->linenumber));
370 }
371}
char * MemoryContextStrdup(MemoryContext context, const char *string)
Definition: mcxt.c:1746
UserAuth auth_method
Definition: libpq-be.h:105

References Assert(), ClientConnectionInfo::auth_method, ClientConnectionInfo::authn_id, ereport, errdetail_log(), errmsg(), FATAL, hba_authname(), LOG, LOG_CONNECTION_AUTHENTICATION, log_connections, MemoryContextStrdup(), MyClientConnectionInfo, port, and TopMemoryContext.

Referenced by auth_peer(), CheckPasswordAuth(), CheckPWChallengeAuth(), CheckRADIUSAuth(), ident_inet(), and validate().

Variable Documentation

◆ ClientAuthentication_hook

ClientAuthentication_hook_type ClientAuthentication_hook = NULL

Definition at line 223 of file auth.c.

Referenced by _PG_init(), ClientAuthentication(), and sepgsql_init_client_label().

◆ pg_gss_accept_delegation

bool pg_gss_accept_delegation

Definition at line 175 of file auth.c.

Referenced by secure_open_gssapi().

◆ pg_krb_caseins_users

bool pg_krb_caseins_users

Definition at line 174 of file auth.c.

◆ pg_krb_server_keyfile

char* pg_krb_server_keyfile

Definition at line 173 of file auth.c.

Referenced by secure_open_gssapi().