]> andersk Git - openssh.git/blame - auth-pam.c
- (dtucker) [sshd.8] Bug #843: Add warning about PasswordAuthentication to
[openssh.git] / auth-pam.c
CommitLineData
05114c74 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.
09564242 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.
09564242 18 *
05114c74 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.
a5c9cd31 30 */
31
5ff453c0 32/* Based on $FreeBSD: src/crypto/openssh/auth2-pam-freebsd.c,v 1.11 2003/03/31 13:48:18 des Exp $ */
a5c9cd31 33#include "includes.h"
5ff453c0 34RCSID("$Id$");
a5c9cd31 35
36#ifdef USE_PAM
2511d104 37#if defined(HAVE_SECURITY_PAM_APPL_H)
05114c74 38#include <security/pam_appl.h>
2511d104 39#elif defined (HAVE_PAM_PAM_APPL_H)
40#include <pam/pam_appl.h>
41#endif
05114c74 42
fde58bd4 43#include "auth.h"
5c377b3b 44#include "auth-pam.h"
05114c74 45#include "buffer.h"
46#include "bufaux.h"
42f11eb2 47#include "canohost.h"
05114c74 48#include "log.h"
49#include "monitor_wrap.h"
50#include "msg.h"
51#include "packet.h"
42f11eb2 52#include "readpass.h"
05114c74 53#include "servconf.h"
54#include "ssh2.h"
55#include "xmalloc.h"
5b9e2464 56#include "auth-options.h"
a5c9cd31 57
7fceb20d 58extern ServerOptions options;
3eaf3960 59extern Buffer loginmsg;
b3ef7fb7 60extern int compat20;
1e08e787 61extern u_int utmp_len;
7fceb20d 62
05114c74 63#ifdef USE_POSIX_THREADS
64#include <pthread.h>
65/*
aff51935 66 * Avoid namespace clash when *not* using pthreads for systems *with*
67 * pthreads, which unconditionally define pthread_t via sys/types.h
05114c74 68 * (e.g. Linux)
69 */
aff51935 70typedef pthread_t sp_pthread_t;
05114c74 71#else
e47e681f 72typedef pid_t sp_pthread_t;
73#endif
74
75struct pam_ctxt {
76 sp_pthread_t pam_thread;
77 int pam_psock;
78 int pam_csock;
79 int pam_done;
80};
81
82static void sshpam_free_ctx(void *);
83static struct pam_ctxt *cleanup_ctxt;
84
85#ifndef USE_POSIX_THREADS
05114c74 86/*
87 * Simulate threads with processes.
88 */
a5c9cd31 89
100e6910 90static int sshpam_thread_status = -1;
91static mysig_t sshpam_oldsig;
92
93static void
94sshpam_sigchld_handler(int sig)
95{
28b49ff8 96 if (cleanup_ctxt == NULL)
97 return; /* handler called after PAM cleanup, shouldn't happen */
100e6910 98 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, 0) == -1)
99 return; /* couldn't wait for process */
100 if (WIFSIGNALED(sshpam_thread_status) &&
101 WTERMSIG(sshpam_thread_status) == SIGTERM)
102 return; /* terminated by pthread_cancel */
103 if (!WIFEXITED(sshpam_thread_status))
104 fatal("PAM: authentication thread exited unexpectedly");
105 if (WEXITSTATUS(sshpam_thread_status) != 0)
106 fatal("PAM: authentication thread exited uncleanly");
107}
108
05114c74 109static void
110pthread_exit(void *value __unused)
111{
112 _exit(0);
113}
5daf7064 114
05114c74 115static int
116pthread_create(sp_pthread_t *thread, const void *attr __unused,
117 void *(*thread_start)(void *), void *arg)
118{
119 pid_t pid;
120
355fbf31 121 sshpam_thread_status = -1;
05114c74 122 switch ((pid = fork())) {
123 case -1:
124 error("fork(): %s", strerror(errno));
125 return (-1);
126 case 0:
127 thread_start(arg);
128 _exit(1);
129 default:
130 *thread = pid;
100e6910 131 sshpam_oldsig = signal(SIGCHLD, sshpam_sigchld_handler);
05114c74 132 return (0);
133 }
134}
a5c9cd31 135
05114c74 136static int
137pthread_cancel(sp_pthread_t thread)
8c9fe09e 138{
28b49ff8 139 signal(SIGCHLD, sshpam_oldsig);
05114c74 140 return (kill(thread, SIGTERM));
8c9fe09e 141}
142
05114c74 143static int
144pthread_join(sp_pthread_t thread, void **value __unused)
8c9fe09e 145{
05114c74 146 int status;
147
100e6910 148 if (sshpam_thread_status != -1)
149 return (sshpam_thread_status);
150 signal(SIGCHLD, sshpam_oldsig);
05114c74 151 waitpid(thread, &status, 0);
152 return (status);
8c9fe09e 153}
05114c74 154#endif
155
156
0a23d79f 157static pam_handle_t *sshpam_handle = NULL;
158static int sshpam_err = 0;
159static int sshpam_authenticated = 0;
0a23d79f 160static int sshpam_session_open = 0;
161static int sshpam_cred_established = 0;
b3ef7fb7 162static int sshpam_account_status = -1;
2212fc98 163static char **sshpam_env = NULL;
d948154a 164static Authctxt *sshpam_authctxt = NULL;
05114c74 165
2212fc98 166/* Some PAM implementations don't implement this */
167#ifndef HAVE_PAM_GETENVLIST
168static char **
169pam_getenvlist(pam_handle_t *pamh)
170{
171 /*
aff51935 172 * XXX - If necessary, we can still support envrionment passing
2212fc98 173 * for platforms without pam_getenvlist by searching for known
174 * env vars (e.g. KRB5CCNAME) from the PAM environment.
175 */
176 return NULL;
177}
178#endif
179
b3ef7fb7 180void
181pam_password_change_required(int reqd)
182{
90f3c272 183 debug3("%s %d", __func__, reqd);
d948154a 184 if (sshpam_authctxt == NULL)
529d73ab 185 fatal("%s: PAM authctxt not initialized", __func__);
d948154a 186 sshpam_authctxt->force_pwchange = reqd;
b3ef7fb7 187 if (reqd) {
188 no_port_forwarding_flag |= 2;
189 no_agent_forwarding_flag |= 2;
190 no_x11_forwarding_flag |= 2;
191 } else {
192 no_port_forwarding_flag &= ~2;
193 no_agent_forwarding_flag &= ~2;
194 no_x11_forwarding_flag &= ~2;
b3ef7fb7 195 }
196}
dd1fb864 197
2212fc98 198/* Import regular and PAM environment from subprocess */
199static void
200import_environments(Buffer *b)
201{
202 char *env;
203 u_int i, num_env;
204 int err;
205
90f3c272 206 debug3("PAM: %s entering", __func__);
207
a1e0095d 208#ifndef USE_POSIX_THREADS
b3ef7fb7 209 /* Import variables set by do_pam_account */
210 sshpam_account_status = buffer_get_int(b);
211 pam_password_change_required(buffer_get_int(b));
212
2212fc98 213 /* Import environment from subprocess */
214 num_env = buffer_get_int(b);
215 sshpam_env = xmalloc((num_env + 1) * sizeof(*sshpam_env));
216 debug3("PAM: num env strings %d", num_env);
217 for(i = 0; i < num_env; i++)
218 sshpam_env[i] = buffer_get_string(b, NULL);
219
220 sshpam_env[num_env] = NULL;
221
222 /* Import PAM environment from subprocess */
223 num_env = buffer_get_int(b);
224 debug("PAM: num PAM env strings %d", num_env);
225 for(i = 0; i < num_env; i++) {
226 env = buffer_get_string(b, NULL);
227
f79a6165 228#ifdef HAVE_PAM_PUTENV
2212fc98 229 /* Errors are not fatal here */
230 if ((err = pam_putenv(sshpam_handle, env)) != PAM_SUCCESS) {
231 error("PAM: pam_putenv: %s",
232 pam_strerror(sshpam_handle, sshpam_err));
233 }
f79a6165 234#endif
2212fc98 235 }
a1e0095d 236#endif
2212fc98 237}
238
ad55cd03 239/*
05114c74 240 * Conversation function for authentication thread.
ad55cd03 241 */
05114c74 242static int
5b9e2464 243sshpam_thread_conv(int n, const struct pam_message **msg,
244 struct pam_response **resp, void *data)
a5c9cd31 245{
05114c74 246 Buffer buffer;
247 struct pam_ctxt *ctxt;
0a23d79f 248 struct pam_response *reply;
05114c74 249 int i;
250
60922169 251 debug3("PAM: %s entering, %d messages", __func__, n);
0a23d79f 252 *resp = NULL;
253
05114c74 254 ctxt = data;
255 if (n <= 0 || n > PAM_MAX_NUM_MSG)
256 return (PAM_CONV_ERR);
0a23d79f 257
258 if ((reply = malloc(n * sizeof(*reply))) == NULL)
259 return (PAM_CONV_ERR);
260 memset(reply, 0, n * sizeof(*reply));
261
05114c74 262 buffer_init(&buffer);
263 for (i = 0; i < n; ++i) {
05114c74 264 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
265 case PAM_PROMPT_ECHO_OFF:
aff51935 266 buffer_put_cstring(&buffer,
0a23d79f 267 PAM_MSG_MEMBER(msg, i, msg));
aff51935 268 if (ssh_msg_send(ctxt->pam_csock,
7b2a0de3 269 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
270 goto fail;
aff51935 271 if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
7b2a0de3 272 goto fail;
05114c74 273 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
274 goto fail;
0a23d79f 275 reply[i].resp = buffer_get_string(&buffer, NULL);
05114c74 276 break;
277 case PAM_PROMPT_ECHO_ON:
aff51935 278 buffer_put_cstring(&buffer,
0a23d79f 279 PAM_MSG_MEMBER(msg, i, msg));
aff51935 280 if (ssh_msg_send(ctxt->pam_csock,
7b2a0de3 281 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
282 goto fail;
283 if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
284 goto fail;
05114c74 285 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
286 goto fail;
0a23d79f 287 reply[i].resp = buffer_get_string(&buffer, NULL);
05114c74 288 break;
289 case PAM_ERROR_MSG:
aff51935 290 buffer_put_cstring(&buffer,
0a23d79f 291 PAM_MSG_MEMBER(msg, i, msg));
aff51935 292 if (ssh_msg_send(ctxt->pam_csock,
7b2a0de3 293 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
294 goto fail;
05114c74 295 break;
296 case PAM_TEXT_INFO:
aff51935 297 buffer_put_cstring(&buffer,
0a23d79f 298 PAM_MSG_MEMBER(msg, i, msg));
aff51935 299 if (ssh_msg_send(ctxt->pam_csock,
7b2a0de3 300 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
301 goto fail;
05114c74 302 break;
303 default:
304 goto fail;
a5c9cd31 305 }
05114c74 306 buffer_clear(&buffer);
a5c9cd31 307 }
05114c74 308 buffer_free(&buffer);
0a23d79f 309 *resp = reply;
05114c74 310 return (PAM_SUCCESS);
0a23d79f 311
05114c74 312 fail:
0a23d79f 313 for(i = 0; i < n; i++) {
314 if (reply[i].resp != NULL)
315 xfree(reply[i].resp);
316 }
317 xfree(reply);
05114c74 318 buffer_free(&buffer);
319 return (PAM_CONV_ERR);
320}
a5c9cd31 321
05114c74 322/*
323 * Authentication thread.
324 */
325static void *
326sshpam_thread(void *ctxtp)
327{
328 struct pam_ctxt *ctxt = ctxtp;
329 Buffer buffer;
c53917a9 330 struct pam_conv sshpam_conv;
05114c74 331#ifndef USE_POSIX_THREADS
2212fc98 332 extern char **environ;
333 char **env_from_pam;
334 u_int i;
05114c74 335 const char *pam_user;
336
337 pam_get_item(sshpam_handle, PAM_USER, (const void **)&pam_user);
338 setproctitle("%s [pam]", pam_user);
2212fc98 339 environ[0] = NULL;
05114c74 340#endif
a5c9cd31 341
c53917a9 342 sshpam_conv.conv = sshpam_thread_conv;
343 sshpam_conv.appdata_ptr = ctxt;
344
d948154a 345 if (sshpam_authctxt == NULL)
529d73ab 346 fatal("%s: PAM authctxt not initialized", __func__);
347
05114c74 348 buffer_init(&buffer);
349 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
350 (const void *)&sshpam_conv);
351 if (sshpam_err != PAM_SUCCESS)
352 goto auth_fail;
353 sshpam_err = pam_authenticate(sshpam_handle, 0);
354 if (sshpam_err != PAM_SUCCESS)
355 goto auth_fail;
b3ef7fb7 356
2935db92 357 if (compat20) {
b3ef7fb7 358 if (!do_pam_account())
359 goto auth_fail;
d948154a 360 if (sshpam_authctxt->force_pwchange) {
b3ef7fb7 361 sshpam_err = pam_chauthtok(sshpam_handle,
362 PAM_CHANGE_EXPIRED_AUTHTOK);
363 if (sshpam_err != PAM_SUCCESS)
364 goto auth_fail;
365 pam_password_change_required(0);
366 }
2935db92 367 }
b3ef7fb7 368
05114c74 369 buffer_put_cstring(&buffer, "OK");
2212fc98 370
371#ifndef USE_POSIX_THREADS
b3ef7fb7 372 /* Export variables set by do_pam_account */
373 buffer_put_int(&buffer, sshpam_account_status);
d948154a 374 buffer_put_int(&buffer, sshpam_authctxt->force_pwchange);
b3ef7fb7 375
2212fc98 376 /* Export any environment strings set in child */
377 for(i = 0; environ[i] != NULL; i++)
378 ; /* Count */
379 buffer_put_int(&buffer, i);
380 for(i = 0; environ[i] != NULL; i++)
381 buffer_put_cstring(&buffer, environ[i]);
382
383 /* Export any environment strings set by PAM in child */
384 env_from_pam = pam_getenvlist(sshpam_handle);
385 for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
386 ; /* Count */
387 buffer_put_int(&buffer, i);
388 for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
389 buffer_put_cstring(&buffer, env_from_pam[i]);
390#endif /* USE_POSIX_THREADS */
391
7b2a0de3 392 /* XXX - can't do much about an error here */
05114c74 393 ssh_msg_send(ctxt->pam_csock, sshpam_err, &buffer);
394 buffer_free(&buffer);
395 pthread_exit(NULL);
396
397 auth_fail:
398 buffer_put_cstring(&buffer,
399 pam_strerror(sshpam_handle, sshpam_err));
7b2a0de3 400 /* XXX - can't do much about an error here */
05114c74 401 ssh_msg_send(ctxt->pam_csock, PAM_AUTH_ERR, &buffer);
402 buffer_free(&buffer);
403 pthread_exit(NULL);
b6453d99 404
05114c74 405 return (NULL); /* Avoid warning for non-pthread case */
a5c9cd31 406}
407
c6630044 408void
409sshpam_thread_cleanup(void)
a5c9cd31 410{
c6630044 411 struct pam_ctxt *ctxt = cleanup_ctxt;
412
90f3c272 413 debug3("PAM: %s entering", __func__);
c6630044 414 if (ctxt != NULL && ctxt->pam_thread != 0) {
415 pthread_cancel(ctxt->pam_thread);
416 pthread_join(ctxt->pam_thread, NULL);
417 close(ctxt->pam_psock);
418 close(ctxt->pam_csock);
419 memset(ctxt, 0, sizeof(*ctxt));
420 cleanup_ctxt = NULL;
421 }
05114c74 422}
a5c9cd31 423
05114c74 424static int
5b9e2464 425sshpam_null_conv(int n, const struct pam_message **msg,
426 struct pam_response **resp, void *data)
05114c74 427{
60922169 428 debug3("PAM: %s entering, %d messages", __func__, n);
05114c74 429 return (PAM_CONV_ERR);
430}
a5c9cd31 431
05114c74 432static struct pam_conv null_conv = { sshpam_null_conv, NULL };
433
c6630044 434void
435sshpam_cleanup(void)
05114c74 436{
05114c74 437 debug("PAM: cleanup");
0a23d79f 438 if (sshpam_handle == NULL)
439 return;
05114c74 440 pam_set_item(sshpam_handle, PAM_CONV, (const void *)&null_conv);
441 if (sshpam_cred_established) {
442 pam_setcred(sshpam_handle, PAM_DELETE_CRED);
443 sshpam_cred_established = 0;
444 }
445 if (sshpam_session_open) {
446 pam_close_session(sshpam_handle, PAM_SILENT);
447 sshpam_session_open = 0;
a5c9cd31 448 }
dd1fb864 449 sshpam_authenticated = 0;
05114c74 450 pam_end(sshpam_handle, sshpam_err);
451 sshpam_handle = NULL;
a5c9cd31 452}
453
05114c74 454static int
529d73ab 455sshpam_init(Authctxt *authctxt)
a5c9cd31 456{
74678fb9 457 extern char *__progname;
529d73ab 458 const char *pam_rhost, *pam_user, *user = authctxt->user;
05114c74 459
460 if (sshpam_handle != NULL) {
461 /* We already have a PAM context; check if the user matches */
462 sshpam_err = pam_get_item(sshpam_handle,
463 PAM_USER, (const void **)&pam_user);
464 if (sshpam_err == PAM_SUCCESS && strcmp(user, pam_user) == 0)
465 return (0);
05114c74 466 pam_end(sshpam_handle, sshpam_err);
467 sshpam_handle = NULL;
468 }
469 debug("PAM: initializing for \"%s\"", user);
01224183 470 sshpam_err =
471 pam_start(SSHD_PAM_SERVICE, user, &null_conv, &sshpam_handle);
d948154a 472 sshpam_authctxt = authctxt;
529d73ab 473
5ff453c0 474 if (sshpam_err != PAM_SUCCESS) {
475 pam_end(sshpam_handle, sshpam_err);
476 sshpam_handle = NULL;
05114c74 477 return (-1);
5ff453c0 478 }
c5a7d788 479 pam_rhost = get_remote_name_or_ip(utmp_len, options.use_dns);
05d62329 480 debug("PAM: setting PAM_RHOST to \"%s\"", pam_rhost);
05114c74 481 sshpam_err = pam_set_item(sshpam_handle, PAM_RHOST, pam_rhost);
5ff453c0 482 if (sshpam_err != PAM_SUCCESS) {
5b9e2464 483 pam_end(sshpam_handle, sshpam_err);
5ff453c0 484 sshpam_handle = NULL;
485 return (-1);
486 }
487#ifdef PAM_TTY_KLUDGE
aff51935 488 /*
489 * Some silly PAM modules (e.g. pam_time) require a TTY to operate.
490 * sshd doesn't set the tty until too late in the auth process and
5ff453c0 491 * may not even set one (for tty-less connections)
aff51935 492 */
5ff453c0 493 debug("PAM: setting PAM_TTY to \"ssh\"");
494 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, "ssh");
05114c74 495 if (sshpam_err != PAM_SUCCESS) {
496 pam_end(sshpam_handle, sshpam_err);
497 sshpam_handle = NULL;
498 return (-1);
a5c9cd31 499 }
5ff453c0 500#endif
05114c74 501 return (0);
a5c9cd31 502}
503
05114c74 504static void *
505sshpam_init_ctx(Authctxt *authctxt)
a5c9cd31 506{
05114c74 507 struct pam_ctxt *ctxt;
508 int socks[2];
2b87da3b 509
90f3c272 510 debug3("PAM: %s entering", __func__);
7fceb20d 511 /* Refuse to start if we don't have PAM enabled */
512 if (!options.use_pam)
513 return NULL;
514
05114c74 515 /* Initialize PAM */
529d73ab 516 if (sshpam_init(authctxt) == -1) {
05114c74 517 error("PAM: initialization failed");
518 return (NULL);
519 }
5c377b3b 520
05114c74 521 ctxt = xmalloc(sizeof *ctxt);
c6630044 522 memset(ctxt, 0, sizeof(*ctxt));
05114c74 523
524 /* Start the authentication thread */
525 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, socks) == -1) {
526 error("PAM: failed create sockets: %s", strerror(errno));
527 xfree(ctxt);
528 return (NULL);
529 }
530 ctxt->pam_psock = socks[0];
531 ctxt->pam_csock = socks[1];
532 if (pthread_create(&ctxt->pam_thread, NULL, sshpam_thread, ctxt) == -1) {
533 error("PAM: failed to start authentication thread: %s",
534 strerror(errno));
535 close(socks[0]);
536 close(socks[1]);
537 xfree(ctxt);
538 return (NULL);
a5c9cd31 539 }
c6630044 540 cleanup_ctxt = ctxt;
05114c74 541 return (ctxt);
542}
a5c9cd31 543
05114c74 544static int
545sshpam_query(void *ctx, char **name, char **info,
546 u_int *num, char ***prompts, u_int **echo_on)
547{
548 Buffer buffer;
549 struct pam_ctxt *ctxt = ctx;
550 size_t plen;
551 u_char type;
552 char *msg;
cbdeccf3 553 size_t len;
05114c74 554
90f3c272 555 debug3("PAM: %s entering", __func__);
05114c74 556 buffer_init(&buffer);
557 *name = xstrdup("");
558 *info = xstrdup("");
559 *prompts = xmalloc(sizeof(char *));
560 **prompts = NULL;
561 plen = 0;
562 *echo_on = xmalloc(sizeof(u_int));
563 while (ssh_msg_recv(ctxt->pam_psock, &buffer) == 0) {
564 type = buffer_get_char(&buffer);
565 msg = buffer_get_string(&buffer, NULL);
566 switch (type) {
567 case PAM_PROMPT_ECHO_ON:
568 case PAM_PROMPT_ECHO_OFF:
569 *num = 1;
cbdeccf3 570 len = plen + strlen(msg) + 1;
571 **prompts = xrealloc(**prompts, len);
572 plen += snprintf(**prompts + plen, len, "%s", msg);
05114c74 573 **echo_on = (type == PAM_PROMPT_ECHO_ON);
574 xfree(msg);
575 return (0);
576 case PAM_ERROR_MSG:
577 case PAM_TEXT_INFO:
578 /* accumulate messages */
4f1b45b4 579 len = plen + strlen(msg) + 2;
cbdeccf3 580 **prompts = xrealloc(**prompts, len);
4f1b45b4 581 plen += snprintf(**prompts + plen, len, "%s\n", msg);
05114c74 582 xfree(msg);
5daf7064 583 break;
05114c74 584 case PAM_SUCCESS:
585 case PAM_AUTH_ERR:
586 if (**prompts != NULL) {
587 /* drain any accumulated messages */
3eaf3960 588 debug("PAM: %s", **prompts);
589 buffer_append(&loginmsg, **prompts,
590 strlen(**prompts));
05114c74 591 xfree(**prompts);
592 **prompts = NULL;
593 }
594 if (type == PAM_SUCCESS) {
2212fc98 595 import_environments(&buffer);
05114c74 596 *num = 0;
597 **echo_on = 0;
598 ctxt->pam_done = 1;
599 xfree(msg);
600 return (0);
601 }
1e08e787 602 error("PAM: %s for %s%.100s from %.100s", msg,
603 sshpam_authctxt->valid ? "" : "illegal user ",
604 sshpam_authctxt->user,
605 get_remote_name_or_ip(utmp_len, options.use_dns));
e250770b 606 /* FALLTHROUGH */
5daf7064 607 default:
05114c74 608 *num = 0;
609 **echo_on = 0;
610 xfree(msg);
611 ctxt->pam_done = -1;
612 return (-1);
613 }
a5c9cd31 614 }
05114c74 615 return (-1);
a5c9cd31 616}
617
05114c74 618/* XXX - see also comment in auth-chall.c:verify_response */
619static int
620sshpam_respond(void *ctx, u_int num, char **resp)
a5c9cd31 621{
05114c74 622 Buffer buffer;
623 struct pam_ctxt *ctxt = ctx;
624
90f3c272 625 debug2("PAM: %s entering, %d responses", __func__, num);
05114c74 626 switch (ctxt->pam_done) {
627 case 1:
628 sshpam_authenticated = 1;
629 return (0);
630 case 0:
631 break;
632 default:
633 return (-1);
a5c9cd31 634 }
05114c74 635 if (num != 1) {
636 error("PAM: expected one response, got %u", num);
637 return (-1);
638 }
639 buffer_init(&buffer);
640 buffer_put_cstring(&buffer, *resp);
7b2a0de3 641 if (ssh_msg_send(ctxt->pam_psock, PAM_AUTHTOK, &buffer) == -1) {
642 buffer_free(&buffer);
643 return (-1);
644 }
05114c74 645 buffer_free(&buffer);
646 return (1);
a5c9cd31 647}
648
05114c74 649static void
650sshpam_free_ctx(void *ctxtp)
a5c9cd31 651{
05114c74 652 struct pam_ctxt *ctxt = ctxtp;
39ce53de 653
90f3c272 654 debug3("PAM: %s entering", __func__);
c6630044 655 sshpam_thread_cleanup();
05114c74 656 xfree(ctxt);
657 /*
658 * We don't call sshpam_cleanup() here because we may need the PAM
659 * handle at a later stage, e.g. when setting up a session. It's
660 * still on the cleanup list, so pam_end() *will* be called before
661 * the server process terminates.
662 */
ad55cd03 663}
664
05114c74 665KbdintDevice sshpam_device = {
666 "pam",
667 sshpam_init_ctx,
668 sshpam_query,
669 sshpam_respond,
670 sshpam_free_ctx
671};
672
673KbdintDevice mm_sshpam_device = {
674 "pam",
675 mm_sshpam_init_ctx,
676 mm_sshpam_query,
677 mm_sshpam_respond,
678 mm_sshpam_free_ctx
679};
2919e060 680
2b87da3b 681/*
05114c74 682 * This replaces auth-pam.c
ad55cd03 683 */
05114c74 684void
529d73ab 685start_pam(Authctxt *authctxt)
ad55cd03 686{
817e6d38 687 if (!options.use_pam)
688 fatal("PAM: initialisation requested when UsePAM=no");
689
529d73ab 690 if (sshpam_init(authctxt) == -1)
05114c74 691 fatal("PAM: initialisation failed");
a5c9cd31 692}
693
05114c74 694void
695finish_pam(void)
a5c9cd31 696{
c6630044 697 sshpam_cleanup();
a5c9cd31 698}
699
5b9e2464 700u_int
701do_pam_account(void)
a5c9cd31 702{
b3ef7fb7 703 if (sshpam_account_status != -1)
704 return (sshpam_account_status);
705
5b9e2464 706 sshpam_err = pam_acct_mgmt(sshpam_handle, 0);
90f3c272 707 debug3("PAM: %s pam_acct_mgmt = %d", __func__, sshpam_err);
b3ef7fb7 708
709 if (sshpam_err != PAM_SUCCESS && sshpam_err != PAM_NEW_AUTHTOK_REQD) {
710 sshpam_account_status = 0;
711 return (sshpam_account_status);
5b9e2464 712 }
713
b3ef7fb7 714 if (sshpam_err == PAM_NEW_AUTHTOK_REQD)
715 pam_password_change_required(1);
716
717 sshpam_account_status = 1;
718 return (sshpam_account_status);
05114c74 719}
46c76c63 720
49e82bb9 721void
722do_pam_set_tty(const char *tty)
723{
26b3608b 724 if (tty != NULL) {
725 debug("PAM: setting PAM_TTY to \"%s\"", tty);
726 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, tty);
727 if (sshpam_err != PAM_SUCCESS)
728 fatal("PAM: failed to set PAM_TTY: %s",
729 pam_strerror(sshpam_handle, sshpam_err));
730 }
05114c74 731}
cbd7492e 732
05114c74 733void
734do_pam_setcred(int init)
735{
736 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
737 (const void *)&null_conv);
738 if (sshpam_err != PAM_SUCCESS)
739 fatal("PAM: failed to set PAM_CONV: %s",
740 pam_strerror(sshpam_handle, sshpam_err));
741 if (init) {
742 debug("PAM: establishing credentials");
743 sshpam_err = pam_setcred(sshpam_handle, PAM_ESTABLISH_CRED);
744 } else {
745 debug("PAM: reinitializing credentials");
746 sshpam_err = pam_setcred(sshpam_handle, PAM_REINITIALIZE_CRED);
747 }
748 if (sshpam_err == PAM_SUCCESS) {
749 sshpam_cred_established = 1;
750 return;
751 }
752 if (sshpam_authenticated)
753 fatal("PAM: pam_setcred(): %s",
754 pam_strerror(sshpam_handle, sshpam_err));
755 else
756 debug("PAM: pam_setcred(): %s",
757 pam_strerror(sshpam_handle, sshpam_err));
a5c9cd31 758}
759
05114c74 760static int
3eaf3960 761pam_tty_conv(int n, const struct pam_message **msg,
5b9e2464 762 struct pam_response **resp, void *data)
ee48c949 763{
05114c74 764 char input[PAM_MAX_MSG_SIZE];
0a23d79f 765 struct pam_response *reply;
ee48c949 766 int i;
767
60922169 768 debug3("PAM: %s called with %d messages", __func__, n);
769
0a23d79f 770 *resp = NULL;
771
3eaf3960 772 if (n <= 0 || n > PAM_MAX_NUM_MSG || !isatty(STDIN_FILENO))
05114c74 773 return (PAM_CONV_ERR);
0a23d79f 774
775 if ((reply = malloc(n * sizeof(*reply))) == NULL)
776 return (PAM_CONV_ERR);
777 memset(reply, 0, n * sizeof(*reply));
778
05114c74 779 for (i = 0; i < n; ++i) {
780 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
781 case PAM_PROMPT_ECHO_OFF:
0a23d79f 782 reply[i].resp =
aff51935 783 read_passphrase(PAM_MSG_MEMBER(msg, i, msg),
05114c74 784 RP_ALLOW_STDIN);
0a23d79f 785 reply[i].resp_retcode = PAM_SUCCESS;
05114c74 786 break;
787 case PAM_PROMPT_ECHO_ON:
74117b26 788 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
05114c74 789 fgets(input, sizeof input, stdin);
0a23d79f 790 reply[i].resp = xstrdup(input);
791 reply[i].resp_retcode = PAM_SUCCESS;
05114c74 792 break;
793 case PAM_ERROR_MSG:
794 case PAM_TEXT_INFO:
74117b26 795 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
0a23d79f 796 reply[i].resp_retcode = PAM_SUCCESS;
05114c74 797 break;
798 default:
799 goto fail;
800 }
ee48c949 801 }
0a23d79f 802 *resp = reply;
05114c74 803 return (PAM_SUCCESS);
0a23d79f 804
05114c74 805 fail:
0a23d79f 806 for(i = 0; i < n; i++) {
807 if (reply[i].resp != NULL)
808 xfree(reply[i].resp);
809 }
810 xfree(reply);
05114c74 811 return (PAM_CONV_ERR);
ee48c949 812}
813
3eaf3960 814static struct pam_conv tty_conv = { pam_tty_conv, NULL };
815
05114c74 816/*
817 * XXX this should be done in the authentication phase, but ssh1 doesn't
818 * support that
819 */
820void
821do_pam_chauthtok(void)
a5c9cd31 822{
05114c74 823 if (use_privsep)
5b9e2464 824 fatal("Password expired (unable to change with privsep)");
05114c74 825 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
3eaf3960 826 (const void *)&tty_conv);
05114c74 827 if (sshpam_err != PAM_SUCCESS)
828 fatal("PAM: failed to set PAM_CONV: %s",
829 pam_strerror(sshpam_handle, sshpam_err));
830 debug("PAM: changing password");
831 sshpam_err = pam_chauthtok(sshpam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
832 if (sshpam_err != PAM_SUCCESS)
833 fatal("PAM: pam_chauthtok(): %s",
834 pam_strerror(sshpam_handle, sshpam_err));
5daf7064 835}
836
ef687c66 837static int
838pam_store_conv(int n, const struct pam_message **msg,
839 struct pam_response **resp, void *data)
840{
841 struct pam_response *reply;
842 int i;
843 size_t len;
844
845 debug3("PAM: %s called with %d messages", __func__, n);
846 *resp = NULL;
847
848 if (n <= 0 || n > PAM_MAX_NUM_MSG)
849 return (PAM_CONV_ERR);
850
851 if ((reply = malloc(n * sizeof(*reply))) == NULL)
852 return (PAM_CONV_ERR);
853 memset(reply, 0, n * sizeof(*reply));
854
855 for (i = 0; i < n; ++i) {
856 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
857 case PAM_ERROR_MSG:
858 case PAM_TEXT_INFO:
859 len = strlen(PAM_MSG_MEMBER(msg, i, msg));
860 buffer_append(&loginmsg, PAM_MSG_MEMBER(msg, i, msg), len);
861 buffer_append(&loginmsg, "\n", 1 );
862 reply[i].resp_retcode = PAM_SUCCESS;
863 break;
864 default:
865 goto fail;
866 }
867 }
868 *resp = reply;
869 return (PAM_SUCCESS);
870
871 fail:
872 for(i = 0; i < n; i++) {
873 if (reply[i].resp != NULL)
874 xfree(reply[i].resp);
875 }
876 xfree(reply);
877 return (PAM_CONV_ERR);
878}
879
880static struct pam_conv store_conv = { pam_store_conv, NULL };
881
3eaf3960 882void
883do_pam_session(void)
884{
dd1fb864 885 debug3("PAM: opening session");
aff51935 886 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
ef687c66 887 (const void *)&store_conv);
3eaf3960 888 if (sshpam_err != PAM_SUCCESS)
889 fatal("PAM: failed to set PAM_CONV: %s",
890 pam_strerror(sshpam_handle, sshpam_err));
891 sshpam_err = pam_open_session(sshpam_handle, 0);
892 if (sshpam_err != PAM_SUCCESS)
893 fatal("PAM: pam_open_session(): %s",
894 pam_strerror(sshpam_handle, sshpam_err));
895 sshpam_session_open = 1;
896}
897
aff51935 898/*
749560dd 899 * Set a PAM environment string. We need to do this so that the session
900 * modules can handle things like Kerberos/GSI credentials that appear
901 * during the ssh authentication process.
902 */
749560dd 903int
aff51935 904do_pam_putenv(char *name, char *value)
749560dd 905{
749560dd 906 int ret = 1;
b6453d99 907#ifdef HAVE_PAM_PUTENV
263c65df 908 char *compound;
909 size_t len;
910
911 len = strlen(name) + strlen(value) + 2;
912 compound = xmalloc(len);
913
914 snprintf(compound, len, "%s=%s", name, value);
915 ret = pam_putenv(sshpam_handle, compound);
916 xfree(compound);
749560dd 917#endif
263c65df 918
749560dd 919 return (ret);
920}
921
2212fc98 922char **
923fetch_pam_child_environment(void)
924{
925 return sshpam_env;
926}
927
05114c74 928char **
929fetch_pam_environment(void)
930{
05114c74 931 return (pam_getenvlist(sshpam_handle));
05114c74 932}
5c377b3b 933
05114c74 934void
935free_pam_environment(char **env)
936{
937 char **envp;
5daf7064 938
0eb6370a 939 if (env == NULL)
940 return;
941
05114c74 942 for (envp = env; *envp; envp++)
943 xfree(*envp);
944 xfree(env);
a5c9cd31 945}
946
947#endif /* USE_PAM */
This page took 0.478236 seconds and 5 git commands to generate.