blob: 1deeb30b9a060ba21928552a62f6a215a0022d11 [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"
Damien Millerf17883e2006-03-15 11:45:54 +110017RCSID("$OpenBSD: auth-rhosts.c,v 1.35 2006/02/20 17:19:53 stevesk Exp $");
18
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 Millerd4a8b7e1999-10-27 13:42:43 +100025
26#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000028#include "pathnames.h"
29#include "log.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110030#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000032#include "auth.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033
Ben Lindstrom5eabda32001-04-12 23:34:34 +000034/* import */
35extern ServerOptions options;
Ben Lindstrombdde3302002-05-15 16:19:37 +000036extern int use_privsep;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000037
Damien Miller5428f641999-11-25 11:54:57 +110038/*
39 * This function processes an rhosts-style file (.rhosts, .shosts, or
40 * /etc/hosts.equiv). This returns true if authentication can be granted
41 * based on the file, and returns zero otherwise.
42 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
Ben Lindstrombba81212001-06-25 05:01:22 +000044static int
Damien Miller95def091999-11-25 00:26:21 +110045check_rhosts_file(const char *filename, const char *hostname,
46 const char *ipaddr, const char *client_user,
47 const char *server_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048{
Damien Miller95def091999-11-25 00:26:21 +110049 FILE *f;
50 char buf[1024]; /* Must not be larger than host, user, dummy below. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051
Damien Miller95def091999-11-25 00:26:21 +110052 /* Open the .rhosts file, deny if unreadable */
53 f = fopen(filename, "r");
54 if (!f)
55 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056
Damien Miller95def091999-11-25 00:26:21 +110057 while (fgets(buf, sizeof(buf), f)) {
58 /* All three must be at least as big as buf to avoid overflows. */
59 char hostbuf[1024], userbuf[1024], dummy[1024], *host, *user, *cp;
60 int negated;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061
Damien Miller95def091999-11-25 00:26:21 +110062 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
63 ;
64 if (*cp == '#' || *cp == '\n' || !*cp)
65 continue;
66
Damien Miller5428f641999-11-25 11:54:57 +110067 /*
68 * NO_PLUS is supported at least on OSF/1. We skip it (we
69 * don't ever support the plus syntax).
70 */
Damien Miller95def091999-11-25 00:26:21 +110071 if (strncmp(cp, "NO_PLUS", 7) == 0)
72 continue;
73
Damien Miller5428f641999-11-25 11:54:57 +110074 /*
75 * This should be safe because each buffer is as big as the
76 * whole string, and thus cannot be overwritten.
77 */
Damien Millera9825782003-05-18 20:53:10 +100078 switch (sscanf(buf, "%1023s %1023s %1023s", hostbuf, userbuf,
79 dummy)) {
Damien Miller95def091999-11-25 00:26:21 +110080 case 0:
Ben Lindstrombdde3302002-05-15 16:19:37 +000081 auth_debug_add("Found empty line in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +110082 continue;
83 case 1:
84 /* Host name only. */
85 strlcpy(userbuf, server_user, sizeof(userbuf));
86 break;
87 case 2:
88 /* Got both host and user name. */
89 break;
90 case 3:
Ben Lindstrombdde3302002-05-15 16:19:37 +000091 auth_debug_add("Found garbage in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +110092 continue;
93 default:
94 /* Weird... */
95 continue;
96 }
97
98 host = hostbuf;
99 user = userbuf;
100 negated = 0;
101
102 /* Process negated host names, or positive netgroups. */
103 if (host[0] == '-') {
104 negated = 1;
105 host++;
106 } else if (host[0] == '+')
107 host++;
108
109 if (user[0] == '-') {
110 negated = 1;
111 user++;
112 } else if (user[0] == '+')
113 user++;
114
115 /* Check for empty host/user names (particularly '+'). */
116 if (!host[0] || !user[0]) {
117 /* We come here if either was '+' or '-'. */
Ben Lindstrombdde3302002-05-15 16:19:37 +0000118 auth_debug_add("Ignoring wild host/user names in %.100s.",
119 filename);
Damien Miller95def091999-11-25 00:26:21 +1100120 continue;
121 }
122 /* Verify that host name matches. */
123 if (host[0] == '@') {
124 if (!innetgr(host + 1, hostname, NULL, NULL) &&
125 !innetgr(host + 1, ipaddr, NULL, NULL))
126 continue;
127 } else if (strcasecmp(host, hostname) && strcmp(host, ipaddr) != 0)
128 continue; /* Different hostname. */
129
130 /* Verify that user name matches. */
131 if (user[0] == '@') {
132 if (!innetgr(user + 1, NULL, client_user, NULL))
133 continue;
134 } else if (strcmp(user, client_user) != 0)
135 continue; /* Different username. */
136
137 /* Found the user and host. */
138 fclose(f);
139
140 /* If the entry was negated, deny access. */
141 if (negated) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000142 auth_debug_add("Matched negative entry in %.100s.",
Damien Miller0dc1bef2005-07-17 17:22:45 +1000143 filename);
Damien Miller95def091999-11-25 00:26:21 +1100144 return 0;
145 }
146 /* Accept authentication. */
147 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148 }
149
Damien Miller95def091999-11-25 00:26:21 +1100150 /* Authentication using this file denied. */
151 fclose(f);
152 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153}
154
Damien Miller5428f641999-11-25 11:54:57 +1100155/*
156 * Tries to authenticate the user using the .shosts or .rhosts file. Returns
157 * true if authentication succeeds. If ignore_rhosts is true, only
158 * /etc/hosts.equiv will be considered (.rhosts and .shosts are ignored).
159 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160
Damien Miller4af51302000-04-16 11:18:38 +1000161int
Damien Miller95def091999-11-25 00:26:21 +1100162auth_rhosts(struct passwd *pw, const char *client_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163{
Damien Miller95def091999-11-25 00:26:21 +1100164 const char *hostname, *ipaddr;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000165
Damien Miller3a961dc2003-06-03 10:25:48 +1000166 hostname = get_canonical_hostname(options.use_dns);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000167 ipaddr = get_remote_ipaddr();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000168 return auth_rhosts2(pw, client_user, hostname, ipaddr);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000169}
170
Ben Lindstrombdde3302002-05-15 16:19:37 +0000171static int
172auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000173 const char *ipaddr)
174{
175 char buf[1024];
Damien Miller95def091999-11-25 00:26:21 +1100176 struct stat st;
177 static const char *rhosts_files[] = {".shosts", ".rhosts", NULL};
Ben Lindstrom46c16222000-12-22 01:43:59 +0000178 u_int rhosts_file_index;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000180 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
181 client_user, hostname, ipaddr);
182
Damien Miller95def091999-11-25 00:26:21 +1100183 /* Switch to the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000184 temporarily_use_uid(pw);
Damien Miller5428f641999-11-25 11:54:57 +1100185 /*
186 * Quick check: if the user has no .shosts or .rhosts files, return
187 * failure immediately without doing costly lookups from name
188 * servers.
189 */
Damien Miller95def091999-11-25 00:26:21 +1100190 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100191 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100192 /* Check users .rhosts or .shosts. */
193 snprintf(buf, sizeof buf, "%.500s/%.100s",
194 pw->pw_dir, rhosts_files[rhosts_file_index]);
195 if (stat(buf, &st) >= 0)
196 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197 }
Damien Miller95def091999-11-25 00:26:21 +1100198 /* Switch back to privileged uid. */
199 restore_uid();
200
201 /* Deny if The user has no .shosts or .rhosts file and there are no system-wide files. */
202 if (!rhosts_files[rhosts_file_index] &&
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000203 stat(_PATH_RHOSTS_EQUIV, &st) < 0 &&
204 stat(_PATH_SSH_HOSTS_EQUIV, &st) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100205 return 0;
206
Damien Miller95def091999-11-25 00:26:21 +1100207 /* If not logging in as superuser, try /etc/hosts.equiv and shosts.equiv. */
208 if (pw->pw_uid != 0) {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100209 if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr,
210 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000211 auth_debug_add("Accepted for %.100s [%.100s] by /etc/hosts.equiv.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100212 hostname, ipaddr);
Damien Miller95def091999-11-25 00:26:21 +1100213 return 1;
214 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100215 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr,
216 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000217 auth_debug_add("Accepted for %.100s [%.100s] by %.100s.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100218 hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV);
Damien Miller95def091999-11-25 00:26:21 +1100219 return 1;
220 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221 }
Damien Miller5428f641999-11-25 11:54:57 +1100222 /*
223 * Check that the home directory is owned by root or the user, and is
224 * not group or world writable.
225 */
Damien Miller95def091999-11-25 00:26:21 +1100226 if (stat(pw->pw_dir, &st) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000227 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000228 "no home directory %.200s", pw->pw_name, pw->pw_dir);
229 auth_debug_add("Rhosts authentication refused for %.100s: "
230 "no home directory %.200s", pw->pw_name, pw->pw_dir);
Damien Miller95def091999-11-25 00:26:21 +1100231 return 0;
232 }
233 if (options.strict_modes &&
234 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100235 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000236 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000237 "bad ownership or modes for home directory.", pw->pw_name);
238 auth_debug_add("Rhosts authentication refused for %.100s: "
239 "bad ownership or modes for home directory.", pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100240 return 0;
241 }
242 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000243 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244
Damien Miller95def091999-11-25 00:26:21 +1100245 /* Check all .rhosts files (currently .shosts and .rhosts). */
246 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100247 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100248 /* Check users .rhosts or .shosts. */
249 snprintf(buf, sizeof buf, "%.500s/%.100s",
250 pw->pw_dir, rhosts_files[rhosts_file_index]);
251 if (stat(buf, &st) < 0)
252 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253
Damien Miller5428f641999-11-25 11:54:57 +1100254 /*
255 * Make sure that the file is either owned by the user or by
256 * root, and make sure it is not writable by anyone but the
257 * owner. This is to help avoid novices accidentally
258 * allowing access to their account by anyone.
259 */
Damien Miller95def091999-11-25 00:26:21 +1100260 if (options.strict_modes &&
261 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100262 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000263 logit("Rhosts authentication refused for %.100s: bad modes for %.200s",
Damien Miller95def091999-11-25 00:26:21 +1100264 pw->pw_name, buf);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000265 auth_debug_add("Bad file modes for %.200s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100266 continue;
267 }
268 /* Check if we have been configured to ignore .rhosts and .shosts files. */
269 if (options.ignore_rhosts) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000270 auth_debug_add("Server has been configured to ignore %.100s.",
271 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100272 continue;
273 }
274 /* Check if authentication is permitted by the file. */
275 if (check_rhosts_file(buf, hostname, ipaddr, client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000276 auth_debug_add("Accepted by %.100s.",
277 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100278 /* Restore the privileged uid. */
279 restore_uid();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000280 auth_debug_add("Accepted host %s ip %s client_user %s server_user %s",
281 hostname, ipaddr, client_user, pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100282 return 1;
283 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284 }
285
Damien Miller95def091999-11-25 00:26:21 +1100286 /* Restore the privileged uid. */
287 restore_uid();
288 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289}
Ben Lindstrombdde3302002-05-15 16:19:37 +0000290
291int
292auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname,
293 const char *ipaddr)
294{
295 int ret;
296
297 auth_debug_reset();
298 ret = auth_rhosts2_raw(pw, client_user, hostname, ipaddr);
299 if (!use_privsep)
300 auth_debug_send();
301 return ret;
302}