]> andersk Git - openssh.git/blame - auth.c
- (djm) Bug #539: Specify creation mode with O_CREAT for lastlog. Report
[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
271#ifdef WITH_AIXAUTHENTICATE
272 if (authenticated == 0 && strcmp(method, "password") == 0)
273 loginfailed(authctxt->user,
274 get_canonical_hostname(options.verify_reverse_mapping),
275 "ssh");
276#endif /* WITH_AIXAUTHENTICATE */
277
59c97189 278}
279
280/*
15853e93 281 * Check whether root logins are disallowed.
59c97189 282 */
283int
15853e93 284auth_root_allowed(char *method)
59c97189 285{
15853e93 286 switch (options.permit_root_login) {
287 case PERMIT_YES:
59c97189 288 return 1;
15853e93 289 break;
290 case PERMIT_NO_PASSWD:
291 if (strcmp(method, "password") != 0)
292 return 1;
293 break;
294 case PERMIT_FORCED_ONLY:
295 if (forced_command) {
bbe88b6d 296 logit("Root login accepted for forced command.");
15853e93 297 return 1;
298 }
299 break;
59c97189 300 }
bbe88b6d 301 logit("ROOT LOGIN REFUSED FROM %.200s", get_remote_ipaddr());
15853e93 302 return 0;
59c97189 303}
c8445989 304
305
306/*
307 * Given a template and a passwd structure, build a filename
308 * by substituting % tokenised options. Currently, %% becomes '%',
309 * %h becomes the home directory and %u the username.
310 *
311 * This returns a buffer allocated by xmalloc.
312 */
313char *
314expand_filename(const char *filename, struct passwd *pw)
315{
316 Buffer buffer;
317 char *file;
318 const char *cp;
319
320 /*
321 * Build the filename string in the buffer by making the appropriate
322 * substitutions to the given file name.
323 */
324 buffer_init(&buffer);
325 for (cp = filename; *cp; cp++) {
326 if (cp[0] == '%' && cp[1] == '%') {
327 buffer_append(&buffer, "%", 1);
328 cp++;
329 continue;
330 }
331 if (cp[0] == '%' && cp[1] == 'h') {
332 buffer_append(&buffer, pw->pw_dir, strlen(pw->pw_dir));
333 cp++;
334 continue;
335 }
336 if (cp[0] == '%' && cp[1] == 'u') {
337 buffer_append(&buffer, pw->pw_name,
184eed6a 338 strlen(pw->pw_name));
c8445989 339 cp++;
340 continue;
341 }
342 buffer_append(&buffer, cp, 1);
343 }
344 buffer_append(&buffer, "\0", 1);
345
346 /*
347 * Ensure that filename starts anchored. If not, be backward
348 * compatible and prepend the '%h/'
349 */
350 file = xmalloc(MAXPATHLEN);
351 cp = buffer_ptr(&buffer);
352 if (*cp != '/')
353 snprintf(file, MAXPATHLEN, "%s/%s", pw->pw_dir, cp);
354 else
355 strlcpy(file, cp, MAXPATHLEN);
356
357 buffer_free(&buffer);
358 return file;
359}
360
361char *
362authorized_keys_file(struct passwd *pw)
363{
364 return expand_filename(options.authorized_keys_file, pw);
365}
366
367char *
368authorized_keys_file2(struct passwd *pw)
369{
370 return expand_filename(options.authorized_keys_file2, pw);
371}
372
d0c8ca5c 373/* return ok if key exists in sysfile or userfile */
374HostStatus
375check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
376 const char *sysfile, const char *userfile)
377{
378 Key *found;
379 char *user_hostfile;
380 struct stat st;
17a3011c 381 HostStatus host_status;
d0c8ca5c 382
383 /* Check if we know the host and its host key. */
384 found = key_new(key->type);
385 host_status = check_host_in_hostfile(sysfile, host, key, found, NULL);
386
387 if (host_status != HOST_OK && userfile != NULL) {
388 user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
389 if (options.strict_modes &&
390 (stat(user_hostfile, &st) == 0) &&
391 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
184eed6a 392 (st.st_mode & 022) != 0)) {
bbe88b6d 393 logit("Authentication refused for %.100s: "
d0c8ca5c 394 "bad owner or modes for %.200s",
395 pw->pw_name, user_hostfile);
396 } else {
397 temporarily_use_uid(pw);
398 host_status = check_host_in_hostfile(user_hostfile,
399 host, key, found, NULL);
400 restore_uid();
401 }
402 xfree(user_hostfile);
403 }
404 key_free(found);
405
406 debug2("check_key_in_hostfiles: key %s for %s", host_status == HOST_OK ?
407 "ok" : "not found", host);
408 return host_status;
409}
410
411
c8445989 412/*
413 * Check a given file for security. This is defined as all components
d6097023 414 * of the path to the file must be owned by either the owner of
1ddf764b 415 * of the file or root and no directories must be group or world writable.
c8445989 416 *
417 * XXX Should any specific check be done for sym links ?
418 *
419 * Takes an open file descriptor, the file name, a uid and and
420 * error buffer plus max size as arguments.
421 *
422 * Returns 0 on success and -1 on failure
423 */
424int
6978866a 425secure_filename(FILE *f, const char *file, struct passwd *pw,
426 char *err, size_t errlen)
c8445989 427{
6978866a 428 uid_t uid = pw->pw_uid;
76fbdd47 429 char buf[MAXPATHLEN], homedir[MAXPATHLEN];
c8445989 430 char *cp;
f6f02456 431 int comparehome = 0;
c8445989 432 struct stat st;
433
434 if (realpath(file, buf) == NULL) {
435 snprintf(err, errlen, "realpath %s failed: %s", file,
436 strerror(errno));
437 return -1;
438 }
f6f02456 439 if (realpath(pw->pw_dir, homedir) != NULL)
440 comparehome = 1;
c8445989 441
442 /* check the open file to avoid races */
443 if (fstat(fileno(f), &st) < 0 ||
444 (st.st_uid != 0 && st.st_uid != uid) ||
445 (st.st_mode & 022) != 0) {
446 snprintf(err, errlen, "bad ownership or modes for file %s",
447 buf);
448 return -1;
449 }
450
451 /* for each component of the canonical path, walking upwards */
452 for (;;) {
453 if ((cp = dirname(buf)) == NULL) {
454 snprintf(err, errlen, "dirname() failed");
455 return -1;
456 }
457 strlcpy(buf, cp, sizeof(buf));
458
459 debug3("secure_filename: checking '%s'", buf);
460 if (stat(buf, &st) < 0 ||
461 (st.st_uid != 0 && st.st_uid != uid) ||
462 (st.st_mode & 022) != 0) {
184eed6a 463 snprintf(err, errlen,
c8445989 464 "bad ownership or modes for directory %s", buf);
465 return -1;
466 }
467
afd501f9 468 /* If are passed the homedir then we can stop */
f6f02456 469 if (comparehome && strcmp(homedir, buf) == 0) {
afd501f9 470 debug3("secure_filename: terminating check at '%s'",
471 buf);
472 break;
473 }
c8445989 474 /*
475 * dirname should always complete with a "/" path,
476 * but we can be paranoid and check for "." too
477 */
478 if ((strcmp("/", buf) == 0) || (strcmp(".", buf) == 0))
479 break;
480 }
481 return 0;
482}
443fa1cd 483
484struct passwd *
485getpwnamallow(const char *user)
486{
1836f69f 487#ifdef HAVE_LOGIN_CAP
488 extern login_cap_t *lc;
489#ifdef BSD_AUTH
490 auth_session_t *as;
491#endif
492#endif
443fa1cd 493 struct passwd *pw;
494
495 pw = getpwnam(user);
c2802d92 496 if (pw == NULL) {
bbe88b6d 497 logit("Illegal user %.100s from %.100s",
c2802d92 498 user, get_remote_ipaddr());
819d3f09 499#ifdef WITH_AIXAUTHENTICATE
500 loginfailed(user,
501 get_canonical_hostname(options.verify_reverse_mapping),
502 "ssh");
503#endif
c2802d92 504 return (NULL);
505 }
506 if (!allowed_user(pw))
1836f69f 507 return (NULL);
508#ifdef HAVE_LOGIN_CAP
509 if ((lc = login_getclass(pw->pw_class)) == NULL) {
510 debug("unable to get login class: %s", user);
511 return (NULL);
512 }
513#ifdef BSD_AUTH
514 if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
65721f9c 515 auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
1836f69f 516 debug("Approval failure for %s", user);
443fa1cd 517 pw = NULL;
1836f69f 518 }
519 if (as != NULL)
520 auth_close(as);
521#endif
522#endif
06bea668 523 if (pw != NULL)
524 return (pwcopy(pw));
525 return (NULL);
443fa1cd 526}
01dafcb5 527
528void
529auth_debug_add(const char *fmt,...)
530{
531 char buf[1024];
532 va_list args;
533
534 if (!auth_debug_init)
535 return;
536
537 va_start(args, fmt);
538 vsnprintf(buf, sizeof(buf), fmt, args);
539 va_end(args);
540 buffer_put_cstring(&auth_debug, buf);
541}
542
543void
544auth_debug_send(void)
545{
546 char *msg;
547
548 if (!auth_debug_init)
549 return;
550 while (buffer_len(&auth_debug)) {
551 msg = buffer_get_string(&auth_debug, NULL);
552 packet_send_debug("%s", msg);
553 xfree(msg);
554 }
555}
556
557void
558auth_debug_reset(void)
559{
560 if (auth_debug_init)
561 buffer_clear(&auth_debug);
562 else {
563 buffer_init(&auth_debug);
564 auth_debug_init = 1;
565 }
566}
This page took 0.35578 seconds and 5 git commands to generate.