]> andersk Git - gssapi-openssh.git/blame - openssh/sshconnect1.c
o Bump version to 2.7.
[gssapi-openssh.git] / openssh / sshconnect1.c
CommitLineData
3c0ef626 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
5 * Code to connect to a remote host, and to perform the client side of the
6 * login (authentication) dialog.
7 *
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".
13 */
14
15#include "includes.h"
d03f4262 16RCSID("$OpenBSD: sshconnect1.c,v 1.52 2002/08/08 13:50:23 aaron Exp $");
3c0ef626 17
18#include <openssl/bn.h>
1e608e42 19#include <openssl/md5.h>
3c0ef626 20
21#ifdef KRB4
22#include <krb.h>
23#endif
24#ifdef KRB5
25#include <krb5.h>
63119dd9 26#ifndef HEIMDAL
27#define krb5_get_err_text(context,code) error_message(code)
28#endif /* !HEIMDAL */
3c0ef626 29#endif
30#ifdef AFS
31#include <kafs.h>
32#include "radix.h"
33#endif
34
35#include "ssh.h"
36#include "ssh1.h"
37#include "xmalloc.h"
38#include "rsa.h"
39#include "buffer.h"
40#include "packet.h"
41#include "mpaux.h"
42#include "uidswap.h"
43#include "log.h"
44#include "readconf.h"
45#include "key.h"
46#include "authfd.h"
47#include "sshconnect.h"
48#include "authfile.h"
49#include "readpass.h"
50#include "cipher.h"
51#include "canohost.h"
52#include "auth.h"
53
0b582e46 54#ifdef GSSAPI
3f726215 55#include "ssh-gss.h"
0b582e46 56#include "bufaux.h"
1aad58f1 57
0b582e46 58/*
59 * MD5 hash of host and session keys for verification. This is filled
60 * in in ssh_login() and then checked in try_gssapi_authentication().
61 */
62unsigned char ssh_key_digest[16];
63#endif /* GSSAPI */
0b582e46 64
3c0ef626 65/* Session id for the current session. */
66u_char session_id[16];
67u_int supported_authentications = 0;
68
69extern Options options;
70extern char *__progname;
71
72/*
73 * Checks if the user has an authentication agent, and if so, tries to
74 * authenticate using the agent.
75 */
76static int
77try_agent_authentication(void)
78{
79 int type;
80 char *comment;
81 AuthenticationConnection *auth;
82 u_char response[16];
83 u_int i;
3c0ef626 84 Key *key;
85 BIGNUM *challenge;
86
87 /* Get connection to the agent. */
88 auth = ssh_get_authentication_connection();
89 if (!auth)
90 return 0;
91
1e608e42 92 if ((challenge = BN_new()) == NULL)
93 fatal("try_agent_authentication: BN_new failed");
3c0ef626 94 /* Loop through identities served by the agent. */
95 for (key = ssh_get_first_identity(auth, &comment, 1);
1e608e42 96 key != NULL;
97 key = ssh_get_next_identity(auth, &comment, 1)) {
3c0ef626 98
99 /* Try this identity. */
100 debug("Trying RSA authentication via agent with '%.100s'", comment);
101 xfree(comment);
102
103 /* Tell the server that we are willing to authenticate using this key. */
104 packet_start(SSH_CMSG_AUTH_RSA);
105 packet_put_bignum(key->rsa->n);
106 packet_send();
107 packet_write_wait();
108
109 /* Wait for server's response. */
1e608e42 110 type = packet_read();
3c0ef626 111
112 /* The server sends failure if it doesn\'t like our key or
113 does not support RSA authentication. */
114 if (type == SSH_SMSG_FAILURE) {
115 debug("Server refused our key.");
116 key_free(key);
117 continue;
118 }
119 /* Otherwise it should have sent a challenge. */
120 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
121 packet_disconnect("Protocol error during RSA authentication: %d",
122 type);
123
1e608e42 124 packet_get_bignum(challenge);
125 packet_check_eom();
3c0ef626 126
127 debug("Received RSA challenge from server.");
128
129 /* Ask the agent to decrypt the challenge. */
130 if (!ssh_decrypt_challenge(auth, key, challenge, session_id, 1, response)) {
131 /*
132 * The agent failed to authenticate this identifier
133 * although it advertised it supports this. Just
134 * return a wrong value.
135 */
136 log("Authentication agent failed to decrypt challenge.");
137 memset(response, 0, sizeof(response));
138 }
139 key_free(key);
140 debug("Sending response to RSA challenge.");
141
142 /* Send the decrypted challenge back to the server. */
143 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
144 for (i = 0; i < 16; i++)
145 packet_put_char(response[i]);
146 packet_send();
147 packet_write_wait();
148
149 /* Wait for response from the server. */
1e608e42 150 type = packet_read();
3c0ef626 151
152 /* The server returns success if it accepted the authentication. */
153 if (type == SSH_SMSG_SUCCESS) {
154 ssh_close_authentication_connection(auth);
155 BN_clear_free(challenge);
156 debug("RSA authentication accepted by server.");
157 return 1;
158 }
159 /* Otherwise it should return failure. */
160 if (type != SSH_SMSG_FAILURE)
161 packet_disconnect("Protocol error waiting RSA auth response: %d",
162 type);
163 }
164 ssh_close_authentication_connection(auth);
165 BN_clear_free(challenge);
166 debug("RSA authentication using agent refused.");
167 return 0;
168}
169
170/*
171 * Computes the proper response to a RSA challenge, and sends the response to
172 * the server.
173 */
174static void
175respond_to_rsa_challenge(BIGNUM * challenge, RSA * prv)
176{
177 u_char buf[32], response[16];
178 MD5_CTX md;
179 int i, len;
180
181 /* Decrypt the challenge using the private key. */
182 /* XXX think about Bleichenbacher, too */
183 if (rsa_private_decrypt(challenge, challenge, prv) <= 0)
184 packet_disconnect(
185 "respond_to_rsa_challenge: rsa_private_decrypt failed");
186
187 /* Compute the response. */
188 /* The response is MD5 of decrypted challenge plus session id. */
189 len = BN_num_bytes(challenge);
190 if (len <= 0 || len > sizeof(buf))
191 packet_disconnect(
192 "respond_to_rsa_challenge: bad challenge length %d", len);
193
194 memset(buf, 0, sizeof(buf));
195 BN_bn2bin(challenge, buf + sizeof(buf) - len);
196 MD5_Init(&md);
197 MD5_Update(&md, buf, 32);
198 MD5_Update(&md, session_id, 16);
199 MD5_Final(response, &md);
200
201 debug("Sending response to host key RSA challenge.");
202
203 /* Send the response back to the server. */
204 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
205 for (i = 0; i < 16; i++)
206 packet_put_char(response[i]);
207 packet_send();
208 packet_write_wait();
209
210 memset(buf, 0, sizeof(buf));
211 memset(response, 0, sizeof(response));
212 memset(&md, 0, sizeof(md));
213}
214
215/*
216 * Checks if the user has authentication file, and if so, tries to authenticate
217 * the user using it.
218 */
219static int
220try_rsa_authentication(int idx)
221{
222 BIGNUM *challenge;
223 Key *public, *private;
224 char buf[300], *passphrase, *comment, *authfile;
1e608e42 225 int i, type, quit;
3c0ef626 226
227 public = options.identity_keys[idx];
228 authfile = options.identity_files[idx];
229 comment = xstrdup(authfile);
230
231 debug("Trying RSA authentication with key '%.100s'", comment);
232
233 /* Tell the server that we are willing to authenticate using this key. */
234 packet_start(SSH_CMSG_AUTH_RSA);
235 packet_put_bignum(public->rsa->n);
236 packet_send();
237 packet_write_wait();
238
239 /* Wait for server's response. */
1e608e42 240 type = packet_read();
3c0ef626 241
242 /*
243 * The server responds with failure if it doesn\'t like our key or
244 * doesn\'t support RSA authentication.
245 */
246 if (type == SSH_SMSG_FAILURE) {
247 debug("Server refused our key.");
248 xfree(comment);
249 return 0;
250 }
251 /* Otherwise, the server should respond with a challenge. */
252 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
253 packet_disconnect("Protocol error during RSA authentication: %d", type);
254
255 /* Get the challenge from the packet. */
1e608e42 256 if ((challenge = BN_new()) == NULL)
257 fatal("try_rsa_authentication: BN_new failed");
258 packet_get_bignum(challenge);
259 packet_check_eom();
3c0ef626 260
261 debug("Received RSA challenge from server.");
262
263 /*
264 * If the key is not stored in external hardware, we have to
265 * load the private key. Try first with empty passphrase; if it
266 * fails, ask for a passphrase.
267 */
d03f4262 268 if (public->flags & KEY_FLAG_EXT)
3c0ef626 269 private = public;
270 else
271 private = key_load_private_type(KEY_RSA1, authfile, "", NULL);
272 if (private == NULL && !options.batch_mode) {
273 snprintf(buf, sizeof(buf),
274 "Enter passphrase for RSA key '%.100s': ", comment);
275 for (i = 0; i < options.number_of_password_prompts; i++) {
276 passphrase = read_passphrase(buf, 0);
277 if (strcmp(passphrase, "") != 0) {
278 private = key_load_private_type(KEY_RSA1,
279 authfile, passphrase, NULL);
280 quit = 0;
281 } else {
282 debug2("no passphrase given, try next key");
283 quit = 1;
284 }
285 memset(passphrase, 0, strlen(passphrase));
286 xfree(passphrase);
287 if (private != NULL || quit)
288 break;
289 debug2("bad passphrase given, try again...");
290 }
291 }
292 /* We no longer need the comment. */
293 xfree(comment);
294
295 if (private == NULL) {
296 if (!options.batch_mode)
297 error("Bad passphrase.");
298
299 /* Send a dummy response packet to avoid protocol error. */
300 packet_start(SSH_CMSG_AUTH_RSA_RESPONSE);
301 for (i = 0; i < 16; i++)
302 packet_put_char(0);
303 packet_send();
304 packet_write_wait();
305
306 /* Expect the server to reject it... */
1e608e42 307 packet_read_expect(SSH_SMSG_FAILURE);
3c0ef626 308 BN_clear_free(challenge);
309 return 0;
310 }
311
312 /* Compute and send a response to the challenge. */
313 respond_to_rsa_challenge(challenge, private->rsa);
314
315 /* Destroy the private key unless it in external hardware. */
316 if (!(private->flags & KEY_FLAG_EXT))
317 key_free(private);
318
319 /* We no longer need the challenge. */
320 BN_clear_free(challenge);
321
322 /* Wait for response from the server. */
1e608e42 323 type = packet_read();
3c0ef626 324 if (type == SSH_SMSG_SUCCESS) {
325 debug("RSA authentication accepted by server.");
326 return 1;
327 }
328 if (type != SSH_SMSG_FAILURE)
329 packet_disconnect("Protocol error waiting RSA auth response: %d", type);
330 debug("RSA authentication refused.");
331 return 0;
332}
333
334/*
335 * Tries to authenticate the user using combined rhosts or /etc/hosts.equiv
336 * authentication and RSA host authentication.
337 */
338static int
339try_rhosts_rsa_authentication(const char *local_user, Key * host_key)
340{
341 int type;
342 BIGNUM *challenge;
3c0ef626 343
344 debug("Trying rhosts or /etc/hosts.equiv with RSA host authentication.");
345
346 /* Tell the server that we are willing to authenticate using this key. */
347 packet_start(SSH_CMSG_AUTH_RHOSTS_RSA);
348 packet_put_cstring(local_user);
349 packet_put_int(BN_num_bits(host_key->rsa->n));
350 packet_put_bignum(host_key->rsa->e);
351 packet_put_bignum(host_key->rsa->n);
352 packet_send();
353 packet_write_wait();
354
355 /* Wait for server's response. */
1e608e42 356 type = packet_read();
3c0ef626 357
358 /* The server responds with failure if it doesn't admit our
359 .rhosts authentication or doesn't know our host key. */
360 if (type == SSH_SMSG_FAILURE) {
361 debug("Server refused our rhosts authentication or host key.");
362 return 0;
363 }
364 /* Otherwise, the server should respond with a challenge. */
365 if (type != SSH_SMSG_AUTH_RSA_CHALLENGE)
366 packet_disconnect("Protocol error during RSA authentication: %d", type);
367
368 /* Get the challenge from the packet. */
1e608e42 369 if ((challenge = BN_new()) == NULL)
370 fatal("try_rhosts_rsa_authentication: BN_new failed");
371 packet_get_bignum(challenge);
372 packet_check_eom();
3c0ef626 373
374 debug("Received RSA challenge for host key from server.");
375
376 /* Compute a response to the challenge. */
377 respond_to_rsa_challenge(challenge, host_key->rsa);
378
379 /* We no longer need the challenge. */
380 BN_clear_free(challenge);
381
382 /* Wait for response from the server. */
1e608e42 383 type = packet_read();
3c0ef626 384 if (type == SSH_SMSG_SUCCESS) {
385 debug("Rhosts or /etc/hosts.equiv with RSA host authentication accepted by server.");
386 return 1;
387 }
388 if (type != SSH_SMSG_FAILURE)
389 packet_disconnect("Protocol error waiting RSA auth response: %d", type);
390 debug("Rhosts or /etc/hosts.equiv with RSA host authentication refused.");
391 return 0;
392}
393
394#ifdef KRB4
395static int
396try_krb4_authentication(void)
397{
398 KTEXT_ST auth; /* Kerberos data */
399 char *reply;
400 char inst[INST_SZ];
401 char *realm;
402 CREDENTIALS cred;
1e608e42 403 int r, type;
3c0ef626 404 socklen_t slen;
405 Key_schedule schedule;
406 u_long checksum, cksum;
407 MSG_DAT msg_data;
408 struct sockaddr_in local, foreign;
409 struct stat st;
410
411 /* Don't do anything if we don't have any tickets. */
412 if (stat(tkt_string(), &st) < 0)
413 return 0;
1e608e42 414
3c0ef626 415 strlcpy(inst, (char *)krb_get_phost(get_canonical_hostname(1)),
416 INST_SZ);
1e608e42 417
3c0ef626 418 realm = (char *)krb_realmofhost(get_canonical_hostname(1));
419 if (!realm) {
420 debug("Kerberos v4: no realm for %s", get_canonical_hostname(1));
421 return 0;
422 }
423 /* This can really be anything. */
424 checksum = (u_long)getpid();
1e608e42 425
3c0ef626 426 r = krb_mk_req(&auth, KRB4_SERVICE_NAME, inst, realm, checksum);
427 if (r != KSUCCESS) {
428 debug("Kerberos v4 krb_mk_req failed: %s", krb_err_txt[r]);
429 return 0;
430 }
431 /* Get session key to decrypt the server's reply with. */
432 r = krb_get_cred(KRB4_SERVICE_NAME, inst, realm, &cred);
433 if (r != KSUCCESS) {
434 debug("get_cred failed: %s", krb_err_txt[r]);
435 return 0;
436 }
437 des_key_sched((des_cblock *) cred.session, schedule);
1e608e42 438
3c0ef626 439 /* Send authentication info to server. */
440 packet_start(SSH_CMSG_AUTH_KERBEROS);
441 packet_put_string((char *) auth.dat, auth.length);
442 packet_send();
443 packet_write_wait();
1e608e42 444
3c0ef626 445 /* Zero the buffer. */
446 (void) memset(auth.dat, 0, MAX_KTXT_LEN);
1e608e42 447
3c0ef626 448 slen = sizeof(local);
449 memset(&local, 0, sizeof(local));
450 if (getsockname(packet_get_connection_in(),
451 (struct sockaddr *)&local, &slen) < 0)
452 debug("getsockname failed: %s", strerror(errno));
1e608e42 453
3c0ef626 454 slen = sizeof(foreign);
455 memset(&foreign, 0, sizeof(foreign));
456 if (getpeername(packet_get_connection_in(),
457 (struct sockaddr *)&foreign, &slen) < 0) {
458 debug("getpeername failed: %s", strerror(errno));
459 fatal_cleanup();
460 }
461 /* Get server reply. */
1e608e42 462 type = packet_read();
3c0ef626 463 switch (type) {
464 case SSH_SMSG_FAILURE:
465 /* Should really be SSH_SMSG_AUTH_KERBEROS_FAILURE */
466 debug("Kerberos v4 authentication failed.");
467 return 0;
468 break;
1e608e42 469
3c0ef626 470 case SSH_SMSG_AUTH_KERBEROS_RESPONSE:
471 /* SSH_SMSG_AUTH_KERBEROS_SUCCESS */
472 debug("Kerberos v4 authentication accepted.");
1e608e42 473
3c0ef626 474 /* Get server's response. */
475 reply = packet_get_string((u_int *) &auth.length);
510132b6 476 if (auth.length >= MAX_KTXT_LEN)
477 fatal("Kerberos v4: Malformed response from server");
3c0ef626 478 memcpy(auth.dat, reply, auth.length);
479 xfree(reply);
1e608e42 480
481 packet_check_eom();
482
3c0ef626 483 /*
484 * If his response isn't properly encrypted with the session
485 * key, and the decrypted checksum fails to match, he's
486 * bogus. Bail out.
487 */
488 r = krb_rd_priv(auth.dat, auth.length, schedule, &cred.session,
489 &foreign, &local, &msg_data);
490 if (r != KSUCCESS) {
491 debug("Kerberos v4 krb_rd_priv failed: %s",
492 krb_err_txt[r]);
493 packet_disconnect("Kerberos v4 challenge failed!");
494 }
495 /* Fetch the (incremented) checksum that we supplied in the request. */
496 memcpy((char *)&cksum, (char *)msg_data.app_data,
497 sizeof(cksum));
498 cksum = ntohl(cksum);
1e608e42 499
3c0ef626 500 /* If it matches, we're golden. */
501 if (cksum == checksum + 1) {
502 debug("Kerberos v4 challenge successful.");
503 return 1;
504 } else
505 packet_disconnect("Kerberos v4 challenge failed!");
506 break;
1e608e42 507
3c0ef626 508 default:
509 packet_disconnect("Protocol error on Kerberos v4 response: %d", type);
510 }
511 return 0;
512}
513
514#endif /* KRB4 */
515
516#ifdef KRB5
517static int
518try_krb5_authentication(krb5_context *context, krb5_auth_context *auth_context)
519{
520 krb5_error_code problem;
521 const char *tkfile;
522 struct stat buf;
523 krb5_ccache ccache = NULL;
524 const char *remotehost;
525 krb5_data ap;
1e608e42 526 int type;
3c0ef626 527 krb5_ap_rep_enc_part *reply = NULL;
528 int ret;
1e608e42 529
3c0ef626 530 memset(&ap, 0, sizeof(ap));
1e608e42 531
3c0ef626 532 problem = krb5_init_context(context);
533 if (problem) {
534 debug("Kerberos v5: krb5_init_context failed");
535 ret = 0;
536 goto out;
537 }
538
63119dd9 539 problem = krb5_auth_con_init(*context, auth_context);
540 if (problem) {
541 debug("Kerberos v5: krb5_auth_con_init failed");
542 ret = 0;
543 goto out;
544 }
545
1e608e42 546#ifndef HEIMDAL
63119dd9 547 problem = krb5_auth_con_setflags(*context, *auth_context,
548 KRB5_AUTH_CONTEXT_RET_TIME);
549 if (problem) {
1e608e42 550 debug("Keberos v5: krb5_auth_con_setflags failed");
63119dd9 551 ret = 0;
552 goto out;
1e608e42 553 }
63119dd9 554#endif
555
3c0ef626 556 tkfile = krb5_cc_default_name(*context);
557 if (strncmp(tkfile, "FILE:", 5) == 0)
558 tkfile += 5;
1e608e42 559
3c0ef626 560 if (stat(tkfile, &buf) == 0 && getuid() != buf.st_uid) {
561 debug("Kerberos v5: could not get default ccache (permission denied).");
562 ret = 0;
563 goto out;
564 }
1e608e42 565
3c0ef626 566 problem = krb5_cc_default(*context, &ccache);
567 if (problem) {
568 debug("Kerberos v5: krb5_cc_default failed: %s",
569 krb5_get_err_text(*context, problem));
570 ret = 0;
571 goto out;
572 }
1e608e42 573
3c0ef626 574 remotehost = get_canonical_hostname(1);
1e608e42 575
3c0ef626 576 problem = krb5_mk_req(*context, auth_context, AP_OPTS_MUTUAL_REQUIRED,
577 "host", remotehost, NULL, ccache, &ap);
578 if (problem) {
579 debug("Kerberos v5: krb5_mk_req failed: %s",
580 krb5_get_err_text(*context, problem));
581 ret = 0;
582 goto out;
583 }
1e608e42 584
3c0ef626 585 packet_start(SSH_CMSG_AUTH_KERBEROS);
586 packet_put_string((char *) ap.data, ap.length);
587 packet_send();
588 packet_write_wait();
1e608e42 589
3c0ef626 590 xfree(ap.data);
591 ap.length = 0;
1e608e42 592
593 type = packet_read();
3c0ef626 594 switch (type) {
1e608e42 595 case SSH_SMSG_FAILURE:
596 /* Should really be SSH_SMSG_AUTH_KERBEROS_FAILURE */
597 debug("Kerberos v5 authentication failed.");
598 ret = 0;
599 break;
600
3c0ef626 601 case SSH_SMSG_AUTH_KERBEROS_RESPONSE:
1e608e42 602 /* SSH_SMSG_AUTH_KERBEROS_SUCCESS */
603 debug("Kerberos v5 authentication accepted.");
604
605 /* Get server's response. */
606 ap.data = packet_get_string((unsigned int *) &ap.length);
607 packet_check_eom();
608 /* XXX je to dobre? */
609
610 problem = krb5_rd_rep(*context, *auth_context, &ap, &reply);
611 if (problem) {
3c0ef626 612 ret = 0;
613 }
614 ret = 1;
615 break;
1e608e42 616
3c0ef626 617 default:
618 packet_disconnect("Protocol error on Kerberos v5 response: %d",
619 type);
620 ret = 0;
621 break;
1e608e42 622
3c0ef626 623 }
1e608e42 624
3c0ef626 625 out:
626 if (ccache != NULL)
627 krb5_cc_close(*context, ccache);
628 if (reply != NULL)
629 krb5_free_ap_rep_enc_part(*context, reply);
630 if (ap.length > 0)
63119dd9 631#ifdef HEIMDAL
3c0ef626 632 krb5_data_free(&ap);
63119dd9 633#else
1e608e42 634 krb5_free_data_contents(*context, &ap);
635#endif
636
3c0ef626 637 return (ret);
638}
639
640static void
641send_krb5_tgt(krb5_context context, krb5_auth_context auth_context)
642{
1e608e42 643 int fd, type;
3c0ef626 644 krb5_error_code problem;
645 krb5_data outbuf;
646 krb5_ccache ccache = NULL;
647 krb5_creds creds;
63119dd9 648#ifdef HEIMDAL
3c0ef626 649 krb5_kdc_flags flags;
63119dd9 650#else
651 int forwardable;
652#endif
3c0ef626 653 const char *remotehost;
1e608e42 654
3c0ef626 655 memset(&creds, 0, sizeof(creds));
656 memset(&outbuf, 0, sizeof(outbuf));
1e608e42 657
3c0ef626 658 fd = packet_get_connection_in();
1e608e42 659
660#ifdef HEIMDAL
3c0ef626 661 problem = krb5_auth_con_setaddrs_from_fd(context, auth_context, &fd);
63119dd9 662#else
1e608e42 663 problem = krb5_auth_con_genaddrs(context, auth_context, fd,
63119dd9 664 KRB5_AUTH_CONTEXT_GENERATE_REMOTE_FULL_ADDR |
665 KRB5_AUTH_CONTEXT_GENERATE_LOCAL_FULL_ADDR);
63119dd9 666#endif
1e608e42 667 if (problem)
668 goto out;
669
3c0ef626 670 problem = krb5_cc_default(context, &ccache);
671 if (problem)
672 goto out;
1e608e42 673
3c0ef626 674 problem = krb5_cc_get_principal(context, ccache, &creds.client);
675 if (problem)
676 goto out;
1e608e42 677
678 remotehost = get_canonical_hostname(1);
3c0ef626 679
63119dd9 680#ifdef HEIMDAL
3c0ef626 681 problem = krb5_build_principal(context, &creds.server,
682 strlen(creds.client->realm), creds.client->realm,
683 "krbtgt", creds.client->realm, NULL);
63119dd9 684#else
685 problem = krb5_build_principal(context, &creds.server,
686 creds.client->realm.length, creds.client->realm.data,
1e608e42 687 "host", remotehost, NULL);
63119dd9 688#endif
3c0ef626 689 if (problem)
690 goto out;
1e608e42 691
3c0ef626 692 creds.times.endtime = 0;
1e608e42 693
694#ifdef HEIMDAL
3c0ef626 695 flags.i = 0;
696 flags.b.forwarded = 1;
697 flags.b.forwardable = krb5_config_get_bool(context, NULL,
698 "libdefaults", "forwardable", NULL);
3c0ef626 699 problem = krb5_get_forwarded_creds(context, auth_context,
700 ccache, flags.i, remotehost, &creds, &outbuf);
63119dd9 701#else
702 forwardable = 1;
1e608e42 703 problem = krb5_fwd_tgt_creds(context, auth_context, remotehost,
704 creds.client, creds.server, ccache, forwardable, &outbuf);
705#endif
63119dd9 706
1e608e42 707 if (problem)
708 goto out;
63119dd9 709
3c0ef626 710 packet_start(SSH_CMSG_HAVE_KERBEROS_TGT);
711 packet_put_string((char *)outbuf.data, outbuf.length);
712 packet_send();
713 packet_write_wait();
1e608e42 714
715 type = packet_read();
716
3c0ef626 717 if (type == SSH_SMSG_SUCCESS) {
718 char *pname;
1e608e42 719
3c0ef626 720 krb5_unparse_name(context, creds.client, &pname);
721 debug("Kerberos v5 TGT forwarded (%s).", pname);
722 xfree(pname);
723 } else
724 debug("Kerberos v5 TGT forwarding failed.");
1e608e42 725
3c0ef626 726 return;
1e608e42 727
3c0ef626 728 out:
729 if (problem)
730 debug("Kerberos v5 TGT forwarding failed: %s",
731 krb5_get_err_text(context, problem));
732 if (creds.client)
733 krb5_free_principal(context, creds.client);
734 if (creds.server)
735 krb5_free_principal(context, creds.server);
736 if (ccache)
737 krb5_cc_close(context, ccache);
738 if (outbuf.data)
739 xfree(outbuf.data);
740}
741#endif /* KRB5 */
742
743#ifdef AFS
744static void
745send_krb4_tgt(void)
746{
747 CREDENTIALS *creds;
748 struct stat st;
749 char buffer[4096], pname[ANAME_SZ], pinst[INST_SZ], prealm[REALM_SZ];
1e608e42 750 int problem, type;
751
3c0ef626 752 /* Don't do anything if we don't have any tickets. */
753 if (stat(tkt_string(), &st) < 0)
754 return;
1e608e42 755
3c0ef626 756 creds = xmalloc(sizeof(*creds));
1e608e42 757
3c0ef626 758 problem = krb_get_tf_fullname(TKT_FILE, pname, pinst, prealm);
759 if (problem)
760 goto out;
1e608e42 761
3c0ef626 762 problem = krb_get_cred("krbtgt", prealm, prealm, creds);
763 if (problem)
764 goto out;
1e608e42 765
3c0ef626 766 if (time(0) > krb_life_to_time(creds->issue_date, creds->lifetime)) {
767 problem = RD_AP_EXP;
768 goto out;
769 }
770 creds_to_radix(creds, (u_char *)buffer, sizeof(buffer));
1e608e42 771
3c0ef626 772 packet_start(SSH_CMSG_HAVE_KERBEROS_TGT);
773 packet_put_cstring(buffer);
774 packet_send();
775 packet_write_wait();
1e608e42 776
777 type = packet_read();
778
3c0ef626 779 if (type == SSH_SMSG_SUCCESS)
780 debug("Kerberos v4 TGT forwarded (%s%s%s@%s).",
781 creds->pname, creds->pinst[0] ? "." : "",
782 creds->pinst, creds->realm);
783 else
784 debug("Kerberos v4 TGT rejected.");
1e608e42 785
3c0ef626 786 xfree(creds);
787 return;
1e608e42 788
3c0ef626 789 out:
790 debug("Kerberos v4 TGT passing failed: %s", krb_err_txt[problem]);
791 xfree(creds);
792}
793
794static void
795send_afs_tokens(void)
796{
797 CREDENTIALS creds;
798 struct ViceIoctl parms;
799 struct ClearToken ct;
800 int i, type, len;
801 char buf[2048], *p, *server_cell;
802 char buffer[8192];
1e608e42 803
3c0ef626 804 /* Move over ktc_GetToken, here's something leaner. */
805 for (i = 0; i < 100; i++) { /* just in case */
806 parms.in = (char *) &i;
807 parms.in_size = sizeof(i);
808 parms.out = buf;
809 parms.out_size = sizeof(buf);
810 if (k_pioctl(0, VIOCGETTOK, &parms, 0) != 0)
811 break;
812 p = buf;
1e608e42 813
3c0ef626 814 /* Get secret token. */
815 memcpy(&creds.ticket_st.length, p, sizeof(u_int));
816 if (creds.ticket_st.length > MAX_KTXT_LEN)
817 break;
818 p += sizeof(u_int);
819 memcpy(creds.ticket_st.dat, p, creds.ticket_st.length);
820 p += creds.ticket_st.length;
1e608e42 821
3c0ef626 822 /* Get clear token. */
823 memcpy(&len, p, sizeof(len));
824 if (len != sizeof(struct ClearToken))
825 break;
826 p += sizeof(len);
827 memcpy(&ct, p, len);
828 p += len;
829 p += sizeof(len); /* primary flag */
830 server_cell = p;
1e608e42 831
3c0ef626 832 /* Flesh out our credentials. */
833 strlcpy(creds.service, "afs", sizeof(creds.service));
834 creds.instance[0] = '\0';
835 strlcpy(creds.realm, server_cell, REALM_SZ);
836 memcpy(creds.session, ct.HandShakeKey, DES_KEY_SZ);
837 creds.issue_date = ct.BeginTimestamp;
838 creds.lifetime = krb_time_to_life(creds.issue_date,
839 ct.EndTimestamp);
840 creds.kvno = ct.AuthHandle;
841 snprintf(creds.pname, sizeof(creds.pname), "AFS ID %d", ct.ViceId);
842 creds.pinst[0] = '\0';
1e608e42 843
3c0ef626 844 /* Encode token, ship it off. */
845 if (creds_to_radix(&creds, (u_char *)buffer,
846 sizeof(buffer)) <= 0)
847 break;
848 packet_start(SSH_CMSG_HAVE_AFS_TOKEN);
849 packet_put_cstring(buffer);
850 packet_send();
851 packet_write_wait();
852
853 /* Roger, Roger. Clearance, Clarence. What's your vector,
854 Victor? */
1e608e42 855 type = packet_read();
856
3c0ef626 857 if (type == SSH_SMSG_FAILURE)
858 debug("AFS token for cell %s rejected.", server_cell);
859 else if (type != SSH_SMSG_SUCCESS)
860 packet_disconnect("Protocol error on AFS token response: %d", type);
861 }
862}
863
864#endif /* AFS */
865
866/*
867 * Tries to authenticate with any string-based challenge/response system.
868 * Note that the client code is not tied to s/key or TIS.
869 */
870static int
871try_challenge_response_authentication(void)
872{
873 int type, i;
3c0ef626 874 u_int clen;
875 char prompt[1024];
876 char *challenge, *response;
877
878 debug("Doing challenge response authentication.");
879
880 for (i = 0; i < options.number_of_password_prompts; i++) {
881 /* request a challenge */
882 packet_start(SSH_CMSG_AUTH_TIS);
883 packet_send();
884 packet_write_wait();
885
1e608e42 886 type = packet_read();
3c0ef626 887 if (type != SSH_SMSG_FAILURE &&
888 type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
889 packet_disconnect("Protocol error: got %d in response "
890 "to SSH_CMSG_AUTH_TIS", type);
891 }
892 if (type != SSH_SMSG_AUTH_TIS_CHALLENGE) {
893 debug("No challenge.");
894 return 0;
895 }
896 challenge = packet_get_string(&clen);
1e608e42 897 packet_check_eom();
3c0ef626 898 snprintf(prompt, sizeof prompt, "%s%s", challenge,
1e608e42 899 strchr(challenge, '\n') ? "" : "\nResponse: ");
3c0ef626 900 xfree(challenge);
901 if (i != 0)
902 error("Permission denied, please try again.");
903 if (options.cipher == SSH_CIPHER_NONE)
904 log("WARNING: Encryption is disabled! "
510132b6 905 "Response will be transmitted in clear text.");
3c0ef626 906 response = read_passphrase(prompt, 0);
907 if (strcmp(response, "") == 0) {
908 xfree(response);
909 break;
910 }
911 packet_start(SSH_CMSG_AUTH_TIS_RESPONSE);
912 ssh_put_password(response);
913 memset(response, 0, strlen(response));
914 xfree(response);
915 packet_send();
916 packet_write_wait();
1e608e42 917 type = packet_read();
3c0ef626 918 if (type == SSH_SMSG_SUCCESS)
919 return 1;
920 if (type != SSH_SMSG_FAILURE)
921 packet_disconnect("Protocol error: got %d in response "
922 "to SSH_CMSG_AUTH_TIS_RESPONSE", type);
923 }
924 /* failure */
925 return 0;
926}
927
928/*
929 * Tries to authenticate with plain passwd authentication.
930 */
931static int
932try_password_authentication(char *prompt)
933{
1e608e42 934 int type, i;
3c0ef626 935 char *password;
936
937 debug("Doing password authentication.");
938 if (options.cipher == SSH_CIPHER_NONE)
939 log("WARNING: Encryption is disabled! Password will be transmitted in clear text.");
940 for (i = 0; i < options.number_of_password_prompts; i++) {
941 if (i != 0)
942 error("Permission denied, please try again.");
943 password = read_passphrase(prompt, 0);
944 packet_start(SSH_CMSG_AUTH_PASSWORD);
945 ssh_put_password(password);
946 memset(password, 0, strlen(password));
947 xfree(password);
948 packet_send();
949 packet_write_wait();
950
1e608e42 951 type = packet_read();
3c0ef626 952 if (type == SSH_SMSG_SUCCESS)
953 return 1;
954 if (type != SSH_SMSG_FAILURE)
955 packet_disconnect("Protocol error: got %d in response to passwd auth", type);
956 }
957 /* failure */
958 return 0;
959}
960
0b582e46 961#ifdef GSSAPI
0b582e46 962#ifdef GSI
23987cb8 963static gss_OID_desc gsioid={9, "\x2B\x06\x01\x04\x01\x9B\x50\x01\x01"};
b818edc8 964char * get_gsi_name()
0b582e46 965{
b818edc8 966 gss_name_t pname = GSS_C_NO_NAME;
967 gss_buffer_desc tmpname;
968 gss_buffer_t tmpnamed = &tmpname;
23987cb8 969 char *retname=NULL;
b7e87281 970 gss_OID_set oidset;
b818edc8 971 gss_cred_id_t gss_cred = GSS_C_NO_CREDENTIAL;
23987cb8 972 Gssctxt *ctx = NULL;
b818edc8 973
23987cb8 974 ssh_gssapi_build_ctx(&ctx);
975
976 gss_create_empty_oid_set(&ctx->minor,&oidset);
977 gss_add_oid_set_member(&ctx->minor,&gsioid,&oidset);
978 ssh_gssapi_set_oid(ctx,&gsioid);
979 ctx->major = gss_acquire_cred(&ctx->minor,
980 GSS_C_NO_NAME,
981 GSS_C_INDEFINITE,
982 oidset,
983 GSS_C_INITIATE,
984 &gss_cred,
985 NULL,
986 NULL);
987
988 if (ctx->major != GSS_S_COMPLETE) {
989 goto cleanup;
0b582e46 990 }
991
0b582e46 992 debug("calling gss_inquire_cred");
23987cb8 993 ctx->major = gss_inquire_cred(&ctx->minor,
994 gss_cred,
995 &pname,
996 NULL,
997 NULL,
998 NULL);
999 if (ctx->major != GSS_S_COMPLETE) {
1000 goto cleanup;
0b582e46 1001 }
1002
23987cb8 1003 ctx->major = gss_display_name(&ctx->minor,
1004 pname,
1005 tmpnamed,
1006 NULL);
1007 if (ctx->major != GSS_S_COMPLETE) {
1008 goto cleanup;
0b582e46 1009 }
9d36d8cb 1010 debug("gss_display_name finsished");
23987cb8 1011 retname = xmalloc(tmpname.length + 1);
0b582e46 1012 memcpy(retname, tmpname.value, tmpname.length);
1013 retname[tmpname.length] = '\0';
1014
23987cb8 1015 gss_release_name(&ctx->minor, &pname);
1016 gss_release_buffer(&ctx->minor, tmpnamed);
0b582e46 1017
23987cb8 1018 cleanup:
1019 if (!retname) {
1020 debug("Failed to set GSI username from credentials");
1021 ssh_gssapi_error(ctx);
1022 }
1023 if (ctx) ssh_gssapi_delete_ctx(&ctx);
0b582e46 1024 return retname;
1025}
1026#endif /* GSI */
1027
1028int try_gssapi_authentication(char *host, Options *options)
1029{
1030 char *service_name = NULL;
1031 gss_buffer_desc name_tok;
1032 gss_buffer_desc send_tok;
1033 gss_buffer_desc recv_tok;
1034 gss_buffer_desc *token_ptr;
1035 gss_name_t target_name = NULL;
1036 gss_ctx_id_t gss_context;
1037 gss_OID_desc mech_oid;
1038 gss_OID name_type;
b7e87281 1039 gss_OID_set gss_mechs, my_mechs;
1040 int my_mech_num, i, present;
0b582e46 1041 int ret_stat = 0; /* 1 == success */
1042 OM_uint32 req_flags = 0;
1043 OM_uint32 ret_flags;
1044 int type;
4dd35ca9 1045 char *xhost;
007914b3 1046 unsigned int slen;
b7e87281 1047 Gssctxt *ctx = NULL;
0b582e46 1048
23987cb8 1049 ssh_gssapi_build_ctx(&ctx);
1050
1df48666 1051 xhost = xstrdup(get_canonical_hostname(1));
1052 resolve_localhost(&xhost);
0b582e46 1053
1054 /*
1055 * Default flags
1056 */
1057 req_flags |= GSS_C_REPLAY_FLAG;
1058
1059 /* Do mutual authentication */
1060 req_flags |= GSS_C_MUTUAL_FLAG;
1061
4dd35ca9 1062 service_name = (char *) xmalloc(strlen("host") +
1063 strlen(xhost) +
1064 2 /* 1 for '@', 1 for NUL */);
0b582e46 1065
4dd35ca9 1066 sprintf(service_name, "host@%s", xhost);
0b582e46 1067
4dd35ca9 1068 xfree(xhost);
1069 xhost = NULL;
0b582e46 1070
1071 name_type = GSS_C_NT_HOSTBASED_SERVICE;
1072
1073 debug("Service name is %s", service_name);
1074
1075 /* Forward credentials? */
d0fc8d74 1076 if(options->gss_deleg_creds) {
b7e87281 1077 debug("Delegating GSSAPI credentials");
0b582e46 1078 req_flags |= GSS_C_DELEG_FLAG;
1079 }
0b582e46 1080
c728f45a 1081 debug("req_flags = %u", (unsigned int)req_flags);
0b582e46 1082
1083 name_tok.value = service_name;
1084 name_tok.length = strlen(service_name) + 1;
23987cb8 1085 ctx->major = gss_import_name(&ctx->minor, &name_tok,
1086 name_type, &target_name);
0b582e46 1087
1088 free(service_name);
1089 service_name = NULL;
1090
23987cb8 1091 if (ctx->major != GSS_S_COMPLETE) {
1092 ssh_gssapi_error(ctx);
0b582e46 1093 goto cleanup;
1094 }
1095
23987cb8 1096 ctx->major = gss_indicate_mechs(&ctx->minor, &gss_mechs);
0b582e46 1097
23987cb8 1098 if (ctx->major != GSS_S_COMPLETE) {
1099 ssh_gssapi_error(ctx);
0b582e46 1100 goto cleanup;
1101 }
1102
b7e87281 1103 /* The GSSAPI supports the mechs in gss_mechs, but which ones do
1104 we have credentials for? We only get one try, so we don't want
1105 to propose a mechanism we know is going to fail. */
23987cb8 1106 ctx->major = gss_create_empty_oid_set(&ctx->minor, &my_mechs);
1107 for (i=0; i<gss_mechs->count; i++) {
1108 if (ssh_gssapi_check_mechanism(&(gss_mechs->elements[i]), host)) {
1109 ctx->major = gss_add_oid_set_member(&ctx->minor,
1110 &(gss_mechs->elements[i]),
1111 &my_mechs);
b7e87281 1112 }
1113 }
1114
487d7053 1115 if (my_mechs->count == 0) {
1116 debug("No GSSAPI mechanisms.");
1117 goto cleanup;
1118 }
1119
0b582e46 1120 /*
1121 * Send over a packet to the daemon, letting it know we're doing
1122 * GSSAPI and our mech_oid(s).
1123 */
b7e87281 1124 debug("Sending mech oid(s) to server");
0b582e46 1125 packet_start(SSH_CMSG_AUTH_GSSAPI);
1126 packet_put_int(my_mechs->count); /* Number of mechs we're sending */
b7e87281 1127#ifdef GSI
1128 /* Send GSI before Kerberos, because if GSI fails, we can always fall
1129 back and try regular Kerberos authentication with our Kerberos cred. */
23987cb8 1130 ctx->major = gss_test_oid_set_member(&ctx->minor, &gsioid,
1131 my_mechs, &present);
b7e87281 1132 if (present) {
23987cb8 1133 packet_put_string(gsioid.elements,gsioid.length);
b7e87281 1134 }
1135#endif
1136 for (my_mech_num = 0; my_mech_num < my_mechs->count; my_mech_num++) {
1137#ifdef GSI
1138 /* Skip GSI. We already sent it above. */
1139 if ((my_mechs->elements[my_mech_num].length ==
23987cb8 1140 gsioid.length) &&
b7e87281 1141 memcmp(my_mechs->elements[my_mech_num].elements,
23987cb8 1142 gsioid.elements,
b7e87281 1143 my_mechs->elements[my_mech_num].length) == 0) {
1144 continue;
1145 }
1146#endif
0b582e46 1147 packet_put_string(my_mechs->elements[my_mech_num].elements,
1148 my_mechs->elements[my_mech_num].length);
b7e87281 1149 }
0b582e46 1150 packet_send();
1151 packet_write_wait();
1152
1153 /*
1154 * Get reply from the daemon to see if our mech was acceptable
1155 */
1e608e42 1156 type = packet_read();
0b582e46 1157
1158 switch (type) {
1159 case SSH_SMSG_AUTH_GSSAPI_RESPONSE:
1160 debug("Server accepted mechanism");
1161 /* Successful negotiation */
1162 break;
1163
1164 case SSH_MSG_AUTH_GSSAPI_ABORT:
487d7053 1165 case SSH_SMSG_FAILURE:
0b582e46 1166 debug("Unable to negotiate GSSAPI mechanism type with server");
1167 packet_get_all();
1168 goto cleanup;
1169
1170 default:
1171 packet_disconnect("Protocol error during GSSAPI authentication:"
1172 " packet type %d received",
1173 type);
1174 /* Does not return */
1175 }
1176
1177 /* Read the mechanism the server returned */
007914b3 1178 mech_oid.elements = packet_get_string(&slen);
1179 mech_oid.length = slen; /* safe typecast */
0b582e46 1180 packet_get_all();
1181
23987cb8 1182 ssh_gssapi_set_oid(ctx, &mech_oid);
1183
0b582e46 1184 /*
1185 * Perform the context-establishement loop.
1186 *
1187 * On each pass through the loop, token_ptr points to the token
1188 * to send to the server (or GSS_C_NO_BUFFER on the first pass).
1189 * Every generated token is stored in send_tok which is then
1190 * transmitted to the server; every received token is stored in
1191 * recv_tok, which token_ptr is then set to, to be processed by
1192 * the next call to gss_init_sec_context.
1193 *
1194 * GSS-API guarantees that send_tok's length will be non-zero
1195 * if and only if the server is expecting another token from us,
1196 * and that gss_init_sec_context returns GSS_S_CONTINUE_NEEDED if
1197 * and only if the server has another token to send us.
1198 */
1199
1200 token_ptr = GSS_C_NO_BUFFER;
1201 gss_context = GSS_C_NO_CONTEXT;
1202
1203 do {
23987cb8 1204 ctx->major =
1205 gss_init_sec_context(&ctx->minor,
b818edc8 1206 GSS_C_NO_CREDENTIAL,
0b582e46 1207 &gss_context,
1208 target_name,
23987cb8 1209 ctx->oid,
0b582e46 1210 req_flags,
1211 0,
1212 NULL, /* no channel bindings */
1213 token_ptr,
1214 NULL, /* ignore mech type */
1215 &send_tok,
1216 &ret_flags,
1217 NULL); /* ignore time_rec */
1218
1219 if (token_ptr != GSS_C_NO_BUFFER)
23987cb8 1220 (void) gss_release_buffer(&ctx->minor, &recv_tok);
0b582e46 1221
23987cb8 1222 if (ctx->major != GSS_S_COMPLETE && ctx->major != GSS_S_CONTINUE_NEEDED) {
1223 ssh_gssapi_error(ctx);
0b582e46 1224
1225 /* Send an abort message */
1226 packet_start(SSH_MSG_AUTH_GSSAPI_ABORT);
1227 packet_send();
1228 packet_write_wait();
1229
1230 goto cleanup;
1231 }
1232
1233 if (send_tok.length != 0) {
1234 debug("Sending authenticaton token...");
1235 packet_start(SSH_MSG_AUTH_GSSAPI_TOKEN);
1236 packet_put_string((char *) send_tok.value, send_tok.length);
1237 packet_send();
1238 packet_write_wait();
1239
23987cb8 1240 (void) gss_release_buffer(&ctx->minor, &send_tok);
0b582e46 1241 }
1242
23987cb8 1243 if (ctx->major == GSS_S_CONTINUE_NEEDED) {
0b582e46 1244
1245 debug("Continue needed. Reading response...");
1246
1e608e42 1247 type = packet_read();
0b582e46 1248
1249 switch(type) {
1250
1251 case SSH_MSG_AUTH_GSSAPI_TOKEN:
1252 /* This is what we expected */
1253 break;
1254
1255 case SSH_MSG_AUTH_GSSAPI_ABORT:
487d7053 1256 case SSH_SMSG_FAILURE:
0b582e46 1257 debug("Server aborted GSSAPI authentication.");
1258 packet_get_all();
1259 goto cleanup;
1260
1261 default:
1262 packet_disconnect("Protocol error during GSSAPI authentication:"
1263 " packet type %d received",
1264 type);
1265 /* Does not return */
1266 }
1267
007914b3 1268 recv_tok.value = packet_get_string(&slen);
1269 recv_tok.length=slen; /* safe typecast */
0b582e46 1270 packet_get_all();
1271 token_ptr = &recv_tok;
1272 }
23987cb8 1273 } while (ctx->major == GSS_S_CONTINUE_NEEDED);
0b582e46 1274
1275 /* Success */
1276 ret_stat = 1;
1277
b7e87281 1278 debug("GSSAPI authentication successful");
0b582e46 1279
1280 /*
1281 * Read hash of host and server keys and make sure it
1282 * matches what we got earlier.
1283 */
1284 debug("Reading hash of server and host keys...");
1e608e42 1285 type = packet_read();
0b582e46 1286
487d7053 1287 if (type == SSH_MSG_AUTH_GSSAPI_ABORT || type == SSH_SMSG_FAILURE) {
0b582e46 1288 debug("Server aborted GSSAPI authentication.");
1289 packet_get_all();
1290 ret_stat = 0;
1291 goto cleanup;
1292
1293 } else if (type == SSH_SMSG_AUTH_GSSAPI_HASH) {
1294 gss_buffer_desc wrapped_buf;
1295 gss_buffer_desc unwrapped_buf;
1296 int conf_state;
1297 gss_qop_t qop_state;
1298
1299
007914b3 1300 wrapped_buf.value = packet_get_string(&slen);
1301 wrapped_buf.length=slen; /* safe typecast */
0b582e46 1302 packet_get_all();
1303
23987cb8 1304 ctx->major = gss_unwrap(&ctx->minor,
0b582e46 1305 gss_context,
1306 &wrapped_buf,
1307 &unwrapped_buf,
1308 &conf_state,
1309 &qop_state);
1310
23987cb8 1311 if (ctx->major != GSS_S_COMPLETE) {
1312 ssh_gssapi_error(ctx);
0b582e46 1313 packet_disconnect("Verification of SSHD keys through GSSAPI-secured channel failed: "
1314 "Unwrapping of hash failed.");
1315 }
1316
1317 if (unwrapped_buf.length != sizeof(ssh_key_digest)) {
1318 packet_disconnect("Verification of SSHD keys through GSSAPI-secured channel failed: "
1319 "Size of key hashes do not match (%d != %d)!",
007914b3 1320 (int)unwrapped_buf.length,
1321 (int)sizeof(ssh_key_digest));
0b582e46 1322 }
1323
1324 if (memcmp(ssh_key_digest, unwrapped_buf.value, sizeof(ssh_key_digest)) != 0) {
1325 packet_disconnect("Verification of SSHD keys through GSSAPI-secured channel failed: "
1326 "Hashes don't match!");
1327 }
1328
1329 debug("Verified SSHD keys through GSSAPI-secured channel.");
1330
23987cb8 1331 gss_release_buffer(&ctx->minor, &unwrapped_buf);
0b582e46 1332
1333 } else {
1334 packet_disconnect("Protocol error during GSSAPI authentication:"
1335 "packet type %d received", type);
1336 /* Does not return */
1337 }
1338
1339
1340 cleanup:
1341 if (target_name != NULL)
23987cb8 1342 (void) gss_release_name(&ctx->minor, &target_name);
1343 if (ctx)
1344 ssh_gssapi_delete_ctx(&ctx);
0b582e46 1345
1346 return ret_stat;
1347}
1348
1349#endif /* GSSAPI */
1350
0b582e46 1351
3c0ef626 1352/*
1353 * SSH1 key exchange
1354 */
1355void
1356ssh_kex(char *host, struct sockaddr *hostaddr)
1357{
1358 int i;
1359 BIGNUM *key;
1e608e42 1360 Key *host_key, *server_key;
3c0ef626 1361 int bits, rbits;
1362 int ssh_cipher_default = SSH_CIPHER_3DES;
1363 u_char session_key[SSH_SESSION_KEY_LENGTH];
1364 u_char cookie[8];
1365 u_int supported_ciphers;
1366 u_int server_flags, client_flags;
3c0ef626 1367 u_int32_t rand = 0;
1368
1369 debug("Waiting for server public key.");
1370
1371 /* Wait for a public key packet from the server. */
1e608e42 1372 packet_read_expect(SSH_SMSG_PUBLIC_KEY);
3c0ef626 1373
1374 /* Get cookie from the packet. */
1375 for (i = 0; i < 8; i++)
1376 cookie[i] = packet_get_char();
1377
1378 /* Get the public key. */
1e608e42 1379 server_key = key_new(KEY_RSA1);
1380 bits = packet_get_int();
1381 packet_get_bignum(server_key->rsa->e);
1382 packet_get_bignum(server_key->rsa->n);
1383
1384 rbits = BN_num_bits(server_key->rsa->n);
3c0ef626 1385 if (bits != rbits) {
1386 log("Warning: Server lies about size of server public key: "
1387 "actual size is %d bits vs. announced %d.", rbits, bits);
1388 log("Warning: This may be due to an old implementation of ssh.");
1389 }
1390 /* Get the host key. */
1e608e42 1391 host_key = key_new(KEY_RSA1);
1392 bits = packet_get_int();
1393 packet_get_bignum(host_key->rsa->e);
1394 packet_get_bignum(host_key->rsa->n);
1395
1396 rbits = BN_num_bits(host_key->rsa->n);
3c0ef626 1397 if (bits != rbits) {
1398 log("Warning: Server lies about size of server host key: "
1399 "actual size is %d bits vs. announced %d.", rbits, bits);
1400 log("Warning: This may be due to an old implementation of ssh.");
1401 }
1402
0b582e46 1403#ifdef GSSAPI
1404 {
1405 MD5_CTX md5context;
1406 Buffer buf;
1407 unsigned char *data;
1408 unsigned int data_len;
1409
1410 /*
1411 * Hash the server and host keys. Later we will check them against
1412 * a hash sent over a secure channel to make sure they are legit.
1413 */
1414 debug("Calculating MD5 hash of server and host keys...");
1415
1416 /* Write all the keys to a temporary buffer */
1417 buffer_init(&buf);
1418
1419 /* Server key */
1e608e42 1420 buffer_put_bignum(&buf, server_key->rsa->e);
1421 buffer_put_bignum(&buf, server_key->rsa->n);
0b582e46 1422
1423 /* Host key */
1e608e42 1424 buffer_put_bignum(&buf, host_key->rsa->e);
1425 buffer_put_bignum(&buf, host_key->rsa->n);
0b582e46 1426
1427 /* Get the resulting data */
1428 data = (unsigned char *) buffer_ptr(&buf);
1429 data_len = buffer_len(&buf);
1430
1431 /* And hash it */
1432 MD5_Init(&md5context);
1433 MD5_Update(&md5context, data, data_len);
1434 MD5_Final(ssh_key_digest, &md5context);
1435
1436 /* Clean up */
1437 buffer_clear(&buf);
1438 buffer_free(&buf);
1439 }
1440#endif /* GSSAPI */
0b582e46 1441
3c0ef626 1442 /* Get protocol flags. */
1443 server_flags = packet_get_int();
1444 packet_set_protocol_flags(server_flags);
1445
1446 supported_ciphers = packet_get_int();
1447 supported_authentications = packet_get_int();
1e608e42 1448 packet_check_eom();
3c0ef626 1449
1450 debug("Received server public key (%d bits) and host key (%d bits).",
1e608e42 1451 BN_num_bits(server_key->rsa->n), BN_num_bits(host_key->rsa->n));
1452
1453 if (verify_host_key(host, hostaddr, host_key) == -1)
3c0ef626 1454 fatal("Host key verification failed.");
1455
1456 client_flags = SSH_PROTOFLAG_SCREEN_NUMBER | SSH_PROTOFLAG_HOST_IN_FWD_OPEN;
1457
1e608e42 1458 compute_session_id(session_id, cookie, host_key->rsa->n, server_key->rsa->n);
3c0ef626 1459
1460 /* Generate a session key. */
1461 arc4random_stir();
1462
1463 /*
1464 * Generate an encryption key for the session. The key is a 256 bit
1465 * random number, interpreted as a 32-byte key, with the least
1466 * significant 8 bits being the first byte of the key.
1467 */
1468 for (i = 0; i < 32; i++) {
1469 if (i % 4 == 0)
1470 rand = arc4random();
1471 session_key[i] = rand & 0xff;
1472 rand >>= 8;
1473 }
1474
1475 /*
1476 * According to the protocol spec, the first byte of the session key
1477 * is the highest byte of the integer. The session key is xored with
1478 * the first 16 bytes of the session id.
1479 */
1e608e42 1480 if ((key = BN_new()) == NULL)
1481 fatal("respond_to_rsa_challenge: BN_new failed");
3c0ef626 1482 BN_set_word(key, 0);
1483 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
1484 BN_lshift(key, key, 8);
1485 if (i < 16)
1486 BN_add_word(key, session_key[i] ^ session_id[i]);
1487 else
1488 BN_add_word(key, session_key[i]);
1489 }
1490
1491 /*
1492 * Encrypt the integer using the public key and host key of the
1493 * server (key with smaller modulus first).
1494 */
1e608e42 1495 if (BN_cmp(server_key->rsa->n, host_key->rsa->n) < 0) {
3c0ef626 1496 /* Public key has smaller modulus. */
1e608e42 1497 if (BN_num_bits(host_key->rsa->n) <
1498 BN_num_bits(server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1499 fatal("respond_to_rsa_challenge: host_key %d < server_key %d + "
1500 "SSH_KEY_BITS_RESERVED %d",
1501 BN_num_bits(host_key->rsa->n),
1502 BN_num_bits(server_key->rsa->n),
1503 SSH_KEY_BITS_RESERVED);
3c0ef626 1504 }
1e608e42 1505 rsa_public_encrypt(key, key, server_key->rsa);
1506 rsa_public_encrypt(key, key, host_key->rsa);
3c0ef626 1507 } else {
1508 /* Host key has smaller modulus (or they are equal). */
1e608e42 1509 if (BN_num_bits(server_key->rsa->n) <
1510 BN_num_bits(host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1511 fatal("respond_to_rsa_challenge: server_key %d < host_key %d + "
1512 "SSH_KEY_BITS_RESERVED %d",
1513 BN_num_bits(server_key->rsa->n),
1514 BN_num_bits(host_key->rsa->n),
1515 SSH_KEY_BITS_RESERVED);
3c0ef626 1516 }
1e608e42 1517 rsa_public_encrypt(key, key, host_key->rsa);
1518 rsa_public_encrypt(key, key, server_key->rsa);
3c0ef626 1519 }
1520
1521 /* Destroy the public keys since we no longer need them. */
1e608e42 1522 key_free(server_key);
1523 key_free(host_key);
3c0ef626 1524
1525 if (options.cipher == SSH_CIPHER_NOT_SET) {
1526 if (cipher_mask_ssh1(1) & supported_ciphers & (1 << ssh_cipher_default))
1527 options.cipher = ssh_cipher_default;
1528 } else if (options.cipher == SSH_CIPHER_ILLEGAL ||
1529 !(cipher_mask_ssh1(1) & (1 << options.cipher))) {
1530 log("No valid SSH1 cipher, using %.100s instead.",
1531 cipher_name(ssh_cipher_default));
1532 options.cipher = ssh_cipher_default;
1533 }
1534 /* Check that the selected cipher is supported. */
1535 if (!(supported_ciphers & (1 << options.cipher)))
1536 fatal("Selected cipher type %.100s not supported by server.",
1e608e42 1537 cipher_name(options.cipher));
3c0ef626 1538
1539 debug("Encryption type: %.100s", cipher_name(options.cipher));
1540
1541 /* Send the encrypted session key to the server. */
1542 packet_start(SSH_CMSG_SESSION_KEY);
1543 packet_put_char(options.cipher);
1544
1545 /* Send the cookie back to the server. */
1546 for (i = 0; i < 8; i++)
1547 packet_put_char(cookie[i]);
1548
1549 /* Send and destroy the encrypted encryption key integer. */
1550 packet_put_bignum(key);
1551 BN_clear_free(key);
1552
1553 /* Send protocol flags. */
1554 packet_put_int(client_flags);
1555
1556 /* Send the packet now. */
1557 packet_send();
1558 packet_write_wait();
1559
1560 debug("Sent encrypted session key.");
1561
1562 /* Set the encryption key. */
1563 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, options.cipher);
1564
1565 /* We will no longer need the session key here. Destroy any extra copies. */
1566 memset(session_key, 0, sizeof(session_key));
1567
1568 /*
1569 * Expect a success message from the server. Note that this message
1570 * will be received in encrypted form.
1571 */
1e608e42 1572 packet_read_expect(SSH_SMSG_SUCCESS);
3c0ef626 1573
1574 debug("Received encrypted confirmation.");
1575}
1576
1577/*
1578 * Authenticate user
1579 */
1580void
1581ssh_userauth1(const char *local_user, const char *server_user, char *host,
44a053a3 1582 Sensitive *sensitive)
3c0ef626 1583{
0b582e46 1584#ifdef GSSAPI
1585#ifdef GSI
1586 const char *save_server_user = NULL;
1587#endif /* GSI */
1588#endif /* GSSAPI */
0b582e46 1589
3c0ef626 1590#ifdef KRB5
1591 krb5_context context = NULL;
1592 krb5_auth_context auth_context = NULL;
1593#endif
1594 int i, type;
1e608e42 1595
3c0ef626 1596 if (supported_authentications == 0)
1597 fatal("ssh_userauth1: server supports no auth methods");
1598
0b582e46 1599#ifdef GSSAPI
1600#ifdef GSI
1601 /* if no user given, tack on the subject name after the server_user.
1602 * This will allow us to run gridmap early to get real user
1603 * This name will start with /C=
1604 */
1605 if ((supported_authentications & (1 << SSH_AUTH_GSSAPI)) &&
1606 options.gss_authentication) {
0b582e46 1607 char * retname;
1608 char * newname;
1609
1610
1611 save_server_user = server_user;
1612
b7e87281 1613 retname = get_gsi_name();
0b582e46 1614
1615 if (retname) {
1616 debug("passing gssapi name '%s'", retname);
1617 if (server_user) {
1618 newname = (char *) malloc(strlen(retname) + strlen(server_user) + 4);
1619 if (newname) {
1620 strcpy(newname, server_user);
e85707fe 1621 if(options.implicit) {
0b582e46 1622 strcat(newname,":i:");
e85707fe 1623 } else {
0b582e46 1624 strcat(newname,":x:");
e85707fe 1625 }
0b582e46 1626 strcat(newname, retname);
1627 server_user = newname;
1628 free(retname);
1629 }
1630 }
1631 }
b818edc8 1632 debug("server_user %s", server_user);
0b582e46 1633 }
1634#endif /* GSI */
1635#endif /* GSSAPI */
0b582e46 1636
3c0ef626 1637 /* Send the name of the user to log in as on the server. */
1638 packet_start(SSH_CMSG_USER);
1639 packet_put_cstring(server_user);
1640 packet_send();
1641 packet_write_wait();
1642
0b582e46 1643#if defined(GSI)
1644 if(save_server_user)
1645 {
1646 server_user = save_server_user;
1647 }
1648#endif
3c0ef626 1649 /*
1650 * The server should respond with success if no authentication is
1651 * needed (the user has no password). Otherwise the server responds
1652 * with failure.
1653 */
1e608e42 1654 type = packet_read();
3c0ef626 1655
1656 /* check whether the connection was accepted without authentication. */
1657 if (type == SSH_SMSG_SUCCESS)
1658 goto success;
1659 if (type != SSH_SMSG_FAILURE)
1660 packet_disconnect("Protocol error: got %d in response to SSH_CMSG_USER", type);
0b582e46 1661
0b582e46 1662#ifdef GSSAPI
1663 /* Try GSSAPI authentication */
1664 if ((supported_authentications & (1 << SSH_AUTH_GSSAPI)) &&
1665 options.gss_authentication)
1666 {
1df48666 1667 char *canonhost;
487d7053 1668 int gssapi_succeeded;
1aad58f1 1669 debug("Trying GSSAPI authentication...");
1df48666 1670 canonhost = xstrdup(get_canonical_hostname(1));
1671 resolve_localhost(&canonhost);
487d7053 1672 gssapi_succeeded = try_gssapi_authentication(canonhost, &options);
1df48666 1673 xfree(canonhost);
1674 canonhost=NULL;
0b582e46 1675
487d7053 1676 if (gssapi_succeeded) {
1677 type = packet_read();
1678 if (type == SSH_SMSG_SUCCESS)
1679 goto success;
1680 if (type != SSH_SMSG_FAILURE)
1681 packet_disconnect("Protocol error: got %d in response to GSSAPI auth", type);
1682 }
0b582e46 1683
1684 debug("GSSAPI authentication failed");
1685 }
1686#endif /* GSSAPI */
3c0ef626 1687
1688#ifdef KRB5
1689 if ((supported_authentications & (1 << SSH_AUTH_KERBEROS)) &&
1e608e42 1690 options.kerberos_authentication) {
3c0ef626 1691 debug("Trying Kerberos v5 authentication.");
1e608e42 1692
3c0ef626 1693 if (try_krb5_authentication(&context, &auth_context)) {
1e608e42 1694 type = packet_read();
3c0ef626 1695 if (type == SSH_SMSG_SUCCESS)
1696 goto success;
1697 if (type != SSH_SMSG_FAILURE)
1698 packet_disconnect("Protocol error: got %d in response to Kerberos v5 auth", type);
1699 }
1700 }
1701#endif /* KRB5 */
1e608e42 1702
3c0ef626 1703#ifdef KRB4
1704 if ((supported_authentications & (1 << SSH_AUTH_KERBEROS)) &&
1705 options.kerberos_authentication) {
1706 debug("Trying Kerberos v4 authentication.");
1e608e42 1707
3c0ef626 1708 if (try_krb4_authentication()) {
1e608e42 1709 type = packet_read();
3c0ef626 1710 if (type == SSH_SMSG_SUCCESS)
1711 goto success;
1712 if (type != SSH_SMSG_FAILURE)
1713 packet_disconnect("Protocol error: got %d in response to Kerberos v4 auth", type);
1714 }
1715 }
1716#endif /* KRB4 */
1e608e42 1717
3c0ef626 1718 /*
1719 * Use rhosts authentication if running in privileged socket and we
1720 * do not wish to remain anonymous.
1721 */
1722 if ((supported_authentications & (1 << SSH_AUTH_RHOSTS)) &&
1723 options.rhosts_authentication) {
1724 debug("Trying rhosts authentication.");
1725 packet_start(SSH_CMSG_AUTH_RHOSTS);
1726 packet_put_cstring(local_user);
1727 packet_send();
1728 packet_write_wait();
1729
1730 /* The server should respond with success or failure. */
1e608e42 1731 type = packet_read();
3c0ef626 1732 if (type == SSH_SMSG_SUCCESS)
1733 goto success;
1734 if (type != SSH_SMSG_FAILURE)
1735 packet_disconnect("Protocol error: got %d in response to rhosts auth",
1736 type);
1737 }
1738 /*
1739 * Try .rhosts or /etc/hosts.equiv authentication with RSA host
1740 * authentication.
1741 */
1742 if ((supported_authentications & (1 << SSH_AUTH_RHOSTS_RSA)) &&
1743 options.rhosts_rsa_authentication) {
44a053a3 1744 for (i = 0; i < sensitive->nkeys; i++) {
1745 if (sensitive->keys[i] != NULL &&
1746 sensitive->keys[i]->type == KEY_RSA1 &&
1747 try_rhosts_rsa_authentication(local_user,
1748 sensitive->keys[i]))
3c0ef626 1749 goto success;
1750 }
1751 }
1752 /* Try RSA authentication if the server supports it. */
1753 if ((supported_authentications & (1 << SSH_AUTH_RSA)) &&
1754 options.rsa_authentication) {
1755 /*
1756 * Try RSA authentication using the authentication agent. The
1757 * agent is tried first because no passphrase is needed for
1758 * it, whereas identity files may require passphrases.
1759 */
1760 if (try_agent_authentication())
1761 goto success;
1762
1763 /* Try RSA authentication for each identity. */
1764 for (i = 0; i < options.num_identity_files; i++)
1765 if (options.identity_keys[i] != NULL &&
1766 options.identity_keys[i]->type == KEY_RSA1 &&
1767 try_rsa_authentication(i))
1768 goto success;
1769 }
1770 /* Try challenge response authentication if the server supports it. */
1771 if ((supported_authentications & (1 << SSH_AUTH_TIS)) &&
1772 options.challenge_response_authentication && !options.batch_mode) {
1773 if (try_challenge_response_authentication())
1774 goto success;
1775 }
1776 /* Try password authentication if the server supports it. */
1777 if ((supported_authentications & (1 << SSH_AUTH_PASSWORD)) &&
1778 options.password_authentication && !options.batch_mode) {
1779 char prompt[80];
1780
1781 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
1782 server_user, host);
1783 if (try_password_authentication(prompt))
1784 goto success;
1785 }
1786 /* All authentication methods have failed. Exit with an error message. */
1787 fatal("Permission denied.");
1788 /* NOTREACHED */
1789
1790 success:
1791#ifdef KRB5
1792 /* Try Kerberos v5 TGT passing. */
1793 if ((supported_authentications & (1 << SSH_PASS_KERBEROS_TGT)) &&
1794 options.kerberos_tgt_passing && context && auth_context) {
1795 if (options.cipher == SSH_CIPHER_NONE)
1796 log("WARNING: Encryption is disabled! Ticket will be transmitted in the clear!");
1797 send_krb5_tgt(context, auth_context);
1798 }
1799 if (auth_context)
1800 krb5_auth_con_free(context, auth_context);
1801 if (context)
1802 krb5_free_context(context);
1803#endif
1e608e42 1804
3c0ef626 1805#ifdef AFS
1806 /* Try Kerberos v4 TGT passing if the server supports it. */
1807 if ((supported_authentications & (1 << SSH_PASS_KERBEROS_TGT)) &&
1808 options.kerberos_tgt_passing) {
1809 if (options.cipher == SSH_CIPHER_NONE)
1810 log("WARNING: Encryption is disabled! Ticket will be transmitted in the clear!");
1811 send_krb4_tgt();
1812 }
1813 /* Try AFS token passing if the server supports it. */
1814 if ((supported_authentications & (1 << SSH_PASS_AFS_TOKEN)) &&
1815 options.afs_token_passing && k_hasafs()) {
1816 if (options.cipher == SSH_CIPHER_NONE)
1817 log("WARNING: Encryption is disabled! Token will be transmitted in the clear!");
1818 send_afs_tokens();
1819 }
1820#endif /* AFS */
1821
1822 return; /* need statement after label */
1823}
This page took 0.357611 seconds and 5 git commands to generate.