blob: db80017efb4c37175bc54d407d85b9deff75ef1d [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"
Darren Tuckerf08bdb52005-05-26 19:59:48 +100050RCSID("$Id: auth-pam.c,v 1.123 2005/05/26 09:59:48 dtucker Exp $");
Damien Millere72b7af1999-12-30 15:08:44 +110051
52#ifdef USE_PAM
Damien Miller0f47c532004-01-02 18:01:30 +110053#if defined(HAVE_SECURITY_PAM_APPL_H)
Damien Miller4f9f42a2003-05-10 19:28:02 +100054#include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +110055#elif defined (HAVE_PAM_PAM_APPL_H)
56#include <pam/pam_appl.h>
57#endif
Damien Miller4f9f42a2003-05-10 19:28:02 +100058
Darren Tuckerf08bdb52005-05-26 19:59:48 +100059/* 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
Kevin Stevese683e762002-04-04 19:02:28 +000066#include "auth.h"
Damien Miller63dc3e92001-02-07 12:58:33 +110067#include "auth-pam.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100068#include "buffer.h"
69#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000070#include "canohost.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100071#include "log.h"
72#include "monitor_wrap.h"
73#include "msg.h"
74#include "packet.h"
Darren Tuckerb6db1722004-05-13 17:29:35 +100075#include "misc.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100076#include "servconf.h"
77#include "ssh2.h"
78#include "xmalloc.h"
Damien Miller1f499fd2003-08-25 13:08:49 +100079#include "auth-options.h"
Damien Millere72b7af1999-12-30 15:08:44 +110080
Damien Miller4e448a32003-05-14 15:11:48 +100081extern ServerOptions options;
Darren Tucker18df00c2003-11-18 12:42:07 +110082extern Buffer loginmsg;
Darren Tucker07705c72003-12-18 15:34:31 +110083extern int compat20;
Darren Tucker2a9bf4b2004-04-18 11:00:26 +100084extern u_int utmp_len;
Damien Miller4e448a32003-05-14 15:11:48 +100085
Darren Tucker328118a2005-05-25 16:18:09 +100086/* so we don't silently change behaviour */
Damien Miller4f9f42a2003-05-10 19:28:02 +100087#ifdef USE_POSIX_THREADS
Darren Tucker328118a2005-05-25 16:18:09 +100088# 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
Damien Miller4f9f42a2003-05-10 19:28:02 +100097#include <pthread.h>
98/*
Damien Millera8e06ce2003-11-21 23:48:55 +110099 * Avoid namespace clash when *not* using pthreads for systems *with*
100 * pthreads, which unconditionally define pthread_t via sys/types.h
Damien Miller4f9f42a2003-05-10 19:28:02 +1000101 * (e.g. Linux)
102 */
Damien Millera8e06ce2003-11-21 23:48:55 +1100103typedef pthread_t sp_pthread_t;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000104#else
Darren Tucker1b27c8f2004-01-13 22:35:58 +1100105typedef 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
Darren Tucker328118a2005-05-25 16:18:09 +1000118#ifndef UNSUPPORTED_POSIX_THREADS_HACK
Damien Miller4f9f42a2003-05-10 19:28:02 +1000119/*
120 * Simulate threads with processes.
121 */
Kevin Steves63007d42002-07-21 17:57:01 +0000122
Darren Tucker749bc952004-01-14 22:14:04 +1100123static int sshpam_thread_status = -1;
124static mysig_t sshpam_oldsig;
125
126static void
127sshpam_sigchld_handler(int sig)
128{
Darren Tuckerb53355e2004-05-24 11:55:36 +1000129 signal(SIGCHLD, SIG_DFL);
Darren Tucker7ae09622004-01-14 23:07:56 +1100130 if (cleanup_ctxt == NULL)
131 return; /* handler called after PAM cleanup, shouldn't happen */
Darren Tuckerb53355e2004-05-24 11:55:36 +1000132 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, WNOHANG)
Darren Tucker5d423f42004-07-11 16:54:08 +1000133 <= 0) {
Darren Tuckerb53355e2004-05-24 11:55:36 +1000134 /* 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)
Darren Tucker5d423f42004-07-11 16:54:08 +1000137 <= 0)
Darren Tuckerb53355e2004-05-24 11:55:36 +1000138 return; /* could not wait */
139 }
Darren Tucker749bc952004-01-14 22:14:04 +1100140 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}
148
Damien Miller4f9f42a2003-05-10 19:28:02 +1000149static void
150pthread_exit(void *value __unused)
151{
152 _exit(0);
153}
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000154
Damien Miller4f9f42a2003-05-10 19:28:02 +1000155static int
156pthread_create(sp_pthread_t *thread, const void *attr __unused,
157 void *(*thread_start)(void *), void *arg)
158{
159 pid_t pid;
Damien Millere72b7af1999-12-30 15:08:44 +1100160
Darren Tuckerb9b60212004-03-04 20:03:54 +1100161 sshpam_thread_status = -1;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000162 switch ((pid = fork())) {
163 case -1:
164 error("fork(): %s", strerror(errno));
165 return (-1);
166 case 0:
167 thread_start(arg);
168 _exit(1);
169 default:
170 *thread = pid;
Darren Tucker749bc952004-01-14 22:14:04 +1100171 sshpam_oldsig = signal(SIGCHLD, sshpam_sigchld_handler);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000172 return (0);
173 }
174}
Damien Millere72b7af1999-12-30 15:08:44 +1100175
Damien Miller4f9f42a2003-05-10 19:28:02 +1000176static int
177pthread_cancel(sp_pthread_t thread)
178{
Darren Tucker7ae09622004-01-14 23:07:56 +1100179 signal(SIGCHLD, sshpam_oldsig);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000180 return (kill(thread, SIGTERM));
181}
182
183static int
184pthread_join(sp_pthread_t thread, void **value __unused)
185{
186 int status;
187
Darren Tucker749bc952004-01-14 22:14:04 +1100188 if (sshpam_thread_status != -1)
189 return (sshpam_thread_status);
190 signal(SIGCHLD, sshpam_oldsig);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000191 waitpid(thread, &status, 0);
192 return (status);
193}
194#endif
195
196
Damien Miller5c3a5582003-09-23 22:12:38 +1000197static pam_handle_t *sshpam_handle = NULL;
198static int sshpam_err = 0;
199static int sshpam_authenticated = 0;
Damien Miller5c3a5582003-09-23 22:12:38 +1000200static int sshpam_session_open = 0;
201static int sshpam_cred_established = 0;
Darren Tucker07705c72003-12-18 15:34:31 +1100202static int sshpam_account_status = -1;
Damien Millerc756e9b2003-11-17 21:41:42 +1100203static char **sshpam_env = NULL;
Darren Tucker17addf02004-03-30 20:57:57 +1000204static Authctxt *sshpam_authctxt = NULL;
Darren Tucker450a1582004-05-30 20:43:59 +1000205static const char *sshpam_password = NULL;
Darren Tucker36a3d602005-01-20 12:43:38 +1100206static char badpw[] = "\b\n\r\177INCORRECT";
Damien Miller4f9f42a2003-05-10 19:28:02 +1000207
Damien Millerc756e9b2003-11-17 21:41:42 +1100208/* Some PAM implementations don't implement this */
209#ifndef HAVE_PAM_GETENVLIST
210static char **
211pam_getenvlist(pam_handle_t *pamh)
212{
213 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100214 * XXX - If necessary, we can still support envrionment passing
Damien Millerc756e9b2003-11-17 21:41:42 +1100215 * for platforms without pam_getenvlist by searching for known
216 * env vars (e.g. KRB5CCNAME) from the PAM environment.
217 */
218 return NULL;
219}
220#endif
221
Darren Tucker21dd0892004-08-16 23:12:05 +1000222/*
223 * Some platforms, notably Solaris, do not enforce password complexity
224 * rules during pam_chauthtok() if the real uid of the calling process
225 * is 0, on the assumption that it's being called by "passwd" run by root.
226 * This wraps pam_chauthtok and sets/restore the real uid so PAM will do
227 * the right thing.
228 */
229#ifdef SSHPAM_CHAUTHTOK_NEEDS_RUID
230static int
231sshpam_chauthtok_ruid(pam_handle_t *pamh, int flags)
232{
233 int result;
234
235 if (sshpam_authctxt == NULL)
236 fatal("PAM: sshpam_authctxt not initialized");
237 if (setreuid(sshpam_authctxt->pw->pw_uid, -1) == -1)
238 fatal("%s: setreuid failed: %s", __func__, strerror(errno));
239 result = pam_chauthtok(pamh, flags);
240 if (setreuid(0, -1) == -1)
241 fatal("%s: setreuid failed: %s", __func__, strerror(errno));
242 return result;
243}
244# define pam_chauthtok(a,b) (sshpam_chauthtok_ruid((a), (b)))
245#endif
246
Darren Tucker07705c72003-12-18 15:34:31 +1100247void
Darren Tucker17db1c42004-06-19 12:54:38 +1000248sshpam_password_change_required(int reqd)
Darren Tucker07705c72003-12-18 15:34:31 +1100249{
Darren Tuckera8df9242004-01-15 00:15:07 +1100250 debug3("%s %d", __func__, reqd);
Darren Tucker17addf02004-03-30 20:57:57 +1000251 if (sshpam_authctxt == NULL)
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100252 fatal("%s: PAM authctxt not initialized", __func__);
Darren Tucker17addf02004-03-30 20:57:57 +1000253 sshpam_authctxt->force_pwchange = reqd;
Darren Tucker07705c72003-12-18 15:34:31 +1100254 if (reqd) {
255 no_port_forwarding_flag |= 2;
256 no_agent_forwarding_flag |= 2;
257 no_x11_forwarding_flag |= 2;
258 } else {
259 no_port_forwarding_flag &= ~2;
260 no_agent_forwarding_flag &= ~2;
261 no_x11_forwarding_flag &= ~2;
Darren Tucker07705c72003-12-18 15:34:31 +1100262 }
263}
Darren Tucker1921ed92004-02-10 13:23:28 +1100264
Damien Millerc756e9b2003-11-17 21:41:42 +1100265/* Import regular and PAM environment from subprocess */
266static void
267import_environments(Buffer *b)
268{
269 char *env;
270 u_int i, num_env;
271 int err;
272
Darren Tuckera8df9242004-01-15 00:15:07 +1100273 debug3("PAM: %s entering", __func__);
274
Darren Tucker328118a2005-05-25 16:18:09 +1000275#ifndef UNSUPPORTED_POSIX_THREADS_HACK
Darren Tucker07705c72003-12-18 15:34:31 +1100276 /* Import variables set by do_pam_account */
277 sshpam_account_status = buffer_get_int(b);
Darren Tucker17db1c42004-06-19 12:54:38 +1000278 sshpam_password_change_required(buffer_get_int(b));
Darren Tucker07705c72003-12-18 15:34:31 +1100279
Damien Millerc756e9b2003-11-17 21:41:42 +1100280 /* Import environment from subprocess */
281 num_env = buffer_get_int(b);
282 sshpam_env = xmalloc((num_env + 1) * sizeof(*sshpam_env));
283 debug3("PAM: num env strings %d", num_env);
284 for(i = 0; i < num_env; i++)
285 sshpam_env[i] = buffer_get_string(b, NULL);
286
287 sshpam_env[num_env] = NULL;
288
289 /* Import PAM environment from subprocess */
290 num_env = buffer_get_int(b);
291 debug("PAM: num PAM env strings %d", num_env);
292 for(i = 0; i < num_env; i++) {
293 env = buffer_get_string(b, NULL);
294
Darren Tucker8a1624c2003-11-18 12:45:35 +1100295#ifdef HAVE_PAM_PUTENV
Damien Millerc756e9b2003-11-17 21:41:42 +1100296 /* Errors are not fatal here */
297 if ((err = pam_putenv(sshpam_handle, env)) != PAM_SUCCESS) {
298 error("PAM: pam_putenv: %s",
299 pam_strerror(sshpam_handle, sshpam_err));
300 }
Darren Tucker8a1624c2003-11-18 12:45:35 +1100301#endif
Damien Millerc756e9b2003-11-17 21:41:42 +1100302 }
Darren Tucker4b385d42004-03-04 19:54:10 +1100303#endif
Damien Millerc756e9b2003-11-17 21:41:42 +1100304}
305
Damien Miller9d5705a2000-09-16 16:09:27 +1100306/*
Damien Miller4f9f42a2003-05-10 19:28:02 +1000307 * Conversation function for authentication thread.
Damien Miller9d5705a2000-09-16 16:09:27 +1100308 */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000309static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000310sshpam_thread_conv(int n, sshpam_const struct pam_message **msg,
Damien Miller1f499fd2003-08-25 13:08:49 +1000311 struct pam_response **resp, void *data)
Damien Millere72b7af1999-12-30 15:08:44 +1100312{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000313 Buffer buffer;
314 struct pam_ctxt *ctxt;
Damien Miller5c3a5582003-09-23 22:12:38 +1000315 struct pam_response *reply;
Kevin Steves38b050a2002-07-23 00:44:07 +0000316 int i;
317
Darren Tuckerba53b832004-02-17 20:46:59 +1100318 debug3("PAM: %s entering, %d messages", __func__, n);
Damien Miller5c3a5582003-09-23 22:12:38 +1000319 *resp = NULL;
320
Darren Tucker59e06022004-06-30 20:34:31 +1000321 if (data == NULL) {
322 error("PAM: conversation function passed a null context");
323 return (PAM_CONV_ERR);
324 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000325 ctxt = data;
326 if (n <= 0 || n > PAM_MAX_NUM_MSG)
327 return (PAM_CONV_ERR);
Damien Miller5c3a5582003-09-23 22:12:38 +1000328
329 if ((reply = malloc(n * sizeof(*reply))) == NULL)
330 return (PAM_CONV_ERR);
331 memset(reply, 0, n * sizeof(*reply));
332
Damien Miller4f9f42a2003-05-10 19:28:02 +1000333 buffer_init(&buffer);
334 for (i = 0; i < n; ++i) {
Damien Miller4f9f42a2003-05-10 19:28:02 +1000335 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
336 case PAM_PROMPT_ECHO_OFF:
Damien Millera8e06ce2003-11-21 23:48:55 +1100337 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000338 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100339 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100340 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
341 goto fail;
Damien Millera8e06ce2003-11-21 23:48:55 +1100342 if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
Damien Miller9bdba702003-11-17 21:27:55 +1100343 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000344 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
345 goto fail;
Damien Miller5c3a5582003-09-23 22:12:38 +1000346 reply[i].resp = buffer_get_string(&buffer, NULL);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000347 break;
348 case PAM_PROMPT_ECHO_ON:
Damien Millera8e06ce2003-11-21 23:48:55 +1100349 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000350 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100351 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100352 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
353 goto fail;
354 if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
355 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000356 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
357 goto fail;
Damien Miller5c3a5582003-09-23 22:12:38 +1000358 reply[i].resp = buffer_get_string(&buffer, NULL);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000359 break;
360 case PAM_ERROR_MSG:
Damien Millera8e06ce2003-11-21 23:48:55 +1100361 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000362 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100363 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100364 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
365 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000366 break;
367 case PAM_TEXT_INFO:
Damien Millera8e06ce2003-11-21 23:48:55 +1100368 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000369 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100370 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100371 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
372 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000373 break;
374 default:
375 goto fail;
376 }
377 buffer_clear(&buffer);
Kevin Steves38b050a2002-07-23 00:44:07 +0000378 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000379 buffer_free(&buffer);
Damien Miller5c3a5582003-09-23 22:12:38 +1000380 *resp = reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000381 return (PAM_SUCCESS);
Damien Miller5c3a5582003-09-23 22:12:38 +1000382
Damien Miller4f9f42a2003-05-10 19:28:02 +1000383 fail:
Damien Miller5c3a5582003-09-23 22:12:38 +1000384 for(i = 0; i < n; i++) {
385 if (reply[i].resp != NULL)
386 xfree(reply[i].resp);
387 }
388 xfree(reply);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000389 buffer_free(&buffer);
390 return (PAM_CONV_ERR);
Kevin Steves38b050a2002-07-23 00:44:07 +0000391}
392
Damien Miller4f9f42a2003-05-10 19:28:02 +1000393/*
394 * Authentication thread.
395 */
396static void *
397sshpam_thread(void *ctxtp)
Damien Millere72b7af1999-12-30 15:08:44 +1100398{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000399 struct pam_ctxt *ctxt = ctxtp;
400 Buffer buffer;
Damien Millerf4b6f102003-09-02 23:12:06 +1000401 struct pam_conv sshpam_conv;
Darren Tucker1f7e4082004-07-01 14:00:14 +1000402 int flags = (options.permit_empty_passwd == 0 ?
403 PAM_DISALLOW_NULL_AUTHTOK : 0);
Darren Tucker328118a2005-05-25 16:18:09 +1000404#ifndef UNSUPPORTED_POSIX_THREADS_HACK
Damien Millerc756e9b2003-11-17 21:41:42 +1100405 extern char **environ;
406 char **env_from_pam;
407 u_int i;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000408 const char *pam_user;
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000409 const char **ptr_pam_user = &pam_user;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000410
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000411 pam_get_item(sshpam_handle, PAM_USER,
412 (sshpam_const void **)ptr_pam_user);
Damien Millerc756e9b2003-11-17 21:41:42 +1100413 environ[0] = NULL;
Damien Miller2d2ed3d2004-07-21 20:54:47 +1000414
415 if (sshpam_authctxt != NULL) {
416 setproctitle("%s [pam]",
417 sshpam_authctxt->valid ? pam_user : "unknown");
418 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000419#endif
420
Damien Millerf4b6f102003-09-02 23:12:06 +1000421 sshpam_conv.conv = sshpam_thread_conv;
422 sshpam_conv.appdata_ptr = ctxt;
423
Darren Tucker17addf02004-03-30 20:57:57 +1000424 if (sshpam_authctxt == NULL)
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100425 fatal("%s: PAM authctxt not initialized", __func__);
426
Damien Miller4f9f42a2003-05-10 19:28:02 +1000427 buffer_init(&buffer);
428 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
429 (const void *)&sshpam_conv);
430 if (sshpam_err != PAM_SUCCESS)
431 goto auth_fail;
Darren Tucker1f7e4082004-07-01 14:00:14 +1000432 sshpam_err = pam_authenticate(sshpam_handle, flags);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000433 if (sshpam_err != PAM_SUCCESS)
434 goto auth_fail;
Darren Tucker07705c72003-12-18 15:34:31 +1100435
Darren Tuckerc376c862003-12-18 16:08:59 +1100436 if (compat20) {
Darren Tucker07705c72003-12-18 15:34:31 +1100437 if (!do_pam_account())
438 goto auth_fail;
Darren Tucker17addf02004-03-30 20:57:57 +1000439 if (sshpam_authctxt->force_pwchange) {
Darren Tucker07705c72003-12-18 15:34:31 +1100440 sshpam_err = pam_chauthtok(sshpam_handle,
441 PAM_CHANGE_EXPIRED_AUTHTOK);
442 if (sshpam_err != PAM_SUCCESS)
443 goto auth_fail;
Darren Tucker17db1c42004-06-19 12:54:38 +1000444 sshpam_password_change_required(0);
Darren Tucker07705c72003-12-18 15:34:31 +1100445 }
Darren Tuckerc376c862003-12-18 16:08:59 +1100446 }
Darren Tucker07705c72003-12-18 15:34:31 +1100447
Damien Miller4f9f42a2003-05-10 19:28:02 +1000448 buffer_put_cstring(&buffer, "OK");
Damien Millerc756e9b2003-11-17 21:41:42 +1100449
Darren Tucker328118a2005-05-25 16:18:09 +1000450#ifndef UNSUPPORTED_POSIX_THREADS_HACK
Darren Tucker07705c72003-12-18 15:34:31 +1100451 /* Export variables set by do_pam_account */
452 buffer_put_int(&buffer, sshpam_account_status);
Darren Tucker17addf02004-03-30 20:57:57 +1000453 buffer_put_int(&buffer, sshpam_authctxt->force_pwchange);
Darren Tucker07705c72003-12-18 15:34:31 +1100454
Damien Millerc756e9b2003-11-17 21:41:42 +1100455 /* Export any environment strings set in child */
456 for(i = 0; environ[i] != NULL; i++)
457 ; /* Count */
458 buffer_put_int(&buffer, i);
459 for(i = 0; environ[i] != NULL; i++)
460 buffer_put_cstring(&buffer, environ[i]);
461
462 /* Export any environment strings set by PAM in child */
463 env_from_pam = pam_getenvlist(sshpam_handle);
464 for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
465 ; /* Count */
466 buffer_put_int(&buffer, i);
467 for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
468 buffer_put_cstring(&buffer, env_from_pam[i]);
Darren Tucker328118a2005-05-25 16:18:09 +1000469#endif /* UNSUPPORTED_POSIX_THREADS_HACK */
Damien Millerc756e9b2003-11-17 21:41:42 +1100470
Damien Miller9bdba702003-11-17 21:27:55 +1100471 /* XXX - can't do much about an error here */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000472 ssh_msg_send(ctxt->pam_csock, sshpam_err, &buffer);
473 buffer_free(&buffer);
474 pthread_exit(NULL);
475
476 auth_fail:
477 buffer_put_cstring(&buffer,
478 pam_strerror(sshpam_handle, sshpam_err));
Damien Miller9bdba702003-11-17 21:27:55 +1100479 /* XXX - can't do much about an error here */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000480 ssh_msg_send(ctxt->pam_csock, PAM_AUTH_ERR, &buffer);
481 buffer_free(&buffer);
482 pthread_exit(NULL);
Damien Miller787b2ec2003-11-21 23:56:47 +1100483
Damien Miller4f9f42a2003-05-10 19:28:02 +1000484 return (NULL); /* Avoid warning for non-pthread case */
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000485}
486
Darren Tucker8846a072003-10-07 11:30:15 +1000487void
488sshpam_thread_cleanup(void)
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000489{
Darren Tucker8846a072003-10-07 11:30:15 +1000490 struct pam_ctxt *ctxt = cleanup_ctxt;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000491
Darren Tuckera8df9242004-01-15 00:15:07 +1100492 debug3("PAM: %s entering", __func__);
Darren Tucker8846a072003-10-07 11:30:15 +1000493 if (ctxt != NULL && ctxt->pam_thread != 0) {
494 pthread_cancel(ctxt->pam_thread);
495 pthread_join(ctxt->pam_thread, NULL);
496 close(ctxt->pam_psock);
497 close(ctxt->pam_csock);
498 memset(ctxt, 0, sizeof(*ctxt));
499 cleanup_ctxt = NULL;
500 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000501}
Kevin Stevesef4eea92001-02-05 12:42:17 +0000502
Damien Miller4f9f42a2003-05-10 19:28:02 +1000503static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000504sshpam_null_conv(int n, sshpam_const struct pam_message **msg,
Damien Miller1f499fd2003-08-25 13:08:49 +1000505 struct pam_response **resp, void *data)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000506{
Darren Tuckerba53b832004-02-17 20:46:59 +1100507 debug3("PAM: %s entering, %d messages", __func__, n);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000508 return (PAM_CONV_ERR);
509}
Damien Miller63dc3e92001-02-07 12:58:33 +1100510
Damien Miller4f9f42a2003-05-10 19:28:02 +1000511static struct pam_conv null_conv = { sshpam_null_conv, NULL };
512
Darren Tucker0a7e3c62004-09-11 22:28:01 +1000513static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000514sshpam_store_conv(int n, sshpam_const struct pam_message **msg,
Darren Tucker0a7e3c62004-09-11 22:28:01 +1000515 struct pam_response **resp, void *data)
516{
517 struct pam_response *reply;
518 int i;
519 size_t len;
520
521 debug3("PAM: %s called with %d messages", __func__, n);
522 *resp = NULL;
523
524 if (n <= 0 || n > PAM_MAX_NUM_MSG)
525 return (PAM_CONV_ERR);
526
527 if ((reply = malloc(n * sizeof(*reply))) == NULL)
528 return (PAM_CONV_ERR);
529 memset(reply, 0, n * sizeof(*reply));
530
531 for (i = 0; i < n; ++i) {
532 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
533 case PAM_ERROR_MSG:
534 case PAM_TEXT_INFO:
535 len = strlen(PAM_MSG_MEMBER(msg, i, msg));
536 buffer_append(&loginmsg, PAM_MSG_MEMBER(msg, i, msg), len);
537 buffer_append(&loginmsg, "\n", 1 );
538 reply[i].resp_retcode = PAM_SUCCESS;
539 break;
540 default:
541 goto fail;
542 }
543 }
544 *resp = reply;
545 return (PAM_SUCCESS);
546
547 fail:
548 for(i = 0; i < n; i++) {
549 if (reply[i].resp != NULL)
550 xfree(reply[i].resp);
551 }
552 xfree(reply);
553 return (PAM_CONV_ERR);
554}
555
556static struct pam_conv store_conv = { sshpam_store_conv, NULL };
557
Darren Tucker8846a072003-10-07 11:30:15 +1000558void
559sshpam_cleanup(void)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000560{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000561 debug("PAM: cleanup");
Damien Miller5c3a5582003-09-23 22:12:38 +1000562 if (sshpam_handle == NULL)
563 return;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000564 pam_set_item(sshpam_handle, PAM_CONV, (const void *)&null_conv);
565 if (sshpam_cred_established) {
566 pam_setcred(sshpam_handle, PAM_DELETE_CRED);
567 sshpam_cred_established = 0;
568 }
569 if (sshpam_session_open) {
570 pam_close_session(sshpam_handle, PAM_SILENT);
571 sshpam_session_open = 0;
572 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100573 sshpam_authenticated = 0;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000574 pam_end(sshpam_handle, sshpam_err);
575 sshpam_handle = NULL;
576}
577
578static int
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100579sshpam_init(Authctxt *authctxt)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000580{
Darren Tucker455813b2003-09-13 22:12:11 +1000581 extern char *__progname;
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100582 const char *pam_rhost, *pam_user, *user = authctxt->user;
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000583 const char **ptr_pam_user = &pam_user;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000584
585 if (sshpam_handle != NULL) {
586 /* We already have a PAM context; check if the user matches */
587 sshpam_err = pam_get_item(sshpam_handle,
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000588 PAM_USER, (sshpam_const void **)ptr_pam_user);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000589 if (sshpam_err == PAM_SUCCESS && strcmp(user, pam_user) == 0)
590 return (0);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000591 pam_end(sshpam_handle, sshpam_err);
592 sshpam_handle = NULL;
593 }
594 debug("PAM: initializing for \"%s\"", user);
Darren Tuckerc58c2ee2003-09-13 22:02:05 +1000595 sshpam_err =
Darren Tucker77fc29e2004-09-11 23:07:03 +1000596 pam_start(SSHD_PAM_SERVICE, user, &store_conv, &sshpam_handle);
Darren Tucker17addf02004-03-30 20:57:57 +1000597 sshpam_authctxt = authctxt;
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100598
Damien Miller4f9f42a2003-05-10 19:28:02 +1000599 if (sshpam_err != PAM_SUCCESS) {
600 pam_end(sshpam_handle, sshpam_err);
601 sshpam_handle = NULL;
602 return (-1);
603 }
Damien Miller3a961dc2003-06-03 10:25:48 +1000604 pam_rhost = get_remote_name_or_ip(utmp_len, options.use_dns);
Damien Miller46337202003-06-02 11:04:39 +1000605 debug("PAM: setting PAM_RHOST to \"%s\"", pam_rhost);
Damien Miller25d93422003-05-18 20:45:47 +1000606 sshpam_err = pam_set_item(sshpam_handle, PAM_RHOST, pam_rhost);
607 if (sshpam_err != PAM_SUCCESS) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000608 pam_end(sshpam_handle, sshpam_err);
Damien Miller25d93422003-05-18 20:45:47 +1000609 sshpam_handle = NULL;
610 return (-1);
611 }
612#ifdef PAM_TTY_KLUDGE
Damien Millera8e06ce2003-11-21 23:48:55 +1100613 /*
614 * Some silly PAM modules (e.g. pam_time) require a TTY to operate.
615 * sshd doesn't set the tty until too late in the auth process and
Damien Miller25d93422003-05-18 20:45:47 +1000616 * may not even set one (for tty-less connections)
Damien Millera8e06ce2003-11-21 23:48:55 +1100617 */
Damien Miller25d93422003-05-18 20:45:47 +1000618 debug("PAM: setting PAM_TTY to \"ssh\"");
619 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, "ssh");
620 if (sshpam_err != PAM_SUCCESS) {
621 pam_end(sshpam_handle, sshpam_err);
622 sshpam_handle = NULL;
623 return (-1);
624 }
625#endif
Damien Miller4f9f42a2003-05-10 19:28:02 +1000626 return (0);
627}
628
629static void *
630sshpam_init_ctx(Authctxt *authctxt)
631{
632 struct pam_ctxt *ctxt;
633 int socks[2];
634
Darren Tuckera8df9242004-01-15 00:15:07 +1100635 debug3("PAM: %s entering", __func__);
Damien Miller4e448a32003-05-14 15:11:48 +1000636 /* Refuse to start if we don't have PAM enabled */
637 if (!options.use_pam)
638 return NULL;
639
Damien Miller4f9f42a2003-05-10 19:28:02 +1000640 /* Initialize PAM */
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100641 if (sshpam_init(authctxt) == -1) {
Damien Miller4f9f42a2003-05-10 19:28:02 +1000642 error("PAM: initialization failed");
643 return (NULL);
644 }
645
646 ctxt = xmalloc(sizeof *ctxt);
Darren Tucker8846a072003-10-07 11:30:15 +1000647 memset(ctxt, 0, sizeof(*ctxt));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000648
649 /* Start the authentication thread */
650 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, socks) == -1) {
651 error("PAM: failed create sockets: %s", strerror(errno));
652 xfree(ctxt);
653 return (NULL);
654 }
655 ctxt->pam_psock = socks[0];
656 ctxt->pam_csock = socks[1];
657 if (pthread_create(&ctxt->pam_thread, NULL, sshpam_thread, ctxt) == -1) {
658 error("PAM: failed to start authentication thread: %s",
659 strerror(errno));
660 close(socks[0]);
661 close(socks[1]);
662 xfree(ctxt);
663 return (NULL);
664 }
Darren Tucker8846a072003-10-07 11:30:15 +1000665 cleanup_ctxt = ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000666 return (ctxt);
667}
668
669static int
670sshpam_query(void *ctx, char **name, char **info,
671 u_int *num, char ***prompts, u_int **echo_on)
672{
673 Buffer buffer;
674 struct pam_ctxt *ctxt = ctx;
675 size_t plen;
676 u_char type;
677 char *msg;
Damien Millerdaffc6a2004-10-16 18:52:44 +1000678 size_t len, mlen;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000679
Darren Tuckera8df9242004-01-15 00:15:07 +1100680 debug3("PAM: %s entering", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000681 buffer_init(&buffer);
682 *name = xstrdup("");
683 *info = xstrdup("");
684 *prompts = xmalloc(sizeof(char *));
685 **prompts = NULL;
686 plen = 0;
687 *echo_on = xmalloc(sizeof(u_int));
688 while (ssh_msg_recv(ctxt->pam_psock, &buffer) == 0) {
689 type = buffer_get_char(&buffer);
690 msg = buffer_get_string(&buffer, NULL);
Damien Millerdaffc6a2004-10-16 18:52:44 +1000691 mlen = strlen(msg);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000692 switch (type) {
693 case PAM_PROMPT_ECHO_ON:
694 case PAM_PROMPT_ECHO_OFF:
695 *num = 1;
Damien Millerdaffc6a2004-10-16 18:52:44 +1000696 len = plen + mlen + 1;
Damien Miller7f2d7952003-07-30 14:53:11 +1000697 **prompts = xrealloc(**prompts, len);
Damien Millerdaffc6a2004-10-16 18:52:44 +1000698 strlcpy(**prompts + plen, msg, len - plen);
699 plen += mlen;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000700 **echo_on = (type == PAM_PROMPT_ECHO_ON);
701 xfree(msg);
702 return (0);
703 case PAM_ERROR_MSG:
704 case PAM_TEXT_INFO:
705 /* accumulate messages */
Damien Millerdaffc6a2004-10-16 18:52:44 +1000706 len = plen + mlen + 2;
Damien Miller7f2d7952003-07-30 14:53:11 +1000707 **prompts = xrealloc(**prompts, len);
Damien Millerdaffc6a2004-10-16 18:52:44 +1000708 strlcpy(**prompts + plen, msg, len - plen);
709 plen += mlen;
710 strlcat(**prompts + plen, "\n", len - plen);
711 plen++;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000712 xfree(msg);
713 break;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000714 case PAM_SUCCESS:
715 case PAM_AUTH_ERR:
716 if (**prompts != NULL) {
717 /* drain any accumulated messages */
Darren Tucker18df00c2003-11-18 12:42:07 +1100718 debug("PAM: %s", **prompts);
719 buffer_append(&loginmsg, **prompts,
720 strlen(**prompts));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000721 xfree(**prompts);
722 **prompts = NULL;
723 }
724 if (type == PAM_SUCCESS) {
Darren Tuckerd5bfa8f2005-01-20 13:29:51 +1100725 if (!sshpam_authctxt->valid ||
726 (sshpam_authctxt->pw->pw_uid == 0 &&
727 options.permit_root_login != PERMIT_YES))
Darren Tucker36a3d602005-01-20 12:43:38 +1100728 fatal("Internal error: PAM auth "
729 "succeeded when it should have "
730 "failed");
Damien Millerc756e9b2003-11-17 21:41:42 +1100731 import_environments(&buffer);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000732 *num = 0;
733 **echo_on = 0;
734 ctxt->pam_done = 1;
735 xfree(msg);
736 return (0);
737 }
Darren Tucker2a9bf4b2004-04-18 11:00:26 +1000738 error("PAM: %s for %s%.100s from %.100s", msg,
739 sshpam_authctxt->valid ? "" : "illegal user ",
740 sshpam_authctxt->user,
741 get_remote_name_or_ip(utmp_len, options.use_dns));
Darren Tucker439ce0d2003-10-09 14:20:15 +1000742 /* FALLTHROUGH */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000743 default:
744 *num = 0;
745 **echo_on = 0;
746 xfree(msg);
747 ctxt->pam_done = -1;
748 return (-1);
749 }
750 }
751 return (-1);
752}
753
754/* XXX - see also comment in auth-chall.c:verify_response */
755static int
756sshpam_respond(void *ctx, u_int num, char **resp)
757{
758 Buffer buffer;
759 struct pam_ctxt *ctxt = ctx;
760
Darren Tuckera8df9242004-01-15 00:15:07 +1100761 debug2("PAM: %s entering, %d responses", __func__, num);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000762 switch (ctxt->pam_done) {
763 case 1:
764 sshpam_authenticated = 1;
765 return (0);
766 case 0:
767 break;
768 default:
769 return (-1);
770 }
771 if (num != 1) {
772 error("PAM: expected one response, got %u", num);
773 return (-1);
774 }
775 buffer_init(&buffer);
Darren Tuckerd5bfa8f2005-01-20 13:29:51 +1100776 if (sshpam_authctxt->valid &&
777 (sshpam_authctxt->pw->pw_uid != 0 ||
778 options.permit_root_login == PERMIT_YES))
Darren Tucker36a3d602005-01-20 12:43:38 +1100779 buffer_put_cstring(&buffer, *resp);
780 else
781 buffer_put_cstring(&buffer, badpw);
Damien Miller9bdba702003-11-17 21:27:55 +1100782 if (ssh_msg_send(ctxt->pam_psock, PAM_AUTHTOK, &buffer) == -1) {
783 buffer_free(&buffer);
784 return (-1);
785 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000786 buffer_free(&buffer);
787 return (1);
788}
789
790static void
791sshpam_free_ctx(void *ctxtp)
792{
793 struct pam_ctxt *ctxt = ctxtp;
794
Darren Tuckera8df9242004-01-15 00:15:07 +1100795 debug3("PAM: %s entering", __func__);
Darren Tucker8846a072003-10-07 11:30:15 +1000796 sshpam_thread_cleanup();
Damien Miller4f9f42a2003-05-10 19:28:02 +1000797 xfree(ctxt);
798 /*
799 * We don't call sshpam_cleanup() here because we may need the PAM
800 * handle at a later stage, e.g. when setting up a session. It's
801 * still on the cleanup list, so pam_end() *will* be called before
802 * the server process terminates.
803 */
804}
805
806KbdintDevice sshpam_device = {
807 "pam",
808 sshpam_init_ctx,
809 sshpam_query,
810 sshpam_respond,
811 sshpam_free_ctx
812};
813
814KbdintDevice mm_sshpam_device = {
815 "pam",
816 mm_sshpam_init_ctx,
817 mm_sshpam_query,
818 mm_sshpam_respond,
819 mm_sshpam_free_ctx
820};
821
822/*
823 * This replaces auth-pam.c
824 */
825void
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100826start_pam(Authctxt *authctxt)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000827{
Damien Miller9d507da2003-05-14 15:31:12 +1000828 if (!options.use_pam)
829 fatal("PAM: initialisation requested when UsePAM=no");
830
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100831 if (sshpam_init(authctxt) == -1)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000832 fatal("PAM: initialisation failed");
833}
834
835void
836finish_pam(void)
837{
Darren Tucker8846a072003-10-07 11:30:15 +1000838 sshpam_cleanup();
Damien Miller4f9f42a2003-05-10 19:28:02 +1000839}
840
Damien Miller1f499fd2003-08-25 13:08:49 +1000841u_int
842do_pam_account(void)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000843{
Darren Tucker77fc29e2004-09-11 23:07:03 +1000844 debug("%s: called", __func__);
Darren Tucker07705c72003-12-18 15:34:31 +1100845 if (sshpam_account_status != -1)
846 return (sshpam_account_status);
847
Damien Miller1f499fd2003-08-25 13:08:49 +1000848 sshpam_err = pam_acct_mgmt(sshpam_handle, 0);
Darren Tucker77fc29e2004-09-11 23:07:03 +1000849 debug3("PAM: %s pam_acct_mgmt = %d (%s)", __func__, sshpam_err,
850 pam_strerror(sshpam_handle, sshpam_err));
Darren Tucker07705c72003-12-18 15:34:31 +1100851
852 if (sshpam_err != PAM_SUCCESS && sshpam_err != PAM_NEW_AUTHTOK_REQD) {
853 sshpam_account_status = 0;
854 return (sshpam_account_status);
Damien Miller1f499fd2003-08-25 13:08:49 +1000855 }
856
Darren Tucker07705c72003-12-18 15:34:31 +1100857 if (sshpam_err == PAM_NEW_AUTHTOK_REQD)
Darren Tucker17db1c42004-06-19 12:54:38 +1000858 sshpam_password_change_required(1);
Darren Tucker07705c72003-12-18 15:34:31 +1100859
860 sshpam_account_status = 1;
861 return (sshpam_account_status);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000862}
863
864void
Damien Miller341c6e62003-09-02 23:18:52 +1000865do_pam_set_tty(const char *tty)
866{
Darren Tuckerf38db7f2003-08-08 13:43:37 +1000867 if (tty != NULL) {
868 debug("PAM: setting PAM_TTY to \"%s\"", tty);
869 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, tty);
870 if (sshpam_err != PAM_SUCCESS)
871 fatal("PAM: failed to set PAM_TTY: %s",
872 pam_strerror(sshpam_handle, sshpam_err));
873 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000874}
875
876void
877do_pam_setcred(int init)
878{
879 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
Darren Tucker77fc29e2004-09-11 23:07:03 +1000880 (const void *)&store_conv);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000881 if (sshpam_err != PAM_SUCCESS)
882 fatal("PAM: failed to set PAM_CONV: %s",
883 pam_strerror(sshpam_handle, sshpam_err));
884 if (init) {
885 debug("PAM: establishing credentials");
886 sshpam_err = pam_setcred(sshpam_handle, PAM_ESTABLISH_CRED);
887 } else {
888 debug("PAM: reinitializing credentials");
889 sshpam_err = pam_setcred(sshpam_handle, PAM_REINITIALIZE_CRED);
890 }
891 if (sshpam_err == PAM_SUCCESS) {
892 sshpam_cred_established = 1;
893 return;
894 }
895 if (sshpam_authenticated)
896 fatal("PAM: pam_setcred(): %s",
897 pam_strerror(sshpam_handle, sshpam_err));
898 else
899 debug("PAM: pam_setcred(): %s",
900 pam_strerror(sshpam_handle, sshpam_err));
901}
902
Damien Miller4f9f42a2003-05-10 19:28:02 +1000903static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +1000904sshpam_tty_conv(int n, sshpam_const struct pam_message **msg,
Damien Miller1f499fd2003-08-25 13:08:49 +1000905 struct pam_response **resp, void *data)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000906{
907 char input[PAM_MAX_MSG_SIZE];
Damien Miller5c3a5582003-09-23 22:12:38 +1000908 struct pam_response *reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000909 int i;
910
Darren Tuckerba53b832004-02-17 20:46:59 +1100911 debug3("PAM: %s called with %d messages", __func__, n);
912
Damien Miller5c3a5582003-09-23 22:12:38 +1000913 *resp = NULL;
914
Darren Tucker18df00c2003-11-18 12:42:07 +1100915 if (n <= 0 || n > PAM_MAX_NUM_MSG || !isatty(STDIN_FILENO))
Damien Miller4f9f42a2003-05-10 19:28:02 +1000916 return (PAM_CONV_ERR);
Damien Miller5c3a5582003-09-23 22:12:38 +1000917
918 if ((reply = malloc(n * sizeof(*reply))) == NULL)
919 return (PAM_CONV_ERR);
920 memset(reply, 0, n * sizeof(*reply));
921
Damien Miller4f9f42a2003-05-10 19:28:02 +1000922 for (i = 0; i < n; ++i) {
923 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
924 case PAM_PROMPT_ECHO_OFF:
Damien Miller5c3a5582003-09-23 22:12:38 +1000925 reply[i].resp =
Damien Millera8e06ce2003-11-21 23:48:55 +1100926 read_passphrase(PAM_MSG_MEMBER(msg, i, msg),
Damien Miller4f9f42a2003-05-10 19:28:02 +1000927 RP_ALLOW_STDIN);
Damien Miller5c3a5582003-09-23 22:12:38 +1000928 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000929 break;
930 case PAM_PROMPT_ECHO_ON:
Darren Tucker0947ddf2003-11-13 11:21:31 +1100931 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000932 fgets(input, sizeof input, stdin);
Damien Millera6fb77f2004-07-19 09:39:11 +1000933 if ((reply[i].resp = strdup(input)) == NULL)
934 goto fail;
Damien Miller5c3a5582003-09-23 22:12:38 +1000935 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000936 break;
937 case PAM_ERROR_MSG:
938 case PAM_TEXT_INFO:
Darren Tucker0947ddf2003-11-13 11:21:31 +1100939 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
Damien Miller5c3a5582003-09-23 22:12:38 +1000940 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000941 break;
942 default:
943 goto fail;
944 }
945 }
Damien Miller5c3a5582003-09-23 22:12:38 +1000946 *resp = reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000947 return (PAM_SUCCESS);
Damien Miller5c3a5582003-09-23 22:12:38 +1000948
Damien Miller4f9f42a2003-05-10 19:28:02 +1000949 fail:
Damien Miller5c3a5582003-09-23 22:12:38 +1000950 for(i = 0; i < n; i++) {
951 if (reply[i].resp != NULL)
952 xfree(reply[i].resp);
953 }
954 xfree(reply);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000955 return (PAM_CONV_ERR);
956}
957
Darren Tucker94befab2004-06-03 14:53:12 +1000958static struct pam_conv tty_conv = { sshpam_tty_conv, NULL };
Darren Tucker18df00c2003-11-18 12:42:07 +1100959
Damien Miller4f9f42a2003-05-10 19:28:02 +1000960/*
961 * XXX this should be done in the authentication phase, but ssh1 doesn't
962 * support that
963 */
964void
965do_pam_chauthtok(void)
966{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000967 if (use_privsep)
Damien Miller1f499fd2003-08-25 13:08:49 +1000968 fatal("Password expired (unable to change with privsep)");
Damien Miller4f9f42a2003-05-10 19:28:02 +1000969 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
Darren Tucker18df00c2003-11-18 12:42:07 +1100970 (const void *)&tty_conv);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000971 if (sshpam_err != PAM_SUCCESS)
972 fatal("PAM: failed to set PAM_CONV: %s",
973 pam_strerror(sshpam_handle, sshpam_err));
974 debug("PAM: changing password");
975 sshpam_err = pam_chauthtok(sshpam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
976 if (sshpam_err != PAM_SUCCESS)
977 fatal("PAM: pam_chauthtok(): %s",
978 pam_strerror(sshpam_handle, sshpam_err));
979}
980
Darren Tucker18df00c2003-11-18 12:42:07 +1100981void
982do_pam_session(void)
983{
Darren Tucker1921ed92004-02-10 13:23:28 +1100984 debug3("PAM: opening session");
Damien Millera8e06ce2003-11-21 23:48:55 +1100985 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
Darren Tucker5cf8ef72004-02-17 23:20:07 +1100986 (const void *)&store_conv);
Darren Tucker18df00c2003-11-18 12:42:07 +1100987 if (sshpam_err != PAM_SUCCESS)
988 fatal("PAM: failed to set PAM_CONV: %s",
989 pam_strerror(sshpam_handle, sshpam_err));
990 sshpam_err = pam_open_session(sshpam_handle, 0);
Darren Tucker69687f42004-09-11 22:17:26 +1000991 if (sshpam_err == PAM_SUCCESS)
992 sshpam_session_open = 1;
993 else {
994 sshpam_session_open = 0;
995 disable_forwarding();
996 error("PAM: pam_open_session(): %s",
Darren Tucker18df00c2003-11-18 12:42:07 +1100997 pam_strerror(sshpam_handle, sshpam_err));
Darren Tucker69687f42004-09-11 22:17:26 +1000998 }
999
1000}
1001
1002int
1003is_pam_session_open(void)
1004{
1005 return sshpam_session_open;
Darren Tucker18df00c2003-11-18 12:42:07 +11001006}
1007
Damien Millera8e06ce2003-11-21 23:48:55 +11001008/*
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001009 * Set a PAM environment string. We need to do this so that the session
1010 * modules can handle things like Kerberos/GSI credentials that appear
1011 * during the ssh authentication process.
1012 */
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001013int
Damien Millera8e06ce2003-11-21 23:48:55 +11001014do_pam_putenv(char *name, char *value)
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001015{
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001016 int ret = 1;
Damien Miller787b2ec2003-11-21 23:56:47 +11001017#ifdef HAVE_PAM_PUTENV
Damien Millerf2728092003-09-17 07:24:25 +10001018 char *compound;
1019 size_t len;
1020
1021 len = strlen(name) + strlen(value) + 2;
1022 compound = xmalloc(len);
1023
1024 snprintf(compound, len, "%s=%s", name, value);
1025 ret = pam_putenv(sshpam_handle, compound);
1026 xfree(compound);
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001027#endif
Damien Millerf2728092003-09-17 07:24:25 +10001028
Darren Tucker49aaf4a2003-08-26 11:58:16 +10001029 return (ret);
1030}
1031
Damien Miller4f9f42a2003-05-10 19:28:02 +10001032char **
Damien Millerc756e9b2003-11-17 21:41:42 +11001033fetch_pam_child_environment(void)
1034{
1035 return sshpam_env;
1036}
1037
1038char **
Damien Miller4f9f42a2003-05-10 19:28:02 +10001039fetch_pam_environment(void)
1040{
Damien Miller4f9f42a2003-05-10 19:28:02 +10001041 return (pam_getenvlist(sshpam_handle));
Damien Miller4f9f42a2003-05-10 19:28:02 +10001042}
1043
1044void
1045free_pam_environment(char **env)
1046{
1047 char **envp;
1048
Damien Millere27c6cc2003-05-16 18:21:01 +10001049 if (env == NULL)
1050 return;
1051
Damien Miller4f9f42a2003-05-10 19:28:02 +10001052 for (envp = env; *envp; envp++)
1053 xfree(*envp);
1054 xfree(env);
Damien Millere72b7af1999-12-30 15:08:44 +11001055}
1056
Darren Tucker450a1582004-05-30 20:43:59 +10001057/*
1058 * "Blind" conversation function for password authentication. Assumes that
1059 * echo-off prompts are for the password and stores messages for later
1060 * display.
1061 */
1062static int
Darren Tuckerf08bdb52005-05-26 19:59:48 +10001063sshpam_passwd_conv(int n, sshpam_const struct pam_message **msg,
Darren Tucker450a1582004-05-30 20:43:59 +10001064 struct pam_response **resp, void *data)
1065{
1066 struct pam_response *reply;
1067 int i;
1068 size_t len;
1069
1070 debug3("PAM: %s called with %d messages", __func__, n);
1071
1072 *resp = NULL;
1073
1074 if (n <= 0 || n > PAM_MAX_NUM_MSG)
1075 return (PAM_CONV_ERR);
1076
1077 if ((reply = malloc(n * sizeof(*reply))) == NULL)
1078 return (PAM_CONV_ERR);
1079 memset(reply, 0, n * sizeof(*reply));
1080
1081 for (i = 0; i < n; ++i) {
1082 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
1083 case PAM_PROMPT_ECHO_OFF:
1084 if (sshpam_password == NULL)
1085 goto fail;
Damien Millera6fb77f2004-07-19 09:39:11 +10001086 if ((reply[i].resp = strdup(sshpam_password)) == NULL)
1087 goto fail;
Darren Tucker450a1582004-05-30 20:43:59 +10001088 reply[i].resp_retcode = PAM_SUCCESS;
1089 break;
1090 case PAM_ERROR_MSG:
1091 case PAM_TEXT_INFO:
1092 len = strlen(PAM_MSG_MEMBER(msg, i, msg));
1093 if (len > 0) {
1094 buffer_append(&loginmsg,
1095 PAM_MSG_MEMBER(msg, i, msg), len);
1096 buffer_append(&loginmsg, "\n", 1);
1097 }
Damien Millera6fb77f2004-07-19 09:39:11 +10001098 if ((reply[i].resp = strdup("")) == NULL)
1099 goto fail;
Darren Tucker450a1582004-05-30 20:43:59 +10001100 reply[i].resp_retcode = PAM_SUCCESS;
1101 break;
1102 default:
1103 goto fail;
1104 }
1105 }
1106 *resp = reply;
1107 return (PAM_SUCCESS);
1108
1109 fail:
1110 for(i = 0; i < n; i++) {
1111 if (reply[i].resp != NULL)
1112 xfree(reply[i].resp);
1113 }
1114 xfree(reply);
1115 return (PAM_CONV_ERR);
1116}
1117
1118static struct pam_conv passwd_conv = { sshpam_passwd_conv, NULL };
1119
1120/*
1121 * Attempt password authentication via PAM
1122 */
1123int
1124sshpam_auth_passwd(Authctxt *authctxt, const char *password)
1125{
1126 int flags = (options.permit_empty_passwd == 0 ?
1127 PAM_DISALLOW_NULL_AUTHTOK : 0);
1128
1129 if (!options.use_pam || sshpam_handle == NULL)
1130 fatal("PAM: %s called when PAM disabled or failed to "
1131 "initialise.", __func__);
1132
1133 sshpam_password = password;
1134 sshpam_authctxt = authctxt;
1135
Darren Tuckere061b152004-05-30 22:04:56 +10001136 /*
1137 * If the user logging in is invalid, or is root but is not permitted
1138 * by PermitRootLogin, use an invalid password to prevent leaking
1139 * information via timing (eg if the PAM config has a delay on fail).
1140 */
Darren Tuckerd5bfa8f2005-01-20 13:29:51 +11001141 if (!authctxt->valid || (authctxt->pw->pw_uid == 0 &&
1142 options.permit_root_login != PERMIT_YES))
Darren Tuckere061b152004-05-30 22:04:56 +10001143 sshpam_password = badpw;
1144
Darren Tucker450a1582004-05-30 20:43:59 +10001145 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
1146 (const void *)&passwd_conv);
1147 if (sshpam_err != PAM_SUCCESS)
1148 fatal("PAM: %s: failed to set PAM_CONV: %s", __func__,
1149 pam_strerror(sshpam_handle, sshpam_err));
1150
1151 sshpam_err = pam_authenticate(sshpam_handle, flags);
1152 sshpam_password = NULL;
Darren Tuckerd5bfa8f2005-01-20 13:29:51 +11001153 if (sshpam_err == PAM_SUCCESS && authctxt->valid) {
Darren Tucker450a1582004-05-30 20:43:59 +10001154 debug("PAM: password authentication accepted for %.100s",
1155 authctxt->user);
1156 return 1;
1157 } else {
1158 debug("PAM: password authentication failed for %.100s: %s",
1159 authctxt->valid ? authctxt->user : "an illegal user",
1160 pam_strerror(sshpam_handle, sshpam_err));
1161 return 0;
1162 }
1163}
Damien Millere72b7af1999-12-30 15:08:44 +11001164#endif /* USE_PAM */