]> granicus.if.org Git - postgresql/blob - src/backend/libpq/auth.c
355afba89caa57cafae49913a764b8fbd1cbf826
[postgresql] / src / backend / libpq / auth.c
1 /*-------------------------------------------------------------------------
2  *
3  * auth.c
4  *        Routines to handle network authentication
5  *
6  * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  *        $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.114 2003/12/20 18:24:52 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("unexpected Kerberos protocol version received from client (received \"%s\", expected \"%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("unexpected Kerberos user name received from client (received \"%s\", expected \"%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 4 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 initialization 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 resolving 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("unexpected Kerberos user name received from client (received \"%s\", expected \"%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 5 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 server 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 #ifdef USE_SSL
443                                 ereport(FATAL,
444                                    (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
445                                         errmsg("no pg_hba.conf entry for host \"%s\", user \"%s\", database \"%s\", %s",
446                                                    hostinfo, port->user_name, port->database_name,
447                                    port->ssl ? gettext("SSL on") : gettext("SSL off"))));
448 #else
449                                 ereport(FATAL,
450                                    (errcode(ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION),
451                                         errmsg("no pg_hba.conf entry for host \"%s\", user \"%s\", database \"%s\"",
452                                            hostinfo, port->user_name, port->database_name)));
453 #endif
454                                 break;
455                         }
456
457                 case uaKrb4:
458                         /* Kerberos 4 only seems to work with AF_INET. */
459                         if (port->raddr.addr.ss_family != AF_INET
460                                 || port->laddr.addr.ss_family != AF_INET)
461                                 ereport(FATAL,
462                                                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
463                                    errmsg("Kerberos 4 only supports IPv4 connections")));
464                         sendAuthRequest(port, AUTH_REQ_KRB4);
465                         status = pg_krb4_recvauth(port);
466                         break;
467
468                 case uaKrb5:
469                         sendAuthRequest(port, AUTH_REQ_KRB5);
470                         status = pg_krb5_recvauth(port);
471                         break;
472
473                 case uaIdent:
474                         /*
475                          * If we are doing ident on unix-domain sockets, use SCM_CREDS
476                          * only if it is defined and SO_PEERCRED isn't.
477                          */
478 #if !defined(HAVE_GETPEEREID) && !defined(SO_PEERCRED) && \
479         (defined(HAVE_STRUCT_CMSGCRED) || defined(HAVE_STRUCT_FCRED) || \
480          (defined(HAVE_STRUCT_SOCKCRED) && defined(LOCAL_CREDS)))
481                         if (port->raddr.addr.ss_family == AF_UNIX)
482                         {
483 #if defined(HAVE_STRUCT_FCRED) || defined(HAVE_STRUCT_SOCKCRED)
484                                 /*
485                                  * Receive credentials on next message receipt, BSD/OS,
486                                  * NetBSD. We need to set this before the client sends the
487                                  * next packet.
488                                  */
489                                 int                     on = 1;
490
491                                 if (setsockopt(port->sock, 0, LOCAL_CREDS, &on, sizeof(on)) < 0)
492                                         ereport(FATAL,
493                                                         (errcode_for_socket_access(),
494                                          errmsg("could not enable credential reception: %m")));
495 #endif
496
497                                 sendAuthRequest(port, AUTH_REQ_SCM_CREDS);
498                         }
499 #endif
500                         status = authident(port);
501                         break;
502
503                 case uaMD5:
504                         sendAuthRequest(port, AUTH_REQ_MD5);
505                         status = recv_and_check_password_packet(port);
506                         break;
507
508                 case uaCrypt:
509                         sendAuthRequest(port, AUTH_REQ_CRYPT);
510                         status = recv_and_check_password_packet(port);
511                         break;
512
513                 case uaPassword:
514                         sendAuthRequest(port, AUTH_REQ_PASSWORD);
515                         status = recv_and_check_password_packet(port);
516                         break;
517
518 #ifdef USE_PAM
519                 case uaPAM:
520                         pam_port_cludge = port;
521                         status = CheckPAMAuth(port, port->user_name, "");
522                         break;
523 #endif   /* USE_PAM */
524
525                 case uaTrust:
526                         status = STATUS_OK;
527                         break;
528         }
529
530         if (status == STATUS_OK)
531                 sendAuthRequest(port, AUTH_REQ_OK);
532         else
533                 auth_failed(port, status);
534 }
535
536
537 /*
538  * Send an authentication request packet to the frontend.
539  */
540 static void
541 sendAuthRequest(Port *port, AuthRequest areq)
542 {
543         StringInfoData buf;
544
545         pq_beginmessage(&buf, 'R');
546         pq_sendint(&buf, (int32) areq, sizeof(int32));
547
548         /* Add the salt for encrypted passwords. */
549         if (areq == AUTH_REQ_MD5)
550                 pq_sendbytes(&buf, port->md5Salt, 4);
551         else if (areq == AUTH_REQ_CRYPT)
552                 pq_sendbytes(&buf, port->cryptSalt, 2);
553
554         pq_endmessage(&buf);
555
556         /*
557          * Flush message so client will see it, except for AUTH_REQ_OK, which
558          * need not be sent until we are ready for queries.
559          */
560         if (areq != AUTH_REQ_OK)
561                 pq_flush();
562 }
563
564
565 #ifdef USE_PAM
566
567 /*
568  * PAM conversation function
569  */
570
571 static int
572 pam_passwd_conv_proc(int num_msg, const struct pam_message ** msg,
573                                          struct pam_response ** resp, void *appdata_ptr)
574 {
575         if (num_msg != 1 || msg[0]->msg_style != PAM_PROMPT_ECHO_OFF)
576         {
577                 switch (msg[0]->msg_style)
578                 {
579                         case PAM_ERROR_MSG:
580                                 ereport(LOG,
581                                                 (errmsg("error from underlying PAM layer: %s",
582                                                                 msg[0]->msg)));
583                                 return PAM_CONV_ERR;
584                         default:
585                                 ereport(LOG,
586                                                 (errmsg("unsupported PAM conversation %d/%s",
587                                                                 msg[0]->msg_style, msg[0]->msg)));
588                                 return PAM_CONV_ERR;
589                 }
590         }
591
592         if (!appdata_ptr)
593         {
594                 /*
595                  * Workaround for Solaris 2.6 where the PAM library is broken and
596                  * does not pass appdata_ptr to the conversation routine
597                  */
598                 appdata_ptr = pam_passwd;
599         }
600
601         /*
602          * Password wasn't passed to PAM the first time around - let's go ask
603          * the client to send a password, which we then stuff into PAM.
604          */
605         if (strlen(appdata_ptr) == 0)
606         {
607                 char       *passwd;
608
609                 sendAuthRequest(pam_port_cludge, AUTH_REQ_PASSWORD);
610                 passwd = recv_password_packet(pam_port_cludge);
611
612                 if (passwd == NULL)
613                         return PAM_CONV_ERR;    /* client didn't want to send password */
614
615                 if (strlen(passwd) == 0)
616                 {
617                         ereport(LOG,
618                                         (errmsg("empty password returned by client")));
619                         return PAM_CONV_ERR;
620                 }
621                 appdata_ptr = passwd;
622         }
623
624         /*
625          * Explicitly not using palloc here - PAM will free this memory in
626          * pam_end()
627          */
628         *resp = calloc(num_msg, sizeof(struct pam_response));
629         if (!*resp)
630         {
631                 ereport(LOG,
632                                 (errcode(ERRCODE_OUT_OF_MEMORY),
633                                  errmsg("out of memory")));
634                 return PAM_CONV_ERR;
635         }
636
637         (*resp)[0].resp = strdup((char *) appdata_ptr);
638         (*resp)[0].resp_retcode = 0;
639
640         return ((*resp)[0].resp ? PAM_SUCCESS : PAM_CONV_ERR);
641 }
642
643
644 /*
645  * Check authentication against PAM.
646  */
647 static int
648 CheckPAMAuth(Port *port, char *user, char *password)
649 {
650         int                     retval;
651         pam_handle_t *pamh = NULL;
652
653         /*
654          * Apparently, Solaris 2.6 is broken, and needs ugly static variable
655          * workaround
656          */
657         pam_passwd = password;
658
659         /*
660          * Set the application data portion of the conversation struct This is
661          * later used inside the PAM conversation to pass the password to the
662          * authentication module.
663          */
664         pam_passw_conv.appdata_ptr = (char *) password;         /* from password above,
665                                                                                                                  * not allocated */
666
667         /* Optionally, one can set the service name in pg_hba.conf */
668         if (port->auth_arg && port->auth_arg[0] != '\0')
669                 retval = pam_start(port->auth_arg, "pgsql@",
670                                                    &pam_passw_conv, &pamh);
671         else
672                 retval = pam_start(PGSQL_PAM_SERVICE, "pgsql@",
673                                                    &pam_passw_conv, &pamh);
674
675         if (retval != PAM_SUCCESS)
676         {
677                 ereport(LOG,
678                                 (errmsg("could not create PAM authenticator: %s",
679                                                 pam_strerror(pamh, retval))));
680                 pam_passwd = NULL;              /* Unset pam_passwd */
681                 return STATUS_ERROR;
682         }
683
684         retval = pam_set_item(pamh, PAM_USER, user);
685
686         if (retval != PAM_SUCCESS)
687         {
688                 ereport(LOG,
689                                 (errmsg("pam_set_item(PAM_USER) failed: %s",
690                                                 pam_strerror(pamh, retval))));
691                 pam_passwd = NULL;              /* Unset pam_passwd */
692                 return STATUS_ERROR;
693         }
694
695         retval = pam_set_item(pamh, PAM_CONV, &pam_passw_conv);
696
697         if (retval != PAM_SUCCESS)
698         {
699                 ereport(LOG,
700                                 (errmsg("pam_set_item(PAM_CONV) failed: %s",
701                                                 pam_strerror(pamh, retval))));
702                 pam_passwd = NULL;              /* Unset pam_passwd */
703                 return STATUS_ERROR;
704         }
705
706         retval = pam_authenticate(pamh, 0);
707
708         if (retval != PAM_SUCCESS)
709         {
710                 ereport(LOG,
711                                 (errmsg("pam_authenticate failed: %s",
712                                                 pam_strerror(pamh, retval))));
713                 pam_passwd = NULL;              /* Unset pam_passwd */
714                 return STATUS_ERROR;
715         }
716
717         retval = pam_acct_mgmt(pamh, 0);
718
719         if (retval != PAM_SUCCESS)
720         {
721                 ereport(LOG,
722                                 (errmsg("pam_acct_mgmt failed: %s",
723                                                 pam_strerror(pamh, retval))));
724                 pam_passwd = NULL;              /* Unset pam_passwd */
725                 return STATUS_ERROR;
726         }
727
728         retval = pam_end(pamh, retval);
729
730         if (retval != PAM_SUCCESS)
731         {
732                 ereport(LOG,
733                                 (errmsg("could not release PAM authenticator: %s",
734                                                 pam_strerror(pamh, retval))));
735         }
736
737         pam_passwd = NULL;                      /* Unset pam_passwd */
738
739         return (retval == PAM_SUCCESS ? STATUS_OK : STATUS_ERROR);
740 }
741 #endif   /* USE_PAM */
742
743
744 /*
745  * Collect password response packet from frontend.
746  *
747  * Returns NULL if couldn't get password, else palloc'd string.
748  */
749 static char *
750 recv_password_packet(Port *port)
751 {
752         StringInfoData buf;
753
754         if (PG_PROTOCOL_MAJOR(port->proto) >= 3)
755         {
756                 /* Expect 'p' message type */
757                 int                     mtype;
758
759                 mtype = pq_getbyte();
760                 if (mtype != 'p')
761                 {
762                         /*
763                          * If the client just disconnects without offering a password,
764                          * don't make a log entry.  This is legal per protocol spec
765                          * and in fact commonly done by psql, so complaining just
766                          * clutters the log.
767                          */
768                         if (mtype != EOF)
769                                 ereport(COMMERROR,
770                                                 (errcode(ERRCODE_PROTOCOL_VIOLATION),
771                                         errmsg("expected password response, got message type %d",
772                                                    mtype)));
773                         return NULL;            /* EOF or bad message type */
774                 }
775         }
776         else
777         {
778                 /* For pre-3.0 clients, avoid log entry if they just disconnect */
779                 if (pq_peekbyte() == EOF)
780                         return NULL;            /* EOF */
781         }
782
783         initStringInfo(&buf);
784         if (pq_getmessage(&buf, 1000))          /* receive password */
785         {
786                 /* EOF - pq_getmessage already logged a suitable message */
787                 pfree(buf.data);
788                 return NULL;
789         }
790
791         /*
792          * Apply sanity check: password packet length should agree with length
793          * of contained string.  Note it is safe to use strlen here because
794          * StringInfo is guaranteed to have an appended '\0'.
795          */
796         if (strlen(buf.data) + 1 != buf.len)
797                 ereport(COMMERROR,
798                                 (errcode(ERRCODE_PROTOCOL_VIOLATION),
799                                  errmsg("invalid password packet size")));
800
801         /* Do not echo password to logs, for security. */
802         ereport(DEBUG5,
803                         (errmsg("received password packet")));
804
805         /*
806          * Return the received string.  Note we do not attempt to do any
807          * character-set conversion on it; since we don't yet know the
808          * client's encoding, there wouldn't be much point.
809          */
810         return buf.data;
811 }
812
813
814 /*
815  * Called when we have sent an authorization request for a password.
816  * Get the response and check it.
817  */
818 static int
819 recv_and_check_password_packet(Port *port)
820 {
821         char       *passwd;
822         int                     result;
823
824         passwd = recv_password_packet(port);
825
826         if (passwd == NULL)
827                 return STATUS_EOF;              /* client wouldn't send password */
828
829         result = md5_crypt_verify(port, port->user_name, passwd);
830
831         pfree(passwd);
832
833         return result;
834 }