]> granicus.if.org Git - postgresql/blob - src/backend/libpq/auth.c
a24f0978466a126510b41053399fac4d62c58184
[postgresql] / src / backend / libpq / auth.c
1 /*-------------------------------------------------------------------------
2  *
3  * auth.c
4  *        Routines to handle network authentication
5  *
6  * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  *        $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.105 2003/07/23 23:30:40 tgl Exp $
12  *
13  *-------------------------------------------------------------------------
14  */
15
16 #include "postgres.h"
17
18 #include <sys/param.h>
19 #include <sys/socket.h>
20 #if defined(HAVE_STRUCT_CMSGCRED) || defined(HAVE_STRUCT_FCRED) || defined(HAVE_STRUCT_SOCKCRED)
21 #include <sys/uio.h>
22 #include <sys/ucred.h>
23 #include <errno.h>
24 #endif
25 #include <netinet/in.h>
26 #include <arpa/inet.h>
27
28 #include "libpq/auth.h"
29 #include "libpq/crypt.h"
30 #include "libpq/hba.h"
31 #include "libpq/libpq.h"
32 #include "libpq/pqcomm.h"
33 #include "libpq/pqformat.h"
34 #include "miscadmin.h"
35 #include "storage/ipc.h"
36
37
38 static void sendAuthRequest(Port *port, AuthRequest areq);
39 static void auth_failed(Port *port, int status);
40 static char *recv_password_packet(Port *port);
41 static int      recv_and_check_password_packet(Port *port);
42
43 char       *pg_krb_server_keyfile;
44
45 #ifdef USE_PAM
46 #ifdef HAVE_PAM_PAM_APPL_H
47 #include <pam/pam_appl.h>
48 #endif
49 #ifdef HAVE_SECURITY_PAM_APPL_H
50 #include <security/pam_appl.h>
51 #endif
52
53 #define PGSQL_PAM_SERVICE "postgresql"  /* Service name passed to PAM */
54
55 static int      CheckPAMAuth(Port *port, char *user, char *password);
56 static int pam_passwd_conv_proc(int num_msg, const struct pam_message ** msg,
57                                          struct pam_response ** resp, void *appdata_ptr);
58
59 static struct pam_conv pam_passw_conv = {
60         &pam_passwd_conv_proc,
61         NULL
62 };
63
64 static char *pam_passwd = NULL; /* Workaround for Solaris 2.6 brokenness */
65 static Port *pam_port_cludge;   /* Workaround for passing "Port *port"
66                                                                  * into pam_passwd_conv_proc */
67 #endif   /* USE_PAM */
68
69 #ifdef KRB4
70 /*----------------------------------------------------------------
71  * MIT Kerberos authentication system - protocol version 4
72  *----------------------------------------------------------------
73  */
74
75 #include "krb.h"
76
77 /*
78  * pg_krb4_recvauth -- server routine to receive authentication information
79  *                                         from the client
80  *
81  * Nothing unusual here, except that we compare the username obtained from
82  * the client's setup packet to the authenticated name.  (We have to retain
83  * the name in the setup packet since we have to retain the ability to handle
84  * unauthenticated connections.)
85  */
86 static int
87 pg_krb4_recvauth(Port *port)
88 {
89         long            krbopts = 0;    /* one-way authentication */
90         KTEXT_ST        clttkt;
91         char            instance[INST_SZ + 1],
92                                 version[KRB_SENDAUTH_VLEN + 1];
93         AUTH_DAT        auth_data;
94         Key_schedule key_sched;
95         int                     status;
96
97         strcpy(instance, "*");          /* don't care, but arg gets expanded
98                                                                  * anyway */
99         status = krb_recvauth(krbopts,
100                                                   port->sock,
101                                                   &clttkt,
102                                                   PG_KRB_SRVNAM,
103                                                   instance,
104                                                   &port->raddr.in,
105                                                   &port->laddr.in,
106                                                   &auth_data,
107                                                   pg_krb_server_keyfile,
108                                                   key_sched,
109                                                   version);
110         if (status != KSUCCESS)
111         {
112                 ereport(LOG,
113                                 (errmsg("kerberos error: %s", krb_err_txt[status])));
114                 return STATUS_ERROR;
115         }
116         if (strncmp(version, PG_KRB4_VERSION, KRB_SENDAUTH_VLEN) != 0)
117         {
118                 ereport(LOG,
119                                 (errmsg("kerberos protocol version \"%s\" != \"%s\"",
120                                                 version, PG_KRB4_VERSION)));
121                 return STATUS_ERROR;
122         }
123         if (strncmp(port->user_name, auth_data.pname, SM_DATABASE_USER) != 0)
124         {
125                 ereport(LOG,
126                                 (errmsg("kerberos user name \"%s\" != \"%s\"",
127                                                 port->user_name, auth_data.pname)));
128                 return STATUS_ERROR;
129         }
130         return STATUS_OK;
131 }
132
133 #else
134
135 static int
136 pg_krb4_recvauth(Port *port)
137 {
138         ereport(LOG,
139                         (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
140                          errmsg("kerberos v4 not implemented on this server")));
141         return STATUS_ERROR;
142 }
143 #endif   /* KRB4 */
144
145
146 #ifdef KRB5
147 /*----------------------------------------------------------------
148  * MIT Kerberos authentication system - protocol version 5
149  *----------------------------------------------------------------
150  */
151
152 #include <krb5.h>
153 #include <com_err.h>
154
155 /*
156  * pg_an_to_ln -- return the local name corresponding to an authentication
157  *                                name
158  *
159  * XXX Assumes that the first aname component is the user name.  This is NOT
160  *         necessarily so, since an aname can actually be something out of your
161  *         worst X.400 nightmare, like
162  *                ORGANIZATION=U. C. Berkeley/NAME=Paul M. Aoki@CS.BERKELEY.EDU
163  *         Note that the MIT an_to_ln code does the same thing if you don't
164  *         provide an aname mapping database...it may be a better idea to use
165  *         krb5_an_to_ln, except that it punts if multiple components are found,
166  *         and we can't afford to punt.
167  */
168 static char *
169 pg_an_to_ln(char *aname)
170 {
171         char       *p;
172
173         if ((p = strchr(aname, '/')) || (p = strchr(aname, '@')))
174                 *p = '\0';
175         return aname;
176 }
177
178
179 /*
180  * Various krb5 state which is not connection specfic, and a flag to
181  * indicate whether we have initialised it yet.
182  */
183 static int      pg_krb5_initialised;
184 static krb5_context pg_krb5_context;
185 static krb5_keytab pg_krb5_keytab;
186 static krb5_principal pg_krb5_server;
187
188
189 static int
190 pg_krb5_init(void)
191 {
192         krb5_error_code retval;
193
194         if (pg_krb5_initialised)
195                 return STATUS_OK;
196
197         retval = krb5_init_context(&pg_krb5_context);
198         if (retval)
199         {
200                 ereport(LOG,
201                                 (errmsg("kerberos init returned error %d",
202                                                 retval)));
203                 com_err("postgres", retval, "while initializing krb5");
204                 return STATUS_ERROR;
205         }
206
207         retval = krb5_kt_resolve(pg_krb5_context, pg_krb_server_keyfile, &pg_krb5_keytab);
208         if (retval)
209         {
210                 ereport(LOG,
211                                 (errmsg("kerberos keytab resolve returned error %d",
212                                                 retval)));
213                 com_err("postgres", retval, "while resolving keytab file \"%s\"",
214                                 pg_krb_server_keyfile);
215                 krb5_free_context(pg_krb5_context);
216                 return STATUS_ERROR;
217         }
218
219         retval = krb5_sname_to_principal(pg_krb5_context, NULL, PG_KRB_SRVNAM,
220                                                                          KRB5_NT_SRV_HST, &pg_krb5_server);
221         if (retval)
222         {
223                 ereport(LOG,
224                                 (errmsg("kerberos sname_to_principal(\"%s\") returned error %d",
225                                                 PG_KRB_SRVNAM, retval)));
226                 com_err("postgres", retval,
227                                 "while getting server principal for service \"%s\"",
228                                 PG_KRB_SRVNAM);
229                 krb5_kt_close(pg_krb5_context, pg_krb5_keytab);
230                 krb5_free_context(pg_krb5_context);
231                 return STATUS_ERROR;
232         }
233
234         pg_krb5_initialised = 1;
235         return STATUS_OK;
236 }
237
238
239 /*
240  * pg_krb5_recvauth -- server routine to receive authentication information
241  *                                         from the client
242  *
243  * We still need to compare the username obtained from the client's setup
244  * packet to the authenticated name, as described in pg_krb4_recvauth.  This
245  * is a bit more problematic in v5, as described above in pg_an_to_ln.
246  *
247  * We have our own keytab file because postgres is unlikely to run as root,
248  * and so cannot read the default keytab.
249  */
250 static int
251 pg_krb5_recvauth(Port *port)
252 {
253         krb5_error_code retval;
254         int                     ret;
255         krb5_auth_context auth_context = NULL;
256         krb5_ticket *ticket;
257         char       *kusername;
258
259         ret = pg_krb5_init();
260         if (ret != STATUS_OK)
261                 return ret;
262
263         retval = krb5_recvauth(pg_krb5_context, &auth_context,
264                                                    (krb5_pointer) & port->sock, PG_KRB_SRVNAM,
265                                                    pg_krb5_server, 0, pg_krb5_keytab, &ticket);
266         if (retval)
267         {
268                 ereport(LOG,
269                                 (errmsg("kerberos recvauth returned error %d",
270                                                 retval)));
271                 com_err("postgres", retval, "from krb5_recvauth");
272                 return STATUS_ERROR;
273         }
274
275         /*
276          * The "client" structure comes out of the ticket and is therefore
277          * authenticated.  Use it to check the username obtained from the
278          * postmaster startup packet.
279          *
280          * I have no idea why this is considered necessary.
281          */
282 #if defined(HAVE_KRB5_TICKET_ENC_PART2)
283         retval = krb5_unparse_name(pg_krb5_context,
284                                                            ticket->enc_part2->client, &kusername);
285 #elif defined(HAVE_KRB5_TICKET_CLIENT)
286         retval = krb5_unparse_name(pg_krb5_context,
287                                                            ticket->client, &kusername);
288 #else
289 #error "bogus configuration"
290 #endif
291         if (retval)
292         {
293                 ereport(LOG,
294                                 (errmsg("kerberos unparse_name returned error %d",
295                                                 retval)));
296                 com_err("postgres", retval, "while unparsing client name");
297                 krb5_free_ticket(pg_krb5_context, ticket);
298                 krb5_auth_con_free(pg_krb5_context, auth_context);
299                 return STATUS_ERROR;
300         }
301
302         kusername = pg_an_to_ln(kusername);
303         if (strncmp(port->user_name, kusername, SM_DATABASE_USER))
304         {
305                 ereport(LOG,
306                                 (errmsg("kerberos user name \"%s\" != \"%s\"",
307                                                 port->user_name, kusername)));
308                 ret = STATUS_ERROR;
309         }
310         else
311                 ret = STATUS_OK;
312
313         krb5_free_ticket(pg_krb5_context, ticket);
314         krb5_auth_con_free(pg_krb5_context, auth_context);
315         free(kusername);
316
317         return ret;
318 }
319
320 #else
321
322 static int
323 pg_krb5_recvauth(Port *port)
324 {
325         ereport(LOG,
326                         (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
327                          errmsg("kerberos v5 not implemented on this server")));
328         return STATUS_ERROR;
329 }
330 #endif   /* KRB5 */
331
332
333 /*
334  * Tell the user the authentication failed, but not (much about) why.
335  *
336  * There is a tradeoff here between security concerns and making life
337  * unnecessarily difficult for legitimate users.  We would not, for example,
338  * want to report the password we were expecting to receive...
339  * But it seems useful to report the username and authorization method
340  * in use, and these are items that must be presumed known to an attacker
341  * anyway.
342  * Note that many sorts of failure report additional information in the
343  * postmaster log, which we hope is only readable by good guys.
344  */
345 static void
346 auth_failed(Port *port, int status)
347 {
348         const char *authmethod = "Unknown auth method:";
349
350         /*
351          * If we failed due to EOF from client, just quit; there's no point in
352          * trying to send a message to the client, and not much point in
353          * logging the failure in the postmaster log.  (Logging the failure
354          * might be desirable, were it not for the fact that libpq closes the
355          * connection unceremoniously if challenged for a password when it
356          * hasn't got one to send.  We'll get a useless log entry for every
357          * psql connection under password auth, even if it's perfectly
358          * successful, if we log STATUS_EOF events.)
359          */
360         if (status == STATUS_EOF)
361                 proc_exit(0);
362
363         switch (port->auth_method)
364         {
365                 case uaReject:
366                         authmethod = "Rejected host:";
367                         break;
368                 case uaKrb4:
369                         authmethod = "Kerberos4";
370                         break;
371                 case uaKrb5:
372                         authmethod = "Kerberos5";
373                         break;
374                 case uaTrust:
375                         authmethod = "Trusted";
376                         break;
377                 case uaIdent:
378                         authmethod = "IDENT";
379                         break;
380                 case uaMD5:
381                 case uaCrypt:
382                 case uaPassword:
383                         authmethod = "Password";
384                         break;
385 #ifdef USE_PAM
386                 case uaPAM:
387                         authmethod = "PAM";
388                         break;
389 #endif   /* USE_PAM */
390         }
391
392         ereport(FATAL,
393                         (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
394                          errmsg("%s authentication failed for user \"%s\"",
395                                         authmethod, port->user_name)));
396         /* doesn't return */
397 }
398
399
400 /*
401  * Client authentication starts here.  If there is an error, this
402  * function does not return and the backend process is terminated.
403  */
404 void
405 ClientAuthentication(Port *port)
406 {
407         int                     status = STATUS_ERROR;
408
409         /*
410          * Get the authentication method to use for this frontend/database
411          * combination.  Note: a failure return indicates a problem with the
412          * hba config file, not with the request.  hba.c should have dropped
413          * an error message into the postmaster logfile if it failed.
414          */
415         if (hba_getauthmethod(port) != STATUS_OK)
416                 ereport(FATAL,
417                                 (errcode(ERRCODE_CONFIG_FILE_ERROR),
418                                  errmsg("missing or erroneous pg_hba.conf file"),
419                                  errhint("See postmaster log for details.")));
420
421         switch (port->auth_method)
422         {
423                 case uaReject:
424
425                         /*
426                          * This could have come from an explicit "reject" entry in
427                          * pg_hba.conf, but more likely it means there was no matching
428                          * entry.  Take pity on the poor user and issue a helpful
429                          * error message.  NOTE: this is not a security breach,
430                          * because all the info reported here is known at the frontend
431                          * and must be assumed known to bad guys. We're merely helping
432                          * out the less clueful good guys.
433                          */
434                         {
435                                 char    hostinfo[NI_MAXHOST];
436
437                                 getnameinfo_all(&port->raddr.addr, port->raddr.salen,
438                                                                 hostinfo, sizeof(hostinfo),
439                                                                 NULL, 0,
440                                                                 NI_NUMERICHOST);
441
442                                 ereport(FATAL,
443                                                 (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
444                                                  errmsg("no pg_hba.conf entry for host \"%s\", user \"%s\", database \"%s\"",
445                                                                 hostinfo, port->user_name, port->database_name)));
446                                 break;
447                         }
448
449                 case uaKrb4:
450                         /* Kerberos 4 only seems to work with AF_INET. */
451                         if (port->raddr.addr.ss_family != AF_INET
452                                 || port->laddr.addr.ss_family != AF_INET)
453                                 ereport(FATAL,
454                                                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
455                                                  errmsg("kerberos 4 only supports IPv4 connections")));
456                         sendAuthRequest(port, AUTH_REQ_KRB4);
457                         status = pg_krb4_recvauth(port);
458                         break;
459
460                 case uaKrb5:
461                         sendAuthRequest(port, AUTH_REQ_KRB5);
462                         status = pg_krb5_recvauth(port);
463                         break;
464
465                 case uaIdent:
466 #if defined(HAVE_STRUCT_CMSGCRED) || defined(HAVE_STRUCT_FCRED) || \
467         (defined(HAVE_STRUCT_SOCKCRED) && defined(LOCAL_CREDS)) && \
468         !defined(HAVE_GETPEEREID) && !defined(SO_PEERCRED)
469
470                         /*
471                          * If we are doing ident on unix-domain sockets, use SCM_CREDS
472                          * only if it is defined and SO_PEERCRED isn't.
473                          */
474 #if defined(HAVE_STRUCT_FCRED) || defined(HAVE_STRUCT_SOCKCRED)
475
476                         /*
477                          * Receive credentials on next message receipt, BSD/OS,
478                          * NetBSD. We need to set this before the client sends the
479                          * next packet.
480                          */
481                         {
482                                 int                     on = 1;
483
484                                 if (setsockopt(port->sock, 0, LOCAL_CREDS, &on, sizeof(on)) < 0)
485                                         ereport(FATAL,
486                                                         (errcode_for_socket_access(),
487                                                          errmsg("failed to enable credential receipt: %m")));
488                         }
489 #endif
490                         if (port->raddr.addr.ss_family == AF_UNIX)
491                                 sendAuthRequest(port, AUTH_REQ_SCM_CREDS);
492 #endif
493                         status = authident(port);
494                         break;
495
496                 case uaMD5:
497                         sendAuthRequest(port, AUTH_REQ_MD5);
498                         status = recv_and_check_password_packet(port);
499                         break;
500
501                 case uaCrypt:
502                         sendAuthRequest(port, AUTH_REQ_CRYPT);
503                         status = recv_and_check_password_packet(port);
504                         break;
505
506                 case uaPassword:
507                         sendAuthRequest(port, AUTH_REQ_PASSWORD);
508                         status = recv_and_check_password_packet(port);
509                         break;
510
511 #ifdef USE_PAM
512                 case uaPAM:
513                         pam_port_cludge = port;
514                         status = CheckPAMAuth(port, port->user_name, "");
515                         break;
516 #endif   /* USE_PAM */
517
518                 case uaTrust:
519                         status = STATUS_OK;
520                         break;
521         }
522
523         if (status == STATUS_OK)
524                 sendAuthRequest(port, AUTH_REQ_OK);
525         else
526                 auth_failed(port, status);
527 }
528
529
530 /*
531  * Send an authentication request packet to the frontend.
532  */
533 static void
534 sendAuthRequest(Port *port, AuthRequest areq)
535 {
536         StringInfoData buf;
537
538         pq_beginmessage(&buf, 'R');
539         pq_sendint(&buf, (int32) areq, sizeof(int32));
540
541         /* Add the salt for encrypted passwords. */
542         if (areq == AUTH_REQ_MD5)
543                 pq_sendbytes(&buf, port->md5Salt, 4);
544         else if (areq == AUTH_REQ_CRYPT)
545                 pq_sendbytes(&buf, port->cryptSalt, 2);
546
547         pq_endmessage(&buf);
548
549         /*
550          * Flush message so client will see it, except for AUTH_REQ_OK, which
551          * need not be sent until we are ready for queries.
552          */
553         if (areq != AUTH_REQ_OK)
554                 pq_flush();
555 }
556
557
558 #ifdef USE_PAM
559
560 /*
561  * PAM conversation function
562  */
563
564 static int
565 pam_passwd_conv_proc(int num_msg, const struct pam_message ** msg,
566                                          struct pam_response ** resp, void *appdata_ptr)
567 {
568         if (num_msg != 1 || msg[0]->msg_style != PAM_PROMPT_ECHO_OFF)
569         {
570                 switch (msg[0]->msg_style)
571                 {
572                         case PAM_ERROR_MSG:
573                                 ereport(LOG,
574                                                 (errmsg("error from underlying PAM layer: %s",
575                                                                 msg[0]->msg)));
576                                 return PAM_CONV_ERR;
577                         default:
578                                 ereport(LOG,
579                                                 (errmsg("unsupported PAM conversation %d/%s",
580                                                                 msg[0]->msg_style, msg[0]->msg)));
581                                 return PAM_CONV_ERR;
582                 }
583         }
584
585         if (!appdata_ptr)
586         {
587                 /*
588                  * Workaround for Solaris 2.6 where the PAM library is broken and
589                  * does not pass appdata_ptr to the conversation routine
590                  */
591                 appdata_ptr = pam_passwd;
592         }
593
594         /*
595          * Password wasn't passed to PAM the first time around - let's go ask
596          * the client to send a password, which we then stuff into PAM.
597          */
598         if (strlen(appdata_ptr) == 0)
599         {
600                 char       *passwd;
601
602                 sendAuthRequest(pam_port_cludge, AUTH_REQ_PASSWORD);
603                 passwd = recv_password_packet(pam_port_cludge);
604
605                 if (passwd == NULL)
606                         return PAM_CONV_ERR;    /* client didn't want to send password */
607
608                 if (strlen(passwd) == 0)
609                 {
610                         ereport(LOG,
611                                         (errmsg("empty password returned by client")));
612                         return PAM_CONV_ERR;
613                 }
614                 appdata_ptr = passwd;
615         }
616
617         /*
618          * Explicitly not using palloc here - PAM will free this memory in
619          * pam_end()
620          */
621         *resp = calloc(num_msg, sizeof(struct pam_response));
622         if (!*resp)
623         {
624                 ereport(LOG,
625                                 (errcode(ERRCODE_OUT_OF_MEMORY),
626                                  errmsg("out of memory")));
627                 return PAM_CONV_ERR;
628         }
629
630         (*resp)[0].resp = strdup((char *) appdata_ptr);
631         (*resp)[0].resp_retcode = 0;
632
633         return ((*resp)[0].resp ? PAM_SUCCESS : PAM_CONV_ERR);
634 }
635
636
637 /*
638  * Check authentication against PAM.
639  */
640 static int
641 CheckPAMAuth(Port *port, char *user, char *password)
642 {
643         int                     retval;
644         pam_handle_t *pamh = NULL;
645
646         /*
647          * Apparently, Solaris 2.6 is broken, and needs ugly static variable
648          * workaround
649          */
650         pam_passwd = password;
651
652         /*
653          * Set the application data portion of the conversation struct This is
654          * later used inside the PAM conversation to pass the password to the
655          * authentication module.
656          */
657         pam_passw_conv.appdata_ptr = (char *) password;         /* from password above,
658                                                                                                                  * not allocated */
659
660         /* Optionally, one can set the service name in pg_hba.conf */
661         if (port->auth_arg && port->auth_arg[0] != '\0')
662                 retval = pam_start(port->auth_arg, "pgsql@",
663                                                    &pam_passw_conv, &pamh);
664         else
665                 retval = pam_start(PGSQL_PAM_SERVICE, "pgsql@",
666                                                    &pam_passw_conv, &pamh);
667
668         if (retval != PAM_SUCCESS)
669         {
670                 ereport(LOG,
671                                 (errmsg("Failed to create PAM authenticator: %s",
672                                                 pam_strerror(pamh, retval))));
673                 pam_passwd = NULL;              /* Unset pam_passwd */
674                 return STATUS_ERROR;
675         }
676
677         retval = pam_set_item(pamh, PAM_USER, user);
678
679         if (retval != PAM_SUCCESS)
680         {
681                 ereport(LOG,
682                                 (errmsg("pam_set_item(PAM_USER) failed: %s",
683                                                 pam_strerror(pamh, retval))));
684                 pam_passwd = NULL;              /* Unset pam_passwd */
685                 return STATUS_ERROR;
686         }
687
688         retval = pam_set_item(pamh, PAM_CONV, &pam_passw_conv);
689
690         if (retval != PAM_SUCCESS)
691         {
692                 ereport(LOG,
693                                 (errmsg("pam_set_item(PAM_CONV) failed: %s",
694                                                 pam_strerror(pamh, retval))));
695                 pam_passwd = NULL;              /* Unset pam_passwd */
696                 return STATUS_ERROR;
697         }
698
699         retval = pam_authenticate(pamh, 0);
700
701         if (retval != PAM_SUCCESS)
702         {
703                 ereport(LOG,
704                                 (errmsg("pam_authenticate failed: %s",
705                                                 pam_strerror(pamh, retval))));
706                 pam_passwd = NULL;              /* Unset pam_passwd */
707                 return STATUS_ERROR;
708         }
709
710         retval = pam_acct_mgmt(pamh, 0);
711
712         if (retval != PAM_SUCCESS)
713         {
714                 ereport(LOG,
715                                 (errmsg("pam_acct_mgmt failed: %s",
716                                                 pam_strerror(pamh, retval))));
717                 pam_passwd = NULL;              /* Unset pam_passwd */
718                 return STATUS_ERROR;
719         }
720
721         retval = pam_end(pamh, retval);
722
723         if (retval != PAM_SUCCESS)
724         {
725                 ereport(LOG,
726                                 (errmsg("failed to release PAM authenticator: %s",
727                                                 pam_strerror(pamh, retval))));
728         }
729
730         pam_passwd = NULL;                      /* Unset pam_passwd */
731
732         return (retval == PAM_SUCCESS ? STATUS_OK : STATUS_ERROR);
733 }
734 #endif   /* USE_PAM */
735
736
737 /*
738  * Collect password response packet from frontend.
739  *
740  * Returns NULL if couldn't get password, else palloc'd string.
741  */
742 static char *
743 recv_password_packet(Port *port)
744 {
745         StringInfoData buf;
746
747         if (PG_PROTOCOL_MAJOR(port->proto) >= 3)
748         {
749                 /* Expect 'p' message type */
750                 int             mtype;
751
752                 mtype = pq_getbyte();
753                 if (mtype != 'p')
754                 {
755                         /*
756                          * If the client just disconnects without offering a password,
757                          * don't make a log entry.  This is legal per protocol spec and
758                          * in fact commonly done by psql, so complaining just clutters
759                          * the log.
760                          */
761                         if (mtype != EOF)
762                                 ereport(COMMERROR,
763                                                 (errcode(ERRCODE_PROTOCOL_VIOLATION),
764                                                  errmsg("expected password response, got msg type %d",
765                                                                 mtype)));
766                         return NULL;            /* EOF or bad message type */
767                 }
768         }
769         else
770         {
771                 /* For pre-3.0 clients, avoid log entry if they just disconnect */
772                 if (pq_peekbyte() == EOF)
773                         return NULL;            /* EOF */
774         }
775
776         initStringInfo(&buf);
777         if (pq_getmessage(&buf, 1000)) /* receive password */
778         {
779                 /* EOF - pq_getmessage already logged a suitable message */
780                 pfree(buf.data);
781                 return NULL;
782         }
783
784         /*
785          * Apply sanity check: password packet length should agree with length
786          * of contained string.  Note it is safe to use strlen here because
787          * StringInfo is guaranteed to have an appended '\0'.
788          */
789         if (strlen(buf.data) + 1 != buf.len)
790                 ereport(COMMERROR,
791                                 (errcode(ERRCODE_PROTOCOL_VIOLATION),
792                                  errmsg("invalid password packet size")));
793
794         /* Do not echo password to logs, for security. */
795         ereport(DEBUG5,
796                         (errmsg("received password packet")));
797
798         /*
799          * Return the received string.  Note we do not attempt to do any
800          * character-set conversion on it; since we don't yet know the
801          * client's encoding, there wouldn't be much point.
802          */
803         return buf.data;
804 }
805
806
807 /*
808  * Called when we have sent an authorization request for a password.
809  * Get the response and check it.
810  */
811 static int
812 recv_and_check_password_packet(Port *port)
813 {
814         char       *passwd;
815         int                     result;
816
817         passwd = recv_password_packet(port);
818
819         if (passwd == NULL)
820                 return STATUS_EOF;              /* client wouldn't send password */
821
822         result = md5_crypt_verify(port, port->user_name, passwd);
823
824         pfree(passwd);
825
826         return result;
827 }