1 /* $OpenBSD: auth-rhosts.c,v 1.57 2022/12/09 00:17:40 dtucker Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * Rhosts authentication. This file contains code to check whether to admit
7 * the login based on rhosts authentication. This file also processes
10 * 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".
19 #include <sys/types.h>
24 #ifdef HAVE_NETGROUP_H
25 # include <netgroup.h>
36 #include "pathnames.h"
48 extern ServerOptions options
;
49 extern int use_privsep
;
52 * This function processes an rhosts-style file (.rhosts, .shosts, or
53 * /etc/hosts.equiv). This returns true if authentication can be granted
54 * based on the file, and returns zero otherwise.
58 check_rhosts_file(const char *filename
, const char *hostname
,
59 const char *ipaddr
, const char *client_user
,
60 const char *server_user
)
64 char buf
[RBUFLN
];/* Must not be larger than host, user, dummy below. */
68 /* Open the .rhosts file, deny if unreadable */
69 if ((fd
= open(filename
, O_RDONLY
|O_NONBLOCK
)) == -1)
71 if (fstat(fd
, &st
) == -1) {
75 if (!S_ISREG(st
.st_mode
)) {
76 logit("User %s hosts file %s is not a regular file",
77 server_user
, filename
);
82 if ((f
= fdopen(fd
, "r")) == NULL
) {
86 while (fgets(buf
, sizeof(buf
), f
)) {
87 /* All three must have length >= buf to avoid overflows. */
88 char hostbuf
[RBUFLN
], userbuf
[RBUFLN
], dummy
[RBUFLN
];
89 char *host
, *user
, *cp
;
92 for (cp
= buf
; *cp
== ' ' || *cp
== '\t'; cp
++)
94 if (*cp
== '#' || *cp
== '\n' || !*cp
)
98 * NO_PLUS is supported at least on OSF/1. We skip it (we
99 * don't ever support the plus syntax).
101 if (strncmp(cp
, "NO_PLUS", 7) == 0)
105 * This should be safe because each buffer is as big as the
106 * whole string, and thus cannot be overwritten.
108 switch (sscanf(buf
, "%1023s %1023s %1023s", hostbuf
, userbuf
,
111 auth_debug_add("Found empty line in %.100s.", filename
);
114 /* Host name only. */
115 strlcpy(userbuf
, server_user
, sizeof(userbuf
));
118 /* Got both host and user name. */
121 auth_debug_add("Found garbage in %.100s.", filename
);
132 /* Process negated host names, or positive netgroups. */
133 if (host
[0] == '-') {
136 } else if (host
[0] == '+')
139 if (user
[0] == '-') {
142 } else if (user
[0] == '+')
145 /* Check for empty host/user names (particularly '+'). */
146 if (!host
[0] || !user
[0]) {
147 /* We come here if either was '+' or '-'. */
148 auth_debug_add("Ignoring wild host/user names "
149 "in %.100s.", filename
);
152 /* Verify that host name matches. */
153 if (host
[0] == '@') {
154 if (!innetgr(host
+ 1, hostname
, NULL
, NULL
) &&
155 !innetgr(host
+ 1, ipaddr
, NULL
, NULL
))
157 } else if (strcasecmp(host
, hostname
) &&
158 strcmp(host
, ipaddr
) != 0)
159 continue; /* Different hostname. */
161 /* Verify that user name matches. */
162 if (user
[0] == '@') {
163 if (!innetgr(user
+ 1, NULL
, client_user
, NULL
))
165 } else if (strcmp(user
, client_user
) != 0)
166 continue; /* Different username. */
168 /* Found the user and host. */
171 /* If the entry was negated, deny access. */
173 auth_debug_add("Matched negative entry in %.100s.",
177 /* Accept authentication. */
181 /* Authentication using this file denied. */
187 * Tries to authenticate the user using the .shosts or .rhosts file. Returns
188 * true if authentication succeeds. If ignore_rhosts is true, only
189 * /etc/hosts.equiv will be considered (.rhosts and .shosts are ignored).
192 auth_rhosts2(struct passwd
*pw
, const char *client_user
, const char *hostname
,
197 static const char * const rhosts_files
[] = {".shosts", ".rhosts", NULL
};
198 u_int rhosts_file_index
;
201 debug2_f("clientuser %s hostname %s ipaddr %s",
202 client_user
, hostname
, ipaddr
);
204 /* Switch to the user's uid. */
205 temporarily_use_uid(pw
);
207 * Quick check: if the user has no .shosts or .rhosts files and
208 * no system hosts.equiv/shosts.equiv files exist then return
209 * failure immediately without doing costly lookups from name
212 for (rhosts_file_index
= 0; rhosts_files
[rhosts_file_index
];
213 rhosts_file_index
++) {
214 /* Check users .rhosts or .shosts. */
215 xasprintf(&path
, "%s/%s",
216 pw
->pw_dir
, rhosts_files
[rhosts_file_index
]);
222 /* Switch back to privileged uid. */
226 * Deny if The user has no .shosts or .rhosts file and there
227 * are no system-wide files.
229 if (!rhosts_files
[rhosts_file_index
] &&
230 stat(_PATH_RHOSTS_EQUIV
, &st
) == -1 &&
231 stat(_PATH_SSH_HOSTS_EQUIV
, &st
) == -1) {
232 debug3_f("no hosts access files exist");
237 * If not logging in as superuser, try /etc/hosts.equiv and
241 debug3_f("root user, ignoring system hosts files");
243 if (check_rhosts_file(_PATH_RHOSTS_EQUIV
, hostname
, ipaddr
,
244 client_user
, pw
->pw_name
)) {
245 auth_debug_add("Accepted for %.100s [%.100s] by "
246 "/etc/hosts.equiv.", hostname
, ipaddr
);
249 if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV
, hostname
, ipaddr
,
250 client_user
, pw
->pw_name
)) {
251 auth_debug_add("Accepted for %.100s [%.100s] by "
252 "%.100s.", hostname
, ipaddr
, _PATH_SSH_HOSTS_EQUIV
);
258 * Check that the home directory is owned by root or the user, and is
259 * not group or world writable.
261 if (stat(pw
->pw_dir
, &st
) == -1) {
262 logit("Rhosts authentication refused for %.100s: "
263 "no home directory %.200s", pw
->pw_name
, pw
->pw_dir
);
264 auth_debug_add("Rhosts authentication refused for %.100s: "
265 "no home directory %.200s", pw
->pw_name
, pw
->pw_dir
);
268 if (options
.strict_modes
&&
269 ((st
.st_uid
!= 0 && st
.st_uid
!= pw
->pw_uid
) ||
270 (st
.st_mode
& 022) != 0)) {
271 logit("Rhosts authentication refused for %.100s: "
272 "bad ownership or modes for home directory.", pw
->pw_name
);
273 auth_debug_add("Rhosts authentication refused for %.100s: "
274 "bad ownership or modes for home directory.", pw
->pw_name
);
277 /* Temporarily use the user's uid. */
278 temporarily_use_uid(pw
);
280 /* Check all .rhosts files (currently .shosts and .rhosts). */
281 for (rhosts_file_index
= 0; rhosts_files
[rhosts_file_index
];
282 rhosts_file_index
++) {
283 /* Check users .rhosts or .shosts. */
284 xasprintf(&path
, "%s/%s",
285 pw
->pw_dir
, rhosts_files
[rhosts_file_index
]);
286 if (stat(path
, &st
) == -1) {
287 debug3_f("stat %s: %s", path
, strerror(errno
));
293 * Make sure that the file is either owned by the user or by
294 * root, and make sure it is not writable by anyone but the
295 * owner. This is to help avoid novices accidentally
296 * allowing access to their account by anyone.
298 if (options
.strict_modes
&&
299 ((st
.st_uid
!= 0 && st
.st_uid
!= pw
->pw_uid
) ||
300 (st
.st_mode
& 022) != 0)) {
301 logit("Rhosts authentication refused for %.100s: "
302 "bad modes for %.200s", pw
->pw_name
, path
);
303 auth_debug_add("Bad file modes for %.200s", path
);
308 * Check if we have been configured to ignore .rhosts
311 if (options
.ignore_rhosts
== IGNORE_RHOSTS_YES
||
312 (options
.ignore_rhosts
== IGNORE_RHOSTS_SHOSTS
&&
313 strcmp(rhosts_files
[rhosts_file_index
], ".shosts") != 0)) {
314 auth_debug_add("Server has been configured to "
315 "ignore %.100s.", rhosts_files
[rhosts_file_index
]);
319 /* Check if authentication is permitted by the file. */
320 if (check_rhosts_file(path
, hostname
, ipaddr
,
321 client_user
, pw
->pw_name
)) {
322 auth_debug_add("Accepted by %.100s.",
323 rhosts_files
[rhosts_file_index
]);
324 /* Restore the privileged uid. */
326 auth_debug_add("Accepted host %s ip %s client_user "
327 "%s server_user %s", hostname
, ipaddr
,
328 client_user
, pw
->pw_name
);
335 /* Restore the privileged uid. */