blob: 57a558d87a3a91a3b4308f73e4b7b1ff09ed1dae [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"
30#include "servconf.h"
31
Kevin Stevescccca272000-10-07 11:16:55 +000032RCSID("$Id: auth-pam.c,v 1.14 2000/10/07 11:16:55 stevesk Exp $");
Damien Miller2f6a0ad2000-05-31 11:20:11 +100033
34#define NEW_AUTHTOK_MSG \
Damien Miller9d5705a2000-09-16 16:09:27 +110035 "Warning: Your password has expired, please change it now"
Damien Millere72b7af1999-12-30 15:08:44 +110036
37/* Callbacks */
38static int pamconv(int num_msg, const struct pam_message **msg,
39 struct pam_response **resp, void *appdata_ptr);
40void pam_cleanup_proc(void *context);
Damien Miller2f6a0ad2000-05-31 11:20:11 +100041void pam_msg_cat(const char *msg);
Damien Millere72b7af1999-12-30 15:08:44 +110042
43/* module-local variables */
44static struct pam_conv conv = {
45 pamconv,
46 NULL
47};
Damien Miller9d5705a2000-09-16 16:09:27 +110048static pam_handle_t *pamh = NULL;
Damien Millere72b7af1999-12-30 15:08:44 +110049static const char *pampasswd = NULL;
Damien Miller2f6a0ad2000-05-31 11:20:11 +100050static char *pam_msg = NULL;
Damien Millere72b7af1999-12-30 15:08:44 +110051
Damien Miller9d5705a2000-09-16 16:09:27 +110052/* states for pamconv() */
53typedef enum { INITIAL_LOGIN, OTHER } pamstates;
54static pamstates pamstate = INITIAL_LOGIN;
55/* remember whether pam_acct_mgmt() returned PAM_NEWAUTHTOK_REQD */
56static int password_change_required = 0;
57
58/*
59 * PAM conversation function.
60 * There are two states this can run in.
61 *
62 * INITIAL_LOGIN mode simply feeds the password from the client into
63 * PAM in response to PAM_PROMPT_ECHO_OFF, and collects output
64 * messages with pam_msg_cat(). This is used during initial
65 * authentication to bypass the normal PAM password prompt.
66 *
67 * OTHER mode handles PAM_PROMPT_ECHO_OFF with read_passphrase(prompt, 1)
68 * and outputs messages to stderr. This mode is used if pam_chauthtok()
69 * is called to update expired passwords.
70 */
Damien Millere72b7af1999-12-30 15:08:44 +110071static int pamconv(int num_msg, const struct pam_message **msg,
72 struct pam_response **resp, void *appdata_ptr)
73{
74 struct pam_response *reply;
75 int count;
Damien Miller9d5705a2000-09-16 16:09:27 +110076 char buf[1024];
Damien Millere72b7af1999-12-30 15:08:44 +110077
78 /* PAM will free this later */
79 reply = malloc(num_msg * sizeof(*reply));
80 if (reply == NULL)
81 return PAM_CONV_ERR;
82
Damien Miller9d5705a2000-09-16 16:09:27 +110083 for (count = 0; count < num_msg; count++) {
84 switch ((*msg)[count].msg_style) {
85 case PAM_PROMPT_ECHO_ON:
86 fputs((*msg)[count].msg, stderr);
87 fgets(buf, sizeof(buf), stdin);
88 reply[count].resp = xstrdup(buf);
Damien Millere72b7af1999-12-30 15:08:44 +110089 reply[count].resp_retcode = PAM_SUCCESS;
Damien Millere72b7af1999-12-30 15:08:44 +110090 break;
Damien Miller9d5705a2000-09-16 16:09:27 +110091 case PAM_PROMPT_ECHO_OFF:
92 if (pamstate == INITIAL_LOGIN) {
93 if (pampasswd == NULL) {
94 free(reply);
95 return PAM_CONV_ERR;
96 }
97 reply[count].resp = xstrdup(pampasswd);
98 } else
99 reply[count].resp = xstrdup(read_passphrase((*msg)[count].msg, 1));
Damien Millere72b7af1999-12-30 15:08:44 +1100100 reply[count].resp_retcode = PAM_SUCCESS;
Damien Miller9d5705a2000-09-16 16:09:27 +1100101 break;
102 case PAM_ERROR_MSG:
103 case PAM_TEXT_INFO:
104 if ((*msg)[count].msg != NULL) {
105 if (pamstate == INITIAL_LOGIN)
106 pam_msg_cat((*msg)[count].msg);
107 else {
108 fputs((*msg)[count].msg, stderr);
109 fputs("\n", stderr);
110 }
111 }
Damien Millere72b7af1999-12-30 15:08:44 +1100112 reply[count].resp = xstrdup("");
Damien Miller9d5705a2000-09-16 16:09:27 +1100113 reply[count].resp_retcode = PAM_SUCCESS;
Damien Millere72b7af1999-12-30 15:08:44 +1100114 break;
Damien Millere72b7af1999-12-30 15:08:44 +1100115 default:
116 free(reply);
117 return PAM_CONV_ERR;
118 }
119 }
120
121 *resp = reply;
122
123 return PAM_SUCCESS;
124}
125
126/* Called at exit to cleanly shutdown PAM */
127void pam_cleanup_proc(void *context)
128{
129 int pam_retval;
130
131 if (pamh != NULL)
132 {
Damien Miller9d5705a2000-09-16 16:09:27 +1100133 pam_retval = pam_close_session(pamh, 0);
Damien Millere72b7af1999-12-30 15:08:44 +1100134 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000135 log("Cannot close PAM session[%d]: %.200s",
136 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100137 }
138
Damien Miller9d5705a2000-09-16 16:09:27 +1100139 pam_retval = pam_setcred(pamh, PAM_DELETE_CRED);
Damien Millere72b7af1999-12-30 15:08:44 +1100140 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000141 debug("Cannot delete credentials[%d]: %.200s",
142 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100143 }
144
Damien Miller9d5705a2000-09-16 16:09:27 +1100145 pam_retval = pam_end(pamh, pam_retval);
Damien Millere72b7af1999-12-30 15:08:44 +1100146 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000147 log("Cannot release PAM authentication[%d]: %.200s",
148 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100149 }
150 }
151}
152
153/* Attempt password authentation using PAM */
154int auth_pam_password(struct passwd *pw, const char *password)
155{
156 extern ServerOptions options;
157 int pam_retval;
158
159 /* deny if no user. */
160 if (pw == NULL)
161 return 0;
162 if (pw->pw_uid == 0 && options.permit_root_login == 2)
163 return 0;
164 if (*password == '\0' && options.permit_empty_passwd == 0)
165 return 0;
166
167 pampasswd = password;
168
Damien Miller9d5705a2000-09-16 16:09:27 +1100169 pamstate = INITIAL_LOGIN;
170 pam_retval = pam_authenticate(pamh, 0);
Damien Millere72b7af1999-12-30 15:08:44 +1100171 if (pam_retval == PAM_SUCCESS) {
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000172 debug("PAM Password authentication accepted for user \"%.100s\"",
173 pw->pw_name);
Damien Millere72b7af1999-12-30 15:08:44 +1100174 return 1;
175 } else {
Kevin Stevescccca272000-10-07 11:16:55 +0000176 debug("PAM Password authentication for \"%.100s\" failed[%d]: %s",
177 pw->pw_name, pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100178 return 0;
179 }
180}
181
182/* Do account management using PAM */
183int do_pam_account(char *username, char *remote_user)
184{
185 int pam_retval;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000186
Damien Millere72b7af1999-12-30 15:08:44 +1100187 debug("PAM setting rhost to \"%.200s\"", get_canonical_hostname());
Damien Miller9d5705a2000-09-16 16:09:27 +1100188 pam_retval = pam_set_item(pamh, PAM_RHOST,
Damien Millere72b7af1999-12-30 15:08:44 +1100189 get_canonical_hostname());
190 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000191 fatal("PAM set rhost failed[%d]: %.200s",
192 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100193 }
194
195 if (remote_user != NULL) {
196 debug("PAM setting ruser to \"%.200s\"", remote_user);
Damien Miller9d5705a2000-09-16 16:09:27 +1100197 pam_retval = pam_set_item(pamh, PAM_RUSER, remote_user);
Damien Millere72b7af1999-12-30 15:08:44 +1100198 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000199 fatal("PAM set ruser failed[%d]: %.200s",
200 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Millere72b7af1999-12-30 15:08:44 +1100201 }
202 }
203
Damien Miller9d5705a2000-09-16 16:09:27 +1100204 pam_retval = pam_acct_mgmt(pamh, 0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000205 switch (pam_retval) {
206 case PAM_SUCCESS:
207 /* This is what we want */
208 break;
209 case PAM_NEW_AUTHTOK_REQD:
210 pam_msg_cat(NEW_AUTHTOK_MSG);
Damien Miller9d5705a2000-09-16 16:09:27 +1100211 /* flag that password change is necessary */
212 password_change_required = 1;
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000213 break;
214 default:
Kevin Stevescccca272000-10-07 11:16:55 +0000215 log("PAM rejected by account configuration[%d]: %.200s",
216 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000217 return(0);
Damien Millere72b7af1999-12-30 15:08:44 +1100218 }
219
220 return(1);
221}
222
223/* Do PAM-specific session initialisation */
Damien Miller3e955e72000-01-27 10:55:38 +1100224void do_pam_session(char *username, const char *ttyname)
Damien Millere72b7af1999-12-30 15:08:44 +1100225{
226 int pam_retval;
227
228 if (ttyname != NULL) {
229 debug("PAM setting tty to \"%.200s\"", ttyname);
Damien Miller9d5705a2000-09-16 16:09:27 +1100230 pam_retval = pam_set_item(pamh, PAM_TTY, ttyname);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000231 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000232 fatal("PAM set tty failed[%d]: %.200s",
233 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000234 }
Damien Millere72b7af1999-12-30 15:08:44 +1100235 }
236
Damien Miller9d5705a2000-09-16 16:09:27 +1100237 pam_retval = pam_open_session(pamh, 0);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000238 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000239 fatal("PAM session setup failed[%d]: %.200s",
240 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000241 }
Damien Millere72b7af1999-12-30 15:08:44 +1100242}
243
244/* Set PAM credentials */
245void do_pam_setcred()
246{
247 int pam_retval;
248
249 debug("PAM establishing creds");
Damien Miller9d5705a2000-09-16 16:09:27 +1100250 pam_retval = pam_setcred(pamh, PAM_ESTABLISH_CRED);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000251 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000252 fatal("PAM setcred failed[%d]: %.200s",
253 pam_setcred, PAM_STRERROR(pamh, pam_retval));
Damien Miller9d5705a2000-09-16 16:09:27 +1100254 }
255}
256
257/*
258 * Have user change authentication token if pam_acct_mgmt() indicated
259 * it was expired. This needs to be called after an interactive
260 * session is established and the user's pty is connected to
261 * stdin/stout/stderr.
262 */
263void do_pam_chauthtok()
264{
265 int pam_retval;
266
267 if (password_change_required) {
268 pamstate = OTHER;
Kevin Stevescccca272000-10-07 11:16:55 +0000269 /*
270 * XXX: should we really loop forever?
271 */
Damien Miller9d5705a2000-09-16 16:09:27 +1100272 do {
273 pam_retval = pam_chauthtok(pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
Kevin Stevescccca272000-10-07 11:16:55 +0000274 if (pam_retval != PAM_SUCCESS) {
275 log("PAM pam_chauthtok failed[%d]: %.200s",
276 pam_retval, PAM_STRERROR(pamh, pam_retval));
277 }
Damien Miller9d5705a2000-09-16 16:09:27 +1100278 } while (pam_retval != PAM_SUCCESS);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000279 }
Damien Millere72b7af1999-12-30 15:08:44 +1100280}
281
282/* Cleanly shutdown PAM */
283void finish_pam(void)
284{
285 pam_cleanup_proc(NULL);
286 fatal_remove_cleanup(&pam_cleanup_proc, NULL);
287}
288
289/* Start PAM authentication for specified account */
290void start_pam(struct passwd *pw)
291{
292 int pam_retval;
293
294 debug("Starting up PAM with username \"%.200s\"", pw->pw_name);
295
Damien Miller9d5705a2000-09-16 16:09:27 +1100296 pam_retval = pam_start(SSHD_PAM_SERVICE, pw->pw_name, &conv, &pamh);
Damien Millere72b7af1999-12-30 15:08:44 +1100297
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000298 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000299 fatal("PAM initialisation failed[%d]: %.200s",
300 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000301 }
Damien Millerc19fd5f2000-06-22 21:44:54 +1000302
Damien Miller4e997202000-07-09 21:21:52 +1000303#ifdef PAM_TTY_KLUDGE
Damien Millerc19fd5f2000-06-22 21:44:54 +1000304 /*
305 * Some PAM modules (e.g. pam_time) require a TTY to operate,
306 * and will fail in various stupid ways if they don't get one.
307 * sshd doesn't set the tty until too late in the auth process and may
308 * not even need one (for tty-less connections)
309 * Kludge: Set a fake PAM_TTY
310 */
Damien Miller9d5705a2000-09-16 16:09:27 +1100311 pam_retval = pam_set_item(pamh, PAM_TTY, "ssh");
Damien Miller7b22d652000-06-18 14:07:04 +1000312 if (pam_retval != PAM_SUCCESS) {
Kevin Stevescccca272000-10-07 11:16:55 +0000313 fatal("PAM set tty failed[%d]: %.200s",
314 pam_retval, PAM_STRERROR(pamh, pam_retval));
Damien Miller7b22d652000-06-18 14:07:04 +1000315 }
Damien Miller4e997202000-07-09 21:21:52 +1000316#endif /* PAM_TTY_KLUDGE */
Damien Miller7b22d652000-06-18 14:07:04 +1000317
Damien Millere72b7af1999-12-30 15:08:44 +1100318 fatal_add_cleanup(&pam_cleanup_proc, NULL);
319}
320
321/* Return list of PAM enviornment strings */
322char **fetch_pam_environment(void)
323{
Damien Miller1bead332000-04-30 00:47:29 +1000324#ifdef HAVE_PAM_GETENVLIST
Damien Miller9d5705a2000-09-16 16:09:27 +1100325 return(pam_getenvlist(pamh));
Damien Miller1bead332000-04-30 00:47:29 +1000326#else /* HAVE_PAM_GETENVLIST */
327 return(NULL);
328#endif /* HAVE_PAM_GETENVLIST */
Damien Millere72b7af1999-12-30 15:08:44 +1100329}
330
331/* Print any messages that have been generated during authentication */
332/* or account checking to stderr */
333void print_pam_messages(void)
334{
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000335 if (pam_msg != NULL)
Damien Millerf9b625c2000-07-09 22:42:32 +1000336 fputs(pam_msg, stderr);
Damien Miller2f6a0ad2000-05-31 11:20:11 +1000337}
338
339/* Append a message to the PAM message buffer */
340void pam_msg_cat(const char *msg)
341{
342 char *p;
343 size_t new_msg_len;
344 size_t pam_msg_len;
345
346 new_msg_len = strlen(msg);
347
348 if (pam_msg) {
349 pam_msg_len = strlen(pam_msg);
350 pam_msg = xrealloc(pam_msg, new_msg_len + pam_msg_len + 2);
351 p = pam_msg + pam_msg_len;
352 } else {
353 pam_msg = p = xmalloc(new_msg_len + 2);
354 }
355
356 memcpy(p, msg, new_msg_len);
357 p[new_msg_len] = '\n';
358 p[new_msg_len + 1] = '\0';
Damien Millere72b7af1999-12-30 15:08:44 +1100359}
360
361#endif /* USE_PAM */