]> andersk Git - openssh.git/blob - auth-pam.c
- (djm) [auth-pam.c clientloop.c includes.h monitor.c session.c]
[openssh.git] / auth-pam.c
1 /*-
2  * Copyright (c) 2002 Networks Associates Technology, Inc.
3  * All rights reserved.
4  *
5  * This software was developed for the FreeBSD Project by ThinkSec AS and
6  * NAI Labs, the Security Research Division of Network Associates, Inc.
7  * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
8  * DARPA CHATS research program.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 /*
32  * Copyright (c) 2003,2004 Damien Miller <djm@mindrot.org>
33  * Copyright (c) 2003,2004 Darren Tucker <dtucker@zip.com.au>
34  *
35  * Permission to use, copy, modify, and distribute this software for any
36  * purpose with or without fee is hereby granted, provided that the above
37  * copyright notice and this permission notice appear in all copies.
38  *
39  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
40  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
41  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
42  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
43  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
44  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
45  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
46  */
47
48 /* Based on $FreeBSD: src/crypto/openssh/auth2-pam-freebsd.c,v 1.11 2003/03/31 13:48:18 des Exp $ */
49 #include "includes.h"
50 RCSID("$Id$");
51
52 #include <sys/types.h>
53 #include <sys/stat.h>
54 #include <sys/wait.h>
55 #include <signal.h>
56
57 #ifdef USE_PAM
58 #if defined(HAVE_SECURITY_PAM_APPL_H)
59 #include <security/pam_appl.h>
60 #elif defined (HAVE_PAM_PAM_APPL_H)
61 #include <pam/pam_appl.h>
62 #endif
63
64 /* OpenGroup RFC86.0 and XSSO specify no "const" on arguments */
65 #ifdef PAM_SUN_CODEBASE
66 # define sshpam_const           /* Solaris, HP-UX, AIX */
67 #else
68 # define sshpam_const   const   /* LinuxPAM, OpenPAM */
69 #endif
70
71 #include "auth.h"
72 #include "auth-pam.h"
73 #include "buffer.h"
74 #include "bufaux.h"
75 #include "canohost.h"
76 #include "log.h"
77 #include "monitor_wrap.h"
78 #include "msg.h"
79 #include "packet.h"
80 #include "misc.h"
81 #include "servconf.h"
82 #include "ssh2.h"
83 #include "xmalloc.h"
84 #include "auth-options.h"
85
86 extern ServerOptions options;
87 extern Buffer loginmsg;
88 extern int compat20;
89 extern u_int utmp_len;
90
91 /* so we don't silently change behaviour */
92 #ifdef USE_POSIX_THREADS
93 # error "USE_POSIX_THREADS replaced by UNSUPPORTED_POSIX_THREADS_HACK"
94 #endif
95
96 /*
97  * Formerly known as USE_POSIX_THREADS, using this is completely unsupported
98  * and generally a bad idea.  Use at own risk and do not expect support if
99  * this breaks.
100  */
101 #ifdef UNSUPPORTED_POSIX_THREADS_HACK
102 #include <pthread.h>
103 /*
104  * Avoid namespace clash when *not* using pthreads for systems *with*
105  * pthreads, which unconditionally define pthread_t via sys/types.h
106  * (e.g. Linux)
107  */
108 typedef pthread_t sp_pthread_t;
109 #else
110 typedef pid_t sp_pthread_t;
111 #endif
112
113 struct pam_ctxt {
114         sp_pthread_t     pam_thread;
115         int              pam_psock;
116         int              pam_csock;
117         int              pam_done;
118 };
119
120 static void sshpam_free_ctx(void *);
121 static struct pam_ctxt *cleanup_ctxt;
122
123 #ifndef UNSUPPORTED_POSIX_THREADS_HACK
124 /*
125  * Simulate threads with processes.
126  */
127
128 static int sshpam_thread_status = -1;
129 static mysig_t sshpam_oldsig;
130
131 static void
132 sshpam_sigchld_handler(int sig)
133 {
134         signal(SIGCHLD, SIG_DFL);
135         if (cleanup_ctxt == NULL)
136                 return; /* handler called after PAM cleanup, shouldn't happen */
137         if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, WNOHANG)
138             <= 0) {
139                 /* PAM thread has not exitted, privsep slave must have */
140                 kill(cleanup_ctxt->pam_thread, SIGTERM);
141                 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, 0)
142                     <= 0)
143                         return; /* could not wait */
144         }
145         if (WIFSIGNALED(sshpam_thread_status) &&
146             WTERMSIG(sshpam_thread_status) == SIGTERM)
147                 return; /* terminated by pthread_cancel */
148         if (!WIFEXITED(sshpam_thread_status))
149                 fatal("PAM: authentication thread exited unexpectedly");
150         if (WEXITSTATUS(sshpam_thread_status) != 0)
151                 fatal("PAM: authentication thread exited uncleanly");
152 }
153
154 static void
155 pthread_exit(void *value __unused)
156 {
157         _exit(0);
158 }
159
160 static int
161 pthread_create(sp_pthread_t *thread, const void *attr __unused,
162     void *(*thread_start)(void *), void *arg)
163 {
164         pid_t pid;
165         struct pam_ctxt *ctx = arg;
166
167         sshpam_thread_status = -1;
168         switch ((pid = fork())) {
169         case -1:
170                 error("fork(): %s", strerror(errno));
171                 return (-1);
172         case 0:
173                 close(ctx->pam_psock);
174                 ctx->pam_psock = -1;
175                 thread_start(arg);
176                 _exit(1);
177         default:
178                 *thread = pid;
179                 close(ctx->pam_csock);
180                 ctx->pam_csock = -1;
181                 sshpam_oldsig = signal(SIGCHLD, sshpam_sigchld_handler);
182                 return (0);
183         }
184 }
185
186 static int
187 pthread_cancel(sp_pthread_t thread)
188 {
189         signal(SIGCHLD, sshpam_oldsig);
190         return (kill(thread, SIGTERM));
191 }
192
193 static int
194 pthread_join(sp_pthread_t thread, void **value __unused)
195 {
196         int status;
197
198         if (sshpam_thread_status != -1)
199                 return (sshpam_thread_status);
200         signal(SIGCHLD, sshpam_oldsig);
201         waitpid(thread, &status, 0);
202         return (status);
203 }
204 #endif
205
206
207 static pam_handle_t *sshpam_handle = NULL;
208 static int sshpam_err = 0;
209 static int sshpam_authenticated = 0;
210 static int sshpam_session_open = 0;
211 static int sshpam_cred_established = 0;
212 static int sshpam_account_status = -1;
213 static char **sshpam_env = NULL;
214 static Authctxt *sshpam_authctxt = NULL;
215 static const char *sshpam_password = NULL;
216 static char badpw[] = "\b\n\r\177INCORRECT";
217
218 /* Some PAM implementations don't implement this */
219 #ifndef HAVE_PAM_GETENVLIST
220 static char **
221 pam_getenvlist(pam_handle_t *pamh)
222 {
223         /*
224          * XXX - If necessary, we can still support envrionment passing
225          * for platforms without pam_getenvlist by searching for known
226          * env vars (e.g. KRB5CCNAME) from the PAM environment.
227          */
228          return NULL;
229 }
230 #endif
231
232 /*
233  * Some platforms, notably Solaris, do not enforce password complexity
234  * rules during pam_chauthtok() if the real uid of the calling process
235  * is 0, on the assumption that it's being called by "passwd" run by root.
236  * This wraps pam_chauthtok and sets/restore the real uid so PAM will do
237  * the right thing.
238  */
239 #ifdef SSHPAM_CHAUTHTOK_NEEDS_RUID
240 static int
241 sshpam_chauthtok_ruid(pam_handle_t *pamh, int flags)
242 {
243         int result;
244
245         if (sshpam_authctxt == NULL)
246                 fatal("PAM: sshpam_authctxt not initialized");
247         if (setreuid(sshpam_authctxt->pw->pw_uid, -1) == -1)
248                 fatal("%s: setreuid failed: %s", __func__, strerror(errno));
249         result = pam_chauthtok(pamh, flags);
250         if (setreuid(0, -1) == -1)
251                 fatal("%s: setreuid failed: %s", __func__, strerror(errno));
252         return result;
253 }
254 # define pam_chauthtok(a,b)     (sshpam_chauthtok_ruid((a), (b)))
255 #endif
256
257 void
258 sshpam_password_change_required(int reqd)
259 {
260         debug3("%s %d", __func__, reqd);
261         if (sshpam_authctxt == NULL)
262                 fatal("%s: PAM authctxt not initialized", __func__);
263         sshpam_authctxt->force_pwchange = reqd;
264         if (reqd) {
265                 no_port_forwarding_flag |= 2;
266                 no_agent_forwarding_flag |= 2;
267                 no_x11_forwarding_flag |= 2;
268         } else {
269                 no_port_forwarding_flag &= ~2;
270                 no_agent_forwarding_flag &= ~2;
271                 no_x11_forwarding_flag &= ~2;
272         }
273 }
274
275 /* Import regular and PAM environment from subprocess */
276 static void
277 import_environments(Buffer *b)
278 {
279         char *env;
280         u_int i, num_env;
281         int err;
282
283         debug3("PAM: %s entering", __func__);
284
285 #ifndef UNSUPPORTED_POSIX_THREADS_HACK
286         /* Import variables set by do_pam_account */
287         sshpam_account_status = buffer_get_int(b);
288         sshpam_password_change_required(buffer_get_int(b));
289
290         /* Import environment from subprocess */
291         num_env = buffer_get_int(b);
292         sshpam_env = xmalloc((num_env + 1) * sizeof(*sshpam_env));
293         debug3("PAM: num env strings %d", num_env);
294         for(i = 0; i < num_env; i++)
295                 sshpam_env[i] = buffer_get_string(b, NULL);
296
297         sshpam_env[num_env] = NULL;
298
299         /* Import PAM environment from subprocess */
300         num_env = buffer_get_int(b);
301         debug("PAM: num PAM env strings %d", num_env);
302         for(i = 0; i < num_env; i++) {
303                 env = buffer_get_string(b, NULL);
304
305 #ifdef HAVE_PAM_PUTENV
306                 /* Errors are not fatal here */
307                 if ((err = pam_putenv(sshpam_handle, env)) != PAM_SUCCESS) {
308                         error("PAM: pam_putenv: %s",
309                             pam_strerror(sshpam_handle, sshpam_err));
310                 }
311 #endif
312         }
313 #endif
314 }
315
316 /*
317  * Conversation function for authentication thread.
318  */
319 static int
320 sshpam_thread_conv(int n, sshpam_const struct pam_message **msg,
321     struct pam_response **resp, void *data)
322 {
323         Buffer buffer;
324         struct pam_ctxt *ctxt;
325         struct pam_response *reply;
326         int i;
327
328         debug3("PAM: %s entering, %d messages", __func__, n);
329         *resp = NULL;
330
331         if (data == NULL) {
332                 error("PAM: conversation function passed a null context");
333                 return (PAM_CONV_ERR);
334         }
335         ctxt = data;
336         if (n <= 0 || n > PAM_MAX_NUM_MSG)
337                 return (PAM_CONV_ERR);
338
339         if ((reply = malloc(n * sizeof(*reply))) == NULL)
340                 return (PAM_CONV_ERR);
341         memset(reply, 0, n * sizeof(*reply));
342
343         buffer_init(&buffer);
344         for (i = 0; i < n; ++i) {
345                 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
346                 case PAM_PROMPT_ECHO_OFF:
347                         buffer_put_cstring(&buffer,
348                             PAM_MSG_MEMBER(msg, i, msg));
349                         if (ssh_msg_send(ctxt->pam_csock,
350                             PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
351                                 goto fail;
352                         if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
353                                 goto fail;
354                         if (buffer_get_char(&buffer) != PAM_AUTHTOK)
355                                 goto fail;
356                         reply[i].resp = buffer_get_string(&buffer, NULL);
357                         break;
358                 case PAM_PROMPT_ECHO_ON:
359                         buffer_put_cstring(&buffer,
360                             PAM_MSG_MEMBER(msg, i, msg));
361                         if (ssh_msg_send(ctxt->pam_csock,
362                             PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
363                                 goto fail;
364                         if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
365                                 goto fail;
366                         if (buffer_get_char(&buffer) != PAM_AUTHTOK)
367                                 goto fail;
368                         reply[i].resp = buffer_get_string(&buffer, NULL);
369                         break;
370                 case PAM_ERROR_MSG:
371                         buffer_put_cstring(&buffer,
372                             PAM_MSG_MEMBER(msg, i, msg));
373                         if (ssh_msg_send(ctxt->pam_csock,
374                             PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
375                                 goto fail;
376                         break;
377                 case PAM_TEXT_INFO:
378                         buffer_put_cstring(&buffer,
379                             PAM_MSG_MEMBER(msg, i, msg));
380                         if (ssh_msg_send(ctxt->pam_csock,
381                             PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
382                                 goto fail;
383                         break;
384                 default:
385                         goto fail;
386                 }
387                 buffer_clear(&buffer);
388         }
389         buffer_free(&buffer);
390         *resp = reply;
391         return (PAM_SUCCESS);
392
393  fail:
394         for(i = 0; i < n; i++) {
395                 if (reply[i].resp != NULL)
396                         xfree(reply[i].resp);
397         }
398         xfree(reply);
399         buffer_free(&buffer);
400         return (PAM_CONV_ERR);
401 }
402
403 /*
404  * Authentication thread.
405  */
406 static void *
407 sshpam_thread(void *ctxtp)
408 {
409         struct pam_ctxt *ctxt = ctxtp;
410         Buffer buffer;
411         struct pam_conv sshpam_conv;
412         int flags = (options.permit_empty_passwd == 0 ?
413             PAM_DISALLOW_NULL_AUTHTOK : 0);
414 #ifndef UNSUPPORTED_POSIX_THREADS_HACK
415         extern char **environ;
416         char **env_from_pam;
417         u_int i;
418         const char *pam_user;
419         const char **ptr_pam_user = &pam_user;
420
421         pam_get_item(sshpam_handle, PAM_USER,
422             (sshpam_const void **)ptr_pam_user);
423         environ[0] = NULL;
424
425         if (sshpam_authctxt != NULL) {
426                 setproctitle("%s [pam]",
427                     sshpam_authctxt->valid ? pam_user : "unknown");
428         }
429 #endif
430
431         sshpam_conv.conv = sshpam_thread_conv;
432         sshpam_conv.appdata_ptr = ctxt;
433
434         if (sshpam_authctxt == NULL)
435                 fatal("%s: PAM authctxt not initialized", __func__);
436
437         buffer_init(&buffer);
438         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
439             (const void *)&sshpam_conv);
440         if (sshpam_err != PAM_SUCCESS)
441                 goto auth_fail;
442         sshpam_err = pam_authenticate(sshpam_handle, flags);
443         if (sshpam_err != PAM_SUCCESS)
444                 goto auth_fail;
445
446         if (compat20) {
447                 if (!do_pam_account())
448                         goto auth_fail;
449                 if (sshpam_authctxt->force_pwchange) {
450                         sshpam_err = pam_chauthtok(sshpam_handle,
451                             PAM_CHANGE_EXPIRED_AUTHTOK);
452                         if (sshpam_err != PAM_SUCCESS)
453                                 goto auth_fail;
454                         sshpam_password_change_required(0);
455                 }
456         }
457
458         buffer_put_cstring(&buffer, "OK");
459
460 #ifndef UNSUPPORTED_POSIX_THREADS_HACK
461         /* Export variables set by do_pam_account */
462         buffer_put_int(&buffer, sshpam_account_status);
463         buffer_put_int(&buffer, sshpam_authctxt->force_pwchange);
464
465         /* Export any environment strings set in child */
466         for(i = 0; environ[i] != NULL; i++)
467                 ; /* Count */
468         buffer_put_int(&buffer, i);
469         for(i = 0; environ[i] != NULL; i++)
470                 buffer_put_cstring(&buffer, environ[i]);
471
472         /* Export any environment strings set by PAM in child */
473         env_from_pam = pam_getenvlist(sshpam_handle);
474         for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
475                 ; /* Count */
476         buffer_put_int(&buffer, i);
477         for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
478                 buffer_put_cstring(&buffer, env_from_pam[i]);
479 #endif /* UNSUPPORTED_POSIX_THREADS_HACK */
480
481         /* XXX - can't do much about an error here */
482         ssh_msg_send(ctxt->pam_csock, sshpam_err, &buffer);
483         buffer_free(&buffer);
484         pthread_exit(NULL);
485
486  auth_fail:
487         buffer_put_cstring(&buffer,
488             pam_strerror(sshpam_handle, sshpam_err));
489         /* XXX - can't do much about an error here */
490         ssh_msg_send(ctxt->pam_csock, PAM_AUTH_ERR, &buffer);
491         buffer_free(&buffer);
492         pthread_exit(NULL);
493
494         return (NULL); /* Avoid warning for non-pthread case */
495 }
496
497 void
498 sshpam_thread_cleanup(void)
499 {
500         struct pam_ctxt *ctxt = cleanup_ctxt;
501
502         debug3("PAM: %s entering", __func__);
503         if (ctxt != NULL && ctxt->pam_thread != 0) {
504                 pthread_cancel(ctxt->pam_thread);
505                 pthread_join(ctxt->pam_thread, NULL);
506                 close(ctxt->pam_psock);
507                 close(ctxt->pam_csock);
508                 memset(ctxt, 0, sizeof(*ctxt));
509                 cleanup_ctxt = NULL;
510         }
511 }
512
513 static int
514 sshpam_null_conv(int n, sshpam_const struct pam_message **msg,
515     struct pam_response **resp, void *data)
516 {
517         debug3("PAM: %s entering, %d messages", __func__, n);
518         return (PAM_CONV_ERR);
519 }
520
521 static struct pam_conv null_conv = { sshpam_null_conv, NULL };
522
523 static int
524 sshpam_store_conv(int n, sshpam_const struct pam_message **msg,
525     struct pam_response **resp, void *data)
526 {
527         struct pam_response *reply;
528         int i;
529         size_t len;
530
531         debug3("PAM: %s called with %d messages", __func__, n);
532         *resp = NULL;
533
534         if (n <= 0 || n > PAM_MAX_NUM_MSG)
535                 return (PAM_CONV_ERR);
536
537         if ((reply = malloc(n * sizeof(*reply))) == NULL)
538                 return (PAM_CONV_ERR);
539         memset(reply, 0, n * sizeof(*reply));
540
541         for (i = 0; i < n; ++i) {
542                 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
543                 case PAM_ERROR_MSG:
544                 case PAM_TEXT_INFO:
545                         len = strlen(PAM_MSG_MEMBER(msg, i, msg));
546                         buffer_append(&loginmsg, PAM_MSG_MEMBER(msg, i, msg), len);
547                         buffer_append(&loginmsg, "\n", 1 );
548                         reply[i].resp_retcode = PAM_SUCCESS;
549                         break;
550                 default:
551                         goto fail;
552                 }
553         }
554         *resp = reply;
555         return (PAM_SUCCESS);
556
557  fail:
558         for(i = 0; i < n; i++) {
559                 if (reply[i].resp != NULL)
560                         xfree(reply[i].resp);
561         }
562         xfree(reply);
563         return (PAM_CONV_ERR);
564 }
565
566 static struct pam_conv store_conv = { sshpam_store_conv, NULL };
567
568 void
569 sshpam_cleanup(void)
570 {
571         debug("PAM: cleanup");
572         if (sshpam_handle == NULL)
573                 return;
574         pam_set_item(sshpam_handle, PAM_CONV, (const void *)&null_conv);
575         if (sshpam_cred_established) {
576                 pam_setcred(sshpam_handle, PAM_DELETE_CRED);
577                 sshpam_cred_established = 0;
578         }
579         if (sshpam_session_open) {
580                 pam_close_session(sshpam_handle, PAM_SILENT);
581                 sshpam_session_open = 0;
582         }
583         sshpam_authenticated = 0;
584         pam_end(sshpam_handle, sshpam_err);
585         sshpam_handle = NULL;
586 }
587
588 static int
589 sshpam_init(Authctxt *authctxt)
590 {
591         extern char *__progname;
592         const char *pam_rhost, *pam_user, *user = authctxt->user;
593         const char **ptr_pam_user = &pam_user;
594
595         if (sshpam_handle != NULL) {
596                 /* We already have a PAM context; check if the user matches */
597                 sshpam_err = pam_get_item(sshpam_handle,
598                     PAM_USER, (sshpam_const void **)ptr_pam_user);
599                 if (sshpam_err == PAM_SUCCESS && strcmp(user, pam_user) == 0)
600                         return (0);
601                 pam_end(sshpam_handle, sshpam_err);
602                 sshpam_handle = NULL;
603         }
604         debug("PAM: initializing for \"%s\"", user);
605         sshpam_err =
606             pam_start(SSHD_PAM_SERVICE, user, &store_conv, &sshpam_handle);
607         sshpam_authctxt = authctxt;
608
609         if (sshpam_err != PAM_SUCCESS) {
610                 pam_end(sshpam_handle, sshpam_err);
611                 sshpam_handle = NULL;
612                 return (-1);
613         }
614         pam_rhost = get_remote_name_or_ip(utmp_len, options.use_dns);
615         debug("PAM: setting PAM_RHOST to \"%s\"", pam_rhost);
616         sshpam_err = pam_set_item(sshpam_handle, PAM_RHOST, pam_rhost);
617         if (sshpam_err != PAM_SUCCESS) {
618                 pam_end(sshpam_handle, sshpam_err);
619                 sshpam_handle = NULL;
620                 return (-1);
621         }
622 #ifdef PAM_TTY_KLUDGE
623         /*
624          * Some silly PAM modules (e.g. pam_time) require a TTY to operate.
625          * sshd doesn't set the tty until too late in the auth process and
626          * may not even set one (for tty-less connections)
627          */
628         debug("PAM: setting PAM_TTY to \"ssh\"");
629         sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, "ssh");
630         if (sshpam_err != PAM_SUCCESS) {
631                 pam_end(sshpam_handle, sshpam_err);
632                 sshpam_handle = NULL;
633                 return (-1);
634         }
635 #endif
636         return (0);
637 }
638
639 static void *
640 sshpam_init_ctx(Authctxt *authctxt)
641 {
642         struct pam_ctxt *ctxt;
643         int socks[2];
644
645         debug3("PAM: %s entering", __func__);
646         /* Refuse to start if we don't have PAM enabled */
647         if (!options.use_pam)
648                 return NULL;
649
650         /* Initialize PAM */
651         if (sshpam_init(authctxt) == -1) {
652                 error("PAM: initialization failed");
653                 return (NULL);
654         }
655
656         ctxt = xmalloc(sizeof *ctxt);
657         memset(ctxt, 0, sizeof(*ctxt));
658
659         /* Start the authentication thread */
660         if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, socks) == -1) {
661                 error("PAM: failed create sockets: %s", strerror(errno));
662                 xfree(ctxt);
663                 return (NULL);
664         }
665         ctxt->pam_psock = socks[0];
666         ctxt->pam_csock = socks[1];
667         if (pthread_create(&ctxt->pam_thread, NULL, sshpam_thread, ctxt) == -1) {
668                 error("PAM: failed to start authentication thread: %s",
669                     strerror(errno));
670                 close(socks[0]);
671                 close(socks[1]);
672                 xfree(ctxt);
673                 return (NULL);
674         }
675         cleanup_ctxt = ctxt;
676         return (ctxt);
677 }
678
679 static int
680 sshpam_query(void *ctx, char **name, char **info,
681     u_int *num, char ***prompts, u_int **echo_on)
682 {
683         Buffer buffer;
684         struct pam_ctxt *ctxt = ctx;
685         size_t plen;
686         u_char type;
687         char *msg;
688         size_t len, mlen;
689
690         debug3("PAM: %s entering", __func__);
691         buffer_init(&buffer);
692         *name = xstrdup("");
693         *info = xstrdup("");
694         *prompts = xmalloc(sizeof(char *));
695         **prompts = NULL;
696         plen = 0;
697         *echo_on = xmalloc(sizeof(u_int));
698         while (ssh_msg_recv(ctxt->pam_psock, &buffer) == 0) {
699                 type = buffer_get_char(&buffer);
700                 msg = buffer_get_string(&buffer, NULL);
701                 mlen = strlen(msg);
702                 switch (type) {
703                 case PAM_PROMPT_ECHO_ON:
704                 case PAM_PROMPT_ECHO_OFF:
705                         *num = 1;
706                         len = plen + mlen + 1;
707                         **prompts = xrealloc(**prompts, len);
708                         strlcpy(**prompts + plen, msg, len - plen);
709                         plen += mlen;
710                         **echo_on = (type == PAM_PROMPT_ECHO_ON);
711                         xfree(msg);
712                         return (0);
713                 case PAM_ERROR_MSG:
714                 case PAM_TEXT_INFO:
715                         /* accumulate messages */
716                         len = plen + mlen + 2;
717                         **prompts = xrealloc(**prompts, len);
718                         strlcpy(**prompts + plen, msg, len - plen);
719                         plen += mlen;
720                         strlcat(**prompts + plen, "\n", len - plen);
721                         plen++;
722                         xfree(msg);
723                         break;
724                 case PAM_AUTH_ERR:
725                         debug3("PAM: PAM_AUTH_ERR");
726                         if (**prompts != NULL && strlen(**prompts) != 0) {
727                                 *info = **prompts;
728                                 **prompts = NULL;
729                                 *num = 0;
730                                 **echo_on = 0;
731                                 ctxt->pam_done = -1;
732                                 return 0;
733                         }
734                         /* FALLTHROUGH */
735                 case PAM_SUCCESS:
736                         if (**prompts != NULL) {
737                                 /* drain any accumulated messages */
738                                 debug("PAM: %s", **prompts);
739                                 buffer_append(&loginmsg, **prompts,
740                                     strlen(**prompts));
741                                 xfree(**prompts);
742                                 **prompts = NULL;
743                         }
744                         if (type == PAM_SUCCESS) {
745                                 if (!sshpam_authctxt->valid ||
746                                     (sshpam_authctxt->pw->pw_uid == 0 &&
747                                     options.permit_root_login != PERMIT_YES))
748                                         fatal("Internal error: PAM auth "
749                                             "succeeded when it should have "
750                                             "failed");
751                                 import_environments(&buffer);
752                                 *num = 0;
753                                 **echo_on = 0;
754                                 ctxt->pam_done = 1;
755                                 xfree(msg);
756                                 return (0);
757                         }
758                         error("PAM: %s for %s%.100s from %.100s", msg,
759                             sshpam_authctxt->valid ? "" : "illegal user ",
760                             sshpam_authctxt->user,
761                             get_remote_name_or_ip(utmp_len, options.use_dns));
762                         /* FALLTHROUGH */
763                 default:
764                         *num = 0;
765                         **echo_on = 0;
766                         xfree(msg);
767                         ctxt->pam_done = -1;
768                         return (-1);
769                 }
770         }
771         return (-1);
772 }
773
774 /* XXX - see also comment in auth-chall.c:verify_response */
775 static int
776 sshpam_respond(void *ctx, u_int num, char **resp)
777 {
778         Buffer buffer;
779         struct pam_ctxt *ctxt = ctx;
780
781         debug2("PAM: %s entering, %u responses", __func__, num);
782         switch (ctxt->pam_done) {
783         case 1:
784                 sshpam_authenticated = 1;
785                 return (0);
786         case 0:
787                 break;
788         default:
789                 return (-1);
790         }
791         if (num != 1) {
792                 error("PAM: expected one response, got %u", num);
793                 return (-1);
794         }
795         buffer_init(&buffer);
796         if (sshpam_authctxt->valid &&
797             (sshpam_authctxt->pw->pw_uid != 0 ||
798             options.permit_root_login == PERMIT_YES))
799                 buffer_put_cstring(&buffer, *resp);
800         else
801                 buffer_put_cstring(&buffer, badpw);
802         if (ssh_msg_send(ctxt->pam_psock, PAM_AUTHTOK, &buffer) == -1) {
803                 buffer_free(&buffer);
804                 return (-1);
805         }
806         buffer_free(&buffer);
807         return (1);
808 }
809
810 static void
811 sshpam_free_ctx(void *ctxtp)
812 {
813         struct pam_ctxt *ctxt = ctxtp;
814
815         debug3("PAM: %s entering", __func__);
816         sshpam_thread_cleanup();
817         xfree(ctxt);
818         /*
819          * We don't call sshpam_cleanup() here because we may need the PAM
820          * handle at a later stage, e.g. when setting up a session.  It's
821          * still on the cleanup list, so pam_end() *will* be called before
822          * the server process terminates.
823          */
824 }
825
826 KbdintDevice sshpam_device = {
827         "pam",
828         sshpam_init_ctx,
829         sshpam_query,
830         sshpam_respond,
831         sshpam_free_ctx
832 };
833
834 KbdintDevice mm_sshpam_device = {
835         "pam",
836         mm_sshpam_init_ctx,
837         mm_sshpam_query,
838         mm_sshpam_respond,
839         mm_sshpam_free_ctx
840 };
841
842 /*
843  * This replaces auth-pam.c
844  */
845 void
846 start_pam(Authctxt *authctxt)
847 {
848         if (!options.use_pam)
849                 fatal("PAM: initialisation requested when UsePAM=no");
850
851         if (sshpam_init(authctxt) == -1)
852                 fatal("PAM: initialisation failed");
853 }
854
855 void
856 finish_pam(void)
857 {
858         sshpam_cleanup();
859 }
860
861 u_int
862 do_pam_account(void)
863 {
864         debug("%s: called", __func__);
865         if (sshpam_account_status != -1)
866                 return (sshpam_account_status);
867
868         sshpam_err = pam_acct_mgmt(sshpam_handle, 0);
869         debug3("PAM: %s pam_acct_mgmt = %d (%s)", __func__, sshpam_err,
870             pam_strerror(sshpam_handle, sshpam_err));
871
872         if (sshpam_err != PAM_SUCCESS && sshpam_err != PAM_NEW_AUTHTOK_REQD) {
873                 sshpam_account_status = 0;
874                 return (sshpam_account_status);
875         }
876
877         if (sshpam_err == PAM_NEW_AUTHTOK_REQD)
878                 sshpam_password_change_required(1);
879
880         sshpam_account_status = 1;
881         return (sshpam_account_status);
882 }
883
884 void
885 do_pam_set_tty(const char *tty)
886 {
887         if (tty != NULL) {
888                 debug("PAM: setting PAM_TTY to \"%s\"", tty);
889                 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, tty);
890                 if (sshpam_err != PAM_SUCCESS)
891                         fatal("PAM: failed to set PAM_TTY: %s",
892                             pam_strerror(sshpam_handle, sshpam_err));
893         }
894 }
895
896 void
897 do_pam_setcred(int init)
898 {
899         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
900             (const void *)&store_conv);
901         if (sshpam_err != PAM_SUCCESS)
902                 fatal("PAM: failed to set PAM_CONV: %s",
903                     pam_strerror(sshpam_handle, sshpam_err));
904         if (init) {
905                 debug("PAM: establishing credentials");
906                 sshpam_err = pam_setcred(sshpam_handle, PAM_ESTABLISH_CRED);
907         } else {
908                 debug("PAM: reinitializing credentials");
909                 sshpam_err = pam_setcred(sshpam_handle, PAM_REINITIALIZE_CRED);
910         }
911         if (sshpam_err == PAM_SUCCESS) {
912                 sshpam_cred_established = 1;
913                 return;
914         }
915         if (sshpam_authenticated)
916                 fatal("PAM: pam_setcred(): %s",
917                     pam_strerror(sshpam_handle, sshpam_err));
918         else
919                 debug("PAM: pam_setcred(): %s",
920                     pam_strerror(sshpam_handle, sshpam_err));
921 }
922
923 static int
924 sshpam_tty_conv(int n, sshpam_const struct pam_message **msg,
925     struct pam_response **resp, void *data)
926 {
927         char input[PAM_MAX_MSG_SIZE];
928         struct pam_response *reply;
929         int i;
930
931         debug3("PAM: %s called with %d messages", __func__, n);
932
933         *resp = NULL;
934
935         if (n <= 0 || n > PAM_MAX_NUM_MSG || !isatty(STDIN_FILENO))
936                 return (PAM_CONV_ERR);
937
938         if ((reply = malloc(n * sizeof(*reply))) == NULL)
939                 return (PAM_CONV_ERR);
940         memset(reply, 0, n * sizeof(*reply));
941
942         for (i = 0; i < n; ++i) {
943                 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
944                 case PAM_PROMPT_ECHO_OFF:
945                         reply[i].resp =
946                             read_passphrase(PAM_MSG_MEMBER(msg, i, msg),
947                             RP_ALLOW_STDIN);
948                         reply[i].resp_retcode = PAM_SUCCESS;
949                         break;
950                 case PAM_PROMPT_ECHO_ON:
951                         fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
952                         fgets(input, sizeof input, stdin);
953                         if ((reply[i].resp = strdup(input)) == NULL)
954                                 goto fail;
955                         reply[i].resp_retcode = PAM_SUCCESS;
956                         break;
957                 case PAM_ERROR_MSG:
958                 case PAM_TEXT_INFO:
959                         fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
960                         reply[i].resp_retcode = PAM_SUCCESS;
961                         break;
962                 default:
963                         goto fail;
964                 }
965         }
966         *resp = reply;
967         return (PAM_SUCCESS);
968
969  fail:
970         for(i = 0; i < n; i++) {
971                 if (reply[i].resp != NULL)
972                         xfree(reply[i].resp);
973         }
974         xfree(reply);
975         return (PAM_CONV_ERR);
976 }
977
978 static struct pam_conv tty_conv = { sshpam_tty_conv, NULL };
979
980 /*
981  * XXX this should be done in the authentication phase, but ssh1 doesn't
982  * support that
983  */
984 void
985 do_pam_chauthtok(void)
986 {
987         if (use_privsep)
988                 fatal("Password expired (unable to change with privsep)");
989         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
990             (const void *)&tty_conv);
991         if (sshpam_err != PAM_SUCCESS)
992                 fatal("PAM: failed to set PAM_CONV: %s",
993                     pam_strerror(sshpam_handle, sshpam_err));
994         debug("PAM: changing password");
995         sshpam_err = pam_chauthtok(sshpam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
996         if (sshpam_err != PAM_SUCCESS)
997                 fatal("PAM: pam_chauthtok(): %s",
998                     pam_strerror(sshpam_handle, sshpam_err));
999 }
1000
1001 void
1002 do_pam_session(void)
1003 {
1004         debug3("PAM: opening session");
1005         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
1006             (const void *)&store_conv);
1007         if (sshpam_err != PAM_SUCCESS)
1008                 fatal("PAM: failed to set PAM_CONV: %s",
1009                     pam_strerror(sshpam_handle, sshpam_err));
1010         sshpam_err = pam_open_session(sshpam_handle, 0);
1011         if (sshpam_err == PAM_SUCCESS)
1012                 sshpam_session_open = 1;
1013         else {
1014                 sshpam_session_open = 0;
1015                 disable_forwarding();
1016                 error("PAM: pam_open_session(): %s",
1017                     pam_strerror(sshpam_handle, sshpam_err));
1018         }
1019
1020 }
1021
1022 int
1023 is_pam_session_open(void)
1024 {
1025         return sshpam_session_open;
1026 }
1027
1028 /*
1029  * Set a PAM environment string. We need to do this so that the session
1030  * modules can handle things like Kerberos/GSI credentials that appear
1031  * during the ssh authentication process.
1032  */
1033 int
1034 do_pam_putenv(char *name, char *value)
1035 {
1036         int ret = 1;
1037 #ifdef HAVE_PAM_PUTENV
1038         char *compound;
1039         size_t len;
1040
1041         len = strlen(name) + strlen(value) + 2;
1042         compound = xmalloc(len);
1043
1044         snprintf(compound, len, "%s=%s", name, value);
1045         ret = pam_putenv(sshpam_handle, compound);
1046         xfree(compound);
1047 #endif
1048
1049         return (ret);
1050 }
1051
1052 char **
1053 fetch_pam_child_environment(void)
1054 {
1055         return sshpam_env;
1056 }
1057
1058 char **
1059 fetch_pam_environment(void)
1060 {
1061         return (pam_getenvlist(sshpam_handle));
1062 }
1063
1064 void
1065 free_pam_environment(char **env)
1066 {
1067         char **envp;
1068
1069         if (env == NULL)
1070                 return;
1071
1072         for (envp = env; *envp; envp++)
1073                 xfree(*envp);
1074         xfree(env);
1075 }
1076
1077 /*
1078  * "Blind" conversation function for password authentication.  Assumes that
1079  * echo-off prompts are for the password and stores messages for later
1080  * display.
1081  */
1082 static int
1083 sshpam_passwd_conv(int n, sshpam_const struct pam_message **msg,
1084     struct pam_response **resp, void *data)
1085 {
1086         struct pam_response *reply;
1087         int i;
1088         size_t len;
1089
1090         debug3("PAM: %s called with %d messages", __func__, n);
1091
1092         *resp = NULL;
1093
1094         if (n <= 0 || n > PAM_MAX_NUM_MSG)
1095                 return (PAM_CONV_ERR);
1096
1097         if ((reply = malloc(n * sizeof(*reply))) == NULL)
1098                 return (PAM_CONV_ERR);
1099         memset(reply, 0, n * sizeof(*reply));
1100
1101         for (i = 0; i < n; ++i) {
1102                 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
1103                 case PAM_PROMPT_ECHO_OFF:
1104                         if (sshpam_password == NULL)
1105                                 goto fail;
1106                         if ((reply[i].resp = strdup(sshpam_password)) == NULL)
1107                                 goto fail;
1108                         reply[i].resp_retcode = PAM_SUCCESS;
1109                         break;
1110                 case PAM_ERROR_MSG:
1111                 case PAM_TEXT_INFO:
1112                         len = strlen(PAM_MSG_MEMBER(msg, i, msg));
1113                         if (len > 0) {
1114                                 buffer_append(&loginmsg,
1115                                     PAM_MSG_MEMBER(msg, i, msg), len);
1116                                 buffer_append(&loginmsg, "\n", 1);
1117                         }
1118                         if ((reply[i].resp = strdup("")) == NULL)
1119                                 goto fail;
1120                         reply[i].resp_retcode = PAM_SUCCESS;
1121                         break;
1122                 default:
1123                         goto fail;
1124                 }
1125         }
1126         *resp = reply;
1127         return (PAM_SUCCESS);
1128
1129  fail:
1130         for(i = 0; i < n; i++) {
1131                 if (reply[i].resp != NULL)
1132                         xfree(reply[i].resp);
1133         }
1134         xfree(reply);
1135         return (PAM_CONV_ERR);
1136 }
1137
1138 static struct pam_conv passwd_conv = { sshpam_passwd_conv, NULL };
1139
1140 /*
1141  * Attempt password authentication via PAM
1142  */
1143 int
1144 sshpam_auth_passwd(Authctxt *authctxt, const char *password)
1145 {
1146         int flags = (options.permit_empty_passwd == 0 ?
1147             PAM_DISALLOW_NULL_AUTHTOK : 0);
1148
1149         if (!options.use_pam || sshpam_handle == NULL)
1150                 fatal("PAM: %s called when PAM disabled or failed to "
1151                     "initialise.", __func__);
1152
1153         sshpam_password = password;
1154         sshpam_authctxt = authctxt;
1155
1156         /*
1157          * If the user logging in is invalid, or is root but is not permitted
1158          * by PermitRootLogin, use an invalid password to prevent leaking
1159          * information via timing (eg if the PAM config has a delay on fail).
1160          */
1161         if (!authctxt->valid || (authctxt->pw->pw_uid == 0 &&
1162             options.permit_root_login != PERMIT_YES))
1163                 sshpam_password = badpw;
1164
1165         sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
1166             (const void *)&passwd_conv);
1167         if (sshpam_err != PAM_SUCCESS)
1168                 fatal("PAM: %s: failed to set PAM_CONV: %s", __func__,
1169                     pam_strerror(sshpam_handle, sshpam_err));
1170
1171         sshpam_err = pam_authenticate(sshpam_handle, flags);
1172         sshpam_password = NULL;
1173         if (sshpam_err == PAM_SUCCESS && authctxt->valid) {
1174                 debug("PAM: password authentication accepted for %.100s",
1175                     authctxt->user);
1176                 return 1;
1177         } else {
1178                 debug("PAM: password authentication failed for %.100s: %s",
1179                     authctxt->valid ? authctxt->user : "an illegal user",
1180                     pam_strerror(sshpam_handle, sshpam_err));
1181                 return 0;
1182         }
1183 }
1184 #endif /* USE_PAM */
This page took 0.136189 seconds and 5 git commands to generate.