Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * 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 Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 8 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 9 | * 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 Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 14 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 15 | |
| 16 | #include "includes.h" |
Damien Miller | f17883e | 2006-03-15 11:45:54 +1100 | [diff] [blame] | 17 | |
| 18 | #include <sys/types.h> |
| 19 | #include <sys/stat.h> |
Damien Miller | 015cd79 | 2006-03-15 11:08:02 +1100 | [diff] [blame] | 20 | |
| 21 | #ifdef HAVE_NETGROUP_H |
| 22 | # include <netgroup.h> |
| 23 | #endif |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 24 | |
| 25 | #include "packet.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 26 | #include "uidswap.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 27 | #include "pathnames.h" |
| 28 | #include "log.h" |
Damien Miller | 6d7b2cd | 1999-11-12 15:19:27 +1100 | [diff] [blame] | 29 | #include "servconf.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 30 | #include "canohost.h" |
Ben Lindstrom | 31ca54a | 2001-02-09 02:11:24 +0000 | [diff] [blame] | 31 | #include "auth.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 32 | |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 33 | /* import */ |
| 34 | extern ServerOptions options; |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 35 | extern int use_privsep; |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 36 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 37 | /* |
| 38 | * This function processes an rhosts-style file (.rhosts, .shosts, or |
| 39 | * /etc/hosts.equiv). This returns true if authentication can be granted |
| 40 | * based on the file, and returns zero otherwise. |
| 41 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 42 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 43 | static int |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 44 | check_rhosts_file(const char *filename, const char *hostname, |
| 45 | const char *ipaddr, const char *client_user, |
| 46 | const char *server_user) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 47 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 48 | FILE *f; |
| 49 | char buf[1024]; /* Must not be larger than host, user, dummy below. */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 50 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 51 | /* Open the .rhosts file, deny if unreadable */ |
| 52 | f = fopen(filename, "r"); |
| 53 | if (!f) |
| 54 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 55 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 56 | while (fgets(buf, sizeof(buf), f)) { |
| 57 | /* All three must be at least as big as buf to avoid overflows. */ |
| 58 | char hostbuf[1024], userbuf[1024], dummy[1024], *host, *user, *cp; |
| 59 | int negated; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 60 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 61 | for (cp = buf; *cp == ' ' || *cp == '\t'; cp++) |
| 62 | ; |
| 63 | if (*cp == '#' || *cp == '\n' || !*cp) |
| 64 | continue; |
| 65 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 66 | /* |
| 67 | * NO_PLUS is supported at least on OSF/1. We skip it (we |
| 68 | * don't ever support the plus syntax). |
| 69 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 70 | if (strncmp(cp, "NO_PLUS", 7) == 0) |
| 71 | continue; |
| 72 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 73 | /* |
| 74 | * This should be safe because each buffer is as big as the |
| 75 | * whole string, and thus cannot be overwritten. |
| 76 | */ |
Damien Miller | a982578 | 2003-05-18 20:53:10 +1000 | [diff] [blame] | 77 | switch (sscanf(buf, "%1023s %1023s %1023s", hostbuf, userbuf, |
| 78 | dummy)) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 79 | case 0: |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 80 | auth_debug_add("Found empty line in %.100s.", filename); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 81 | continue; |
| 82 | case 1: |
| 83 | /* Host name only. */ |
| 84 | strlcpy(userbuf, server_user, sizeof(userbuf)); |
| 85 | break; |
| 86 | case 2: |
| 87 | /* Got both host and user name. */ |
| 88 | break; |
| 89 | case 3: |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 90 | auth_debug_add("Found garbage in %.100s.", filename); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 91 | continue; |
| 92 | default: |
| 93 | /* Weird... */ |
| 94 | continue; |
| 95 | } |
| 96 | |
| 97 | host = hostbuf; |
| 98 | user = userbuf; |
| 99 | negated = 0; |
| 100 | |
| 101 | /* Process negated host names, or positive netgroups. */ |
| 102 | if (host[0] == '-') { |
| 103 | negated = 1; |
| 104 | host++; |
| 105 | } else if (host[0] == '+') |
| 106 | host++; |
| 107 | |
| 108 | if (user[0] == '-') { |
| 109 | negated = 1; |
| 110 | user++; |
| 111 | } else if (user[0] == '+') |
| 112 | user++; |
| 113 | |
| 114 | /* Check for empty host/user names (particularly '+'). */ |
| 115 | if (!host[0] || !user[0]) { |
| 116 | /* We come here if either was '+' or '-'. */ |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 117 | auth_debug_add("Ignoring wild host/user names in %.100s.", |
| 118 | filename); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 119 | continue; |
| 120 | } |
| 121 | /* Verify that host name matches. */ |
| 122 | if (host[0] == '@') { |
| 123 | if (!innetgr(host + 1, hostname, NULL, NULL) && |
| 124 | !innetgr(host + 1, ipaddr, NULL, NULL)) |
| 125 | continue; |
| 126 | } else if (strcasecmp(host, hostname) && strcmp(host, ipaddr) != 0) |
| 127 | continue; /* Different hostname. */ |
| 128 | |
| 129 | /* Verify that user name matches. */ |
| 130 | if (user[0] == '@') { |
| 131 | if (!innetgr(user + 1, NULL, client_user, NULL)) |
| 132 | continue; |
| 133 | } else if (strcmp(user, client_user) != 0) |
| 134 | continue; /* Different username. */ |
| 135 | |
| 136 | /* Found the user and host. */ |
| 137 | fclose(f); |
| 138 | |
| 139 | /* If the entry was negated, deny access. */ |
| 140 | if (negated) { |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 141 | auth_debug_add("Matched negative entry in %.100s.", |
Damien Miller | 0dc1bef | 2005-07-17 17:22:45 +1000 | [diff] [blame] | 142 | filename); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 143 | return 0; |
| 144 | } |
| 145 | /* Accept authentication. */ |
| 146 | return 1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 147 | } |
| 148 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 149 | /* Authentication using this file denied. */ |
| 150 | fclose(f); |
| 151 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 152 | } |
| 153 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 154 | /* |
| 155 | * Tries to authenticate the user using the .shosts or .rhosts file. Returns |
| 156 | * true if authentication succeeds. If ignore_rhosts is true, only |
| 157 | * /etc/hosts.equiv will be considered (.rhosts and .shosts are ignored). |
| 158 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 159 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 160 | int |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 161 | auth_rhosts(struct passwd *pw, const char *client_user) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 162 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 163 | const char *hostname, *ipaddr; |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 164 | |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 165 | hostname = get_canonical_hostname(options.use_dns); |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 166 | ipaddr = get_remote_ipaddr(); |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 167 | return auth_rhosts2(pw, client_user, hostname, ipaddr); |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 170 | static int |
| 171 | auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname, |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 172 | const char *ipaddr) |
| 173 | { |
| 174 | char buf[1024]; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 175 | struct stat st; |
| 176 | static const char *rhosts_files[] = {".shosts", ".rhosts", NULL}; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 177 | u_int rhosts_file_index; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 178 | |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 179 | debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s", |
| 180 | client_user, hostname, ipaddr); |
| 181 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 182 | /* Switch to the user's uid. */ |
Ben Lindstrom | 3fcf1a2 | 2001-04-08 18:26:59 +0000 | [diff] [blame] | 183 | temporarily_use_uid(pw); |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 184 | /* |
| 185 | * Quick check: if the user has no .shosts or .rhosts files, return |
| 186 | * failure immediately without doing costly lookups from name |
| 187 | * servers. |
| 188 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 189 | for (rhosts_file_index = 0; rhosts_files[rhosts_file_index]; |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 190 | rhosts_file_index++) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 191 | /* Check users .rhosts or .shosts. */ |
| 192 | snprintf(buf, sizeof buf, "%.500s/%.100s", |
| 193 | pw->pw_dir, rhosts_files[rhosts_file_index]); |
| 194 | if (stat(buf, &st) >= 0) |
| 195 | break; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 196 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 197 | /* Switch back to privileged uid. */ |
| 198 | restore_uid(); |
| 199 | |
| 200 | /* Deny if The user has no .shosts or .rhosts file and there are no system-wide files. */ |
| 201 | if (!rhosts_files[rhosts_file_index] && |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 202 | stat(_PATH_RHOSTS_EQUIV, &st) < 0 && |
| 203 | stat(_PATH_SSH_HOSTS_EQUIV, &st) < 0) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 204 | return 0; |
| 205 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 206 | /* If not logging in as superuser, try /etc/hosts.equiv and shosts.equiv. */ |
| 207 | if (pw->pw_uid != 0) { |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 208 | if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr, |
| 209 | client_user, pw->pw_name)) { |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 210 | auth_debug_add("Accepted for %.100s [%.100s] by /etc/hosts.equiv.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 211 | hostname, ipaddr); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 212 | return 1; |
| 213 | } |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 214 | if (check_rhosts_file(_PATH_SSH_HOSTS_EQUIV, hostname, ipaddr, |
| 215 | client_user, pw->pw_name)) { |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 216 | auth_debug_add("Accepted for %.100s [%.100s] by %.100s.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 217 | hostname, ipaddr, _PATH_SSH_HOSTS_EQUIV); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 218 | return 1; |
| 219 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 220 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 221 | /* |
| 222 | * Check that the home directory is owned by root or the user, and is |
| 223 | * not group or world writable. |
| 224 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 225 | if (stat(pw->pw_dir, &st) < 0) { |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 226 | logit("Rhosts authentication refused for %.100s: " |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 227 | "no home directory %.200s", pw->pw_name, pw->pw_dir); |
| 228 | auth_debug_add("Rhosts authentication refused for %.100s: " |
| 229 | "no home directory %.200s", pw->pw_name, pw->pw_dir); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 230 | return 0; |
| 231 | } |
| 232 | if (options.strict_modes && |
| 233 | ((st.st_uid != 0 && st.st_uid != pw->pw_uid) || |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 234 | (st.st_mode & 022) != 0)) { |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 235 | logit("Rhosts authentication refused for %.100s: " |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 236 | "bad ownership or modes for home directory.", pw->pw_name); |
| 237 | auth_debug_add("Rhosts authentication refused for %.100s: " |
| 238 | "bad ownership or modes for home directory.", pw->pw_name); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 239 | return 0; |
| 240 | } |
| 241 | /* Temporarily use the user's uid. */ |
Ben Lindstrom | 3fcf1a2 | 2001-04-08 18:26:59 +0000 | [diff] [blame] | 242 | temporarily_use_uid(pw); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 243 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 244 | /* Check all .rhosts files (currently .shosts and .rhosts). */ |
| 245 | for (rhosts_file_index = 0; rhosts_files[rhosts_file_index]; |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 246 | rhosts_file_index++) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 247 | /* Check users .rhosts or .shosts. */ |
| 248 | snprintf(buf, sizeof buf, "%.500s/%.100s", |
| 249 | pw->pw_dir, rhosts_files[rhosts_file_index]); |
| 250 | if (stat(buf, &st) < 0) |
| 251 | continue; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 252 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 253 | /* |
| 254 | * Make sure that the file is either owned by the user or by |
| 255 | * root, and make sure it is not writable by anyone but the |
| 256 | * owner. This is to help avoid novices accidentally |
| 257 | * allowing access to their account by anyone. |
| 258 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 259 | if (options.strict_modes && |
| 260 | ((st.st_uid != 0 && st.st_uid != pw->pw_uid) || |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 261 | (st.st_mode & 022) != 0)) { |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 262 | logit("Rhosts authentication refused for %.100s: bad modes for %.200s", |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 263 | pw->pw_name, buf); |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 264 | auth_debug_add("Bad file modes for %.200s", buf); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 265 | continue; |
| 266 | } |
| 267 | /* Check if we have been configured to ignore .rhosts and .shosts files. */ |
| 268 | if (options.ignore_rhosts) { |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 269 | auth_debug_add("Server has been configured to ignore %.100s.", |
| 270 | rhosts_files[rhosts_file_index]); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 271 | continue; |
| 272 | } |
| 273 | /* Check if authentication is permitted by the file. */ |
| 274 | if (check_rhosts_file(buf, hostname, ipaddr, client_user, pw->pw_name)) { |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 275 | auth_debug_add("Accepted by %.100s.", |
| 276 | rhosts_files[rhosts_file_index]); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 277 | /* Restore the privileged uid. */ |
| 278 | restore_uid(); |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 279 | auth_debug_add("Accepted host %s ip %s client_user %s server_user %s", |
| 280 | hostname, ipaddr, client_user, pw->pw_name); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 281 | return 1; |
| 282 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 283 | } |
| 284 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 285 | /* Restore the privileged uid. */ |
| 286 | restore_uid(); |
| 287 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 288 | } |
Ben Lindstrom | bdde330 | 2002-05-15 16:19:37 +0000 | [diff] [blame] | 289 | |
| 290 | int |
| 291 | auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname, |
| 292 | const char *ipaddr) |
| 293 | { |
| 294 | int ret; |
| 295 | |
| 296 | auth_debug_reset(); |
| 297 | ret = auth_rhosts2_raw(pw, client_user, hostname, ipaddr); |
| 298 | if (!use_privsep) |
| 299 | auth_debug_send(); |
| 300 | return ret; |
| 301 | } |