blob: ee9e827afd086eb56d6f2c52bef2beb535977d32 [file] [log] [blame]
djm@openbsd.org5191df92014-12-23 22:42:48 +00001/* $OpenBSD: auth-rhosts.c,v 1.46 2014/12/23 22:42:48 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Rhosts authentication. This file contains code to check whether to admit
7 * the login based on rhosts authentication. This file also processes
8 * /etc/hosts.equiv.
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110015 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
17#include "includes.h"
Damien Millerf17883e2006-03-15 11:45:54 +110018
19#include <sys/types.h>
20#include <sys/stat.h>
Damien Miller015cd792006-03-15 11:08:02 +110021
22#ifdef HAVE_NETGROUP_H
23# include <netgroup.h>
24#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100025#include <pwd.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100026#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100027#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100028#include <stdarg.h>
Darren Tucker06db5842008-06-13 14:51:28 +100029#include <fcntl.h>
Darren Tuckerd9526a52008-06-14 09:01:24 +100030#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031
32#include "packet.h"
Damien Millerd7834352006-08-05 12:39:39 +100033#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "pathnames.h"
36#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100037#include "misc.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110038#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000039#include "canohost.h"
Damien Millerd7834352006-08-05 12:39:39 +100040#include "key.h"
41#include "hostfile.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000042#include "auth.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
Ben Lindstrom5eabda32001-04-12 23:34:34 +000044/* import */
45extern ServerOptions options;
Ben Lindstrombdde3302002-05-15 16:19:37 +000046extern int use_privsep;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000047
Damien Miller5428f641999-11-25 11:54:57 +110048/*
49 * This function processes an rhosts-style file (.rhosts, .shosts, or
50 * /etc/hosts.equiv). This returns true if authentication can be granted
51 * based on the file, and returns zero otherwise.
52 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Ben Lindstrombba81212001-06-25 05:01:22 +000054static int
Damien Miller95def091999-11-25 00:26:21 +110055check_rhosts_file(const char *filename, const char *hostname,
56 const char *ipaddr, const char *client_user,
57 const char *server_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058{
Damien Miller95def091999-11-25 00:26:21 +110059 FILE *f;
djm@openbsd.org5191df92014-12-23 22:42:48 +000060#define RBUFLN 1024
61 char buf[RBUFLN];/* Must not be larger than host, user, dummy below. */
Darren Tucker06db5842008-06-13 14:51:28 +100062 int fd;
63 struct stat st;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Miller95def091999-11-25 00:26:21 +110065 /* Open the .rhosts file, deny if unreadable */
Darren Tucker06db5842008-06-13 14:51:28 +100066 if ((fd = open(filename, O_RDONLY|O_NONBLOCK)) == -1)
Damien Miller95def091999-11-25 00:26:21 +110067 return 0;
Darren Tucker06db5842008-06-13 14:51:28 +100068 if (fstat(fd, &st) == -1) {
69 close(fd);
70 return 0;
71 }
72 if (!S_ISREG(st.st_mode)) {
73 logit("User %s hosts file %s is not a regular file",
74 server_user, filename);
75 close(fd);
76 return 0;
77 }
78 unset_nonblock(fd);
79 if ((f = fdopen(fd, "r")) == NULL) {
80 close(fd);
81 return 0;
82 }
Damien Miller95def091999-11-25 00:26:21 +110083 while (fgets(buf, sizeof(buf), f)) {
djm@openbsd.org5191df92014-12-23 22:42:48 +000084 /* All three must have length >= buf to avoid overflows. */
85 char hostbuf[RBUFLN], userbuf[RBUFLN], dummy[RBUFLN];
86 char *host, *user, *cp;
Damien Miller95def091999-11-25 00:26:21 +110087 int negated;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller95def091999-11-25 00:26:21 +110089 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
90 ;
91 if (*cp == '#' || *cp == '\n' || !*cp)
92 continue;
93
Damien Miller5428f641999-11-25 11:54:57 +110094 /*
95 * NO_PLUS is supported at least on OSF/1. We skip it (we
96 * don't ever support the plus syntax).
97 */
Damien Miller95def091999-11-25 00:26:21 +110098 if (strncmp(cp, "NO_PLUS", 7) == 0)
99 continue;
100
Damien Miller5428f641999-11-25 11:54:57 +1100101 /*
102 * This should be safe because each buffer is as big as the
103 * whole string, and thus cannot be overwritten.
104 */
Damien Millera9825782003-05-18 20:53:10 +1000105 switch (sscanf(buf, "%1023s %1023s %1023s", hostbuf, userbuf,
106 dummy)) {
Damien Miller95def091999-11-25 00:26:21 +1100107 case 0:
Ben Lindstrombdde3302002-05-15 16:19:37 +0000108 auth_debug_add("Found empty line in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100109 continue;
110 case 1:
111 /* Host name only. */
112 strlcpy(userbuf, server_user, sizeof(userbuf));
113 break;
114 case 2:
115 /* Got both host and user name. */
116 break;
117 case 3:
Ben Lindstrombdde3302002-05-15 16:19:37 +0000118 auth_debug_add("Found garbage in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100119 continue;
120 default:
121 /* Weird... */
122 continue;
123 }
124
125 host = hostbuf;
126 user = userbuf;
127 negated = 0;
128
129 /* Process negated host names, or positive netgroups. */
130 if (host[0] == '-') {
131 negated = 1;
132 host++;
133 } else if (host[0] == '+')
134 host++;
135
136 if (user[0] == '-') {
137 negated = 1;
138 user++;
139 } else if (user[0] == '+')
140 user++;
141
142 /* Check for empty host/user names (particularly '+'). */
143 if (!host[0] || !user[0]) {
144 /* We come here if either was '+' or '-'. */
djm@openbsd.org5191df92014-12-23 22:42:48 +0000145 auth_debug_add("Ignoring wild host/user names "
146 "in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100147 continue;
148 }
149 /* Verify that host name matches. */
150 if (host[0] == '@') {
151 if (!innetgr(host + 1, hostname, NULL, NULL) &&
152 !innetgr(host + 1, ipaddr, NULL, NULL))
153 continue;
djm@openbsd.org5191df92014-12-23 22:42:48 +0000154 } else if (strcasecmp(host, hostname) &&
155 strcmp(host, ipaddr) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100156 continue; /* Different hostname. */
157
158 /* Verify that user name matches. */
159 if (user[0] == '@') {
160 if (!innetgr(user + 1, NULL, client_user, NULL))
161 continue;
162 } else if (strcmp(user, client_user) != 0)
163 continue; /* Different username. */
164
165 /* Found the user and host. */
166 fclose(f);
167
168 /* If the entry was negated, deny access. */
169 if (negated) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000170 auth_debug_add("Matched negative entry in %.100s.",
Damien Miller0dc1bef2005-07-17 17:22:45 +1000171 filename);
Damien Miller95def091999-11-25 00:26:21 +1100172 return 0;
173 }
174 /* Accept authentication. */
175 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176 }
177
Damien Miller95def091999-11-25 00:26:21 +1100178 /* Authentication using this file denied. */
179 fclose(f);
180 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181}
182
Damien Miller5428f641999-11-25 11:54:57 +1100183/*
184 * Tries to authenticate the user using the .shosts or .rhosts file. Returns
185 * true if authentication succeeds. If ignore_rhosts is true, only
186 * /etc/hosts.equiv will be considered (.rhosts and .shosts are ignored).
187 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188
Damien Miller4af51302000-04-16 11:18:38 +1000189int
Damien Miller95def091999-11-25 00:26:21 +1100190auth_rhosts(struct passwd *pw, const char *client_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191{
Damien Miller95def091999-11-25 00:26:21 +1100192 const char *hostname, *ipaddr;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000193
Damien Miller3a961dc2003-06-03 10:25:48 +1000194 hostname = get_canonical_hostname(options.use_dns);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000195 ipaddr = get_remote_ipaddr();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000196 return auth_rhosts2(pw, client_user, hostname, ipaddr);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000197}
198
Ben Lindstrombdde3302002-05-15 16:19:37 +0000199static int
200auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000201 const char *ipaddr)
202{
203 char buf[1024];
Damien Miller95def091999-11-25 00:26:21 +1100204 struct stat st;
205 static const char *rhosts_files[] = {".shosts", ".rhosts", NULL};
Ben Lindstrom46c16222000-12-22 01:43:59 +0000206 u_int rhosts_file_index;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000208 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
209 client_user, hostname, ipaddr);
210
Damien Miller95def091999-11-25 00:26:21 +1100211 /* Switch to the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000212 temporarily_use_uid(pw);
Damien Miller5428f641999-11-25 11:54:57 +1100213 /*
djm@openbsd.org5191df92014-12-23 22:42:48 +0000214 * Quick check: if the user has no .shosts or .rhosts files and
215 * no system hosts.equiv/shosts.equiv files exist then return
Damien Miller5428f641999-11-25 11:54:57 +1100216 * failure immediately without doing costly lookups from name
217 * servers.
218 */
Damien Miller95def091999-11-25 00:26:21 +1100219 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100220 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100221 /* Check users .rhosts or .shosts. */
222 snprintf(buf, sizeof buf, "%.500s/%.100s",
223 pw->pw_dir, rhosts_files[rhosts_file_index]);
224 if (stat(buf, &st) >= 0)
225 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226 }
Damien Miller95def091999-11-25 00:26:21 +1100227 /* Switch back to privileged uid. */
228 restore_uid();
229
djm@openbsd.org5191df92014-12-23 22:42:48 +0000230 /*
231 * Deny if The user has no .shosts or .rhosts file and there
232 * are no system-wide files.
233 */
Damien Miller95def091999-11-25 00:26:21 +1100234 if (!rhosts_files[rhosts_file_index] &&
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000235 stat(_PATH_RHOSTS_EQUIV, &st) < 0 &&
djm@openbsd.org5191df92014-12-23 22:42:48 +0000236 stat(_PATH_SSH_HOSTS_EQUIV, &st) < 0) {
237 debug3("%s: no hosts access files exist", __func__);
Damien Miller95def091999-11-25 00:26:21 +1100238 return 0;
djm@openbsd.org5191df92014-12-23 22:42:48 +0000239 }
Damien Miller95def091999-11-25 00:26:21 +1100240
djm@openbsd.org5191df92014-12-23 22:42:48 +0000241 /*
242 * If not logging in as superuser, try /etc/hosts.equiv and
243 * shosts.equiv.
244 */
245 if (pw->pw_uid == 0)
246 debug3("%s: root user, ignoring system hosts files", __func__);
247 else {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100248 if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr,
249 client_user, pw->pw_name)) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000250 auth_debug_add("Accepted for %.100s [%.100s] by "
251 "/etc/hosts.equiv.", hostname, ipaddr);
Damien Miller95def091999-11-25 00:26:21 +1100252 return 1;
253 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100254 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr,
255 client_user, pw->pw_name)) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000256 auth_debug_add("Accepted for %.100s [%.100s] by "
257 "%.100s.", hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV);
Damien Miller95def091999-11-25 00:26:21 +1100258 return 1;
259 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260 }
djm@openbsd.org5191df92014-12-23 22:42:48 +0000261
Damien Miller5428f641999-11-25 11:54:57 +1100262 /*
263 * Check that the home directory is owned by root or the user, and is
264 * not group or world writable.
265 */
Damien Miller95def091999-11-25 00:26:21 +1100266 if (stat(pw->pw_dir, &st) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000267 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000268 "no home directory %.200s", pw->pw_name, pw->pw_dir);
269 auth_debug_add("Rhosts authentication refused for %.100s: "
270 "no home directory %.200s", pw->pw_name, pw->pw_dir);
Damien Miller95def091999-11-25 00:26:21 +1100271 return 0;
272 }
273 if (options.strict_modes &&
274 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100275 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000276 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000277 "bad ownership or modes for home directory.", pw->pw_name);
278 auth_debug_add("Rhosts authentication refused for %.100s: "
279 "bad ownership or modes for home directory.", pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100280 return 0;
281 }
282 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000283 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284
Damien Miller95def091999-11-25 00:26:21 +1100285 /* Check all .rhosts files (currently .shosts and .rhosts). */
286 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100287 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100288 /* Check users .rhosts or .shosts. */
289 snprintf(buf, sizeof buf, "%.500s/%.100s",
290 pw->pw_dir, rhosts_files[rhosts_file_index]);
291 if (stat(buf, &st) < 0)
292 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293
Damien Miller5428f641999-11-25 11:54:57 +1100294 /*
295 * Make sure that the file is either owned by the user or by
296 * root, and make sure it is not writable by anyone but the
297 * owner. This is to help avoid novices accidentally
298 * allowing access to their account by anyone.
299 */
Damien Miller95def091999-11-25 00:26:21 +1100300 if (options.strict_modes &&
301 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100302 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000303 logit("Rhosts authentication refused for %.100s: bad modes for %.200s",
Damien Miller95def091999-11-25 00:26:21 +1100304 pw->pw_name, buf);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000305 auth_debug_add("Bad file modes for %.200s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100306 continue;
307 }
djm@openbsd.org5191df92014-12-23 22:42:48 +0000308 /*
309 * Check if we have been configured to ignore .rhosts
310 * and .shosts files.
311 */
Damien Miller95def091999-11-25 00:26:21 +1100312 if (options.ignore_rhosts) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000313 auth_debug_add("Server has been configured to "
314 "ignore %.100s.", rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100315 continue;
316 }
317 /* Check if authentication is permitted by the file. */
djm@openbsd.org5191df92014-12-23 22:42:48 +0000318 if (check_rhosts_file(buf, hostname, ipaddr,
319 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000320 auth_debug_add("Accepted by %.100s.",
321 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100322 /* Restore the privileged uid. */
323 restore_uid();
djm@openbsd.org5191df92014-12-23 22:42:48 +0000324 auth_debug_add("Accepted host %s ip %s client_user "
325 "%s server_user %s", hostname, ipaddr,
326 client_user, pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100327 return 1;
328 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329 }
330
Damien Miller95def091999-11-25 00:26:21 +1100331 /* Restore the privileged uid. */
332 restore_uid();
333 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334}
Ben Lindstrombdde3302002-05-15 16:19:37 +0000335
336int
337auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname,
338 const char *ipaddr)
339{
Darren Tuckercd70e1b2010-03-07 23:05:17 +1100340 return auth_rhosts2_raw(pw, client_user, hostname, ipaddr);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000341}