blob: d50ea3a01e0e9f825daf73afcc192b5ae9516bda [file] [log] [blame]
Damien Miller9f2abc42006-07-10 20:53:08 +10001/* $OpenBSD: auth-rhosts.c,v 1.38 2006/07/06 16:03:53 stevesk 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 Millerd4a8b7e1999-10-27 13:42:43 +100026
27#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000029#include "pathnames.h"
30#include "log.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110031#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000032#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000033#include "auth.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034
Ben Lindstrom5eabda32001-04-12 23:34:34 +000035/* import */
36extern ServerOptions options;
Ben Lindstrombdde3302002-05-15 16:19:37 +000037extern int use_privsep;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000038
Damien Miller5428f641999-11-25 11:54:57 +110039/*
40 * This function processes an rhosts-style file (.rhosts, .shosts, or
41 * /etc/hosts.equiv). This returns true if authentication can be granted
42 * based on the file, and returns zero otherwise.
43 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Ben Lindstrombba81212001-06-25 05:01:22 +000045static int
Damien Miller95def091999-11-25 00:26:21 +110046check_rhosts_file(const char *filename, const char *hostname,
47 const char *ipaddr, const char *client_user,
48 const char *server_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049{
Damien Miller95def091999-11-25 00:26:21 +110050 FILE *f;
51 char buf[1024]; /* Must not be larger than host, user, dummy below. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052
Damien Miller95def091999-11-25 00:26:21 +110053 /* Open the .rhosts file, deny if unreadable */
54 f = fopen(filename, "r");
55 if (!f)
56 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100057
Damien Miller95def091999-11-25 00:26:21 +110058 while (fgets(buf, sizeof(buf), f)) {
59 /* All three must be at least as big as buf to avoid overflows. */
60 char hostbuf[1024], userbuf[1024], dummy[1024], *host, *user, *cp;
61 int negated;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062
Damien Miller95def091999-11-25 00:26:21 +110063 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
64 ;
65 if (*cp == '#' || *cp == '\n' || !*cp)
66 continue;
67
Damien Miller5428f641999-11-25 11:54:57 +110068 /*
69 * NO_PLUS is supported at least on OSF/1. We skip it (we
70 * don't ever support the plus syntax).
71 */
Damien Miller95def091999-11-25 00:26:21 +110072 if (strncmp(cp, "NO_PLUS", 7) == 0)
73 continue;
74
Damien Miller5428f641999-11-25 11:54:57 +110075 /*
76 * This should be safe because each buffer is as big as the
77 * whole string, and thus cannot be overwritten.
78 */
Damien Millera9825782003-05-18 20:53:10 +100079 switch (sscanf(buf, "%1023s %1023s %1023s", hostbuf, userbuf,
80 dummy)) {
Damien Miller95def091999-11-25 00:26:21 +110081 case 0:
Ben Lindstrombdde3302002-05-15 16:19:37 +000082 auth_debug_add("Found empty line in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +110083 continue;
84 case 1:
85 /* Host name only. */
86 strlcpy(userbuf, server_user, sizeof(userbuf));
87 break;
88 case 2:
89 /* Got both host and user name. */
90 break;
91 case 3:
Ben Lindstrombdde3302002-05-15 16:19:37 +000092 auth_debug_add("Found garbage in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +110093 continue;
94 default:
95 /* Weird... */
96 continue;
97 }
98
99 host = hostbuf;
100 user = userbuf;
101 negated = 0;
102
103 /* Process negated host names, or positive netgroups. */
104 if (host[0] == '-') {
105 negated = 1;
106 host++;
107 } else if (host[0] == '+')
108 host++;
109
110 if (user[0] == '-') {
111 negated = 1;
112 user++;
113 } else if (user[0] == '+')
114 user++;
115
116 /* Check for empty host/user names (particularly '+'). */
117 if (!host[0] || !user[0]) {
118 /* We come here if either was '+' or '-'. */
Ben Lindstrombdde3302002-05-15 16:19:37 +0000119 auth_debug_add("Ignoring wild host/user names in %.100s.",
120 filename);
Damien Miller95def091999-11-25 00:26:21 +1100121 continue;
122 }
123 /* Verify that host name matches. */
124 if (host[0] == '@') {
125 if (!innetgr(host + 1, hostname, NULL, NULL) &&
126 !innetgr(host + 1, ipaddr, NULL, NULL))
127 continue;
128 } else if (strcasecmp(host, hostname) && strcmp(host, ipaddr) != 0)
129 continue; /* Different hostname. */
130
131 /* Verify that user name matches. */
132 if (user[0] == '@') {
133 if (!innetgr(user + 1, NULL, client_user, NULL))
134 continue;
135 } else if (strcmp(user, client_user) != 0)
136 continue; /* Different username. */
137
138 /* Found the user and host. */
139 fclose(f);
140
141 /* If the entry was negated, deny access. */
142 if (negated) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000143 auth_debug_add("Matched negative entry in %.100s.",
Damien Miller0dc1bef2005-07-17 17:22:45 +1000144 filename);
Damien Miller95def091999-11-25 00:26:21 +1100145 return 0;
146 }
147 /* Accept authentication. */
148 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149 }
150
Damien Miller95def091999-11-25 00:26:21 +1100151 /* Authentication using this file denied. */
152 fclose(f);
153 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154}
155
Damien Miller5428f641999-11-25 11:54:57 +1100156/*
157 * Tries to authenticate the user using the .shosts or .rhosts file. Returns
158 * true if authentication succeeds. If ignore_rhosts is true, only
159 * /etc/hosts.equiv will be considered (.rhosts and .shosts are ignored).
160 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161
Damien Miller4af51302000-04-16 11:18:38 +1000162int
Damien Miller95def091999-11-25 00:26:21 +1100163auth_rhosts(struct passwd *pw, const char *client_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164{
Damien Miller95def091999-11-25 00:26:21 +1100165 const char *hostname, *ipaddr;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000166
Damien Miller3a961dc2003-06-03 10:25:48 +1000167 hostname = get_canonical_hostname(options.use_dns);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000168 ipaddr = get_remote_ipaddr();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000169 return auth_rhosts2(pw, client_user, hostname, ipaddr);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000170}
171
Ben Lindstrombdde3302002-05-15 16:19:37 +0000172static int
173auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000174 const char *ipaddr)
175{
176 char buf[1024];
Damien Miller95def091999-11-25 00:26:21 +1100177 struct stat st;
178 static const char *rhosts_files[] = {".shosts", ".rhosts", NULL};
Ben Lindstrom46c16222000-12-22 01:43:59 +0000179 u_int rhosts_file_index;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000181 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
182 client_user, hostname, ipaddr);
183
Damien Miller95def091999-11-25 00:26:21 +1100184 /* Switch to the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000185 temporarily_use_uid(pw);
Damien Miller5428f641999-11-25 11:54:57 +1100186 /*
187 * Quick check: if the user has no .shosts or .rhosts files, return
188 * failure immediately without doing costly lookups from name
189 * servers.
190 */
Damien Miller95def091999-11-25 00:26:21 +1100191 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100192 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100193 /* Check users .rhosts or .shosts. */
194 snprintf(buf, sizeof buf, "%.500s/%.100s",
195 pw->pw_dir, rhosts_files[rhosts_file_index]);
196 if (stat(buf, &st) >= 0)
197 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198 }
Damien Miller95def091999-11-25 00:26:21 +1100199 /* Switch back to privileged uid. */
200 restore_uid();
201
202 /* Deny if The user has no .shosts or .rhosts file and there are no system-wide files. */
203 if (!rhosts_files[rhosts_file_index] &&
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000204 stat(_PATH_RHOSTS_EQUIV, &st) < 0 &&
205 stat(_PATH_SSH_HOSTS_EQUIV, &st) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100206 return 0;
207
Damien Miller95def091999-11-25 00:26:21 +1100208 /* If not logging in as superuser, try /etc/hosts.equiv and shosts.equiv. */
209 if (pw->pw_uid != 0) {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100210 if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr,
211 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000212 auth_debug_add("Accepted for %.100s [%.100s] by /etc/hosts.equiv.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100213 hostname, ipaddr);
Damien Miller95def091999-11-25 00:26:21 +1100214 return 1;
215 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100216 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr,
217 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000218 auth_debug_add("Accepted for %.100s [%.100s] by %.100s.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100219 hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV);
Damien Miller95def091999-11-25 00:26:21 +1100220 return 1;
221 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222 }
Damien Miller5428f641999-11-25 11:54:57 +1100223 /*
224 * Check that the home directory is owned by root or the user, and is
225 * not group or world writable.
226 */
Damien Miller95def091999-11-25 00:26:21 +1100227 if (stat(pw->pw_dir, &st) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000228 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000229 "no home directory %.200s", pw->pw_name, pw->pw_dir);
230 auth_debug_add("Rhosts authentication refused for %.100s: "
231 "no home directory %.200s", pw->pw_name, pw->pw_dir);
Damien Miller95def091999-11-25 00:26:21 +1100232 return 0;
233 }
234 if (options.strict_modes &&
235 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100236 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000237 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000238 "bad ownership or modes for home directory.", pw->pw_name);
239 auth_debug_add("Rhosts authentication refused for %.100s: "
240 "bad ownership or modes for home directory.", pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100241 return 0;
242 }
243 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000244 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245
Damien Miller95def091999-11-25 00:26:21 +1100246 /* Check all .rhosts files (currently .shosts and .rhosts). */
247 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100248 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100249 /* Check users .rhosts or .shosts. */
250 snprintf(buf, sizeof buf, "%.500s/%.100s",
251 pw->pw_dir, rhosts_files[rhosts_file_index]);
252 if (stat(buf, &st) < 0)
253 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254
Damien Miller5428f641999-11-25 11:54:57 +1100255 /*
256 * Make sure that the file is either owned by the user or by
257 * root, and make sure it is not writable by anyone but the
258 * owner. This is to help avoid novices accidentally
259 * allowing access to their account by anyone.
260 */
Damien Miller95def091999-11-25 00:26:21 +1100261 if (options.strict_modes &&
262 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100263 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000264 logit("Rhosts authentication refused for %.100s: bad modes for %.200s",
Damien Miller95def091999-11-25 00:26:21 +1100265 pw->pw_name, buf);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000266 auth_debug_add("Bad file modes for %.200s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100267 continue;
268 }
269 /* Check if we have been configured to ignore .rhosts and .shosts files. */
270 if (options.ignore_rhosts) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000271 auth_debug_add("Server has been configured to ignore %.100s.",
272 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100273 continue;
274 }
275 /* Check if authentication is permitted by the file. */
276 if (check_rhosts_file(buf, hostname, ipaddr, client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000277 auth_debug_add("Accepted by %.100s.",
278 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100279 /* Restore the privileged uid. */
280 restore_uid();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000281 auth_debug_add("Accepted host %s ip %s client_user %s server_user %s",
282 hostname, ipaddr, client_user, pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100283 return 1;
284 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285 }
286
Damien Miller95def091999-11-25 00:26:21 +1100287 /* Restore the privileged uid. */
288 restore_uid();
289 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290}
Ben Lindstrombdde3302002-05-15 16:19:37 +0000291
292int
293auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname,
294 const char *ipaddr)
295{
296 int ret;
297
298 auth_debug_reset();
299 ret = auth_rhosts2_raw(pw, client_user, hostname, ipaddr);
300 if (!use_privsep)
301 auth_debug_send();
302 return ret;
303}