]> andersk Git - openssh.git/blame_incremental - auth-pam.c
- markus@cvs.openbsd.org 2001/04/11 10:59:01
[openssh.git] / auth-pam.c
... / ...
CommitLineData
1/*
2 * 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.
12 *
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.
23 */
24
25#include "includes.h"
26
27#ifdef USE_PAM
28#include "ssh.h"
29#include "xmalloc.h"
30#include "log.h"
31#include "auth-pam.h"
32#include "servconf.h"
33#include "canohost.h"
34#include "readpass.h"
35
36RCSID("$Id$");
37
38#define NEW_AUTHTOK_MSG \
39 "Warning: Your password has expired, please change it now"
40
41static int do_pam_conversation(int num_msg, const struct pam_message **msg,
42 struct pam_response **resp, void *appdata_ptr);
43
44/* module-local variables */
45static struct pam_conv conv = {
46 do_pam_conversation,
47 NULL
48};
49static char *__pam_msg = NULL;
50static pam_handle_t *__pamh = NULL;
51static const char *__pampasswd = NULL;
52
53/* states for do_pam_conversation() */
54enum { INITIAL_LOGIN, OTHER } pamstate = INITIAL_LOGIN;
55/* remember whether pam_acct_mgmt() returned PAM_NEWAUTHTOK_REQD */
56static int password_change_required = 0;
57/* remember whether the last pam_authenticate() succeeded or not */
58static int was_authenticated = 0;
59
60/* Remember what has been initialised */
61static int session_opened = 0;
62static int creds_set = 0;
63
64/* accessor which allows us to switch conversation structs according to
65 * the authentication method being used */
66void do_pam_set_conv(struct pam_conv *conv)
67{
68 pam_set_item(__pamh, PAM_CONV, conv);
69}
70
71/* start an authentication run */
72int do_pam_authenticate(int flags)
73{
74 int retval = pam_authenticate(__pamh, flags);
75 was_authenticated = (retval == PAM_SUCCESS);
76 return retval;
77}
78
79/*
80 * PAM conversation function.
81 * There are two states this can run in.
82 *
83 * INITIAL_LOGIN mode simply feeds the password from the client into
84 * PAM in response to PAM_PROMPT_ECHO_OFF, and collects output
85 * messages with into __pam_msg. This is used during initial
86 * authentication to bypass the normal PAM password prompt.
87 *
88 * OTHER mode handles PAM_PROMPT_ECHO_OFF with read_passphrase(prompt, 1)
89 * and outputs messages to stderr. This mode is used if pam_chauthtok()
90 * is called to update expired passwords.
91 */
92static int do_pam_conversation(int num_msg, const struct pam_message **msg,
93 struct pam_response **resp, void *appdata_ptr)
94{
95 struct pam_response *reply;
96 int count;
97 char buf[1024];
98
99 /* PAM will free this later */
100 reply = malloc(num_msg * sizeof(*reply));
101 if (reply == NULL)
102 return PAM_CONV_ERR;
103
104 for (count = 0; count < num_msg; count++) {
105 if (pamstate == INITIAL_LOGIN) {
106 /*
107 * We can't use stdio yet, queue messages for
108 * printing later
109 */
110 switch(PAM_MSG_MEMBER(msg, count, msg_style)) {
111 case PAM_PROMPT_ECHO_ON:
112 free(reply);
113 return PAM_CONV_ERR;
114 case PAM_PROMPT_ECHO_OFF:
115 if (__pampasswd == NULL) {
116 free(reply);
117 return PAM_CONV_ERR;
118 }
119 reply[count].resp = xstrdup(__pampasswd);
120 reply[count].resp_retcode = PAM_SUCCESS;
121 break;
122 case PAM_ERROR_MSG:
123 case PAM_TEXT_INFO:
124 if ((*msg)[count].msg != NULL) {
125 message_cat(&__pam_msg,
126 PAM_MSG_MEMBER(msg, count, msg));
127 }
128 reply[count].resp = xstrdup("");
129 reply[count].resp_retcode = PAM_SUCCESS;
130 break;
131 default:
132 free(reply);
133 return PAM_CONV_ERR;
134 }
135 } else {
136 /*
137 * stdio is connected, so interact directly
138 */
139 switch(PAM_MSG_MEMBER(msg, count, msg_style)) {
140 case PAM_PROMPT_ECHO_ON:
141 fputs(PAM_MSG_MEMBER(msg, count, msg), stderr);
142 fgets(buf, sizeof(buf), stdin);
143 reply[count].resp = xstrdup(buf);
144 reply[count].resp_retcode = PAM_SUCCESS;
145 break;
146 case PAM_PROMPT_ECHO_OFF:
147 reply[count].resp = xstrdup(
148 read_passphrase(PAM_MSG_MEMBER(msg, count,
149 msg), 1));
150 reply[count].resp_retcode = PAM_SUCCESS;
151 break;
152 case PAM_ERROR_MSG:
153 case PAM_TEXT_INFO:
154 if ((*msg)[count].msg != NULL)
155 fprintf(stderr, "%s\n",
156 PAM_MSG_MEMBER(msg, count, msg));
157 reply[count].resp = xstrdup("");
158 reply[count].resp_retcode = PAM_SUCCESS;
159 break;
160 default:
161 free(reply);
162 return PAM_CONV_ERR;
163 }
164 }
165 }
166
167 *resp = reply;
168
169 return PAM_SUCCESS;
170}
171
172/* Called at exit to cleanly shutdown PAM */
173void do_pam_cleanup_proc(void *context)
174{
175 int pam_retval = PAM_SUCCESS;
176
177 if (__pamh && session_opened) {
178 pam_retval = pam_close_session(__pamh, 0);
179 if (pam_retval != PAM_SUCCESS)
180 log("Cannot close PAM session[%d]: %.200s",
181 pam_retval, PAM_STRERROR(__pamh, pam_retval));
182 }
183
184 if (__pamh && creds_set) {
185 pam_retval = pam_setcred(__pamh, PAM_DELETE_CRED);
186 if (pam_retval != PAM_SUCCESS)
187 debug("Cannot delete credentials[%d]: %.200s",
188 pam_retval, PAM_STRERROR(__pamh, pam_retval));
189 }
190
191 if (__pamh) {
192 pam_retval = pam_end(__pamh, pam_retval);
193 if (pam_retval != PAM_SUCCESS)
194 log("Cannot release PAM authentication[%d]: %.200s",
195 pam_retval, PAM_STRERROR(__pamh, pam_retval));
196 }
197}
198
199/* Attempt password authentation using PAM */
200int auth_pam_password(struct passwd *pw, const char *password)
201{
202 extern ServerOptions options;
203 int pam_retval;
204
205 do_pam_set_conv(&conv);
206
207 /* deny if no user. */
208 if (pw == NULL)
209 return 0;
210 if (pw->pw_uid == 0 && options.permit_root_login == 2)
211 return 0;
212 if (*password == '\0' && options.permit_empty_passwd == 0)
213 return 0;
214
215 __pampasswd = password;
216
217 pamstate = INITIAL_LOGIN;
218 pam_retval = do_pam_authenticate(0);
219 if (pam_retval == PAM_SUCCESS) {
220 debug("PAM Password authentication accepted for "
221 "user \"%.100s\"", pw->pw_name);
222 return 1;
223 } else {
224 debug("PAM Password authentication for \"%.100s\" "
225 "failed[%d]: %s", pw->pw_name, pam_retval,
226 PAM_STRERROR(__pamh, pam_retval));
227 return 0;
228 }
229}
230
231/* Do account management using PAM */
232int do_pam_account(char *username, char *remote_user)
233{
234 int pam_retval;
235
236 do_pam_set_conv(&conv);
237
238 if (remote_user) {
239 debug("PAM setting ruser to \"%.200s\"", remote_user);
240 pam_retval = pam_set_item(__pamh, PAM_RUSER, remote_user);
241 if (pam_retval != PAM_SUCCESS)
242 fatal("PAM set ruser failed[%d]: %.200s", pam_retval,
243 PAM_STRERROR(__pamh, pam_retval));
244 }
245
246 pam_retval = pam_acct_mgmt(__pamh, 0);
247 switch (pam_retval) {
248 case PAM_SUCCESS:
249 /* This is what we want */
250 break;
251 case PAM_NEW_AUTHTOK_REQD:
252 message_cat(&__pam_msg, NEW_AUTHTOK_MSG);
253 /* flag that password change is necessary */
254 password_change_required = 1;
255 break;
256 default:
257 log("PAM rejected by account configuration[%d]: "
258 "%.200s", pam_retval, PAM_STRERROR(__pamh,
259 pam_retval));
260 return(0);
261 }
262
263 return(1);
264}
265
266/* Do PAM-specific session initialisation */
267void do_pam_session(char *username, const char *ttyname)
268{
269 int pam_retval;
270
271 do_pam_set_conv(&conv);
272
273 if (ttyname != NULL) {
274 debug("PAM setting tty to \"%.200s\"", ttyname);
275 pam_retval = pam_set_item(__pamh, PAM_TTY, ttyname);
276 if (pam_retval != PAM_SUCCESS)
277 fatal("PAM set tty failed[%d]: %.200s",
278 pam_retval, PAM_STRERROR(__pamh, pam_retval));
279 }
280
281 pam_retval = pam_open_session(__pamh, 0);
282 if (pam_retval != PAM_SUCCESS)
283 fatal("PAM session setup failed[%d]: %.200s",
284 pam_retval, PAM_STRERROR(__pamh, pam_retval));
285
286 session_opened = 1;
287}
288
289/* Set PAM credentials */
290void do_pam_setcred(int init)
291{
292 int pam_retval;
293
294 do_pam_set_conv(&conv);
295
296 debug("PAM establishing creds");
297 pam_retval = pam_setcred(__pamh,
298 init ? PAM_ESTABLISH_CRED : PAM_REINITIALIZE_CRED);
299 if (pam_retval != PAM_SUCCESS) {
300 if (was_authenticated)
301 fatal("PAM setcred failed[%d]: %.200s",
302 pam_retval, PAM_STRERROR(__pamh, pam_retval));
303 else
304 debug("PAM setcred failed[%d]: %.200s",
305 pam_retval, PAM_STRERROR(__pamh, pam_retval));
306 } else
307 creds_set = 1;
308}
309
310/* accessor function for file scope static variable */
311int is_pam_password_change_required(void)
312{
313 return password_change_required;
314}
315
316/*
317 * Have user change authentication token if pam_acct_mgmt() indicated
318 * it was expired. This needs to be called after an interactive
319 * session is established and the user's pty is connected to
320 * stdin/stout/stderr.
321 */
322void do_pam_chauthtok(void)
323{
324 int pam_retval;
325
326 do_pam_set_conv(&conv);
327
328 if (password_change_required) {
329 pamstate = OTHER;
330 pam_retval = pam_chauthtok(__pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
331 if (pam_retval != PAM_SUCCESS)
332 fatal("PAM pam_chauthtok failed[%d]: %.200s",
333 pam_retval, PAM_STRERROR(__pamh, pam_retval));
334 }
335}
336
337/* Cleanly shutdown PAM */
338void finish_pam(void)
339{
340 do_pam_cleanup_proc(NULL);
341 fatal_remove_cleanup(&do_pam_cleanup_proc, NULL);
342}
343
344/* Start PAM authentication for specified account */
345void start_pam(const char *user)
346{
347 int pam_retval;
348 extern ServerOptions options;
349
350 debug("Starting up PAM with username \"%.200s\"", user);
351
352 pam_retval = pam_start(SSHD_PAM_SERVICE, user, &conv, &__pamh);
353
354 if (pam_retval != PAM_SUCCESS)
355 fatal("PAM initialisation failed[%d]: %.200s",
356 pam_retval, PAM_STRERROR(__pamh, pam_retval));
357
358 debug("PAM setting rhost to \"%.200s\"",
359 get_canonical_hostname(options.reverse_mapping_check));
360 pam_retval = pam_set_item(__pamh, PAM_RHOST,
361 get_canonical_hostname(options.reverse_mapping_check));
362 if (pam_retval != PAM_SUCCESS)
363 fatal("PAM set rhost failed[%d]: %.200s", pam_retval,
364 PAM_STRERROR(__pamh, pam_retval));
365#ifdef PAM_TTY_KLUDGE
366 /*
367 * Some PAM modules (e.g. pam_time) require a TTY to operate,
368 * and will fail in various stupid ways if they don't get one.
369 * sshd doesn't set the tty until too late in the auth process and may
370 * not even need one (for tty-less connections)
371 * Kludge: Set a fake PAM_TTY
372 */
373 pam_retval = pam_set_item(__pamh, PAM_TTY, "ssh");
374 if (pam_retval != PAM_SUCCESS)
375 fatal("PAM set tty failed[%d]: %.200s",
376 pam_retval, PAM_STRERROR(__pamh, pam_retval));
377#endif /* PAM_TTY_KLUDGE */
378
379 fatal_add_cleanup(&do_pam_cleanup_proc, NULL);
380}
381
382/* Return list of PAM enviornment strings */
383char **fetch_pam_environment(void)
384{
385#ifdef HAVE_PAM_GETENVLIST
386 return(pam_getenvlist(__pamh));
387#else /* HAVE_PAM_GETENVLIST */
388 return(NULL);
389#endif /* HAVE_PAM_GETENVLIST */
390}
391
392/* Print any messages that have been generated during authentication */
393/* or account checking to stderr */
394void print_pam_messages(void)
395{
396 if (__pam_msg != NULL)
397 fputs(__pam_msg, stderr);
398}
399
400/* Append a message to buffer */
401void message_cat(char **p, const char *a)
402{
403 char *cp;
404 size_t new_len;
405
406 new_len = strlen(a);
407
408 if (*p) {
409 size_t len = strlen(*p);
410
411 *p = xrealloc(*p, new_len + len + 2);
412 cp = *p + len;
413 } else
414 *p = cp = xmalloc(new_len + 2);
415
416 memcpy(cp, a, new_len);
417 cp[new_len] = '\n';
418 cp[new_len + 1] = '\0';
419}
420
421#endif /* USE_PAM */
This page took 1.960941 seconds and 5 git commands to generate.