blob: d789bad7b9bd6e5b1605862be19f381ea493cac5 [file] [log] [blame]
Damien Miller4f9f42a2003-05-10 19:28:02 +10001/*-
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.
Damien Millere69f18c2000-06-12 16:38:54 +10009 *
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.
Damien Millere69f18c2000-06-12 16:38:54 +100018 *
Damien Miller4f9f42a2003-05-10 19:28:02 +100019 * 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.
Damien Millere72b7af1999-12-30 15:08:44 +110030 */
Damien Miller26314f62004-06-01 11:28:20 +100031/*
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 */
Damien Millere72b7af1999-12-30 15:08:44 +110047
Damien Miller25d93422003-05-18 20:45:47 +100048/* Based on $FreeBSD: src/crypto/openssh/auth2-pam-freebsd.c,v 1.11 2003/03/31 13:48:18 des Exp $ */
Damien Millere72b7af1999-12-30 15:08:44 +110049#include "includes.h"
Damien Miller6645e7a2006-03-15 14:42:54 +110050
51#include <sys/types.h>
52#include <sys/stat.h>
53#include <sys/wait.h>
Darren Tucker341dae52006-07-13 08:45:14 +100054
55#include <errno.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110056#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100057#include <stdarg.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100058#include <string.h>
59#include <unistd.h>
Damien Millere72b7af1999-12-30 15:08:44 +110060
61#ifdef USE_PAM
Damien Miller0f47c532004-01-02 18:01:30 +110062#if defined(HAVE_SECURITY_PAM_APPL_H)
Damien Miller4f9f42a2003-05-10 19:28:02 +100063#include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +110064#elif defined (HAVE_PAM_PAM_APPL_H)
65#include <pam/pam_appl.h>
66#endif
Damien Miller4f9f42a2003-05-10 19:28:02 +100067
Darren Tuckerf08bdb52005-05-26 19:59:48 +100068/* 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
Damien Miller2ab323e2006-08-05 12:43:32 +100075/* 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
Damien Miller75bb6642006-08-05 14:07:20 +100082#include "xmalloc.h"
83#include "buffer.h"
84#include "key.h"
85#include "hostfile.h"
Kevin Stevese683e762002-04-04 19:02:28 +000086#include "auth.h"
Damien Miller63dc3e92001-02-07 12:58:33 +110087#include "auth-pam.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000088#include "canohost.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100089#include "log.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100090#include "msg.h"
91#include "packet.h"
Darren Tuckerb6db1722004-05-13 17:29:35 +100092#include "misc.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100093#include "servconf.h"
94#include "ssh2.h"
Damien Miller1f499fd2003-08-25 13:08:49 +100095#include "auth-options.h"
Damien Miller75bb6642006-08-05 14:07:20 +100096#ifdef GSSAPI
97#include "ssh-gss.h"
98#endif
99#include "monitor_wrap.h"
Damien Millere72b7af1999-12-30 15:08:44 +1100100
Damien Miller4e448a32003-05-14 15:11:48 +1000101extern ServerOptions options;
Darren Tucker18df00c2003-11-18 12:42:07 +1100102extern Buffer loginmsg;
Darren Tucker07705c72003-12-18 15:34:31 +1100103extern int compat20;
Darren Tucker2a9bf4b2004-04-18 11:00:26 +1000104extern u_int utmp_len;
Damien Miller4e448a32003-05-14 15:11:48 +1000105
Darren Tucker328118a2005-05-25 16:18:09 +1000106/* so we don't silently change behaviour */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000107#ifdef USE_POSIX_THREADS
Darren Tucker328118a2005-05-25 16:18:09 +1000108# 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
Damien Miller4f9f42a2003-05-10 19:28:02 +1000117#include <pthread.h>
118/*
Damien Millera8e06ce2003-11-21 23:48:55 +1100119 * Avoid namespace clash when *not* using pthreads for systems *with*
120 * pthreads, which unconditionally define pthread_t via sys/types.h
Damien Miller4f9f42a2003-05-10 19:28:02 +1000121 * (e.g. Linux)
122 */
Damien Millera8e06ce2003-11-21 23:48:55 +1100123typedef pthread_t sp_pthread_t;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000124#else
Darren Tucker1b27c8f2004-01-13 22:35:58 +1100125typedef 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
Darren Tucker328118a2005-05-25 16:18:09 +1000138#ifndef UNSUPPORTED_POSIX_THREADS_HACK
Damien Miller4f9f42a2003-05-10 19:28:02 +1000139/*
140 * Simulate threads with processes.
141 */
Kevin Steves63007d42002-07-21 17:57:01 +0000142
Darren Tucker749bc952004-01-14 22:14:04 +1100143static int sshpam_thread_status = -1;
144static mysig_t sshpam_oldsig;
145
Damien Miller94cf4c82005-07-17 17:04:47 +1000146static void
Darren Tucker749bc952004-01-14 22:14:04 +1100147sshpam_sigchld_handler(int sig)
148{
Darren Tuckerb53355e2004-05-24 11:55:36 +1000149 signal(SIGCHLD, SIG_DFL);
Darren Tucker7ae09622004-01-14 23:07:56 +1100150 if (cleanup_ctxt == NULL)
151 return; /* handler called after PAM cleanup, shouldn't happen */
Darren Tuckerb53355e2004-05-24 11:55:36 +1000152 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, WNOHANG)
Damien Miller37294fb2005-07-17 17:18:49 +1000153 <= 0) {
Darren Tuckerb53355e2004-05-24 11:55:36 +1000154 /* 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)
Darren Tucker5d423f42004-07-11 16:54:08 +1000157 <= 0)
Darren Tuckerb53355e2004-05-24 11:55:36 +1000158 return; /* could not wait */
159 }
Darren Tucker749bc952004-01-14 22:14:04 +1100160 if (WIFSIGNALED(sshpam_thread_status) &&
161 WTERMSIG(sshpam_thread_status) == SIGTERM)
162 return; /* terminated by pthread_cancel */
163 if (!WIFEXITED(sshpam_thread_status))
Darren Tucker57d4ca92007-08-10 14:32:34 +1000164 sigdie("PAM: authentication thread exited unexpectedly");
Darren Tucker749bc952004-01-14 22:14:04 +1100165 if (WEXITSTATUS(sshpam_thread_status) != 0)
Darren Tucker57d4ca92007-08-10 14:32:34 +1000166 sigdie("PAM: authentication thread exited uncleanly");
Darren Tucker749bc952004-01-14 22:14:04 +1100167}
168
Damien Millerb8fe89c2006-07-24 14:51:00 +1000169/* ARGSUSED */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000170static void
Damien Millerb8fe89c2006-07-24 14:51:00 +1000171pthread_exit(void *value)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000172{
173 _exit(0);
174}
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000175
Damien Millerb8fe89c2006-07-24 14:51:00 +1000176/* ARGSUSED */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000177static int
Damien Millerb8fe89c2006-07-24 14:51:00 +1000178pthread_create(sp_pthread_t *thread, const void *attr,
Damien Miller4f9f42a2003-05-10 19:28:02 +1000179 void *(*thread_start)(void *), void *arg)
180{
181 pid_t pid;
Darren Tucker4f1adad2005-07-16 11:33:06 +1000182 struct pam_ctxt *ctx = arg;
Damien Millere72b7af1999-12-30 15:08:44 +1100183
Darren Tuckerb9b60212004-03-04 20:03:54 +1100184 sshpam_thread_status = -1;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000185 switch ((pid = fork())) {
186 case -1:
187 error("fork(): %s", strerror(errno));
188 return (-1);
189 case 0:
Darren Tucker4f1adad2005-07-16 11:33:06 +1000190 close(ctx->pam_psock);
191 ctx->pam_psock = -1;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000192 thread_start(arg);
193 _exit(1);
194 default:
195 *thread = pid;
Darren Tucker4f1adad2005-07-16 11:33:06 +1000196 close(ctx->pam_csock);
197 ctx->pam_csock = -1;
Darren Tucker749bc952004-01-14 22:14:04 +1100198 sshpam_oldsig = signal(SIGCHLD, sshpam_sigchld_handler);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000199 return (0);
200 }
201}
Damien Millere72b7af1999-12-30 15:08:44 +1100202
Damien Miller4f9f42a2003-05-10 19:28:02 +1000203static int
204pthread_cancel(sp_pthread_t thread)
205{
Darren Tucker7ae09622004-01-14 23:07:56 +1100206 signal(SIGCHLD, sshpam_oldsig);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000207 return (kill(thread, SIGTERM));
208}
209
Damien Millerb8fe89c2006-07-24 14:51:00 +1000210/* ARGSUSED */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000211static int
Damien Millerb8fe89c2006-07-24 14:51:00 +1000212pthread_join(sp_pthread_t thread, void **value)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000213{
214 int status;
215
Darren Tucker749bc952004-01-14 22:14:04 +1100216 if (sshpam_thread_status != -1)
217 return (sshpam_thread_status);
218 signal(SIGCHLD, sshpam_oldsig);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000219 waitpid(thread, &status, 0);
220 return (status);
221}
222#endif
223
224
Damien Miller5c3a5582003-09-23 22:12:38 +1000225static pam_handle_t *sshpam_handle = NULL;
226static int sshpam_err = 0;
227static int sshpam_authenticated = 0;
Damien Miller5c3a5582003-09-23 22:12:38 +1000228static int sshpam_session_open = 0;
229static int sshpam_cred_established = 0;
Darren Tucker07705c72003-12-18 15:34:31 +1100230static int sshpam_account_status = -1;
Damien Millerc756e9b2003-11-17 21:41:42 +1100231static char **sshpam_env = NULL;
Darren Tucker17addf02004-03-30 20:57:57 +1000232static Authctxt *sshpam_authctxt = NULL;
Darren Tucker450a1582004-05-30 20:43:59 +1000233static const char *sshpam_password = NULL;
Darren Tucker36a3d602005-01-20 12:43:38 +1100234static char badpw[] = "\b\n\r\177INCORRECT";
Damien Miller4f9f42a2003-05-10 19:28:02 +1000235
Damien Millerc756e9b2003-11-17 21:41:42 +1100236/* Some PAM implementations don't implement this */
237#ifndef HAVE_PAM_GETENVLIST
238static char **
239pam_getenvlist(pam_handle_t *pamh)
240{
241 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100242 * XXX - If necessary, we can still support envrionment passing
Damien Millerc756e9b2003-11-17 21:41:42 +1100243 * 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
249
Darren Tucker21dd0892004-08-16 23:12:05 +1000250/*
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
Darren Tucker07705c72003-12-18 15:34:31 +1100275void
Darren Tucker17db1c42004-06-19 12:54:38 +1000276sshpam_password_change_required(int reqd)
Darren Tucker07705c72003-12-18 15:34:31 +1100277{
Darren Tuckera8df9242004-01-15 00:15:07 +1100278 debug3("%s %d", __func__, reqd);
Darren Tucker17addf02004-03-30 20:57:57 +1000279 if (sshpam_authctxt == NULL)
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100280 fatal("%s: PAM authctxt not initialized", __func__);
Darren Tucker17addf02004-03-30 20:57:57 +1000281 sshpam_authctxt->force_pwchange = reqd;
Darren Tucker07705c72003-12-18 15:34:31 +1100282 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;
Darren Tucker07705c72003-12-18 15:34:31 +1100290 }
291}
Darren Tucker1921ed92004-02-10 13:23:28 +1100292
Damien Millerc756e9b2003-11-17 21:41:42 +1100293/* 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
Darren Tuckera8df9242004-01-15 00:15:07 +1100301 debug3("PAM: %s entering", __func__);
302
Darren Tucker328118a2005-05-25 16:18:09 +1000303#ifndef UNSUPPORTED_POSIX_THREADS_HACK
Darren Tucker07705c72003-12-18 15:34:31 +1100304 /* Import variables set by do_pam_account */
305 sshpam_account_status = buffer_get_int(b);
Darren Tucker17db1c42004-06-19 12:54:38 +1000306 sshpam_password_change_required(buffer_get_int(b));
Darren Tucker07705c72003-12-18 15:34:31 +1100307
Damien Millerc756e9b2003-11-17 21:41:42 +1100308 /* Import environment from subprocess */
309 num_env = buffer_get_int(b);
Darren Tuckerd8093e42006-05-04 16:24:34 +1000310 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));
Damien Millerc756e9b2003-11-17 21:41:42 +1100314 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
Darren Tucker8a1624c2003-11-18 12:45:35 +1100326#ifdef HAVE_PAM_PUTENV
Damien Millerc756e9b2003-11-17 21:41:42 +1100327 /* 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 }
Darren Tucker8a1624c2003-11-18 12:45:35 +1100332#endif
Damien Millerc756e9b2003-11-17 21:41:42 +1100333 }
Darren Tucker4b385d42004-03-04 19:54:10 +1100334#endif
Damien Millerc756e9b2003-11-17 21:41:42 +1100335}
336
Damien Miller9d5705a2000-09-16 16:09:27 +1100337/*
Damien Miller4f9f42a2003-05-10 19:28:02 +1000338 * Conversation function for authentication thread.
Damien Miller9d5705a2000-09-16 16:09:27 +1100339 */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000340static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000341sshpam_thread_conv(int n, sshpam_const struct pam_message **msg,
Damien Miller1f499fd2003-08-25 13:08:49 +1000342 struct pam_response **resp, void *data)
Damien Millere72b7af1999-12-30 15:08:44 +1100343{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000344 Buffer buffer;
345 struct pam_ctxt *ctxt;
Damien Miller5c3a5582003-09-23 22:12:38 +1000346 struct pam_response *reply;
Kevin Steves38b050a2002-07-23 00:44:07 +0000347 int i;
348
Darren Tuckerba53b832004-02-17 20:46:59 +1100349 debug3("PAM: %s entering, %d messages", __func__, n);
Damien Miller5c3a5582003-09-23 22:12:38 +1000350 *resp = NULL;
351
Darren Tucker59e06022004-06-30 20:34:31 +1000352 if (data == NULL) {
353 error("PAM: conversation function passed a null context");
354 return (PAM_CONV_ERR);
355 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000356 ctxt = data;
357 if (n <= 0 || n > PAM_MAX_NUM_MSG)
358 return (PAM_CONV_ERR);
Damien Miller5c3a5582003-09-23 22:12:38 +1000359
Darren Tuckerd8093e42006-05-04 16:24:34 +1000360 if ((reply = calloc(n, sizeof(*reply))) == NULL)
Damien Miller5c3a5582003-09-23 22:12:38 +1000361 return (PAM_CONV_ERR);
Damien Miller5c3a5582003-09-23 22:12:38 +1000362
Damien Miller4f9f42a2003-05-10 19:28:02 +1000363 buffer_init(&buffer);
364 for (i = 0; i < n; ++i) {
Damien Miller4f9f42a2003-05-10 19:28:02 +1000365 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
366 case PAM_PROMPT_ECHO_OFF:
Damien Millera8e06ce2003-11-21 23:48:55 +1100367 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000368 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100369 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100370 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
371 goto fail;
Damien Millera8e06ce2003-11-21 23:48:55 +1100372 if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
Damien Miller9bdba702003-11-17 21:27:55 +1100373 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000374 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
375 goto fail;
Damien Miller5c3a5582003-09-23 22:12:38 +1000376 reply[i].resp = buffer_get_string(&buffer, NULL);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000377 break;
378 case PAM_PROMPT_ECHO_ON:
Damien Millera8e06ce2003-11-21 23:48:55 +1100379 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000380 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100381 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100382 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;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000386 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
387 goto fail;
Damien Miller5c3a5582003-09-23 22:12:38 +1000388 reply[i].resp = buffer_get_string(&buffer, NULL);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000389 break;
390 case PAM_ERROR_MSG:
Damien Millera8e06ce2003-11-21 23:48:55 +1100391 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000392 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100393 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100394 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
395 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000396 break;
397 case PAM_TEXT_INFO:
Damien Millera8e06ce2003-11-21 23:48:55 +1100398 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000399 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100400 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100401 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
402 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000403 break;
404 default:
405 goto fail;
406 }
407 buffer_clear(&buffer);
Kevin Steves38b050a2002-07-23 00:44:07 +0000408 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000409 buffer_free(&buffer);
Damien Miller5c3a5582003-09-23 22:12:38 +1000410 *resp = reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000411 return (PAM_SUCCESS);
Damien Miller5c3a5582003-09-23 22:12:38 +1000412
Damien Miller4f9f42a2003-05-10 19:28:02 +1000413 fail:
Damien Miller5c3a5582003-09-23 22:12:38 +1000414 for(i = 0; i < n; i++) {
Darren Tuckerf60845f2013-06-02 08:07:31 +1000415 free(reply[i].resp);
Damien Miller5c3a5582003-09-23 22:12:38 +1000416 }
Darren Tuckerf60845f2013-06-02 08:07:31 +1000417 free(reply);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000418 buffer_free(&buffer);
419 return (PAM_CONV_ERR);
Kevin Steves38b050a2002-07-23 00:44:07 +0000420}
421
Damien Miller4f9f42a2003-05-10 19:28:02 +1000422/*
423 * Authentication thread.
424 */
425static void *
426sshpam_thread(void *ctxtp)
Damien Millere72b7af1999-12-30 15:08:44 +1100427{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000428 struct pam_ctxt *ctxt = ctxtp;
429 Buffer buffer;
Damien Millerf4b6f102003-09-02 23:12:06 +1000430 struct pam_conv sshpam_conv;
Darren Tucker1f7e4082004-07-01 14:00:14 +1000431 int flags = (options.permit_empty_passwd == 0 ?
432 PAM_DISALLOW_NULL_AUTHTOK : 0);
Darren Tucker328118a2005-05-25 16:18:09 +1000433#ifndef UNSUPPORTED_POSIX_THREADS_HACK
Damien Millerc756e9b2003-11-17 21:41:42 +1100434 extern char **environ;
435 char **env_from_pam;
436 u_int i;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000437 const char *pam_user;
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000438 const char **ptr_pam_user = &pam_user;
Darren Tucker54e1b222006-09-17 11:57:46 +1000439 char *tz = getenv("TZ");
Damien Miller4f9f42a2003-05-10 19:28:02 +1000440
Darren Tucker53f8e782013-12-19 11:31:44 +1100441 sshpam_err = pam_get_item(sshpam_handle, PAM_USER,
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000442 (sshpam_const void **)ptr_pam_user);
Darren Tucker53f8e782013-12-19 11:31:44 +1100443 if (sshpam_err != PAM_SUCCESS)
444 goto auth_fail;
Darren Tucker54e1b222006-09-17 11:57:46 +1000445
Damien Millerc756e9b2003-11-17 21:41:42 +1100446 environ[0] = NULL;
Darren Tucker54e1b222006-09-17 11:57:46 +1000447 if (tz != NULL)
448 if (setenv("TZ", tz, 1) == -1)
449 error("PAM: could not set TZ environment: %s",
450 strerror(errno));
Damien Miller2d2ed3d2004-07-21 20:54:47 +1000451
452 if (sshpam_authctxt != NULL) {
453 setproctitle("%s [pam]",
454 sshpam_authctxt->valid ? pam_user : "unknown");
455 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000456#endif
457
Damien Millerf4b6f102003-09-02 23:12:06 +1000458 sshpam_conv.conv = sshpam_thread_conv;
459 sshpam_conv.appdata_ptr = ctxt;
460
Darren Tucker17addf02004-03-30 20:57:57 +1000461 if (sshpam_authctxt == NULL)
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100462 fatal("%s: PAM authctxt not initialized", __func__);
463
Damien Miller4f9f42a2003-05-10 19:28:02 +1000464 buffer_init(&buffer);
465 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
466 (const void *)&sshpam_conv);
467 if (sshpam_err != PAM_SUCCESS)
468 goto auth_fail;
Darren Tucker1f7e4082004-07-01 14:00:14 +1000469 sshpam_err = pam_authenticate(sshpam_handle, flags);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000470 if (sshpam_err != PAM_SUCCESS)
471 goto auth_fail;
Darren Tucker07705c72003-12-18 15:34:31 +1100472
Darren Tuckerc376c862003-12-18 16:08:59 +1100473 if (compat20) {
Darren Tucker2c77b7f2006-05-15 17:22:33 +1000474 if (!do_pam_account()) {
475 sshpam_err = PAM_ACCT_EXPIRED;
Darren Tucker07705c72003-12-18 15:34:31 +1100476 goto auth_fail;
Darren Tucker2c77b7f2006-05-15 17:22:33 +1000477 }
Darren Tucker17addf02004-03-30 20:57:57 +1000478 if (sshpam_authctxt->force_pwchange) {
Darren Tucker07705c72003-12-18 15:34:31 +1100479 sshpam_err = pam_chauthtok(sshpam_handle,
480 PAM_CHANGE_EXPIRED_AUTHTOK);
481 if (sshpam_err != PAM_SUCCESS)
482 goto auth_fail;
Darren Tucker17db1c42004-06-19 12:54:38 +1000483 sshpam_password_change_required(0);
Darren Tucker07705c72003-12-18 15:34:31 +1100484 }
Darren Tuckerc376c862003-12-18 16:08:59 +1100485 }
Darren Tucker07705c72003-12-18 15:34:31 +1100486
Damien Miller4f9f42a2003-05-10 19:28:02 +1000487 buffer_put_cstring(&buffer, "OK");
Damien Millerc756e9b2003-11-17 21:41:42 +1100488
Darren Tucker328118a2005-05-25 16:18:09 +1000489#ifndef UNSUPPORTED_POSIX_THREADS_HACK
Darren Tucker07705c72003-12-18 15:34:31 +1100490 /* Export variables set by do_pam_account */
491 buffer_put_int(&buffer, sshpam_account_status);
Darren Tucker17addf02004-03-30 20:57:57 +1000492 buffer_put_int(&buffer, sshpam_authctxt->force_pwchange);
Darren Tucker07705c72003-12-18 15:34:31 +1100493
Damien Millerc756e9b2003-11-17 21:41:42 +1100494 /* Export any environment strings set in child */
495 for(i = 0; environ[i] != NULL; i++)
496 ; /* Count */
497 buffer_put_int(&buffer, i);
498 for(i = 0; environ[i] != NULL; i++)
499 buffer_put_cstring(&buffer, environ[i]);
500
501 /* Export any environment strings set by PAM in child */
502 env_from_pam = pam_getenvlist(sshpam_handle);
503 for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
504 ; /* Count */
505 buffer_put_int(&buffer, i);
506 for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
507 buffer_put_cstring(&buffer, env_from_pam[i]);
Darren Tucker328118a2005-05-25 16:18:09 +1000508#endif /* UNSUPPORTED_POSIX_THREADS_HACK */
Damien Millerc756e9b2003-11-17 21:41:42 +1100509
Damien Miller9bdba702003-11-17 21:27:55 +1100510 /* XXX - can't do much about an error here */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000511 ssh_msg_send(ctxt->pam_csock, sshpam_err, &buffer);
512 buffer_free(&buffer);
513 pthread_exit(NULL);
514
515 auth_fail:
516 buffer_put_cstring(&buffer,
517 pam_strerror(sshpam_handle, sshpam_err));
Damien Miller9bdba702003-11-17 21:27:55 +1100518 /* XXX - can't do much about an error here */
Darren Tucker2c77b7f2006-05-15 17:22:33 +1000519 if (sshpam_err == PAM_ACCT_EXPIRED)
520 ssh_msg_send(ctxt->pam_csock, PAM_ACCT_EXPIRED, &buffer);
521 else
522 ssh_msg_send(ctxt->pam_csock, PAM_AUTH_ERR, &buffer);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000523 buffer_free(&buffer);
524 pthread_exit(NULL);
Damien Miller787b2ec2003-11-21 23:56:47 +1100525
Damien Miller4f9f42a2003-05-10 19:28:02 +1000526 return (NULL); /* Avoid warning for non-pthread case */
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000527}
528
Darren Tucker8846a072003-10-07 11:30:15 +1000529void
530sshpam_thread_cleanup(void)
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000531{
Darren Tucker8846a072003-10-07 11:30:15 +1000532 struct pam_ctxt *ctxt = cleanup_ctxt;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000533
Darren Tuckera8df9242004-01-15 00:15:07 +1100534 debug3("PAM: %s entering", __func__);
Darren Tucker8846a072003-10-07 11:30:15 +1000535 if (ctxt != NULL && ctxt->pam_thread != 0) {
536 pthread_cancel(ctxt->pam_thread);
537 pthread_join(ctxt->pam_thread, NULL);
538 close(ctxt->pam_psock);
539 close(ctxt->pam_csock);
540 memset(ctxt, 0, sizeof(*ctxt));
541 cleanup_ctxt = NULL;
542 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000543}
Kevin Stevesef4eea92001-02-05 12:42:17 +0000544
Damien Miller4f9f42a2003-05-10 19:28:02 +1000545static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000546sshpam_null_conv(int n, sshpam_const struct pam_message **msg,
Damien Miller1f499fd2003-08-25 13:08:49 +1000547 struct pam_response **resp, void *data)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000548{
Darren Tuckerba53b832004-02-17 20:46:59 +1100549 debug3("PAM: %s entering, %d messages", __func__, n);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000550 return (PAM_CONV_ERR);
551}
Damien Miller63dc3e92001-02-07 12:58:33 +1100552
Damien Miller4f9f42a2003-05-10 19:28:02 +1000553static struct pam_conv null_conv = { sshpam_null_conv, NULL };
554
Darren Tucker0a7e3c62004-09-11 22:28:01 +1000555static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000556sshpam_store_conv(int n, sshpam_const struct pam_message **msg,
Darren Tucker0a7e3c62004-09-11 22:28:01 +1000557 struct pam_response **resp, void *data)
558{
559 struct pam_response *reply;
560 int i;
561 size_t len;
562
563 debug3("PAM: %s called with %d messages", __func__, n);
564 *resp = NULL;
565
566 if (n <= 0 || n > PAM_MAX_NUM_MSG)
567 return (PAM_CONV_ERR);
568
Darren Tuckerd8093e42006-05-04 16:24:34 +1000569 if ((reply = calloc(n, sizeof(*reply))) == NULL)
Darren Tucker0a7e3c62004-09-11 22:28:01 +1000570 return (PAM_CONV_ERR);
Darren Tucker0a7e3c62004-09-11 22:28:01 +1000571
572 for (i = 0; i < n; ++i) {
573 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
574 case PAM_ERROR_MSG:
575 case PAM_TEXT_INFO:
576 len = strlen(PAM_MSG_MEMBER(msg, i, msg));
577 buffer_append(&loginmsg, PAM_MSG_MEMBER(msg, i, msg), len);
578 buffer_append(&loginmsg, "\n", 1 );
579 reply[i].resp_retcode = PAM_SUCCESS;
580 break;
581 default:
582 goto fail;
583 }
584 }
585 *resp = reply;
586 return (PAM_SUCCESS);
587
588 fail:
589 for(i = 0; i < n; i++) {
Darren Tuckerf60845f2013-06-02 08:07:31 +1000590 free(reply[i].resp);
Darren Tucker0a7e3c62004-09-11 22:28:01 +1000591 }
Darren Tuckerf60845f2013-06-02 08:07:31 +1000592 free(reply);
Darren Tucker0a7e3c62004-09-11 22:28:01 +1000593 return (PAM_CONV_ERR);
594}
595
596static struct pam_conv store_conv = { sshpam_store_conv, NULL };
597
Darren Tucker8846a072003-10-07 11:30:15 +1000598void
599sshpam_cleanup(void)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000600{
Darren Tucker52358d62008-03-11 22:58:25 +1100601 if (sshpam_handle == NULL || (use_privsep && !mm_is_monitor()))
Damien Miller5c3a5582003-09-23 22:12:38 +1000602 return;
Darren Tucker52358d62008-03-11 22:58:25 +1100603 debug("PAM: cleanup");
Damien Miller4f9f42a2003-05-10 19:28:02 +1000604 pam_set_item(sshpam_handle, PAM_CONV, (const void *)&null_conv);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000605 if (sshpam_session_open) {
Darren Tucker52358d62008-03-11 22:58:25 +1100606 debug("PAM: closing session");
Damien Miller4f9f42a2003-05-10 19:28:02 +1000607 pam_close_session(sshpam_handle, PAM_SILENT);
608 sshpam_session_open = 0;
609 }
Darren Tucker622d5c52009-07-12 22:07:21 +1000610 if (sshpam_cred_established) {
611 debug("PAM: deleting credentials");
612 pam_setcred(sshpam_handle, PAM_DELETE_CRED);
613 sshpam_cred_established = 0;
614 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100615 sshpam_authenticated = 0;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000616 pam_end(sshpam_handle, sshpam_err);
617 sshpam_handle = NULL;
618}
619
620static int
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100621sshpam_init(Authctxt *authctxt)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000622{
Darren Tucker455813b2003-09-13 22:12:11 +1000623 extern char *__progname;
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100624 const char *pam_rhost, *pam_user, *user = authctxt->user;
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000625 const char **ptr_pam_user = &pam_user;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000626
627 if (sshpam_handle != NULL) {
628 /* We already have a PAM context; check if the user matches */
629 sshpam_err = pam_get_item(sshpam_handle,
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000630 PAM_USER, (sshpam_const void **)ptr_pam_user);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000631 if (sshpam_err == PAM_SUCCESS && strcmp(user, pam_user) == 0)
632 return (0);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000633 pam_end(sshpam_handle, sshpam_err);
634 sshpam_handle = NULL;
635 }
636 debug("PAM: initializing for \"%s\"", user);
Darren Tuckerc58c2ee2003-09-13 22:02:05 +1000637 sshpam_err =
Darren Tucker77fc29e2004-09-11 23:07:03 +1000638 pam_start(SSHD_PAM_SERVICE, user, &store_conv, &sshpam_handle);
Darren Tucker17addf02004-03-30 20:57:57 +1000639 sshpam_authctxt = authctxt;
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100640
Damien Miller4f9f42a2003-05-10 19:28:02 +1000641 if (sshpam_err != PAM_SUCCESS) {
642 pam_end(sshpam_handle, sshpam_err);
643 sshpam_handle = NULL;
644 return (-1);
645 }
Damien Miller3a961dc2003-06-03 10:25:48 +1000646 pam_rhost = get_remote_name_or_ip(utmp_len, options.use_dns);
Damien Miller46337202003-06-02 11:04:39 +1000647 debug("PAM: setting PAM_RHOST to \"%s\"", pam_rhost);
Damien Miller25d93422003-05-18 20:45:47 +1000648 sshpam_err = pam_set_item(sshpam_handle, PAM_RHOST, pam_rhost);
649 if (sshpam_err != PAM_SUCCESS) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000650 pam_end(sshpam_handle, sshpam_err);
Damien Miller25d93422003-05-18 20:45:47 +1000651 sshpam_handle = NULL;
652 return (-1);
653 }
654#ifdef PAM_TTY_KLUDGE
Damien Millera8e06ce2003-11-21 23:48:55 +1100655 /*
656 * Some silly PAM modules (e.g. pam_time) require a TTY to operate.
657 * sshd doesn't set the tty until too late in the auth process and
Damien Miller25d93422003-05-18 20:45:47 +1000658 * may not even set one (for tty-less connections)
Damien Millera8e06ce2003-11-21 23:48:55 +1100659 */
Damien Miller25d93422003-05-18 20:45:47 +1000660 debug("PAM: setting PAM_TTY to \"ssh\"");
661 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, "ssh");
662 if (sshpam_err != PAM_SUCCESS) {
663 pam_end(sshpam_handle, sshpam_err);
664 sshpam_handle = NULL;
665 return (-1);
666 }
667#endif
Damien Miller4f9f42a2003-05-10 19:28:02 +1000668 return (0);
669}
670
671static void *
672sshpam_init_ctx(Authctxt *authctxt)
673{
674 struct pam_ctxt *ctxt;
675 int socks[2];
676
Darren Tuckera8df9242004-01-15 00:15:07 +1100677 debug3("PAM: %s entering", __func__);
Darren Tucker2c77b7f2006-05-15 17:22:33 +1000678 /*
679 * Refuse to start if we don't have PAM enabled or do_pam_account
680 * has previously failed.
681 */
682 if (!options.use_pam || sshpam_account_status == 0)
Damien Miller4e448a32003-05-14 15:11:48 +1000683 return NULL;
684
Damien Miller4f9f42a2003-05-10 19:28:02 +1000685 /* Initialize PAM */
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100686 if (sshpam_init(authctxt) == -1) {
Damien Miller4f9f42a2003-05-10 19:28:02 +1000687 error("PAM: initialization failed");
688 return (NULL);
689 }
690
Darren Tucker29171e92007-05-20 15:20:08 +1000691 ctxt = xcalloc(1, sizeof *ctxt);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000692
693 /* Start the authentication thread */
694 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, socks) == -1) {
695 error("PAM: failed create sockets: %s", strerror(errno));
Darren Tuckerf60845f2013-06-02 08:07:31 +1000696 free(ctxt);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000697 return (NULL);
698 }
699 ctxt->pam_psock = socks[0];
700 ctxt->pam_csock = socks[1];
701 if (pthread_create(&ctxt->pam_thread, NULL, sshpam_thread, ctxt) == -1) {
702 error("PAM: failed to start authentication thread: %s",
703 strerror(errno));
704 close(socks[0]);
705 close(socks[1]);
Darren Tuckerf60845f2013-06-02 08:07:31 +1000706 free(ctxt);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000707 return (NULL);
708 }
Darren Tucker8846a072003-10-07 11:30:15 +1000709 cleanup_ctxt = ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000710 return (ctxt);
711}
712
713static int
714sshpam_query(void *ctx, char **name, char **info,
715 u_int *num, char ***prompts, u_int **echo_on)
716{
717 Buffer buffer;
718 struct pam_ctxt *ctxt = ctx;
719 size_t plen;
720 u_char type;
721 char *msg;
Damien Millerdaffc6a2004-10-16 18:52:44 +1000722 size_t len, mlen;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000723
Darren Tuckera8df9242004-01-15 00:15:07 +1100724 debug3("PAM: %s entering", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000725 buffer_init(&buffer);
726 *name = xstrdup("");
727 *info = xstrdup("");
728 *prompts = xmalloc(sizeof(char *));
729 **prompts = NULL;
730 plen = 0;
731 *echo_on = xmalloc(sizeof(u_int));
732 while (ssh_msg_recv(ctxt->pam_psock, &buffer) == 0) {
733 type = buffer_get_char(&buffer);
734 msg = buffer_get_string(&buffer, NULL);
Damien Millerdaffc6a2004-10-16 18:52:44 +1000735 mlen = strlen(msg);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000736 switch (type) {
737 case PAM_PROMPT_ECHO_ON:
738 case PAM_PROMPT_ECHO_OFF:
739 *num = 1;
Damien Millerdaffc6a2004-10-16 18:52:44 +1000740 len = plen + mlen + 1;
Damien Miller36812092006-03-26 14:22:47 +1100741 **prompts = xrealloc(**prompts, 1, len);
Damien Millerdaffc6a2004-10-16 18:52:44 +1000742 strlcpy(**prompts + plen, msg, len - plen);
743 plen += mlen;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000744 **echo_on = (type == PAM_PROMPT_ECHO_ON);
Darren Tuckerf60845f2013-06-02 08:07:31 +1000745 free(msg);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000746 return (0);
747 case PAM_ERROR_MSG:
748 case PAM_TEXT_INFO:
749 /* accumulate messages */
Damien Millerdaffc6a2004-10-16 18:52:44 +1000750 len = plen + mlen + 2;
Damien Miller36812092006-03-26 14:22:47 +1100751 **prompts = xrealloc(**prompts, 1, len);
Damien Millerdaffc6a2004-10-16 18:52:44 +1000752 strlcpy(**prompts + plen, msg, len - plen);
753 plen += mlen;
754 strlcat(**prompts + plen, "\n", len - plen);
755 plen++;
Darren Tuckerf60845f2013-06-02 08:07:31 +1000756 free(msg);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000757 break;
Darren Tucker2c77b7f2006-05-15 17:22:33 +1000758 case PAM_ACCT_EXPIRED:
759 sshpam_account_status = 0;
760 /* FALLTHROUGH */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000761 case PAM_AUTH_ERR:
Darren Tucker2c77b7f2006-05-15 17:22:33 +1000762 debug3("PAM: %s", pam_strerror(sshpam_handle, type));
Darren Tucker7b1e6952005-09-28 22:33:27 +1000763 if (**prompts != NULL && strlen(**prompts) != 0) {
764 *info = **prompts;
765 **prompts = NULL;
766 *num = 0;
767 **echo_on = 0;
768 ctxt->pam_done = -1;
Darren Tuckerf60845f2013-06-02 08:07:31 +1000769 free(msg);
Darren Tucker7b1e6952005-09-28 22:33:27 +1000770 return 0;
771 }
772 /* FALLTHROUGH */
773 case PAM_SUCCESS:
Damien Miller4f9f42a2003-05-10 19:28:02 +1000774 if (**prompts != NULL) {
775 /* drain any accumulated messages */
Darren Tucker18df00c2003-11-18 12:42:07 +1100776 debug("PAM: %s", **prompts);
777 buffer_append(&loginmsg, **prompts,
778 strlen(**prompts));
Darren Tuckerf60845f2013-06-02 08:07:31 +1000779 free(**prompts);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000780 **prompts = NULL;
781 }
782 if (type == PAM_SUCCESS) {
Darren Tuckerd5bfa8f2005-01-20 13:29:51 +1100783 if (!sshpam_authctxt->valid ||
784 (sshpam_authctxt->pw->pw_uid == 0 &&
785 options.permit_root_login != PERMIT_YES))
Darren Tucker36a3d602005-01-20 12:43:38 +1100786 fatal("Internal error: PAM auth "
787 "succeeded when it should have "
788 "failed");
Damien Millerc756e9b2003-11-17 21:41:42 +1100789 import_environments(&buffer);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000790 *num = 0;
791 **echo_on = 0;
792 ctxt->pam_done = 1;
Darren Tuckerf60845f2013-06-02 08:07:31 +1000793 free(msg);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000794 return (0);
795 }
Darren Tucker2a9bf4b2004-04-18 11:00:26 +1000796 error("PAM: %s for %s%.100s from %.100s", msg,
797 sshpam_authctxt->valid ? "" : "illegal user ",
798 sshpam_authctxt->user,
799 get_remote_name_or_ip(utmp_len, options.use_dns));
Darren Tucker439ce0d2003-10-09 14:20:15 +1000800 /* FALLTHROUGH */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000801 default:
802 *num = 0;
803 **echo_on = 0;
Darren Tuckerf60845f2013-06-02 08:07:31 +1000804 free(msg);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000805 ctxt->pam_done = -1;
806 return (-1);
807 }
808 }
809 return (-1);
810}
811
812/* XXX - see also comment in auth-chall.c:verify_response */
813static int
814sshpam_respond(void *ctx, u_int num, char **resp)
815{
816 Buffer buffer;
817 struct pam_ctxt *ctxt = ctx;
818
Darren Tucker1d4ebbf2006-01-29 16:46:13 +1100819 debug2("PAM: %s entering, %u responses", __func__, num);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000820 switch (ctxt->pam_done) {
821 case 1:
822 sshpam_authenticated = 1;
823 return (0);
824 case 0:
825 break;
826 default:
827 return (-1);
828 }
829 if (num != 1) {
830 error("PAM: expected one response, got %u", num);
831 return (-1);
832 }
833 buffer_init(&buffer);
Darren Tuckerd5bfa8f2005-01-20 13:29:51 +1100834 if (sshpam_authctxt->valid &&
835 (sshpam_authctxt->pw->pw_uid != 0 ||
Damien Miller37294fb2005-07-17 17:18:49 +1000836 options.permit_root_login == PERMIT_YES))
Darren Tucker36a3d602005-01-20 12:43:38 +1100837 buffer_put_cstring(&buffer, *resp);
838 else
839 buffer_put_cstring(&buffer, badpw);
Damien Miller9bdba702003-11-17 21:27:55 +1100840 if (ssh_msg_send(ctxt->pam_psock, PAM_AUTHTOK, &buffer) == -1) {
841 buffer_free(&buffer);
842 return (-1);
843 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000844 buffer_free(&buffer);
845 return (1);
846}
847
848static void
849sshpam_free_ctx(void *ctxtp)
850{
851 struct pam_ctxt *ctxt = ctxtp;
852
Darren Tuckera8df9242004-01-15 00:15:07 +1100853 debug3("PAM: %s entering", __func__);
Darren Tucker8846a072003-10-07 11:30:15 +1000854 sshpam_thread_cleanup();
Darren Tuckerf60845f2013-06-02 08:07:31 +1000855 free(ctxt);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000856 /*
857 * We don't call sshpam_cleanup() here because we may need the PAM
858 * handle at a later stage, e.g. when setting up a session. It's
859 * still on the cleanup list, so pam_end() *will* be called before
860 * the server process terminates.
861 */
862}
863
864KbdintDevice sshpam_device = {
865 "pam",
866 sshpam_init_ctx,
867 sshpam_query,
868 sshpam_respond,
869 sshpam_free_ctx
870};
871
872KbdintDevice mm_sshpam_device = {
873 "pam",
874 mm_sshpam_init_ctx,
875 mm_sshpam_query,
876 mm_sshpam_respond,
877 mm_sshpam_free_ctx
878};
879
880/*
881 * This replaces auth-pam.c
882 */
883void
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100884start_pam(Authctxt *authctxt)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000885{
Damien Miller9d507da2003-05-14 15:31:12 +1000886 if (!options.use_pam)
887 fatal("PAM: initialisation requested when UsePAM=no");
888
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100889 if (sshpam_init(authctxt) == -1)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000890 fatal("PAM: initialisation failed");
891}
892
893void
894finish_pam(void)
895{
Darren Tucker8846a072003-10-07 11:30:15 +1000896 sshpam_cleanup();
Damien Miller4f9f42a2003-05-10 19:28:02 +1000897}
898
Damien Miller1f499fd2003-08-25 13:08:49 +1000899u_int
900do_pam_account(void)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000901{
Darren Tucker77fc29e2004-09-11 23:07:03 +1000902 debug("%s: called", __func__);
Darren Tucker07705c72003-12-18 15:34:31 +1100903 if (sshpam_account_status != -1)
904 return (sshpam_account_status);
905
Damien Miller1f499fd2003-08-25 13:08:49 +1000906 sshpam_err = pam_acct_mgmt(sshpam_handle, 0);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000907 debug3("PAM: %s pam_acct_mgmt = %d (%s)", __func__, sshpam_err,
908 pam_strerror(sshpam_handle, sshpam_err));
Damien Miller94cf4c82005-07-17 17:04:47 +1000909
Darren Tucker07705c72003-12-18 15:34:31 +1100910 if (sshpam_err != PAM_SUCCESS && sshpam_err != PAM_NEW_AUTHTOK_REQD) {
911 sshpam_account_status = 0;
912 return (sshpam_account_status);
Damien Miller1f499fd2003-08-25 13:08:49 +1000913 }
914
Darren Tucker07705c72003-12-18 15:34:31 +1100915 if (sshpam_err == PAM_NEW_AUTHTOK_REQD)
Darren Tucker17db1c42004-06-19 12:54:38 +1000916 sshpam_password_change_required(1);
Darren Tucker07705c72003-12-18 15:34:31 +1100917
918 sshpam_account_status = 1;
919 return (sshpam_account_status);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000920}
921
922void
Damien Miller341c6e62003-09-02 23:18:52 +1000923do_pam_set_tty(const char *tty)
924{
Darren Tuckerf38db7f2003-08-08 13:43:37 +1000925 if (tty != NULL) {
926 debug("PAM: setting PAM_TTY to \"%s\"", tty);
927 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, tty);
928 if (sshpam_err != PAM_SUCCESS)
929 fatal("PAM: failed to set PAM_TTY: %s",
930 pam_strerror(sshpam_handle, sshpam_err));
931 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000932}
933
934void
935do_pam_setcred(int init)
936{
937 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
Darren Tucker77fc29e2004-09-11 23:07:03 +1000938 (const void *)&store_conv);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000939 if (sshpam_err != PAM_SUCCESS)
940 fatal("PAM: failed to set PAM_CONV: %s",
941 pam_strerror(sshpam_handle, sshpam_err));
942 if (init) {
943 debug("PAM: establishing credentials");
944 sshpam_err = pam_setcred(sshpam_handle, PAM_ESTABLISH_CRED);
945 } else {
946 debug("PAM: reinitializing credentials");
947 sshpam_err = pam_setcred(sshpam_handle, PAM_REINITIALIZE_CRED);
948 }
949 if (sshpam_err == PAM_SUCCESS) {
950 sshpam_cred_established = 1;
951 return;
952 }
953 if (sshpam_authenticated)
954 fatal("PAM: pam_setcred(): %s",
955 pam_strerror(sshpam_handle, sshpam_err));
956 else
957 debug("PAM: pam_setcred(): %s",
958 pam_strerror(sshpam_handle, sshpam_err));
959}
960
Damien Miller4f9f42a2003-05-10 19:28:02 +1000961static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000962sshpam_tty_conv(int n, sshpam_const struct pam_message **msg,
Damien Miller1f499fd2003-08-25 13:08:49 +1000963 struct pam_response **resp, void *data)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000964{
965 char input[PAM_MAX_MSG_SIZE];
Damien Miller5c3a5582003-09-23 22:12:38 +1000966 struct pam_response *reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000967 int i;
968
Darren Tuckerba53b832004-02-17 20:46:59 +1100969 debug3("PAM: %s called with %d messages", __func__, n);
970
Damien Miller5c3a5582003-09-23 22:12:38 +1000971 *resp = NULL;
972
Darren Tucker18df00c2003-11-18 12:42:07 +1100973 if (n <= 0 || n > PAM_MAX_NUM_MSG || !isatty(STDIN_FILENO))
Damien Miller4f9f42a2003-05-10 19:28:02 +1000974 return (PAM_CONV_ERR);
Damien Miller5c3a5582003-09-23 22:12:38 +1000975
Darren Tuckerd8093e42006-05-04 16:24:34 +1000976 if ((reply = calloc(n, sizeof(*reply))) == NULL)
Damien Miller5c3a5582003-09-23 22:12:38 +1000977 return (PAM_CONV_ERR);
Damien Miller5c3a5582003-09-23 22:12:38 +1000978
Damien Miller4f9f42a2003-05-10 19:28:02 +1000979 for (i = 0; i < n; ++i) {
980 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
981 case PAM_PROMPT_ECHO_OFF:
Damien Miller5c3a5582003-09-23 22:12:38 +1000982 reply[i].resp =
Damien Millera8e06ce2003-11-21 23:48:55 +1100983 read_passphrase(PAM_MSG_MEMBER(msg, i, msg),
Damien Miller4f9f42a2003-05-10 19:28:02 +1000984 RP_ALLOW_STDIN);
Damien Miller5c3a5582003-09-23 22:12:38 +1000985 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000986 break;
987 case PAM_PROMPT_ECHO_ON:
Darren Tucker0947ddf2003-11-13 11:21:31 +1100988 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
Darren Tucker22164712007-05-20 15:26:07 +1000989 if (fgets(input, sizeof input, stdin) == NULL)
990 input[0] = '\0';
Damien Millera6fb77f2004-07-19 09:39:11 +1000991 if ((reply[i].resp = strdup(input)) == NULL)
992 goto fail;
Damien Miller5c3a5582003-09-23 22:12:38 +1000993 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000994 break;
995 case PAM_ERROR_MSG:
996 case PAM_TEXT_INFO:
Darren Tucker0947ddf2003-11-13 11:21:31 +1100997 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
Damien Miller5c3a5582003-09-23 22:12:38 +1000998 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000999 break;
1000 default:
1001 goto fail;
1002 }
1003 }
Damien Miller5c3a5582003-09-23 22:12:38 +10001004 *resp = reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +10001005 return (PAM_SUCCESS);
Damien Miller5c3a5582003-09-23 22:12:38 +10001006
Damien Miller4f9f42a2003-05-10 19:28:02 +10001007 fail:
Damien Miller5c3a5582003-09-23 22:12:38 +10001008 for(i = 0; i < n; i++) {
Darren Tuckerf60845f2013-06-02 08:07:31 +10001009 free(reply[i].resp);
Damien Miller5c3a5582003-09-23 22:12:38 +10001010 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001011 free(reply);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001012 return (PAM_CONV_ERR);
1013}
1014
Darren Tucker94befab2004-06-03 14:53:12 +10001015static struct pam_conv tty_conv = { sshpam_tty_conv, NULL };
Darren Tucker18df00c2003-11-18 12:42:07 +11001016
Damien Miller4f9f42a2003-05-10 19:28:02 +10001017/*
1018 * XXX this should be done in the authentication phase, but ssh1 doesn't
1019 * support that
1020 */
1021void
1022do_pam_chauthtok(void)
1023{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001024 if (use_privsep)
Damien Miller1f499fd2003-08-25 13:08:49 +10001025 fatal("Password expired (unable to change with privsep)");
Damien Miller4f9f42a2003-05-10 19:28:02 +10001026 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
Darren Tucker18df00c2003-11-18 12:42:07 +11001027 (const void *)&tty_conv);
Damien Miller4f9f42a2003-05-10 19:28:02 +10001028 if (sshpam_err != PAM_SUCCESS)
1029 fatal("PAM: failed to set PAM_CONV: %s",
1030 pam_strerror(sshpam_handle, sshpam_err));
1031 debug("PAM: changing password");
1032 sshpam_err = pam_chauthtok(sshpam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
1033 if (sshpam_err != PAM_SUCCESS)
1034 fatal("PAM: pam_chauthtok(): %s",
1035 pam_strerror(sshpam_handle, sshpam_err));
1036}
1037
Darren Tucker18df00c2003-11-18 12:42:07 +11001038void
1039do_pam_session(void)
1040{
Darren Tucker1921ed92004-02-10 13:23:28 +11001041 debug3("PAM: opening session");
Damien Millera8e06ce2003-11-21 23:48:55 +11001042 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
Darren Tucker5cf8ef72004-02-17 23:20:07 +11001043 (const void *)&store_conv);
Darren Tucker18df00c2003-11-18 12:42:07 +11001044 if (sshpam_err != PAM_SUCCESS)
1045 fatal("PAM: failed to set PAM_CONV: %s",
1046 pam_strerror(sshpam_handle, sshpam_err));
1047 sshpam_err = pam_open_session(sshpam_handle, 0);
Darren Tucker69687f42004-09-11 22:17:26 +10001048 if (sshpam_err == PAM_SUCCESS)
1049 sshpam_session_open = 1;
1050 else {
1051 sshpam_session_open = 0;
1052 disable_forwarding();
1053 error("PAM: pam_open_session(): %s",
Darren Tucker18df00c2003-11-18 12:42:07 +11001054 pam_strerror(sshpam_handle, sshpam_err));
Darren Tucker69687f42004-09-11 22:17:26 +10001055 }
1056
1057}
1058
1059int
1060is_pam_session_open(void)
1061{
1062 return sshpam_session_open;
Darren Tucker18df00c2003-11-18 12:42:07 +11001063}
1064
Damien Millera8e06ce2003-11-21 23:48:55 +11001065/*
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001066 * Set a PAM environment string. We need to do this so that the session
1067 * modules can handle things like Kerberos/GSI credentials that appear
1068 * during the ssh authentication process.
1069 */
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001070int
Damien Millera8e06ce2003-11-21 23:48:55 +11001071do_pam_putenv(char *name, char *value)
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001072{
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001073 int ret = 1;
Damien Miller787b2ec2003-11-21 23:56:47 +11001074#ifdef HAVE_PAM_PUTENV
Damien Millerf2728092003-09-17 07:24:25 +10001075 char *compound;
1076 size_t len;
1077
1078 len = strlen(name) + strlen(value) + 2;
1079 compound = xmalloc(len);
1080
1081 snprintf(compound, len, "%s=%s", name, value);
1082 ret = pam_putenv(sshpam_handle, compound);
Darren Tuckerf60845f2013-06-02 08:07:31 +10001083 free(compound);
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001084#endif
Damien Millerf2728092003-09-17 07:24:25 +10001085
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001086 return (ret);
1087}
1088
Damien Miller4f9f42a2003-05-10 19:28:02 +10001089char **
Damien Millerc756e9b2003-11-17 21:41:42 +11001090fetch_pam_child_environment(void)
1091{
1092 return sshpam_env;
1093}
1094
1095char **
Damien Miller4f9f42a2003-05-10 19:28:02 +10001096fetch_pam_environment(void)
1097{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001098 return (pam_getenvlist(sshpam_handle));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001099}
1100
1101void
1102free_pam_environment(char **env)
1103{
1104 char **envp;
1105
Damien Millere27c6cc2003-05-16 18:21:01 +10001106 if (env == NULL)
1107 return;
1108
Damien Miller4f9f42a2003-05-10 19:28:02 +10001109 for (envp = env; *envp; envp++)
Darren Tuckerf60845f2013-06-02 08:07:31 +10001110 free(*envp);
1111 free(env);
Damien Millere72b7af1999-12-30 15:08:44 +11001112}
1113
Darren Tucker450a1582004-05-30 20:43:59 +10001114/*
1115 * "Blind" conversation function for password authentication. Assumes that
1116 * echo-off prompts are for the password and stores messages for later
1117 * display.
1118 */
1119static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +10001120sshpam_passwd_conv(int n, sshpam_const struct pam_message **msg,
Darren Tucker450a1582004-05-30 20:43:59 +10001121 struct pam_response **resp, void *data)
1122{
1123 struct pam_response *reply;
1124 int i;
1125 size_t len;
1126
1127 debug3("PAM: %s called with %d messages", __func__, n);
1128
1129 *resp = NULL;
1130
1131 if (n <= 0 || n > PAM_MAX_NUM_MSG)
1132 return (PAM_CONV_ERR);
1133
Darren Tucker29171e92007-05-20 15:20:08 +10001134 if ((reply = calloc(n, sizeof(*reply))) == NULL)
Darren Tucker450a1582004-05-30 20:43:59 +10001135 return (PAM_CONV_ERR);
Darren Tucker450a1582004-05-30 20:43:59 +10001136
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;
Damien Millera6fb77f2004-07-19 09:39:11 +10001142 if ((reply[i].resp = strdup(sshpam_password)) == NULL)
1143 goto fail;
Darren Tucker450a1582004-05-30 20:43:59 +10001144 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 }
Damien Millera6fb77f2004-07-19 09:39:11 +10001154 if ((reply[i].resp = strdup("")) == NULL)
1155 goto fail;
Darren Tucker450a1582004-05-30 20:43:59 +10001156 reply[i].resp_retcode = PAM_SUCCESS;
1157 break;
1158 default:
1159 goto fail;
1160 }
1161 }
1162 *resp = reply;
1163 return (PAM_SUCCESS);
1164
Damien Miller94cf4c82005-07-17 17:04:47 +10001165 fail:
Darren Tucker450a1582004-05-30 20:43:59 +10001166 for(i = 0; i < n; i++) {
Darren Tuckerf60845f2013-06-02 08:07:31 +10001167 free(reply[i].resp);
Darren Tucker450a1582004-05-30 20:43:59 +10001168 }
Darren Tuckerf60845f2013-06-02 08:07:31 +10001169 free(reply);
Darren Tucker450a1582004-05-30 20:43:59 +10001170 return (PAM_CONV_ERR);
1171}
1172
1173static struct pam_conv passwd_conv = { sshpam_passwd_conv, NULL };
1174
1175/*
1176 * Attempt password authentication via PAM
1177 */
1178int
1179sshpam_auth_passwd(Authctxt *authctxt, const char *password)
1180{
1181 int flags = (options.permit_empty_passwd == 0 ?
1182 PAM_DISALLOW_NULL_AUTHTOK : 0);
1183
1184 if (!options.use_pam || sshpam_handle == NULL)
1185 fatal("PAM: %s called when PAM disabled or failed to "
1186 "initialise.", __func__);
1187
1188 sshpam_password = password;
1189 sshpam_authctxt = authctxt;
1190
Darren Tuckere061b152004-05-30 22:04:56 +10001191 /*
1192 * If the user logging in is invalid, or is root but is not permitted
1193 * by PermitRootLogin, use an invalid password to prevent leaking
1194 * information via timing (eg if the PAM config has a delay on fail).
1195 */
Darren Tuckerd5bfa8f2005-01-20 13:29:51 +11001196 if (!authctxt->valid || (authctxt->pw->pw_uid == 0 &&
Damien Miller37294fb2005-07-17 17:18:49 +10001197 options.permit_root_login != PERMIT_YES))
Darren Tuckere061b152004-05-30 22:04:56 +10001198 sshpam_password = badpw;
1199
Darren Tucker450a1582004-05-30 20:43:59 +10001200 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
1201 (const void *)&passwd_conv);
1202 if (sshpam_err != PAM_SUCCESS)
1203 fatal("PAM: %s: failed to set PAM_CONV: %s", __func__,
1204 pam_strerror(sshpam_handle, sshpam_err));
1205
1206 sshpam_err = pam_authenticate(sshpam_handle, flags);
1207 sshpam_password = NULL;
Darren Tuckerd5bfa8f2005-01-20 13:29:51 +11001208 if (sshpam_err == PAM_SUCCESS && authctxt->valid) {
Darren Tucker450a1582004-05-30 20:43:59 +10001209 debug("PAM: password authentication accepted for %.100s",
1210 authctxt->user);
Damien Miller37294fb2005-07-17 17:18:49 +10001211 return 1;
Darren Tucker450a1582004-05-30 20:43:59 +10001212 } else {
1213 debug("PAM: password authentication failed for %.100s: %s",
1214 authctxt->valid ? authctxt->user : "an illegal user",
1215 pam_strerror(sshpam_handle, sshpam_err));
1216 return 0;
1217 }
1218}
Damien Millere72b7af1999-12-30 15:08:44 +11001219#endif /* USE_PAM */