]> andersk Git - openssh.git/blob - auth.c
35bc5ea1dc311b9f8ebcd49aa144a45c5122f9a7
[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                 break;
318         case PERMIT_NO_PASSWD:
319                 if (strcmp(method, "password") != 0)
320                         return 1;
321                 break;
322         case PERMIT_FORCED_ONLY:
323                 if (forced_command) {
324                         logit("Root login accepted for forced command.");
325                         return 1;
326                 }
327                 break;
328         }
329         logit("ROOT LOGIN REFUSED FROM %.200s", get_remote_ipaddr());
330         return 0;
331 }
332
333
334 /*
335  * Given a template and a passwd structure, build a filename
336  * by substituting % tokenised options. Currently, %% becomes '%',
337  * %h becomes the home directory and %u the username.
338  *
339  * This returns a buffer allocated by xmalloc.
340  */
341 static char *
342 expand_authorized_keys(const char *filename, struct passwd *pw)
343 {
344         char *file, *ret;
345
346         file = percent_expand(filename, "h", pw->pw_dir,
347             "u", pw->pw_name, (char *)NULL);
348
349         /*
350          * Ensure that filename starts anchored. If not, be backward
351          * compatible and prepend the '%h/'
352          */
353         if (*file == '/')
354                 return (file);
355
356         ret = xmalloc(MAXPATHLEN);
357         if (strlcpy(ret, pw->pw_dir, MAXPATHLEN) >= MAXPATHLEN ||
358             strlcat(ret, "/", MAXPATHLEN) >= MAXPATHLEN ||
359             strlcat(ret, file, MAXPATHLEN) >= MAXPATHLEN)
360                 fatal("expand_authorized_keys: path too long");
361
362         xfree(file);
363         return (ret);
364 }
365
366 char *
367 authorized_keys_file(struct passwd *pw)
368 {
369         return expand_authorized_keys(options.authorized_keys_file, pw);
370 }
371
372 char *
373 authorized_keys_file2(struct passwd *pw)
374 {
375         return expand_authorized_keys(options.authorized_keys_file2, pw);
376 }
377
378 /* return ok if key exists in sysfile or userfile */
379 HostStatus
380 check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
381     const char *sysfile, const char *userfile)
382 {
383         Key *found;
384         char *user_hostfile;
385         struct stat st;
386         HostStatus host_status;
387
388         /* Check if we know the host and its host key. */
389         found = key_new(key->type);
390         host_status = check_host_in_hostfile(sysfile, host, key, found, NULL);
391
392         if (host_status != HOST_OK && userfile != NULL) {
393                 user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
394                 if (options.strict_modes &&
395                     (stat(user_hostfile, &st) == 0) &&
396                     ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
397                     (st.st_mode & 022) != 0)) {
398                         logit("Authentication refused for %.100s: "
399                             "bad owner or modes for %.200s",
400                             pw->pw_name, user_hostfile);
401                 } else {
402                         temporarily_use_uid(pw);
403                         host_status = check_host_in_hostfile(user_hostfile,
404                             host, key, found, NULL);
405                         restore_uid();
406                 }
407                 xfree(user_hostfile);
408         }
409         key_free(found);
410
411         debug2("check_key_in_hostfiles: key %s for %s", host_status == HOST_OK ?
412             "ok" : "not found", host);
413         return host_status;
414 }
415
416
417 /*
418  * Check a given file for security. This is defined as all components
419  * of the path to the file must be owned by either the owner of
420  * of the file or root and no directories must be group or world writable.
421  *
422  * XXX Should any specific check be done for sym links ?
423  *
424  * Takes an open file descriptor, the file name, a uid and and
425  * error buffer plus max size as arguments.
426  *
427  * Returns 0 on success and -1 on failure
428  */
429 int
430 secure_filename(FILE *f, const char *file, struct passwd *pw,
431     char *err, size_t errlen)
432 {
433         uid_t uid = pw->pw_uid;
434         char buf[MAXPATHLEN], homedir[MAXPATHLEN];
435         char *cp;
436         int comparehome = 0;
437         struct stat st;
438
439         if (realpath(file, buf) == NULL) {
440                 snprintf(err, errlen, "realpath %s failed: %s", file,
441                     strerror(errno));
442                 return -1;
443         }
444         if (realpath(pw->pw_dir, homedir) != NULL)
445                 comparehome = 1;
446
447         /* check the open file to avoid races */
448         if (fstat(fileno(f), &st) < 0 ||
449             (st.st_uid != 0 && st.st_uid != uid) ||
450             (st.st_mode & 022) != 0) {
451                 snprintf(err, errlen, "bad ownership or modes for file %s",
452                     buf);
453                 return -1;
454         }
455
456         /* for each component of the canonical path, walking upwards */
457         for (;;) {
458                 if ((cp = dirname(buf)) == NULL) {
459                         snprintf(err, errlen, "dirname() failed");
460                         return -1;
461                 }
462                 strlcpy(buf, cp, sizeof(buf));
463
464                 debug3("secure_filename: checking '%s'", buf);
465                 if (stat(buf, &st) < 0 ||
466                     (st.st_uid != 0 && st.st_uid != uid) ||
467                     (st.st_mode & 022) != 0) {
468                         snprintf(err, errlen,
469                             "bad ownership or modes for directory %s", buf);
470                         return -1;
471                 }
472
473                 /* If are passed the homedir then we can stop */
474                 if (comparehome && strcmp(homedir, buf) == 0) {
475                         debug3("secure_filename: terminating check at '%s'",
476                             buf);
477                         break;
478                 }
479                 /*
480                  * dirname should always complete with a "/" path,
481                  * but we can be paranoid and check for "." too
482                  */
483                 if ((strcmp("/", buf) == 0) || (strcmp(".", buf) == 0))
484                         break;
485         }
486         return 0;
487 }
488
489 struct passwd *
490 getpwnamallow(const char *user)
491 {
492 #ifdef HAVE_LOGIN_CAP
493         extern login_cap_t *lc;
494 #ifdef BSD_AUTH
495         auth_session_t *as;
496 #endif
497 #endif
498         struct passwd *pw;
499
500         pw = getpwnam(user);
501         if (pw == NULL) {
502                 logit("Invalid user %.100s from %.100s",
503                     user, get_remote_ipaddr());
504 #ifdef CUSTOM_FAILED_LOGIN
505                 record_failed_login(user,
506                     get_canonical_hostname(options.use_dns), "ssh");
507 #endif
508 #ifdef SSH_AUDIT_EVENTS
509                 audit_event(SSH_INVALID_USER);
510 #endif /* SSH_AUDIT_EVENTS */
511                 return (NULL);
512         }
513         if (!allowed_user(pw))
514                 return (NULL);
515 #ifdef HAVE_LOGIN_CAP
516         if ((lc = login_getclass(pw->pw_class)) == NULL) {
517                 debug("unable to get login class: %s", user);
518                 return (NULL);
519         }
520 #ifdef BSD_AUTH
521         if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
522             auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
523                 debug("Approval failure for %s", user);
524                 pw = NULL;
525         }
526         if (as != NULL)
527                 auth_close(as);
528 #endif
529 #endif
530         if (pw != NULL)
531                 return (pwcopy(pw));
532         return (NULL);
533 }
534
535 void
536 auth_debug_add(const char *fmt,...)
537 {
538         char buf[1024];
539         va_list args;
540
541         if (!auth_debug_init)
542                 return;
543
544         va_start(args, fmt);
545         vsnprintf(buf, sizeof(buf), fmt, args);
546         va_end(args);
547         buffer_put_cstring(&auth_debug, buf);
548 }
549
550 void
551 auth_debug_send(void)
552 {
553         char *msg;
554
555         if (!auth_debug_init)
556                 return;
557         while (buffer_len(&auth_debug)) {
558                 msg = buffer_get_string(&auth_debug, NULL);
559                 packet_send_debug("%s", msg);
560                 xfree(msg);
561         }
562 }
563
564 void
565 auth_debug_reset(void)
566 {
567         if (auth_debug_init)
568                 buffer_clear(&auth_debug);
569         else {
570                 buffer_init(&auth_debug);
571                 auth_debug_init = 1;
572         }
573 }
574
575 struct passwd *
576 fakepw(void)
577 {
578         static struct passwd fake;
579
580         memset(&fake, 0, sizeof(fake));
581         fake.pw_name = "NOUSER";
582         fake.pw_passwd =
583             "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
584         fake.pw_gecos = "NOUSER";
585         fake.pw_uid = (uid_t)-1;
586         fake.pw_gid = (gid_t)-1;
587 #ifdef HAVE_PW_CLASS_IN_PASSWD
588         fake.pw_class = "";
589 #endif
590         fake.pw_dir = "/nonexist";
591         fake.pw_shell = "/nonexist";
592
593         return (&fake);
594 }
This page took 0.074013 seconds and 3 git commands to generate.