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