]> andersk Git - openssh.git/blame - auth-pam.c
- (djm) [auth-pam.c] Fix memleak in error path, from Coverity via
[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 */
93c5ef94 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 */
a5c9cd31 47
5ff453c0 48/* Based on $FreeBSD: src/crypto/openssh/auth2-pam-freebsd.c,v 1.11 2003/03/31 13:48:18 des Exp $ */
a5c9cd31 49#include "includes.h"
5ff453c0 50RCSID("$Id$");
a5c9cd31 51
b5b88c19 52#include <sys/types.h>
53#include <sys/stat.h>
54#include <sys/wait.h>
55#include <signal.h>
56
a5c9cd31 57#ifdef USE_PAM
2511d104 58#if defined(HAVE_SECURITY_PAM_APPL_H)
05114c74 59#include <security/pam_appl.h>
2511d104 60#elif defined (HAVE_PAM_PAM_APPL_H)
61#include <pam/pam_appl.h>
62#endif
05114c74 63
44171182 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
fde58bd4 71#include "auth.h"
5c377b3b 72#include "auth-pam.h"
05114c74 73#include "buffer.h"
74#include "bufaux.h"
42f11eb2 75#include "canohost.h"
05114c74 76#include "log.h"
77#include "monitor_wrap.h"
78#include "msg.h"
79#include "packet.h"
0f3ee929 80#include "misc.h"
05114c74 81#include "servconf.h"
82#include "ssh2.h"
83#include "xmalloc.h"
5b9e2464 84#include "auth-options.h"
a5c9cd31 85
7fceb20d 86extern ServerOptions options;
3eaf3960 87extern Buffer loginmsg;
b3ef7fb7 88extern int compat20;
1e08e787 89extern u_int utmp_len;
7fceb20d 90
b4143b2a 91/* so we don't silently change behaviour */
05114c74 92#ifdef USE_POSIX_THREADS
b4143b2a 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
05114c74 102#include <pthread.h>
103/*
aff51935 104 * Avoid namespace clash when *not* using pthreads for systems *with*
105 * pthreads, which unconditionally define pthread_t via sys/types.h
05114c74 106 * (e.g. Linux)
107 */
aff51935 108typedef pthread_t sp_pthread_t;
05114c74 109#else
e47e681f 110typedef pid_t sp_pthread_t;
111#endif
112
113struct pam_ctxt {
114 sp_pthread_t pam_thread;
115 int pam_psock;
116 int pam_csock;
117 int pam_done;
118};
119
120static void sshpam_free_ctx(void *);
121static struct pam_ctxt *cleanup_ctxt;
122
b4143b2a 123#ifndef UNSUPPORTED_POSIX_THREADS_HACK
05114c74 124/*
125 * Simulate threads with processes.
126 */
a5c9cd31 127
100e6910 128static int sshpam_thread_status = -1;
129static mysig_t sshpam_oldsig;
130
d1cf9a87 131static void
100e6910 132sshpam_sigchld_handler(int sig)
133{
8a956cda 134 signal(SIGCHLD, SIG_DFL);
28b49ff8 135 if (cleanup_ctxt == NULL)
136 return; /* handler called after PAM cleanup, shouldn't happen */
8a956cda 137 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, WNOHANG)
ed9e8be3 138 <= 0) {
8a956cda 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)
930d0441 142 <= 0)
8a956cda 143 return; /* could not wait */
144 }
100e6910 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
05114c74 154static void
155pthread_exit(void *value __unused)
156{
157 _exit(0);
158}
5daf7064 159
05114c74 160static int
161pthread_create(sp_pthread_t *thread, const void *attr __unused,
162 void *(*thread_start)(void *), void *arg)
163{
164 pid_t pid;
5d001c70 165 struct pam_ctxt *ctx = arg;
05114c74 166
355fbf31 167 sshpam_thread_status = -1;
05114c74 168 switch ((pid = fork())) {
169 case -1:
170 error("fork(): %s", strerror(errno));
171 return (-1);
172 case 0:
5d001c70 173 close(ctx->pam_psock);
174 ctx->pam_psock = -1;
05114c74 175 thread_start(arg);
176 _exit(1);
177 default:
178 *thread = pid;
5d001c70 179 close(ctx->pam_csock);
180 ctx->pam_csock = -1;
100e6910 181 sshpam_oldsig = signal(SIGCHLD, sshpam_sigchld_handler);
05114c74 182 return (0);
183 }
184}
a5c9cd31 185
05114c74 186static int
187pthread_cancel(sp_pthread_t thread)
8c9fe09e 188{
28b49ff8 189 signal(SIGCHLD, sshpam_oldsig);
05114c74 190 return (kill(thread, SIGTERM));
8c9fe09e 191}
192
05114c74 193static int
194pthread_join(sp_pthread_t thread, void **value __unused)
8c9fe09e 195{
05114c74 196 int status;
197
100e6910 198 if (sshpam_thread_status != -1)
199 return (sshpam_thread_status);
200 signal(SIGCHLD, sshpam_oldsig);
05114c74 201 waitpid(thread, &status, 0);
202 return (status);
8c9fe09e 203}
05114c74 204#endif
205
206
0a23d79f 207static pam_handle_t *sshpam_handle = NULL;
208static int sshpam_err = 0;
209static int sshpam_authenticated = 0;
0a23d79f 210static int sshpam_session_open = 0;
211static int sshpam_cred_established = 0;
b3ef7fb7 212static int sshpam_account_status = -1;
2212fc98 213static char **sshpam_env = NULL;
d948154a 214static Authctxt *sshpam_authctxt = NULL;
5de92f17 215static const char *sshpam_password = NULL;
af0e5c2f 216static char badpw[] = "\b\n\r\177INCORRECT";
05114c74 217
2212fc98 218/* Some PAM implementations don't implement this */
219#ifndef HAVE_PAM_GETENVLIST
220static char **
221pam_getenvlist(pam_handle_t *pamh)
222{
223 /*
aff51935 224 * XXX - If necessary, we can still support envrionment passing
2212fc98 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
059d3165 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
240static int
241sshpam_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
b3ef7fb7 257void
c10bb2ce 258sshpam_password_change_required(int reqd)
b3ef7fb7 259{
90f3c272 260 debug3("%s %d", __func__, reqd);
d948154a 261 if (sshpam_authctxt == NULL)
529d73ab 262 fatal("%s: PAM authctxt not initialized", __func__);
d948154a 263 sshpam_authctxt->force_pwchange = reqd;
b3ef7fb7 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;
b3ef7fb7 272 }
273}
dd1fb864 274
2212fc98 275/* Import regular and PAM environment from subprocess */
276static void
277import_environments(Buffer *b)
278{
279 char *env;
280 u_int i, num_env;
281 int err;
282
90f3c272 283 debug3("PAM: %s entering", __func__);
284
b4143b2a 285#ifndef UNSUPPORTED_POSIX_THREADS_HACK
b3ef7fb7 286 /* Import variables set by do_pam_account */
287 sshpam_account_status = buffer_get_int(b);
c10bb2ce 288 sshpam_password_change_required(buffer_get_int(b));
b3ef7fb7 289
2212fc98 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
f79a6165 305#ifdef HAVE_PAM_PUTENV
2212fc98 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 }
f79a6165 311#endif
2212fc98 312 }
a1e0095d 313#endif
2212fc98 314}
315
ad55cd03 316/*
05114c74 317 * Conversation function for authentication thread.
ad55cd03 318 */
05114c74 319static int
44171182 320sshpam_thread_conv(int n, sshpam_const struct pam_message **msg,
5b9e2464 321 struct pam_response **resp, void *data)
a5c9cd31 322{
05114c74 323 Buffer buffer;
324 struct pam_ctxt *ctxt;
0a23d79f 325 struct pam_response *reply;
05114c74 326 int i;
327
60922169 328 debug3("PAM: %s entering, %d messages", __func__, n);
0a23d79f 329 *resp = NULL;
330
d506e25f 331 if (data == NULL) {
332 error("PAM: conversation function passed a null context");
333 return (PAM_CONV_ERR);
334 }
05114c74 335 ctxt = data;
336 if (n <= 0 || n > PAM_MAX_NUM_MSG)
337 return (PAM_CONV_ERR);
0a23d79f 338
339 if ((reply = malloc(n * sizeof(*reply))) == NULL)
340 return (PAM_CONV_ERR);
341 memset(reply, 0, n * sizeof(*reply));
342
05114c74 343 buffer_init(&buffer);
344 for (i = 0; i < n; ++i) {
05114c74 345 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
346 case PAM_PROMPT_ECHO_OFF:
aff51935 347 buffer_put_cstring(&buffer,
0a23d79f 348 PAM_MSG_MEMBER(msg, i, msg));
aff51935 349 if (ssh_msg_send(ctxt->pam_csock,
7b2a0de3 350 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
351 goto fail;
aff51935 352 if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
7b2a0de3 353 goto fail;
05114c74 354 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
355 goto fail;
0a23d79f 356 reply[i].resp = buffer_get_string(&buffer, NULL);
05114c74 357 break;
358 case PAM_PROMPT_ECHO_ON:
aff51935 359 buffer_put_cstring(&buffer,
0a23d79f 360 PAM_MSG_MEMBER(msg, i, msg));
aff51935 361 if (ssh_msg_send(ctxt->pam_csock,
7b2a0de3 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;
05114c74 366 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
367 goto fail;
0a23d79f 368 reply[i].resp = buffer_get_string(&buffer, NULL);
05114c74 369 break;
370 case PAM_ERROR_MSG:
aff51935 371 buffer_put_cstring(&buffer,
0a23d79f 372 PAM_MSG_MEMBER(msg, i, msg));
aff51935 373 if (ssh_msg_send(ctxt->pam_csock,
7b2a0de3 374 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
375 goto fail;
05114c74 376 break;
377 case PAM_TEXT_INFO:
aff51935 378 buffer_put_cstring(&buffer,
0a23d79f 379 PAM_MSG_MEMBER(msg, i, msg));
aff51935 380 if (ssh_msg_send(ctxt->pam_csock,
7b2a0de3 381 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
382 goto fail;
05114c74 383 break;
384 default:
385 goto fail;
a5c9cd31 386 }
05114c74 387 buffer_clear(&buffer);
a5c9cd31 388 }
05114c74 389 buffer_free(&buffer);
0a23d79f 390 *resp = reply;
05114c74 391 return (PAM_SUCCESS);
0a23d79f 392
05114c74 393 fail:
0a23d79f 394 for(i = 0; i < n; i++) {
395 if (reply[i].resp != NULL)
396 xfree(reply[i].resp);
397 }
398 xfree(reply);
05114c74 399 buffer_free(&buffer);
400 return (PAM_CONV_ERR);
401}
a5c9cd31 402
05114c74 403/*
404 * Authentication thread.
405 */
406static void *
407sshpam_thread(void *ctxtp)
408{
409 struct pam_ctxt *ctxt = ctxtp;
410 Buffer buffer;
c53917a9 411 struct pam_conv sshpam_conv;
e4472e7e 412 int flags = (options.permit_empty_passwd == 0 ?
413 PAM_DISALLOW_NULL_AUTHTOK : 0);
b4143b2a 414#ifndef UNSUPPORTED_POSIX_THREADS_HACK
2212fc98 415 extern char **environ;
416 char **env_from_pam;
417 u_int i;
05114c74 418 const char *pam_user;
44171182 419 const char **ptr_pam_user = &pam_user;
05114c74 420
44171182 421 pam_get_item(sshpam_handle, PAM_USER,
422 (sshpam_const void **)ptr_pam_user);
2212fc98 423 environ[0] = NULL;
da97d54d 424
425 if (sshpam_authctxt != NULL) {
426 setproctitle("%s [pam]",
427 sshpam_authctxt->valid ? pam_user : "unknown");
428 }
05114c74 429#endif
a5c9cd31 430
c53917a9 431 sshpam_conv.conv = sshpam_thread_conv;
432 sshpam_conv.appdata_ptr = ctxt;
433
d948154a 434 if (sshpam_authctxt == NULL)
529d73ab 435 fatal("%s: PAM authctxt not initialized", __func__);
436
05114c74 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;
e4472e7e 442 sshpam_err = pam_authenticate(sshpam_handle, flags);
05114c74 443 if (sshpam_err != PAM_SUCCESS)
444 goto auth_fail;
b3ef7fb7 445
2935db92 446 if (compat20) {
b3ef7fb7 447 if (!do_pam_account())
448 goto auth_fail;
d948154a 449 if (sshpam_authctxt->force_pwchange) {
b3ef7fb7 450 sshpam_err = pam_chauthtok(sshpam_handle,
451 PAM_CHANGE_EXPIRED_AUTHTOK);
452 if (sshpam_err != PAM_SUCCESS)
453 goto auth_fail;
c10bb2ce 454 sshpam_password_change_required(0);
b3ef7fb7 455 }
2935db92 456 }
b3ef7fb7 457
05114c74 458 buffer_put_cstring(&buffer, "OK");
2212fc98 459
b4143b2a 460#ifndef UNSUPPORTED_POSIX_THREADS_HACK
b3ef7fb7 461 /* Export variables set by do_pam_account */
462 buffer_put_int(&buffer, sshpam_account_status);
d948154a 463 buffer_put_int(&buffer, sshpam_authctxt->force_pwchange);
b3ef7fb7 464
2212fc98 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]);
b4143b2a 479#endif /* UNSUPPORTED_POSIX_THREADS_HACK */
2212fc98 480
7b2a0de3 481 /* XXX - can't do much about an error here */
05114c74 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));
7b2a0de3 489 /* XXX - can't do much about an error here */
05114c74 490 ssh_msg_send(ctxt->pam_csock, PAM_AUTH_ERR, &buffer);
491 buffer_free(&buffer);
492 pthread_exit(NULL);
b6453d99 493
05114c74 494 return (NULL); /* Avoid warning for non-pthread case */
a5c9cd31 495}
496
c6630044 497void
498sshpam_thread_cleanup(void)
a5c9cd31 499{
c6630044 500 struct pam_ctxt *ctxt = cleanup_ctxt;
501
90f3c272 502 debug3("PAM: %s entering", __func__);
c6630044 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 }
05114c74 511}
a5c9cd31 512
05114c74 513static int
44171182 514sshpam_null_conv(int n, sshpam_const struct pam_message **msg,
5b9e2464 515 struct pam_response **resp, void *data)
05114c74 516{
60922169 517 debug3("PAM: %s entering, %d messages", __func__, n);
05114c74 518 return (PAM_CONV_ERR);
519}
a5c9cd31 520
05114c74 521static struct pam_conv null_conv = { sshpam_null_conv, NULL };
522
ab17aac2 523static int
44171182 524sshpam_store_conv(int n, sshpam_const struct pam_message **msg,
ab17aac2 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
566static struct pam_conv store_conv = { sshpam_store_conv, NULL };
567
c6630044 568void
569sshpam_cleanup(void)
05114c74 570{
05114c74 571 debug("PAM: cleanup");
0a23d79f 572 if (sshpam_handle == NULL)
573 return;
05114c74 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;
a5c9cd31 582 }
dd1fb864 583 sshpam_authenticated = 0;
05114c74 584 pam_end(sshpam_handle, sshpam_err);
585 sshpam_handle = NULL;
a5c9cd31 586}
587
05114c74 588static int
529d73ab 589sshpam_init(Authctxt *authctxt)
a5c9cd31 590{
74678fb9 591 extern char *__progname;
529d73ab 592 const char *pam_rhost, *pam_user, *user = authctxt->user;
44171182 593 const char **ptr_pam_user = &pam_user;
05114c74 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,
44171182 598 PAM_USER, (sshpam_const void **)ptr_pam_user);
05114c74 599 if (sshpam_err == PAM_SUCCESS && strcmp(user, pam_user) == 0)
600 return (0);
05114c74 601 pam_end(sshpam_handle, sshpam_err);
602 sshpam_handle = NULL;
603 }
604 debug("PAM: initializing for \"%s\"", user);
01224183 605 sshpam_err =
ba6dd90e 606 pam_start(SSHD_PAM_SERVICE, user, &store_conv, &sshpam_handle);
d948154a 607 sshpam_authctxt = authctxt;
529d73ab 608
5ff453c0 609 if (sshpam_err != PAM_SUCCESS) {
610 pam_end(sshpam_handle, sshpam_err);
611 sshpam_handle = NULL;
05114c74 612 return (-1);
5ff453c0 613 }
c5a7d788 614 pam_rhost = get_remote_name_or_ip(utmp_len, options.use_dns);
05d62329 615 debug("PAM: setting PAM_RHOST to \"%s\"", pam_rhost);
05114c74 616 sshpam_err = pam_set_item(sshpam_handle, PAM_RHOST, pam_rhost);
5ff453c0 617 if (sshpam_err != PAM_SUCCESS) {
5b9e2464 618 pam_end(sshpam_handle, sshpam_err);
5ff453c0 619 sshpam_handle = NULL;
620 return (-1);
621 }
622#ifdef PAM_TTY_KLUDGE
aff51935 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
5ff453c0 626 * may not even set one (for tty-less connections)
aff51935 627 */
5ff453c0 628 debug("PAM: setting PAM_TTY to \"ssh\"");
629 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, "ssh");
05114c74 630 if (sshpam_err != PAM_SUCCESS) {
631 pam_end(sshpam_handle, sshpam_err);
632 sshpam_handle = NULL;
633 return (-1);
a5c9cd31 634 }
5ff453c0 635#endif
05114c74 636 return (0);
a5c9cd31 637}
638
05114c74 639static void *
640sshpam_init_ctx(Authctxt *authctxt)
a5c9cd31 641{
05114c74 642 struct pam_ctxt *ctxt;
643 int socks[2];
2b87da3b 644
90f3c272 645 debug3("PAM: %s entering", __func__);
7fceb20d 646 /* Refuse to start if we don't have PAM enabled */
647 if (!options.use_pam)
648 return NULL;
649
05114c74 650 /* Initialize PAM */
529d73ab 651 if (sshpam_init(authctxt) == -1) {
05114c74 652 error("PAM: initialization failed");
653 return (NULL);
654 }
5c377b3b 655
05114c74 656 ctxt = xmalloc(sizeof *ctxt);
c6630044 657 memset(ctxt, 0, sizeof(*ctxt));
05114c74 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);
a5c9cd31 674 }
c6630044 675 cleanup_ctxt = ctxt;
05114c74 676 return (ctxt);
677}
a5c9cd31 678
05114c74 679static int
680sshpam_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;
bbe58934 688 size_t len, mlen;
05114c74 689
90f3c272 690 debug3("PAM: %s entering", __func__);
05114c74 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);
bbe58934 701 mlen = strlen(msg);
05114c74 702 switch (type) {
703 case PAM_PROMPT_ECHO_ON:
704 case PAM_PROMPT_ECHO_OFF:
705 *num = 1;
bbe58934 706 len = plen + mlen + 1;
cbdeccf3 707 **prompts = xrealloc(**prompts, len);
bbe58934 708 strlcpy(**prompts + plen, msg, len - plen);
709 plen += mlen;
05114c74 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 */
bbe58934 716 len = plen + mlen + 2;
cbdeccf3 717 **prompts = xrealloc(**prompts, len);
bbe58934 718 strlcpy(**prompts + plen, msg, len - plen);
719 plen += mlen;
720 strlcat(**prompts + plen, "\n", len - plen);
721 plen++;
05114c74 722 xfree(msg);
5daf7064 723 break;
05114c74 724 case PAM_AUTH_ERR:
cafa6a80 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;
08a3f952 732 xfree(msg);
cafa6a80 733 return 0;
734 }
735 /* FALLTHROUGH */
736 case PAM_SUCCESS:
05114c74 737 if (**prompts != NULL) {
738 /* drain any accumulated messages */
3eaf3960 739 debug("PAM: %s", **prompts);
740 buffer_append(&loginmsg, **prompts,
741 strlen(**prompts));
05114c74 742 xfree(**prompts);
743 **prompts = NULL;
744 }
745 if (type == PAM_SUCCESS) {
2d5104e2 746 if (!sshpam_authctxt->valid ||
747 (sshpam_authctxt->pw->pw_uid == 0 &&
748 options.permit_root_login != PERMIT_YES))
af0e5c2f 749 fatal("Internal error: PAM auth "
750 "succeeded when it should have "
751 "failed");
2212fc98 752 import_environments(&buffer);
05114c74 753 *num = 0;
754 **echo_on = 0;
755 ctxt->pam_done = 1;
756 xfree(msg);
757 return (0);
758 }
1e08e787 759 error("PAM: %s for %s%.100s from %.100s", msg,
760 sshpam_authctxt->valid ? "" : "illegal user ",
761 sshpam_authctxt->user,
762 get_remote_name_or_ip(utmp_len, options.use_dns));
e250770b 763 /* FALLTHROUGH */
5daf7064 764 default:
05114c74 765 *num = 0;
766 **echo_on = 0;
767 xfree(msg);
768 ctxt->pam_done = -1;
769 return (-1);
770 }
a5c9cd31 771 }
05114c74 772 return (-1);
a5c9cd31 773}
774
05114c74 775/* XXX - see also comment in auth-chall.c:verify_response */
776static int
777sshpam_respond(void *ctx, u_int num, char **resp)
a5c9cd31 778{
05114c74 779 Buffer buffer;
780 struct pam_ctxt *ctxt = ctx;
781
912acf53 782 debug2("PAM: %s entering, %u responses", __func__, num);
05114c74 783 switch (ctxt->pam_done) {
784 case 1:
785 sshpam_authenticated = 1;
786 return (0);
787 case 0:
788 break;
789 default:
790 return (-1);
a5c9cd31 791 }
05114c74 792 if (num != 1) {
793 error("PAM: expected one response, got %u", num);
794 return (-1);
795 }
796 buffer_init(&buffer);
2d5104e2 797 if (sshpam_authctxt->valid &&
798 (sshpam_authctxt->pw->pw_uid != 0 ||
ed9e8be3 799 options.permit_root_login == PERMIT_YES))
af0e5c2f 800 buffer_put_cstring(&buffer, *resp);
801 else
802 buffer_put_cstring(&buffer, badpw);
7b2a0de3 803 if (ssh_msg_send(ctxt->pam_psock, PAM_AUTHTOK, &buffer) == -1) {
804 buffer_free(&buffer);
805 return (-1);
806 }
05114c74 807 buffer_free(&buffer);
808 return (1);
a5c9cd31 809}
810
05114c74 811static void
812sshpam_free_ctx(void *ctxtp)
a5c9cd31 813{
05114c74 814 struct pam_ctxt *ctxt = ctxtp;
39ce53de 815
90f3c272 816 debug3("PAM: %s entering", __func__);
c6630044 817 sshpam_thread_cleanup();
05114c74 818 xfree(ctxt);
819 /*
820 * We don't call sshpam_cleanup() here because we may need the PAM
821 * handle at a later stage, e.g. when setting up a session. It's
822 * still on the cleanup list, so pam_end() *will* be called before
823 * the server process terminates.
824 */
ad55cd03 825}
826
05114c74 827KbdintDevice sshpam_device = {
828 "pam",
829 sshpam_init_ctx,
830 sshpam_query,
831 sshpam_respond,
832 sshpam_free_ctx
833};
834
835KbdintDevice mm_sshpam_device = {
836 "pam",
837 mm_sshpam_init_ctx,
838 mm_sshpam_query,
839 mm_sshpam_respond,
840 mm_sshpam_free_ctx
841};
2919e060 842
2b87da3b 843/*
05114c74 844 * This replaces auth-pam.c
ad55cd03 845 */
05114c74 846void
529d73ab 847start_pam(Authctxt *authctxt)
ad55cd03 848{
817e6d38 849 if (!options.use_pam)
850 fatal("PAM: initialisation requested when UsePAM=no");
851
529d73ab 852 if (sshpam_init(authctxt) == -1)
05114c74 853 fatal("PAM: initialisation failed");
a5c9cd31 854}
855
05114c74 856void
857finish_pam(void)
a5c9cd31 858{
c6630044 859 sshpam_cleanup();
a5c9cd31 860}
861
5b9e2464 862u_int
863do_pam_account(void)
a5c9cd31 864{
ba6dd90e 865 debug("%s: called", __func__);
b3ef7fb7 866 if (sshpam_account_status != -1)
867 return (sshpam_account_status);
868
5b9e2464 869 sshpam_err = pam_acct_mgmt(sshpam_handle, 0);
ba6dd90e 870 debug3("PAM: %s pam_acct_mgmt = %d (%s)", __func__, sshpam_err,
871 pam_strerror(sshpam_handle, sshpam_err));
d1cf9a87 872
b3ef7fb7 873 if (sshpam_err != PAM_SUCCESS && sshpam_err != PAM_NEW_AUTHTOK_REQD) {
874 sshpam_account_status = 0;
875 return (sshpam_account_status);
5b9e2464 876 }
877
b3ef7fb7 878 if (sshpam_err == PAM_NEW_AUTHTOK_REQD)
c10bb2ce 879 sshpam_password_change_required(1);
b3ef7fb7 880
881 sshpam_account_status = 1;
882 return (sshpam_account_status);
05114c74 883}
46c76c63 884
49e82bb9 885void
886do_pam_set_tty(const char *tty)
887{
26b3608b 888 if (tty != NULL) {
889 debug("PAM: setting PAM_TTY to \"%s\"", tty);
890 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, tty);
891 if (sshpam_err != PAM_SUCCESS)
892 fatal("PAM: failed to set PAM_TTY: %s",
893 pam_strerror(sshpam_handle, sshpam_err));
894 }
05114c74 895}
cbd7492e 896
05114c74 897void
898do_pam_setcred(int init)
899{
900 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
ba6dd90e 901 (const void *)&store_conv);
05114c74 902 if (sshpam_err != PAM_SUCCESS)
903 fatal("PAM: failed to set PAM_CONV: %s",
904 pam_strerror(sshpam_handle, sshpam_err));
905 if (init) {
906 debug("PAM: establishing credentials");
907 sshpam_err = pam_setcred(sshpam_handle, PAM_ESTABLISH_CRED);
908 } else {
909 debug("PAM: reinitializing credentials");
910 sshpam_err = pam_setcred(sshpam_handle, PAM_REINITIALIZE_CRED);
911 }
912 if (sshpam_err == PAM_SUCCESS) {
913 sshpam_cred_established = 1;
914 return;
915 }
916 if (sshpam_authenticated)
917 fatal("PAM: pam_setcred(): %s",
918 pam_strerror(sshpam_handle, sshpam_err));
919 else
920 debug("PAM: pam_setcred(): %s",
921 pam_strerror(sshpam_handle, sshpam_err));
a5c9cd31 922}
923
05114c74 924static int
44171182 925sshpam_tty_conv(int n, sshpam_const struct pam_message **msg,
5b9e2464 926 struct pam_response **resp, void *data)
ee48c949 927{
05114c74 928 char input[PAM_MAX_MSG_SIZE];
0a23d79f 929 struct pam_response *reply;
ee48c949 930 int i;
931
60922169 932 debug3("PAM: %s called with %d messages", __func__, n);
933
0a23d79f 934 *resp = NULL;
935
3eaf3960 936 if (n <= 0 || n > PAM_MAX_NUM_MSG || !isatty(STDIN_FILENO))
05114c74 937 return (PAM_CONV_ERR);
0a23d79f 938
939 if ((reply = malloc(n * sizeof(*reply))) == NULL)
940 return (PAM_CONV_ERR);
941 memset(reply, 0, n * sizeof(*reply));
942
05114c74 943 for (i = 0; i < n; ++i) {
944 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
945 case PAM_PROMPT_ECHO_OFF:
0a23d79f 946 reply[i].resp =
aff51935 947 read_passphrase(PAM_MSG_MEMBER(msg, i, msg),
05114c74 948 RP_ALLOW_STDIN);
0a23d79f 949 reply[i].resp_retcode = PAM_SUCCESS;
05114c74 950 break;
951 case PAM_PROMPT_ECHO_ON:
74117b26 952 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
05114c74 953 fgets(input, sizeof input, stdin);
8936b151 954 if ((reply[i].resp = strdup(input)) == NULL)
955 goto fail;
0a23d79f 956 reply[i].resp_retcode = PAM_SUCCESS;
05114c74 957 break;
958 case PAM_ERROR_MSG:
959 case PAM_TEXT_INFO:
74117b26 960 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
0a23d79f 961 reply[i].resp_retcode = PAM_SUCCESS;
05114c74 962 break;
963 default:
964 goto fail;
965 }
ee48c949 966 }
0a23d79f 967 *resp = reply;
05114c74 968 return (PAM_SUCCESS);
0a23d79f 969
05114c74 970 fail:
0a23d79f 971 for(i = 0; i < n; i++) {
972 if (reply[i].resp != NULL)
973 xfree(reply[i].resp);
974 }
975 xfree(reply);
05114c74 976 return (PAM_CONV_ERR);
ee48c949 977}
978
8600a4ab 979static struct pam_conv tty_conv = { sshpam_tty_conv, NULL };
3eaf3960 980
05114c74 981/*
982 * XXX this should be done in the authentication phase, but ssh1 doesn't
983 * support that
984 */
985void
986do_pam_chauthtok(void)
a5c9cd31 987{
05114c74 988 if (use_privsep)
5b9e2464 989 fatal("Password expired (unable to change with privsep)");
05114c74 990 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
3eaf3960 991 (const void *)&tty_conv);
05114c74 992 if (sshpam_err != PAM_SUCCESS)
993 fatal("PAM: failed to set PAM_CONV: %s",
994 pam_strerror(sshpam_handle, sshpam_err));
995 debug("PAM: changing password");
996 sshpam_err = pam_chauthtok(sshpam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
997 if (sshpam_err != PAM_SUCCESS)
998 fatal("PAM: pam_chauthtok(): %s",
999 pam_strerror(sshpam_handle, sshpam_err));
5daf7064 1000}
1001
3eaf3960 1002void
1003do_pam_session(void)
1004{
dd1fb864 1005 debug3("PAM: opening session");
aff51935 1006 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
ef687c66 1007 (const void *)&store_conv);
3eaf3960 1008 if (sshpam_err != PAM_SUCCESS)
1009 fatal("PAM: failed to set PAM_CONV: %s",
1010 pam_strerror(sshpam_handle, sshpam_err));
1011 sshpam_err = pam_open_session(sshpam_handle, 0);
abdec250 1012 if (sshpam_err == PAM_SUCCESS)
1013 sshpam_session_open = 1;
1014 else {
1015 sshpam_session_open = 0;
1016 disable_forwarding();
1017 error("PAM: pam_open_session(): %s",
3eaf3960 1018 pam_strerror(sshpam_handle, sshpam_err));
abdec250 1019 }
1020
1021}
1022
1023int
1024is_pam_session_open(void)
1025{
1026 return sshpam_session_open;
3eaf3960 1027}
1028
aff51935 1029/*
749560dd 1030 * Set a PAM environment string. We need to do this so that the session
1031 * modules can handle things like Kerberos/GSI credentials that appear
1032 * during the ssh authentication process.
1033 */
749560dd 1034int
aff51935 1035do_pam_putenv(char *name, char *value)
749560dd 1036{
749560dd 1037 int ret = 1;
b6453d99 1038#ifdef HAVE_PAM_PUTENV
263c65df 1039 char *compound;
1040 size_t len;
1041
1042 len = strlen(name) + strlen(value) + 2;
1043 compound = xmalloc(len);
1044
1045 snprintf(compound, len, "%s=%s", name, value);
1046 ret = pam_putenv(sshpam_handle, compound);
1047 xfree(compound);
749560dd 1048#endif
263c65df 1049
749560dd 1050 return (ret);
1051}
1052
2212fc98 1053char **
1054fetch_pam_child_environment(void)
1055{
1056 return sshpam_env;
1057}
1058
05114c74 1059char **
1060fetch_pam_environment(void)
1061{
05114c74 1062 return (pam_getenvlist(sshpam_handle));
05114c74 1063}
5c377b3b 1064
05114c74 1065void
1066free_pam_environment(char **env)
1067{
1068 char **envp;
5daf7064 1069
0eb6370a 1070 if (env == NULL)
1071 return;
1072
05114c74 1073 for (envp = env; *envp; envp++)
1074 xfree(*envp);
1075 xfree(env);
a5c9cd31 1076}
1077
5de92f17 1078/*
1079 * "Blind" conversation function for password authentication. Assumes that
1080 * echo-off prompts are for the password and stores messages for later
1081 * display.
1082 */
1083static int
44171182 1084sshpam_passwd_conv(int n, sshpam_const struct pam_message **msg,
5de92f17 1085 struct pam_response **resp, void *data)
1086{
1087 struct pam_response *reply;
1088 int i;
1089 size_t len;
1090
1091 debug3("PAM: %s called with %d messages", __func__, n);
1092
1093 *resp = NULL;
1094
1095 if (n <= 0 || n > PAM_MAX_NUM_MSG)
1096 return (PAM_CONV_ERR);
1097
1098 if ((reply = malloc(n * sizeof(*reply))) == NULL)
1099 return (PAM_CONV_ERR);
1100 memset(reply, 0, n * sizeof(*reply));
1101
1102 for (i = 0; i < n; ++i) {
1103 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
1104 case PAM_PROMPT_ECHO_OFF:
1105 if (sshpam_password == NULL)
1106 goto fail;
8936b151 1107 if ((reply[i].resp = strdup(sshpam_password)) == NULL)
1108 goto fail;
5de92f17 1109 reply[i].resp_retcode = PAM_SUCCESS;
1110 break;
1111 case PAM_ERROR_MSG:
1112 case PAM_TEXT_INFO:
1113 len = strlen(PAM_MSG_MEMBER(msg, i, msg));
1114 if (len > 0) {
1115 buffer_append(&loginmsg,
1116 PAM_MSG_MEMBER(msg, i, msg), len);
1117 buffer_append(&loginmsg, "\n", 1);
1118 }
8936b151 1119 if ((reply[i].resp = strdup("")) == NULL)
1120 goto fail;
5de92f17 1121 reply[i].resp_retcode = PAM_SUCCESS;
1122 break;
1123 default:
1124 goto fail;
1125 }
1126 }
1127 *resp = reply;
1128 return (PAM_SUCCESS);
1129
d1cf9a87 1130 fail:
5de92f17 1131 for(i = 0; i < n; i++) {
1132 if (reply[i].resp != NULL)
1133 xfree(reply[i].resp);
1134 }
1135 xfree(reply);
1136 return (PAM_CONV_ERR);
1137}
1138
1139static struct pam_conv passwd_conv = { sshpam_passwd_conv, NULL };
1140
1141/*
1142 * Attempt password authentication via PAM
1143 */
1144int
1145sshpam_auth_passwd(Authctxt *authctxt, const char *password)
1146{
1147 int flags = (options.permit_empty_passwd == 0 ?
1148 PAM_DISALLOW_NULL_AUTHTOK : 0);
1149
1150 if (!options.use_pam || sshpam_handle == NULL)
1151 fatal("PAM: %s called when PAM disabled or failed to "
1152 "initialise.", __func__);
1153
1154 sshpam_password = password;
1155 sshpam_authctxt = authctxt;
1156
0e716148 1157 /*
1158 * If the user logging in is invalid, or is root but is not permitted
1159 * by PermitRootLogin, use an invalid password to prevent leaking
1160 * information via timing (eg if the PAM config has a delay on fail).
1161 */
2d5104e2 1162 if (!authctxt->valid || (authctxt->pw->pw_uid == 0 &&
ed9e8be3 1163 options.permit_root_login != PERMIT_YES))
0e716148 1164 sshpam_password = badpw;
1165
5de92f17 1166 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
1167 (const void *)&passwd_conv);
1168 if (sshpam_err != PAM_SUCCESS)
1169 fatal("PAM: %s: failed to set PAM_CONV: %s", __func__,
1170 pam_strerror(sshpam_handle, sshpam_err));
1171
1172 sshpam_err = pam_authenticate(sshpam_handle, flags);
1173 sshpam_password = NULL;
2d5104e2 1174 if (sshpam_err == PAM_SUCCESS && authctxt->valid) {
5de92f17 1175 debug("PAM: password authentication accepted for %.100s",
1176 authctxt->user);
ed9e8be3 1177 return 1;
5de92f17 1178 } else {
1179 debug("PAM: password authentication failed for %.100s: %s",
1180 authctxt->valid ? authctxt->user : "an illegal user",
1181 pam_strerror(sshpam_handle, sshpam_err));
1182 return 0;
1183 }
1184}
a5c9cd31 1185#endif /* USE_PAM */
This page took 0.371073 seconds and 5 git commands to generate.