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