blob: fba32eb96558bd0192a58a921f267b309c58b6c8 [file] [log] [blame]
Damien Millerd7834352006-08-05 12:39:39 +10001/* $OpenBSD: auth.c,v 1.75 2006/08/03 03:34:41 deraadt Exp $ */
Damien Miller116e6df2002-05-22 15:06:28 +10002/*
Ben Lindstrom92a2e382001-03-05 06:59:27 +00003 * Copyright (c) 2000 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +11004 *
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.
Damien Millerb38eff82000-04-01 11:09:21 +100024 */
25
26#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110027
28#include <sys/types.h>
29#include <sys/stat.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100030#include <sys/param.h>
Damien Millerb38eff82000-04-01 11:09:21 +100031
Darren Tucker39972492006-07-12 22:22:46 +100032#include <errno.h>
Damien Miller03e20032006-03-15 11:16:59 +110033#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110034# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110035#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100036#include <pwd.h>
Damien Millerd2c208a2000-05-17 22:00:02 +100037#ifdef HAVE_LOGIN_H
38#include <login.h>
39#endif
Darren Tucker15ee7482004-02-22 09:43:15 +110040#ifdef USE_SHADOW
Damien Miller1f335fb2000-06-26 11:31:33 +100041#include <shadow.h>
Darren Tucker15ee7482004-02-22 09:43:15 +110042#endif
Ben Lindstrom68c3ce12001-06-10 17:24:51 +000043#ifdef HAVE_LIBGEN_H
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +000044#include <libgen.h>
Ben Lindstrom68c3ce12001-06-10 17:24:51 +000045#endif
Darren Tucker5d196262006-07-12 22:15:16 +100046#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100047#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100048#include <string.h>
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +000049
Ben Lindstrom226cfa02001-01-22 05:34:40 +000050#include "xmalloc.h"
51#include "match.h"
52#include "groupaccess.h"
53#include "log.h"
Damien Millerd7834352006-08-05 12:39:39 +100054#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000055#include "servconf.h"
Damien Millerd7834352006-08-05 12:39:39 +100056#include "key.h"
57#include "hostfile.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100058#include "auth.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000059#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "canohost.h"
Ben Lindstrom83647ce2001-06-25 04:30:16 +000061#include "uidswap.h"
Ben Lindstrom7ebb6352002-03-22 03:04:08 +000062#include "misc.h"
Ben Lindstroma574cda2002-05-15 16:16:14 +000063#include "bufaux.h"
64#include "packet.h"
Darren Tucker42d9dc72005-02-02 17:10:11 +110065#include "loginrec.h"
Damien Millerd7834352006-08-05 12:39:39 +100066#ifdef GSSAPI
67#include "ssh-gss.h"
68#endif
Darren Tucker269a1ea2005-02-03 00:20:53 +110069#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100070
Damien Millerb38eff82000-04-01 11:09:21 +100071/* import */
72extern ServerOptions options;
Damien Miller7a8f5b32006-03-31 23:14:23 +110073extern int use_privsep;
Darren Tuckerb9aa0a02003-07-08 22:59:59 +100074extern Buffer loginmsg;
Damien Millerb38eff82000-04-01 11:09:21 +100075
Ben Lindstroma574cda2002-05-15 16:16:14 +000076/* Debugging messages */
77Buffer auth_debug;
78int auth_debug_init;
79
Damien Millerb38eff82000-04-01 11:09:21 +100080/*
Kevin Steves7b61cfa2001-01-14 19:11:00 +000081 * Check if the user is allowed to log in via ssh. If user is listed
82 * in DenyUsers or one of user's groups is listed in DenyGroups, false
83 * will be returned. If AllowUsers isn't empty and user isn't listed
84 * there, or if AllowGroups isn't empty and one of user's groups isn't
85 * listed there, false will be returned.
Damien Millerb38eff82000-04-01 11:09:21 +100086 * If the user's shell is not executable, false will be returned.
Damien Miller4af51302000-04-16 11:18:38 +100087 * Otherwise true is returned.
Damien Millerb38eff82000-04-01 11:09:21 +100088 */
Damien Millereba71ba2000-04-29 23:57:08 +100089int
Damien Millerb38eff82000-04-01 11:09:21 +100090allowed_user(struct passwd * pw)
91{
92 struct stat st;
Darren Tucker43a0dc62003-08-26 14:22:12 +100093 const char *hostname = NULL, *ipaddr = NULL, *passwd = NULL;
Damien Millere7cf07c2001-03-20 09:15:57 +110094 char *shell;
Damien Millereccb9de2005-06-17 12:59:34 +100095 u_int i;
Darren Tucker15ee7482004-02-22 09:43:15 +110096#ifdef USE_SHADOW
Darren Tuckere41bba52003-08-25 11:51:19 +100097 struct spwd *spw = NULL;
Tim Rice458c6bf2003-01-08 20:04:27 -080098#endif
Damien Millerb38eff82000-04-01 11:09:21 +100099
100 /* Shouldn't be called if pw is NULL, but better safe than sorry... */
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000101 if (!pw || !pw->pw_name)
Damien Millerb38eff82000-04-01 11:09:21 +1000102 return 0;
103
Darren Tucker15ee7482004-02-22 09:43:15 +1100104#ifdef USE_SHADOW
Darren Tuckere41bba52003-08-25 11:51:19 +1000105 if (!options.use_pam)
106 spw = getspnam(pw->pw_name);
107#ifdef HAS_SHADOW_EXPIRE
Darren Tucker15ee7482004-02-22 09:43:15 +1100108 if (!options.use_pam && spw != NULL && auth_shadow_acctexpired(spw))
109 return 0;
Darren Tuckere41bba52003-08-25 11:51:19 +1000110#endif /* HAS_SHADOW_EXPIRE */
Darren Tucker15ee7482004-02-22 09:43:15 +1100111#endif /* USE_SHADOW */
Darren Tuckere41bba52003-08-25 11:51:19 +1000112
Damien Millera8e06ce2003-11-21 23:48:55 +1100113 /* grab passwd field for locked account check */
Darren Tucker15ee7482004-02-22 09:43:15 +1100114#ifdef USE_SHADOW
Darren Tuckere41bba52003-08-25 11:51:19 +1000115 if (spw != NULL)
Tim Rice66fd2172005-08-31 09:59:49 -0700116#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
Tim Rice2291c002005-08-26 13:15:19 -0700117 passwd = get_iaf_password(pw);
118#else
Darren Tuckere41bba52003-08-25 11:51:19 +1000119 passwd = spw->sp_pwdp;
Tim Rice66fd2172005-08-31 09:59:49 -0700120#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Darren Tuckere41bba52003-08-25 11:51:19 +1000121#else
122 passwd = pw->pw_passwd;
Damien Miller06817f92003-01-07 23:55:59 +1100123#endif
124
Damien Millera8e06ce2003-11-21 23:48:55 +1100125 /* check for locked account */
Darren Tucker43a0dc62003-08-26 14:22:12 +1000126 if (!options.use_pam && passwd && *passwd) {
Darren Tuckere41bba52003-08-25 11:51:19 +1000127 int locked = 0;
128
129#ifdef LOCKED_PASSWD_STRING
130 if (strcmp(passwd, LOCKED_PASSWD_STRING) == 0)
131 locked = 1;
132#endif
133#ifdef LOCKED_PASSWD_PREFIX
134 if (strncmp(passwd, LOCKED_PASSWD_PREFIX,
135 strlen(LOCKED_PASSWD_PREFIX)) == 0)
136 locked = 1;
137#endif
138#ifdef LOCKED_PASSWD_SUBSTR
139 if (strstr(passwd, LOCKED_PASSWD_SUBSTR))
140 locked = 1;
141#endif
Tim Rice66fd2172005-08-31 09:59:49 -0700142#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
143 free(passwd);
144#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Darren Tuckere41bba52003-08-25 11:51:19 +1000145 if (locked) {
146 logit("User %.100s not allowed because account is locked",
147 pw->pw_name);
148 return 0;
149 }
150 }
151
Damien Milleref7df542000-05-19 00:03:23 +1000152 /*
153 * Get the shell from the password data. An empty shell field is
154 * legal, and means /bin/sh.
155 */
156 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
157
158 /* deny if shell does not exists or is not executable */
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000159 if (stat(shell, &st) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000160 logit("User %.100s not allowed because shell %.100s does not exist",
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000161 pw->pw_name, shell);
Damien Millerb38eff82000-04-01 11:09:21 +1000162 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000163 }
Ben Lindstromb61e6df2002-03-22 01:15:33 +0000164 if (S_ISREG(st.st_mode) == 0 ||
165 (st.st_mode & (S_IXOTH|S_IXUSR|S_IXGRP)) == 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000166 logit("User %.100s not allowed because shell %.100s is not executable",
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000167 pw->pw_name, shell);
Damien Millerb38eff82000-04-01 11:09:21 +1000168 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000169 }
Damien Millerb38eff82000-04-01 11:09:21 +1000170
Darren Tuckera8f553d2005-03-14 23:17:27 +1100171 if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
172 options.num_deny_groups > 0 || options.num_allow_groups > 0) {
Damien Miller3a961dc2003-06-03 10:25:48 +1000173 hostname = get_canonical_hostname(options.use_dns);
Ben Lindstrom3fb5d002002-03-05 01:42:42 +0000174 ipaddr = get_remote_ipaddr();
175 }
176
Damien Millerb38eff82000-04-01 11:09:21 +1000177 /* Return false if user is listed in DenyUsers */
178 if (options.num_deny_users > 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000179 for (i = 0; i < options.num_deny_users; i++)
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000180 if (match_user(pw->pw_name, hostname, ipaddr,
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000181 options.deny_users[i])) {
Darren Tucker094cd0b2005-01-24 21:56:48 +1100182 logit("User %.100s from %.100s not allowed "
183 "because listed in DenyUsers",
184 pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000185 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000186 }
Damien Millerb38eff82000-04-01 11:09:21 +1000187 }
188 /* Return false if AllowUsers isn't empty and user isn't listed there */
189 if (options.num_allow_users > 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000190 for (i = 0; i < options.num_allow_users; i++)
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000191 if (match_user(pw->pw_name, hostname, ipaddr,
Ben Lindstrom60260022001-07-04 04:56:44 +0000192 options.allow_users[i]))
Damien Millerb38eff82000-04-01 11:09:21 +1000193 break;
194 /* i < options.num_allow_users iff we break for loop */
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000195 if (i >= options.num_allow_users) {
Darren Tucker094cd0b2005-01-24 21:56:48 +1100196 logit("User %.100s from %.100s not allowed because "
197 "not listed in AllowUsers", pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000198 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000199 }
Damien Millerb38eff82000-04-01 11:09:21 +1000200 }
Damien Millerb38eff82000-04-01 11:09:21 +1000201 if (options.num_deny_groups > 0 || options.num_allow_groups > 0) {
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000202 /* Get the user's group access list (primary and supplementary) */
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000203 if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
Darren Tucker094cd0b2005-01-24 21:56:48 +1100204 logit("User %.100s from %.100s not allowed because "
205 "not in any group", pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000206 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000207 }
Damien Millerb38eff82000-04-01 11:09:21 +1000208
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000209 /* Return false if one of user's groups is listed in DenyGroups */
210 if (options.num_deny_groups > 0)
211 if (ga_match(options.deny_groups,
212 options.num_deny_groups)) {
213 ga_free();
Darren Tucker094cd0b2005-01-24 21:56:48 +1100214 logit("User %.100s from %.100s not allowed "
215 "because a group is listed in DenyGroups",
216 pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000217 return 0;
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000218 }
Damien Millerb38eff82000-04-01 11:09:21 +1000219 /*
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000220 * Return false if AllowGroups isn't empty and one of user's groups
Damien Millerb38eff82000-04-01 11:09:21 +1000221 * isn't listed there
222 */
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000223 if (options.num_allow_groups > 0)
224 if (!ga_match(options.allow_groups,
225 options.num_allow_groups)) {
226 ga_free();
Darren Tucker094cd0b2005-01-24 21:56:48 +1100227 logit("User %.100s from %.100s not allowed "
228 "because none of user's groups are listed "
229 "in AllowGroups", pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000230 return 0;
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000231 }
232 ga_free();
Damien Millerb38eff82000-04-01 11:09:21 +1000233 }
234
Darren Tucker0a9d43d2004-06-23 13:45:24 +1000235#ifdef CUSTOM_SYS_AUTH_ALLOWED_USER
Darren Tucker691d5232005-02-15 21:45:57 +1100236 if (!sys_auth_allowed_user(pw, &loginmsg))
Darren Tucker0a9d43d2004-06-23 13:45:24 +1000237 return 0;
238#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000239
240 /* We found no reason not to let this user try to log on... */
241 return 1;
242}
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000243
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000244void
245auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
246{
247 void (*authlog) (const char *fmt,...) = verbose;
248 char *authmsg;
249
Damien Miller7a8f5b32006-03-31 23:14:23 +1100250 if (use_privsep && !mm_is_monitor() && !authctxt->postponed)
251 return;
252
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000253 /* Raise logging level */
254 if (authenticated == 1 ||
255 !authctxt->valid ||
Darren Tucker89413db2004-05-24 10:36:23 +1000256 authctxt->failures >= options.max_authtries / 2 ||
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000257 strcmp(method, "password") == 0)
Damien Miller2a3f20e2003-04-09 21:12:00 +1000258 authlog = logit;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000259
260 if (authctxt->postponed)
261 authmsg = "Postponed";
262 else
263 authmsg = authenticated ? "Accepted" : "Failed";
264
265 authlog("%s %s for %s%.100s from %.200s port %d%s",
266 authmsg,
267 method,
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000268 authctxt->valid ? "" : "invalid user ",
Damien Millerf6552072001-11-12 11:06:06 +1100269 authctxt->user,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000270 get_remote_ipaddr(),
271 get_remote_port(),
272 info);
Ben Lindstrome06eb682002-07-04 00:27:21 +0000273
Darren Tucker97363a82003-05-02 23:42:25 +1000274#ifdef CUSTOM_FAILED_LOGIN
Darren Tucker2fba9932005-02-02 23:30:24 +1100275 if (authenticated == 0 && !authctxt->postponed &&
276 (strcmp(method, "password") == 0 ||
Darren Tucker40d9a632005-02-04 15:19:44 +1100277 strncmp(method, "keyboard-interactive", 20) == 0 ||
278 strcmp(method, "challenge-response") == 0))
Darren Tucker42d9dc72005-02-02 17:10:11 +1100279 record_failed_login(authctxt->user,
280 get_canonical_hostname(options.use_dns), "ssh");
Darren Tucker97363a82003-05-02 23:42:25 +1000281#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100282#ifdef SSH_AUDIT_EVENTS
Darren Tuckerf14b2aa2006-05-21 18:26:40 +1000283 if (authenticated == 0 && !authctxt->postponed)
284 audit_event(audit_classify_auth(method));
Darren Tucker269a1ea2005-02-03 00:20:53 +1100285#endif
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000286}
287
288/*
Ben Lindstromd8a90212001-02-15 03:08:27 +0000289 * Check whether root logins are disallowed.
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000290 */
291int
Ben Lindstromd8a90212001-02-15 03:08:27 +0000292auth_root_allowed(char *method)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000293{
Ben Lindstromd8a90212001-02-15 03:08:27 +0000294 switch (options.permit_root_login) {
295 case PERMIT_YES:
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000296 return 1;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000297 case PERMIT_NO_PASSWD:
298 if (strcmp(method, "password") != 0)
299 return 1;
300 break;
301 case PERMIT_FORCED_ONLY:
302 if (forced_command) {
Damien Miller996acd22003-04-09 20:59:48 +1000303 logit("Root login accepted for forced command.");
Ben Lindstromd8a90212001-02-15 03:08:27 +0000304 return 1;
305 }
306 break;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000307 }
Damien Miller996acd22003-04-09 20:59:48 +1000308 logit("ROOT LOGIN REFUSED FROM %.200s", get_remote_ipaddr());
Ben Lindstromd8a90212001-02-15 03:08:27 +0000309 return 0;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000310}
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000311
312
313/*
314 * Given a template and a passwd structure, build a filename
315 * by substituting % tokenised options. Currently, %% becomes '%',
316 * %h becomes the home directory and %u the username.
317 *
318 * This returns a buffer allocated by xmalloc.
319 */
Damien Miller6476cad2005-06-16 13:18:34 +1000320static char *
321expand_authorized_keys(const char *filename, struct passwd *pw)
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000322{
Damien Miller07d86be2006-03-26 14:19:21 +1100323 char *file, ret[MAXPATHLEN];
324 int i;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000325
Damien Miller6476cad2005-06-16 13:18:34 +1000326 file = percent_expand(filename, "h", pw->pw_dir,
327 "u", pw->pw_name, (char *)NULL);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000328
329 /*
330 * Ensure that filename starts anchored. If not, be backward
331 * compatible and prepend the '%h/'
332 */
Damien Miller6476cad2005-06-16 13:18:34 +1000333 if (*file == '/')
334 return (file);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000335
Damien Miller07d86be2006-03-26 14:19:21 +1100336 i = snprintf(ret, sizeof(ret), "%s/%s", pw->pw_dir, file);
337 if (i < 0 || (size_t)i >= sizeof(ret))
Damien Miller6476cad2005-06-16 13:18:34 +1000338 fatal("expand_authorized_keys: path too long");
Damien Miller6476cad2005-06-16 13:18:34 +1000339 xfree(file);
Damien Miller07d86be2006-03-26 14:19:21 +1100340 return (xstrdup(ret));
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000341}
342
343char *
344authorized_keys_file(struct passwd *pw)
345{
Damien Miller6476cad2005-06-16 13:18:34 +1000346 return expand_authorized_keys(options.authorized_keys_file, pw);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000347}
348
349char *
350authorized_keys_file2(struct passwd *pw)
351{
Damien Miller6476cad2005-06-16 13:18:34 +1000352 return expand_authorized_keys(options.authorized_keys_file2, pw);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000353}
354
Ben Lindstrom83647ce2001-06-25 04:30:16 +0000355/* return ok if key exists in sysfile or userfile */
356HostStatus
357check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
358 const char *sysfile, const char *userfile)
359{
360 Key *found;
361 char *user_hostfile;
362 struct stat st;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000363 HostStatus host_status;
Ben Lindstrom83647ce2001-06-25 04:30:16 +0000364
365 /* Check if we know the host and its host key. */
366 found = key_new(key->type);
367 host_status = check_host_in_hostfile(sysfile, host, key, found, NULL);
368
369 if (host_status != HOST_OK && userfile != NULL) {
370 user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
371 if (options.strict_modes &&
372 (stat(user_hostfile, &st) == 0) &&
373 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100374 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000375 logit("Authentication refused for %.100s: "
Ben Lindstrom83647ce2001-06-25 04:30:16 +0000376 "bad owner or modes for %.200s",
377 pw->pw_name, user_hostfile);
378 } else {
379 temporarily_use_uid(pw);
380 host_status = check_host_in_hostfile(user_hostfile,
381 host, key, found, NULL);
382 restore_uid();
383 }
384 xfree(user_hostfile);
385 }
386 key_free(found);
387
388 debug2("check_key_in_hostfiles: key %s for %s", host_status == HOST_OK ?
389 "ok" : "not found", host);
390 return host_status;
391}
392
393
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000394/*
395 * Check a given file for security. This is defined as all components
Ben Lindstromd4ee3492002-08-20 18:42:13 +0000396 * of the path to the file must be owned by either the owner of
Ben Lindstrom60567ff2001-06-05 20:27:53 +0000397 * of the file or root and no directories must be group or world writable.
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000398 *
399 * XXX Should any specific check be done for sym links ?
400 *
401 * Takes an open file descriptor, the file name, a uid and and
402 * error buffer plus max size as arguments.
403 *
404 * Returns 0 on success and -1 on failure
405 */
406int
Ben Lindstrom248c0782001-07-04 03:40:39 +0000407secure_filename(FILE *f, const char *file, struct passwd *pw,
408 char *err, size_t errlen)
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000409{
Ben Lindstrom248c0782001-07-04 03:40:39 +0000410 uid_t uid = pw->pw_uid;
Ben Lindstromc3e49e72001-10-03 17:55:26 +0000411 char buf[MAXPATHLEN], homedir[MAXPATHLEN];
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000412 char *cp;
Ben Lindstrom485075e2002-11-09 15:45:12 +0000413 int comparehome = 0;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000414 struct stat st;
415
416 if (realpath(file, buf) == NULL) {
417 snprintf(err, errlen, "realpath %s failed: %s", file,
418 strerror(errno));
419 return -1;
420 }
Ben Lindstrom485075e2002-11-09 15:45:12 +0000421 if (realpath(pw->pw_dir, homedir) != NULL)
422 comparehome = 1;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000423
424 /* check the open file to avoid races */
425 if (fstat(fileno(f), &st) < 0 ||
426 (st.st_uid != 0 && st.st_uid != uid) ||
427 (st.st_mode & 022) != 0) {
428 snprintf(err, errlen, "bad ownership or modes for file %s",
429 buf);
430 return -1;
431 }
432
433 /* for each component of the canonical path, walking upwards */
434 for (;;) {
435 if ((cp = dirname(buf)) == NULL) {
436 snprintf(err, errlen, "dirname() failed");
437 return -1;
438 }
439 strlcpy(buf, cp, sizeof(buf));
440
441 debug3("secure_filename: checking '%s'", buf);
442 if (stat(buf, &st) < 0 ||
443 (st.st_uid != 0 && st.st_uid != uid) ||
444 (st.st_mode & 022) != 0) {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100445 snprintf(err, errlen,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000446 "bad ownership or modes for directory %s", buf);
447 return -1;
448 }
449
Damien Miller0ae6e002001-07-14 12:21:34 +1000450 /* If are passed the homedir then we can stop */
Ben Lindstrom485075e2002-11-09 15:45:12 +0000451 if (comparehome && strcmp(homedir, buf) == 0) {
Damien Miller0ae6e002001-07-14 12:21:34 +1000452 debug3("secure_filename: terminating check at '%s'",
453 buf);
454 break;
455 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000456 /*
457 * dirname should always complete with a "/" path,
458 * but we can be paranoid and check for "." too
459 */
460 if ((strcmp("/", buf) == 0) || (strcmp(".", buf) == 0))
461 break;
462 }
463 return 0;
464}
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000465
466struct passwd *
467getpwnamallow(const char *user)
468{
Ben Lindstromb481e132002-03-22 01:35:47 +0000469#ifdef HAVE_LOGIN_CAP
470 extern login_cap_t *lc;
471#ifdef BSD_AUTH
472 auth_session_t *as;
473#endif
474#endif
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000475 struct passwd *pw;
476
Darren Tucker45150472006-07-12 22:34:17 +1000477 parse_server_match_config(&options, user,
478 get_canonical_hostname(options.use_dns), get_remote_ipaddr());
479
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000480 pw = getpwnam(user);
Damien Miller6f0a1882002-09-22 01:26:51 +1000481 if (pw == NULL) {
Damien Millera22f2d72004-07-21 20:48:24 +1000482 logit("Invalid user %.100s from %.100s",
Damien Miller6f0a1882002-09-22 01:26:51 +1000483 user, get_remote_ipaddr());
Darren Tucker97363a82003-05-02 23:42:25 +1000484#ifdef CUSTOM_FAILED_LOGIN
Darren Tucker42d9dc72005-02-02 17:10:11 +1100485 record_failed_login(user,
486 get_canonical_hostname(options.use_dns), "ssh");
Ben Lindstromf5397c02002-11-09 16:11:10 +0000487#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100488#ifdef SSH_AUDIT_EVENTS
489 audit_event(SSH_INVALID_USER);
490#endif /* SSH_AUDIT_EVENTS */
Damien Miller6f0a1882002-09-22 01:26:51 +1000491 return (NULL);
492 }
493 if (!allowed_user(pw))
Ben Lindstromb481e132002-03-22 01:35:47 +0000494 return (NULL);
495#ifdef HAVE_LOGIN_CAP
496 if ((lc = login_getclass(pw->pw_class)) == NULL) {
497 debug("unable to get login class: %s", user);
498 return (NULL);
499 }
500#ifdef BSD_AUTH
501 if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
Damien Miller13e35a02002-05-22 14:04:11 +1000502 auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
Ben Lindstromb481e132002-03-22 01:35:47 +0000503 debug("Approval failure for %s", user);
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000504 pw = NULL;
Ben Lindstromb481e132002-03-22 01:35:47 +0000505 }
506 if (as != NULL)
507 auth_close(as);
508#endif
509#endif
Ben Lindstromf34e4eb2002-03-22 03:08:30 +0000510 if (pw != NULL)
511 return (pwcopy(pw));
512 return (NULL);
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000513}
Ben Lindstroma574cda2002-05-15 16:16:14 +0000514
515void
516auth_debug_add(const char *fmt,...)
517{
518 char buf[1024];
519 va_list args;
520
521 if (!auth_debug_init)
522 return;
523
524 va_start(args, fmt);
525 vsnprintf(buf, sizeof(buf), fmt, args);
526 va_end(args);
527 buffer_put_cstring(&auth_debug, buf);
528}
529
530void
531auth_debug_send(void)
532{
533 char *msg;
534
535 if (!auth_debug_init)
536 return;
537 while (buffer_len(&auth_debug)) {
538 msg = buffer_get_string(&auth_debug, NULL);
539 packet_send_debug("%s", msg);
540 xfree(msg);
541 }
542}
543
544void
545auth_debug_reset(void)
546{
547 if (auth_debug_init)
548 buffer_clear(&auth_debug);
549 else {
550 buffer_init(&auth_debug);
551 auth_debug_init = 1;
552 }
553}
Damien Miller856f0be2003-09-03 07:32:45 +1000554
555struct passwd *
556fakepw(void)
557{
558 static struct passwd fake;
559
560 memset(&fake, 0, sizeof(fake));
561 fake.pw_name = "NOUSER";
562 fake.pw_passwd =
Damien Miller787b2ec2003-11-21 23:56:47 +1100563 "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
Damien Miller856f0be2003-09-03 07:32:45 +1000564 fake.pw_gecos = "NOUSER";
Darren Tucker1f8311c2004-05-13 16:39:33 +1000565 fake.pw_uid = (uid_t)-1;
566 fake.pw_gid = (gid_t)-1;
Damien Miller856f0be2003-09-03 07:32:45 +1000567#ifdef HAVE_PW_CLASS_IN_PASSWD
568 fake.pw_class = "";
569#endif
570 fake.pw_dir = "/nonexist";
571 fake.pw_shell = "/nonexist";
572
573 return (&fake);
574}