blob: 35bc5ea1dc311b9f8ebcd49aa144a45c5122f9a7 [file] [log] [blame]
Damien Miller116e6df2002-05-22 15:06:28 +10001/*
Ben Lindstrom92a2e382001-03-05 06:59:27 +00002 * Copyright (c) 2000 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +11003 *
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.
Damien Millerb38eff82000-04-01 11:09:21 +100023 */
24
25#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110026
27#include <sys/types.h>
28#include <sys/stat.h>
Damien Millerb38eff82000-04-01 11:09:21 +100029
Damien Miller03e20032006-03-15 11:16:59 +110030#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110031# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110032#endif
Damien Millerd2c208a2000-05-17 22:00:02 +100033#ifdef HAVE_LOGIN_H
34#include <login.h>
35#endif
Darren Tucker15ee7482004-02-22 09:43:15 +110036#ifdef USE_SHADOW
Damien Miller1f335fb2000-06-26 11:31:33 +100037#include <shadow.h>
Darren Tucker15ee7482004-02-22 09:43:15 +110038#endif
Damien Millerb38eff82000-04-01 11:09:21 +100039
Ben Lindstrom68c3ce12001-06-10 17:24:51 +000040#ifdef HAVE_LIBGEN_H
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +000041#include <libgen.h>
Ben Lindstrom68c3ce12001-06-10 17:24:51 +000042#endif
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +000043
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "xmalloc.h"
45#include "match.h"
46#include "groupaccess.h"
47#include "log.h"
48#include "servconf.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100049#include "auth.h"
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000050#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "canohost.h"
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +000052#include "buffer.h"
53#include "bufaux.h"
Ben Lindstrom83647ce2001-06-25 04:30:16 +000054#include "uidswap.h"
Ben Lindstrom7ebb6352002-03-22 03:04:08 +000055#include "misc.h"
Ben Lindstroma574cda2002-05-15 16:16:14 +000056#include "bufaux.h"
57#include "packet.h"
Darren Tucker42d9dc72005-02-02 17:10:11 +110058#include "loginrec.h"
Darren Tucker269a1ea2005-02-03 00:20:53 +110059#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100060
Damien Millerb38eff82000-04-01 11:09:21 +100061/* import */
62extern ServerOptions options;
Darren Tuckerb9aa0a02003-07-08 22:59:59 +100063extern Buffer loginmsg;
Damien Millerb38eff82000-04-01 11:09:21 +100064
Ben Lindstroma574cda2002-05-15 16:16:14 +000065/* Debugging messages */
66Buffer auth_debug;
67int auth_debug_init;
68
Damien Millerb38eff82000-04-01 11:09:21 +100069/*
Kevin Steves7b61cfa2001-01-14 19:11:00 +000070 * Check if the user is allowed to log in via ssh. If user is listed
71 * in DenyUsers or one of user's groups is listed in DenyGroups, false
72 * will be returned. If AllowUsers isn't empty and user isn't listed
73 * there, or if AllowGroups isn't empty and one of user's groups isn't
74 * listed there, false will be returned.
Damien Millerb38eff82000-04-01 11:09:21 +100075 * If the user's shell is not executable, false will be returned.
Damien Miller4af51302000-04-16 11:18:38 +100076 * Otherwise true is returned.
Damien Millerb38eff82000-04-01 11:09:21 +100077 */
Damien Millereba71ba2000-04-29 23:57:08 +100078int
Damien Millerb38eff82000-04-01 11:09:21 +100079allowed_user(struct passwd * pw)
80{
81 struct stat st;
Darren Tucker43a0dc62003-08-26 14:22:12 +100082 const char *hostname = NULL, *ipaddr = NULL, *passwd = NULL;
Damien Millere7cf07c2001-03-20 09:15:57 +110083 char *shell;
Damien Millereccb9de2005-06-17 12:59:34 +100084 u_int i;
Darren Tucker15ee7482004-02-22 09:43:15 +110085#ifdef USE_SHADOW
Darren Tuckere41bba52003-08-25 11:51:19 +100086 struct spwd *spw = NULL;
Tim Rice458c6bf2003-01-08 20:04:27 -080087#endif
Damien Millerb38eff82000-04-01 11:09:21 +100088
89 /* Shouldn't be called if pw is NULL, but better safe than sorry... */
Kevin Steves7b61cfa2001-01-14 19:11:00 +000090 if (!pw || !pw->pw_name)
Damien Millerb38eff82000-04-01 11:09:21 +100091 return 0;
92
Darren Tucker15ee7482004-02-22 09:43:15 +110093#ifdef USE_SHADOW
Darren Tuckere41bba52003-08-25 11:51:19 +100094 if (!options.use_pam)
95 spw = getspnam(pw->pw_name);
96#ifdef HAS_SHADOW_EXPIRE
Darren Tucker15ee7482004-02-22 09:43:15 +110097 if (!options.use_pam && spw != NULL && auth_shadow_acctexpired(spw))
98 return 0;
Darren Tuckere41bba52003-08-25 11:51:19 +100099#endif /* HAS_SHADOW_EXPIRE */
Darren Tucker15ee7482004-02-22 09:43:15 +1100100#endif /* USE_SHADOW */
Darren Tuckere41bba52003-08-25 11:51:19 +1000101
Damien Millera8e06ce2003-11-21 23:48:55 +1100102 /* grab passwd field for locked account check */
Darren Tucker15ee7482004-02-22 09:43:15 +1100103#ifdef USE_SHADOW
Darren Tuckere41bba52003-08-25 11:51:19 +1000104 if (spw != NULL)
Tim Rice66fd2172005-08-31 09:59:49 -0700105#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
Tim Rice2291c002005-08-26 13:15:19 -0700106 passwd = get_iaf_password(pw);
107#else
Darren Tuckere41bba52003-08-25 11:51:19 +1000108 passwd = spw->sp_pwdp;
Tim Rice66fd2172005-08-31 09:59:49 -0700109#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Darren Tuckere41bba52003-08-25 11:51:19 +1000110#else
111 passwd = pw->pw_passwd;
Damien Miller06817f92003-01-07 23:55:59 +1100112#endif
113
Damien Millera8e06ce2003-11-21 23:48:55 +1100114 /* check for locked account */
Darren Tucker43a0dc62003-08-26 14:22:12 +1000115 if (!options.use_pam && passwd && *passwd) {
Darren Tuckere41bba52003-08-25 11:51:19 +1000116 int locked = 0;
117
118#ifdef LOCKED_PASSWD_STRING
119 if (strcmp(passwd, LOCKED_PASSWD_STRING) == 0)
120 locked = 1;
121#endif
122#ifdef LOCKED_PASSWD_PREFIX
123 if (strncmp(passwd, LOCKED_PASSWD_PREFIX,
124 strlen(LOCKED_PASSWD_PREFIX)) == 0)
125 locked = 1;
126#endif
127#ifdef LOCKED_PASSWD_SUBSTR
128 if (strstr(passwd, LOCKED_PASSWD_SUBSTR))
129 locked = 1;
130#endif
Tim Rice66fd2172005-08-31 09:59:49 -0700131#if defined(HAVE_LIBIAF) && !defined(BROKEN_LIBIAF)
132 free(passwd);
133#endif /* HAVE_LIBIAF && !BROKEN_LIBIAF */
Darren Tuckere41bba52003-08-25 11:51:19 +1000134 if (locked) {
135 logit("User %.100s not allowed because account is locked",
136 pw->pw_name);
137 return 0;
138 }
139 }
140
Damien Milleref7df542000-05-19 00:03:23 +1000141 /*
142 * Get the shell from the password data. An empty shell field is
143 * legal, and means /bin/sh.
144 */
145 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
146
147 /* deny if shell does not exists or is not executable */
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000148 if (stat(shell, &st) != 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000149 logit("User %.100s not allowed because shell %.100s does not exist",
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000150 pw->pw_name, shell);
Damien Millerb38eff82000-04-01 11:09:21 +1000151 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000152 }
Ben Lindstromb61e6df2002-03-22 01:15:33 +0000153 if (S_ISREG(st.st_mode) == 0 ||
154 (st.st_mode & (S_IXOTH|S_IXUSR|S_IXGRP)) == 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000155 logit("User %.100s not allowed because shell %.100s is not executable",
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000156 pw->pw_name, shell);
Damien Millerb38eff82000-04-01 11:09:21 +1000157 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000158 }
Damien Millerb38eff82000-04-01 11:09:21 +1000159
Darren Tuckera8f553d2005-03-14 23:17:27 +1100160 if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
161 options.num_deny_groups > 0 || options.num_allow_groups > 0) {
Damien Miller3a961dc2003-06-03 10:25:48 +1000162 hostname = get_canonical_hostname(options.use_dns);
Ben Lindstrom3fb5d002002-03-05 01:42:42 +0000163 ipaddr = get_remote_ipaddr();
164 }
165
Damien Millerb38eff82000-04-01 11:09:21 +1000166 /* Return false if user is listed in DenyUsers */
167 if (options.num_deny_users > 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000168 for (i = 0; i < options.num_deny_users; i++)
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000169 if (match_user(pw->pw_name, hostname, ipaddr,
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000170 options.deny_users[i])) {
Darren Tucker094cd0b2005-01-24 21:56:48 +1100171 logit("User %.100s from %.100s not allowed "
172 "because listed in DenyUsers",
173 pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000174 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000175 }
Damien Millerb38eff82000-04-01 11:09:21 +1000176 }
177 /* Return false if AllowUsers isn't empty and user isn't listed there */
178 if (options.num_allow_users > 0) {
Damien Millerb38eff82000-04-01 11:09:21 +1000179 for (i = 0; i < options.num_allow_users; i++)
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000180 if (match_user(pw->pw_name, hostname, ipaddr,
Ben Lindstrom60260022001-07-04 04:56:44 +0000181 options.allow_users[i]))
Damien Millerb38eff82000-04-01 11:09:21 +1000182 break;
183 /* i < options.num_allow_users iff we break for loop */
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000184 if (i >= options.num_allow_users) {
Darren Tucker094cd0b2005-01-24 21:56:48 +1100185 logit("User %.100s from %.100s not allowed because "
186 "not listed in AllowUsers", pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000187 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000188 }
Damien Millerb38eff82000-04-01 11:09:21 +1000189 }
Damien Millerb38eff82000-04-01 11:09:21 +1000190 if (options.num_deny_groups > 0 || options.num_allow_groups > 0) {
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000191 /* Get the user's group access list (primary and supplementary) */
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000192 if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
Darren Tucker094cd0b2005-01-24 21:56:48 +1100193 logit("User %.100s from %.100s not allowed because "
194 "not in any group", pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000195 return 0;
Ben Lindstrom6ef9ec62002-03-05 01:40:37 +0000196 }
Damien Millerb38eff82000-04-01 11:09:21 +1000197
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000198 /* Return false if one of user's groups is listed in DenyGroups */
199 if (options.num_deny_groups > 0)
200 if (ga_match(options.deny_groups,
201 options.num_deny_groups)) {
202 ga_free();
Darren Tucker094cd0b2005-01-24 21:56:48 +1100203 logit("User %.100s from %.100s not allowed "
204 "because a group is listed in DenyGroups",
205 pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000206 return 0;
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000207 }
Damien Millerb38eff82000-04-01 11:09:21 +1000208 /*
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000209 * Return false if AllowGroups isn't empty and one of user's groups
Damien Millerb38eff82000-04-01 11:09:21 +1000210 * isn't listed there
211 */
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000212 if (options.num_allow_groups > 0)
213 if (!ga_match(options.allow_groups,
214 options.num_allow_groups)) {
215 ga_free();
Darren Tucker094cd0b2005-01-24 21:56:48 +1100216 logit("User %.100s from %.100s not allowed "
217 "because none of user's groups are listed "
218 "in AllowGroups", pw->pw_name, hostname);
Damien Millerb38eff82000-04-01 11:09:21 +1000219 return 0;
Kevin Steves7b61cfa2001-01-14 19:11:00 +0000220 }
221 ga_free();
Damien Millerb38eff82000-04-01 11:09:21 +1000222 }
223
Darren Tucker0a9d43d2004-06-23 13:45:24 +1000224#ifdef CUSTOM_SYS_AUTH_ALLOWED_USER
Darren Tucker691d5232005-02-15 21:45:57 +1100225 if (!sys_auth_allowed_user(pw, &loginmsg))
Darren Tucker0a9d43d2004-06-23 13:45:24 +1000226 return 0;
227#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000228
229 /* We found no reason not to let this user try to log on... */
230 return 1;
231}
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000232
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000233void
234auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
235{
236 void (*authlog) (const char *fmt,...) = verbose;
237 char *authmsg;
238
239 /* Raise logging level */
240 if (authenticated == 1 ||
241 !authctxt->valid ||
Darren Tucker89413db2004-05-24 10:36:23 +1000242 authctxt->failures >= options.max_authtries / 2 ||
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000243 strcmp(method, "password") == 0)
Damien Miller2a3f20e2003-04-09 21:12:00 +1000244 authlog = logit;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000245
246 if (authctxt->postponed)
247 authmsg = "Postponed";
248 else
249 authmsg = authenticated ? "Accepted" : "Failed";
250
251 authlog("%s %s for %s%.100s from %.200s port %d%s",
252 authmsg,
253 method,
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000254 authctxt->valid ? "" : "invalid user ",
Damien Millerf6552072001-11-12 11:06:06 +1100255 authctxt->user,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000256 get_remote_ipaddr(),
257 get_remote_port(),
258 info);
Ben Lindstrome06eb682002-07-04 00:27:21 +0000259
Darren Tucker97363a82003-05-02 23:42:25 +1000260#ifdef CUSTOM_FAILED_LOGIN
Darren Tucker2fba9932005-02-02 23:30:24 +1100261 if (authenticated == 0 && !authctxt->postponed &&
262 (strcmp(method, "password") == 0 ||
Darren Tucker40d9a632005-02-04 15:19:44 +1100263 strncmp(method, "keyboard-interactive", 20) == 0 ||
264 strcmp(method, "challenge-response") == 0))
Darren Tucker42d9dc72005-02-02 17:10:11 +1100265 record_failed_login(authctxt->user,
266 get_canonical_hostname(options.use_dns), "ssh");
Darren Tucker97363a82003-05-02 23:42:25 +1000267#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100268#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100269 if (authenticated == 0 && !authctxt->postponed) {
270 ssh_audit_event_t event;
271
272 debug3("audit failed auth attempt, method %s euid %d",
273 method, (int)geteuid());
274 /*
275 * Because the auth loop is used in both monitor and slave,
276 * we must be careful to send each event only once and with
277 * enough privs to write the event.
278 */
279 event = audit_classify_auth(method);
280 switch(event) {
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100281 case SSH_AUTH_FAIL_NONE:
282 case SSH_AUTH_FAIL_PASSWD:
283 case SSH_AUTH_FAIL_KBDINT:
Darren Tucker269a1ea2005-02-03 00:20:53 +1100284 if (geteuid() == 0)
285 audit_event(event);
286 break;
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100287 case SSH_AUTH_FAIL_PUBKEY:
288 case SSH_AUTH_FAIL_HOSTBASED:
289 case SSH_AUTH_FAIL_GSSAPI:
Darren Tucker269a1ea2005-02-03 00:20:53 +1100290 /*
291 * This is required to handle the case where privsep
292 * is enabled but it's root logging in, since
293 * use_privsep won't be cleared until after a
294 * successful login.
295 */
296 if (geteuid() == 0)
297 audit_event(event);
298 else
299 PRIVSEP(audit_event(event));
300 break;
301 default:
302 error("unknown authentication audit event %d", event);
303 }
304 }
305#endif
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000306}
307
308/*
Ben Lindstromd8a90212001-02-15 03:08:27 +0000309 * Check whether root logins are disallowed.
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000310 */
311int
Ben Lindstromd8a90212001-02-15 03:08:27 +0000312auth_root_allowed(char *method)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000313{
Ben Lindstromd8a90212001-02-15 03:08:27 +0000314 switch (options.permit_root_login) {
315 case PERMIT_YES:
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000316 return 1;
Ben Lindstromd8a90212001-02-15 03:08:27 +0000317 break;
318 case PERMIT_NO_PASSWD:
319 if (strcmp(method, "password") != 0)
320 return 1;
321 break;
322 case PERMIT_FORCED_ONLY:
323 if (forced_command) {
Damien Miller996acd22003-04-09 20:59:48 +1000324 logit("Root login accepted for forced command.");
Ben Lindstromd8a90212001-02-15 03:08:27 +0000325 return 1;
326 }
327 break;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000328 }
Damien Miller996acd22003-04-09 20:59:48 +1000329 logit("ROOT LOGIN REFUSED FROM %.200s", get_remote_ipaddr());
Ben Lindstromd8a90212001-02-15 03:08:27 +0000330 return 0;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000331}
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000332
333
334/*
335 * Given a template and a passwd structure, build a filename
336 * by substituting % tokenised options. Currently, %% becomes '%',
337 * %h becomes the home directory and %u the username.
338 *
339 * This returns a buffer allocated by xmalloc.
340 */
Damien Miller6476cad2005-06-16 13:18:34 +1000341static char *
342expand_authorized_keys(const char *filename, struct passwd *pw)
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000343{
Damien Miller6476cad2005-06-16 13:18:34 +1000344 char *file, *ret;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000345
Damien Miller6476cad2005-06-16 13:18:34 +1000346 file = percent_expand(filename, "h", pw->pw_dir,
347 "u", pw->pw_name, (char *)NULL);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000348
349 /*
350 * Ensure that filename starts anchored. If not, be backward
351 * compatible and prepend the '%h/'
352 */
Damien Miller6476cad2005-06-16 13:18:34 +1000353 if (*file == '/')
354 return (file);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000355
Damien Miller6476cad2005-06-16 13:18:34 +1000356 ret = xmalloc(MAXPATHLEN);
357 if (strlcpy(ret, pw->pw_dir, MAXPATHLEN) >= MAXPATHLEN ||
358 strlcat(ret, "/", MAXPATHLEN) >= MAXPATHLEN ||
359 strlcat(ret, file, MAXPATHLEN) >= MAXPATHLEN)
360 fatal("expand_authorized_keys: path too long");
361
362 xfree(file);
363 return (ret);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000364}
365
366char *
367authorized_keys_file(struct passwd *pw)
368{
Damien Miller6476cad2005-06-16 13:18:34 +1000369 return expand_authorized_keys(options.authorized_keys_file, pw);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000370}
371
372char *
373authorized_keys_file2(struct passwd *pw)
374{
Damien Miller6476cad2005-06-16 13:18:34 +1000375 return expand_authorized_keys(options.authorized_keys_file2, pw);
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000376}
377
Ben Lindstrom83647ce2001-06-25 04:30:16 +0000378/* return ok if key exists in sysfile or userfile */
379HostStatus
380check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
381 const char *sysfile, const char *userfile)
382{
383 Key *found;
384 char *user_hostfile;
385 struct stat st;
Ben Lindstrom65366a82001-12-06 16:32:47 +0000386 HostStatus host_status;
Ben Lindstrom83647ce2001-06-25 04:30:16 +0000387
388 /* Check if we know the host and its host key. */
389 found = key_new(key->type);
390 host_status = check_host_in_hostfile(sysfile, host, key, found, NULL);
391
392 if (host_status != HOST_OK && userfile != NULL) {
393 user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
394 if (options.strict_modes &&
395 (stat(user_hostfile, &st) == 0) &&
396 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100397 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000398 logit("Authentication refused for %.100s: "
Ben Lindstrom83647ce2001-06-25 04:30:16 +0000399 "bad owner or modes for %.200s",
400 pw->pw_name, user_hostfile);
401 } else {
402 temporarily_use_uid(pw);
403 host_status = check_host_in_hostfile(user_hostfile,
404 host, key, found, NULL);
405 restore_uid();
406 }
407 xfree(user_hostfile);
408 }
409 key_free(found);
410
411 debug2("check_key_in_hostfiles: key %s for %s", host_status == HOST_OK ?
412 "ok" : "not found", host);
413 return host_status;
414}
415
416
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000417/*
418 * Check a given file for security. This is defined as all components
Ben Lindstromd4ee3492002-08-20 18:42:13 +0000419 * of the path to the file must be owned by either the owner of
Ben Lindstrom60567ff2001-06-05 20:27:53 +0000420 * of the file or root and no directories must be group or world writable.
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000421 *
422 * XXX Should any specific check be done for sym links ?
423 *
424 * Takes an open file descriptor, the file name, a uid and and
425 * error buffer plus max size as arguments.
426 *
427 * Returns 0 on success and -1 on failure
428 */
429int
Ben Lindstrom248c0782001-07-04 03:40:39 +0000430secure_filename(FILE *f, const char *file, struct passwd *pw,
431 char *err, size_t errlen)
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000432{
Ben Lindstrom248c0782001-07-04 03:40:39 +0000433 uid_t uid = pw->pw_uid;
Ben Lindstromc3e49e72001-10-03 17:55:26 +0000434 char buf[MAXPATHLEN], homedir[MAXPATHLEN];
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000435 char *cp;
Ben Lindstrom485075e2002-11-09 15:45:12 +0000436 int comparehome = 0;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000437 struct stat st;
438
439 if (realpath(file, buf) == NULL) {
440 snprintf(err, errlen, "realpath %s failed: %s", file,
441 strerror(errno));
442 return -1;
443 }
Ben Lindstrom485075e2002-11-09 15:45:12 +0000444 if (realpath(pw->pw_dir, homedir) != NULL)
445 comparehome = 1;
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000446
447 /* check the open file to avoid races */
448 if (fstat(fileno(f), &st) < 0 ||
449 (st.st_uid != 0 && st.st_uid != uid) ||
450 (st.st_mode & 022) != 0) {
451 snprintf(err, errlen, "bad ownership or modes for file %s",
452 buf);
453 return -1;
454 }
455
456 /* for each component of the canonical path, walking upwards */
457 for (;;) {
458 if ((cp = dirname(buf)) == NULL) {
459 snprintf(err, errlen, "dirname() failed");
460 return -1;
461 }
462 strlcpy(buf, cp, sizeof(buf));
463
464 debug3("secure_filename: checking '%s'", buf);
465 if (stat(buf, &st) < 0 ||
466 (st.st_uid != 0 && st.st_uid != uid) ||
467 (st.st_mode & 022) != 0) {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100468 snprintf(err, errlen,
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000469 "bad ownership or modes for directory %s", buf);
470 return -1;
471 }
472
Damien Miller0ae6e002001-07-14 12:21:34 +1000473 /* If are passed the homedir then we can stop */
Ben Lindstrom485075e2002-11-09 15:45:12 +0000474 if (comparehome && strcmp(homedir, buf) == 0) {
Damien Miller0ae6e002001-07-14 12:21:34 +1000475 debug3("secure_filename: terminating check at '%s'",
476 buf);
477 break;
478 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000479 /*
480 * dirname should always complete with a "/" path,
481 * but we can be paranoid and check for "." too
482 */
483 if ((strcmp("/", buf) == 0) || (strcmp(".", buf) == 0))
484 break;
485 }
486 return 0;
487}
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000488
489struct passwd *
490getpwnamallow(const char *user)
491{
Ben Lindstromb481e132002-03-22 01:35:47 +0000492#ifdef HAVE_LOGIN_CAP
493 extern login_cap_t *lc;
494#ifdef BSD_AUTH
495 auth_session_t *as;
496#endif
497#endif
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000498 struct passwd *pw;
499
500 pw = getpwnam(user);
Damien Miller6f0a1882002-09-22 01:26:51 +1000501 if (pw == NULL) {
Damien Millera22f2d72004-07-21 20:48:24 +1000502 logit("Invalid user %.100s from %.100s",
Damien Miller6f0a1882002-09-22 01:26:51 +1000503 user, get_remote_ipaddr());
Darren Tucker97363a82003-05-02 23:42:25 +1000504#ifdef CUSTOM_FAILED_LOGIN
Darren Tucker42d9dc72005-02-02 17:10:11 +1100505 record_failed_login(user,
506 get_canonical_hostname(options.use_dns), "ssh");
Ben Lindstromf5397c02002-11-09 16:11:10 +0000507#endif
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100508#ifdef SSH_AUDIT_EVENTS
509 audit_event(SSH_INVALID_USER);
510#endif /* SSH_AUDIT_EVENTS */
Damien Miller6f0a1882002-09-22 01:26:51 +1000511 return (NULL);
512 }
513 if (!allowed_user(pw))
Ben Lindstromb481e132002-03-22 01:35:47 +0000514 return (NULL);
515#ifdef HAVE_LOGIN_CAP
516 if ((lc = login_getclass(pw->pw_class)) == NULL) {
517 debug("unable to get login class: %s", user);
518 return (NULL);
519 }
520#ifdef BSD_AUTH
521 if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
Damien Miller13e35a02002-05-22 14:04:11 +1000522 auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
Ben Lindstromb481e132002-03-22 01:35:47 +0000523 debug("Approval failure for %s", user);
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000524 pw = NULL;
Ben Lindstromb481e132002-03-22 01:35:47 +0000525 }
526 if (as != NULL)
527 auth_close(as);
528#endif
529#endif
Ben Lindstromf34e4eb2002-03-22 03:08:30 +0000530 if (pw != NULL)
531 return (pwcopy(pw));
532 return (NULL);
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000533}
Ben Lindstroma574cda2002-05-15 16:16:14 +0000534
535void
536auth_debug_add(const char *fmt,...)
537{
538 char buf[1024];
539 va_list args;
540
541 if (!auth_debug_init)
542 return;
543
544 va_start(args, fmt);
545 vsnprintf(buf, sizeof(buf), fmt, args);
546 va_end(args);
547 buffer_put_cstring(&auth_debug, buf);
548}
549
550void
551auth_debug_send(void)
552{
553 char *msg;
554
555 if (!auth_debug_init)
556 return;
557 while (buffer_len(&auth_debug)) {
558 msg = buffer_get_string(&auth_debug, NULL);
559 packet_send_debug("%s", msg);
560 xfree(msg);
561 }
562}
563
564void
565auth_debug_reset(void)
566{
567 if (auth_debug_init)
568 buffer_clear(&auth_debug);
569 else {
570 buffer_init(&auth_debug);
571 auth_debug_init = 1;
572 }
573}
Damien Miller856f0be2003-09-03 07:32:45 +1000574
575struct passwd *
576fakepw(void)
577{
578 static struct passwd fake;
579
580 memset(&fake, 0, sizeof(fake));
581 fake.pw_name = "NOUSER";
582 fake.pw_passwd =
Damien Miller787b2ec2003-11-21 23:56:47 +1100583 "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
Damien Miller856f0be2003-09-03 07:32:45 +1000584 fake.pw_gecos = "NOUSER";
Darren Tucker1f8311c2004-05-13 16:39:33 +1000585 fake.pw_uid = (uid_t)-1;
586 fake.pw_gid = (gid_t)-1;
Damien Miller856f0be2003-09-03 07:32:45 +1000587#ifdef HAVE_PW_CLASS_IN_PASSWD
588 fake.pw_class = "";
589#endif
590 fake.pw_dir = "/nonexist";
591 fake.pw_shell = "/nonexist";
592
593 return (&fake);
594}