]> andersk Git - openssh.git/blame - auth.c
- (dtucker) Move handling of bad password authentications into a platform
[openssh.git] / auth.c
CommitLineData
20d0f77f 1/*
f3c7c613 2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
bcbf86ec 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.
7368a6c8 23 */
24
25#include "includes.h"
f6f02456 26RCSID("$OpenBSD: auth.c,v 1.46 2002/11/04 10:07:53 markus Exp $");
7368a6c8 27
c1ef8333 28#ifdef HAVE_LOGIN_H
29#include <login.h>
30#endif
4cb5ffa0 31#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
32#include <shadow.h>
33#endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
7368a6c8 34
b4d02860 35#ifdef HAVE_LIBGEN_H
c8445989 36#include <libgen.h>
b4d02860 37#endif
c8445989 38
42f11eb2 39#include "xmalloc.h"
40#include "match.h"
41#include "groupaccess.h"
42#include "log.h"
43#include "servconf.h"
e78a59f5 44#include "auth.h"
59c97189 45#include "auth-options.h"
42f11eb2 46#include "canohost.h"
c8445989 47#include "buffer.h"
48#include "bufaux.h"
d0c8ca5c 49#include "uidswap.h"
50#include "tildexpand.h"
5f1f36b5 51#include "misc.h"
01dafcb5 52#include "bufaux.h"
53#include "packet.h"
e78a59f5 54
7368a6c8 55/* import */
56extern ServerOptions options;
7368a6c8 57
01dafcb5 58/* Debugging messages */
59Buffer auth_debug;
60int auth_debug_init;
61
7368a6c8 62/*
c6a69271 63 * Check if the user is allowed to log in via ssh. If user is listed
64 * in DenyUsers or one of user's groups is listed in DenyGroups, false
65 * will be returned. If AllowUsers isn't empty and user isn't listed
66 * there, or if AllowGroups isn't empty and one of user's groups isn't
67 * listed there, false will be returned.
7368a6c8 68 * If the user's shell is not executable, false will be returned.
6ae2364d 69 * Otherwise true is returned.
7368a6c8 70 */
a306f2dd 71int
7368a6c8 72allowed_user(struct passwd * pw)
73{
74 struct stat st;
5ed5468f 75 const char *hostname = NULL, *ipaddr = NULL;
614dee3a 76 char *shell;
7368a6c8 77 int i;
78#ifdef WITH_AIXAUTHENTICATE
79 char *loginmsg;
80#endif /* WITH_AIXAUTHENTICATE */
5ed5468f 81#if !defined(USE_PAM) && defined(HAVE_SHADOW_H) && \
82 !defined(DISABLE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
c6a69271 83 struct spwd *spw;
ad0279ff 84 time_t today;
e2ef2342 85#endif
7368a6c8 86
87 /* Shouldn't be called if pw is NULL, but better safe than sorry... */
c6a69271 88 if (!pw || !pw->pw_name)
7368a6c8 89 return 0;
90
b57c8e20 91#if !defined(USE_PAM) && defined(HAVE_SHADOW_H) && \
92 !defined(DISABLE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
93#define DAY (24L * 60 * 60) /* 1 day in seconds */
5ed5468f 94 if ((spw = getspnam(pw->pw_name)) != NULL) {
95 today = time(NULL) / DAY;
96 debug3("allowed_user: today %d sp_expire %d sp_lstchg %d"
97 " sp_max %d", (int)today, (int)spw->sp_expire,
98 (int)spw->sp_lstchg, (int)spw->sp_max);
b57c8e20 99
5ed5468f 100 /*
101 * We assume account and password expiration occurs the
102 * day after the day specified.
103 */
104 if (spw->sp_expire != -1 && today > spw->sp_expire) {
bbe88b6d 105 logit("Account %.100s has expired", pw->pw_name);
5ed5468f 106 return 0;
107 }
b57c8e20 108
5ed5468f 109 if (spw->sp_lstchg == 0) {
bbe88b6d 110 logit("User %.100s password has expired (root forced)",
5ed5468f 111 pw->pw_name);
112 return 0;
113 }
b57c8e20 114
5ed5468f 115 if (spw->sp_max != -1 &&
116 today > spw->sp_lstchg + spw->sp_max) {
bbe88b6d 117 logit("User %.100s password has expired (password aged)",
5ed5468f 118 pw->pw_name);
119 return 0;
120 }
b57c8e20 121 }
122#endif
123
301e9b01 124 /*
125 * Get the shell from the password data. An empty shell field is
126 * legal, and means /bin/sh.
127 */
128 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
129
130 /* deny if shell does not exists or is not executable */
b334badd 131 if (stat(shell, &st) != 0) {
bbe88b6d 132 logit("User %.100s not allowed because shell %.100s does not exist",
b334badd 133 pw->pw_name, shell);
7368a6c8 134 return 0;
b334badd 135 }
c390a3c8 136 if (S_ISREG(st.st_mode) == 0 ||
137 (st.st_mode & (S_IXOTH|S_IXUSR|S_IXGRP)) == 0) {
bbe88b6d 138 logit("User %.100s not allowed because shell %.100s is not executable",
b334badd 139 pw->pw_name, shell);
7368a6c8 140 return 0;
b334badd 141 }
7368a6c8 142
6805fc56 143 if (options.num_deny_users > 0 || options.num_allow_users > 0) {
144 hostname = get_canonical_hostname(options.verify_reverse_mapping);
145 ipaddr = get_remote_ipaddr();
146 }
147
7368a6c8 148 /* Return false if user is listed in DenyUsers */
149 if (options.num_deny_users > 0) {
7368a6c8 150 for (i = 0; i < options.num_deny_users; i++)
762715ce 151 if (match_user(pw->pw_name, hostname, ipaddr,
b334badd 152 options.deny_users[i])) {
bbe88b6d 153 logit("User %.100s not allowed because listed in DenyUsers",
762715ce 154 pw->pw_name);
7368a6c8 155 return 0;
b334badd 156 }
7368a6c8 157 }
158 /* Return false if AllowUsers isn't empty and user isn't listed there */
159 if (options.num_allow_users > 0) {
7368a6c8 160 for (i = 0; i < options.num_allow_users; i++)
762715ce 161 if (match_user(pw->pw_name, hostname, ipaddr,
80f8f24f 162 options.allow_users[i]))
7368a6c8 163 break;
164 /* i < options.num_allow_users iff we break for loop */
b334badd 165 if (i >= options.num_allow_users) {
bbe88b6d 166 logit("User %.100s not allowed because not listed in AllowUsers",
b334badd 167 pw->pw_name);
7368a6c8 168 return 0;
b334badd 169 }
7368a6c8 170 }
7368a6c8 171 if (options.num_deny_groups > 0 || options.num_allow_groups > 0) {
c6a69271 172 /* Get the user's group access list (primary and supplementary) */
b334badd 173 if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
bbe88b6d 174 logit("User %.100s not allowed because not in any group",
b334badd 175 pw->pw_name);
7368a6c8 176 return 0;
b334badd 177 }
7368a6c8 178
c6a69271 179 /* Return false if one of user's groups is listed in DenyGroups */
180 if (options.num_deny_groups > 0)
181 if (ga_match(options.deny_groups,
182 options.num_deny_groups)) {
183 ga_free();
bbe88b6d 184 logit("User %.100s not allowed because a group is listed in DenyGroups",
b334badd 185 pw->pw_name);
7368a6c8 186 return 0;
c6a69271 187 }
7368a6c8 188 /*
c6a69271 189 * Return false if AllowGroups isn't empty and one of user's groups
7368a6c8 190 * isn't listed there
191 */
c6a69271 192 if (options.num_allow_groups > 0)
193 if (!ga_match(options.allow_groups,
194 options.num_allow_groups)) {
195 ga_free();
bbe88b6d 196 logit("User %.100s not allowed because none of user's groups are listed in AllowGroups",
b334badd 197 pw->pw_name);
7368a6c8 198 return 0;
c6a69271 199 }
200 ga_free();
7368a6c8 201 }
202
203#ifdef WITH_AIXAUTHENTICATE
f3e87063 204 /*
205 * Don't check loginrestrictions() for root account (use
206 * PermitRootLogin to control logins via ssh), or if running as
207 * non-root user (since loginrestrictions will always fail).
208 */
5ed5468f 209 if ((pw->pw_uid != 0) && (geteuid() == 0) &&
f3e87063 210 loginrestrictions(pw->pw_name, S_RLOGIN, NULL, &loginmsg) != 0) {
99f4fb69 211 int loginrestrict_errno = errno;
212
c1ef8333 213 if (loginmsg && *loginmsg) {
214 /* Remove embedded newlines (if any) */
215 char *p;
5daf7064 216 for (p = loginmsg; *p; p++) {
c1ef8333 217 if (*p == '\n')
218 *p = ' ';
5daf7064 219 }
c1ef8333 220 /* Remove trailing newline */
221 *--p = '\0';
bbe88b6d 222 logit("Login restricted for %s: %.100s", pw->pw_name,
99f4fb69 223 loginmsg);
c1ef8333 224 }
99f4fb69 225 /* Don't fail if /etc/nologin set */
226 if (!(loginrestrict_errno == EPERM &&
227 stat(_PATH_NOLOGIN, &st) == 0))
228 return 0;
c1ef8333 229 }
7368a6c8 230#endif /* WITH_AIXAUTHENTICATE */
231
232 /* We found no reason not to let this user try to log on... */
233 return 1;
234}
59c97189 235
236Authctxt *
237authctxt_new(void)
238{
2b87da3b 239 Authctxt *authctxt = xmalloc(sizeof(*authctxt));
240 memset(authctxt, 0, sizeof(*authctxt));
241 return authctxt;
59c97189 242}
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
250 /* Raise logging level */
251 if (authenticated == 1 ||
252 !authctxt->valid ||
253 authctxt->failures >= AUTH_FAIL_LOG ||
254 strcmp(method, "password") == 0)
a3568201 255 authlog = logit;
59c97189 256
257 if (authctxt->postponed)
258 authmsg = "Postponed";
259 else
260 authmsg = authenticated ? "Accepted" : "Failed";
261
262 authlog("%s %s for %s%.100s from %.200s port %d%s",
263 authmsg,
264 method,
265 authctxt->valid ? "" : "illegal user ",
fad3754c 266 authctxt->user,
59c97189 267 get_remote_ipaddr(),
268 get_remote_port(),
269 info);
56fd97d7 270
73d9dad3 271#ifdef CUSTOM_FAILED_LOGIN
56fd97d7 272 if (authenticated == 0 && strcmp(method, "password") == 0)
73d9dad3 273 record_failed_login(authctxt->user, "ssh");
274#endif
59c97189 275}
276
277/*
15853e93 278 * Check whether root logins are disallowed.
59c97189 279 */
280int
15853e93 281auth_root_allowed(char *method)
59c97189 282{
15853e93 283 switch (options.permit_root_login) {
284 case PERMIT_YES:
59c97189 285 return 1;
15853e93 286 break;
287 case PERMIT_NO_PASSWD:
288 if (strcmp(method, "password") != 0)
289 return 1;
290 break;
291 case PERMIT_FORCED_ONLY:
292 if (forced_command) {
bbe88b6d 293 logit("Root login accepted for forced command.");
15853e93 294 return 1;
295 }
296 break;
59c97189 297 }
bbe88b6d 298 logit("ROOT LOGIN REFUSED FROM %.200s", get_remote_ipaddr());
15853e93 299 return 0;
59c97189 300}
c8445989 301
302
303/*
304 * Given a template and a passwd structure, build a filename
305 * by substituting % tokenised options. Currently, %% becomes '%',
306 * %h becomes the home directory and %u the username.
307 *
308 * This returns a buffer allocated by xmalloc.
309 */
310char *
311expand_filename(const char *filename, struct passwd *pw)
312{
313 Buffer buffer;
314 char *file;
315 const char *cp;
316
317 /*
318 * Build the filename string in the buffer by making the appropriate
319 * substitutions to the given file name.
320 */
321 buffer_init(&buffer);
322 for (cp = filename; *cp; cp++) {
323 if (cp[0] == '%' && cp[1] == '%') {
324 buffer_append(&buffer, "%", 1);
325 cp++;
326 continue;
327 }
328 if (cp[0] == '%' && cp[1] == 'h') {
329 buffer_append(&buffer, pw->pw_dir, strlen(pw->pw_dir));
330 cp++;
331 continue;
332 }
333 if (cp[0] == '%' && cp[1] == 'u') {
334 buffer_append(&buffer, pw->pw_name,
184eed6a 335 strlen(pw->pw_name));
c8445989 336 cp++;
337 continue;
338 }
339 buffer_append(&buffer, cp, 1);
340 }
341 buffer_append(&buffer, "\0", 1);
342
343 /*
344 * Ensure that filename starts anchored. If not, be backward
345 * compatible and prepend the '%h/'
346 */
347 file = xmalloc(MAXPATHLEN);
348 cp = buffer_ptr(&buffer);
349 if (*cp != '/')
350 snprintf(file, MAXPATHLEN, "%s/%s", pw->pw_dir, cp);
351 else
352 strlcpy(file, cp, MAXPATHLEN);
353
354 buffer_free(&buffer);
355 return file;
356}
357
358char *
359authorized_keys_file(struct passwd *pw)
360{
361 return expand_filename(options.authorized_keys_file, pw);
362}
363
364char *
365authorized_keys_file2(struct passwd *pw)
366{
367 return expand_filename(options.authorized_keys_file2, pw);
368}
369
d0c8ca5c 370/* return ok if key exists in sysfile or userfile */
371HostStatus
372check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
373 const char *sysfile, const char *userfile)
374{
375 Key *found;
376 char *user_hostfile;
377 struct stat st;
17a3011c 378 HostStatus host_status;
d0c8ca5c 379
380 /* Check if we know the host and its host key. */
381 found = key_new(key->type);
382 host_status = check_host_in_hostfile(sysfile, host, key, found, NULL);
383
384 if (host_status != HOST_OK && userfile != NULL) {
385 user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
386 if (options.strict_modes &&
387 (stat(user_hostfile, &st) == 0) &&
388 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
184eed6a 389 (st.st_mode & 022) != 0)) {
bbe88b6d 390 logit("Authentication refused for %.100s: "
d0c8ca5c 391 "bad owner or modes for %.200s",
392 pw->pw_name, user_hostfile);
393 } else {
394 temporarily_use_uid(pw);
395 host_status = check_host_in_hostfile(user_hostfile,
396 host, key, found, NULL);
397 restore_uid();
398 }
399 xfree(user_hostfile);
400 }
401 key_free(found);
402
403 debug2("check_key_in_hostfiles: key %s for %s", host_status == HOST_OK ?
404 "ok" : "not found", host);
405 return host_status;
406}
407
408
c8445989 409/*
410 * Check a given file for security. This is defined as all components
d6097023 411 * of the path to the file must be owned by either the owner of
1ddf764b 412 * of the file or root and no directories must be group or world writable.
c8445989 413 *
414 * XXX Should any specific check be done for sym links ?
415 *
416 * Takes an open file descriptor, the file name, a uid and and
417 * error buffer plus max size as arguments.
418 *
419 * Returns 0 on success and -1 on failure
420 */
421int
6978866a 422secure_filename(FILE *f, const char *file, struct passwd *pw,
423 char *err, size_t errlen)
c8445989 424{
6978866a 425 uid_t uid = pw->pw_uid;
76fbdd47 426 char buf[MAXPATHLEN], homedir[MAXPATHLEN];
c8445989 427 char *cp;
f6f02456 428 int comparehome = 0;
c8445989 429 struct stat st;
430
431 if (realpath(file, buf) == NULL) {
432 snprintf(err, errlen, "realpath %s failed: %s", file,
433 strerror(errno));
434 return -1;
435 }
f6f02456 436 if (realpath(pw->pw_dir, homedir) != NULL)
437 comparehome = 1;
c8445989 438
439 /* check the open file to avoid races */
440 if (fstat(fileno(f), &st) < 0 ||
441 (st.st_uid != 0 && st.st_uid != uid) ||
442 (st.st_mode & 022) != 0) {
443 snprintf(err, errlen, "bad ownership or modes for file %s",
444 buf);
445 return -1;
446 }
447
448 /* for each component of the canonical path, walking upwards */
449 for (;;) {
450 if ((cp = dirname(buf)) == NULL) {
451 snprintf(err, errlen, "dirname() failed");
452 return -1;
453 }
454 strlcpy(buf, cp, sizeof(buf));
455
456 debug3("secure_filename: checking '%s'", buf);
457 if (stat(buf, &st) < 0 ||
458 (st.st_uid != 0 && st.st_uid != uid) ||
459 (st.st_mode & 022) != 0) {
184eed6a 460 snprintf(err, errlen,
c8445989 461 "bad ownership or modes for directory %s", buf);
462 return -1;
463 }
464
afd501f9 465 /* If are passed the homedir then we can stop */
f6f02456 466 if (comparehome && strcmp(homedir, buf) == 0) {
afd501f9 467 debug3("secure_filename: terminating check at '%s'",
468 buf);
469 break;
470 }
c8445989 471 /*
472 * dirname should always complete with a "/" path,
473 * but we can be paranoid and check for "." too
474 */
475 if ((strcmp("/", buf) == 0) || (strcmp(".", buf) == 0))
476 break;
477 }
478 return 0;
479}
443fa1cd 480
481struct passwd *
482getpwnamallow(const char *user)
483{
1836f69f 484#ifdef HAVE_LOGIN_CAP
485 extern login_cap_t *lc;
486#ifdef BSD_AUTH
487 auth_session_t *as;
488#endif
489#endif
443fa1cd 490 struct passwd *pw;
491
492 pw = getpwnam(user);
c2802d92 493 if (pw == NULL) {
bbe88b6d 494 logit("Illegal user %.100s from %.100s",
c2802d92 495 user, get_remote_ipaddr());
73d9dad3 496#ifdef CUSTOM_FAILED_LOGIN
497 record_failed_login(user, "ssh");
819d3f09 498#endif
c2802d92 499 return (NULL);
500 }
501 if (!allowed_user(pw))
1836f69f 502 return (NULL);
503#ifdef HAVE_LOGIN_CAP
504 if ((lc = login_getclass(pw->pw_class)) == NULL) {
505 debug("unable to get login class: %s", user);
506 return (NULL);
507 }
508#ifdef BSD_AUTH
509 if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
65721f9c 510 auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
1836f69f 511 debug("Approval failure for %s", user);
443fa1cd 512 pw = NULL;
1836f69f 513 }
514 if (as != NULL)
515 auth_close(as);
516#endif
517#endif
06bea668 518 if (pw != NULL)
519 return (pwcopy(pw));
520 return (NULL);
443fa1cd 521}
01dafcb5 522
523void
524auth_debug_add(const char *fmt,...)
525{
526 char buf[1024];
527 va_list args;
528
529 if (!auth_debug_init)
530 return;
531
532 va_start(args, fmt);
533 vsnprintf(buf, sizeof(buf), fmt, args);
534 va_end(args);
535 buffer_put_cstring(&auth_debug, buf);
536}
537
538void
539auth_debug_send(void)
540{
541 char *msg;
542
543 if (!auth_debug_init)
544 return;
545 while (buffer_len(&auth_debug)) {
546 msg = buffer_get_string(&auth_debug, NULL);
547 packet_send_debug("%s", msg);
548 xfree(msg);
549 }
550}
551
552void
553auth_debug_reset(void)
554{
555 if (auth_debug_init)
556 buffer_clear(&auth_debug);
557 else {
558 buffer_init(&auth_debug);
559 auth_debug_init = 1;
560 }
561}
This page took 0.229163 seconds and 5 git commands to generate.