]> andersk Git - openssh.git/blame - auth.c
- deraadt@cvs.openbsd.org 2006/08/03 03:34:42
[openssh.git] / auth.c
CommitLineData
31652869 1/* $OpenBSD: auth.c,v 1.75 2006/08/03 03:34:41 deraadt Exp $ */
20d0f77f 2/*
f3c7c613 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
bcbf86ec 4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7368a6c8 24 */
25
26#include "includes.h"
4095f623 27
28#include <sys/types.h>
29#include <sys/stat.h>
536c14e8 30#include <sys/param.h>
7368a6c8 31
028094f4 32#include <errno.h>
a75f5360 33#ifdef HAVE_PATHS_H
6f61e0ec 34# include <paths.h>
a75f5360 35#endif
b1842393 36#include <pwd.h>
c1ef8333 37#ifdef HAVE_LOGIN_H
38#include <login.h>
39#endif
f14ca4a4 40#ifdef USE_SHADOW
4cb5ffa0 41#include <shadow.h>
f14ca4a4 42#endif
b4d02860 43#ifdef HAVE_LIBGEN_H
c8445989 44#include <libgen.h>
b4d02860 45#endif
4c72fcfd 46#include <stdarg.h>
cf851879 47#include <stdio.h>
00146caa 48#include <string.h>
c8445989 49
42f11eb2 50#include "xmalloc.h"
51#include "match.h"
52#include "groupaccess.h"
53#include "log.h"
31652869 54#include "buffer.h"
42f11eb2 55#include "servconf.h"
31652869 56#include "key.h"
57#include "hostfile.h"
e78a59f5 58#include "auth.h"
59c97189 59#include "auth-options.h"
42f11eb2 60#include "canohost.h"
d0c8ca5c 61#include "uidswap.h"
5f1f36b5 62#include "misc.h"
01dafcb5 63#include "bufaux.h"
64#include "packet.h"
575e336f 65#include "loginrec.h"
31652869 66#ifdef GSSAPI
67#include "ssh-gss.h"
68#endif
c00e4d75 69#include "monitor_wrap.h"
e78a59f5 70
7368a6c8 71/* import */
72extern ServerOptions options;
c023a130 73extern int use_privsep;
bc7dfc06 74extern Buffer loginmsg;
7368a6c8 75
01dafcb5 76/* Debugging messages */
77Buffer auth_debug;
78int auth_debug_init;
79
7368a6c8 80/*
c6a69271 81 * Check if the user is allowed to log in via ssh. If user is listed
82 * in DenyUsers or one of user's groups is listed in DenyGroups, false
83 * will be returned. If AllowUsers isn't empty and user isn't listed
84 * there, or if AllowGroups isn't empty and one of user's groups isn't
85 * listed there, false will be returned.
7368a6c8 86 * If the user's shell is not executable, false will be returned.
6ae2364d 87 * Otherwise true is returned.
7368a6c8 88 */
a306f2dd 89int
7368a6c8 90allowed_user(struct passwd * pw)
91{
92 struct stat st;
da67ae18 93 const char *hostname = NULL, *ipaddr = NULL, *passwd = NULL;
614dee3a 94 char *shell;
2ceb8101 95 u_int i;
f14ca4a4 96#ifdef USE_SHADOW
3e6e3da0 97 struct spwd *spw = NULL;
e2ef2342 98#endif
7368a6c8 99
100 /* Shouldn't be called if pw is NULL, but better safe than sorry... */
c6a69271 101 if (!pw || !pw->pw_name)
7368a6c8 102 return 0;
103
f14ca4a4 104#ifdef USE_SHADOW
3e6e3da0 105 if (!options.use_pam)
106 spw = getspnam(pw->pw_name);
107#ifdef HAS_SHADOW_EXPIRE
f14ca4a4 108 if (!options.use_pam && spw != NULL && auth_shadow_acctexpired(spw))
109 return 0;
3e6e3da0 110#endif /* HAS_SHADOW_EXPIRE */
f14ca4a4 111#endif /* USE_SHADOW */
3e6e3da0 112
aff51935 113 /* grab passwd field for locked account check */
f14ca4a4 114#ifdef USE_SHADOW
3e6e3da0 115 if (spw != NULL)
26d07095 116#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
4c653d8e 117 passwd = get_iaf_password(pw);
118#else
3e6e3da0 119 passwd = spw->sp_pwdp;
26d07095 120#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
3e6e3da0 121#else
122 passwd = pw->pw_passwd;
b57c8e20 123#endif
124
aff51935 125 /* check for locked account */
da67ae18 126 if (!options.use_pam && passwd && *passwd) {
3e6e3da0 127 int locked = 0;
128
129#ifdef LOCKED_PASSWD_STRING
130 if (strcmp(passwd, LOCKED_PASSWD_STRING) == 0)
131 locked = 1;
132#endif
133#ifdef LOCKED_PASSWD_PREFIX
134 if (strncmp(passwd, LOCKED_PASSWD_PREFIX,
135 strlen(LOCKED_PASSWD_PREFIX)) == 0)
136 locked = 1;
137#endif
138#ifdef LOCKED_PASSWD_SUBSTR
139 if (strstr(passwd, LOCKED_PASSWD_SUBSTR))
140 locked = 1;
141#endif
26d07095 142#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
143 free(passwd);
144#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
3e6e3da0 145 if (locked) {
146 logit("User %.100s not allowed because account is locked",
147 pw->pw_name);
148 return 0;
149 }
150 }
151
301e9b01 152 /*
153 * Get the shell from the password data. An empty shell field is
154 * legal, and means /bin/sh.
155 */
156 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
157
158 /* deny if shell does not exists or is not executable */
b334badd 159 if (stat(shell, &st) != 0) {
bbe88b6d 160 logit("User %.100s not allowed because shell %.100s does not exist",
b334badd 161 pw->pw_name, shell);
7368a6c8 162 return 0;
b334badd 163 }
c390a3c8 164 if (S_ISREG(st.st_mode) == 0 ||
165 (st.st_mode & (S_IXOTH|S_IXUSR|S_IXGRP)) == 0) {
bbe88b6d 166 logit("User %.100s not allowed because shell %.100s is not executable",
b334badd 167 pw->pw_name, shell);
7368a6c8 168 return 0;
b334badd 169 }
7368a6c8 170
2dcbac07 171 if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
172 options.num_deny_groups > 0 || options.num_allow_groups > 0) {
c5a7d788 173 hostname = get_canonical_hostname(options.use_dns);
6805fc56 174 ipaddr = get_remote_ipaddr();
175 }
176
7368a6c8 177 /* Return false if user is listed in DenyUsers */
178 if (options.num_deny_users > 0) {
7368a6c8 179 for (i = 0; i < options.num_deny_users; i++)
762715ce 180 if (match_user(pw->pw_name, hostname, ipaddr,
b334badd 181 options.deny_users[i])) {
31de8b2b 182 logit("User %.100s from %.100s not allowed "
183 "because listed in DenyUsers",
184 pw->pw_name, hostname);
7368a6c8 185 return 0;
b334badd 186 }
7368a6c8 187 }
188 /* Return false if AllowUsers isn't empty and user isn't listed there */
189 if (options.num_allow_users > 0) {
7368a6c8 190 for (i = 0; i < options.num_allow_users; i++)
762715ce 191 if (match_user(pw->pw_name, hostname, ipaddr,
80f8f24f 192 options.allow_users[i]))
7368a6c8 193 break;
194 /* i < options.num_allow_users iff we break for loop */
b334badd 195 if (i >= options.num_allow_users) {
31de8b2b 196 logit("User %.100s from %.100s not allowed because "
197 "not listed in AllowUsers", pw->pw_name, hostname);
7368a6c8 198 return 0;
b334badd 199 }
7368a6c8 200 }
7368a6c8 201 if (options.num_deny_groups > 0 || options.num_allow_groups > 0) {
c6a69271 202 /* Get the user's group access list (primary and supplementary) */
b334badd 203 if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
31de8b2b 204 logit("User %.100s from %.100s not allowed because "
205 "not in any group", pw->pw_name, hostname);
7368a6c8 206 return 0;
b334badd 207 }
7368a6c8 208
c6a69271 209 /* Return false if one of user's groups is listed in DenyGroups */
210 if (options.num_deny_groups > 0)
211 if (ga_match(options.deny_groups,
212 options.num_deny_groups)) {
213 ga_free();
31de8b2b 214 logit("User %.100s from %.100s not allowed "
215 "because a group is listed in DenyGroups",
216 pw->pw_name, hostname);
7368a6c8 217 return 0;
c6a69271 218 }
7368a6c8 219 /*
c6a69271 220 * Return false if AllowGroups isn't empty and one of user's groups
7368a6c8 221 * isn't listed there
222 */
c6a69271 223 if (options.num_allow_groups > 0)
224 if (!ga_match(options.allow_groups,
225 options.num_allow_groups)) {
226 ga_free();
31de8b2b 227 logit("User %.100s from %.100s not allowed "
228 "because none of user's groups are listed "
229 "in AllowGroups", pw->pw_name, hostname);
7368a6c8 230 return 0;
c6a69271 231 }
232 ga_free();
7368a6c8 233 }
234
bc5c2025 235#ifdef CUSTOM_SYS_AUTH_ALLOWED_USER
5ccf88cb 236 if (!sys_auth_allowed_user(pw, &loginmsg))
bc5c2025 237 return 0;
238#endif
7368a6c8 239
240 /* We found no reason not to let this user try to log on... */
241 return 1;
242}
59c97189 243
59c97189 244void
245auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
246{
247 void (*authlog) (const char *fmt,...) = verbose;
248 char *authmsg;
249
c023a130 250 if (use_privsep && !mm_is_monitor() && !authctxt->postponed)
251 return;
252
59c97189 253 /* Raise logging level */
254 if (authenticated == 1 ||
255 !authctxt->valid ||
af4bd935 256 authctxt->failures >= options.max_authtries / 2 ||
59c97189 257 strcmp(method, "password") == 0)
a3568201 258 authlog = logit;
59c97189 259
260 if (authctxt->postponed)
261 authmsg = "Postponed";
262 else
263 authmsg = authenticated ? "Accepted" : "Failed";
264
265 authlog("%s %s for %s%.100s from %.200s port %d%s",
266 authmsg,
267 method,
d77347cc 268 authctxt->valid ? "" : "invalid user ",
fad3754c 269 authctxt->user,
59c97189 270 get_remote_ipaddr(),
271 get_remote_port(),
272 info);
56fd97d7 273
73d9dad3 274#ifdef CUSTOM_FAILED_LOGIN
b6610e8f 275 if (authenticated == 0 && !authctxt->postponed &&
276 (strcmp(method, "password") == 0 ||
6af6e631 277 strncmp(method, "keyboard-interactive", 20) == 0 ||
278 strcmp(method, "challenge-response") == 0))
575e336f 279 record_failed_login(authctxt->user,
280 get_canonical_hostname(options.use_dns), "ssh");
73d9dad3 281#endif
6039eeef 282#ifdef SSH_AUDIT_EVENTS
2ae7f715 283 if (authenticated == 0 && !authctxt->postponed)
284 audit_event(audit_classify_auth(method));
c00e4d75 285#endif
59c97189 286}
287
288/*
15853e93 289 * Check whether root logins are disallowed.
59c97189 290 */
291int
15853e93 292auth_root_allowed(char *method)
59c97189 293{
15853e93 294 switch (options.permit_root_login) {
295 case PERMIT_YES:
59c97189 296 return 1;
15853e93 297 case PERMIT_NO_PASSWD:
298 if (strcmp(method, "password") != 0)
299 return 1;
300 break;
301 case PERMIT_FORCED_ONLY:
302 if (forced_command) {
bbe88b6d 303 logit("Root login accepted for forced command.");
15853e93 304 return 1;
305 }
306 break;
59c97189 307 }
bbe88b6d 308 logit("ROOT LOGIN REFUSED FROM %.200s", get_remote_ipaddr());
15853e93 309 return 0;
59c97189 310}
c8445989 311
312
313/*
314 * Given a template and a passwd structure, build a filename
315 * by substituting % tokenised options. Currently, %% becomes '%',
316 * %h becomes the home directory and %u the username.
317 *
318 * This returns a buffer allocated by xmalloc.
319 */
a980cbd7 320static char *
321expand_authorized_keys(const char *filename, struct passwd *pw)
c8445989 322{
52e3daed 323 char *file, ret[MAXPATHLEN];
324 int i;
c8445989 325
a980cbd7 326 file = percent_expand(filename, "h", pw->pw_dir,
327 "u", pw->pw_name, (char *)NULL);
c8445989 328
329 /*
330 * Ensure that filename starts anchored. If not, be backward
331 * compatible and prepend the '%h/'
332 */
a980cbd7 333 if (*file == '/')
334 return (file);
335
52e3daed 336 i = snprintf(ret, sizeof(ret), "%s/%s", pw->pw_dir, file);
337 if (i < 0 || (size_t)i >= sizeof(ret))
a980cbd7 338 fatal("expand_authorized_keys: path too long");
a980cbd7 339 xfree(file);
52e3daed 340 return (xstrdup(ret));
c8445989 341}
342
343char *
344authorized_keys_file(struct passwd *pw)
345{
a980cbd7 346 return expand_authorized_keys(options.authorized_keys_file, pw);
c8445989 347}
348
349char *
350authorized_keys_file2(struct passwd *pw)
351{
a980cbd7 352 return expand_authorized_keys(options.authorized_keys_file2, pw);
c8445989 353}
354
d0c8ca5c 355/* return ok if key exists in sysfile or userfile */
356HostStatus
357check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
358 const char *sysfile, const char *userfile)
359{
360 Key *found;
361 char *user_hostfile;
362 struct stat st;
17a3011c 363 HostStatus host_status;
d0c8ca5c 364
365 /* Check if we know the host and its host key. */
366 found = key_new(key->type);
367 host_status = check_host_in_hostfile(sysfile, host, key, found, NULL);
368
369 if (host_status != HOST_OK && userfile != NULL) {
370 user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
371 if (options.strict_modes &&
372 (stat(user_hostfile, &st) == 0) &&
373 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
184eed6a 374 (st.st_mode & 022) != 0)) {
bbe88b6d 375 logit("Authentication refused for %.100s: "
d0c8ca5c 376 "bad owner or modes for %.200s",
377 pw->pw_name, user_hostfile);
378 } else {
379 temporarily_use_uid(pw);
380 host_status = check_host_in_hostfile(user_hostfile,
381 host, key, found, NULL);
382 restore_uid();
383 }
384 xfree(user_hostfile);
385 }
386 key_free(found);
387
388 debug2("check_key_in_hostfiles: key %s for %s", host_status == HOST_OK ?
389 "ok" : "not found", host);
390 return host_status;
391}
392
393
c8445989 394/*
395 * Check a given file for security. This is defined as all components
d6097023 396 * of the path to the file must be owned by either the owner of
1ddf764b 397 * of the file or root and no directories must be group or world writable.
c8445989 398 *
399 * XXX Should any specific check be done for sym links ?
400 *
401 * Takes an open file descriptor, the file name, a uid and and
402 * error buffer plus max size as arguments.
403 *
404 * Returns 0 on success and -1 on failure
405 */
406int
6978866a 407secure_filename(FILE *f, const char *file, struct passwd *pw,
408 char *err, size_t errlen)
c8445989 409{
6978866a 410 uid_t uid = pw->pw_uid;
76fbdd47 411 char buf[MAXPATHLEN], homedir[MAXPATHLEN];
c8445989 412 char *cp;
f6f02456 413 int comparehome = 0;
c8445989 414 struct stat st;
415
416 if (realpath(file, buf) == NULL) {
417 snprintf(err, errlen, "realpath %s failed: %s", file,
418 strerror(errno));
419 return -1;
420 }
f6f02456 421 if (realpath(pw->pw_dir, homedir) != NULL)
422 comparehome = 1;
c8445989 423
424 /* check the open file to avoid races */
425 if (fstat(fileno(f), &st) < 0 ||
426 (st.st_uid != 0 && st.st_uid != uid) ||
427 (st.st_mode & 022) != 0) {
428 snprintf(err, errlen, "bad ownership or modes for file %s",
429 buf);
430 return -1;
431 }
432
433 /* for each component of the canonical path, walking upwards */
434 for (;;) {
435 if ((cp = dirname(buf)) == NULL) {
436 snprintf(err, errlen, "dirname() failed");
437 return -1;
438 }
439 strlcpy(buf, cp, sizeof(buf));
440
441 debug3("secure_filename: checking '%s'", buf);
442 if (stat(buf, &st) < 0 ||
443 (st.st_uid != 0 && st.st_uid != uid) ||
444 (st.st_mode & 022) != 0) {
184eed6a 445 snprintf(err, errlen,
c8445989 446 "bad ownership or modes for directory %s", buf);
447 return -1;
448 }
449
afd501f9 450 /* If are passed the homedir then we can stop */
f6f02456 451 if (comparehome && strcmp(homedir, buf) == 0) {
afd501f9 452 debug3("secure_filename: terminating check at '%s'",
453 buf);
454 break;
455 }
c8445989 456 /*
457 * dirname should always complete with a "/" path,
458 * but we can be paranoid and check for "." too
459 */
460 if ((strcmp("/", buf) == 0) || (strcmp(".", buf) == 0))
461 break;
462 }
463 return 0;
464}
443fa1cd 465
466struct passwd *
467getpwnamallow(const char *user)
468{
1836f69f 469#ifdef HAVE_LOGIN_CAP
470 extern login_cap_t *lc;
471#ifdef BSD_AUTH
472 auth_session_t *as;
473#endif
474#endif
443fa1cd 475 struct passwd *pw;
476
d231781a 477 parse_server_match_config(&options, user,
478 get_canonical_hostname(options.use_dns), get_remote_ipaddr());
479
443fa1cd 480 pw = getpwnam(user);
c2802d92 481 if (pw == NULL) {
227a6a97 482 logit("Invalid user %.100s from %.100s",
c2802d92 483 user, get_remote_ipaddr());
73d9dad3 484#ifdef CUSTOM_FAILED_LOGIN
575e336f 485 record_failed_login(user,
486 get_canonical_hostname(options.use_dns), "ssh");
819d3f09 487#endif
6039eeef 488#ifdef SSH_AUDIT_EVENTS
489 audit_event(SSH_INVALID_USER);
490#endif /* SSH_AUDIT_EVENTS */
c2802d92 491 return (NULL);
492 }
493 if (!allowed_user(pw))
1836f69f 494 return (NULL);
495#ifdef HAVE_LOGIN_CAP
496 if ((lc = login_getclass(pw->pw_class)) == NULL) {
497 debug("unable to get login class: %s", user);
498 return (NULL);
499 }
500#ifdef BSD_AUTH
501 if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
65721f9c 502 auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
1836f69f 503 debug("Approval failure for %s", user);
443fa1cd 504 pw = NULL;
1836f69f 505 }
506 if (as != NULL)
507 auth_close(as);
508#endif
509#endif
06bea668 510 if (pw != NULL)
511 return (pwcopy(pw));
512 return (NULL);
443fa1cd 513}
01dafcb5 514
515void
516auth_debug_add(const char *fmt,...)
517{
518 char buf[1024];
519 va_list args;
520
521 if (!auth_debug_init)
522 return;
523
524 va_start(args, fmt);
525 vsnprintf(buf, sizeof(buf), fmt, args);
526 va_end(args);
527 buffer_put_cstring(&auth_debug, buf);
528}
529
530void
531auth_debug_send(void)
532{
533 char *msg;
534
535 if (!auth_debug_init)
536 return;
537 while (buffer_len(&auth_debug)) {
538 msg = buffer_get_string(&auth_debug, NULL);
539 packet_send_debug("%s", msg);
540 xfree(msg);
541 }
542}
543
544void
545auth_debug_reset(void)
546{
547 if (auth_debug_init)
548 buffer_clear(&auth_debug);
549 else {
550 buffer_init(&auth_debug);
551 auth_debug_init = 1;
552 }
553}
96d0bf74 554
555struct passwd *
556fakepw(void)
557{
558 static struct passwd fake;
559
560 memset(&fake, 0, sizeof(fake));
561 fake.pw_name = "NOUSER";
562 fake.pw_passwd =
b6453d99 563 "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
96d0bf74 564 fake.pw_gecos = "NOUSER";
f6be21a0 565 fake.pw_uid = (uid_t)-1;
566 fake.pw_gid = (gid_t)-1;
96d0bf74 567#ifdef HAVE_PW_CLASS_IN_PASSWD
568 fake.pw_class = "";
569#endif
570 fake.pw_dir = "/nonexist";
571 fake.pw_shell = "/nonexist";
572
573 return (&fake);
574}
This page took 0.40116 seconds and 5 git commands to generate.