blob: 41628cedc5343cf00f48dabc4ab2b23c7d4f8cc4 [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 Milleraef7a092002-01-22 23:07:52 +110013RCSID("$OpenBSD: auth1.c,v 1.28 2001/12/25 18:53:00 markus 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"
25#include "session.h"
Ben Lindstrom086cf212001-03-05 05:56:40 +000026#include "misc.h"
Ben Lindstromec95ed92001-07-04 04:21:14 +000027#include "uidswap.h"
Damien Miller874d77b2000-10-14 16:23:11 +110028
Damien Millereba71ba2000-04-29 23:57:08 +100029/* import */
30extern ServerOptions options;
Damien Miller874d77b2000-10-14 16:23:11 +110031
Damien Millereba71ba2000-04-29 23:57:08 +100032/*
33 * convert ssh auth msg type into description
34 */
Ben Lindstrombba81212001-06-25 05:01:22 +000035static char *
Damien Millereba71ba2000-04-29 23:57:08 +100036get_authname(int type)
37{
38 static char buf[1024];
39 switch (type) {
40 case SSH_CMSG_AUTH_PASSWORD:
41 return "password";
42 case SSH_CMSG_AUTH_RSA:
43 return "rsa";
44 case SSH_CMSG_AUTH_RHOSTS_RSA:
45 return "rhosts-rsa";
46 case SSH_CMSG_AUTH_RHOSTS:
47 return "rhosts";
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000048 case SSH_CMSG_AUTH_TIS:
49 case SSH_CMSG_AUTH_TIS_RESPONSE:
50 return "challenge-response";
Ben Lindstromec95ed92001-07-04 04:21:14 +000051#if defined(KRB4) || defined(KRB5)
Damien Millereba71ba2000-04-29 23:57:08 +100052 case SSH_CMSG_AUTH_KERBEROS:
53 return "kerberos";
54#endif
Damien Millereba71ba2000-04-29 23:57:08 +100055 }
56 snprintf(buf, sizeof buf, "bad-auth-msg-%d", type);
57 return buf;
58}
59
60/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000061 * read packets, try to authenticate the user and
62 * return only if authentication is successful
Damien Millereba71ba2000-04-29 23:57:08 +100063 */
Ben Lindstrombba81212001-06-25 05:01:22 +000064static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000065do_authloop(Authctxt *authctxt)
Damien Millereba71ba2000-04-29 23:57:08 +100066{
Damien Miller874d77b2000-10-14 16:23:11 +110067 int authenticated = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +000068 u_int bits;
Damien Millereba71ba2000-04-29 23:57:08 +100069 RSA *client_host_key;
70 BIGNUM *n;
Damien Miller874d77b2000-10-14 16:23:11 +110071 char *client_user, *password;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000072 char info[1024];
Ben Lindstrom46c16222000-12-22 01:43:59 +000073 u_int dlen;
Damien Millereba71ba2000-04-29 23:57:08 +100074 int plen, nlen, elen;
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 Lindstromb100ec92001-01-19 05:37:32 +000087#ifdef USE_PAM
Kevin Stevesbca8c8f2001-02-13 11:26:21 +000088 auth_pam_password(pw, "")) {
Damien Miller92ddb7d2001-02-14 01:25:23 +110089#elif defined(HAVE_OSF_SIA)
90 0) {
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000091#else
Damien Miller60396b02001-02-18 17:01:00 +110092 auth_password(authctxt, "")) {
Ben Lindstromdb65e8f2001-01-19 04:26:52 +000093#endif
94 auth_log(authctxt, 1, "without authentication", "");
95 return;
96 }
Damien Millereba71ba2000-04-29 23:57:08 +100097
98 /* Indicate that authentication is needed. */
99 packet_start(SSH_SMSG_FAILURE);
100 packet_send();
101 packet_write_wait();
102
Damien Miller874d77b2000-10-14 16:23:11 +1100103 client_user = NULL;
104
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000105 for (;;) {
Damien Miller874d77b2000-10-14 16:23:11 +1100106 /* default to fail */
107 authenticated = 0;
108
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000109 info[0] = '\0';
Damien Millereba71ba2000-04-29 23:57:08 +1000110
111 /* Get a packet from the client. */
112 type = packet_read(&plen);
113
114 /* Process the packet. */
115 switch (type) {
Damien Millereba71ba2000-04-29 23:57:08 +1000116
Ben Lindstromec95ed92001-07-04 04:21:14 +0000117#if defined(KRB4) || defined(KRB5)
Damien Millereba71ba2000-04-29 23:57:08 +1000118 case SSH_CMSG_AUTH_KERBEROS:
119 if (!options.kerberos_authentication) {
Damien Millereba71ba2000-04-29 23:57:08 +1000120 verbose("Kerberos authentication disabled.");
Damien Millereba71ba2000-04-29 23:57:08 +1000121 } else {
Ben Lindstromec95ed92001-07-04 04:21:14 +0000122 char *kdata = packet_get_string(&dlen);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100123
Ben Lindstromec95ed92001-07-04 04:21:14 +0000124 packet_integrity_check(plen, 4 + dlen, type);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100125
Ben Lindstromec95ed92001-07-04 04:21:14 +0000126 if (kdata[0] == 4) { /* KRB_PROT_VERSION */
127#ifdef KRB4
128 KTEXT_ST tkt;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100129
Ben Lindstromec95ed92001-07-04 04:21:14 +0000130 tkt.length = dlen;
131 if (tkt.length < MAX_KTXT_LEN)
132 memcpy(tkt.dat, kdata, tkt.length);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100133
Ben Lindstromec95ed92001-07-04 04:21:14 +0000134 if (auth_krb4(authctxt, &tkt, &client_user)) {
135 authenticated = 1;
136 snprintf(info, sizeof(info),
137 " tktuser %.100s",
138 client_user);
Damien Miller874d77b2000-10-14 16:23:11 +1100139 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000140#endif /* KRB4 */
141 } else {
142#ifdef KRB5
143 krb5_data tkt;
144 tkt.length = dlen;
145 tkt.data = kdata;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100146
Ben Lindstromec95ed92001-07-04 04:21:14 +0000147 if (auth_krb5(authctxt, &tkt, &client_user)) {
148 authenticated = 1;
149 snprintf(info, sizeof(info),
150 " tktuser %.100s",
151 client_user);
Ben Lindstromec95ed92001-07-04 04:21:14 +0000152 }
153#endif /* KRB5 */
Damien Millereba71ba2000-04-29 23:57:08 +1000154 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000155 xfree(kdata);
Damien Millereba71ba2000-04-29 23:57:08 +1000156 }
157 break;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000158#endif /* KRB4 || KRB5 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100159
Ben Lindstromec95ed92001-07-04 04:21:14 +0000160#if defined(AFS) || defined(KRB5)
161 /* XXX - punt on backward compatibility here. */
162 case SSH_CMSG_HAVE_KERBEROS_TGT:
163 packet_send_debug("Kerberos TGT passing disabled before authentication.");
164 break;
165#ifdef AFS
166 case SSH_CMSG_HAVE_AFS_TOKEN:
167 packet_send_debug("AFS token passing disabled before authentication.");
168 break;
169#endif /* AFS */
170#endif /* AFS || KRB5 */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100171
Damien Millereba71ba2000-04-29 23:57:08 +1000172 case SSH_CMSG_AUTH_RHOSTS:
173 if (!options.rhosts_authentication) {
174 verbose("Rhosts authentication disabled.");
175 break;
176 }
177 /*
178 * Get client user name. Note that we just have to
179 * trust the client; this is one reason why rhosts
180 * authentication is insecure. (Another is
181 * IP-spoofing on a local network.)
182 */
183 client_user = packet_get_string(&ulen);
184 packet_integrity_check(plen, 4 + ulen, type);
185
Damien Miller874d77b2000-10-14 16:23:11 +1100186 /* Try to authenticate using /etc/hosts.equiv and .rhosts. */
Damien Millereba71ba2000-04-29 23:57:08 +1000187 authenticated = auth_rhosts(pw, client_user);
188
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000189 snprintf(info, sizeof info, " ruser %.100s", client_user);
Damien Millereba71ba2000-04-29 23:57:08 +1000190 break;
191
192 case SSH_CMSG_AUTH_RHOSTS_RSA:
193 if (!options.rhosts_rsa_authentication) {
194 verbose("Rhosts with RSA authentication disabled.");
195 break;
196 }
197 /*
198 * Get client user name. Note that we just have to
199 * trust the client; root on the client machine can
200 * claim to be any user.
201 */
202 client_user = packet_get_string(&ulen);
203
204 /* Get the client host key. */
205 client_host_key = RSA_new();
206 if (client_host_key == NULL)
207 fatal("RSA_new failed");
208 client_host_key->e = BN_new();
209 client_host_key->n = BN_new();
210 if (client_host_key->e == NULL || client_host_key->n == NULL)
211 fatal("BN_new failed");
212 bits = packet_get_int();
213 packet_get_bignum(client_host_key->e, &elen);
214 packet_get_bignum(client_host_key->n, &nlen);
215
216 if (bits != BN_num_bits(client_host_key->n))
Damien Miller874d77b2000-10-14 16:23:11 +1100217 verbose("Warning: keysize mismatch for client_host_key: "
Damien Millerbd483e72000-04-30 10:00:53 +1000218 "actual %d, announced %d", BN_num_bits(client_host_key->n), bits);
Damien Millereba71ba2000-04-29 23:57:08 +1000219 packet_integrity_check(plen, (4 + ulen) + 4 + elen + nlen, type);
220
221 authenticated = auth_rhosts_rsa(pw, client_user, client_host_key);
222 RSA_free(client_host_key);
223
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000224 snprintf(info, sizeof info, " ruser %.100s", client_user);
Damien Millereba71ba2000-04-29 23:57:08 +1000225 break;
226
227 case SSH_CMSG_AUTH_RSA:
228 if (!options.rsa_authentication) {
229 verbose("RSA authentication disabled.");
230 break;
231 }
232 /* RSA authentication requested. */
233 n = BN_new();
Damien Milleraef7a092002-01-22 23:07:52 +1100234 if (n == NULL)
235 fatal("BN_new failed");
Damien Millereba71ba2000-04-29 23:57:08 +1000236 packet_get_bignum(n, &nlen);
237 packet_integrity_check(plen, nlen, type);
238 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);
253 packet_integrity_check(plen, 4 + dlen, type);
254
255#ifdef USE_PAM
256 /* Do PAM auth with password */
257 authenticated = auth_pam_password(pw, password);
Damien Millerb8c656e2000-06-28 15:22:41 +1000258#elif defined(HAVE_OSF_SIA)
259 /* Do SIA auth with password */
Damien Miller92ddb7d2001-02-14 01:25:23 +1100260 authenticated = auth_sia_password(authctxt->user,
261 password);
Damien Millerb8c656e2000-06-28 15:22:41 +1000262#else /* !USE_PAM && !HAVE_OSF_SIA */
Kevin Steves12aaa042001-01-24 21:23:39 +0000263 /* Try authentication with the password. */
Damien Miller60396b02001-02-18 17:01:00 +1100264 authenticated = auth_password(authctxt, password);
Damien Millereba71ba2000-04-29 23:57:08 +1000265#endif /* USE_PAM */
266
267 memset(password, 0, strlen(password));
268 xfree(password);
269 break;
270
Damien Millereba71ba2000-04-29 23:57:08 +1000271 case SSH_CMSG_AUTH_TIS:
272 debug("rcvd SSH_CMSG_AUTH_TIS");
Ben Lindstrom551ea372001-06-05 18:56:16 +0000273 if (options.challenge_response_authentication == 1) {
274 char *challenge = get_challenge(authctxt);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000275 if (challenge != NULL) {
276 debug("sending challenge '%s'", challenge);
Damien Millereba71ba2000-04-29 23:57:08 +1000277 packet_start(SSH_SMSG_AUTH_TIS_CHALLENGE);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000278 packet_put_cstring(challenge);
Ben Lindstrom551ea372001-06-05 18:56:16 +0000279 xfree(challenge);
Damien Millereba71ba2000-04-29 23:57:08 +1000280 packet_send();
281 packet_write_wait();
282 continue;
283 }
284 }
285 break;
286 case SSH_CMSG_AUTH_TIS_RESPONSE:
287 debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE");
Ben Lindstrom551ea372001-06-05 18:56:16 +0000288 if (options.challenge_response_authentication == 1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000289 char *response = packet_get_string(&dlen);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000290 debug("got response '%s'", response);
Damien Millereba71ba2000-04-29 23:57:08 +1000291 packet_integrity_check(plen, 4 + dlen, type);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000292 authenticated = verify_response(authctxt, response);
293 memset(response, 'r', dlen);
Damien Millereba71ba2000-04-29 23:57:08 +1000294 xfree(response);
295 }
296 break;
Damien Millereba71ba2000-04-29 23:57:08 +1000297
298 default:
299 /*
300 * Any unknown messages will be ignored (and failure
301 * returned) during authentication.
302 */
303 log("Unknown message during authentication: type %d", type);
304 break;
305 }
Damien Miller60396b02001-02-18 17:01:00 +1100306#ifdef BSD_AUTH
307 if (authctxt->as) {
308 auth_close(authctxt->as);
309 authctxt->as = NULL;
310 }
311#endif
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000312 if (!authctxt->valid && authenticated)
313 fatal("INTERNAL ERROR: authenticated invalid user %s",
314 authctxt->user);
Damien Millereba71ba2000-04-29 23:57:08 +1000315
Kevin Stevesef4eea92001-02-05 12:42:17 +0000316#ifdef HAVE_CYGWIN
317 if (authenticated &&
Damien Miller0dea79d2001-12-29 14:08:28 +1100318 !check_nt_auth(type == SSH_CMSG_AUTH_PASSWORD, pw)) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100319 packet_disconnect("Authentication rejected for uid %d.",
Damien Miller0dea79d2001-12-29 14:08:28 +1100320 pw == NULL ? -1 : pw->pw_uid);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100321 authenticated = 0;
322 }
Ben Lindstrom5dc81502001-01-19 06:10:29 +0000323#else
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000324 /* Special handling for root */
Ben Lindstromd8a90212001-02-15 03:08:27 +0000325 if (authenticated && authctxt->pw->pw_uid == 0 &&
326 !auth_root_allowed(get_authname(type)))
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000327 authenticated = 0;
Ben Lindstrom5dc81502001-01-19 06:10:29 +0000328#endif
Kevin Stevesef4eea92001-02-05 12:42:17 +0000329#ifdef USE_PAM
Damien Miller874d77b2000-10-14 16:23:11 +1100330 if (authenticated && !do_pam_account(pw->pw_name, client_user))
331 authenticated = 0;
332#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000333
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000334 /* Log before sending the reply */
335 auth_log(authctxt, authenticated, get_authname(type), info);
336
Damien Millereba71ba2000-04-29 23:57:08 +1000337 if (client_user != NULL) {
338 xfree(client_user);
339 client_user = NULL;
340 }
341
Damien Miller874d77b2000-10-14 16:23:11 +1100342 if (authenticated)
343 return;
344
Kevin Steves12aaa042001-01-24 21:23:39 +0000345 if (authctxt->failures++ > AUTH_FAIL_MAX) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000346#ifdef WITH_AIXAUTHENTICATE
347 loginfailed(authctxt->user,
348 get_canonical_hostname(options.reverse_mapping_check),
Damien Miller33804262001-02-04 23:20:18 +1100349 "ssh");
Damien Millerd2c208a2000-05-17 22:00:02 +1000350#endif /* WITH_AIXAUTHENTICATE */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000351 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
Damien Millerd2c208a2000-05-17 22:00:02 +1000352 }
Damien Millereba71ba2000-04-29 23:57:08 +1000353
Damien Millereba71ba2000-04-29 23:57:08 +1000354 packet_start(SSH_SMSG_FAILURE);
355 packet_send();
356 packet_write_wait();
357 }
358}
359
360/*
361 * Performs authentication of an incoming connection. Session key has already
362 * been exchanged and encryption is enabled.
363 */
364void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000365do_authentication(void)
Damien Millereba71ba2000-04-29 23:57:08 +1000366{
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000367 Authctxt *authctxt;
368 struct passwd *pw;
Damien Millereba71ba2000-04-29 23:57:08 +1000369 int plen;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000370 u_int ulen;
Ben Lindstromec95ed92001-07-04 04:21:14 +0000371 char *p, *user, *style = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000372
373 /* Get the name of the user that we wish to log in as. */
374 packet_read_expect(&plen, SSH_CMSG_USER);
375
376 /* Get the user name. */
377 user = packet_get_string(&ulen);
378 packet_integrity_check(plen, (4 + ulen), SSH_CMSG_USER);
379
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000380 if ((style = strchr(user, ':')) != NULL)
Ben Lindstromec95ed92001-07-04 04:21:14 +0000381 *style++ = '\0';
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000382
Ben Lindstromec95ed92001-07-04 04:21:14 +0000383 /* XXX - SSH.com Kerberos v5 braindeath. */
384 if ((p = strchr(user, '@')) != NULL)
385 *p = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +1100386
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000387 authctxt = authctxt_new();
388 authctxt->user = user;
389 authctxt->style = style;
390
Damien Millereba71ba2000-04-29 23:57:08 +1000391 /* Verify that the user is a valid user. */
392 pw = getpwnam(user);
Damien Miller874d77b2000-10-14 16:23:11 +1100393 if (pw && allowed_user(pw)) {
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000394 authctxt->valid = 1;
395 pw = pwcopy(pw);
Damien Miller874d77b2000-10-14 16:23:11 +1100396 } else {
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000397 debug("do_authentication: illegal user %s", user);
Damien Miller874d77b2000-10-14 16:23:11 +1100398 pw = NULL;
399 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000400 authctxt->pw = pw;
Damien Millereba71ba2000-04-29 23:57:08 +1000401
Ben Lindstromc1ba31f2001-02-15 03:14:11 +0000402 setproctitle("%s", pw ? user : "unknown");
403
Damien Millereba71ba2000-04-29 23:57:08 +1000404#ifdef USE_PAM
Damien Miller874d77b2000-10-14 16:23:11 +1100405 if (pw)
Damien Miller22e22bf2001-01-19 15:46:38 +1100406 start_pam(user);
Damien Millereba71ba2000-04-29 23:57:08 +1000407#endif
408
409 /*
410 * If we are not running as root, the user must have the same uid as
Damien Miller874d77b2000-10-14 16:23:11 +1100411 * the server. (Unless you are running Windows)
Damien Millereba71ba2000-04-29 23:57:08 +1000412 */
Damien Miller874d77b2000-10-14 16:23:11 +1100413#ifndef HAVE_CYGWIN
414 if (getuid() != 0 && pw && pw->pw_uid != getuid())
Damien Millereba71ba2000-04-29 23:57:08 +1000415 packet_disconnect("Cannot change user when server not running as root.");
Damien Millerbac2d8a2000-09-05 16:13:06 +1100416#endif
Damien Millereba71ba2000-04-29 23:57:08 +1000417
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000418 /*
Kevin Steves12aaa042001-01-24 21:23:39 +0000419 * Loop until the user has been authenticated or the connection is
420 * closed, do_authloop() returns only if authentication is successful
421 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000422 do_authloop(authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000423
424 /* The user has been authenticated and accepted. */
Damien Miller874d77b2000-10-14 16:23:11 +1100425 packet_start(SSH_SMSG_SUCCESS);
426 packet_send();
427 packet_write_wait();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000428
Damien Millereba71ba2000-04-29 23:57:08 +1000429 /* Perform session preparation. */
Ben Lindstromb31783d2001-03-22 02:02:12 +0000430 do_authenticated(authctxt);
Damien Millereba71ba2000-04-29 23:57:08 +1000431}