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