]> andersk Git - gssapi-openssh.git/blame - openssh/auth.c
merged OpenSSH 4.2p1 to trunk
[gssapi-openssh.git] / openssh / auth.c
CommitLineData
3c0ef626 1/*
2 * Copyright (c) 2000 Markus Friedl. 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"
2ce0bfe4 26RCSID("$OpenBSD: auth.c,v 1.60 2005/06/17 02:44:32 djm Exp $");
3c0ef626 27
28#ifdef HAVE_LOGIN_H
29#include <login.h>
30#endif
540d72c3 31#ifdef USE_SHADOW
3c0ef626 32#include <shadow.h>
540d72c3 33#endif
3c0ef626 34
35#ifdef HAVE_LIBGEN_H
36#include <libgen.h>
37#endif
38
39#include "xmalloc.h"
40#include "match.h"
41#include "groupaccess.h"
42#include "log.h"
43#include "servconf.h"
44#include "auth.h"
45#include "auth-options.h"
46#include "canohost.h"
47#include "buffer.h"
48#include "bufaux.h"
49#include "uidswap.h"
b8d1a091 50#include "misc.h"
51#include "bufaux.h"
52#include "packet.h"
dfddba3d 53#include "loginrec.h"
54#include "monitor_wrap.h"
3c0ef626 55
56/* import */
57extern ServerOptions options;
7cac2b65 58extern Buffer loginmsg;
3c0ef626 59
b8d1a091 60/* Debugging messages */
61Buffer auth_debug;
62int auth_debug_init;
63
3c0ef626 64/*
65 * Check if the user is allowed to log in via ssh. If user is listed
66 * in DenyUsers or one of user's groups is listed in DenyGroups, false
67 * will be returned. If AllowUsers isn't empty and user isn't listed
68 * there, or if AllowGroups isn't empty and one of user's groups isn't
69 * listed there, false will be returned.
70 * If the user's shell is not executable, false will be returned.
71 * Otherwise true is returned.
72 */
73int
74allowed_user(struct passwd * pw)
75{
76 struct stat st;
7cac2b65 77 const char *hostname = NULL, *ipaddr = NULL, *passwd = NULL;
3c0ef626 78 char *shell;
2ce0bfe4 79 u_int i;
540d72c3 80#ifdef USE_SHADOW
7cac2b65 81 struct spwd *spw = NULL;
bfe49944 82#endif
3c0ef626 83
84 /* Shouldn't be called if pw is NULL, but better safe than sorry... */
85 if (!pw || !pw->pw_name)
86 return 0;
87
540d72c3 88#ifdef USE_SHADOW
7cac2b65 89 if (!options.use_pam)
90 spw = getspnam(pw->pw_name);
91#ifdef HAS_SHADOW_EXPIRE
540d72c3 92 if (!options.use_pam && spw != NULL && auth_shadow_acctexpired(spw))
93 return 0;
7cac2b65 94#endif /* HAS_SHADOW_EXPIRE */
540d72c3 95#endif /* USE_SHADOW */
7cac2b65 96
540d72c3 97 /* grab passwd field for locked account check */
98#ifdef USE_SHADOW
7cac2b65 99 if (spw != NULL)
2ce0bfe4 100#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
101 passwd = get_iaf_password(pw);
102#else
7cac2b65 103 passwd = spw->sp_pwdp;
2ce0bfe4 104#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
7cac2b65 105#else
106 passwd = pw->pw_passwd;
3c0ef626 107#endif
108
540d72c3 109 /* check for locked account */
7cac2b65 110 if (!options.use_pam && passwd && *passwd) {
111 int locked = 0;
112
113#ifdef LOCKED_PASSWD_STRING
114 if (strcmp(passwd, LOCKED_PASSWD_STRING) == 0)
115 locked = 1;
116#endif
117#ifdef LOCKED_PASSWD_PREFIX
118 if (strncmp(passwd, LOCKED_PASSWD_PREFIX,
119 strlen(LOCKED_PASSWD_PREFIX)) == 0)
120 locked = 1;
121#endif
122#ifdef LOCKED_PASSWD_SUBSTR
123 if (strstr(passwd, LOCKED_PASSWD_SUBSTR))
124 locked = 1;
125#endif
2ce0bfe4 126#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
127 free(passwd);
128#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
7cac2b65 129 if (locked) {
130 logit("User %.100s not allowed because account is locked",
131 pw->pw_name);
132 return 0;
133 }
134 }
135
3c0ef626 136 /*
137 * Get the shell from the password data. An empty shell field is
138 * legal, and means /bin/sh.
139 */
140 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
141
142 /* deny if shell does not exists or is not executable */
b8d1a091 143 if (stat(shell, &st) != 0) {
7cac2b65 144 logit("User %.100s not allowed because shell %.100s does not exist",
b8d1a091 145 pw->pw_name, shell);
3c0ef626 146 return 0;
b8d1a091 147 }
148 if (S_ISREG(st.st_mode) == 0 ||
149 (st.st_mode & (S_IXOTH|S_IXUSR|S_IXGRP)) == 0) {
7cac2b65 150 logit("User %.100s not allowed because shell %.100s is not executable",
b8d1a091 151 pw->pw_name, shell);
3c0ef626 152 return 0;
b8d1a091 153 }
3c0ef626 154
8b32eddc 155 if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
156 options.num_deny_groups > 0 || options.num_allow_groups > 0) {
7cac2b65 157 hostname = get_canonical_hostname(options.use_dns);
3c0ef626 158 ipaddr = get_remote_ipaddr();
159 }
160
161 /* Return false if user is listed in DenyUsers */
162 if (options.num_deny_users > 0) {
163 for (i = 0; i < options.num_deny_users; i++)
164 if (match_user(pw->pw_name, hostname, ipaddr,
b8d1a091 165 options.deny_users[i])) {
dfddba3d 166 logit("User %.100s from %.100s not allowed "
167 "because listed in DenyUsers",
168 pw->pw_name, hostname);
3c0ef626 169 return 0;
b8d1a091 170 }
3c0ef626 171 }
172 /* Return false if AllowUsers isn't empty and user isn't listed there */
173 if (options.num_allow_users > 0) {
174 for (i = 0; i < options.num_allow_users; i++)
175 if (match_user(pw->pw_name, hostname, ipaddr,
176 options.allow_users[i]))
177 break;
178 /* i < options.num_allow_users iff we break for loop */
b8d1a091 179 if (i >= options.num_allow_users) {
dfddba3d 180 logit("User %.100s from %.100s not allowed because "
181 "not listed in AllowUsers", pw->pw_name, hostname);
3c0ef626 182 return 0;
b8d1a091 183 }
3c0ef626 184 }
185 if (options.num_deny_groups > 0 || options.num_allow_groups > 0) {
186 /* Get the user's group access list (primary and supplementary) */
b8d1a091 187 if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
dfddba3d 188 logit("User %.100s from %.100s not allowed because "
189 "not in any group", pw->pw_name, hostname);
3c0ef626 190 return 0;
b8d1a091 191 }
3c0ef626 192
193 /* Return false if one of user's groups is listed in DenyGroups */
194 if (options.num_deny_groups > 0)
195 if (ga_match(options.deny_groups,
196 options.num_deny_groups)) {
197 ga_free();
dfddba3d 198 logit("User %.100s from %.100s not allowed "
199 "because a group is listed in DenyGroups",
200 pw->pw_name, hostname);
3c0ef626 201 return 0;
202 }
203 /*
204 * Return false if AllowGroups isn't empty and one of user's groups
205 * isn't listed there
206 */
207 if (options.num_allow_groups > 0)
208 if (!ga_match(options.allow_groups,
209 options.num_allow_groups)) {
210 ga_free();
dfddba3d 211 logit("User %.100s from %.100s not allowed "
212 "because none of user's groups are listed "
213 "in AllowGroups", pw->pw_name, hostname);
3c0ef626 214 return 0;
215 }
216 ga_free();
217 }
218
7e82606e 219#ifdef CUSTOM_SYS_AUTH_ALLOWED_USER
dfddba3d 220 if (!sys_auth_allowed_user(pw, &loginmsg))
7e82606e 221 return 0;
222#endif
3c0ef626 223
224 /* We found no reason not to let this user try to log on... */
225 return 1;
226}
227
3c0ef626 228void
229auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
230{
231 void (*authlog) (const char *fmt,...) = verbose;
232 char *authmsg;
233
234 /* Raise logging level */
235 if (authenticated == 1 ||
236 !authctxt->valid ||
7e82606e 237 authctxt->failures >= options.max_authtries / 2 ||
3c0ef626 238 strcmp(method, "password") == 0)
7cac2b65 239 authlog = logit;
3c0ef626 240
241 if (authctxt->postponed)
242 authmsg = "Postponed";
243 else
244 authmsg = authenticated ? "Accepted" : "Failed";
245
246 authlog("%s %s for %s%.100s from %.200s port %d%s",
247 authmsg,
248 method,
7e82606e 249 authctxt->valid ? "" : "invalid user ",
250 (authctxt->user && authctxt->user[0]) ?
251 authctxt->user : "<implicit>",
3c0ef626 252 get_remote_ipaddr(),
253 get_remote_port(),
254 info);
d03f4262 255
7cac2b65 256#ifdef CUSTOM_FAILED_LOGIN
dfddba3d 257 if (authenticated == 0 && !authctxt->postponed &&
258 (strcmp(method, "password") == 0 ||
259 strncmp(method, "keyboard-interactive", 20) == 0 ||
260 strcmp(method, "challenge-response") == 0))
261 record_failed_login(authctxt->user,
262 get_canonical_hostname(options.use_dns), "ssh");
263#endif
264#ifdef SSH_AUDIT_EVENTS
265 if (authenticated == 0 && !authctxt->postponed) {
266 ssh_audit_event_t event;
267
268 debug3("audit failed auth attempt, method %s euid %d",
269 method, (int)geteuid());
270 /*
271 * Because the auth loop is used in both monitor and slave,
272 * we must be careful to send each event only once and with
273 * enough privs to write the event.
274 */
275 event = audit_classify_auth(method);
276 switch(event) {
277 case SSH_AUTH_FAIL_NONE:
278 case SSH_AUTH_FAIL_PASSWD:
279 case SSH_AUTH_FAIL_KBDINT:
280 if (geteuid() == 0)
281 audit_event(event);
282 break;
283 case SSH_AUTH_FAIL_PUBKEY:
284 case SSH_AUTH_FAIL_HOSTBASED:
285 case SSH_AUTH_FAIL_GSSAPI:
286 /*
287 * This is required to handle the case where privsep
288 * is enabled but it's root logging in, since
289 * use_privsep won't be cleared until after a
290 * successful login.
291 */
292 if (geteuid() == 0)
293 audit_event(event);
294 else
295 PRIVSEP(audit_event(event));
296 break;
297 default:
298 error("unknown authentication audit event %d", event);
299 }
300 }
7cac2b65 301#endif
3c0ef626 302}
303
304/*
305 * Check whether root logins are disallowed.
306 */
307int
308auth_root_allowed(char *method)
309{
310 switch (options.permit_root_login) {
311 case PERMIT_YES:
312 return 1;
313 break;
314 case PERMIT_NO_PASSWD:
315 if (strcmp(method, "password") != 0)
316 return 1;
317 break;
318 case PERMIT_FORCED_ONLY:
319 if (forced_command) {
7cac2b65 320 logit("Root login accepted for forced command.");
3c0ef626 321 return 1;
322 }
323 break;
324 }
7cac2b65 325 logit("ROOT LOGIN REFUSED FROM %.200s", get_remote_ipaddr());
3c0ef626 326 return 0;
327}
328
329
330/*
331 * Given a template and a passwd structure, build a filename
332 * by substituting % tokenised options. Currently, %% becomes '%',
333 * %h becomes the home directory and %u the username.
334 *
335 * This returns a buffer allocated by xmalloc.
336 */
2ce0bfe4 337static char *
338expand_authorized_keys(const char *filename, struct passwd *pw)
3c0ef626 339{
2ce0bfe4 340 char *file, *ret;
3c0ef626 341
2ce0bfe4 342 file = percent_expand(filename, "h", pw->pw_dir,
343 "u", pw->pw_name, (char *)NULL);
3c0ef626 344
345 /*
346 * Ensure that filename starts anchored. If not, be backward
347 * compatible and prepend the '%h/'
348 */
2ce0bfe4 349 if (*file == '/')
350 return (file);
351
352 ret = xmalloc(MAXPATHLEN);
353 if (strlcpy(ret, pw->pw_dir, MAXPATHLEN) >= MAXPATHLEN ||
354 strlcat(ret, "/", MAXPATHLEN) >= MAXPATHLEN ||
355 strlcat(ret, file, MAXPATHLEN) >= MAXPATHLEN)
356 fatal("expand_authorized_keys: path too long");
3c0ef626 357
2ce0bfe4 358 xfree(file);
359 return (ret);
3c0ef626 360}
361
362char *
363authorized_keys_file(struct passwd *pw)
364{
2ce0bfe4 365 return expand_authorized_keys(options.authorized_keys_file, pw);
3c0ef626 366}
367
368char *
369authorized_keys_file2(struct passwd *pw)
370{
2ce0bfe4 371 return expand_authorized_keys(options.authorized_keys_file2, pw);
3c0ef626 372}
373
374/* return ok if key exists in sysfile or userfile */
375HostStatus
376check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
377 const char *sysfile, const char *userfile)
378{
379 Key *found;
380 char *user_hostfile;
381 struct stat st;
b8d1a091 382 HostStatus host_status;
3c0ef626 383
384 /* Check if we know the host and its host key. */
385 found = key_new(key->type);
386 host_status = check_host_in_hostfile(sysfile, host, key, found, NULL);
387
388 if (host_status != HOST_OK && userfile != NULL) {
389 user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
390 if (options.strict_modes &&
391 (stat(user_hostfile, &st) == 0) &&
392 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
b8d1a091 393 (st.st_mode & 022) != 0)) {
7cac2b65 394 logit("Authentication refused for %.100s: "
3c0ef626 395 "bad owner or modes for %.200s",
396 pw->pw_name, user_hostfile);
397 } else {
398 temporarily_use_uid(pw);
399 host_status = check_host_in_hostfile(user_hostfile,
400 host, key, found, NULL);
401 restore_uid();
402 }
403 xfree(user_hostfile);
404 }
405 key_free(found);
406
407 debug2("check_key_in_hostfiles: key %s for %s", host_status == HOST_OK ?
408 "ok" : "not found", host);
409 return host_status;
410}
411
412
413/*
414 * Check a given file for security. This is defined as all components
d03f4262 415 * of the path to the file must be owned by either the owner of
3c0ef626 416 * of the file or root and no directories must be group or world writable.
417 *
418 * XXX Should any specific check be done for sym links ?
419 *
420 * Takes an open file descriptor, the file name, a uid and and
421 * error buffer plus max size as arguments.
422 *
423 * Returns 0 on success and -1 on failure
424 */
425int
426secure_filename(FILE *f, const char *file, struct passwd *pw,
427 char *err, size_t errlen)
428{
429 uid_t uid = pw->pw_uid;
430 char buf[MAXPATHLEN], homedir[MAXPATHLEN];
431 char *cp;
bfe49944 432 int comparehome = 0;
3c0ef626 433 struct stat st;
434
435 if (realpath(file, buf) == NULL) {
436 snprintf(err, errlen, "realpath %s failed: %s", file,
437 strerror(errno));
438 return -1;
439 }
bfe49944 440 if (realpath(pw->pw_dir, homedir) != NULL)
441 comparehome = 1;
3c0ef626 442
443 /* check the open file to avoid races */
444 if (fstat(fileno(f), &st) < 0 ||
445 (st.st_uid != 0 && st.st_uid != uid) ||
446 (st.st_mode & 022) != 0) {
447 snprintf(err, errlen, "bad ownership or modes for file %s",
448 buf);
449 return -1;
450 }
451
452 /* for each component of the canonical path, walking upwards */
453 for (;;) {
454 if ((cp = dirname(buf)) == NULL) {
455 snprintf(err, errlen, "dirname() failed");
456 return -1;
457 }
458 strlcpy(buf, cp, sizeof(buf));
459
460 debug3("secure_filename: checking '%s'", buf);
461 if (stat(buf, &st) < 0 ||
462 (st.st_uid != 0 && st.st_uid != uid) ||
463 (st.st_mode & 022) != 0) {
b8d1a091 464 snprintf(err, errlen,
3c0ef626 465 "bad ownership or modes for directory %s", buf);
466 return -1;
467 }
468
469 /* If are passed the homedir then we can stop */
bfe49944 470 if (comparehome && strcmp(homedir, buf) == 0) {
3c0ef626 471 debug3("secure_filename: terminating check at '%s'",
472 buf);
473 break;
474 }
475 /*
476 * dirname should always complete with a "/" path,
477 * but we can be paranoid and check for "." too
478 */
479 if ((strcmp("/", buf) == 0) || (strcmp(".", buf) == 0))
480 break;
481 }
482 return 0;
483}
b8d1a091 484
485struct passwd *
486getpwnamallow(const char *user)
487{
488#ifdef HAVE_LOGIN_CAP
489 extern login_cap_t *lc;
490#ifdef BSD_AUTH
491 auth_session_t *as;
492#endif
493#endif
494 struct passwd *pw;
495
496 pw = getpwnam(user);
d03f4262 497 if (pw == NULL) {
7e82606e 498 logit("Invalid user %.100s from %.100s",
5885a49e 499 (user && user[0]) ? user : "<implicit>",
500 get_remote_ipaddr());
7cac2b65 501#ifdef CUSTOM_FAILED_LOGIN
dfddba3d 502 record_failed_login(user,
503 get_canonical_hostname(options.use_dns), "ssh");
bfe49944 504#endif
dfddba3d 505#ifdef SSH_AUDIT_EVENTS
506 audit_event(SSH_INVALID_USER);
507#endif /* SSH_AUDIT_EVENTS */
d03f4262 508 return (NULL);
509 }
510 if (!allowed_user(pw))
b8d1a091 511 return (NULL);
512#ifdef HAVE_LOGIN_CAP
513 if ((lc = login_getclass(pw->pw_class)) == NULL) {
514 debug("unable to get login class: %s", user);
515 return (NULL);
516 }
517#ifdef BSD_AUTH
518 if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
519 auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
520 debug("Approval failure for %s", user);
521 pw = NULL;
522 }
523 if (as != NULL)
524 auth_close(as);
525#endif
526#endif
527 if (pw != NULL)
528 return (pwcopy(pw));
529 return (NULL);
530}
531
532void
533auth_debug_add(const char *fmt,...)
534{
535 char buf[1024];
536 va_list args;
537
538 if (!auth_debug_init)
539 return;
540
541 va_start(args, fmt);
542 vsnprintf(buf, sizeof(buf), fmt, args);
543 va_end(args);
544 buffer_put_cstring(&auth_debug, buf);
545}
546
547void
548auth_debug_send(void)
549{
550 char *msg;
551
552 if (!auth_debug_init)
553 return;
554 while (buffer_len(&auth_debug)) {
555 msg = buffer_get_string(&auth_debug, NULL);
556 packet_send_debug("%s", msg);
557 xfree(msg);
558 }
559}
560
561void
562auth_debug_reset(void)
563{
564 if (auth_debug_init)
565 buffer_clear(&auth_debug);
566 else {
567 buffer_init(&auth_debug);
568 auth_debug_init = 1;
569 }
570}
7cac2b65 571
572struct passwd *
573fakepw(void)
574{
575 static struct passwd fake;
576
577 memset(&fake, 0, sizeof(fake));
578 fake.pw_name = "NOUSER";
579 fake.pw_passwd =
540d72c3 580 "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
7cac2b65 581 fake.pw_gecos = "NOUSER";
7e82606e 582 fake.pw_uid = (uid_t)-1;
583 fake.pw_gid = (gid_t)-1;
7cac2b65 584#ifdef HAVE_PW_CLASS_IN_PASSWD
585 fake.pw_class = "";
586#endif
587 fake.pw_dir = "/nonexist";
588 fake.pw_shell = "/nonexist";
589
590 return (&fake);
591}
This page took 0.143494 seconds and 5 git commands to generate.