blob: c14604dc4043216d33c7525459699ec76517c997 [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: auth-rhosts.c,v 1.39 2006/07/22 20:48:22 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 Millere3476ed2006-07-24 14:13:33 +100026#include <string.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027
28#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029#include "uidswap.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "pathnames.h"
31#include "log.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110032#include "servconf.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000034#include "auth.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035
Ben Lindstrom5eabda32001-04-12 23:34:34 +000036/* import */
37extern ServerOptions options;
Ben Lindstrombdde3302002-05-15 16:19:37 +000038extern int use_privsep;
Ben Lindstrom5eabda32001-04-12 23:34:34 +000039
Damien Miller5428f641999-11-25 11:54:57 +110040/*
41 * This function processes an rhosts-style file (.rhosts, .shosts, or
42 * /etc/hosts.equiv). This returns true if authentication can be granted
43 * based on the file, and returns zero otherwise.
44 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Ben Lindstrombba81212001-06-25 05:01:22 +000046static int
Damien Miller95def091999-11-25 00:26:21 +110047check_rhosts_file(const char *filename, const char *hostname,
48 const char *ipaddr, const char *client_user,
49 const char *server_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050{
Damien Miller95def091999-11-25 00:26:21 +110051 FILE *f;
52 char buf[1024]; /* Must not be larger than host, user, dummy below. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller95def091999-11-25 00:26:21 +110054 /* Open the .rhosts file, deny if unreadable */
55 f = fopen(filename, "r");
56 if (!f)
57 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058
Damien Miller95def091999-11-25 00:26:21 +110059 while (fgets(buf, sizeof(buf), f)) {
60 /* All three must be at least as big as buf to avoid overflows. */
61 char hostbuf[1024], userbuf[1024], dummy[1024], *host, *user, *cp;
62 int negated;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Miller95def091999-11-25 00:26:21 +110064 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
65 ;
66 if (*cp == '#' || *cp == '\n' || !*cp)
67 continue;
68
Damien Miller5428f641999-11-25 11:54:57 +110069 /*
70 * NO_PLUS is supported at least on OSF/1. We skip it (we
71 * don't ever support the plus syntax).
72 */
Damien Miller95def091999-11-25 00:26:21 +110073 if (strncmp(cp, "NO_PLUS", 7) == 0)
74 continue;
75
Damien Miller5428f641999-11-25 11:54:57 +110076 /*
77 * This should be safe because each buffer is as big as the
78 * whole string, and thus cannot be overwritten.
79 */
Damien Millera9825782003-05-18 20:53:10 +100080 switch (sscanf(buf, "%1023s %1023s %1023s", hostbuf, userbuf,
81 dummy)) {
Damien Miller95def091999-11-25 00:26:21 +110082 case 0:
Ben Lindstrombdde3302002-05-15 16:19:37 +000083 auth_debug_add("Found empty line in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +110084 continue;
85 case 1:
86 /* Host name only. */
87 strlcpy(userbuf, server_user, sizeof(userbuf));
88 break;
89 case 2:
90 /* Got both host and user name. */
91 break;
92 case 3:
Ben Lindstrombdde3302002-05-15 16:19:37 +000093 auth_debug_add("Found garbage in %.100s.", filename);
Damien Miller95def091999-11-25 00:26:21 +110094 continue;
95 default:
96 /* Weird... */
97 continue;
98 }
99
100 host = hostbuf;
101 user = userbuf;
102 negated = 0;
103
104 /* Process negated host names, or positive netgroups. */
105 if (host[0] == '-') {
106 negated = 1;
107 host++;
108 } else if (host[0] == '+')
109 host++;
110
111 if (user[0] == '-') {
112 negated = 1;
113 user++;
114 } else if (user[0] == '+')
115 user++;
116
117 /* Check for empty host/user names (particularly '+'). */
118 if (!host[0] || !user[0]) {
119 /* We come here if either was '+' or '-'. */
Ben Lindstrombdde3302002-05-15 16:19:37 +0000120 auth_debug_add("Ignoring wild host/user names in %.100s.",
121 filename);
Damien Miller95def091999-11-25 00:26:21 +1100122 continue;
123 }
124 /* Verify that host name matches. */
125 if (host[0] == '@') {
126 if (!innetgr(host + 1, hostname, NULL, NULL) &&
127 !innetgr(host + 1, ipaddr, NULL, NULL))
128 continue;
129 } else if (strcasecmp(host, hostname) && strcmp(host, ipaddr) != 0)
130 continue; /* Different hostname. */
131
132 /* Verify that user name matches. */
133 if (user[0] == '@') {
134 if (!innetgr(user + 1, NULL, client_user, NULL))
135 continue;
136 } else if (strcmp(user, client_user) != 0)
137 continue; /* Different username. */
138
139 /* Found the user and host. */
140 fclose(f);
141
142 /* If the entry was negated, deny access. */
143 if (negated) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000144 auth_debug_add("Matched negative entry in %.100s.",
Damien Miller0dc1bef2005-07-17 17:22:45 +1000145 filename);
Damien Miller95def091999-11-25 00:26:21 +1100146 return 0;
147 }
148 /* Accept authentication. */
149 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150 }
151
Damien Miller95def091999-11-25 00:26:21 +1100152 /* Authentication using this file denied. */
153 fclose(f);
154 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155}
156
Damien Miller5428f641999-11-25 11:54:57 +1100157/*
158 * Tries to authenticate the user using the .shosts or .rhosts file. Returns
159 * true if authentication succeeds. If ignore_rhosts is true, only
160 * /etc/hosts.equiv will be considered (.rhosts and .shosts are ignored).
161 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162
Damien Miller4af51302000-04-16 11:18:38 +1000163int
Damien Miller95def091999-11-25 00:26:21 +1100164auth_rhosts(struct passwd *pw, const char *client_user)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165{
Damien Miller95def091999-11-25 00:26:21 +1100166 const char *hostname, *ipaddr;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000167
Damien Miller3a961dc2003-06-03 10:25:48 +1000168 hostname = get_canonical_hostname(options.use_dns);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000169 ipaddr = get_remote_ipaddr();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000170 return auth_rhosts2(pw, client_user, hostname, ipaddr);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000171}
172
Ben Lindstrombdde3302002-05-15 16:19:37 +0000173static int
174auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname,
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000175 const char *ipaddr)
176{
177 char buf[1024];
Damien Miller95def091999-11-25 00:26:21 +1100178 struct stat st;
179 static const char *rhosts_files[] = {".shosts", ".rhosts", NULL};
Ben Lindstrom46c16222000-12-22 01:43:59 +0000180 u_int rhosts_file_index;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000182 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
183 client_user, hostname, ipaddr);
184
Damien Miller95def091999-11-25 00:26:21 +1100185 /* Switch to the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000186 temporarily_use_uid(pw);
Damien Miller5428f641999-11-25 11:54:57 +1100187 /*
188 * Quick check: if the user has no .shosts or .rhosts files, return
189 * failure immediately without doing costly lookups from name
190 * servers.
191 */
Damien Miller95def091999-11-25 00:26:21 +1100192 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100193 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100194 /* Check users .rhosts or .shosts. */
195 snprintf(buf, sizeof buf, "%.500s/%.100s",
196 pw->pw_dir, rhosts_files[rhosts_file_index]);
197 if (stat(buf, &st) >= 0)
198 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199 }
Damien Miller95def091999-11-25 00:26:21 +1100200 /* Switch back to privileged uid. */
201 restore_uid();
202
203 /* Deny if The user has no .shosts or .rhosts file and there are no system-wide files. */
204 if (!rhosts_files[rhosts_file_index] &&
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000205 stat(_PATH_RHOSTS_EQUIV, &st) < 0 &&
206 stat(_PATH_SSH_HOSTS_EQUIV, &st) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100207 return 0;
208
Damien Miller95def091999-11-25 00:26:21 +1100209 /* If not logging in as superuser, try /etc/hosts.equiv and shosts.equiv. */
210 if (pw->pw_uid != 0) {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100211 if (check_rhosts_file(_PATH_RHOSTS_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 /etc/hosts.equiv.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100214 hostname, ipaddr);
Damien Miller95def091999-11-25 00:26:21 +1100215 return 1;
216 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100217 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr,
218 client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000219 auth_debug_add("Accepted for %.100s [%.100s] by %.100s.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100220 hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV);
Damien Miller95def091999-11-25 00:26:21 +1100221 return 1;
222 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223 }
Damien Miller5428f641999-11-25 11:54:57 +1100224 /*
225 * Check that the home directory is owned by root or the user, and is
226 * not group or world writable.
227 */
Damien Miller95def091999-11-25 00:26:21 +1100228 if (stat(pw->pw_dir, &st) < 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000229 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000230 "no home directory %.200s", pw->pw_name, pw->pw_dir);
231 auth_debug_add("Rhosts authentication refused for %.100s: "
232 "no home directory %.200s", pw->pw_name, pw->pw_dir);
Damien Miller95def091999-11-25 00:26:21 +1100233 return 0;
234 }
235 if (options.strict_modes &&
236 ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
Damien Miller9f0f5c62001-12-21 14:45:46 +1100237 (st.st_mode & 022) != 0)) {
Damien Miller996acd22003-04-09 20:59:48 +1000238 logit("Rhosts authentication refused for %.100s: "
Ben Lindstrombdde3302002-05-15 16:19:37 +0000239 "bad ownership or modes for home directory.", pw->pw_name);
240 auth_debug_add("Rhosts authentication refused for %.100s: "
241 "bad ownership or modes for home directory.", pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100242 return 0;
243 }
244 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000245 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246
Damien Miller95def091999-11-25 00:26:21 +1100247 /* Check all .rhosts files (currently .shosts and .rhosts). */
248 for (rhosts_file_index = 0; rhosts_files[rhosts_file_index];
Damien Miller9f0f5c62001-12-21 14:45:46 +1100249 rhosts_file_index++) {
Damien Miller95def091999-11-25 00:26:21 +1100250 /* Check users .rhosts or .shosts. */
251 snprintf(buf, sizeof buf, "%.500s/%.100s",
252 pw->pw_dir, rhosts_files[rhosts_file_index]);
253 if (stat(buf, &st) < 0)
254 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255
Damien Miller5428f641999-11-25 11:54:57 +1100256 /*
257 * Make sure that the file is either owned by the user or by
258 * root, and make sure it is not writable by anyone but the
259 * owner. This is to help avoid novices accidentally
260 * allowing access to their account by anyone.
261 */
Damien Miller95def091999-11-25 00:26:21 +1100262 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: bad modes for %.200s",
Damien Miller95def091999-11-25 00:26:21 +1100266 pw->pw_name, buf);
Ben Lindstrombdde3302002-05-15 16:19:37 +0000267 auth_debug_add("Bad file modes for %.200s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100268 continue;
269 }
270 /* Check if we have been configured to ignore .rhosts and .shosts files. */
271 if (options.ignore_rhosts) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000272 auth_debug_add("Server has been configured to ignore %.100s.",
273 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100274 continue;
275 }
276 /* Check if authentication is permitted by the file. */
277 if (check_rhosts_file(buf, hostname, ipaddr, client_user, pw->pw_name)) {
Ben Lindstrombdde3302002-05-15 16:19:37 +0000278 auth_debug_add("Accepted by %.100s.",
279 rhosts_files[rhosts_file_index]);
Damien Miller95def091999-11-25 00:26:21 +1100280 /* Restore the privileged uid. */
281 restore_uid();
Ben Lindstrombdde3302002-05-15 16:19:37 +0000282 auth_debug_add("Accepted host %s ip %s client_user %s server_user %s",
283 hostname, ipaddr, client_user, pw->pw_name);
Damien Miller95def091999-11-25 00:26:21 +1100284 return 1;
285 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286 }
287
Damien Miller95def091999-11-25 00:26:21 +1100288 /* Restore the privileged uid. */
289 restore_uid();
290 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000291}
Ben Lindstrombdde3302002-05-15 16:19:37 +0000292
293int
294auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname,
295 const char *ipaddr)
296{
297 int ret;
298
299 auth_debug_reset();
300 ret = auth_rhosts2_raw(pw, client_user, hostname, ipaddr);
301 if (!use_privsep)
302 auth_debug_send();
303 return ret;
304}