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