blob: b6fc49ee85bb4643205e7d8eb055c02c02ce1b6b [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 */
31
Damien Miller25d93422003-05-18 20:45:47 +100032/* 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 +110033#include "includes.h"
Darren Tuckere061b152004-05-30 22:04:56 +100034RCSID("$Id: auth-pam.c,v 1.104 2004/05/30 12:04:56 dtucker Exp $");
Damien Millere72b7af1999-12-30 15:08:44 +110035
36#ifdef USE_PAM
Damien Miller0f47c532004-01-02 18:01:30 +110037#if defined(HAVE_SECURITY_PAM_APPL_H)
Damien Miller4f9f42a2003-05-10 19:28:02 +100038#include <security/pam_appl.h>
Damien Miller0f47c532004-01-02 18:01:30 +110039#elif defined (HAVE_PAM_PAM_APPL_H)
40#include <pam/pam_appl.h>
41#endif
Damien Miller4f9f42a2003-05-10 19:28:02 +100042
Kevin Stevese683e762002-04-04 19:02:28 +000043#include "auth.h"
Damien Miller63dc3e92001-02-07 12:58:33 +110044#include "auth-pam.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100045#include "buffer.h"
46#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include "canohost.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100048#include "log.h"
49#include "monitor_wrap.h"
50#include "msg.h"
51#include "packet.h"
Darren Tuckerb6db1722004-05-13 17:29:35 +100052#include "misc.h"
Damien Miller4f9f42a2003-05-10 19:28:02 +100053#include "servconf.h"
54#include "ssh2.h"
55#include "xmalloc.h"
Damien Miller1f499fd2003-08-25 13:08:49 +100056#include "auth-options.h"
Damien Millere72b7af1999-12-30 15:08:44 +110057
Damien Miller4e448a32003-05-14 15:11:48 +100058extern ServerOptions options;
Darren Tucker18df00c2003-11-18 12:42:07 +110059extern Buffer loginmsg;
Darren Tucker07705c72003-12-18 15:34:31 +110060extern int compat20;
Darren Tucker2a9bf4b2004-04-18 11:00:26 +100061extern u_int utmp_len;
Damien Miller4e448a32003-05-14 15:11:48 +100062
Damien Miller4f9f42a2003-05-10 19:28:02 +100063#ifdef USE_POSIX_THREADS
64#include <pthread.h>
65/*
Damien Millera8e06ce2003-11-21 23:48:55 +110066 * Avoid namespace clash when *not* using pthreads for systems *with*
67 * pthreads, which unconditionally define pthread_t via sys/types.h
Damien Miller4f9f42a2003-05-10 19:28:02 +100068 * (e.g. Linux)
69 */
Damien Millera8e06ce2003-11-21 23:48:55 +110070typedef pthread_t sp_pthread_t;
Damien Miller4f9f42a2003-05-10 19:28:02 +100071#else
Darren Tucker1b27c8f2004-01-13 22:35:58 +110072typedef pid_t sp_pthread_t;
73#endif
74
75struct pam_ctxt {
76 sp_pthread_t pam_thread;
77 int pam_psock;
78 int pam_csock;
79 int pam_done;
80};
81
82static void sshpam_free_ctx(void *);
83static struct pam_ctxt *cleanup_ctxt;
84
85#ifndef USE_POSIX_THREADS
Damien Miller4f9f42a2003-05-10 19:28:02 +100086/*
87 * Simulate threads with processes.
88 */
Kevin Steves63007d42002-07-21 17:57:01 +000089
Darren Tucker749bc952004-01-14 22:14:04 +110090static int sshpam_thread_status = -1;
91static mysig_t sshpam_oldsig;
92
93static void
94sshpam_sigchld_handler(int sig)
95{
Darren Tuckerb53355e2004-05-24 11:55:36 +100096 signal(SIGCHLD, SIG_DFL);
Darren Tucker7ae09622004-01-14 23:07:56 +110097 if (cleanup_ctxt == NULL)
98 return; /* handler called after PAM cleanup, shouldn't happen */
Darren Tuckerb53355e2004-05-24 11:55:36 +100099 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, WNOHANG)
100 == -1) {
101 /* PAM thread has not exitted, privsep slave must have */
102 kill(cleanup_ctxt->pam_thread, SIGTERM);
103 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, 0)
104 == -1)
105 return; /* could not wait */
106 }
Darren Tucker749bc952004-01-14 22:14:04 +1100107 if (WIFSIGNALED(sshpam_thread_status) &&
108 WTERMSIG(sshpam_thread_status) == SIGTERM)
109 return; /* terminated by pthread_cancel */
110 if (!WIFEXITED(sshpam_thread_status))
111 fatal("PAM: authentication thread exited unexpectedly");
112 if (WEXITSTATUS(sshpam_thread_status) != 0)
113 fatal("PAM: authentication thread exited uncleanly");
114}
115
Damien Miller4f9f42a2003-05-10 19:28:02 +1000116static void
117pthread_exit(void *value __unused)
118{
119 _exit(0);
120}
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000121
Damien Miller4f9f42a2003-05-10 19:28:02 +1000122static int
123pthread_create(sp_pthread_t *thread, const void *attr __unused,
124 void *(*thread_start)(void *), void *arg)
125{
126 pid_t pid;
Damien Millere72b7af1999-12-30 15:08:44 +1100127
Darren Tuckerb9b60212004-03-04 20:03:54 +1100128 sshpam_thread_status = -1;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000129 switch ((pid = fork())) {
130 case -1:
131 error("fork(): %s", strerror(errno));
132 return (-1);
133 case 0:
134 thread_start(arg);
135 _exit(1);
136 default:
137 *thread = pid;
Darren Tucker749bc952004-01-14 22:14:04 +1100138 sshpam_oldsig = signal(SIGCHLD, sshpam_sigchld_handler);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000139 return (0);
140 }
141}
Damien Millere72b7af1999-12-30 15:08:44 +1100142
Damien Miller4f9f42a2003-05-10 19:28:02 +1000143static int
144pthread_cancel(sp_pthread_t thread)
145{
Darren Tucker7ae09622004-01-14 23:07:56 +1100146 signal(SIGCHLD, sshpam_oldsig);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000147 return (kill(thread, SIGTERM));
148}
149
150static int
151pthread_join(sp_pthread_t thread, void **value __unused)
152{
153 int status;
154
Darren Tucker749bc952004-01-14 22:14:04 +1100155 if (sshpam_thread_status != -1)
156 return (sshpam_thread_status);
157 signal(SIGCHLD, sshpam_oldsig);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000158 waitpid(thread, &status, 0);
159 return (status);
160}
161#endif
162
163
Damien Miller5c3a5582003-09-23 22:12:38 +1000164static pam_handle_t *sshpam_handle = NULL;
165static int sshpam_err = 0;
166static int sshpam_authenticated = 0;
Damien Miller5c3a5582003-09-23 22:12:38 +1000167static int sshpam_session_open = 0;
168static int sshpam_cred_established = 0;
Darren Tucker07705c72003-12-18 15:34:31 +1100169static int sshpam_account_status = -1;
Damien Millerc756e9b2003-11-17 21:41:42 +1100170static char **sshpam_env = NULL;
Darren Tucker17addf02004-03-30 20:57:57 +1000171static Authctxt *sshpam_authctxt = NULL;
Darren Tucker450a1582004-05-30 20:43:59 +1000172static const char *sshpam_password = NULL;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000173
Damien Millerc756e9b2003-11-17 21:41:42 +1100174/* Some PAM implementations don't implement this */
175#ifndef HAVE_PAM_GETENVLIST
176static char **
177pam_getenvlist(pam_handle_t *pamh)
178{
179 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100180 * XXX - If necessary, we can still support envrionment passing
Damien Millerc756e9b2003-11-17 21:41:42 +1100181 * for platforms without pam_getenvlist by searching for known
182 * env vars (e.g. KRB5CCNAME) from the PAM environment.
183 */
184 return NULL;
185}
186#endif
187
Darren Tucker07705c72003-12-18 15:34:31 +1100188void
189pam_password_change_required(int reqd)
190{
Darren Tuckera8df9242004-01-15 00:15:07 +1100191 debug3("%s %d", __func__, reqd);
Darren Tucker17addf02004-03-30 20:57:57 +1000192 if (sshpam_authctxt == NULL)
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100193 fatal("%s: PAM authctxt not initialized", __func__);
Darren Tucker17addf02004-03-30 20:57:57 +1000194 sshpam_authctxt->force_pwchange = reqd;
Darren Tucker07705c72003-12-18 15:34:31 +1100195 if (reqd) {
196 no_port_forwarding_flag |= 2;
197 no_agent_forwarding_flag |= 2;
198 no_x11_forwarding_flag |= 2;
199 } else {
200 no_port_forwarding_flag &= ~2;
201 no_agent_forwarding_flag &= ~2;
202 no_x11_forwarding_flag &= ~2;
Darren Tucker07705c72003-12-18 15:34:31 +1100203 }
204}
Darren Tucker1921ed92004-02-10 13:23:28 +1100205
Damien Millerc756e9b2003-11-17 21:41:42 +1100206/* Import regular and PAM environment from subprocess */
207static void
208import_environments(Buffer *b)
209{
210 char *env;
211 u_int i, num_env;
212 int err;
213
Darren Tuckera8df9242004-01-15 00:15:07 +1100214 debug3("PAM: %s entering", __func__);
215
Darren Tucker4b385d42004-03-04 19:54:10 +1100216#ifndef USE_POSIX_THREADS
Darren Tucker07705c72003-12-18 15:34:31 +1100217 /* Import variables set by do_pam_account */
218 sshpam_account_status = buffer_get_int(b);
219 pam_password_change_required(buffer_get_int(b));
220
Damien Millerc756e9b2003-11-17 21:41:42 +1100221 /* Import environment from subprocess */
222 num_env = buffer_get_int(b);
223 sshpam_env = xmalloc((num_env + 1) * sizeof(*sshpam_env));
224 debug3("PAM: num env strings %d", num_env);
225 for(i = 0; i < num_env; i++)
226 sshpam_env[i] = buffer_get_string(b, NULL);
227
228 sshpam_env[num_env] = NULL;
229
230 /* Import PAM environment from subprocess */
231 num_env = buffer_get_int(b);
232 debug("PAM: num PAM env strings %d", num_env);
233 for(i = 0; i < num_env; i++) {
234 env = buffer_get_string(b, NULL);
235
Darren Tucker8a1624c2003-11-18 12:45:35 +1100236#ifdef HAVE_PAM_PUTENV
Damien Millerc756e9b2003-11-17 21:41:42 +1100237 /* Errors are not fatal here */
238 if ((err = pam_putenv(sshpam_handle, env)) != PAM_SUCCESS) {
239 error("PAM: pam_putenv: %s",
240 pam_strerror(sshpam_handle, sshpam_err));
241 }
Darren Tucker8a1624c2003-11-18 12:45:35 +1100242#endif
Damien Millerc756e9b2003-11-17 21:41:42 +1100243 }
Darren Tucker4b385d42004-03-04 19:54:10 +1100244#endif
Damien Millerc756e9b2003-11-17 21:41:42 +1100245}
246
Damien Miller9d5705a2000-09-16 16:09:27 +1100247/*
Damien Miller4f9f42a2003-05-10 19:28:02 +1000248 * Conversation function for authentication thread.
Damien Miller9d5705a2000-09-16 16:09:27 +1100249 */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000250static int
Damien Miller1f499fd2003-08-25 13:08:49 +1000251sshpam_thread_conv(int n, const struct pam_message **msg,
252 struct pam_response **resp, void *data)
Damien Millere72b7af1999-12-30 15:08:44 +1100253{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000254 Buffer buffer;
255 struct pam_ctxt *ctxt;
Damien Miller5c3a5582003-09-23 22:12:38 +1000256 struct pam_response *reply;
Kevin Steves38b050a2002-07-23 00:44:07 +0000257 int i;
258
Darren Tuckerba53b832004-02-17 20:46:59 +1100259 debug3("PAM: %s entering, %d messages", __func__, n);
Damien Miller5c3a5582003-09-23 22:12:38 +1000260 *resp = NULL;
261
Damien Miller4f9f42a2003-05-10 19:28:02 +1000262 ctxt = data;
263 if (n <= 0 || n > PAM_MAX_NUM_MSG)
264 return (PAM_CONV_ERR);
Damien Miller5c3a5582003-09-23 22:12:38 +1000265
266 if ((reply = malloc(n * sizeof(*reply))) == NULL)
267 return (PAM_CONV_ERR);
268 memset(reply, 0, n * sizeof(*reply));
269
Damien Miller4f9f42a2003-05-10 19:28:02 +1000270 buffer_init(&buffer);
271 for (i = 0; i < n; ++i) {
Damien Miller4f9f42a2003-05-10 19:28:02 +1000272 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
273 case PAM_PROMPT_ECHO_OFF:
Damien Millera8e06ce2003-11-21 23:48:55 +1100274 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000275 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100276 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100277 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
278 goto fail;
Damien Millera8e06ce2003-11-21 23:48:55 +1100279 if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
Damien Miller9bdba702003-11-17 21:27:55 +1100280 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000281 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
282 goto fail;
Damien Miller5c3a5582003-09-23 22:12:38 +1000283 reply[i].resp = buffer_get_string(&buffer, NULL);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000284 break;
285 case PAM_PROMPT_ECHO_ON:
Damien Millera8e06ce2003-11-21 23:48:55 +1100286 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000287 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100288 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100289 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
290 goto fail;
291 if (ssh_msg_recv(ctxt->pam_csock, &buffer) == -1)
292 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000293 if (buffer_get_char(&buffer) != PAM_AUTHTOK)
294 goto fail;
Damien Miller5c3a5582003-09-23 22:12:38 +1000295 reply[i].resp = buffer_get_string(&buffer, NULL);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000296 break;
297 case PAM_ERROR_MSG:
Damien Millera8e06ce2003-11-21 23:48:55 +1100298 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000299 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100300 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100301 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
302 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000303 break;
304 case PAM_TEXT_INFO:
Damien Millera8e06ce2003-11-21 23:48:55 +1100305 buffer_put_cstring(&buffer,
Damien Miller5c3a5582003-09-23 22:12:38 +1000306 PAM_MSG_MEMBER(msg, i, msg));
Damien Millera8e06ce2003-11-21 23:48:55 +1100307 if (ssh_msg_send(ctxt->pam_csock,
Damien Miller9bdba702003-11-17 21:27:55 +1100308 PAM_MSG_MEMBER(msg, i, msg_style), &buffer) == -1)
309 goto fail;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000310 break;
311 default:
312 goto fail;
313 }
314 buffer_clear(&buffer);
Kevin Steves38b050a2002-07-23 00:44:07 +0000315 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000316 buffer_free(&buffer);
Damien Miller5c3a5582003-09-23 22:12:38 +1000317 *resp = reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000318 return (PAM_SUCCESS);
Damien Miller5c3a5582003-09-23 22:12:38 +1000319
Damien Miller4f9f42a2003-05-10 19:28:02 +1000320 fail:
Damien Miller5c3a5582003-09-23 22:12:38 +1000321 for(i = 0; i < n; i++) {
322 if (reply[i].resp != NULL)
323 xfree(reply[i].resp);
324 }
325 xfree(reply);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000326 buffer_free(&buffer);
327 return (PAM_CONV_ERR);
Kevin Steves38b050a2002-07-23 00:44:07 +0000328}
329
Damien Miller4f9f42a2003-05-10 19:28:02 +1000330/*
331 * Authentication thread.
332 */
333static void *
334sshpam_thread(void *ctxtp)
Damien Millere72b7af1999-12-30 15:08:44 +1100335{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000336 struct pam_ctxt *ctxt = ctxtp;
337 Buffer buffer;
Damien Millerf4b6f102003-09-02 23:12:06 +1000338 struct pam_conv sshpam_conv;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000339#ifndef USE_POSIX_THREADS
Damien Millerc756e9b2003-11-17 21:41:42 +1100340 extern char **environ;
341 char **env_from_pam;
342 u_int i;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000343 const char *pam_user;
344
345 pam_get_item(sshpam_handle, PAM_USER, (const void **)&pam_user);
346 setproctitle("%s [pam]", pam_user);
Damien Millerc756e9b2003-11-17 21:41:42 +1100347 environ[0] = NULL;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000348#endif
349
Damien Millerf4b6f102003-09-02 23:12:06 +1000350 sshpam_conv.conv = sshpam_thread_conv;
351 sshpam_conv.appdata_ptr = ctxt;
352
Darren Tucker17addf02004-03-30 20:57:57 +1000353 if (sshpam_authctxt == NULL)
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100354 fatal("%s: PAM authctxt not initialized", __func__);
355
Damien Miller4f9f42a2003-05-10 19:28:02 +1000356 buffer_init(&buffer);
357 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
358 (const void *)&sshpam_conv);
359 if (sshpam_err != PAM_SUCCESS)
360 goto auth_fail;
361 sshpam_err = pam_authenticate(sshpam_handle, 0);
362 if (sshpam_err != PAM_SUCCESS)
363 goto auth_fail;
Darren Tucker07705c72003-12-18 15:34:31 +1100364
Darren Tuckerc376c862003-12-18 16:08:59 +1100365 if (compat20) {
Darren Tucker07705c72003-12-18 15:34:31 +1100366 if (!do_pam_account())
367 goto auth_fail;
Darren Tucker17addf02004-03-30 20:57:57 +1000368 if (sshpam_authctxt->force_pwchange) {
Darren Tucker07705c72003-12-18 15:34:31 +1100369 sshpam_err = pam_chauthtok(sshpam_handle,
370 PAM_CHANGE_EXPIRED_AUTHTOK);
371 if (sshpam_err != PAM_SUCCESS)
372 goto auth_fail;
373 pam_password_change_required(0);
374 }
Darren Tuckerc376c862003-12-18 16:08:59 +1100375 }
Darren Tucker07705c72003-12-18 15:34:31 +1100376
Damien Miller4f9f42a2003-05-10 19:28:02 +1000377 buffer_put_cstring(&buffer, "OK");
Damien Millerc756e9b2003-11-17 21:41:42 +1100378
379#ifndef USE_POSIX_THREADS
Darren Tucker07705c72003-12-18 15:34:31 +1100380 /* Export variables set by do_pam_account */
381 buffer_put_int(&buffer, sshpam_account_status);
Darren Tucker17addf02004-03-30 20:57:57 +1000382 buffer_put_int(&buffer, sshpam_authctxt->force_pwchange);
Darren Tucker07705c72003-12-18 15:34:31 +1100383
Damien Millerc756e9b2003-11-17 21:41:42 +1100384 /* Export any environment strings set in child */
385 for(i = 0; environ[i] != NULL; i++)
386 ; /* Count */
387 buffer_put_int(&buffer, i);
388 for(i = 0; environ[i] != NULL; i++)
389 buffer_put_cstring(&buffer, environ[i]);
390
391 /* Export any environment strings set by PAM in child */
392 env_from_pam = pam_getenvlist(sshpam_handle);
393 for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
394 ; /* Count */
395 buffer_put_int(&buffer, i);
396 for(i = 0; env_from_pam != NULL && env_from_pam[i] != NULL; i++)
397 buffer_put_cstring(&buffer, env_from_pam[i]);
398#endif /* USE_POSIX_THREADS */
399
Damien Miller9bdba702003-11-17 21:27:55 +1100400 /* XXX - can't do much about an error here */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000401 ssh_msg_send(ctxt->pam_csock, sshpam_err, &buffer);
402 buffer_free(&buffer);
403 pthread_exit(NULL);
404
405 auth_fail:
406 buffer_put_cstring(&buffer,
407 pam_strerror(sshpam_handle, sshpam_err));
Damien Miller9bdba702003-11-17 21:27:55 +1100408 /* XXX - can't do much about an error here */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000409 ssh_msg_send(ctxt->pam_csock, PAM_AUTH_ERR, &buffer);
410 buffer_free(&buffer);
411 pthread_exit(NULL);
Damien Miller787b2ec2003-11-21 23:56:47 +1100412
Damien Miller4f9f42a2003-05-10 19:28:02 +1000413 return (NULL); /* Avoid warning for non-pthread case */
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000414}
415
Darren Tucker8846a072003-10-07 11:30:15 +1000416void
417sshpam_thread_cleanup(void)
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000418{
Darren Tucker8846a072003-10-07 11:30:15 +1000419 struct pam_ctxt *ctxt = cleanup_ctxt;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000420
Darren Tuckera8df9242004-01-15 00:15:07 +1100421 debug3("PAM: %s entering", __func__);
Darren Tucker8846a072003-10-07 11:30:15 +1000422 if (ctxt != NULL && ctxt->pam_thread != 0) {
423 pthread_cancel(ctxt->pam_thread);
424 pthread_join(ctxt->pam_thread, NULL);
425 close(ctxt->pam_psock);
426 close(ctxt->pam_csock);
427 memset(ctxt, 0, sizeof(*ctxt));
428 cleanup_ctxt = NULL;
429 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000430}
Kevin Stevesef4eea92001-02-05 12:42:17 +0000431
Damien Miller4f9f42a2003-05-10 19:28:02 +1000432static int
Damien Miller1f499fd2003-08-25 13:08:49 +1000433sshpam_null_conv(int n, const struct pam_message **msg,
434 struct pam_response **resp, void *data)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000435{
Darren Tuckerba53b832004-02-17 20:46:59 +1100436 debug3("PAM: %s entering, %d messages", __func__, n);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000437 return (PAM_CONV_ERR);
438}
Damien Miller63dc3e92001-02-07 12:58:33 +1100439
Damien Miller4f9f42a2003-05-10 19:28:02 +1000440static struct pam_conv null_conv = { sshpam_null_conv, NULL };
441
Darren Tucker8846a072003-10-07 11:30:15 +1000442void
443sshpam_cleanup(void)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000444{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000445 debug("PAM: cleanup");
Damien Miller5c3a5582003-09-23 22:12:38 +1000446 if (sshpam_handle == NULL)
447 return;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000448 pam_set_item(sshpam_handle, PAM_CONV, (const void *)&null_conv);
449 if (sshpam_cred_established) {
450 pam_setcred(sshpam_handle, PAM_DELETE_CRED);
451 sshpam_cred_established = 0;
452 }
453 if (sshpam_session_open) {
454 pam_close_session(sshpam_handle, PAM_SILENT);
455 sshpam_session_open = 0;
456 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100457 sshpam_authenticated = 0;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000458 pam_end(sshpam_handle, sshpam_err);
459 sshpam_handle = NULL;
460}
461
462static int
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100463sshpam_init(Authctxt *authctxt)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000464{
Darren Tucker455813b2003-09-13 22:12:11 +1000465 extern char *__progname;
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100466 const char *pam_rhost, *pam_user, *user = authctxt->user;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000467
468 if (sshpam_handle != NULL) {
469 /* We already have a PAM context; check if the user matches */
470 sshpam_err = pam_get_item(sshpam_handle,
471 PAM_USER, (const void **)&pam_user);
472 if (sshpam_err == PAM_SUCCESS && strcmp(user, pam_user) == 0)
473 return (0);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000474 pam_end(sshpam_handle, sshpam_err);
475 sshpam_handle = NULL;
476 }
477 debug("PAM: initializing for \"%s\"", user);
Darren Tuckerc58c2ee2003-09-13 22:02:05 +1000478 sshpam_err =
479 pam_start(SSHD_PAM_SERVICE, user, &null_conv, &sshpam_handle);
Darren Tucker17addf02004-03-30 20:57:57 +1000480 sshpam_authctxt = authctxt;
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100481
Damien Miller4f9f42a2003-05-10 19:28:02 +1000482 if (sshpam_err != PAM_SUCCESS) {
483 pam_end(sshpam_handle, sshpam_err);
484 sshpam_handle = NULL;
485 return (-1);
486 }
Damien Miller3a961dc2003-06-03 10:25:48 +1000487 pam_rhost = get_remote_name_or_ip(utmp_len, options.use_dns);
Damien Miller46337202003-06-02 11:04:39 +1000488 debug("PAM: setting PAM_RHOST to \"%s\"", pam_rhost);
Damien Miller25d93422003-05-18 20:45:47 +1000489 sshpam_err = pam_set_item(sshpam_handle, PAM_RHOST, pam_rhost);
490 if (sshpam_err != PAM_SUCCESS) {
Damien Miller1f499fd2003-08-25 13:08:49 +1000491 pam_end(sshpam_handle, sshpam_err);
Damien Miller25d93422003-05-18 20:45:47 +1000492 sshpam_handle = NULL;
493 return (-1);
494 }
495#ifdef PAM_TTY_KLUDGE
Damien Millera8e06ce2003-11-21 23:48:55 +1100496 /*
497 * Some silly PAM modules (e.g. pam_time) require a TTY to operate.
498 * sshd doesn't set the tty until too late in the auth process and
Damien Miller25d93422003-05-18 20:45:47 +1000499 * may not even set one (for tty-less connections)
Damien Millera8e06ce2003-11-21 23:48:55 +1100500 */
Damien Miller25d93422003-05-18 20:45:47 +1000501 debug("PAM: setting PAM_TTY to \"ssh\"");
502 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, "ssh");
503 if (sshpam_err != PAM_SUCCESS) {
504 pam_end(sshpam_handle, sshpam_err);
505 sshpam_handle = NULL;
506 return (-1);
507 }
508#endif
Damien Miller4f9f42a2003-05-10 19:28:02 +1000509 return (0);
510}
511
512static void *
513sshpam_init_ctx(Authctxt *authctxt)
514{
515 struct pam_ctxt *ctxt;
516 int socks[2];
517
Darren Tuckera8df9242004-01-15 00:15:07 +1100518 debug3("PAM: %s entering", __func__);
Damien Miller4e448a32003-05-14 15:11:48 +1000519 /* Refuse to start if we don't have PAM enabled */
520 if (!options.use_pam)
521 return NULL;
522
Damien Miller4f9f42a2003-05-10 19:28:02 +1000523 /* Initialize PAM */
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100524 if (sshpam_init(authctxt) == -1) {
Damien Miller4f9f42a2003-05-10 19:28:02 +1000525 error("PAM: initialization failed");
526 return (NULL);
527 }
528
529 ctxt = xmalloc(sizeof *ctxt);
Darren Tucker8846a072003-10-07 11:30:15 +1000530 memset(ctxt, 0, sizeof(*ctxt));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000531
532 /* Start the authentication thread */
533 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, socks) == -1) {
534 error("PAM: failed create sockets: %s", strerror(errno));
535 xfree(ctxt);
536 return (NULL);
537 }
538 ctxt->pam_psock = socks[0];
539 ctxt->pam_csock = socks[1];
540 if (pthread_create(&ctxt->pam_thread, NULL, sshpam_thread, ctxt) == -1) {
541 error("PAM: failed to start authentication thread: %s",
542 strerror(errno));
543 close(socks[0]);
544 close(socks[1]);
545 xfree(ctxt);
546 return (NULL);
547 }
Darren Tucker8846a072003-10-07 11:30:15 +1000548 cleanup_ctxt = ctxt;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000549 return (ctxt);
550}
551
552static int
553sshpam_query(void *ctx, char **name, char **info,
554 u_int *num, char ***prompts, u_int **echo_on)
555{
556 Buffer buffer;
557 struct pam_ctxt *ctxt = ctx;
558 size_t plen;
559 u_char type;
560 char *msg;
Damien Miller7f2d7952003-07-30 14:53:11 +1000561 size_t len;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000562
Darren Tuckera8df9242004-01-15 00:15:07 +1100563 debug3("PAM: %s entering", __func__);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000564 buffer_init(&buffer);
565 *name = xstrdup("");
566 *info = xstrdup("");
567 *prompts = xmalloc(sizeof(char *));
568 **prompts = NULL;
569 plen = 0;
570 *echo_on = xmalloc(sizeof(u_int));
571 while (ssh_msg_recv(ctxt->pam_psock, &buffer) == 0) {
572 type = buffer_get_char(&buffer);
573 msg = buffer_get_string(&buffer, NULL);
574 switch (type) {
575 case PAM_PROMPT_ECHO_ON:
576 case PAM_PROMPT_ECHO_OFF:
577 *num = 1;
Damien Miller7f2d7952003-07-30 14:53:11 +1000578 len = plen + strlen(msg) + 1;
579 **prompts = xrealloc(**prompts, len);
580 plen += snprintf(**prompts + plen, len, "%s", msg);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000581 **echo_on = (type == PAM_PROMPT_ECHO_ON);
582 xfree(msg);
583 return (0);
584 case PAM_ERROR_MSG:
585 case PAM_TEXT_INFO:
586 /* accumulate messages */
Darren Tuckerae52b7c2003-11-13 19:52:31 +1100587 len = plen + strlen(msg) + 2;
Damien Miller7f2d7952003-07-30 14:53:11 +1000588 **prompts = xrealloc(**prompts, len);
Darren Tuckerae52b7c2003-11-13 19:52:31 +1100589 plen += snprintf(**prompts + plen, len, "%s\n", msg);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000590 xfree(msg);
591 break;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000592 case PAM_SUCCESS:
593 case PAM_AUTH_ERR:
594 if (**prompts != NULL) {
595 /* drain any accumulated messages */
Darren Tucker18df00c2003-11-18 12:42:07 +1100596 debug("PAM: %s", **prompts);
597 buffer_append(&loginmsg, **prompts,
598 strlen(**prompts));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000599 xfree(**prompts);
600 **prompts = NULL;
601 }
602 if (type == PAM_SUCCESS) {
Damien Millerc756e9b2003-11-17 21:41:42 +1100603 import_environments(&buffer);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000604 *num = 0;
605 **echo_on = 0;
606 ctxt->pam_done = 1;
607 xfree(msg);
608 return (0);
609 }
Darren Tucker2a9bf4b2004-04-18 11:00:26 +1000610 error("PAM: %s for %s%.100s from %.100s", msg,
611 sshpam_authctxt->valid ? "" : "illegal user ",
612 sshpam_authctxt->user,
613 get_remote_name_or_ip(utmp_len, options.use_dns));
Darren Tucker439ce0d2003-10-09 14:20:15 +1000614 /* FALLTHROUGH */
Damien Miller4f9f42a2003-05-10 19:28:02 +1000615 default:
616 *num = 0;
617 **echo_on = 0;
618 xfree(msg);
619 ctxt->pam_done = -1;
620 return (-1);
621 }
622 }
623 return (-1);
624}
625
626/* XXX - see also comment in auth-chall.c:verify_response */
627static int
628sshpam_respond(void *ctx, u_int num, char **resp)
629{
630 Buffer buffer;
631 struct pam_ctxt *ctxt = ctx;
632
Darren Tuckera8df9242004-01-15 00:15:07 +1100633 debug2("PAM: %s entering, %d responses", __func__, num);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000634 switch (ctxt->pam_done) {
635 case 1:
636 sshpam_authenticated = 1;
637 return (0);
638 case 0:
639 break;
640 default:
641 return (-1);
642 }
643 if (num != 1) {
644 error("PAM: expected one response, got %u", num);
645 return (-1);
646 }
647 buffer_init(&buffer);
648 buffer_put_cstring(&buffer, *resp);
Damien Miller9bdba702003-11-17 21:27:55 +1100649 if (ssh_msg_send(ctxt->pam_psock, PAM_AUTHTOK, &buffer) == -1) {
650 buffer_free(&buffer);
651 return (-1);
652 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000653 buffer_free(&buffer);
654 return (1);
655}
656
657static void
658sshpam_free_ctx(void *ctxtp)
659{
660 struct pam_ctxt *ctxt = ctxtp;
661
Darren Tuckera8df9242004-01-15 00:15:07 +1100662 debug3("PAM: %s entering", __func__);
Darren Tucker8846a072003-10-07 11:30:15 +1000663 sshpam_thread_cleanup();
Damien Miller4f9f42a2003-05-10 19:28:02 +1000664 xfree(ctxt);
665 /*
666 * We don't call sshpam_cleanup() here because we may need the PAM
667 * handle at a later stage, e.g. when setting up a session. It's
668 * still on the cleanup list, so pam_end() *will* be called before
669 * the server process terminates.
670 */
671}
672
673KbdintDevice sshpam_device = {
674 "pam",
675 sshpam_init_ctx,
676 sshpam_query,
677 sshpam_respond,
678 sshpam_free_ctx
679};
680
681KbdintDevice mm_sshpam_device = {
682 "pam",
683 mm_sshpam_init_ctx,
684 mm_sshpam_query,
685 mm_sshpam_respond,
686 mm_sshpam_free_ctx
687};
688
689/*
690 * This replaces auth-pam.c
691 */
692void
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100693start_pam(Authctxt *authctxt)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000694{
Damien Miller9d507da2003-05-14 15:31:12 +1000695 if (!options.use_pam)
696 fatal("PAM: initialisation requested when UsePAM=no");
697
Darren Tuckerdbf7a742004-03-08 23:04:06 +1100698 if (sshpam_init(authctxt) == -1)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000699 fatal("PAM: initialisation failed");
700}
701
702void
703finish_pam(void)
704{
Darren Tucker8846a072003-10-07 11:30:15 +1000705 sshpam_cleanup();
Damien Miller4f9f42a2003-05-10 19:28:02 +1000706}
707
Damien Miller1f499fd2003-08-25 13:08:49 +1000708u_int
709do_pam_account(void)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000710{
Darren Tucker07705c72003-12-18 15:34:31 +1100711 if (sshpam_account_status != -1)
712 return (sshpam_account_status);
713
Damien Miller1f499fd2003-08-25 13:08:49 +1000714 sshpam_err = pam_acct_mgmt(sshpam_handle, 0);
Darren Tuckera8df9242004-01-15 00:15:07 +1100715 debug3("PAM: %s pam_acct_mgmt = %d", __func__, sshpam_err);
Darren Tucker07705c72003-12-18 15:34:31 +1100716
717 if (sshpam_err != PAM_SUCCESS && sshpam_err != PAM_NEW_AUTHTOK_REQD) {
718 sshpam_account_status = 0;
719 return (sshpam_account_status);
Damien Miller1f499fd2003-08-25 13:08:49 +1000720 }
721
Darren Tucker07705c72003-12-18 15:34:31 +1100722 if (sshpam_err == PAM_NEW_AUTHTOK_REQD)
723 pam_password_change_required(1);
724
725 sshpam_account_status = 1;
726 return (sshpam_account_status);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000727}
728
729void
Damien Miller341c6e62003-09-02 23:18:52 +1000730do_pam_set_tty(const char *tty)
731{
Darren Tuckerf38db7f2003-08-08 13:43:37 +1000732 if (tty != NULL) {
733 debug("PAM: setting PAM_TTY to \"%s\"", tty);
734 sshpam_err = pam_set_item(sshpam_handle, PAM_TTY, tty);
735 if (sshpam_err != PAM_SUCCESS)
736 fatal("PAM: failed to set PAM_TTY: %s",
737 pam_strerror(sshpam_handle, sshpam_err));
738 }
Damien Miller4f9f42a2003-05-10 19:28:02 +1000739}
740
741void
742do_pam_setcred(int init)
743{
744 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
745 (const void *)&null_conv);
746 if (sshpam_err != PAM_SUCCESS)
747 fatal("PAM: failed to set PAM_CONV: %s",
748 pam_strerror(sshpam_handle, sshpam_err));
749 if (init) {
750 debug("PAM: establishing credentials");
751 sshpam_err = pam_setcred(sshpam_handle, PAM_ESTABLISH_CRED);
752 } else {
753 debug("PAM: reinitializing credentials");
754 sshpam_err = pam_setcred(sshpam_handle, PAM_REINITIALIZE_CRED);
755 }
756 if (sshpam_err == PAM_SUCCESS) {
757 sshpam_cred_established = 1;
758 return;
759 }
760 if (sshpam_authenticated)
761 fatal("PAM: pam_setcred(): %s",
762 pam_strerror(sshpam_handle, sshpam_err));
763 else
764 debug("PAM: pam_setcred(): %s",
765 pam_strerror(sshpam_handle, sshpam_err));
766}
767
Damien Miller4f9f42a2003-05-10 19:28:02 +1000768static int
Darren Tucker18df00c2003-11-18 12:42:07 +1100769pam_tty_conv(int n, const struct pam_message **msg,
Damien Miller1f499fd2003-08-25 13:08:49 +1000770 struct pam_response **resp, void *data)
Damien Miller4f9f42a2003-05-10 19:28:02 +1000771{
772 char input[PAM_MAX_MSG_SIZE];
Damien Miller5c3a5582003-09-23 22:12:38 +1000773 struct pam_response *reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000774 int i;
775
Darren Tuckerba53b832004-02-17 20:46:59 +1100776 debug3("PAM: %s called with %d messages", __func__, n);
777
Damien Miller5c3a5582003-09-23 22:12:38 +1000778 *resp = NULL;
779
Darren Tucker18df00c2003-11-18 12:42:07 +1100780 if (n <= 0 || n > PAM_MAX_NUM_MSG || !isatty(STDIN_FILENO))
Damien Miller4f9f42a2003-05-10 19:28:02 +1000781 return (PAM_CONV_ERR);
Damien Miller5c3a5582003-09-23 22:12:38 +1000782
783 if ((reply = malloc(n * sizeof(*reply))) == NULL)
784 return (PAM_CONV_ERR);
785 memset(reply, 0, n * sizeof(*reply));
786
Damien Miller4f9f42a2003-05-10 19:28:02 +1000787 for (i = 0; i < n; ++i) {
788 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
789 case PAM_PROMPT_ECHO_OFF:
Damien Miller5c3a5582003-09-23 22:12:38 +1000790 reply[i].resp =
Damien Millera8e06ce2003-11-21 23:48:55 +1100791 read_passphrase(PAM_MSG_MEMBER(msg, i, msg),
Damien Miller4f9f42a2003-05-10 19:28:02 +1000792 RP_ALLOW_STDIN);
Damien Miller5c3a5582003-09-23 22:12:38 +1000793 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000794 break;
795 case PAM_PROMPT_ECHO_ON:
Darren Tucker0947ddf2003-11-13 11:21:31 +1100796 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000797 fgets(input, sizeof input, stdin);
Damien Miller5c3a5582003-09-23 22:12:38 +1000798 reply[i].resp = xstrdup(input);
799 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000800 break;
801 case PAM_ERROR_MSG:
802 case PAM_TEXT_INFO:
Darren Tucker0947ddf2003-11-13 11:21:31 +1100803 fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
Damien Miller5c3a5582003-09-23 22:12:38 +1000804 reply[i].resp_retcode = PAM_SUCCESS;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000805 break;
806 default:
807 goto fail;
808 }
809 }
Damien Miller5c3a5582003-09-23 22:12:38 +1000810 *resp = reply;
Damien Miller4f9f42a2003-05-10 19:28:02 +1000811 return (PAM_SUCCESS);
Damien Miller5c3a5582003-09-23 22:12:38 +1000812
Damien Miller4f9f42a2003-05-10 19:28:02 +1000813 fail:
Damien Miller5c3a5582003-09-23 22:12:38 +1000814 for(i = 0; i < n; i++) {
815 if (reply[i].resp != NULL)
816 xfree(reply[i].resp);
817 }
818 xfree(reply);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000819 return (PAM_CONV_ERR);
820}
821
Darren Tucker18df00c2003-11-18 12:42:07 +1100822static struct pam_conv tty_conv = { pam_tty_conv, NULL };
823
Damien Miller4f9f42a2003-05-10 19:28:02 +1000824/*
825 * XXX this should be done in the authentication phase, but ssh1 doesn't
826 * support that
827 */
828void
829do_pam_chauthtok(void)
830{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000831 if (use_privsep)
Damien Miller1f499fd2003-08-25 13:08:49 +1000832 fatal("Password expired (unable to change with privsep)");
Damien Miller4f9f42a2003-05-10 19:28:02 +1000833 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
Darren Tucker18df00c2003-11-18 12:42:07 +1100834 (const void *)&tty_conv);
Damien Miller4f9f42a2003-05-10 19:28:02 +1000835 if (sshpam_err != PAM_SUCCESS)
836 fatal("PAM: failed to set PAM_CONV: %s",
837 pam_strerror(sshpam_handle, sshpam_err));
838 debug("PAM: changing password");
839 sshpam_err = pam_chauthtok(sshpam_handle, PAM_CHANGE_EXPIRED_AUTHTOK);
840 if (sshpam_err != PAM_SUCCESS)
841 fatal("PAM: pam_chauthtok(): %s",
842 pam_strerror(sshpam_handle, sshpam_err));
843}
844
Darren Tucker5cf8ef72004-02-17 23:20:07 +1100845static int
846pam_store_conv(int n, const struct pam_message **msg,
847 struct pam_response **resp, void *data)
848{
849 struct pam_response *reply;
850 int i;
851 size_t len;
852
853 debug3("PAM: %s called with %d messages", __func__, n);
854 *resp = NULL;
855
856 if (n <= 0 || n > PAM_MAX_NUM_MSG)
857 return (PAM_CONV_ERR);
858
859 if ((reply = malloc(n * sizeof(*reply))) == NULL)
860 return (PAM_CONV_ERR);
861 memset(reply, 0, n * sizeof(*reply));
862
863 for (i = 0; i < n; ++i) {
864 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
865 case PAM_ERROR_MSG:
866 case PAM_TEXT_INFO:
867 len = strlen(PAM_MSG_MEMBER(msg, i, msg));
868 buffer_append(&loginmsg, PAM_MSG_MEMBER(msg, i, msg), len);
869 buffer_append(&loginmsg, "\n", 1 );
870 reply[i].resp_retcode = PAM_SUCCESS;
871 break;
872 default:
873 goto fail;
874 }
875 }
876 *resp = reply;
877 return (PAM_SUCCESS);
878
879 fail:
880 for(i = 0; i < n; i++) {
881 if (reply[i].resp != NULL)
882 xfree(reply[i].resp);
883 }
884 xfree(reply);
885 return (PAM_CONV_ERR);
886}
887
888static struct pam_conv store_conv = { pam_store_conv, NULL };
889
Darren Tucker18df00c2003-11-18 12:42:07 +1100890void
891do_pam_session(void)
892{
Darren Tucker1921ed92004-02-10 13:23:28 +1100893 debug3("PAM: opening session");
Damien Millera8e06ce2003-11-21 23:48:55 +1100894 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
Darren Tucker5cf8ef72004-02-17 23:20:07 +1100895 (const void *)&store_conv);
Darren Tucker18df00c2003-11-18 12:42:07 +1100896 if (sshpam_err != PAM_SUCCESS)
897 fatal("PAM: failed to set PAM_CONV: %s",
898 pam_strerror(sshpam_handle, sshpam_err));
899 sshpam_err = pam_open_session(sshpam_handle, 0);
900 if (sshpam_err != PAM_SUCCESS)
901 fatal("PAM: pam_open_session(): %s",
902 pam_strerror(sshpam_handle, sshpam_err));
903 sshpam_session_open = 1;
904}
905
Damien Millera8e06ce2003-11-21 23:48:55 +1100906/*
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000907 * Set a PAM environment string. We need to do this so that the session
908 * modules can handle things like Kerberos/GSI credentials that appear
909 * during the ssh authentication process.
910 */
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000911int
Damien Millera8e06ce2003-11-21 23:48:55 +1100912do_pam_putenv(char *name, char *value)
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000913{
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000914 int ret = 1;
Damien Miller787b2ec2003-11-21 23:56:47 +1100915#ifdef HAVE_PAM_PUTENV
Damien Millerf2728092003-09-17 07:24:25 +1000916 char *compound;
917 size_t len;
918
919 len = strlen(name) + strlen(value) + 2;
920 compound = xmalloc(len);
921
922 snprintf(compound, len, "%s=%s", name, value);
923 ret = pam_putenv(sshpam_handle, compound);
924 xfree(compound);
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000925#endif
Damien Millerf2728092003-09-17 07:24:25 +1000926
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000927 return (ret);
928}
929
Damien Miller4f9f42a2003-05-10 19:28:02 +1000930char **
Damien Millerc756e9b2003-11-17 21:41:42 +1100931fetch_pam_child_environment(void)
932{
933 return sshpam_env;
934}
935
936char **
Damien Miller4f9f42a2003-05-10 19:28:02 +1000937fetch_pam_environment(void)
938{
Damien Miller4f9f42a2003-05-10 19:28:02 +1000939 return (pam_getenvlist(sshpam_handle));
Damien Miller4f9f42a2003-05-10 19:28:02 +1000940}
941
942void
943free_pam_environment(char **env)
944{
945 char **envp;
946
Damien Millere27c6cc2003-05-16 18:21:01 +1000947 if (env == NULL)
948 return;
949
Damien Miller4f9f42a2003-05-10 19:28:02 +1000950 for (envp = env; *envp; envp++)
951 xfree(*envp);
952 xfree(env);
Damien Millere72b7af1999-12-30 15:08:44 +1100953}
954
Darren Tucker450a1582004-05-30 20:43:59 +1000955/*
956 * "Blind" conversation function for password authentication. Assumes that
957 * echo-off prompts are for the password and stores messages for later
958 * display.
959 */
960static int
961sshpam_passwd_conv(int n, const struct pam_message **msg,
962 struct pam_response **resp, void *data)
963{
964 struct pam_response *reply;
965 int i;
966 size_t len;
967
968 debug3("PAM: %s called with %d messages", __func__, n);
969
970 *resp = NULL;
971
972 if (n <= 0 || n > PAM_MAX_NUM_MSG)
973 return (PAM_CONV_ERR);
974
975 if ((reply = malloc(n * sizeof(*reply))) == NULL)
976 return (PAM_CONV_ERR);
977 memset(reply, 0, n * sizeof(*reply));
978
979 for (i = 0; i < n; ++i) {
980 switch (PAM_MSG_MEMBER(msg, i, msg_style)) {
981 case PAM_PROMPT_ECHO_OFF:
982 if (sshpam_password == NULL)
983 goto fail;
984 reply[i].resp = xstrdup(sshpam_password);
985 reply[i].resp_retcode = PAM_SUCCESS;
986 break;
987 case PAM_ERROR_MSG:
988 case PAM_TEXT_INFO:
989 len = strlen(PAM_MSG_MEMBER(msg, i, msg));
990 if (len > 0) {
991 buffer_append(&loginmsg,
992 PAM_MSG_MEMBER(msg, i, msg), len);
993 buffer_append(&loginmsg, "\n", 1);
994 }
995 reply[i].resp = xstrdup("");
996 reply[i].resp_retcode = PAM_SUCCESS;
997 break;
998 default:
999 goto fail;
1000 }
1001 }
1002 *resp = reply;
1003 return (PAM_SUCCESS);
1004
1005 fail:
1006 for(i = 0; i < n; i++) {
1007 if (reply[i].resp != NULL)
1008 xfree(reply[i].resp);
1009 }
1010 xfree(reply);
1011 return (PAM_CONV_ERR);
1012}
1013
1014static struct pam_conv passwd_conv = { sshpam_passwd_conv, NULL };
1015
1016/*
1017 * Attempt password authentication via PAM
1018 */
1019int
1020sshpam_auth_passwd(Authctxt *authctxt, const char *password)
1021{
1022 int flags = (options.permit_empty_passwd == 0 ?
1023 PAM_DISALLOW_NULL_AUTHTOK : 0);
Darren Tuckere061b152004-05-30 22:04:56 +10001024 static char badpw[] = "\b\n\r\177INCORRECT";
Darren Tucker450a1582004-05-30 20:43:59 +10001025
1026 if (!options.use_pam || sshpam_handle == NULL)
1027 fatal("PAM: %s called when PAM disabled or failed to "
1028 "initialise.", __func__);
1029
1030 sshpam_password = password;
1031 sshpam_authctxt = authctxt;
1032
Darren Tuckere061b152004-05-30 22:04:56 +10001033 /*
1034 * If the user logging in is invalid, or is root but is not permitted
1035 * by PermitRootLogin, use an invalid password to prevent leaking
1036 * information via timing (eg if the PAM config has a delay on fail).
1037 */
1038 if (!authctxt->valid || (authctxt->pw->pw_uid == 0 &&
1039 options.permit_root_login != PERMIT_YES))
1040 sshpam_password = badpw;
1041
Darren Tucker450a1582004-05-30 20:43:59 +10001042 sshpam_err = pam_set_item(sshpam_handle, PAM_CONV,
1043 (const void *)&passwd_conv);
1044 if (sshpam_err != PAM_SUCCESS)
1045 fatal("PAM: %s: failed to set PAM_CONV: %s", __func__,
1046 pam_strerror(sshpam_handle, sshpam_err));
1047
1048 sshpam_err = pam_authenticate(sshpam_handle, flags);
1049 sshpam_password = NULL;
1050 if (sshpam_err == PAM_SUCCESS && authctxt->valid) {
1051 debug("PAM: password authentication accepted for %.100s",
1052 authctxt->user);
1053 return 1;
1054 } else {
1055 debug("PAM: password authentication failed for %.100s: %s",
1056 authctxt->valid ? authctxt->user : "an illegal user",
1057 pam_strerror(sshpam_handle, sshpam_err));
1058 return 0;
1059 }
1060}
Damien Millere72b7af1999-12-30 15:08:44 +11001061#endif /* USE_PAM */