]> andersk Git - openssh.git/blame - sshconnect1.c
- markus@cvs.openbsd.org 2001/12/27 18:10:29
[openssh.git] / sshconnect1.c
CommitLineData
a306f2dd 1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
a306f2dd 5 * Code to connect to a remote host, and to perform the client side of the
6 * login (authentication) dialog.
7 *
bcbf86ec 8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
a306f2dd 13 */
14
15#include "includes.h"
184eed6a 16RCSID("$OpenBSD: sshconnect1.c,v 1.42 2001/12/19 07:18:56 deraadt Exp $");
a306f2dd 17
18#include <openssl/bn.h>
a306f2dd 19#include <openssl/evp.h>
20
42f11eb2 21#ifdef KRB4
22#include <krb.h>
42f11eb2 23#endif
ced49be2 24#ifdef KRB5
25#include <krb5.h>
26#endif
42f11eb2 27#ifdef AFS
28#include <kafs.h>
53a24016 29#include "radix.h"
42f11eb2 30#endif
31
32#include "ssh.h"
33#include "ssh1.h"
a306f2dd 34#include "xmalloc.h"
35#include "rsa.h"
a306f2dd 36#include "buffer.h"
37#include "packet.h"
a306f2dd 38#include "mpaux.h"
39#include "uidswap.h"
42f11eb2 40#include "log.h"
a306f2dd 41#include "readconf.h"
42#include "key.h"
4c8722d9 43#include "authfd.h"
a306f2dd 44#include "sshconnect.h"
45#include "authfile.h"
42f11eb2 46#include "readpass.h"
47#include "cipher.h"
48#include "canohost.h"
ced49be2 49#include "auth.h"
a306f2dd 50
51/* Session id for the current session. */
1e3b8b07 52u_char session_id[16];
53u_int supported_authentications = 0;
a306f2dd 54
55extern Options options;
56extern char *__progname;
57
58/*
59 * Checks if the user has an authentication agent, and if so, tries to
60 * authenticate using the agent.
61 */
396c147e 62static int
5ca51e19 63try_agent_authentication(void)
a306f2dd 64{
2e73a022 65 int type;
a306f2dd 66 char *comment;
67 AuthenticationConnection *auth;
1e3b8b07 68 u_char response[16];
69 u_int i;
2e73a022 70 int plen, clen;
71 Key *key;
72 BIGNUM *challenge;
a306f2dd 73
74 /* Get connection to the agent. */
75 auth = ssh_get_authentication_connection();
76 if (!auth)
77 return 0;
78
a306f2dd 79 challenge = BN_new();
80
81 /* Loop through identities served by the agent. */
2e73a022 82 for (key = ssh_get_first_identity(auth, &comment, 1);
184eed6a 83 key != NULL;
84 key = ssh_get_next_identity(auth, &comment, 1)) {
a306f2dd 85
86 /* Try this identity. */
87 debug("Trying RSA authentication via agent with '%.100s'", comment);
88 xfree(comment);
89
90 /* Tell the server that we are willing to authenticate using this key. */
91 packet_start(SSH_CMSG_AUTH_RSA);
2e73a022 92 packet_put_bignum(key->rsa->n);
a306f2dd 93 packet_send();
94 packet_write_wait();
95
96 /* Wait for server's response. */
97 type = packet_read(&plen);
98
99 /* The server sends failure if it doesn\'t like our key or
100 does not support RSA authentication. */
101 if (type == SSH_SMSG_FAILURE) {
102 debug("Server refused our key.");
2e73a022 103 key_free(key);
a306f2dd 104 continue;
105 }
106 /* Otherwise it should have sent a challenge. */
107 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
108 packet_disconnect("Protocol error during RSA authentication: %d",
109 type);
110
111 packet_get_bignum(challenge, &clen);
112
113 packet_integrity_check(plen, clen, type);
114
115 debug("Received RSA challenge from server.");
116
117 /* Ask the agent to decrypt the challenge. */
2e73a022 118 if (!ssh_decrypt_challenge(auth, key, challenge, session_id, 1, response)) {
119 /*
120 * The agent failed to authenticate this identifier
121 * although it advertised it supports this. Just
122 * return a wrong value.
123 */
a306f2dd 124 log("Authentication agent failed to decrypt challenge.");
125 memset(response, 0, sizeof(response));
126 }
2e73a022 127 key_free(key);
a306f2dd 128 debug("Sending response to RSA challenge.");
129
130 /* Send the decrypted challenge back to the server. */
131 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
132 for (i = 0; i < 16; i++)
133 packet_put_char(response[i]);
134 packet_send();
135 packet_write_wait();
136
137 /* Wait for response from the server. */
138 type = packet_read(&plen);
139
140 /* The server returns success if it accepted the authentication. */
141 if (type == SSH_SMSG_SUCCESS) {
eea39c02 142 ssh_close_authentication_connection(auth);
a306f2dd 143 BN_clear_free(challenge);
2e73a022 144 debug("RSA authentication accepted by server.");
a306f2dd 145 return 1;
146 }
147 /* Otherwise it should return failure. */
148 if (type != SSH_SMSG_FAILURE)
149 packet_disconnect("Protocol error waiting RSA auth response: %d",
150 type);
151 }
eea39c02 152 ssh_close_authentication_connection(auth);
a306f2dd 153 BN_clear_free(challenge);
a306f2dd 154 debug("RSA authentication using agent refused.");
155 return 0;
156}
157
158/*
159 * Computes the proper response to a RSA challenge, and sends the response to
160 * the server.
161 */
396c147e 162static void
a306f2dd 163respond_to_rsa_challenge(BIGNUM * challenge, RSA * prv)
164{
1e3b8b07 165 u_char buf[32], response[16];
a306f2dd 166 MD5_CTX md;
167 int i, len;
168
169 /* Decrypt the challenge using the private key. */
46aa2d1f 170 /* XXX think about Bleichenbacher, too */
171 if (rsa_private_decrypt(challenge, challenge, prv) <= 0)
172 packet_disconnect(
173 "respond_to_rsa_challenge: rsa_private_decrypt failed");
a306f2dd 174
175 /* Compute the response. */
176 /* The response is MD5 of decrypted challenge plus session id. */
177 len = BN_num_bytes(challenge);
178 if (len <= 0 || len > sizeof(buf))
46aa2d1f 179 packet_disconnect(
180 "respond_to_rsa_challenge: bad challenge length %d", len);
a306f2dd 181
182 memset(buf, 0, sizeof(buf));
183 BN_bn2bin(challenge, buf + sizeof(buf) - len);
184 MD5_Init(&md);
185 MD5_Update(&md, buf, 32);
186 MD5_Update(&md, session_id, 16);
187 MD5_Final(response, &md);
188
189 debug("Sending response to host key RSA challenge.");
190
191 /* Send the response back to the server. */
192 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
193 for (i = 0; i < 16; i++)
194 packet_put_char(response[i]);
195 packet_send();
196 packet_write_wait();
197
198 memset(buf, 0, sizeof(buf));
199 memset(response, 0, sizeof(response));
200 memset(&md, 0, sizeof(md));
201}
202
203/*
204 * Checks if the user has authentication file, and if so, tries to authenticate
205 * the user using it.
206 */
396c147e 207static int
383546c4 208try_rsa_authentication(int idx)
a306f2dd 209{
210 BIGNUM *challenge;
ce404659 211 Key *public, *private;
383546c4 212 char buf[300], *passphrase, *comment, *authfile;
ce404659 213 int i, type, quit, plen, clen;
a306f2dd 214
383546c4 215 public = options.identity_keys[idx];
216 authfile = options.identity_files[idx];
217 comment = xstrdup(authfile);
218
a306f2dd 219 debug("Trying RSA authentication with key '%.100s'", comment);
220
221 /* Tell the server that we are willing to authenticate using this key. */
222 packet_start(SSH_CMSG_AUTH_RSA);
223 packet_put_bignum(public->rsa->n);
224 packet_send();
225 packet_write_wait();
226
a306f2dd 227 /* Wait for server's response. */
228 type = packet_read(&plen);
229
230 /*
231 * The server responds with failure if it doesn\'t like our key or
232 * doesn\'t support RSA authentication.
233 */
234 if (type == SSH_SMSG_FAILURE) {
235 debug("Server refused our key.");
236 xfree(comment);
237 return 0;
238 }
239 /* Otherwise, the server should respond with a challenge. */
240 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
241 packet_disconnect("Protocol error during RSA authentication: %d", type);
242
243 /* Get the challenge from the packet. */
244 challenge = BN_new();
245 packet_get_bignum(challenge, &clen);
246
247 packet_integrity_check(plen, clen, type);
248
249 debug("Received RSA challenge from server.");
250
a306f2dd 251 /*
383546c4 252 * If the key is not stored in external hardware, we have to
253 * load the private key. Try first with empty passphrase; if it
a306f2dd 254 * fails, ask for a passphrase.
255 */
383546c4 256 if (public->flags && KEY_FLAG_EXT)
257 private = public;
258 else
259 private = key_load_private_type(KEY_RSA1, authfile, "", NULL);
ce404659 260 if (private == NULL && !options.batch_mode) {
261 snprintf(buf, sizeof(buf),
262 "Enter passphrase for RSA key '%.100s': ", comment);
263 for (i = 0; i < options.number_of_password_prompts; i++) {
a306f2dd 264 passphrase = read_passphrase(buf, 0);
ce404659 265 if (strcmp(passphrase, "") != 0) {
266 private = key_load_private_type(KEY_RSA1,
267 authfile, passphrase, NULL);
268 quit = 0;
269 } else {
270 debug2("no passphrase given, try next key");
271 quit = 1;
272 }
a306f2dd 273 memset(passphrase, 0, strlen(passphrase));
274 xfree(passphrase);
ce404659 275 if (private != NULL || quit)
276 break;
277 debug2("bad passphrase given, try again...");
a306f2dd 278 }
a306f2dd 279 }
280 /* We no longer need the comment. */
281 xfree(comment);
282
ce404659 283 if (private == NULL) {
284 if (!options.batch_mode)
285 error("Bad passphrase.");
286
287 /* Send a dummy response packet to avoid protocol error. */
288 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
289 for (i = 0; i < 16; i++)
290 packet_put_char(0);
291 packet_send();
292 packet_write_wait();
293
294 /* Expect the server to reject it... */
295 packet_read_expect(&plen, SSH_SMSG_FAILURE);
296 BN_clear_free(challenge);
297 return 0;
298 }
299
a306f2dd 300 /* Compute and send a response to the challenge. */
301 respond_to_rsa_challenge(challenge, private->rsa);
302
383546c4 303 /* Destroy the private key unless it in external hardware. */
304 if (!(private->flags & KEY_FLAG_EXT))
305 key_free(private);
a306f2dd 306
307 /* We no longer need the challenge. */
308 BN_clear_free(challenge);
309
310 /* Wait for response from the server. */
311 type = packet_read(&plen);
312 if (type == SSH_SMSG_SUCCESS) {
313 debug("RSA authentication accepted by server.");
314 return 1;
315 }
316 if (type != SSH_SMSG_FAILURE)
317 packet_disconnect("Protocol error waiting RSA auth response: %d", type);
318 debug("RSA authentication refused.");
319 return 0;
320}
321
322/*
323 * Tries to authenticate the user using combined rhosts or /etc/hosts.equiv
324 * authentication and RSA host authentication.
325 */
396c147e 326static int
aeaa3d9e 327try_rhosts_rsa_authentication(const char *local_user, Key * host_key)
a306f2dd 328{
329 int type;
330 BIGNUM *challenge;
331 int plen, clen;
332
333 debug("Trying rhosts or /etc/hosts.equiv with RSA host authentication.");
334
335 /* Tell the server that we are willing to authenticate using this key. */
336 packet_start(SSH_CMSG_AUTH_RHOSTS_RSA);
449c5ba5 337 packet_put_cstring(local_user);
aeaa3d9e 338 packet_put_int(BN_num_bits(host_key->rsa->n));
339 packet_put_bignum(host_key->rsa->e);
340 packet_put_bignum(host_key->rsa->n);
a306f2dd 341 packet_send();
342 packet_write_wait();
343
344 /* Wait for server's response. */
345 type = packet_read(&plen);
346
347 /* The server responds with failure if it doesn't admit our
348 .rhosts authentication or doesn't know our host key. */
349 if (type == SSH_SMSG_FAILURE) {
350 debug("Server refused our rhosts authentication or host key.");
351 return 0;
352 }
353 /* Otherwise, the server should respond with a challenge. */
354 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
355 packet_disconnect("Protocol error during RSA authentication: %d", type);
356
357 /* Get the challenge from the packet. */
358 challenge = BN_new();
359 packet_get_bignum(challenge, &clen);
360
361 packet_integrity_check(plen, clen, type);
362
363 debug("Received RSA challenge for host key from server.");
364
365 /* Compute a response to the challenge. */
aeaa3d9e 366 respond_to_rsa_challenge(challenge, host_key->rsa);
a306f2dd 367
368 /* We no longer need the challenge. */
369 BN_clear_free(challenge);
370
371 /* Wait for response from the server. */
372 type = packet_read(&plen);
373 if (type == SSH_SMSG_SUCCESS) {
374 debug("Rhosts or /etc/hosts.equiv with RSA host authentication accepted by server.");
375 return 1;
376 }
377 if (type != SSH_SMSG_FAILURE)
378 packet_disconnect("Protocol error waiting RSA auth response: %d", type);
379 debug("Rhosts or /etc/hosts.equiv with RSA host authentication refused.");
380 return 0;
381}
382
383#ifdef KRB4
396c147e 384static int
ced49be2 385try_krb4_authentication(void)
a306f2dd 386{
387 KTEXT_ST auth; /* Kerberos data */
388 char *reply;
389 char inst[INST_SZ];
390 char *realm;
391 CREDENTIALS cred;
392 int r, type, plen;
393 socklen_t slen;
394 Key_schedule schedule;
395 u_long checksum, cksum;
396 MSG_DAT msg_data;
397 struct sockaddr_in local, foreign;
398 struct stat st;
399
400 /* Don't do anything if we don't have any tickets. */
401 if (stat(tkt_string(), &st) < 0)
402 return 0;
184eed6a 403
ced49be2 404 strlcpy(inst, (char *)krb_get_phost(get_canonical_hostname(1)),
405 INST_SZ);
184eed6a 406
ced49be2 407 realm = (char *)krb_realmofhost(get_canonical_hostname(1));
a306f2dd 408 if (!realm) {
ced49be2 409 debug("Kerberos v4: no realm for %s", get_canonical_hostname(1));
a306f2dd 410 return 0;
411 }
412 /* This can really be anything. */
ced49be2 413 checksum = (u_long)getpid();
184eed6a 414
a306f2dd 415 r = krb_mk_req(&auth, KRB4_SERVICE_NAME, inst, realm, checksum);
416 if (r != KSUCCESS) {
ced49be2 417 debug("Kerberos v4 krb_mk_req failed: %s", krb_err_txt[r]);
a306f2dd 418 return 0;
419 }
420 /* Get session key to decrypt the server's reply with. */
421 r = krb_get_cred(KRB4_SERVICE_NAME, inst, realm, &cred);
422 if (r != KSUCCESS) {
423 debug("get_cred failed: %s", krb_err_txt[r]);
424 return 0;
425 }
426 des_key_sched((des_cblock *) cred.session, schedule);
184eed6a 427
a306f2dd 428 /* Send authentication info to server. */
429 packet_start(SSH_CMSG_AUTH_KERBEROS);
430 packet_put_string((char *) auth.dat, auth.length);
431 packet_send();
432 packet_write_wait();
184eed6a 433
a306f2dd 434 /* Zero the buffer. */
435 (void) memset(auth.dat, 0, MAX_KTXT_LEN);
184eed6a 436
a306f2dd 437 slen = sizeof(local);
438 memset(&local, 0, sizeof(local));
439 if (getsockname(packet_get_connection_in(),
ced49be2 440 (struct sockaddr *)&local, &slen) < 0)
a306f2dd 441 debug("getsockname failed: %s", strerror(errno));
184eed6a 442
a306f2dd 443 slen = sizeof(foreign);
444 memset(&foreign, 0, sizeof(foreign));
445 if (getpeername(packet_get_connection_in(),
ced49be2 446 (struct sockaddr *)&foreign, &slen) < 0) {
a306f2dd 447 debug("getpeername failed: %s", strerror(errno));
448 fatal_cleanup();
449 }
450 /* Get server reply. */
451 type = packet_read(&plen);
452 switch (type) {
453 case SSH_SMSG_FAILURE:
454 /* Should really be SSH_SMSG_AUTH_KERBEROS_FAILURE */
ced49be2 455 debug("Kerberos v4 authentication failed.");
a306f2dd 456 return 0;
457 break;
184eed6a 458
a306f2dd 459 case SSH_SMSG_AUTH_KERBEROS_RESPONSE:
460 /* SSH_SMSG_AUTH_KERBEROS_SUCCESS */
ced49be2 461 debug("Kerberos v4 authentication accepted.");
184eed6a 462
a306f2dd 463 /* Get server's response. */
1e3b8b07 464 reply = packet_get_string((u_int *) &auth.length);
a306f2dd 465 memcpy(auth.dat, reply, auth.length);
466 xfree(reply);
184eed6a 467
a306f2dd 468 packet_integrity_check(plen, 4 + auth.length, type);
184eed6a 469
a306f2dd 470 /*
471 * If his response isn't properly encrypted with the session
472 * key, and the decrypted checksum fails to match, he's
473 * bogus. Bail out.
474 */
475 r = krb_rd_priv(auth.dat, auth.length, schedule, &cred.session,
ced49be2 476 &foreign, &local, &msg_data);
a306f2dd 477 if (r != KSUCCESS) {
ced49be2 478 debug("Kerberos v4 krb_rd_priv failed: %s",
479 krb_err_txt[r]);
480 packet_disconnect("Kerberos v4 challenge failed!");
a306f2dd 481 }
482 /* Fetch the (incremented) checksum that we supplied in the request. */
ced49be2 483 memcpy((char *)&cksum, (char *)msg_data.app_data,
484 sizeof(cksum));
a306f2dd 485 cksum = ntohl(cksum);
184eed6a 486
a306f2dd 487 /* If it matches, we're golden. */
488 if (cksum == checksum + 1) {
ced49be2 489 debug("Kerberos v4 challenge successful.");
a306f2dd 490 return 1;
491 } else
ced49be2 492 packet_disconnect("Kerberos v4 challenge failed!");
a306f2dd 493 break;
184eed6a 494
a306f2dd 495 default:
ced49be2 496 packet_disconnect("Protocol error on Kerberos v4 response: %d", type);
a306f2dd 497 }
498 return 0;
499}
500
501#endif /* KRB4 */
502
ced49be2 503#ifdef KRB5
396c147e 504static int
ced49be2 505try_krb5_authentication(krb5_context *context, krb5_auth_context *auth_context)
506{
507 krb5_error_code problem;
508 const char *tkfile;
509 struct stat buf;
510 krb5_ccache ccache = NULL;
511 const char *remotehost;
512 krb5_data ap;
513 int type, payload_len;
514 krb5_ap_rep_enc_part *reply = NULL;
515 int ret;
184eed6a 516
ced49be2 517 memset(&ap, 0, sizeof(ap));
184eed6a 518
ced49be2 519 problem = krb5_init_context(context);
520 if (problem) {
521 debug("Kerberos v5: krb5_init_context failed");
522 ret = 0;
523 goto out;
524 }
184eed6a 525
ced49be2 526 tkfile = krb5_cc_default_name(*context);
527 if (strncmp(tkfile, "FILE:", 5) == 0)
528 tkfile += 5;
184eed6a 529
ced49be2 530 if (stat(tkfile, &buf) == 0 && getuid() != buf.st_uid) {
531 debug("Kerberos v5: could not get default ccache (permission denied).");
532 ret = 0;
533 goto out;
534 }
184eed6a 535
ced49be2 536 problem = krb5_cc_default(*context, &ccache);
537 if (problem) {
538 debug("Kerberos v5: krb5_cc_default failed: %s",
539 krb5_get_err_text(*context, problem));
540 ret = 0;
541 goto out;
542 }
184eed6a 543
ced49be2 544 remotehost = get_canonical_hostname(1);
184eed6a 545
ced49be2 546 problem = krb5_mk_req(*context, auth_context, AP_OPTS_MUTUAL_REQUIRED,
547 "host", remotehost, NULL, ccache, &ap);
548 if (problem) {
549 debug("Kerberos v5: krb5_mk_req failed: %s",
550 krb5_get_err_text(*context, problem));
551 ret = 0;
552 goto out;
553 }
184eed6a 554
ced49be2 555 packet_start(SSH_CMSG_AUTH_KERBEROS);
556 packet_put_string((char *) ap.data, ap.length);
557 packet_send();
558 packet_write_wait();
184eed6a 559
ced49be2 560 xfree(ap.data);
561 ap.length = 0;
184eed6a 562
ced49be2 563 type = packet_read(&payload_len);
564 switch (type) {
184eed6a 565 case SSH_SMSG_FAILURE:
566 /* Should really be SSH_SMSG_AUTH_KERBEROS_FAILURE */
567 debug("Kerberos v5 authentication failed.");
568 ret = 0;
569 break;
570
ced49be2 571 case SSH_SMSG_AUTH_KERBEROS_RESPONSE:
184eed6a 572 /* SSH_SMSG_AUTH_KERBEROS_SUCCESS */
573 debug("Kerberos v5 authentication accepted.");
574
575 /* Get server's response. */
576 ap.data = packet_get_string((unsigned int *) &ap.length);
577
578 packet_integrity_check(payload_len, 4 + ap.length, type);
579 /* XXX je to dobre? */
580
581 problem = krb5_rd_rep(*context, *auth_context, &ap, &reply);
582 if (problem) {
ced49be2 583 ret = 0;
584 }
585 ret = 1;
586 break;
184eed6a 587
ced49be2 588 default:
589 packet_disconnect("Protocol error on Kerberos v5 response: %d",
590 type);
591 ret = 0;
592 break;
184eed6a 593
ced49be2 594 }
184eed6a 595
ced49be2 596 out:
597 if (ccache != NULL)
598 krb5_cc_close(*context, ccache);
599 if (reply != NULL)
600 krb5_free_ap_rep_enc_part(*context, reply);
601 if (ap.length > 0)
602 krb5_data_free(&ap);
184eed6a 603
ced49be2 604 return (ret);
605}
606
607static void
608send_krb5_tgt(krb5_context context, krb5_auth_context auth_context)
609{
610 int fd, type, payload_len;
611 krb5_error_code problem;
612 krb5_data outbuf;
613 krb5_ccache ccache = NULL;
614 krb5_creds creds;
615 krb5_kdc_flags flags;
616 const char *remotehost;
184eed6a 617
ced49be2 618 memset(&creds, 0, sizeof(creds));
619 memset(&outbuf, 0, sizeof(outbuf));
184eed6a 620
ced49be2 621 fd = packet_get_connection_in();
184eed6a 622
ced49be2 623 problem = krb5_auth_con_setaddrs_from_fd(context, auth_context, &fd);
624 if (problem)
625 goto out;
184eed6a 626
ced49be2 627 problem = krb5_cc_default(context, &ccache);
628 if (problem)
629 goto out;
184eed6a 630
ced49be2 631 problem = krb5_cc_get_principal(context, ccache, &creds.client);
632 if (problem)
633 goto out;
184eed6a 634
ced49be2 635 problem = krb5_build_principal(context, &creds.server,
636 strlen(creds.client->realm), creds.client->realm,
637 "krbtgt", creds.client->realm, NULL);
638 if (problem)
639 goto out;
184eed6a 640
ced49be2 641 creds.times.endtime = 0;
184eed6a 642
ced49be2 643 flags.i = 0;
644 flags.b.forwarded = 1;
645 flags.b.forwardable = krb5_config_get_bool(context, NULL,
646 "libdefaults", "forwardable", NULL);
184eed6a 647
ced49be2 648 remotehost = get_canonical_hostname(1);
184eed6a 649
ced49be2 650 problem = krb5_get_forwarded_creds(context, auth_context,
651 ccache, flags.i, remotehost, &creds, &outbuf);
652 if (problem)
653 goto out;
184eed6a 654
ced49be2 655 packet_start(SSH_CMSG_HAVE_KERBEROS_TGT);
656 packet_put_string((char *)outbuf.data, outbuf.length);
657 packet_send();
658 packet_write_wait();
184eed6a 659
ced49be2 660 type = packet_read(&payload_len);
184eed6a 661
ced49be2 662 if (type == SSH_SMSG_SUCCESS) {
663 char *pname;
184eed6a 664
ced49be2 665 krb5_unparse_name(context, creds.client, &pname);
666 debug("Kerberos v5 TGT forwarded (%s).", pname);
667 xfree(pname);
668 } else
669 debug("Kerberos v5 TGT forwarding failed.");
184eed6a 670
ced49be2 671 return;
184eed6a 672
ced49be2 673 out:
674 if (problem)
675 debug("Kerberos v5 TGT forwarding failed: %s",
676 krb5_get_err_text(context, problem));
677 if (creds.client)
678 krb5_free_principal(context, creds.client);
679 if (creds.server)
680 krb5_free_principal(context, creds.server);
681 if (ccache)
682 krb5_cc_close(context, ccache);
683 if (outbuf.data)
684 xfree(outbuf.data);
685}
686#endif /* KRB5 */
687
688#ifdef AFS
689static void
690send_krb4_tgt(void)
a306f2dd 691{
692 CREDENTIALS *creds;
a306f2dd 693 struct stat st;
ced49be2 694 char buffer[4096], pname[ANAME_SZ], pinst[INST_SZ], prealm[REALM_SZ];
695 int problem, type, len;
184eed6a 696
a306f2dd 697 /* Don't do anything if we don't have any tickets. */
698 if (stat(tkt_string(), &st) < 0)
ced49be2 699 return;
184eed6a 700
a306f2dd 701 creds = xmalloc(sizeof(*creds));
184eed6a 702
ced49be2 703 problem = krb_get_tf_fullname(TKT_FILE, pname, pinst, prealm);
704 if (problem)
705 goto out;
184eed6a 706
ced49be2 707 problem = krb_get_cred("krbtgt", prealm, prealm, creds);
708 if (problem)
709 goto out;
184eed6a 710
a306f2dd 711 if (time(0) > krb_life_to_time(creds->issue_date, creds->lifetime)) {
ced49be2 712 problem = RD_AP_EXP;
713 goto out;
a306f2dd 714 }
ced49be2 715 creds_to_radix(creds, (u_char *)buffer, sizeof(buffer));
184eed6a 716
a306f2dd 717 packet_start(SSH_CMSG_HAVE_KERBEROS_TGT);
449c5ba5 718 packet_put_cstring(buffer);
a306f2dd 719 packet_send();
720 packet_write_wait();
184eed6a 721
ced49be2 722 type = packet_read(&len);
184eed6a 723
ced49be2 724 if (type == SSH_SMSG_SUCCESS)
725 debug("Kerberos v4 TGT forwarded (%s%s%s@%s).",
726 creds->pname, creds->pinst[0] ? "." : "",
727 creds->pinst, creds->realm);
728 else
729 debug("Kerberos v4 TGT rejected.");
184eed6a 730
ced49be2 731 xfree(creds);
732 return;
184eed6a 733
ced49be2 734 out:
735 debug("Kerberos v4 TGT passing failed: %s", krb_err_txt[problem]);
736 xfree(creds);
a306f2dd 737}
738
396c147e 739static void
a306f2dd 740send_afs_tokens(void)
741{
742 CREDENTIALS creds;
743 struct ViceIoctl parms;
744 struct ClearToken ct;
ced49be2 745 int i, type, len;
a306f2dd 746 char buf[2048], *p, *server_cell;
747 char buffer[8192];
184eed6a 748
a306f2dd 749 /* Move over ktc_GetToken, here's something leaner. */
750 for (i = 0; i < 100; i++) { /* just in case */
751 parms.in = (char *) &i;
752 parms.in_size = sizeof(i);
753 parms.out = buf;
754 parms.out_size = sizeof(buf);
755 if (k_pioctl(0, VIOCGETTOK, &parms, 0) != 0)
756 break;
757 p = buf;
184eed6a 758
a306f2dd 759 /* Get secret token. */
1e3b8b07 760 memcpy(&creds.ticket_st.length, p, sizeof(u_int));
a306f2dd 761 if (creds.ticket_st.length > MAX_KTXT_LEN)
762 break;
1e3b8b07 763 p += sizeof(u_int);
a306f2dd 764 memcpy(creds.ticket_st.dat, p, creds.ticket_st.length);
765 p += creds.ticket_st.length;
184eed6a 766
a306f2dd 767 /* Get clear token. */
768 memcpy(&len, p, sizeof(len));
769 if (len != sizeof(struct ClearToken))
770 break;
771 p += sizeof(len);
772 memcpy(&ct, p, len);
773 p += len;
774 p += sizeof(len); /* primary flag */
775 server_cell = p;
184eed6a 776
a306f2dd 777 /* Flesh out our credentials. */
ced49be2 778 strlcpy(creds.service, "afs", sizeof(creds.service));
a306f2dd 779 creds.instance[0] = '\0';
780 strlcpy(creds.realm, server_cell, REALM_SZ);
781 memcpy(creds.session, ct.HandShakeKey, DES_KEY_SZ);
782 creds.issue_date = ct.BeginTimestamp;
ced49be2 783 creds.lifetime = krb_time_to_life(creds.issue_date,
784 ct.EndTimestamp);
a306f2dd 785 creds.kvno = ct.AuthHandle;
786 snprintf(creds.pname, sizeof(creds.pname), "AFS ID %d", ct.ViceId);
787 creds.pinst[0] = '\0';
184eed6a 788
a306f2dd 789 /* Encode token, ship it off. */
ced49be2 790 if (creds_to_radix(&creds, (u_char *)buffer,
791 sizeof(buffer)) <= 0)
a306f2dd 792 break;
793 packet_start(SSH_CMSG_HAVE_AFS_TOKEN);
449c5ba5 794 packet_put_cstring(buffer);
a306f2dd 795 packet_send();
796 packet_write_wait();
797
798 /* Roger, Roger. Clearance, Clarence. What's your vector,
799 Victor? */
ced49be2 800 type = packet_read(&len);
184eed6a 801
a306f2dd 802 if (type == SSH_SMSG_FAILURE)
803 debug("AFS token for cell %s rejected.", server_cell);
804 else if (type != SSH_SMSG_SUCCESS)
805 packet_disconnect("Protocol error on AFS token response: %d", type);
806 }
807}
808
809#endif /* AFS */
810
811/*
812 * Tries to authenticate with any string-based challenge/response system.
813 * Note that the client code is not tied to s/key or TIS.
814 */
396c147e 815static int
5ba55ada 816try_challenge_response_authentication(void)
a306f2dd 817{
818 int type, i;
819 int payload_len;
1e3b8b07 820 u_int clen;
e3a70753 821 char prompt[1024];
a306f2dd 822 char *challenge, *response;
aa8003d6 823
824 debug("Doing challenge response authentication.");
825
a306f2dd 826 for (i = 0; i < options.number_of_password_prompts; i++) {
e3a70753 827 /* request a challenge */
828 packet_start(SSH_CMSG_AUTH_TIS);
829 packet_send();
830 packet_write_wait();
831
832 type = packet_read(&payload_len);
833 if (type != SSH_SMSG_FAILURE &&
834 type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
835 packet_disconnect("Protocol error: got %d in response "
d464095c 836 "to SSH_CMSG_AUTH_TIS", type);
e3a70753 837 }
838 if (type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
d464095c 839 debug("No challenge.");
e3a70753 840 return 0;
841 }
842 challenge = packet_get_string(&clen);
843 packet_integrity_check(payload_len, (4 + clen), type);
59c97189 844 snprintf(prompt, sizeof prompt, "%s%s", challenge,
184eed6a 845 strchr(challenge, '\n') ? "" : "\nResponse: ");
e3a70753 846 xfree(challenge);
a306f2dd 847 if (i != 0)
848 error("Permission denied, please try again.");
e3a70753 849 if (options.cipher == SSH_CIPHER_NONE)
850 log("WARNING: Encryption is disabled! "
851 "Reponse will be transmitted in clear text.");
852 response = read_passphrase(prompt, 0);
853 if (strcmp(response, "") == 0) {
854 xfree(response);
855 break;
856 }
a306f2dd 857 packet_start(SSH_CMSG_AUTH_TIS_RESPONSE);
0ae4fe1d 858 ssh_put_password(response);
a306f2dd 859 memset(response, 0, strlen(response));
860 xfree(response);
861 packet_send();
862 packet_write_wait();
863 type = packet_read(&payload_len);
864 if (type == SSH_SMSG_SUCCESS)
865 return 1;
866 if (type != SSH_SMSG_FAILURE)
867 packet_disconnect("Protocol error: got %d in response "
d464095c 868 "to SSH_CMSG_AUTH_TIS_RESPONSE", type);
a306f2dd 869 }
870 /* failure */
871 return 0;
872}
873
874/*
875 * Tries to authenticate with plain passwd authentication.
876 */
396c147e 877static int
a306f2dd 878try_password_authentication(char *prompt)
879{
880 int type, i, payload_len;
881 char *password;
882
883 debug("Doing password authentication.");
884 if (options.cipher == SSH_CIPHER_NONE)
885 log("WARNING: Encryption is disabled! Password will be transmitted in clear text.");
886 for (i = 0; i < options.number_of_password_prompts; i++) {
887 if (i != 0)
888 error("Permission denied, please try again.");
889 password = read_passphrase(prompt, 0);
890 packet_start(SSH_CMSG_AUTH_PASSWORD);
0ae4fe1d 891 ssh_put_password(password);
a306f2dd 892 memset(password, 0, strlen(password));
893 xfree(password);
894 packet_send();
895 packet_write_wait();
896
897 type = packet_read(&payload_len);
898 if (type == SSH_SMSG_SUCCESS)
899 return 1;
900 if (type != SSH_SMSG_FAILURE)
901 packet_disconnect("Protocol error: got %d in response to passwd auth", type);
902 }
903 /* failure */
904 return 0;
905}
906
907/*
908 * SSH1 key exchange
909 */
910void
911ssh_kex(char *host, struct sockaddr *hostaddr)
912{
913 int i;
914 BIGNUM *key;
915 RSA *host_key;
916 RSA *public_key;
917 Key k;
918 int bits, rbits;
919 int ssh_cipher_default = SSH_CIPHER_3DES;
1e3b8b07 920 u_char session_key[SSH_SESSION_KEY_LENGTH];
921 u_char cookie[8];
922 u_int supported_ciphers;
923 u_int server_flags, client_flags;
a306f2dd 924 int payload_len, clen, sum_len = 0;
925 u_int32_t rand = 0;
926
927 debug("Waiting for server public key.");
928
929 /* Wait for a public key packet from the server. */
930 packet_read_expect(&payload_len, SSH_SMSG_PUBLIC_KEY);
931
932 /* Get cookie from the packet. */
933 for (i = 0; i < 8; i++)
934 cookie[i] = packet_get_char();
935
936 /* Get the public key. */
937 public_key = RSA_new();
938 bits = packet_get_int();/* bits */
939 public_key->e = BN_new();
940 packet_get_bignum(public_key->e, &clen);
941 sum_len += clen;
942 public_key->n = BN_new();
943 packet_get_bignum(public_key->n, &clen);
944 sum_len += clen;
945
946 rbits = BN_num_bits(public_key->n);
947 if (bits != rbits) {
948 log("Warning: Server lies about size of server public key: "
949 "actual size is %d bits vs. announced %d.", rbits, bits);
950 log("Warning: This may be due to an old implementation of ssh.");
951 }
952 /* Get the host key. */
953 host_key = RSA_new();
954 bits = packet_get_int();/* bits */
955 host_key->e = BN_new();
956 packet_get_bignum(host_key->e, &clen);
957 sum_len += clen;
958 host_key->n = BN_new();
959 packet_get_bignum(host_key->n, &clen);
960 sum_len += clen;
961
962 rbits = BN_num_bits(host_key->n);
963 if (bits != rbits) {
964 log("Warning: Server lies about size of server host key: "
965 "actual size is %d bits vs. announced %d.", rbits, bits);
966 log("Warning: This may be due to an old implementation of ssh.");
967 }
968
969 /* Get protocol flags. */
970 server_flags = packet_get_int();
971 packet_set_protocol_flags(server_flags);
972
973 supported_ciphers = packet_get_int();
974 supported_authentications = packet_get_int();
975
976 debug("Received server public key (%d bits) and host key (%d bits).",
184eed6a 977 BN_num_bits(public_key->n), BN_num_bits(host_key->n));
a306f2dd 978
979 packet_integrity_check(payload_len,
184eed6a 980 8 + 4 + sum_len + 0 + 4 + 0 + 0 + 4 + 4 + 4,
981 SSH_SMSG_PUBLIC_KEY);
fa08c86b 982 k.type = KEY_RSA1;
a306f2dd 983 k.rsa = host_key;
f49bc4f7 984 if (verify_host_key(host, hostaddr, &k) == -1)
01e9ef57 985 fatal("Host key verification failed.");
a306f2dd 986
987 client_flags = SSH_PROTOFLAG_SCREEN_NUMBER | SSH_PROTOFLAG_HOST_IN_FWD_OPEN;
988
989 compute_session_id(session_id, cookie, host_key->n, public_key->n);
990
991 /* Generate a session key. */
992 arc4random_stir();
993
994 /*
995 * Generate an encryption key for the session. The key is a 256 bit
996 * random number, interpreted as a 32-byte key, with the least
997 * significant 8 bits being the first byte of the key.
998 */
999 for (i = 0; i < 32; i++) {
1000 if (i % 4 == 0)
1001 rand = arc4random();
1002 session_key[i] = rand & 0xff;
1003 rand >>= 8;
1004 }
1005
1006 /*
1007 * According to the protocol spec, the first byte of the session key
1008 * is the highest byte of the integer. The session key is xored with
1009 * the first 16 bytes of the session id.
1010 */
1011 key = BN_new();
1012 BN_set_word(key, 0);
1013 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
1014 BN_lshift(key, key, 8);
1015 if (i < 16)
1016 BN_add_word(key, session_key[i] ^ session_id[i]);
1017 else
1018 BN_add_word(key, session_key[i]);
1019 }
1020
1021 /*
1022 * Encrypt the integer using the public key and host key of the
1023 * server (key with smaller modulus first).
1024 */
1025 if (BN_cmp(public_key->n, host_key->n) < 0) {
1026 /* Public key has smaller modulus. */
1027 if (BN_num_bits(host_key->n) <
1028 BN_num_bits(public_key->n) + SSH_KEY_BITS_RESERVED) {
1029 fatal("respond_to_rsa_challenge: host_key %d < public_key %d + "
184eed6a 1030 "SSH_KEY_BITS_RESERVED %d",
1031 BN_num_bits(host_key->n),
1032 BN_num_bits(public_key->n),
1033 SSH_KEY_BITS_RESERVED);
a306f2dd 1034 }
1035 rsa_public_encrypt(key, key, public_key);
1036 rsa_public_encrypt(key, key, host_key);
1037 } else {
1038 /* Host key has smaller modulus (or they are equal). */
1039 if (BN_num_bits(public_key->n) <
1040 BN_num_bits(host_key->n) + SSH_KEY_BITS_RESERVED) {
1041 fatal("respond_to_rsa_challenge: public_key %d < host_key %d + "
184eed6a 1042 "SSH_KEY_BITS_RESERVED %d",
1043 BN_num_bits(public_key->n),
1044 BN_num_bits(host_key->n),
1045 SSH_KEY_BITS_RESERVED);
a306f2dd 1046 }
1047 rsa_public_encrypt(key, key, host_key);
1048 rsa_public_encrypt(key, key, public_key);
1049 }
1050
1051 /* Destroy the public keys since we no longer need them. */
1052 RSA_free(public_key);
1053 RSA_free(host_key);
1054
c523303b 1055 if (options.cipher == SSH_CIPHER_NOT_SET) {
1056 if (cipher_mask_ssh1(1) & supported_ciphers & (1 << ssh_cipher_default))
1057 options.cipher = ssh_cipher_default;
1058 } else if (options.cipher == SSH_CIPHER_ILLEGAL ||
1059 !(cipher_mask_ssh1(1) & (1 << options.cipher))) {
d0c832f3 1060 log("No valid SSH1 cipher, using %.100s instead.",
94ec8c6b 1061 cipher_name(ssh_cipher_default));
1062 options.cipher = ssh_cipher_default;
a306f2dd 1063 }
1064 /* Check that the selected cipher is supported. */
1065 if (!(supported_ciphers & (1 << options.cipher)))
1066 fatal("Selected cipher type %.100s not supported by server.",
184eed6a 1067 cipher_name(options.cipher));
a306f2dd 1068
1069 debug("Encryption type: %.100s", cipher_name(options.cipher));
1070
1071 /* Send the encrypted session key to the server. */
1072 packet_start(SSH_CMSG_SESSION_KEY);
1073 packet_put_char(options.cipher);
1074
1075 /* Send the cookie back to the server. */
1076 for (i = 0; i < 8; i++)
1077 packet_put_char(cookie[i]);
1078
1079 /* Send and destroy the encrypted encryption key integer. */
1080 packet_put_bignum(key);
1081 BN_clear_free(key);
1082
1083 /* Send protocol flags. */
1084 packet_put_int(client_flags);
1085
1086 /* Send the packet now. */
1087 packet_send();
1088 packet_write_wait();
1089
1090 debug("Sent encrypted session key.");
1091
1092 /* Set the encryption key. */
1093 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, options.cipher);
1094
1095 /* We will no longer need the session key here. Destroy any extra copies. */
1096 memset(session_key, 0, sizeof(session_key));
1097
1098 /*
1099 * Expect a success message from the server. Note that this message
1100 * will be received in encrypted form.
1101 */
1102 packet_read_expect(&payload_len, SSH_SMSG_SUCCESS);
1103
1104 debug("Received encrypted confirmation.");
1105}
1106
1107/*
1108 * Authenticate user
1109 */
1110void
8002af61 1111ssh_userauth1(const char *local_user, const char *server_user, char *host,
1112 Key **keys, int nkeys)
a306f2dd 1113{
ced49be2 1114#ifdef KRB5
1115 krb5_context context = NULL;
1116 krb5_auth_context auth_context = NULL;
1117#endif
a306f2dd 1118 int i, type;
1119 int payload_len;
184eed6a 1120
a306f2dd 1121 if (supported_authentications == 0)
8002af61 1122 fatal("ssh_userauth1: server supports no auth methods");
a306f2dd 1123
1124 /* Send the name of the user to log in as on the server. */
1125 packet_start(SSH_CMSG_USER);
449c5ba5 1126 packet_put_cstring(server_user);
a306f2dd 1127 packet_send();
1128 packet_write_wait();
1129
1130 /*
1131 * The server should respond with success if no authentication is
1132 * needed (the user has no password). Otherwise the server responds
1133 * with failure.
1134 */
1135 type = packet_read(&payload_len);
1136
1137 /* check whether the connection was accepted without authentication. */
1138 if (type == SSH_SMSG_SUCCESS)
ced49be2 1139 goto success;
a306f2dd 1140 if (type != SSH_SMSG_FAILURE)
ced49be2 1141 packet_disconnect("Protocol error: got %d in response to SSH_CMSG_USER", type);
184eed6a 1142
ced49be2 1143#ifdef KRB5
1144 if ((supported_authentications & (1 << SSH_AUTH_KERBEROS)) &&
184eed6a 1145 options.kerberos_authentication) {
ced49be2 1146 debug("Trying Kerberos v5 authentication.");
184eed6a 1147
ced49be2 1148 if (try_krb5_authentication(&context, &auth_context)) {
1149 type = packet_read(&payload_len);
1150 if (type == SSH_SMSG_SUCCESS)
1151 goto success;
1152 if (type != SSH_SMSG_FAILURE)
1153 packet_disconnect("Protocol error: got %d in response to Kerberos v5 auth", type);
1154 }
a306f2dd 1155 }
ced49be2 1156#endif /* KRB5 */
184eed6a 1157
a306f2dd 1158#ifdef KRB4
1159 if ((supported_authentications & (1 << SSH_AUTH_KERBEROS)) &&
1160 options.kerberos_authentication) {
ced49be2 1161 debug("Trying Kerberos v4 authentication.");
184eed6a 1162
ced49be2 1163 if (try_krb4_authentication()) {
a306f2dd 1164 type = packet_read(&payload_len);
1165 if (type == SSH_SMSG_SUCCESS)
ced49be2 1166 goto success;
a306f2dd 1167 if (type != SSH_SMSG_FAILURE)
ced49be2 1168 packet_disconnect("Protocol error: got %d in response to Kerberos v4 auth", type);
a306f2dd 1169 }
1170 }
1171#endif /* KRB4 */
184eed6a 1172
a306f2dd 1173 /*
1174 * Use rhosts authentication if running in privileged socket and we
1175 * do not wish to remain anonymous.
1176 */
1177 if ((supported_authentications & (1 << SSH_AUTH_RHOSTS)) &&
1178 options.rhosts_authentication) {
1179 debug("Trying rhosts authentication.");
1180 packet_start(SSH_CMSG_AUTH_RHOSTS);
449c5ba5 1181 packet_put_cstring(local_user);
a306f2dd 1182 packet_send();
1183 packet_write_wait();
1184
1185 /* The server should respond with success or failure. */
1186 type = packet_read(&payload_len);
1187 if (type == SSH_SMSG_SUCCESS)
ced49be2 1188 goto success;
a306f2dd 1189 if (type != SSH_SMSG_FAILURE)
1190 packet_disconnect("Protocol error: got %d in response to rhosts auth",
1191 type);
1192 }
1193 /*
1194 * Try .rhosts or /etc/hosts.equiv authentication with RSA host
1195 * authentication.
1196 */
1197 if ((supported_authentications & (1 << SSH_AUTH_RHOSTS_RSA)) &&
8002af61 1198 options.rhosts_rsa_authentication) {
1199 for (i = 0; i < nkeys; i++) {
eba4bef7 1200 if (keys[i] != NULL && keys[i]->type == KEY_RSA1 &&
8002af61 1201 try_rhosts_rsa_authentication(local_user, keys[i]))
ced49be2 1202 goto success;
8002af61 1203 }
a306f2dd 1204 }
1205 /* Try RSA authentication if the server supports it. */
1206 if ((supported_authentications & (1 << SSH_AUTH_RSA)) &&
1207 options.rsa_authentication) {
1208 /*
1209 * Try RSA authentication using the authentication agent. The
1210 * agent is tried first because no passphrase is needed for
1211 * it, whereas identity files may require passphrases.
1212 */
1213 if (try_agent_authentication())
ced49be2 1214 goto success;
a306f2dd 1215
1216 /* Try RSA authentication for each identity. */
1217 for (i = 0; i < options.num_identity_files; i++)
fee56204 1218 if (options.identity_keys[i] != NULL &&
1219 options.identity_keys[i]->type == KEY_RSA1 &&
383546c4 1220 try_rsa_authentication(i))
ced49be2 1221 goto success;
a306f2dd 1222 }
d464095c 1223 /* Try challenge response authentication if the server supports it. */
a306f2dd 1224 if ((supported_authentications & (1 << SSH_AUTH_TIS)) &&
5ba55ada 1225 options.challenge_response_authentication && !options.batch_mode) {
1226 if (try_challenge_response_authentication())
ced49be2 1227 goto success;
a306f2dd 1228 }
1229 /* Try password authentication if the server supports it. */
1230 if ((supported_authentications & (1 << SSH_AUTH_PASSWORD)) &&
1231 options.password_authentication && !options.batch_mode) {
1232 char prompt[80];
1233
b3b9ad8e 1234 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
a306f2dd 1235 server_user, host);
1236 if (try_password_authentication(prompt))
ced49be2 1237 goto success;
a306f2dd 1238 }
1239 /* All authentication methods have failed. Exit with an error message. */
1240 fatal("Permission denied.");
1241 /* NOTREACHED */
ced49be2 1242
1243 success:
1244#ifdef KRB5
1245 /* Try Kerberos v5 TGT passing. */
1246 if ((supported_authentications & (1 << SSH_PASS_KERBEROS_TGT)) &&
1247 options.kerberos_tgt_passing && context && auth_context) {
1248 if (options.cipher == SSH_CIPHER_NONE)
1249 log("WARNING: Encryption is disabled! Ticket will be transmitted in the clear!");
1250 send_krb5_tgt(context, auth_context);
1251 }
1252 if (auth_context)
1253 krb5_auth_con_free(context, auth_context);
1254 if (context)
1255 krb5_free_context(context);
1256#endif
184eed6a 1257
ced49be2 1258#ifdef AFS
1259 /* Try Kerberos v4 TGT passing if the server supports it. */
1260 if ((supported_authentications & (1 << SSH_PASS_KERBEROS_TGT)) &&
1261 options.kerberos_tgt_passing) {
1262 if (options.cipher == SSH_CIPHER_NONE)
1263 log("WARNING: Encryption is disabled! Ticket will be transmitted in the clear!");
1264 send_krb4_tgt();
1265 }
1266 /* Try AFS token passing if the server supports it. */
1267 if ((supported_authentications & (1 << SSH_PASS_AFS_TOKEN)) &&
1268 options.afs_token_passing && k_hasafs()) {
1269 if (options.cipher == SSH_CIPHER_NONE)
1270 log("WARNING: Encryption is disabled! Token will be transmitted in the clear!");
1271 send_afs_tokens();
1272 }
1273#endif /* AFS */
d9e3d19f 1274
62bb2c8f 1275 return; /* need statement after label */
a306f2dd 1276}
This page took 0.355492 seconds and 5 git commands to generate.