]> andersk Git - gssapi-openssh.git/blob - openssh/sshconnect1.c
resolved conflicts with import of OpenSSH 3.3p1
[gssapi-openssh.git] / openssh / sshconnect1.c
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"
16 RCSID("$OpenBSD: sshconnect1.c,v 1.51 2002/05/23 19:24:30 markus Exp $");
17
18 #include <openssl/bn.h>
19 #include <openssl/md5.h>
20
21 #ifdef KRB4
22 #include <krb.h>
23 #endif
24 #ifdef KRB5
25 #include <krb5.h>
26 #ifndef HEIMDAL
27 #define krb5_get_err_text(context,code) error_message(code)
28 #endif /* !HEIMDAL */
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
54 #ifdef GSSAPI
55 #include "ssh-gss.h"
56 #include "bufaux.h"
57
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  */
62 unsigned char ssh_key_digest[16];
63 #endif /* GSSAPI */
64
65 /* Session id for the current session. */
66 u_char session_id[16];
67 u_int supported_authentications = 0;
68
69 extern Options options;
70 extern char *__progname;
71
72 /*
73  * Checks if the user has an authentication agent, and if so, tries to
74  * authenticate using the agent.
75  */
76 static int
77 try_agent_authentication(void)
78 {
79         int type;
80         char *comment;
81         AuthenticationConnection *auth;
82         u_char response[16];
83         u_int i;
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
92         if ((challenge = BN_new()) == NULL)
93                 fatal("try_agent_authentication: BN_new failed");
94         /* Loop through identities served by the agent. */
95         for (key = ssh_get_first_identity(auth, &comment, 1);
96             key != NULL;
97             key = ssh_get_next_identity(auth, &comment, 1)) {
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. */
110                 type = packet_read();
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
124                 packet_get_bignum(challenge);
125                 packet_check_eom();
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. */
150                 type = packet_read();
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  */
174 static void
175 respond_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  */
219 static int
220 try_rsa_authentication(int idx)
221 {
222         BIGNUM *challenge;
223         Key *public, *private;
224         char buf[300], *passphrase, *comment, *authfile;
225         int i, type, quit;
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. */
240         type = packet_read();
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. */
256         if ((challenge = BN_new()) == NULL)
257                 fatal("try_rsa_authentication: BN_new failed");
258         packet_get_bignum(challenge);
259         packet_check_eom();
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          */
268         if (public->flags && KEY_FLAG_EXT)
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... */
307                 packet_read_expect(SSH_SMSG_FAILURE);
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. */
323         type = packet_read();
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  */
338 static int
339 try_rhosts_rsa_authentication(const char *local_user, Key * host_key)
340 {
341         int type;
342         BIGNUM *challenge;
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. */
356         type = packet_read();
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. */
369         if ((challenge = BN_new()) == NULL)
370                 fatal("try_rhosts_rsa_authentication: BN_new failed");
371         packet_get_bignum(challenge);
372         packet_check_eom();
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. */
383         type = packet_read();
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
395 static int
396 try_krb4_authentication(void)
397 {
398         KTEXT_ST auth;          /* Kerberos data */
399         char *reply;
400         char inst[INST_SZ];
401         char *realm;
402         CREDENTIALS cred;
403         int r, type;
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;
414
415         strlcpy(inst, (char *)krb_get_phost(get_canonical_hostname(1)),
416             INST_SZ);
417
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();
425
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);
438
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();
444
445         /* Zero the buffer. */
446         (void) memset(auth.dat, 0, MAX_KTXT_LEN);
447
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));
453
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. */
462         type = packet_read();
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;
469
470         case SSH_SMSG_AUTH_KERBEROS_RESPONSE:
471                 /* SSH_SMSG_AUTH_KERBEROS_SUCCESS */
472                 debug("Kerberos v4 authentication accepted.");
473
474                 /* Get server's response. */
475                 reply = packet_get_string((u_int *) &auth.length);
476                 if (auth.length >= MAX_KTXT_LEN)
477                         fatal("Kerberos v4: Malformed response from server");
478                 memcpy(auth.dat, reply, auth.length);
479                 xfree(reply);
480
481                 packet_check_eom();
482
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);
499
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;
507
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
517 static int
518 try_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;
526         int type;
527         krb5_ap_rep_enc_part *reply = NULL;
528         int ret;
529
530         memset(&ap, 0, sizeof(ap));
531
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         
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
546 #ifndef HEIMDAL
547         problem = krb5_auth_con_setflags(*context, *auth_context,
548                                          KRB5_AUTH_CONTEXT_RET_TIME);
549         if (problem) {
550                 debug("Keberos v5: krb5_auth_con_setflags failed");
551                 ret = 0;
552                 goto out;
553         }
554 #endif
555
556         tkfile = krb5_cc_default_name(*context);
557         if (strncmp(tkfile, "FILE:", 5) == 0)
558                 tkfile += 5;
559
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         }
565
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         }
573
574         remotehost = get_canonical_hostname(1);
575
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         }
584
585         packet_start(SSH_CMSG_AUTH_KERBEROS);
586         packet_put_string((char *) ap.data, ap.length);
587         packet_send();
588         packet_write_wait();
589
590         xfree(ap.data);
591         ap.length = 0;
592
593         type = packet_read();
594         switch (type) {
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
601         case SSH_SMSG_AUTH_KERBEROS_RESPONSE:
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) {
612                         ret = 0;
613                 }
614                 ret = 1;
615                 break;
616
617         default:
618                 packet_disconnect("Protocol error on Kerberos v5 response: %d",
619                     type);
620                 ret = 0;
621                 break;
622
623         }
624
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)
631 #ifdef HEIMDAL
632                 krb5_data_free(&ap);
633 #else
634                 krb5_free_data_contents(*context, &ap);
635 #endif
636
637         return (ret);
638 }
639
640 static void
641 send_krb5_tgt(krb5_context context, krb5_auth_context auth_context)
642 {
643         int fd, type;
644         krb5_error_code problem;
645         krb5_data outbuf;
646         krb5_ccache ccache = NULL;
647         krb5_creds creds;
648 #ifdef HEIMDAL
649         krb5_kdc_flags flags;
650 #else
651         int forwardable;
652 #endif
653         const char *remotehost;
654
655         memset(&creds, 0, sizeof(creds));
656         memset(&outbuf, 0, sizeof(outbuf));
657
658         fd = packet_get_connection_in();
659
660 #ifdef HEIMDAL
661         problem = krb5_auth_con_setaddrs_from_fd(context, auth_context, &fd);
662 #else
663         problem = krb5_auth_con_genaddrs(context, auth_context, fd,
664                         KRB5_AUTH_CONTEXT_GENERATE_REMOTE_FULL_ADDR |
665                         KRB5_AUTH_CONTEXT_GENERATE_LOCAL_FULL_ADDR);
666 #endif
667         if (problem)
668                 goto out;
669
670         problem = krb5_cc_default(context, &ccache);
671         if (problem)
672                 goto out;
673
674         problem = krb5_cc_get_principal(context, ccache, &creds.client);
675         if (problem)
676                 goto out;
677
678         remotehost = get_canonical_hostname(1);
679         
680 #ifdef HEIMDAL
681         problem = krb5_build_principal(context, &creds.server,
682             strlen(creds.client->realm), creds.client->realm,
683             "krbtgt", creds.client->realm, NULL);
684 #else
685         problem = krb5_build_principal(context, &creds.server,
686             creds.client->realm.length, creds.client->realm.data,
687             "host", remotehost, NULL);
688 #endif
689         if (problem)
690                 goto out;
691
692         creds.times.endtime = 0;
693
694 #ifdef HEIMDAL
695         flags.i = 0;
696         flags.b.forwarded = 1;
697         flags.b.forwardable = krb5_config_get_bool(context,  NULL,
698             "libdefaults", "forwardable", NULL);
699         problem = krb5_get_forwarded_creds(context, auth_context,
700             ccache, flags.i, remotehost, &creds, &outbuf);
701 #else
702         forwardable = 1;
703         problem = krb5_fwd_tgt_creds(context, auth_context, remotehost,
704             creds.client, creds.server, ccache, forwardable, &outbuf);
705 #endif
706
707         if (problem)
708                 goto out;
709
710         packet_start(SSH_CMSG_HAVE_KERBEROS_TGT);
711         packet_put_string((char *)outbuf.data, outbuf.length);
712         packet_send();
713         packet_write_wait();
714
715         type = packet_read();
716
717         if (type == SSH_SMSG_SUCCESS) {
718                 char *pname;
719
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.");
725
726         return;
727
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
744 static void
745 send_krb4_tgt(void)
746 {
747         CREDENTIALS *creds;
748         struct stat st;
749         char buffer[4096], pname[ANAME_SZ], pinst[INST_SZ], prealm[REALM_SZ];
750         int problem, type;
751
752         /* Don't do anything if we don't have any tickets. */
753         if (stat(tkt_string(), &st) < 0)
754                 return;
755
756         creds = xmalloc(sizeof(*creds));
757
758         problem = krb_get_tf_fullname(TKT_FILE, pname, pinst, prealm);
759         if (problem)
760                 goto out;
761
762         problem = krb_get_cred("krbtgt", prealm, prealm, creds);
763         if (problem)
764                 goto out;
765
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));
771
772         packet_start(SSH_CMSG_HAVE_KERBEROS_TGT);
773         packet_put_cstring(buffer);
774         packet_send();
775         packet_write_wait();
776
777         type = packet_read();
778
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.");
785
786         xfree(creds);
787         return;
788
789  out:
790         debug("Kerberos v4 TGT passing failed: %s", krb_err_txt[problem]);
791         xfree(creds);
792 }
793
794 static void
795 send_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];
803
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;
813
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;
821
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;
831
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';
843
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? */
855                 type = packet_read();
856
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  */
870 static int
871 try_challenge_response_authentication(void)
872 {
873         int type, i;
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
886                 type = packet_read();
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);
897                 packet_check_eom();
898                 snprintf(prompt, sizeof prompt, "%s%s", challenge,
899                     strchr(challenge, '\n') ? "" : "\nResponse: ");
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! "
905                             "Response will be transmitted in clear text.");
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();
917                 type = packet_read();
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  */
931 static int
932 try_password_authentication(char *prompt)
933 {
934         int type, i;
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
951                 type = packet_read();
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
961 #ifdef GSSAPI
962 /*
963  * This code stolen from the gss-client.c sample program from MIT's
964  * kerberos 5 distribution.
965  */
966
967 gss_cred_id_t gss_cred = GSS_C_NO_CREDENTIAL;
968
969 static void display_status_1(m, code, type)
970  char *m;
971  OM_uint32 code;
972  int type;
973 {
974   OM_uint32 maj_stat, min_stat;
975   gss_buffer_desc msg;
976   OM_uint32 msg_ctx;
977
978   msg_ctx = 0;
979   while (1) {
980     maj_stat = gss_display_status(&min_stat, code,
981                                   type, GSS_C_NULL_OID,
982                                   &msg_ctx, &msg);
983     debug("GSS-API error %s: %s", m, (char *)msg.value);
984     (void) gss_release_buffer(&min_stat, &msg);
985
986     if (!msg_ctx)
987       break;
988   }
989 }
990
991 static void display_gssapi_status(msg, maj_stat, min_stat)
992   char *msg;
993   OM_uint32 maj_stat;
994   OM_uint32 min_stat;
995 {
996   display_status_1(msg, maj_stat, GSS_C_GSS_CODE);
997   display_status_1(msg, min_stat, GSS_C_MECH_CODE);
998 }
999
1000 #ifdef GSI
1001 int get_gssapi_cred()
1002 {
1003   OM_uint32 maj_stat;
1004   OM_uint32 min_stat;
1005
1006
1007   debug("calling gss_acquire_cred");
1008   maj_stat = gss_acquire_cred(&min_stat,
1009                               GSS_C_NO_NAME,
1010                               GSS_C_INDEFINITE,
1011                               GSS_C_NO_OID_SET,
1012                               GSS_C_INITIATE,
1013                               &gss_cred,
1014                               NULL,
1015                               NULL);
1016
1017   if (maj_stat != GSS_S_COMPLETE) {
1018     display_gssapi_status("Failuring acquiring GSSAPI credentials",
1019                           maj_stat, min_stat);
1020     gss_cred = GSS_C_NO_CREDENTIAL; /* should not be needed */
1021     return 0;
1022   }
1023
1024   return 1;     /* Success */
1025 }
1026
1027 char * get_gss_our_name()
1028 {
1029   OM_uint32 maj_stat;
1030   OM_uint32 min_stat;
1031   gss_name_t pname = GSS_C_NO_NAME;
1032   gss_buffer_desc tmpname;
1033   gss_buffer_t tmpnamed = &tmpname;
1034   char *retname;
1035
1036   debug("calling gss_inquire_cred");
1037   maj_stat = gss_inquire_cred(&min_stat,
1038                               gss_cred,
1039                               &pname,
1040                               NULL,
1041                               NULL,
1042                               NULL);
1043   if (maj_stat != GSS_S_COMPLETE) {
1044     return NULL;
1045   }
1046
1047   maj_stat = gss_export_name(&min_stat,
1048                              pname,
1049                              tmpnamed);
1050   if (maj_stat != GSS_S_COMPLETE) {
1051     return NULL;
1052   }
1053   debug("gss_export_name finsished");
1054   retname = (char *)malloc(tmpname.length + 1);
1055   if (!retname) {
1056     return NULL;
1057   }
1058   memcpy(retname, tmpname.value, tmpname.length);
1059   retname[tmpname.length] = '\0';
1060
1061   gss_release_name(&min_stat, &pname);
1062   gss_release_buffer(&min_stat, tmpnamed);
1063
1064   return retname;
1065 }
1066 #endif /* GSI */
1067
1068 int try_gssapi_authentication(char *host, Options *options)
1069 {
1070   char *service_name = NULL;
1071   gss_buffer_desc name_tok;
1072   gss_buffer_desc send_tok;
1073   gss_buffer_desc recv_tok;
1074   gss_buffer_desc *token_ptr;
1075   gss_name_t target_name = NULL;
1076   gss_ctx_id_t gss_context;
1077   gss_OID_desc mech_oid;
1078   gss_OID name_type;
1079   gss_OID_set my_mechs;
1080   int my_mech_num;
1081   OM_uint32 maj_stat;
1082   OM_uint32 min_stat;
1083   int ret_stat = 0;                             /* 1 == success */
1084   OM_uint32 req_flags = 0;
1085   OM_uint32 ret_flags;
1086   int type;
1087   char *gssapi_auth_type = NULL;
1088   struct hostent *hostinfo;
1089
1090
1091   /*
1092    * host is not guarenteed to be a FQDN, so we need to make sure it is.
1093    */
1094   hostinfo = gethostbyname(host);
1095
1096   if ((hostinfo == NULL) || (hostinfo->h_name == NULL)) {
1097       debug("GSSAPI authentication: Unable to get FQDN for \"%s\"", host);
1098       goto cleanup;
1099   }
1100
1101   /*
1102    * Default flags
1103    */
1104   req_flags |= GSS_C_REPLAY_FLAG;
1105
1106   /* Do mutual authentication */
1107   req_flags |= GSS_C_MUTUAL_FLAG;
1108
1109 #ifdef KRB5
1110
1111   gssapi_auth_type = "GSSAPI/Kerberos 5";
1112
1113 #endif
1114
1115 #ifdef GSI
1116
1117   gssapi_auth_type = "GSSAPI/GLOBUS";
1118
1119 #endif /* GSI */
1120
1121   if (gssapi_auth_type == NULL) {
1122       debug("No GSSAPI type defined during compile");
1123       goto cleanup;
1124   }
1125
1126   debug("Attempting %s authentication", gssapi_auth_type);
1127
1128   service_name = (char *) malloc(strlen("host") +
1129                                  strlen(hostinfo->h_name) +
1130                                  2 /* 1 for '@', 1 for NUL */);
1131
1132   if (service_name == NULL) {
1133     debug("malloc() failed");
1134     goto cleanup;
1135   }
1136
1137
1138   sprintf(service_name, "host@%s", hostinfo->h_name);
1139
1140   name_type = GSS_C_NT_HOSTBASED_SERVICE;
1141
1142   debug("Service name is %s", service_name);
1143
1144   /* Forward credentials? */
1145
1146 #ifdef KRB5
1147   if (options->kerberos_tgt_passing) {
1148       debug("Forwarding Kerberos credentials");
1149       req_flags |= GSS_C_DELEG_FLAG;
1150   }
1151 #endif /* KRB5 */
1152
1153 #ifdef GSSAPI
1154   if(options->gss_deleg_creds) {
1155     debug("Forwarding X509 proxy certificate");
1156     req_flags |= GSS_C_DELEG_FLAG;
1157   }
1158 #ifdef GSS_C_GLOBUS_LIMITED_DELEG_PROXY_FLAG
1159   /* Forward limited credentials, overrides gss_deleg_creds */
1160   if(options->gss_globus_deleg_limited_proxy) {
1161     debug("Forwarding limited X509 proxy certificate");
1162     req_flags |= (GSS_C_DELEG_FLAG | GSS_C_GLOBUS_LIMITED_DELEG_PROXY_FLAG);
1163   }
1164 #endif /* GSS_C_GLOBUS_LIMITED_DELEG_PROXY_FLAG */
1165
1166 #endif /* GSSAPI */
1167
1168   debug("req_flags = %lu", req_flags);
1169
1170   name_tok.value = service_name;
1171   name_tok.length = strlen(service_name) + 1;
1172   maj_stat = gss_import_name(&min_stat, &name_tok,
1173                              name_type, &target_name);
1174
1175   free(service_name);
1176   service_name = NULL;
1177
1178   if (maj_stat != GSS_S_COMPLETE) {
1179     display_gssapi_status("importing service name", maj_stat, min_stat);
1180     goto cleanup;
1181   }
1182
1183   maj_stat = gss_indicate_mechs(&min_stat, &my_mechs);
1184
1185   if (maj_stat != GSS_S_COMPLETE) {
1186     display_gssapi_status("indicating mechs", maj_stat, min_stat);
1187     goto cleanup;
1188   }
1189
1190   /*
1191    * Send over a packet to the daemon, letting it know we're doing
1192    * GSSAPI and our mech_oid(s).
1193    */
1194   debug("Sending mech oid to server");
1195   packet_start(SSH_CMSG_AUTH_GSSAPI);
1196   packet_put_int(my_mechs->count); /* Number of mechs we're sending */
1197   for (my_mech_num = 0; my_mech_num < my_mechs->count; my_mech_num++)
1198       packet_put_string(my_mechs->elements[my_mech_num].elements,
1199                         my_mechs->elements[my_mech_num].length);
1200   packet_send();
1201   packet_write_wait();
1202
1203   /*
1204    * Get reply from the daemon to see if our mech was acceptable
1205    */
1206   type = packet_read();
1207
1208   switch (type) {
1209   case SSH_SMSG_AUTH_GSSAPI_RESPONSE:
1210       debug("Server accepted mechanism");
1211       /* Successful negotiation */
1212       break;
1213
1214   case SSH_MSG_AUTH_GSSAPI_ABORT:
1215       debug("Unable to negotiate GSSAPI mechanism type with server");
1216       packet_get_all();
1217       goto cleanup;
1218
1219   default:
1220       packet_disconnect("Protocol error during GSSAPI authentication:"
1221                         " packet type %d received",
1222                         type);
1223       /* Does not return */
1224   }
1225
1226   /* Read the mechanism the server returned */
1227   mech_oid.elements = packet_get_string((unsigned int *) &(mech_oid.length));
1228   packet_get_all();
1229
1230   /*
1231    * Perform the context-establishement loop.
1232    *
1233    * On each pass through the loop, token_ptr points to the token
1234    * to send to the server (or GSS_C_NO_BUFFER on the first pass).
1235    * Every generated token is stored in send_tok which is then
1236    * transmitted to the server; every received token is stored in
1237    * recv_tok, which token_ptr is then set to, to be processed by
1238    * the next call to gss_init_sec_context.
1239    *
1240    * GSS-API guarantees that send_tok's length will be non-zero
1241    * if and only if the server is expecting another token from us,
1242    * and that gss_init_sec_context returns GSS_S_CONTINUE_NEEDED if
1243    * and only if the server has another token to send us.
1244    */
1245
1246   token_ptr = GSS_C_NO_BUFFER;
1247   gss_context = GSS_C_NO_CONTEXT;
1248
1249   do {
1250     maj_stat =
1251       gss_init_sec_context(&min_stat,
1252                            gss_cred,
1253                            &gss_context,
1254                            target_name,
1255                            &mech_oid,
1256                            req_flags,
1257                            0,
1258                            NULL,        /* no channel bindings */
1259                            token_ptr,
1260                            NULL,        /* ignore mech type */
1261                            &send_tok,
1262                            &ret_flags,
1263                            NULL);       /* ignore time_rec */
1264
1265     if (token_ptr != GSS_C_NO_BUFFER)
1266       (void) gss_release_buffer(&min_stat, &recv_tok);
1267
1268     if (maj_stat != GSS_S_COMPLETE && maj_stat != GSS_S_CONTINUE_NEEDED) {
1269       display_gssapi_status("initializing context", maj_stat, min_stat);
1270
1271       /* Send an abort message */
1272       packet_start(SSH_MSG_AUTH_GSSAPI_ABORT);
1273       packet_send();
1274       packet_write_wait();
1275
1276       goto cleanup;
1277     }
1278
1279     if (send_tok.length != 0) {
1280       debug("Sending authenticaton token...");
1281       packet_start(SSH_MSG_AUTH_GSSAPI_TOKEN);
1282       packet_put_string((char *) send_tok.value, send_tok.length);
1283       packet_send();
1284       packet_write_wait();
1285
1286       (void) gss_release_buffer(&min_stat, &send_tok);
1287     }
1288
1289     if (maj_stat == GSS_S_CONTINUE_NEEDED) {
1290
1291       debug("Continue needed. Reading response...");
1292
1293       type = packet_read();
1294
1295       switch(type) {
1296
1297       case SSH_MSG_AUTH_GSSAPI_TOKEN:
1298         /* This is what we expected */
1299         break;
1300
1301       case SSH_MSG_AUTH_GSSAPI_ABORT:
1302         debug("Server aborted GSSAPI authentication.");
1303         packet_get_all();
1304         goto cleanup;
1305
1306       default:
1307         packet_disconnect("Protocol error during GSSAPI authentication:"
1308                           " packet type %d received",
1309                           type);
1310         /* Does not return */
1311       }
1312
1313       recv_tok.value = packet_get_string((unsigned int *) &recv_tok.length);
1314       packet_get_all();
1315       token_ptr = &recv_tok;
1316     }
1317   } while (maj_stat == GSS_S_CONTINUE_NEEDED);
1318
1319   /* Success */
1320   ret_stat = 1;
1321
1322   debug("%s authentication successful", gssapi_auth_type);
1323
1324   /*
1325    * Read hash of host and server keys and make sure it
1326    * matches what we got earlier.
1327    */
1328   debug("Reading hash of server and host keys...");
1329   type = packet_read();
1330
1331   if (type == SSH_MSG_AUTH_GSSAPI_ABORT) {
1332     debug("Server aborted GSSAPI authentication.");
1333     packet_get_all();
1334     ret_stat = 0;
1335     goto cleanup;
1336
1337   } else if (type == SSH_SMSG_AUTH_GSSAPI_HASH) {
1338     gss_buffer_desc wrapped_buf;
1339     gss_buffer_desc unwrapped_buf;
1340     int conf_state;
1341     gss_qop_t qop_state;
1342
1343
1344     wrapped_buf.value = packet_get_string(&(wrapped_buf.length));
1345     packet_get_all();
1346
1347     maj_stat = gss_unwrap(&min_stat,
1348                           gss_context,
1349                           &wrapped_buf,
1350                           &unwrapped_buf,
1351                           &conf_state,
1352                           &qop_state);
1353
1354     if (maj_stat != GSS_S_COMPLETE) {
1355       display_gssapi_status("unwraping SSHD key hash",
1356                             maj_stat, min_stat);
1357       packet_disconnect("Verification of SSHD keys through GSSAPI-secured channel failed: "
1358                         "Unwrapping of hash failed.");
1359     }
1360
1361     if (unwrapped_buf.length != sizeof(ssh_key_digest)) {
1362       packet_disconnect("Verification of SSHD keys through GSSAPI-secured channel failed: "
1363                         "Size of key hashes do not match (%d != %d)!",
1364                         unwrapped_buf.length, sizeof(ssh_key_digest));
1365     }
1366
1367     if (memcmp(ssh_key_digest, unwrapped_buf.value, sizeof(ssh_key_digest)) != 0) {
1368       packet_disconnect("Verification of SSHD keys through GSSAPI-secured channel failed: "
1369                         "Hashes don't match!");
1370     }
1371
1372     debug("Verified SSHD keys through GSSAPI-secured channel.");
1373
1374     gss_release_buffer(&min_stat, &unwrapped_buf);
1375
1376   } else {
1377       packet_disconnect("Protocol error during GSSAPI authentication:"
1378                         "packet type %d received", type);
1379       /* Does not return */
1380   }
1381
1382
1383  cleanup:
1384   if (target_name != NULL)
1385       (void) gss_release_name(&min_stat, &target_name);
1386
1387   return ret_stat;
1388 }
1389
1390 #endif /* GSSAPI */
1391
1392
1393 /*
1394  * SSH1 key exchange
1395  */
1396 void
1397 ssh_kex(char *host, struct sockaddr *hostaddr)
1398 {
1399         int i;
1400         BIGNUM *key;
1401         Key *host_key, *server_key;
1402         int bits, rbits;
1403         int ssh_cipher_default = SSH_CIPHER_3DES;
1404         u_char session_key[SSH_SESSION_KEY_LENGTH];
1405         u_char cookie[8];
1406         u_int supported_ciphers;
1407         u_int server_flags, client_flags;
1408         u_int32_t rand = 0;
1409
1410         debug("Waiting for server public key.");
1411
1412         /* Wait for a public key packet from the server. */
1413         packet_read_expect(SSH_SMSG_PUBLIC_KEY);
1414
1415         /* Get cookie from the packet. */
1416         for (i = 0; i < 8; i++)
1417                 cookie[i] = packet_get_char();
1418
1419         /* Get the public key. */
1420         server_key = key_new(KEY_RSA1);
1421         bits = packet_get_int();
1422         packet_get_bignum(server_key->rsa->e);
1423         packet_get_bignum(server_key->rsa->n);
1424
1425         rbits = BN_num_bits(server_key->rsa->n);
1426         if (bits != rbits) {
1427                 log("Warning: Server lies about size of server public key: "
1428                     "actual size is %d bits vs. announced %d.", rbits, bits);
1429                 log("Warning: This may be due to an old implementation of ssh.");
1430         }
1431         /* Get the host key. */
1432         host_key = key_new(KEY_RSA1);
1433         bits = packet_get_int();
1434         packet_get_bignum(host_key->rsa->e);
1435         packet_get_bignum(host_key->rsa->n);
1436
1437         rbits = BN_num_bits(host_key->rsa->n);
1438         if (bits != rbits) {
1439                 log("Warning: Server lies about size of server host key: "
1440                     "actual size is %d bits vs. announced %d.", rbits, bits);
1441                 log("Warning: This may be due to an old implementation of ssh.");
1442         }
1443
1444 #ifdef GSSAPI
1445   {
1446     MD5_CTX md5context;
1447     Buffer buf;
1448     unsigned char *data;
1449     unsigned int data_len;
1450
1451     /*
1452      * Hash the server and host keys. Later we will check them against
1453      * a hash sent over a secure channel to make sure they are legit.
1454      */
1455     debug("Calculating MD5 hash of server and host keys...");
1456
1457     /* Write all the keys to a temporary buffer */
1458     buffer_init(&buf);
1459
1460     /* Server key */
1461     buffer_put_bignum(&buf, server_key->rsa->e);
1462     buffer_put_bignum(&buf, server_key->rsa->n);
1463
1464     /* Host key */
1465     buffer_put_bignum(&buf, host_key->rsa->e);
1466     buffer_put_bignum(&buf, host_key->rsa->n);
1467
1468     /* Get the resulting data */
1469     data = (unsigned char *) buffer_ptr(&buf);
1470     data_len = buffer_len(&buf);
1471
1472     /* And hash it */
1473     MD5_Init(&md5context);
1474     MD5_Update(&md5context, data, data_len);
1475     MD5_Final(ssh_key_digest, &md5context);
1476
1477     /* Clean up */
1478     buffer_clear(&buf);
1479     buffer_free(&buf);
1480   }
1481 #endif /* GSSAPI */
1482
1483         /* Get protocol flags. */
1484         server_flags = packet_get_int();
1485         packet_set_protocol_flags(server_flags);
1486
1487         supported_ciphers = packet_get_int();
1488         supported_authentications = packet_get_int();
1489         packet_check_eom();
1490
1491         debug("Received server public key (%d bits) and host key (%d bits).",
1492             BN_num_bits(server_key->rsa->n), BN_num_bits(host_key->rsa->n));
1493
1494         if (verify_host_key(host, hostaddr, host_key) == -1)
1495                 fatal("Host key verification failed.");
1496
1497         client_flags = SSH_PROTOFLAG_SCREEN_NUMBER | SSH_PROTOFLAG_HOST_IN_FWD_OPEN;
1498
1499         compute_session_id(session_id, cookie, host_key->rsa->n, server_key->rsa->n);
1500
1501         /* Generate a session key. */
1502         arc4random_stir();
1503
1504         /*
1505          * Generate an encryption key for the session.   The key is a 256 bit
1506          * random number, interpreted as a 32-byte key, with the least
1507          * significant 8 bits being the first byte of the key.
1508          */
1509         for (i = 0; i < 32; i++) {
1510                 if (i % 4 == 0)
1511                         rand = arc4random();
1512                 session_key[i] = rand & 0xff;
1513                 rand >>= 8;
1514         }
1515
1516         /*
1517          * According to the protocol spec, the first byte of the session key
1518          * is the highest byte of the integer.  The session key is xored with
1519          * the first 16 bytes of the session id.
1520          */
1521         if ((key = BN_new()) == NULL)
1522                 fatal("respond_to_rsa_challenge: BN_new failed");
1523         BN_set_word(key, 0);
1524         for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
1525                 BN_lshift(key, key, 8);
1526                 if (i < 16)
1527                         BN_add_word(key, session_key[i] ^ session_id[i]);
1528                 else
1529                         BN_add_word(key, session_key[i]);
1530         }
1531
1532         /*
1533          * Encrypt the integer using the public key and host key of the
1534          * server (key with smaller modulus first).
1535          */
1536         if (BN_cmp(server_key->rsa->n, host_key->rsa->n) < 0) {
1537                 /* Public key has smaller modulus. */
1538                 if (BN_num_bits(host_key->rsa->n) <
1539                     BN_num_bits(server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1540                         fatal("respond_to_rsa_challenge: host_key %d < server_key %d + "
1541                             "SSH_KEY_BITS_RESERVED %d",
1542                             BN_num_bits(host_key->rsa->n),
1543                             BN_num_bits(server_key->rsa->n),
1544                             SSH_KEY_BITS_RESERVED);
1545                 }
1546                 rsa_public_encrypt(key, key, server_key->rsa);
1547                 rsa_public_encrypt(key, key, host_key->rsa);
1548         } else {
1549                 /* Host key has smaller modulus (or they are equal). */
1550                 if (BN_num_bits(server_key->rsa->n) <
1551                     BN_num_bits(host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1552                         fatal("respond_to_rsa_challenge: server_key %d < host_key %d + "
1553                             "SSH_KEY_BITS_RESERVED %d",
1554                             BN_num_bits(server_key->rsa->n),
1555                             BN_num_bits(host_key->rsa->n),
1556                             SSH_KEY_BITS_RESERVED);
1557                 }
1558                 rsa_public_encrypt(key, key, host_key->rsa);
1559                 rsa_public_encrypt(key, key, server_key->rsa);
1560         }
1561
1562         /* Destroy the public keys since we no longer need them. */
1563         key_free(server_key);
1564         key_free(host_key);
1565
1566         if (options.cipher == SSH_CIPHER_NOT_SET) {
1567                 if (cipher_mask_ssh1(1) & supported_ciphers & (1 << ssh_cipher_default))
1568                         options.cipher = ssh_cipher_default;
1569         } else if (options.cipher == SSH_CIPHER_ILLEGAL ||
1570             !(cipher_mask_ssh1(1) & (1 << options.cipher))) {
1571                 log("No valid SSH1 cipher, using %.100s instead.",
1572                     cipher_name(ssh_cipher_default));
1573                 options.cipher = ssh_cipher_default;
1574         }
1575         /* Check that the selected cipher is supported. */
1576         if (!(supported_ciphers & (1 << options.cipher)))
1577                 fatal("Selected cipher type %.100s not supported by server.",
1578                     cipher_name(options.cipher));
1579
1580         debug("Encryption type: %.100s", cipher_name(options.cipher));
1581
1582         /* Send the encrypted session key to the server. */
1583         packet_start(SSH_CMSG_SESSION_KEY);
1584         packet_put_char(options.cipher);
1585
1586         /* Send the cookie back to the server. */
1587         for (i = 0; i < 8; i++)
1588                 packet_put_char(cookie[i]);
1589
1590         /* Send and destroy the encrypted encryption key integer. */
1591         packet_put_bignum(key);
1592         BN_clear_free(key);
1593
1594         /* Send protocol flags. */
1595         packet_put_int(client_flags);
1596
1597         /* Send the packet now. */
1598         packet_send();
1599         packet_write_wait();
1600
1601         debug("Sent encrypted session key.");
1602
1603         /* Set the encryption key. */
1604         packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, options.cipher);
1605
1606         /* We will no longer need the session key here.  Destroy any extra copies. */
1607         memset(session_key, 0, sizeof(session_key));
1608
1609         /*
1610          * Expect a success message from the server.  Note that this message
1611          * will be received in encrypted form.
1612          */
1613         packet_read_expect(SSH_SMSG_SUCCESS);
1614
1615         debug("Received encrypted confirmation.");
1616 }
1617
1618 /*
1619  * Authenticate user
1620  */
1621 void
1622 ssh_userauth1(const char *local_user, const char *server_user, char *host,
1623     Sensitive *sensitive)
1624 {
1625 #ifdef GSSAPI
1626 #ifdef GSI
1627         const char *save_server_user = NULL;
1628 #endif /* GSI */
1629 #endif /* GSSAPI */
1630
1631 #ifdef KRB5
1632         krb5_context context = NULL;
1633         krb5_auth_context auth_context = NULL;
1634 #endif
1635         int i, type;
1636
1637         if (supported_authentications == 0)
1638                 fatal("ssh_userauth1: server supports no auth methods");
1639
1640 #ifdef GSSAPI
1641 #ifdef GSI
1642   /* if no user given, tack on the subject name after the server_user.
1643    * This will allow us to run gridmap early to get real user
1644    * This name will start with /C=
1645    */
1646   if ((supported_authentications & (1 << SSH_AUTH_GSSAPI)) &&
1647       options.gss_authentication) {
1648     if (get_gssapi_cred()) {
1649       char * retname;
1650       char * newname;
1651
1652
1653       save_server_user = server_user;
1654
1655       retname = get_gss_our_name();
1656
1657       if (retname) {
1658         debug("passing gssapi name '%s'", retname);
1659         if (server_user) {
1660           newname = (char *) malloc(strlen(retname) + strlen(server_user) + 4);
1661           if (newname) {
1662             strcpy(newname, server_user);
1663             if(options.implicit) {
1664                 strcat(newname,":i:");
1665             } else {
1666                 strcat(newname,":x:");
1667             }
1668             strcat(newname, retname);
1669             server_user = newname;
1670             free(retname);
1671           }
1672         }
1673       }
1674     } else {
1675       /*
1676        * If we couldn't successfully get our GSSAPI credentials then
1677        * turn off gssapi authentication
1678        */
1679       options.gss_authentication = 0;
1680     }
1681     debug("server_user %s", server_user);
1682   }
1683 #endif /* GSI */
1684 #endif /* GSSAPI */
1685
1686         /* Send the name of the user to log in as on the server. */
1687         packet_start(SSH_CMSG_USER);
1688         packet_put_cstring(server_user);
1689         packet_send();
1690         packet_write_wait();
1691
1692 #if defined(GSI)
1693   if(save_server_user)
1694     {
1695       server_user = save_server_user;
1696     }
1697 #endif
1698         /*
1699          * The server should respond with success if no authentication is
1700          * needed (the user has no password).  Otherwise the server responds
1701          * with failure.
1702          */
1703         type = packet_read();
1704
1705         /* check whether the connection was accepted without authentication. */
1706         if (type == SSH_SMSG_SUCCESS)
1707                 goto success;
1708         if (type != SSH_SMSG_FAILURE)
1709                 packet_disconnect("Protocol error: got %d in response to SSH_CMSG_USER", type);
1710
1711 #ifdef GSSAPI
1712   /* Try GSSAPI authentication */
1713   if ((supported_authentications & (1 << SSH_AUTH_GSSAPI)) &&
1714       options.gss_authentication)
1715     {
1716       debug("Trying GSSAPI authentication...");
1717       try_gssapi_authentication(host, &options);
1718
1719       /*
1720        * XXX Hmmm. Kerberos authentication only reads a packet if it thinks
1721        * the authentication went OK, but the server seems to always send
1722        * a packet back. So I'm not sure if I'm missing something or
1723        * the Kerberos code is broken. - vwelch 1/27/99
1724        */
1725
1726       type = packet_read();
1727       if (type == SSH_SMSG_SUCCESS)
1728         return; /* Successful connection. */
1729       if (type != SSH_SMSG_FAILURE)
1730         packet_disconnect("Protocol error: got %d in response to Kerberos auth", type);
1731
1732       debug("GSSAPI authentication failed");
1733     }
1734 #endif /* GSSAPI */
1735         
1736 #ifdef KRB5
1737         if ((supported_authentications & (1 << SSH_AUTH_KERBEROS)) &&
1738             options.kerberos_authentication) {
1739                 debug("Trying Kerberos v5 authentication.");
1740
1741                 if (try_krb5_authentication(&context, &auth_context)) {
1742                         type = packet_read();
1743                         if (type == SSH_SMSG_SUCCESS)
1744                                 goto success;
1745                         if (type != SSH_SMSG_FAILURE)
1746                                 packet_disconnect("Protocol error: got %d in response to Kerberos v5 auth", type);
1747                 }
1748         }
1749 #endif /* KRB5 */
1750
1751 #ifdef KRB4
1752         if ((supported_authentications & (1 << SSH_AUTH_KERBEROS)) &&
1753             options.kerberos_authentication) {
1754                 debug("Trying Kerberos v4 authentication.");
1755
1756                 if (try_krb4_authentication()) {
1757                         type = packet_read();
1758                         if (type == SSH_SMSG_SUCCESS)
1759                                 goto success;
1760                         if (type != SSH_SMSG_FAILURE)
1761                                 packet_disconnect("Protocol error: got %d in response to Kerberos v4 auth", type);
1762                 }
1763         }
1764 #endif /* KRB4 */
1765
1766         /*
1767          * Use rhosts authentication if running in privileged socket and we
1768          * do not wish to remain anonymous.
1769          */
1770         if ((supported_authentications & (1 << SSH_AUTH_RHOSTS)) &&
1771             options.rhosts_authentication) {
1772                 debug("Trying rhosts authentication.");
1773                 packet_start(SSH_CMSG_AUTH_RHOSTS);
1774                 packet_put_cstring(local_user);
1775                 packet_send();
1776                 packet_write_wait();
1777
1778                 /* The server should respond with success or failure. */
1779                 type = packet_read();
1780                 if (type == SSH_SMSG_SUCCESS)
1781                         goto success;
1782                 if (type != SSH_SMSG_FAILURE)
1783                         packet_disconnect("Protocol error: got %d in response to rhosts auth",
1784                                           type);
1785         }
1786         /*
1787          * Try .rhosts or /etc/hosts.equiv authentication with RSA host
1788          * authentication.
1789          */
1790         if ((supported_authentications & (1 << SSH_AUTH_RHOSTS_RSA)) &&
1791             options.rhosts_rsa_authentication) {
1792                 for (i = 0; i < sensitive->nkeys; i++) {
1793                         if (sensitive->keys[i] != NULL &&
1794                             sensitive->keys[i]->type == KEY_RSA1 &&
1795                             try_rhosts_rsa_authentication(local_user,
1796                             sensitive->keys[i]))
1797                                 goto success;
1798                 }
1799         }
1800         /* Try RSA authentication if the server supports it. */
1801         if ((supported_authentications & (1 << SSH_AUTH_RSA)) &&
1802             options.rsa_authentication) {
1803                 /*
1804                  * Try RSA authentication using the authentication agent. The
1805                  * agent is tried first because no passphrase is needed for
1806                  * it, whereas identity files may require passphrases.
1807                  */
1808                 if (try_agent_authentication())
1809                         goto success;
1810
1811                 /* Try RSA authentication for each identity. */
1812                 for (i = 0; i < options.num_identity_files; i++)
1813                         if (options.identity_keys[i] != NULL &&
1814                             options.identity_keys[i]->type == KEY_RSA1 &&
1815                             try_rsa_authentication(i))
1816                                 goto success;
1817         }
1818         /* Try challenge response authentication if the server supports it. */
1819         if ((supported_authentications & (1 << SSH_AUTH_TIS)) &&
1820             options.challenge_response_authentication && !options.batch_mode) {
1821                 if (try_challenge_response_authentication())
1822                         goto success;
1823         }
1824         /* Try password authentication if the server supports it. */
1825         if ((supported_authentications & (1 << SSH_AUTH_PASSWORD)) &&
1826             options.password_authentication && !options.batch_mode) {
1827                 char prompt[80];
1828
1829                 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
1830                     server_user, host);
1831                 if (try_password_authentication(prompt))
1832                         goto success;
1833         }
1834         /* All authentication methods have failed.  Exit with an error message. */
1835         fatal("Permission denied.");
1836         /* NOTREACHED */
1837
1838  success:
1839 #ifdef KRB5
1840         /* Try Kerberos v5 TGT passing. */
1841         if ((supported_authentications & (1 << SSH_PASS_KERBEROS_TGT)) &&
1842             options.kerberos_tgt_passing && context && auth_context) {
1843                 if (options.cipher == SSH_CIPHER_NONE)
1844                         log("WARNING: Encryption is disabled! Ticket will be transmitted in the clear!");
1845                 send_krb5_tgt(context, auth_context);
1846         }
1847         if (auth_context)
1848                 krb5_auth_con_free(context, auth_context);
1849         if (context)
1850                 krb5_free_context(context);
1851 #endif
1852
1853 #ifdef AFS
1854         /* Try Kerberos v4 TGT passing if the server supports it. */
1855         if ((supported_authentications & (1 << SSH_PASS_KERBEROS_TGT)) &&
1856             options.kerberos_tgt_passing) {
1857                 if (options.cipher == SSH_CIPHER_NONE)
1858                         log("WARNING: Encryption is disabled! Ticket will be transmitted in the clear!");
1859                 send_krb4_tgt();
1860         }
1861         /* Try AFS token passing if the server supports it. */
1862         if ((supported_authentications & (1 << SSH_PASS_AFS_TOKEN)) &&
1863             options.afs_token_passing && k_hasafs()) {
1864                 if (options.cipher == SSH_CIPHER_NONE)
1865                         log("WARNING: Encryption is disabled! Token will be transmitted in the clear!");
1866                 send_afs_tokens();
1867         }
1868 #endif /* AFS */
1869
1870         return; /* need statement after label */
1871 }
This page took 0.184996 seconds and 5 git commands to generate.