blob: afca1f7c63c3acd2f379b378da0fa0ac38c25b52 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Rhosts authentication. This file contains code to check whether to admit
6 * the login based on rhosts authentication. This file also processes
7 * /etc/hosts.equiv.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#include "includes.h"
Ben Lindstrombdde3302002-05-15 16:19:37 +000017RCSID("$OpenBSD: auth-rhosts.c,v 1.28 2002/05/13 21:26:49 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018
19#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000021#include "pathnames.h"
22#include "log.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110023#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000024#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000025#include "auth.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026
Ben Lindstrom5eabda32001-04-12 23:34:34 +000027/* import */
28extern ServerOptions options;
Ben Lindstrombdde3302002-05-15 16:19:37 +000029extern int use_privsep;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000030
Damien Miller5428f641999-11-25 11:54:57 +110031/*
32 * This function processes an rhosts-style file (.rhosts, .shosts, or
33 * /etc/hosts.equiv). This returns true if authentication can be granted
34 * based on the file, and returns zero otherwise.
35 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
Ben Lindstrombba81212001-06-25 05:01:22 +000037static int
Damien Miller95def091999-11-25 00:26:21 +110038check_rhosts_file(const char *filename, const char *hostname,
39 const char *ipaddr, const char *client_user,
40 const char *server_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041{
Damien Miller95def091999-11-25 00:26:21 +110042 FILE *f;
43 char buf[1024]; /* Must not be larger than host, user, dummy below. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Damien Miller95def091999-11-25 00:26:21 +110045 /* Open the .rhosts file, deny if unreadable */
46 f = fopen(filename, "r");
47 if (!f)
48 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
Damien Miller95def091999-11-25 00:26:21 +110050 while (fgets(buf, sizeof(buf), f)) {
51 /* All three must be at least as big as buf to avoid overflows. */
52 char hostbuf[1024], userbuf[1024], dummy[1024], *host, *user, *cp;
53 int negated;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054
Damien Miller95def091999-11-25 00:26:21 +110055 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
56 ;
57 if (*cp == '#' || *cp == '\n' || !*cp)
58 continue;
59
Damien Miller5428f641999-11-25 11:54:57 +110060 /*
61 * NO_PLUS is supported at least on OSF/1. We skip it (we
62 * don't ever support the plus syntax).
63 */
Damien Miller95def091999-11-25 00:26:21 +110064 if (strncmp(cp, "NO_PLUS", 7) == 0)
65 continue;
66
Damien Miller5428f641999-11-25 11:54:57 +110067 /*
68 * This should be safe because each buffer is as big as the
69 * whole string, and thus cannot be overwritten.
70 */
Damien Miller95def091999-11-25 00:26:21 +110071 switch (sscanf(buf, "%s %s %s", hostbuf, userbuf, dummy)) {
72 case 0:
Ben Lindstrombdde3302002-05-15 16:19:37 +000073 auth_debug_add("Found empty line in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +110074 continue;
75 case 1:
76 /* Host name only. */
77 strlcpy(userbuf, server_user, sizeof(userbuf));
78 break;
79 case 2:
80 /* Got both host and user name. */
81 break;
82 case 3:
Ben Lindstrombdde3302002-05-15 16:19:37 +000083 auth_debug_add("Found garbage in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +110084 continue;
85 default:
86 /* Weird... */
87 continue;
88 }
89
90 host = hostbuf;
91 user = userbuf;
92 negated = 0;
93
94 /* Process negated host names, or positive netgroups. */
95 if (host[0] == '-') {
96 negated = 1;
97 host++;
98 } else if (host[0] == '+')
99 host++;
100
101 if (user[0] == '-') {
102 negated = 1;
103 user++;
104 } else if (user[0] == '+')
105 user++;
106
107 /* Check for empty host/user names (particularly '+'). */
108 if (!host[0] || !user[0]) {
109 /* We come here if either was '+' or '-'. */
Ben Lindstrombdde3302002-05-15 16:19:37 +0000110 auth_debug_add("Ignoring wild host/user names in %.100s.",
111 filename);
Damien Miller95def091999-11-25 00:26:21 +1100112 continue;
113 }
114 /* Verify that host name matches. */
115 if (host[0] == '@') {
116 if (!innetgr(host + 1, hostname, NULL, NULL) &&
117 !innetgr(host + 1, ipaddr, NULL, NULL))
118 continue;
119 } else if (strcasecmp(host, hostname) && strcmp(host, ipaddr) != 0)
120 continue; /* Different hostname. */
121
122 /* Verify that user name matches. */
123 if (user[0] == '@') {
124 if (!innetgr(user + 1, NULL, client_user, NULL))
125 continue;
126 } else if (strcmp(user, client_user) != 0)
127 continue; /* Different username. */
128
129 /* Found the user and host. */
130 fclose(f);
131
132 /* If the entry was negated, deny access. */
133 if (negated) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000134 auth_debug_add("Matched negative entry in %.100s.",
135 filename);
Damien Miller95def091999-11-25 00:26:21 +1100136 return 0;
137 }
138 /* Accept authentication. */
139 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140 }
141
Damien Miller95def091999-11-25 00:26:21 +1100142 /* Authentication using this file denied. */
143 fclose(f);
144 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145}
146
Damien Miller5428f641999-11-25 11:54:57 +1100147/*
148 * Tries to authenticate the user using the .shosts or .rhosts file. Returns
149 * true if authentication succeeds. If ignore_rhosts is true, only
150 * /etc/hosts.equiv will be considered (.rhosts and .shosts are ignored).
151 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152
Damien Miller4af51302000-04-16 11:18:38 +1000153int
Damien Miller95def091999-11-25 00:26:21 +1100154auth_rhosts(struct passwd *pw, const char *client_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155{
Damien Miller95def091999-11-25 00:26:21 +1100156 const char *hostname, *ipaddr;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000157
Damien Millerc5d86352002-02-05 12:13:41 +1100158 hostname = get_canonical_hostname(options.verify_reverse_mapping);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000159 ipaddr = get_remote_ipaddr();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000160 return auth_rhosts2(pw, client_user, hostname, ipaddr);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000161}
162
Ben Lindstrombdde3302002-05-15 16:19:37 +0000163static int
164auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000165 const char *ipaddr)
166{
167 char buf[1024];
Damien Miller95def091999-11-25 00:26:21 +1100168 struct stat st;
169 static const char *rhosts_files[] = {".shosts", ".rhosts", NULL};
Ben Lindstrom46c16222000-12-22 01:43:59 +0000170 u_int rhosts_file_index;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000172 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
173 client_user, hostname, ipaddr);
174
Damien Miller874d77b2000-10-14 16:23:11 +1100175 /* no user given */
176 if (pw == NULL)
177 return 0;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000178
Damien Miller95def091999-11-25 00:26:21 +1100179 /* Switch to the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000180 temporarily_use_uid(pw);
Damien Miller5428f641999-11-25 11:54:57 +1100181 /*
182 * Quick check: if the user has no .shosts or .rhosts files, return
183 * failure immediately without doing costly lookups from name
184 * servers.
185 */
Damien Miller95def091999-11-25 00:26:21 +1100186 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100187 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100188 /* Check users .rhosts or .shosts. */
189 snprintf(buf, sizeof buf, "%.500s/%.100s",
190 pw->pw_dir, rhosts_files[rhosts_file_index]);
191 if (stat(buf, &st) >= 0)
192 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193 }
Damien Miller95def091999-11-25 00:26:21 +1100194 /* Switch back to privileged uid. */
195 restore_uid();
196
197 /* Deny if The user has no .shosts or .rhosts file and there are no system-wide files. */
198 if (!rhosts_files[rhosts_file_index] &&
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000199 stat(_PATH_RHOSTS_EQUIV, &st) < 0 &&
200 stat(_PATH_SSH_HOSTS_EQUIV, &st) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100201 return 0;
202
Damien Miller95def091999-11-25 00:26:21 +1100203 /* If not logging in as superuser, try /etc/hosts.equiv and shosts.equiv. */
204 if (pw->pw_uid != 0) {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100205 if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr,
206 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000207 auth_debug_add("Accepted for %.100s [%.100s] by /etc/hosts.equiv.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100208 hostname, ipaddr);
Damien Miller95def091999-11-25 00:26:21 +1100209 return 1;
210 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100211 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr,
212 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000213 auth_debug_add("Accepted for %.100s [%.100s] by %.100s.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100214 hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV);
Damien Miller95def091999-11-25 00:26:21 +1100215 return 1;
216 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217 }
Damien Miller5428f641999-11-25 11:54:57 +1100218 /*
219 * Check that the home directory is owned by root or the user, and is
220 * not group or world writable.
221 */
Damien Miller95def091999-11-25 00:26:21 +1100222 if (stat(pw->pw_dir, &st) < 0) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000223 log("Rhosts authentication refused for %.100s: "
224 "no home directory %.200s", pw->pw_name, pw->pw_dir);
225 auth_debug_add("Rhosts authentication refused for %.100s: "
226 "no home directory %.200s", pw->pw_name, pw->pw_dir);
Damien Miller95def091999-11-25 00:26:21 +1100227 return 0;
228 }
229 if (options.strict_modes &&
230 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100231 (st.st_mode & 022) != 0)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000232 log("Rhosts authentication refused for %.100s: "
233 "bad ownership or modes for home directory.", pw->pw_name);
234 auth_debug_add("Rhosts authentication refused for %.100s: "
235 "bad ownership or modes for home directory.", pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100236 return 0;
237 }
238 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000239 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240
Damien Miller95def091999-11-25 00:26:21 +1100241 /* Check all .rhosts files (currently .shosts and .rhosts). */
242 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100243 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100244 /* Check users .rhosts or .shosts. */
245 snprintf(buf, sizeof buf, "%.500s/%.100s",
246 pw->pw_dir, rhosts_files[rhosts_file_index]);
247 if (stat(buf, &st) < 0)
248 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249
Damien Miller5428f641999-11-25 11:54:57 +1100250 /*
251 * Make sure that the file is either owned by the user or by
252 * root, and make sure it is not writable by anyone but the
253 * owner. This is to help avoid novices accidentally
254 * allowing access to their account by anyone.
255 */
Damien Miller95def091999-11-25 00:26:21 +1100256 if (options.strict_modes &&
257 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100258 (st.st_mode & 022) != 0)) {
Damien Miller95def091999-11-25 00:26:21 +1100259 log("Rhosts authentication refused for %.100s: bad modes for %.200s",
260 pw->pw_name, buf);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000261 auth_debug_add("Bad file modes for %.200s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100262 continue;
263 }
264 /* Check if we have been configured to ignore .rhosts and .shosts files. */
265 if (options.ignore_rhosts) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000266 auth_debug_add("Server has been configured to ignore %.100s.",
267 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100268 continue;
269 }
270 /* Check if authentication is permitted by the file. */
271 if (check_rhosts_file(buf, hostname, ipaddr, client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000272 auth_debug_add("Accepted by %.100s.",
273 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100274 /* Restore the privileged uid. */
275 restore_uid();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000276 auth_debug_add("Accepted host %s ip %s client_user %s server_user %s",
277 hostname, ipaddr, client_user, pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100278 return 1;
279 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280 }
281
Damien Miller95def091999-11-25 00:26:21 +1100282 /* Restore the privileged uid. */
283 restore_uid();
284 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285}
Ben Lindstrombdde3302002-05-15 16:19:37 +0000286
287int
288auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname,
289 const char *ipaddr)
290{
291 int ret;
292
293 auth_debug_reset();
294 ret = auth_rhosts2_raw(pw, client_user, hostname, ipaddr);
295 if (!use_privsep)
296 auth_debug_send();
297 return ret;
298}