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