blob: 3d550b4ddfa3f59454159a5e08c73bb65c50ecd7 [file] [log] [blame]
Damien Millere72b7af1999-12-30 15:08:44 +11001/*
Damien Millere69f18c2000-06-12 16:38:54 +10002 * Copyright (c) 2000 Damien Miller. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
Damien Millere69f18c2000-06-12 16:38:54 +100012 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millere72b7af1999-12-30 15:08:44 +110023 */
24
25#include "includes.h"
26
27#ifdef USE_PAM
28#include "ssh.h"
29#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "log.h"
Damien Millere72b7af1999-12-30 15:08:44 +110031#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000032#include "canohost.h"
33#include "readpass.h"
Damien Millere72b7af1999-12-30 15:08:44 +110034
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035RCSID("$Id: auth-pam.c,v 1.22 2001/01/22 05:34:40 mouring Exp $");
Damien Miller2f6a0ad2000-05-31 11:20:11 +100036
37#define NEW_AUTHTOK_MSG \
Damien Miller9d5705a2000-09-16 16:09:27 +110038 "Warning: Your password has expired, please change it now"
Damien Millere72b7af1999-12-30 15:08:44 +110039
40/* Callbacks */
41static int pamconv(int num_msg, const struct pam_message **msg,
42 struct pam_response **resp, void *appdata_ptr);
43void pam_cleanup_proc(void *context);
Damien Miller2f6a0ad2000-05-31 11:20:11 +100044void pam_msg_cat(const char *msg);
Damien Millere72b7af1999-12-30 15:08:44 +110045
46/* module-local variables */
47static struct pam_conv conv = {
48 pamconv,
49 NULL
50};
Damien Miller9d5705a2000-09-16 16:09:27 +110051static pam_handle_t *pamh = NULL;
Damien Millere72b7af1999-12-30 15:08:44 +110052static const char *pampasswd = NULL;
Damien Miller2f6a0ad2000-05-31 11:20:11 +100053static char *pam_msg = NULL;
Damien Millere72b7af1999-12-30 15:08:44 +110054
Damien Miller9d5705a2000-09-16 16:09:27 +110055/* states for pamconv() */
Damien Millerb8481582000-12-03 11:51:51 +110056enum { INITIAL_LOGIN, OTHER } pamstate = INITIAL_LOGIN;
Damien Miller9d5705a2000-09-16 16:09:27 +110057/* remember whether pam_acct_mgmt() returned PAM_NEWAUTHTOK_REQD */
58static int password_change_required = 0;
Damien Millerb8481582000-12-03 11:51:51 +110059/* remember whether the last pam_authenticate() succeeded or not */
60static int was_authenticated = 0;
61
62/* accessor which allows us to switch conversation structs according to
63 * the authentication method being used */
64void pam_set_conv(struct pam_conv *conv)
65{
66 pam_set_item(pamh, PAM_CONV, conv);
67}
68
69/* start an authentication run */
70int do_pam_authenticate(int flags)
71{
72 int retval = pam_authenticate(pamh, flags);
73 was_authenticated = (retval == PAM_SUCCESS);
74 return retval;
75}
Damien Miller9d5705a2000-09-16 16:09:27 +110076
77/*
78 * PAM conversation function.
79 * There are two states this can run in.
80 *
81 * INITIAL_LOGIN mode simply feeds the password from the client into
82 * PAM in response to PAM_PROMPT_ECHO_OFF, and collects output
83 * messages with pam_msg_cat(). This is used during initial
84 * authentication to bypass the normal PAM password prompt.
85 *
86 * OTHER mode handles PAM_PROMPT_ECHO_OFF with read_passphrase(prompt, 1)
87 * and outputs messages to stderr. This mode is used if pam_chauthtok()
88 * is called to update expired passwords.
89 */
Damien Millere72b7af1999-12-30 15:08:44 +110090static int pamconv(int num_msg, const struct pam_message **msg,
91 struct pam_response **resp, void *appdata_ptr)
92{
93 struct pam_response *reply;
94 int count;
Damien Miller9d5705a2000-09-16 16:09:27 +110095 char buf[1024];
Damien Millere72b7af1999-12-30 15:08:44 +110096
97 /* PAM will free this later */
98 reply = malloc(num_msg * sizeof(*reply));
99 if (reply == NULL)
100 return PAM_CONV_ERR;
101
Damien Miller9d5705a2000-09-16 16:09:27 +1100102 for (count = 0; count < num_msg; count++) {
Damien Miller82cf0ce2000-12-20 13:34:48 +1100103 switch(PAM_MSG_MEMBER(msg, count, msg_style)) {
Damien Miller9d5705a2000-09-16 16:09:27 +1100104 case PAM_PROMPT_ECHO_ON:
Damien Miller60819b42000-10-14 11:16:12 +1100105 if (pamstate == INITIAL_LOGIN) {
106 free(reply);
107 return PAM_CONV_ERR;
108 } else {
Damien Miller82cf0ce2000-12-20 13:34:48 +1100109 fputs(PAM_MSG_MEMBER(msg, count, msg), stderr);
Damien Miller60819b42000-10-14 11:16:12 +1100110 fgets(buf, sizeof(buf), stdin);
111 reply[count].resp = xstrdup(buf);
112 reply[count].resp_retcode = PAM_SUCCESS;
113 break;
114 }
Damien Miller9d5705a2000-09-16 16:09:27 +1100115 case PAM_PROMPT_ECHO_OFF:
116 if (pamstate == INITIAL_LOGIN) {
117 if (pampasswd == NULL) {
118 free(reply);
119 return PAM_CONV_ERR;
120 }
121 reply[count].resp = xstrdup(pampasswd);
Damien Miller60819b42000-10-14 11:16:12 +1100122 } else {
123 reply[count].resp =
Damien Miller82cf0ce2000-12-20 13:34:48 +1100124 xstrdup(read_passphrase(PAM_MSG_MEMBER(msg, count, msg), 1));
Damien Miller60819b42000-10-14 11:16:12 +1100125 }
Damien Millere72b7af1999-12-30 15:08:44 +1100126 reply[count].resp_retcode = PAM_SUCCESS;
Damien Miller9d5705a2000-09-16 16:09:27 +1100127 break;
128 case PAM_ERROR_MSG:
129 case PAM_TEXT_INFO:
130 if ((*msg)[count].msg != NULL) {
131 if (pamstate == INITIAL_LOGIN)
Damien Miller82cf0ce2000-12-20 13:34:48 +1100132 pam_msg_cat(PAM_MSG_MEMBER(msg, count, msg));
Damien Miller9d5705a2000-09-16 16:09:27 +1100133 else {
Damien Miller82cf0ce2000-12-20 13:34:48 +1100134 fputs(PAM_MSG_MEMBER(msg, count, msg), stderr);
Damien Miller9d5705a2000-09-16 16:09:27 +1100135 fputs("\n", stderr);
136 }
137 }
Damien Millere72b7af1999-12-30 15:08:44 +1100138 reply[count].resp = xstrdup("");
Damien Miller9d5705a2000-09-16 16:09:27 +1100139 reply[count].resp_retcode = PAM_SUCCESS;
Damien Millere72b7af1999-12-30 15:08:44 +1100140 break;
Damien Millere72b7af1999-12-30 15:08:44 +1100141 default:
142 free(reply);
143 return PAM_CONV_ERR;
144 }
145 }
146
147 *resp = reply;
148
149 return PAM_SUCCESS;
150}
151
152/* Called at exit to cleanly shutdown PAM */
153void pam_cleanup_proc(void *context)
154{
155 int pam_retval;
156
157 if (pamh != NULL)
158 {
Damien Miller9d5705a2000-09-16 16:09:27 +1100159 pam_retval = pam_close_session(pamh, 0);
Damien Millere72b7af1999-12-30 15:08:44 +1100160 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000161 log("Cannot close PAM session[%d]: %.200s",
162 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100163 }
164
Damien Miller9d5705a2000-09-16 16:09:27 +1100165 pam_retval = pam_setcred(pamh, PAM_DELETE_CRED);
Damien Millere72b7af1999-12-30 15:08:44 +1100166 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000167 debug("Cannot delete credentials[%d]: %.200s",
168 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100169 }
170
Damien Miller9d5705a2000-09-16 16:09:27 +1100171 pam_retval = pam_end(pamh, pam_retval);
Damien Millere72b7af1999-12-30 15:08:44 +1100172 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000173 log("Cannot release PAM authentication[%d]: %.200s",
174 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100175 }
176 }
177}
178
179/* Attempt password authentation using PAM */
180int auth_pam_password(struct passwd *pw, const char *password)
181{
182 extern ServerOptions options;
183 int pam_retval;
184
Damien Millerb8481582000-12-03 11:51:51 +1100185 pam_set_conv(&conv);
186
Damien Millere72b7af1999-12-30 15:08:44 +1100187 /* deny if no user. */
188 if (pw == NULL)
189 return 0;
190 if (pw->pw_uid == 0 && options.permit_root_login == 2)
191 return 0;
192 if (*password == '\0' && options.permit_empty_passwd == 0)
193 return 0;
194
195 pampasswd = password;
196
Damien Miller9d5705a2000-09-16 16:09:27 +1100197 pamstate = INITIAL_LOGIN;
Damien Millerb8481582000-12-03 11:51:51 +1100198 pam_retval = do_pam_authenticate(0);
Damien Millere72b7af1999-12-30 15:08:44 +1100199 if (pam_retval == PAM_SUCCESS) {
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000200 debug("PAM Password authentication accepted for user \"%.100s\"",
201 pw->pw_name);
Damien Millere72b7af1999-12-30 15:08:44 +1100202 return 1;
203 } else {
Kevin Stevescccca272000-10-07 11:16:55 +0000204 debug("PAM Password authentication for \"%.100s\" failed[%d]: %s",
205 pw->pw_name, pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100206 return 0;
207 }
208}
209
210/* Do account management using PAM */
211int do_pam_account(char *username, char *remote_user)
212{
213 int pam_retval;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000214
Damien Millere72b7af1999-12-30 15:08:44 +1100215 debug("PAM setting rhost to \"%.200s\"", get_canonical_hostname());
Damien Miller9d5705a2000-09-16 16:09:27 +1100216 pam_retval = pam_set_item(pamh, PAM_RHOST,
Damien Millere72b7af1999-12-30 15:08:44 +1100217 get_canonical_hostname());
218 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000219 fatal("PAM set rhost failed[%d]: %.200s",
220 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100221 }
222
223 if (remote_user != NULL) {
224 debug("PAM setting ruser to \"%.200s\"", remote_user);
Damien Miller9d5705a2000-09-16 16:09:27 +1100225 pam_retval = pam_set_item(pamh, PAM_RUSER, remote_user);
Damien Millere72b7af1999-12-30 15:08:44 +1100226 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000227 fatal("PAM set ruser failed[%d]: %.200s",
228 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100229 }
230 }
231
Damien Miller9d5705a2000-09-16 16:09:27 +1100232 pam_retval = pam_acct_mgmt(pamh, 0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000233 switch (pam_retval) {
234 case PAM_SUCCESS:
235 /* This is what we want */
236 break;
237 case PAM_NEW_AUTHTOK_REQD:
238 pam_msg_cat(NEW_AUTHTOK_MSG);
Damien Miller9d5705a2000-09-16 16:09:27 +1100239 /* flag that password change is necessary */
240 password_change_required = 1;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000241 break;
242 default:
Kevin Stevescccca272000-10-07 11:16:55 +0000243 log("PAM rejected by account configuration[%d]: %.200s",
244 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000245 return(0);
Damien Millere72b7af1999-12-30 15:08:44 +1100246 }
247
248 return(1);
249}
250
251/* Do PAM-specific session initialisation */
Damien Miller3e955e72000-01-27 10:55:38 +1100252void do_pam_session(char *username, const char *ttyname)
Damien Millere72b7af1999-12-30 15:08:44 +1100253{
254 int pam_retval;
255
256 if (ttyname != NULL) {
257 debug("PAM setting tty to \"%.200s\"", ttyname);
Damien Miller9d5705a2000-09-16 16:09:27 +1100258 pam_retval = pam_set_item(pamh, PAM_TTY, ttyname);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000259 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000260 fatal("PAM set tty failed[%d]: %.200s",
261 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000262 }
Damien Millere72b7af1999-12-30 15:08:44 +1100263 }
264
Damien Miller9d5705a2000-09-16 16:09:27 +1100265 pam_retval = pam_open_session(pamh, 0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000266 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000267 fatal("PAM session setup failed[%d]: %.200s",
268 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000269 }
Damien Millere72b7af1999-12-30 15:08:44 +1100270}
271
272/* Set PAM credentials */
Kevin Steves6beac8c2000-10-14 15:08:49 +0000273void do_pam_setcred(void)
Damien Millere72b7af1999-12-30 15:08:44 +1100274{
275 int pam_retval;
276
277 debug("PAM establishing creds");
Damien Miller9d5705a2000-09-16 16:09:27 +1100278 pam_retval = pam_setcred(pamh, PAM_ESTABLISH_CRED);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000279 if (pam_retval != PAM_SUCCESS) {
Damien Millerb8481582000-12-03 11:51:51 +1100280 if(was_authenticated) {
281 fatal("PAM setcred failed[%d]: %.200s",
282 pam_retval, PAM_STRERROR(pamh, pam_retval));
283 } else {
284 debug("PAM setcred failed[%d]: %.200s",
285 pam_retval, PAM_STRERROR(pamh, pam_retval));
286 }
Damien Miller9d5705a2000-09-16 16:09:27 +1100287 }
288}
289
Kevin Steves092f2ef2000-10-14 13:36:13 +0000290/* accessor function for file scope static variable */
291int pam_password_change_required(void)
292{
293 return password_change_required;
294}
295
Damien Miller9d5705a2000-09-16 16:09:27 +1100296/*
297 * Have user change authentication token if pam_acct_mgmt() indicated
298 * it was expired. This needs to be called after an interactive
299 * session is established and the user's pty is connected to
300 * stdin/stout/stderr.
301 */
Kevin Steves6beac8c2000-10-14 15:08:49 +0000302void do_pam_chauthtok(void)
Damien Miller9d5705a2000-09-16 16:09:27 +1100303{
304 int pam_retval;
305
306 if (password_change_required) {
307 pamstate = OTHER;
Kevin Stevescccca272000-10-07 11:16:55 +0000308 /*
309 * XXX: should we really loop forever?
310 */
Damien Miller9d5705a2000-09-16 16:09:27 +1100311 do {
312 pam_retval = pam_chauthtok(pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
Kevin Stevescccca272000-10-07 11:16:55 +0000313 if (pam_retval != PAM_SUCCESS) {
314 log("PAM pam_chauthtok failed[%d]: %.200s",
315 pam_retval, PAM_STRERROR(pamh, pam_retval));
316 }
Damien Miller9d5705a2000-09-16 16:09:27 +1100317 } while (pam_retval != PAM_SUCCESS);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000318 }
Damien Millere72b7af1999-12-30 15:08:44 +1100319}
320
321/* Cleanly shutdown PAM */
322void finish_pam(void)
323{
324 pam_cleanup_proc(NULL);
325 fatal_remove_cleanup(&pam_cleanup_proc, NULL);
326}
327
328/* Start PAM authentication for specified account */
Damien Miller22e22bf2001-01-19 15:46:38 +1100329void start_pam(const char *user)
Damien Millere72b7af1999-12-30 15:08:44 +1100330{
331 int pam_retval;
332
Damien Miller22e22bf2001-01-19 15:46:38 +1100333 debug("Starting up PAM with username \"%.200s\"", user);
Damien Millere72b7af1999-12-30 15:08:44 +1100334
Damien Miller22e22bf2001-01-19 15:46:38 +1100335 pam_retval = pam_start(SSHD_PAM_SERVICE, user, &conv, &pamh);
Damien Millere72b7af1999-12-30 15:08:44 +1100336
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000337 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000338 fatal("PAM initialisation failed[%d]: %.200s",
339 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000340 }
Damien Millerc19fd5f2000-06-22 21:44:54 +1000341
Damien Miller4e997202000-07-09 21:21:52 +1000342#ifdef PAM_TTY_KLUDGE
Damien Millerc19fd5f2000-06-22 21:44:54 +1000343 /*
344 * Some PAM modules (e.g. pam_time) require a TTY to operate,
345 * and will fail in various stupid ways if they don't get one.
346 * sshd doesn't set the tty until too late in the auth process and may
347 * not even need one (for tty-less connections)
348 * Kludge: Set a fake PAM_TTY
349 */
Damien Miller9d5705a2000-09-16 16:09:27 +1100350 pam_retval = pam_set_item(pamh, PAM_TTY, "ssh");
Damien Miller7b22d652000-06-18 14:07:04 +1000351 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000352 fatal("PAM set tty failed[%d]: %.200s",
353 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller7b22d652000-06-18 14:07:04 +1000354 }
Damien Miller4e997202000-07-09 21:21:52 +1000355#endif /* PAM_TTY_KLUDGE */
Damien Miller7b22d652000-06-18 14:07:04 +1000356
Damien Millere72b7af1999-12-30 15:08:44 +1100357 fatal_add_cleanup(&pam_cleanup_proc, NULL);
358}
359
360/* Return list of PAM enviornment strings */
361char **fetch_pam_environment(void)
362{
Damien Miller1bead332000-04-30 00:47:29 +1000363#ifdef HAVE_PAM_GETENVLIST
Damien Miller9d5705a2000-09-16 16:09:27 +1100364 return(pam_getenvlist(pamh));
Damien Miller1bead332000-04-30 00:47:29 +1000365#else /* HAVE_PAM_GETENVLIST */
366 return(NULL);
367#endif /* HAVE_PAM_GETENVLIST */
Damien Millere72b7af1999-12-30 15:08:44 +1100368}
369
370/* Print any messages that have been generated during authentication */
371/* or account checking to stderr */
372void print_pam_messages(void)
373{
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000374 if (pam_msg != NULL)
Damien Millerf9b625c2000-07-09 22:42:32 +1000375 fputs(pam_msg, stderr);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000376}
377
378/* Append a message to the PAM message buffer */
379void pam_msg_cat(const char *msg)
380{
381 char *p;
382 size_t new_msg_len;
383 size_t pam_msg_len;
384
385 new_msg_len = strlen(msg);
386
387 if (pam_msg) {
388 pam_msg_len = strlen(pam_msg);
389 pam_msg = xrealloc(pam_msg, new_msg_len + pam_msg_len + 2);
390 p = pam_msg + pam_msg_len;
391 } else {
392 pam_msg = p = xmalloc(new_msg_len + 2);
393 }
394
395 memcpy(p, msg, new_msg_len);
396 p[new_msg_len] = '\n';
397 p[new_msg_len + 1] = '\0';
Damien Millere72b7af1999-12-30 15:08:44 +1100398}
399
400#endif /* USE_PAM */