blob: 4d2b92a22aebb6daeed9554a4cb585282974fba1 [file] [log] [blame]
Damien Millereba71ba2000-04-29 23:57:08 +10001/*
2 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
3 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11004 *
5 * As far as I am concerned, the code I have written for this software
6 * can be used freely for any purpose. Any derived versions of this
7 * software must be clearly marked as such, and if the derived work is
8 * incompatible with the protocol description in the RFC file, it must be
9 * called by a name other than "ssh" or "Secure Shell".
Damien Millereba71ba2000-04-29 23:57:08 +100010 */
11
12#include "includes.h"
Damien Miller25162f22002-09-12 09:47:29 +100013RCSID("$OpenBSD: auth1.c,v 1.43 2002/09/09 06:48:06 itojun Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100014
Damien Miller874d77b2000-10-14 16:23:11 +110015#include "xmalloc.h"
16#include "rsa.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000017#include "ssh1.h"
Damien Miller874d77b2000-10-14 16:23:11 +110018#include "packet.h"
19#include "buffer.h"
20#include "mpaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000021#include "log.h"
Damien Miller874d77b2000-10-14 16:23:11 +110022#include "servconf.h"
23#include "compat.h"
24#include "auth.h"
Damien Millerc7ef63d2002-02-05 12:21:42 +110025#include "channels.h"
Damien Miller874d77b2000-10-14 16:23:11 +110026#include "session.h"
Ben Lindstromec95ed92001-07-04 04:21:14 +000027#include "uidswap.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000028#include "monitor_wrap.h"
Damien Miller874d77b2000-10-14 16:23:11 +110029
Damien Millereba71ba2000-04-29 23:57:08 +100030/* import */
31extern ServerOptions options;
Damien Miller874d77b2000-10-14 16:23:11 +110032
Damien Millereba71ba2000-04-29 23:57:08 +100033/*
34 * convert ssh auth msg type into description
35 */
Ben Lindstrombba81212001-06-25 05:01:22 +000036static char *
Damien Millereba71ba2000-04-29 23:57:08 +100037get_authname(int type)
38{
39 static char buf[1024];
40 switch (type) {
41 case SSH_CMSG_AUTH_PASSWORD:
42 return "password";
43 case SSH_CMSG_AUTH_RSA:
44 return "rsa";
45 case SSH_CMSG_AUTH_RHOSTS_RSA:
46 return "rhosts-rsa";
47 case SSH_CMSG_AUTH_RHOSTS:
48 return "rhosts";
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000049 case SSH_CMSG_AUTH_TIS:
50 case SSH_CMSG_AUTH_TIS_RESPONSE:
51 return "challenge-response";
Ben Lindstromec95ed92001-07-04 04:21:14 +000052#if defined(KRB4) || defined(KRB5)
Damien Millereba71ba2000-04-29 23:57:08 +100053 case SSH_CMSG_AUTH_KERBEROS:
54 return "kerberos";
55#endif
Damien Millereba71ba2000-04-29 23:57:08 +100056 }
57 snprintf(buf, sizeof buf, "bad-auth-msg-%d", type);
58 return buf;
59}
60
61/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000062 * read packets, try to authenticate the user and
63 * return only if authentication is successful
Damien Millereba71ba2000-04-29 23:57:08 +100064 */
Ben Lindstrombba81212001-06-25 05:01:22 +000065static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000066do_authloop(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +100067{
Damien Miller874d77b2000-10-14 16:23:11 +110068 int authenticated = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +000069 u_int bits;
Damien Millerda755162002-01-22 23:09:22 +110070 Key *client_host_key;
Damien Millereba71ba2000-04-29 23:57:08 +100071 BIGNUM *n;
Damien Miller874d77b2000-10-14 16:23:11 +110072 char *client_user, *password;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000073 char info[1024];
Ben Lindstrom46c16222000-12-22 01:43:59 +000074 u_int dlen;
Ben Lindstrom46c16222000-12-22 01:43:59 +000075 u_int ulen;
Damien Millereba71ba2000-04-29 23:57:08 +100076 int type = 0;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000077 struct passwd *pw = authctxt->pw;
78
79 debug("Attempting authentication for %s%.100s.",
Damien Miller9f0f5c62001-12-21 14:45:46 +110080 authctxt->valid ? "" : "illegal user ", authctxt->user);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000081
82 /* If the user has no password, accept authentication immediately. */
83 if (options.password_authentication &&
Ben Lindstromec95ed92001-07-04 04:21:14 +000084#if defined(KRB4) || defined(KRB5)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000085 (!options.kerberos_authentication || options.kerberos_or_local_passwd) &&
86#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000087 PRIVSEP(auth_password(authctxt, ""))) {
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000088 auth_log(authctxt, 1, "without authentication", "");
89 return;
90 }
Damien Millereba71ba2000-04-29 23:57:08 +100091
92 /* Indicate that authentication is needed. */
93 packet_start(SSH_SMSG_FAILURE);
94 packet_send();
95 packet_write_wait();
96
Damien Miller874d77b2000-10-14 16:23:11 +110097 client_user = NULL;
98
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000099 for (;;) {
Damien Miller874d77b2000-10-14 16:23:11 +1100100 /* default to fail */
101 authenticated = 0;
102
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000103 info[0] = '\0';
Damien Millereba71ba2000-04-29 23:57:08 +1000104
105 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100106 type = packet_read();
Damien Millereba71ba2000-04-29 23:57:08 +1000107
108 /* Process the packet. */
109 switch (type) {
Damien Millereba71ba2000-04-29 23:57:08 +1000110
Ben Lindstromec95ed92001-07-04 04:21:14 +0000111#if defined(KRB4) || defined(KRB5)
Damien Millereba71ba2000-04-29 23:57:08 +1000112 case SSH_CMSG_AUTH_KERBEROS:
113 if (!options.kerberos_authentication) {
Damien Millereba71ba2000-04-29 23:57:08 +1000114 verbose("Kerberos authentication disabled.");
Damien Millereba71ba2000-04-29 23:57:08 +1000115 } else {
Ben Lindstromec95ed92001-07-04 04:21:14 +0000116 char *kdata = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100117 packet_check_eom();
Damien Miller9f0f5c62001-12-21 14:45:46 +1100118
Ben Lindstromec95ed92001-07-04 04:21:14 +0000119 if (kdata[0] == 4) { /* KRB_PROT_VERSION */
120#ifdef KRB4
121 KTEXT_ST tkt;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100122
Ben Lindstromec95ed92001-07-04 04:21:14 +0000123 tkt.length = dlen;
124 if (tkt.length < MAX_KTXT_LEN)
125 memcpy(tkt.dat, kdata, tkt.length);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100126
Ben Lindstromec95ed92001-07-04 04:21:14 +0000127 if (auth_krb4(authctxt, &tkt, &client_user)) {
128 authenticated = 1;
129 snprintf(info, sizeof(info),
130 " tktuser %.100s",
131 client_user);
Damien Miller874d77b2000-10-14 16:23:11 +1100132 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000133#endif /* KRB4 */
134 } else {
135#ifdef KRB5
Damien Miller25162f22002-09-12 09:47:29 +1000136 krb5_data tkt, reply;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000137 tkt.length = dlen;
138 tkt.data = kdata;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100139
Damien Miller25162f22002-09-12 09:47:29 +1000140 if (PRIVSEP(auth_krb5(authctxt, &tkt,
141 &client_user, &reply))) {
Ben Lindstromec95ed92001-07-04 04:21:14 +0000142 authenticated = 1;
143 snprintf(info, sizeof(info),
144 " tktuser %.100s",
145 client_user);
Damien Miller25162f22002-09-12 09:47:29 +1000146
147 /* Send response to client */
148 packet_start(
149 SSH_SMSG_AUTH_KERBEROS_RESPONSE);
150 packet_put_string((char *)
151 reply.data, reply.length);
152 packet_send();
153 packet_write_wait();
154
155 if (reply.length)
156 xfree(reply.data);
Ben Lindstromec95ed92001-07-04 04:21:14 +0000157 }
158#endif /* KRB5 */
Damien Millereba71ba2000-04-29 23:57:08 +1000159 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000160 xfree(kdata);
Damien Millereba71ba2000-04-29 23:57:08 +1000161 }
162 break;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000163#endif /* KRB4 || KRB5 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100164
Ben Lindstromec95ed92001-07-04 04:21:14 +0000165#if defined(AFS) || defined(KRB5)
166 /* XXX - punt on backward compatibility here. */
167 case SSH_CMSG_HAVE_KERBEROS_TGT:
168 packet_send_debug("Kerberos TGT passing disabled before authentication.");
169 break;
170#ifdef AFS
171 case SSH_CMSG_HAVE_AFS_TOKEN:
172 packet_send_debug("AFS token passing disabled before authentication.");
173 break;
174#endif /* AFS */
175#endif /* AFS || KRB5 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100176
Damien Millereba71ba2000-04-29 23:57:08 +1000177 case SSH_CMSG_AUTH_RHOSTS:
178 if (!options.rhosts_authentication) {
179 verbose("Rhosts authentication disabled.");
180 break;
181 }
182 /*
183 * Get client user name. Note that we just have to
184 * trust the client; this is one reason why rhosts
185 * authentication is insecure. (Another is
186 * IP-spoofing on a local network.)
187 */
188 client_user = packet_get_string(&ulen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100189 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000190
Damien Miller874d77b2000-10-14 16:23:11 +1100191 /* Try to authenticate using /etc/hosts.equiv and .rhosts. */
Damien Millereba71ba2000-04-29 23:57:08 +1000192 authenticated = auth_rhosts(pw, client_user);
193
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000194 snprintf(info, sizeof info, " ruser %.100s", client_user);
Damien Millereba71ba2000-04-29 23:57:08 +1000195 break;
196
197 case SSH_CMSG_AUTH_RHOSTS_RSA:
198 if (!options.rhosts_rsa_authentication) {
199 verbose("Rhosts with RSA authentication disabled.");
200 break;
201 }
202 /*
203 * Get client user name. Note that we just have to
204 * trust the client; root on the client machine can
205 * claim to be any user.
206 */
207 client_user = packet_get_string(&ulen);
208
209 /* Get the client host key. */
Damien Millerda755162002-01-22 23:09:22 +1100210 client_host_key = key_new(KEY_RSA1);
Damien Millereba71ba2000-04-29 23:57:08 +1000211 bits = packet_get_int();
Damien Millerd432ccf2002-01-22 23:14:44 +1100212 packet_get_bignum(client_host_key->rsa->e);
213 packet_get_bignum(client_host_key->rsa->n);
Damien Millereba71ba2000-04-29 23:57:08 +1000214
Damien Millerda755162002-01-22 23:09:22 +1100215 if (bits != BN_num_bits(client_host_key->rsa->n))
Damien Miller874d77b2000-10-14 16:23:11 +1100216 verbose("Warning: keysize mismatch for client_host_key: "
Damien Millerda755162002-01-22 23:09:22 +1100217 "actual %d, announced %d",
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000218 BN_num_bits(client_host_key->rsa->n), bits);
Damien Miller48b03fc2002-01-22 23:11:40 +1100219 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000220
Damien Millerda755162002-01-22 23:09:22 +1100221 authenticated = auth_rhosts_rsa(pw, client_user,
Damien Millerd221ca62002-01-22 23:11:00 +1100222 client_host_key);
Damien Millerda755162002-01-22 23:09:22 +1100223 key_free(client_host_key);
Damien Millereba71ba2000-04-29 23:57:08 +1000224
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000225 snprintf(info, sizeof info, " ruser %.100s", client_user);
Damien Millereba71ba2000-04-29 23:57:08 +1000226 break;
227
228 case SSH_CMSG_AUTH_RSA:
229 if (!options.rsa_authentication) {
230 verbose("RSA authentication disabled.");
231 break;
232 }
233 /* RSA authentication requested. */
Damien Millerda755162002-01-22 23:09:22 +1100234 if ((n = BN_new()) == NULL)
235 fatal("do_authloop: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +1100236 packet_get_bignum(n);
Damien Miller48b03fc2002-01-22 23:11:40 +1100237 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000238 authenticated = auth_rsa(pw, n);
239 BN_clear_free(n);
240 break;
241
242 case SSH_CMSG_AUTH_PASSWORD:
243 if (!options.password_authentication) {
244 verbose("Password authentication disabled.");
245 break;
246 }
247 /*
248 * Read user password. It is in plain text, but was
249 * transmitted over the encrypted channel so it is
250 * not visible to an outside observer.
251 */
252 password = packet_get_string(&dlen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100253 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000254
Kevin Steves12aaa042001-01-24 21:23:39 +0000255 /* Try authentication with the password. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000256 authenticated = PRIVSEP(auth_password(authctxt, password));
Damien Millereba71ba2000-04-29 23:57:08 +1000257
258 memset(password, 0, strlen(password));
259 xfree(password);
260 break;
261
Damien Millereba71ba2000-04-29 23:57:08 +1000262 case SSH_CMSG_AUTH_TIS:
263 debug("rcvd SSH_CMSG_AUTH_TIS");
Ben Lindstrom551ea372001-06-05 18:56:16 +0000264 if (options.challenge_response_authentication == 1) {
265 char *challenge = get_challenge(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000266 if (challenge != NULL) {
267 debug("sending challenge '%s'", challenge);
Damien Millereba71ba2000-04-29 23:57:08 +1000268 packet_start(SSH_SMSG_AUTH_TIS_CHALLENGE);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000269 packet_put_cstring(challenge);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000270 xfree(challenge);
Damien Millereba71ba2000-04-29 23:57:08 +1000271 packet_send();
272 packet_write_wait();
273 continue;
274 }
275 }
276 break;
277 case SSH_CMSG_AUTH_TIS_RESPONSE:
278 debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE");
Ben Lindstrom551ea372001-06-05 18:56:16 +0000279 if (options.challenge_response_authentication == 1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000280 char *response = packet_get_string(&dlen);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000281 debug("got response '%s'", response);
Damien Miller48b03fc2002-01-22 23:11:40 +1100282 packet_check_eom();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000283 authenticated = verify_response(authctxt, response);
284 memset(response, 'r', dlen);
Damien Millereba71ba2000-04-29 23:57:08 +1000285 xfree(response);
286 }
287 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000288
289 default:
290 /*
291 * Any unknown messages will be ignored (and failure
292 * returned) during authentication.
293 */
294 log("Unknown message during authentication: type %d", type);
295 break;
296 }
Damien Miller60396b02001-02-18 17:01:00 +1100297#ifdef BSD_AUTH
298 if (authctxt->as) {
299 auth_close(authctxt->as);
300 authctxt->as = NULL;
301 }
302#endif
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000303 if (!authctxt->valid && authenticated)
304 fatal("INTERNAL ERROR: authenticated invalid user %s",
305 authctxt->user);
Damien Millereba71ba2000-04-29 23:57:08 +1000306
Kevin Stevesef4eea92001-02-05 12:42:17 +0000307#ifdef HAVE_CYGWIN
308 if (authenticated &&
Damien Miller0dea79d2001-12-29 14:08:28 +1100309 !check_nt_auth(type == SSH_CMSG_AUTH_PASSWORD, pw)) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100310 packet_disconnect("Authentication rejected for uid %d.",
Damien Miller0dea79d2001-12-29 14:08:28 +1100311 pw == NULL ? -1 : pw->pw_uid);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100312 authenticated = 0;
313 }
Ben Lindstrom5dc81502001-01-19 06:10:29 +0000314#else
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000315 /* Special handling for root */
Damien Millerde6f2de2002-09-04 16:37:26 +1000316 if (!use_privsep &&
317 authenticated && authctxt->pw->pw_uid == 0 &&
Ben Lindstromd8a90212001-02-15 03:08:27 +0000318 !auth_root_allowed(get_authname(type)))
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000319 authenticated = 0;
Ben Lindstrom5dc81502001-01-19 06:10:29 +0000320#endif
Kevin Stevesef4eea92001-02-05 12:42:17 +0000321#ifdef USE_PAM
Damien Miller79418552002-04-23 20:28:48 +1000322 if (!use_privsep && authenticated &&
323 !do_pam_account(pw->pw_name, client_user))
Damien Miller874d77b2000-10-14 16:23:11 +1100324 authenticated = 0;
325#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000326
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000327 /* Log before sending the reply */
328 auth_log(authctxt, authenticated, get_authname(type), info);
329
Damien Millereba71ba2000-04-29 23:57:08 +1000330 if (client_user != NULL) {
331 xfree(client_user);
332 client_user = NULL;
333 }
334
Damien Miller874d77b2000-10-14 16:23:11 +1100335 if (authenticated)
336 return;
337
Kevin Steves12aaa042001-01-24 21:23:39 +0000338 if (authctxt->failures++ > AUTH_FAIL_MAX) {
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000339 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Damien Millerd2c208a2000-05-17 22:00:02 +1000340 }
Damien Millereba71ba2000-04-29 23:57:08 +1000341
Damien Millereba71ba2000-04-29 23:57:08 +1000342 packet_start(SSH_SMSG_FAILURE);
343 packet_send();
344 packet_write_wait();
345 }
346}
347
348/*
349 * Performs authentication of an incoming connection. Session key has already
350 * been exchanged and encryption is enabled.
351 */
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000352Authctxt *
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000353do_authentication(void)
Damien Millereba71ba2000-04-29 23:57:08 +1000354{
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000355 Authctxt *authctxt;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000356 u_int ulen;
Ben Lindstromc8226382002-04-10 16:22:09 +0000357 char *user, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000358
359 /* Get the name of the user that we wish to log in as. */
Damien Millerdff50992002-01-22 23:16:32 +1100360 packet_read_expect(SSH_CMSG_USER);
Damien Millereba71ba2000-04-29 23:57:08 +1000361
362 /* Get the user name. */
363 user = packet_get_string(&ulen);
Damien Miller48b03fc2002-01-22 23:11:40 +1100364 packet_check_eom();
Damien Millereba71ba2000-04-29 23:57:08 +1000365
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000366 if ((style = strchr(user, ':')) != NULL)
Ben Lindstromec95ed92001-07-04 04:21:14 +0000367 *style++ = '\0';
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000368
Ben Lindstromc8226382002-04-10 16:22:09 +0000369#ifdef KRB5
Ben Lindstromec95ed92001-07-04 04:21:14 +0000370 /* XXX - SSH.com Kerberos v5 braindeath. */
Ben Lindstromc8226382002-04-10 16:22:09 +0000371 if ((datafellows & SSH_BUG_K5USER) &&
372 options.kerberos_authentication) {
373 char *p;
374 if ((p = strchr(user, '@')) != NULL)
375 *p = '\0';
376 }
377#endif
Damien Miller9f0f5c62001-12-21 14:45:46 +1100378
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000379 authctxt = authctxt_new();
380 authctxt->user = user;
381 authctxt->style = style;
382
Damien Millereba71ba2000-04-29 23:57:08 +1000383 /* Verify that the user is a valid user. */
Ben Lindstrom7ebb6352002-03-22 03:04:08 +0000384 if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL)
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000385 authctxt->valid = 1;
Ben Lindstrom7ebb6352002-03-22 03:04:08 +0000386 else
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000387 debug("do_authentication: illegal user %s", user);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000388
Ben Lindstrom7ebb6352002-03-22 03:04:08 +0000389 setproctitle("%s%s", authctxt->pw ? user : "unknown",
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000390 use_privsep ? " [net]" : "");
Ben Lindstromc1ba31f2001-02-15 03:14:11 +0000391
Damien Millereba71ba2000-04-29 23:57:08 +1000392#ifdef USE_PAM
Damien Miller79418552002-04-23 20:28:48 +1000393 PRIVSEP(start_pam(authctxt->pw == NULL ? "NOUSER" : user));
Damien Millereba71ba2000-04-29 23:57:08 +1000394#endif
395
396 /*
397 * If we are not running as root, the user must have the same uid as
Damien Miller874d77b2000-10-14 16:23:11 +1100398 * the server. (Unless you are running Windows)
Damien Millereba71ba2000-04-29 23:57:08 +1000399 */
Damien Miller874d77b2000-10-14 16:23:11 +1100400#ifndef HAVE_CYGWIN
Ben Lindstrom7ebb6352002-03-22 03:04:08 +0000401 if (!use_privsep && getuid() != 0 && authctxt->pw &&
402 authctxt->pw->pw_uid != getuid())
Damien Millereba71ba2000-04-29 23:57:08 +1000403 packet_disconnect("Cannot change user when server not running as root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100404#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000405
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000406 /*
Kevin Steves12aaa042001-01-24 21:23:39 +0000407 * Loop until the user has been authenticated or the connection is
408 * closed, do_authloop() returns only if authentication is successful
409 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000410 do_authloop(authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000411
412 /* The user has been authenticated and accepted. */
Damien Miller874d77b2000-10-14 16:23:11 +1100413 packet_start(SSH_SMSG_SUCCESS);
414 packet_send();
415 packet_write_wait();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000416
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000417 return (authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000418}