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