blob: e81321b49c00a874f5e28834d9d59e1a90b23068 [file] [log] [blame]
djm@openbsd.orgc90f72d2020-04-17 03:30:05 +00001/* $OpenBSD: auth-rhosts.c,v 1.52 2020/04/17 03:30:05 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 Millerd4a8b7e1999-10-27 13:42:43 +100033#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "pathnames.h"
35#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100036#include "misc.h"
markus@openbsd.orgc7d39ac2018-07-09 21:35:50 +000037#include "sshbuf.h"
38#include "sshkey.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110039#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000040#include "canohost.h"
Damien Millerd7834352006-08-05 12:39:39 +100041#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 Miller4af51302000-04-16 11:18:38 +1000188int
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000189auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000190 const char *ipaddr)
191{
192 char buf[1024];
Damien Miller95def091999-11-25 00:26:21 +1100193 struct stat st;
194 static const char *rhosts_files[] = {".shosts", ".rhosts", NULL};
Ben Lindstrom46c16222000-12-22 01:43:59 +0000195 u_int rhosts_file_index;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000197 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
198 client_user, hostname, ipaddr);
199
Damien Miller95def091999-11-25 00:26:21 +1100200 /* Switch to the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000201 temporarily_use_uid(pw);
Damien Miller5428f641999-11-25 11:54:57 +1100202 /*
djm@openbsd.org5191df92014-12-23 22:42:48 +0000203 * Quick check: if the user has no .shosts or .rhosts files and
204 * no system hosts.equiv/shosts.equiv files exist then return
Damien Miller5428f641999-11-25 11:54:57 +1100205 * failure immediately without doing costly lookups from name
206 * servers.
207 */
Damien Miller95def091999-11-25 00:26:21 +1100208 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100209 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100210 /* Check users .rhosts or .shosts. */
211 snprintf(buf, sizeof buf, "%.500s/%.100s",
212 pw->pw_dir, rhosts_files[rhosts_file_index]);
213 if (stat(buf, &st) >= 0)
214 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215 }
Damien Miller95def091999-11-25 00:26:21 +1100216 /* Switch back to privileged uid. */
217 restore_uid();
218
djm@openbsd.org5191df92014-12-23 22:42:48 +0000219 /*
220 * Deny if The user has no .shosts or .rhosts file and there
221 * are no system-wide files.
222 */
Damien Miller95def091999-11-25 00:26:21 +1100223 if (!rhosts_files[rhosts_file_index] &&
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000224 stat(_PATH_RHOSTS_EQUIV, &st) == -1 &&
225 stat(_PATH_SSH_HOSTS_EQUIV, &st) == -1) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000226 debug3("%s: no hosts access files exist", __func__);
Damien Miller95def091999-11-25 00:26:21 +1100227 return 0;
djm@openbsd.org5191df92014-12-23 22:42:48 +0000228 }
Damien Miller95def091999-11-25 00:26:21 +1100229
djm@openbsd.org5191df92014-12-23 22:42:48 +0000230 /*
231 * If not logging in as superuser, try /etc/hosts.equiv and
232 * shosts.equiv.
233 */
234 if (pw->pw_uid == 0)
235 debug3("%s: root user, ignoring system hosts files", __func__);
236 else {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100237 if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr,
238 client_user, pw->pw_name)) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000239 auth_debug_add("Accepted for %.100s [%.100s] by "
240 "/etc/hosts.equiv.", hostname, ipaddr);
Damien Miller95def091999-11-25 00:26:21 +1100241 return 1;
242 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100243 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr,
244 client_user, pw->pw_name)) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000245 auth_debug_add("Accepted for %.100s [%.100s] by "
246 "%.100s.", hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV);
Damien Miller95def091999-11-25 00:26:21 +1100247 return 1;
248 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249 }
djm@openbsd.org5191df92014-12-23 22:42:48 +0000250
Damien Miller5428f641999-11-25 11:54:57 +1100251 /*
252 * Check that the home directory is owned by root or the user, and is
253 * not group or world writable.
254 */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000255 if (stat(pw->pw_dir, &st) == -1) {
Damien Miller996acd22003-04-09 20:59:48 +1000256 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000257 "no home directory %.200s", pw->pw_name, pw->pw_dir);
258 auth_debug_add("Rhosts authentication refused for %.100s: "
259 "no home directory %.200s", pw->pw_name, pw->pw_dir);
Damien Miller95def091999-11-25 00:26:21 +1100260 return 0;
261 }
262 if (options.strict_modes &&
263 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100264 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000265 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000266 "bad ownership or modes for home directory.", pw->pw_name);
267 auth_debug_add("Rhosts authentication refused for %.100s: "
268 "bad ownership or modes for home directory.", pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100269 return 0;
270 }
271 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000272 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273
Damien Miller95def091999-11-25 00:26:21 +1100274 /* Check all .rhosts files (currently .shosts and .rhosts). */
275 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100276 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100277 /* Check users .rhosts or .shosts. */
278 snprintf(buf, sizeof buf, "%.500s/%.100s",
279 pw->pw_dir, rhosts_files[rhosts_file_index]);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000280 if (stat(buf, &st) == -1)
Damien Miller95def091999-11-25 00:26:21 +1100281 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282
Damien Miller5428f641999-11-25 11:54:57 +1100283 /*
284 * Make sure that the file is either owned by the user or by
285 * root, and make sure it is not writable by anyone but the
286 * owner. This is to help avoid novices accidentally
287 * allowing access to their account by anyone.
288 */
Damien Miller95def091999-11-25 00:26:21 +1100289 if (options.strict_modes &&
290 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100291 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000292 logit("Rhosts authentication refused for %.100s: bad modes for %.200s",
Damien Miller95def091999-11-25 00:26:21 +1100293 pw->pw_name, buf);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000294 auth_debug_add("Bad file modes for %.200s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100295 continue;
296 }
djm@openbsd.org5191df92014-12-23 22:42:48 +0000297 /*
298 * Check if we have been configured to ignore .rhosts
299 * and .shosts files.
300 */
djm@openbsd.orgc90f72d2020-04-17 03:30:05 +0000301 if (options.ignore_rhosts == IGNORE_RHOSTS_YES ||
302 (options.ignore_rhosts == IGNORE_RHOSTS_SHOSTS &&
303 strcmp(rhosts_files[rhosts_file_index], ".shosts") != 0)) {
djm@openbsd.org5191df92014-12-23 22:42:48 +0000304 auth_debug_add("Server has been configured to "
305 "ignore %.100s.", rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100306 continue;
307 }
308 /* Check if authentication is permitted by the file. */
djm@openbsd.org5191df92014-12-23 22:42:48 +0000309 if (check_rhosts_file(buf, hostname, ipaddr,
310 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000311 auth_debug_add("Accepted by %.100s.",
312 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100313 /* Restore the privileged uid. */
314 restore_uid();
djm@openbsd.org5191df92014-12-23 22:42:48 +0000315 auth_debug_add("Accepted host %s ip %s client_user "
316 "%s server_user %s", hostname, ipaddr,
317 client_user, pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100318 return 1;
319 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320 }
321
Damien Miller95def091999-11-25 00:26:21 +1100322 /* Restore the privileged uid. */
323 restore_uid();
324 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325}