blob: b5bedee8d40d8b8cb0c75e2c48e806c0c1f24d4f [file] [log] [blame]
Damien Miller7acefbb2014-07-18 14:11:24 +10001/* $OpenBSD: auth-rhosts.c,v 1.45 2014/07/15 15:54:14 millert 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;
60 char buf[1024]; /* Must not be larger than host, user, dummy below. */
Darren Tucker06db5842008-06-13 14:51:28 +100061 int fd;
62 struct stat st;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Miller95def091999-11-25 00:26:21 +110064 /* Open the .rhosts file, deny if unreadable */
Darren Tucker06db5842008-06-13 14:51:28 +100065 if ((fd = open(filename, O_RDONLY|O_NONBLOCK)) == -1)
Damien Miller95def091999-11-25 00:26:21 +110066 return 0;
Darren Tucker06db5842008-06-13 14:51:28 +100067 if (fstat(fd, &st) == -1) {
68 close(fd);
69 return 0;
70 }
71 if (!S_ISREG(st.st_mode)) {
72 logit("User %s hosts file %s is not a regular file",
73 server_user, filename);
74 close(fd);
75 return 0;
76 }
77 unset_nonblock(fd);
78 if ((f = fdopen(fd, "r")) == NULL) {
79 close(fd);
80 return 0;
81 }
Damien Miller95def091999-11-25 00:26:21 +110082 while (fgets(buf, sizeof(buf), f)) {
83 /* All three must be at least as big as buf to avoid overflows. */
84 char hostbuf[1024], userbuf[1024], dummy[1024], *host, *user, *cp;
85 int negated;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Damien Miller95def091999-11-25 00:26:21 +110087 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
88 ;
89 if (*cp == '#' || *cp == '\n' || !*cp)
90 continue;
91
Damien Miller5428f641999-11-25 11:54:57 +110092 /*
93 * NO_PLUS is supported at least on OSF/1. We skip it (we
94 * don't ever support the plus syntax).
95 */
Damien Miller95def091999-11-25 00:26:21 +110096 if (strncmp(cp, "NO_PLUS", 7) == 0)
97 continue;
98
Damien Miller5428f641999-11-25 11:54:57 +110099 /*
100 * This should be safe because each buffer is as big as the
101 * whole string, and thus cannot be overwritten.
102 */
Damien Millera9825782003-05-18 20:53:10 +1000103 switch (sscanf(buf, "%1023s %1023s %1023s", hostbuf, userbuf,
104 dummy)) {
Damien Miller95def091999-11-25 00:26:21 +1100105 case 0:
Ben Lindstrombdde3302002-05-15 16:19:37 +0000106 auth_debug_add("Found empty line in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100107 continue;
108 case 1:
109 /* Host name only. */
110 strlcpy(userbuf, server_user, sizeof(userbuf));
111 break;
112 case 2:
113 /* Got both host and user name. */
114 break;
115 case 3:
Ben Lindstrombdde3302002-05-15 16:19:37 +0000116 auth_debug_add("Found garbage in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +1100117 continue;
118 default:
119 /* Weird... */
120 continue;
121 }
122
123 host = hostbuf;
124 user = userbuf;
125 negated = 0;
126
127 /* Process negated host names, or positive netgroups. */
128 if (host[0] == '-') {
129 negated = 1;
130 host++;
131 } else if (host[0] == '+')
132 host++;
133
134 if (user[0] == '-') {
135 negated = 1;
136 user++;
137 } else if (user[0] == '+')
138 user++;
139
140 /* Check for empty host/user names (particularly '+'). */
141 if (!host[0] || !user[0]) {
142 /* We come here if either was '+' or '-'. */
Ben Lindstrombdde3302002-05-15 16:19:37 +0000143 auth_debug_add("Ignoring wild host/user names in %.100s.",
144 filename);
Damien Miller95def091999-11-25 00:26:21 +1100145 continue;
146 }
147 /* Verify that host name matches. */
148 if (host[0] == '@') {
149 if (!innetgr(host + 1, hostname, NULL, NULL) &&
150 !innetgr(host + 1, ipaddr, NULL, NULL))
151 continue;
152 } else if (strcasecmp(host, hostname) && strcmp(host, ipaddr) != 0)
153 continue; /* Different hostname. */
154
155 /* Verify that user name matches. */
156 if (user[0] == '@') {
157 if (!innetgr(user + 1, NULL, client_user, NULL))
158 continue;
159 } else if (strcmp(user, client_user) != 0)
160 continue; /* Different username. */
161
162 /* Found the user and host. */
163 fclose(f);
164
165 /* If the entry was negated, deny access. */
166 if (negated) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000167 auth_debug_add("Matched negative entry in %.100s.",
Damien Miller0dc1bef2005-07-17 17:22:45 +1000168 filename);
Damien Miller95def091999-11-25 00:26:21 +1100169 return 0;
170 }
171 /* Accept authentication. */
172 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173 }
174
Damien Miller95def091999-11-25 00:26:21 +1100175 /* Authentication using this file denied. */
176 fclose(f);
177 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178}
179
Damien Miller5428f641999-11-25 11:54:57 +1100180/*
181 * Tries to authenticate the user using the .shosts or .rhosts file. Returns
182 * true if authentication succeeds. If ignore_rhosts is true, only
183 * /etc/hosts.equiv will be considered (.rhosts and .shosts are ignored).
184 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185
Damien Miller4af51302000-04-16 11:18:38 +1000186int
Damien Miller95def091999-11-25 00:26:21 +1100187auth_rhosts(struct passwd *pw, const char *client_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188{
Damien Miller95def091999-11-25 00:26:21 +1100189 const char *hostname, *ipaddr;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000190
Damien Miller3a961dc2003-06-03 10:25:48 +1000191 hostname = get_canonical_hostname(options.use_dns);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000192 ipaddr = get_remote_ipaddr();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000193 return auth_rhosts2(pw, client_user, hostname, ipaddr);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000194}
195
Ben Lindstrombdde3302002-05-15 16:19:37 +0000196static int
197auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000198 const char *ipaddr)
199{
200 char buf[1024];
Damien Miller95def091999-11-25 00:26:21 +1100201 struct stat st;
202 static const char *rhosts_files[] = {".shosts", ".rhosts", NULL};
Ben Lindstrom46c16222000-12-22 01:43:59 +0000203 u_int rhosts_file_index;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000205 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
206 client_user, hostname, ipaddr);
207
Damien Miller95def091999-11-25 00:26:21 +1100208 /* Switch to the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000209 temporarily_use_uid(pw);
Damien Miller5428f641999-11-25 11:54:57 +1100210 /*
211 * Quick check: if the user has no .shosts or .rhosts files, return
212 * failure immediately without doing costly lookups from name
213 * servers.
214 */
Damien Miller95def091999-11-25 00:26:21 +1100215 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100216 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100217 /* Check users .rhosts or .shosts. */
218 snprintf(buf, sizeof buf, "%.500s/%.100s",
219 pw->pw_dir, rhosts_files[rhosts_file_index]);
220 if (stat(buf, &st) >= 0)
221 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222 }
Damien Miller95def091999-11-25 00:26:21 +1100223 /* Switch back to privileged uid. */
224 restore_uid();
225
226 /* Deny if The user has no .shosts or .rhosts file and there are no system-wide files. */
227 if (!rhosts_files[rhosts_file_index] &&
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000228 stat(_PATH_RHOSTS_EQUIV, &st) < 0 &&
229 stat(_PATH_SSH_HOSTS_EQUIV, &st) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100230 return 0;
231
Damien Miller95def091999-11-25 00:26:21 +1100232 /* If not logging in as superuser, try /etc/hosts.equiv and shosts.equiv. */
233 if (pw->pw_uid != 0) {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100234 if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr,
235 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000236 auth_debug_add("Accepted for %.100s [%.100s] by /etc/hosts.equiv.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100237 hostname, ipaddr);
Damien Miller95def091999-11-25 00:26:21 +1100238 return 1;
239 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100240 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr,
241 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000242 auth_debug_add("Accepted for %.100s [%.100s] by %.100s.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100243 hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV);
Damien Miller95def091999-11-25 00:26:21 +1100244 return 1;
245 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246 }
Damien Miller5428f641999-11-25 11:54:57 +1100247 /*
248 * Check that the home directory is owned by root or the user, and is
249 * not group or world writable.
250 */
Damien Miller95def091999-11-25 00:26:21 +1100251 if (stat(pw->pw_dir, &st) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000252 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000253 "no home directory %.200s", pw->pw_name, pw->pw_dir);
254 auth_debug_add("Rhosts authentication refused for %.100s: "
255 "no home directory %.200s", pw->pw_name, pw->pw_dir);
Damien Miller95def091999-11-25 00:26:21 +1100256 return 0;
257 }
258 if (options.strict_modes &&
259 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100260 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000261 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000262 "bad ownership or modes for home directory.", pw->pw_name);
263 auth_debug_add("Rhosts authentication refused for %.100s: "
264 "bad ownership or modes for home directory.", pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100265 return 0;
266 }
267 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000268 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller95def091999-11-25 00:26:21 +1100270 /* Check all .rhosts files (currently .shosts and .rhosts). */
271 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100272 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100273 /* Check users .rhosts or .shosts. */
274 snprintf(buf, sizeof buf, "%.500s/%.100s",
275 pw->pw_dir, rhosts_files[rhosts_file_index]);
276 if (stat(buf, &st) < 0)
277 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278
Damien Miller5428f641999-11-25 11:54:57 +1100279 /*
280 * Make sure that the file is either owned by the user or by
281 * root, and make sure it is not writable by anyone but the
282 * owner. This is to help avoid novices accidentally
283 * allowing access to their account by anyone.
284 */
Damien Miller95def091999-11-25 00:26:21 +1100285 if (options.strict_modes &&
286 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100287 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000288 logit("Rhosts authentication refused for %.100s: bad modes for %.200s",
Damien Miller95def091999-11-25 00:26:21 +1100289 pw->pw_name, buf);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000290 auth_debug_add("Bad file modes for %.200s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100291 continue;
292 }
293 /* Check if we have been configured to ignore .rhosts and .shosts files. */
294 if (options.ignore_rhosts) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000295 auth_debug_add("Server has been configured to ignore %.100s.",
296 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100297 continue;
298 }
299 /* Check if authentication is permitted by the file. */
300 if (check_rhosts_file(buf, hostname, ipaddr, client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000301 auth_debug_add("Accepted by %.100s.",
302 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100303 /* Restore the privileged uid. */
304 restore_uid();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000305 auth_debug_add("Accepted host %s ip %s client_user %s server_user %s",
306 hostname, ipaddr, client_user, pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100307 return 1;
308 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309 }
310
Damien Miller95def091999-11-25 00:26:21 +1100311 /* Restore the privileged uid. */
312 restore_uid();
313 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314}
Ben Lindstrombdde3302002-05-15 16:19:37 +0000315
316int
317auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname,
318 const char *ipaddr)
319{
Darren Tuckercd70e1b2010-03-07 23:05:17 +1100320 return auth_rhosts2_raw(pw, client_user, hostname, ipaddr);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000321}