]> andersk Git - openssh.git/blob - kex.c
- (tim) [kex.c myproposal.h md-sha256.c openbsd-compat/sha2.c,h] Disable
[openssh.git] / kex.c
1 /*
2  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include "includes.h"
26 RCSID("$OpenBSD: kex.c,v 1.66 2006/03/07 09:07:40 djm Exp $");
27
28 #include <openssl/crypto.h>
29
30 #include "ssh2.h"
31 #include "xmalloc.h"
32 #include "buffer.h"
33 #include "bufaux.h"
34 #include "packet.h"
35 #include "compat.h"
36 #include "cipher.h"
37 #include "kex.h"
38 #include "key.h"
39 #include "log.h"
40 #include "mac.h"
41 #include "match.h"
42 #include "dispatch.h"
43 #include "monitor.h"
44
45 #define KEX_COOKIE_LEN  16
46
47 #if OPENSSL_VERSION_NUMBER < 0x00907000L
48 # define evp_ssh_sha256() NULL
49 #elif defined(HAVE_EVP_SHA256)
50 # define evp_ssh_sha256 EVP_sha256
51 #else
52 extern const EVP_MD *evp_ssh_sha256(void);
53 #endif
54
55 /* prototype */
56 static void kex_kexinit_finish(Kex *);
57 static void kex_choose_conf(Kex *);
58
59 /* put algorithm proposal into buffer */
60 static void
61 kex_prop2buf(Buffer *b, char *proposal[PROPOSAL_MAX])
62 {
63         u_int i;
64
65         buffer_clear(b);
66         /*
67          * add a dummy cookie, the cookie will be overwritten by
68          * kex_send_kexinit(), each time a kexinit is set
69          */
70         for (i = 0; i < KEX_COOKIE_LEN; i++)
71                 buffer_put_char(b, 0);
72         for (i = 0; i < PROPOSAL_MAX; i++)
73                 buffer_put_cstring(b, proposal[i]);
74         buffer_put_char(b, 0);                  /* first_kex_packet_follows */
75         buffer_put_int(b, 0);                   /* uint32 reserved */
76 }
77
78 /* parse buffer and return algorithm proposal */
79 static char **
80 kex_buf2prop(Buffer *raw, int *first_kex_follows)
81 {
82         Buffer b;
83         int i;
84         char **proposal;
85
86         proposal = xmalloc(PROPOSAL_MAX * sizeof(char *));
87
88         buffer_init(&b);
89         buffer_append(&b, buffer_ptr(raw), buffer_len(raw));
90         /* skip cookie */
91         for (i = 0; i < KEX_COOKIE_LEN; i++)
92                 buffer_get_char(&b);
93         /* extract kex init proposal strings */
94         for (i = 0; i < PROPOSAL_MAX; i++) {
95                 proposal[i] = buffer_get_string(&b,NULL);
96                 debug2("kex_parse_kexinit: %s", proposal[i]);
97         }
98         /* first kex follows / reserved */
99         i = buffer_get_char(&b);
100         if (first_kex_follows != NULL)
101                 *first_kex_follows = i;
102         debug2("kex_parse_kexinit: first_kex_follows %d ", i);
103         i = buffer_get_int(&b);
104         debug2("kex_parse_kexinit: reserved %d ", i);
105         buffer_free(&b);
106         return proposal;
107 }
108
109 static void
110 kex_prop_free(char **proposal)
111 {
112         u_int i;
113
114         for (i = 0; i < PROPOSAL_MAX; i++)
115                 xfree(proposal[i]);
116         xfree(proposal);
117 }
118
119 static void
120 kex_protocol_error(int type, u_int32_t seq, void *ctxt)
121 {
122         error("Hm, kex protocol error: type %d seq %u", type, seq);
123 }
124
125 static void
126 kex_reset_dispatch(void)
127 {
128         dispatch_range(SSH2_MSG_TRANSPORT_MIN,
129             SSH2_MSG_TRANSPORT_MAX, &kex_protocol_error);
130         dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
131 }
132
133 void
134 kex_finish(Kex *kex)
135 {
136         kex_reset_dispatch();
137
138         packet_start(SSH2_MSG_NEWKEYS);
139         packet_send();
140         /* packet_write_wait(); */
141         debug("SSH2_MSG_NEWKEYS sent");
142
143         debug("expecting SSH2_MSG_NEWKEYS");
144         packet_read_expect(SSH2_MSG_NEWKEYS);
145         packet_check_eom();
146         debug("SSH2_MSG_NEWKEYS received");
147
148         kex->done = 1;
149         buffer_clear(&kex->peer);
150         /* buffer_clear(&kex->my); */
151         kex->flags &= ~KEX_INIT_SENT;
152         xfree(kex->name);
153         kex->name = NULL;
154 }
155
156 void
157 kex_send_kexinit(Kex *kex)
158 {
159         u_int32_t rnd = 0;
160         u_char *cookie;
161         u_int i;
162
163         if (kex == NULL) {
164                 error("kex_send_kexinit: no kex, cannot rekey");
165                 return;
166         }
167         if (kex->flags & KEX_INIT_SENT) {
168                 debug("KEX_INIT_SENT");
169                 return;
170         }
171         kex->done = 0;
172
173         /* generate a random cookie */
174         if (buffer_len(&kex->my) < KEX_COOKIE_LEN)
175                 fatal("kex_send_kexinit: kex proposal too short");
176         cookie = buffer_ptr(&kex->my);
177         for (i = 0; i < KEX_COOKIE_LEN; i++) {
178                 if (i % 4 == 0)
179                         rnd = arc4random();
180                 cookie[i] = rnd;
181                 rnd >>= 8;
182         }
183         packet_start(SSH2_MSG_KEXINIT);
184         packet_put_raw(buffer_ptr(&kex->my), buffer_len(&kex->my));
185         packet_send();
186         debug("SSH2_MSG_KEXINIT sent");
187         kex->flags |= KEX_INIT_SENT;
188 }
189
190 void
191 kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
192 {
193         char *ptr;
194         u_int i, dlen;
195         Kex *kex = (Kex *)ctxt;
196
197         debug("SSH2_MSG_KEXINIT received");
198         if (kex == NULL)
199                 fatal("kex_input_kexinit: no kex, cannot rekey");
200
201         ptr = packet_get_raw(&dlen);
202         buffer_append(&kex->peer, ptr, dlen);
203
204         /* discard packet */
205         for (i = 0; i < KEX_COOKIE_LEN; i++)
206                 packet_get_char();
207         for (i = 0; i < PROPOSAL_MAX; i++)
208                 xfree(packet_get_string(NULL));
209         (void) packet_get_char();
210         (void) packet_get_int();
211         packet_check_eom();
212
213         kex_kexinit_finish(kex);
214 }
215
216 Kex *
217 kex_setup(char *proposal[PROPOSAL_MAX])
218 {
219         Kex *kex;
220
221         kex = xmalloc(sizeof(*kex));
222         memset(kex, 0, sizeof(*kex));
223         buffer_init(&kex->peer);
224         buffer_init(&kex->my);
225         kex_prop2buf(&kex->my, proposal);
226         kex->done = 0;
227
228         kex_send_kexinit(kex);                                  /* we start */
229         kex_reset_dispatch();
230
231         return kex;
232 }
233
234 static void
235 kex_kexinit_finish(Kex *kex)
236 {
237         if (!(kex->flags & KEX_INIT_SENT))
238                 kex_send_kexinit(kex);
239
240         kex_choose_conf(kex);
241
242         if (kex->kex_type >= 0 && kex->kex_type < KEX_MAX &&
243             kex->kex[kex->kex_type] != NULL) {
244                 (kex->kex[kex->kex_type])(kex);
245         } else {
246                 fatal("Unsupported key exchange %d", kex->kex_type);
247         }
248 }
249
250 static void
251 choose_enc(Enc *enc, char *client, char *server)
252 {
253         char *name = match_list(client, server, NULL);
254         if (name == NULL)
255                 fatal("no matching cipher found: client %s server %s", client, server);
256         if ((enc->cipher = cipher_by_name(name)) == NULL)
257                 fatal("matching cipher is not supported: %s", name);
258         enc->name = name;
259         enc->enabled = 0;
260         enc->iv = NULL;
261         enc->key = NULL;
262         enc->key_len = cipher_keylen(enc->cipher);
263         enc->block_size = cipher_blocksize(enc->cipher);
264 }
265 static void
266 choose_mac(Mac *mac, char *client, char *server)
267 {
268         char *name = match_list(client, server, NULL);
269         if (name == NULL)
270                 fatal("no matching mac found: client %s server %s", client, server);
271         if (mac_init(mac, name) < 0)
272                 fatal("unsupported mac %s", name);
273         /* truncate the key */
274         if (datafellows & SSH_BUG_HMAC)
275                 mac->key_len = 16;
276         mac->name = name;
277         mac->key = NULL;
278         mac->enabled = 0;
279 }
280 static void
281 choose_comp(Comp *comp, char *client, char *server)
282 {
283         char *name = match_list(client, server, NULL);
284         if (name == NULL)
285                 fatal("no matching comp found: client %s server %s", client, server);
286         if (strcmp(name, "zlib@openssh.com") == 0) {
287                 comp->type = COMP_DELAYED;
288         } else if (strcmp(name, "zlib") == 0) {
289                 comp->type = COMP_ZLIB;
290         } else if (strcmp(name, "none") == 0) {
291                 comp->type = COMP_NONE;
292         } else {
293                 fatal("unsupported comp %s", name);
294         }
295         comp->name = name;
296 }
297 static void
298 choose_kex(Kex *k, char *client, char *server)
299 {
300         k->name = match_list(client, server, NULL);
301         if (k->name == NULL)
302                 fatal("no kex alg");
303         if (strcmp(k->name, KEX_DH1) == 0) {
304                 k->kex_type = KEX_DH_GRP1_SHA1;
305                 k->evp_md = EVP_sha1();
306         } else if (strcmp(k->name, KEX_DH14) == 0) {
307                 k->kex_type = KEX_DH_GRP14_SHA1;
308                 k->evp_md = EVP_sha1();
309         } else if (strcmp(k->name, KEX_DHGEX_SHA1) == 0) {
310                 k->kex_type = KEX_DH_GEX_SHA1;
311                 k->evp_md = EVP_sha1();
312         } else if (strcmp(k->name, KEX_DHGEX_SHA256) == 0) {
313                 k->kex_type = KEX_DH_GEX_SHA256;
314                 k->evp_md = evp_ssh_sha256();
315         } else
316                 fatal("bad kex alg %s", k->name);
317 }
318
319 static void
320 choose_hostkeyalg(Kex *k, char *client, char *server)
321 {
322         char *hostkeyalg = match_list(client, server, NULL);
323         if (hostkeyalg == NULL)
324                 fatal("no hostkey alg");
325         k->hostkey_type = key_type_from_name(hostkeyalg);
326         if (k->hostkey_type == KEY_UNSPEC)
327                 fatal("bad hostkey alg '%s'", hostkeyalg);
328         xfree(hostkeyalg);
329 }
330
331 static int
332 proposals_match(char *my[PROPOSAL_MAX], char *peer[PROPOSAL_MAX])
333 {
334         static int check[] = {
335                 PROPOSAL_KEX_ALGS, PROPOSAL_SERVER_HOST_KEY_ALGS, -1
336         };
337         int *idx;
338         char *p;
339
340         for (idx = &check[0]; *idx != -1; idx++) {
341                 if ((p = strchr(my[*idx], ',')) != NULL)
342                         *p = '\0';
343                 if ((p = strchr(peer[*idx], ',')) != NULL)
344                         *p = '\0';
345                 if (strcmp(my[*idx], peer[*idx]) != 0) {
346                         debug2("proposal mismatch: my %s peer %s",
347                             my[*idx], peer[*idx]);
348                         return (0);
349                 }
350         }
351         debug2("proposals match");
352         return (1);
353 }
354
355 static void
356 kex_choose_conf(Kex *kex)
357 {
358         Newkeys *newkeys;
359         char **my, **peer;
360         char **cprop, **sprop;
361         int nenc, nmac, ncomp;
362         u_int mode, ctos, need;
363         int first_kex_follows, type;
364
365         my   = kex_buf2prop(&kex->my, NULL);
366         peer = kex_buf2prop(&kex->peer, &first_kex_follows);
367
368         if (kex->server) {
369                 cprop=peer;
370                 sprop=my;
371         } else {
372                 cprop=my;
373                 sprop=peer;
374         }
375
376         /* Algorithm Negotiation */
377         for (mode = 0; mode < MODE_MAX; mode++) {
378                 newkeys = xmalloc(sizeof(*newkeys));
379                 memset(newkeys, 0, sizeof(*newkeys));
380                 kex->newkeys[mode] = newkeys;
381                 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
382                 nenc  = ctos ? PROPOSAL_ENC_ALGS_CTOS  : PROPOSAL_ENC_ALGS_STOC;
383                 nmac  = ctos ? PROPOSAL_MAC_ALGS_CTOS  : PROPOSAL_MAC_ALGS_STOC;
384                 ncomp = ctos ? PROPOSAL_COMP_ALGS_CTOS : PROPOSAL_COMP_ALGS_STOC;
385                 choose_enc (&newkeys->enc,  cprop[nenc],  sprop[nenc]);
386                 choose_mac (&newkeys->mac,  cprop[nmac],  sprop[nmac]);
387                 choose_comp(&newkeys->comp, cprop[ncomp], sprop[ncomp]);
388                 debug("kex: %s %s %s %s",
389                     ctos ? "client->server" : "server->client",
390                     newkeys->enc.name,
391                     newkeys->mac.name,
392                     newkeys->comp.name);
393         }
394         choose_kex(kex, cprop[PROPOSAL_KEX_ALGS], sprop[PROPOSAL_KEX_ALGS]);
395         choose_hostkeyalg(kex, cprop[PROPOSAL_SERVER_HOST_KEY_ALGS],
396             sprop[PROPOSAL_SERVER_HOST_KEY_ALGS]);
397         need = 0;
398         for (mode = 0; mode < MODE_MAX; mode++) {
399                 newkeys = kex->newkeys[mode];
400                 if (need < newkeys->enc.key_len)
401                         need = newkeys->enc.key_len;
402                 if (need < newkeys->enc.block_size)
403                         need = newkeys->enc.block_size;
404                 if (need < newkeys->mac.key_len)
405                         need = newkeys->mac.key_len;
406         }
407         /* XXX need runden? */
408         kex->we_need = need;
409
410         /* ignore the next message if the proposals do not match */
411         if (first_kex_follows && !proposals_match(my, peer) &&
412             !(datafellows & SSH_BUG_FIRSTKEX)) {
413                 type = packet_read();
414                 debug2("skipping next packet (type %u)", type);
415         }
416
417         kex_prop_free(my);
418         kex_prop_free(peer);
419 }
420
421 static u_char *
422 derive_key(Kex *kex, int id, u_int need, u_char *hash, u_int hashlen,
423     BIGNUM *shared_secret)
424 {
425         Buffer b;
426         EVP_MD_CTX md;
427         char c = id;
428         u_int have;
429         int mdsz;
430         u_char *digest;
431
432         if ((mdsz = EVP_MD_size(kex->evp_md)) <= 0)
433                 fatal("bad kex md size %d", mdsz);
434         digest = xmalloc(roundup(need, mdsz));
435
436         buffer_init(&b);
437         buffer_put_bignum2(&b, shared_secret);
438
439         /* K1 = HASH(K || H || "A" || session_id) */
440         EVP_DigestInit(&md, kex->evp_md);
441         if (!(datafellows & SSH_BUG_DERIVEKEY))
442                 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
443         EVP_DigestUpdate(&md, hash, hashlen);
444         EVP_DigestUpdate(&md, &c, 1);
445         EVP_DigestUpdate(&md, kex->session_id, kex->session_id_len);
446         EVP_DigestFinal(&md, digest, NULL);
447
448         /*
449          * expand key:
450          * Kn = HASH(K || H || K1 || K2 || ... || Kn-1)
451          * Key = K1 || K2 || ... || Kn
452          */
453         for (have = mdsz; need > have; have += mdsz) {
454                 EVP_DigestInit(&md, kex->evp_md);
455                 if (!(datafellows & SSH_BUG_DERIVEKEY))
456                         EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
457                 EVP_DigestUpdate(&md, hash, hashlen);
458                 EVP_DigestUpdate(&md, digest, have);
459                 EVP_DigestFinal(&md, digest + have, NULL);
460         }
461         buffer_free(&b);
462 #ifdef DEBUG_KEX
463         fprintf(stderr, "key '%c'== ", c);
464         dump_digest("key", digest, need);
465 #endif
466         return digest;
467 }
468
469 Newkeys *current_keys[MODE_MAX];
470
471 #define NKEYS   6
472 void
473 kex_derive_keys(Kex *kex, u_char *hash, u_int hashlen, BIGNUM *shared_secret)
474 {
475         u_char *keys[NKEYS];
476         u_int i, mode, ctos;
477
478         for (i = 0; i < NKEYS; i++) {
479                 keys[i] = derive_key(kex, 'A'+i, kex->we_need, hash, hashlen,
480                     shared_secret);
481         }
482
483         debug2("kex_derive_keys");
484         for (mode = 0; mode < MODE_MAX; mode++) {
485                 current_keys[mode] = kex->newkeys[mode];
486                 kex->newkeys[mode] = NULL;
487                 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
488                 current_keys[mode]->enc.iv  = keys[ctos ? 0 : 1];
489                 current_keys[mode]->enc.key = keys[ctos ? 2 : 3];
490                 current_keys[mode]->mac.key = keys[ctos ? 4 : 5];
491         }
492 }
493
494 Newkeys *
495 kex_get_newkeys(int mode)
496 {
497         Newkeys *ret;
498
499         ret = current_keys[mode];
500         current_keys[mode] = NULL;
501         return ret;
502 }
503
504 void
505 derive_ssh1_session_id(BIGNUM *host_modulus, BIGNUM *server_modulus,
506     u_int8_t cookie[8], u_int8_t id[16])
507 {
508         const EVP_MD *evp_md = EVP_md5();
509         EVP_MD_CTX md;
510         u_int8_t nbuf[2048], obuf[EVP_MAX_MD_SIZE];
511         int len;
512
513         EVP_DigestInit(&md, evp_md);
514
515         len = BN_num_bytes(host_modulus);
516         if (len < (512 / 8) || (u_int)len > sizeof(nbuf))
517                 fatal("%s: bad host modulus (len %d)", __func__, len);
518         BN_bn2bin(host_modulus, nbuf);
519         EVP_DigestUpdate(&md, nbuf, len);
520
521         len = BN_num_bytes(server_modulus);
522         if (len < (512 / 8) || (u_int)len > sizeof(nbuf))
523                 fatal("%s: bad server modulus (len %d)", __func__, len);
524         BN_bn2bin(server_modulus, nbuf);
525         EVP_DigestUpdate(&md, nbuf, len);
526
527         EVP_DigestUpdate(&md, cookie, 8);
528
529         EVP_DigestFinal(&md, obuf, NULL);
530         memcpy(id, obuf, 16);
531
532         memset(nbuf, 0, sizeof(nbuf));
533         memset(obuf, 0, sizeof(obuf));
534         memset(&md, 0, sizeof(md));
535 }
536
537 #if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
538 void
539 dump_digest(char *msg, u_char *digest, int len)
540 {
541         u_int i;
542
543         fprintf(stderr, "%s\n", msg);
544         for (i = 0; i< len; i++) {
545                 fprintf(stderr, "%02x", digest[i]);
546                 if (i%32 == 31)
547                         fprintf(stderr, "\n");
548                 else if (i%8 == 7)
549                         fprintf(stderr, " ");
550         }
551         fprintf(stderr, "\n");
552 }
553 #endif
This page took 1.996658 seconds and 5 git commands to generate.