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