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