]> andersk Git - gssapi-openssh.git/blame - openssh/kex.c
Merge from OPENSSH_3_8_1P1_GSSAPI_20040713 to OPENSSH_3_9P1_GSSAPI_20040818.
[gssapi-openssh.git] / openssh / kex.c
CommitLineData
3c0ef626 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"
1b56ff3d 26RCSID("$OpenBSD: kex.c,v 1.60 2004/06/21 17:36:31 avsm Exp $");
3c0ef626 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"
2980ea68 43#include "monitor.h"
44
45#ifdef GSSAPI
46#include "ssh-gss.h"
47#endif
3c0ef626 48
49#define KEX_COOKIE_LEN 16
50
51/* prototype */
52static void kex_kexinit_finish(Kex *);
53static void kex_choose_conf(Kex *);
54
55/* put algorithm proposal into buffer */
56static void
57kex_prop2buf(Buffer *b, char *proposal[PROPOSAL_MAX])
58{
3c0ef626 59 int i;
60
61 buffer_clear(b);
2980ea68 62 /*
63 * add a dummy cookie, the cookie will be overwritten by
64 * kex_send_kexinit(), each time a kexinit is set
65 */
66 for (i = 0; i < KEX_COOKIE_LEN; i++)
67 buffer_put_char(b, 0);
3c0ef626 68 for (i = 0; i < PROPOSAL_MAX; i++)
69 buffer_put_cstring(b, proposal[i]);
70 buffer_put_char(b, 0); /* first_kex_packet_follows */
71 buffer_put_int(b, 0); /* uint32 reserved */
72}
73
74/* parse buffer and return algorithm proposal */
75static char **
1c14df9e 76kex_buf2prop(Buffer *raw, int *first_kex_follows)
3c0ef626 77{
78 Buffer b;
79 int i;
80 char **proposal;
81
82 proposal = xmalloc(PROPOSAL_MAX * sizeof(char *));
83
84 buffer_init(&b);
85 buffer_append(&b, buffer_ptr(raw), buffer_len(raw));
86 /* skip cookie */
87 for (i = 0; i < KEX_COOKIE_LEN; i++)
88 buffer_get_char(&b);
89 /* extract kex init proposal strings */
90 for (i = 0; i < PROPOSAL_MAX; i++) {
91 proposal[i] = buffer_get_string(&b,NULL);
92 debug2("kex_parse_kexinit: %s", proposal[i]);
93 }
94 /* first kex follows / reserved */
95 i = buffer_get_char(&b);
1c14df9e 96 if (first_kex_follows != NULL)
97 *first_kex_follows = i;
3c0ef626 98 debug2("kex_parse_kexinit: first_kex_follows %d ", i);
99 i = buffer_get_int(&b);
100 debug2("kex_parse_kexinit: reserved %d ", i);
101 buffer_free(&b);
102 return proposal;
103}
104
105static void
106kex_prop_free(char **proposal)
107{
108 int i;
109
110 for (i = 0; i < PROPOSAL_MAX; i++)
111 xfree(proposal[i]);
112 xfree(proposal);
113}
114
115static void
e9a17296 116kex_protocol_error(int type, u_int32_t seq, void *ctxt)
3c0ef626 117{
e9a17296 118 error("Hm, kex protocol error: type %d seq %u", type, seq);
3c0ef626 119}
120
121static void
e9a17296 122kex_reset_dispatch(void)
3c0ef626 123{
e9a17296 124 dispatch_range(SSH2_MSG_TRANSPORT_MIN,
125 SSH2_MSG_TRANSPORT_MAX, &kex_protocol_error);
126 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
3c0ef626 127}
128
129void
130kex_finish(Kex *kex)
131{
e9a17296 132 kex_reset_dispatch();
3c0ef626 133
134 packet_start(SSH2_MSG_NEWKEYS);
135 packet_send();
136 /* packet_write_wait(); */
137 debug("SSH2_MSG_NEWKEYS sent");
138
1c14df9e 139 debug("expecting SSH2_MSG_NEWKEYS");
e9a17296 140 packet_read_expect(SSH2_MSG_NEWKEYS);
141 packet_check_eom();
3c0ef626 142 debug("SSH2_MSG_NEWKEYS received");
143
144 kex->done = 1;
145 buffer_clear(&kex->peer);
146 /* buffer_clear(&kex->my); */
147 kex->flags &= ~KEX_INIT_SENT;
148 xfree(kex->name);
149 kex->name = NULL;
150}
151
152void
153kex_send_kexinit(Kex *kex)
154{
1b56ff3d 155 u_int32_t rnd = 0;
2980ea68 156 u_char *cookie;
157 int i;
158
3c0ef626 159 if (kex == NULL) {
160 error("kex_send_kexinit: no kex, cannot rekey");
161 return;
162 }
163 if (kex->flags & KEX_INIT_SENT) {
164 debug("KEX_INIT_SENT");
165 return;
166 }
167 kex->done = 0;
2980ea68 168
169 /* generate a random cookie */
170 if (buffer_len(&kex->my) < KEX_COOKIE_LEN)
171 fatal("kex_send_kexinit: kex proposal too short");
172 cookie = buffer_ptr(&kex->my);
173 for (i = 0; i < KEX_COOKIE_LEN; i++) {
174 if (i % 4 == 0)
1b56ff3d 175 rnd = arc4random();
176 cookie[i] = rnd;
177 rnd >>= 8;
2980ea68 178 }
3c0ef626 179 packet_start(SSH2_MSG_KEXINIT);
180 packet_put_raw(buffer_ptr(&kex->my), buffer_len(&kex->my));
181 packet_send();
182 debug("SSH2_MSG_KEXINIT sent");
183 kex->flags |= KEX_INIT_SENT;
184}
185
186void
e9a17296 187kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
3c0ef626 188{
189 char *ptr;
190 int dlen;
191 int i;
192 Kex *kex = (Kex *)ctxt;
193
194 debug("SSH2_MSG_KEXINIT received");
195 if (kex == NULL)
196 fatal("kex_input_kexinit: no kex, cannot rekey");
197
198 ptr = packet_get_raw(&dlen);
199 buffer_append(&kex->peer, ptr, dlen);
200
201 /* discard packet */
202 for (i = 0; i < KEX_COOKIE_LEN; i++)
203 packet_get_char();
204 for (i = 0; i < PROPOSAL_MAX; i++)
205 xfree(packet_get_string(NULL));
ff2d7a98 206 (void) packet_get_char();
207 (void) packet_get_int();
e9a17296 208 packet_check_eom();
3c0ef626 209
210 kex_kexinit_finish(kex);
211}
212
213Kex *
214kex_setup(char *proposal[PROPOSAL_MAX])
215{
216 Kex *kex;
217
218 kex = xmalloc(sizeof(*kex));
219 memset(kex, 0, sizeof(*kex));
220 buffer_init(&kex->peer);
221 buffer_init(&kex->my);
222 kex_prop2buf(&kex->my, proposal);
223 kex->done = 0;
224
225 kex_send_kexinit(kex); /* we start */
e9a17296 226 kex_reset_dispatch();
3c0ef626 227
228 return kex;
229}
230
231static void
232kex_kexinit_finish(Kex *kex)
233{
234 if (!(kex->flags & KEX_INIT_SENT))
235 kex_send_kexinit(kex);
236
237 kex_choose_conf(kex);
238
1c14df9e 239 if (kex->kex_type >= 0 && kex->kex_type < KEX_MAX &&
240 kex->kex[kex->kex_type] != NULL) {
241 (kex->kex[kex->kex_type])(kex);
242 } else {
3c0ef626 243 fatal("Unsupported key exchange %d", kex->kex_type);
244 }
245}
246
247static void
248choose_enc(Enc *enc, char *client, char *server)
249{
250 char *name = match_list(client, server, NULL);
251 if (name == NULL)
252 fatal("no matching cipher found: client %s server %s", client, server);
e9a17296 253 if ((enc->cipher = cipher_by_name(name)) == NULL)
3c0ef626 254 fatal("matching cipher is not supported: %s", name);
255 enc->name = name;
256 enc->enabled = 0;
257 enc->iv = NULL;
258 enc->key = NULL;
e9a17296 259 enc->key_len = cipher_keylen(enc->cipher);
260 enc->block_size = cipher_blocksize(enc->cipher);
3c0ef626 261}
262static void
263choose_mac(Mac *mac, char *client, char *server)
264{
265 char *name = match_list(client, server, NULL);
266 if (name == NULL)
267 fatal("no matching mac found: client %s server %s", client, server);
268 if (mac_init(mac, name) < 0)
269 fatal("unsupported mac %s", name);
270 /* truncate the key */
271 if (datafellows & SSH_BUG_HMAC)
272 mac->key_len = 16;
273 mac->name = name;
274 mac->key = NULL;
275 mac->enabled = 0;
276}
277static void
278choose_comp(Comp *comp, char *client, char *server)
279{
280 char *name = match_list(client, server, NULL);
281 if (name == NULL)
282 fatal("no matching comp found: client %s server %s", client, server);
283 if (strcmp(name, "zlib") == 0) {
284 comp->type = 1;
285 } else if (strcmp(name, "none") == 0) {
286 comp->type = 0;
287 } else {
288 fatal("unsupported comp %s", name);
289 }
290 comp->name = name;
291}
292static void
293choose_kex(Kex *k, char *client, char *server)
294{
295 k->name = match_list(client, server, NULL);
296 if (k->name == NULL)
70791e56 297 fatal("no kex alg");
3c0ef626 298 if (strcmp(k->name, KEX_DH1) == 0) {
1c14df9e 299 k->kex_type = KEX_DH_GRP1_SHA1;
1b56ff3d 300 } else if (strcmp(k->name, KEX_DH14) == 0) {
301 k->kex_type = KEX_DH_GRP14_SHA1;
3c0ef626 302 } else if (strcmp(k->name, KEX_DHGEX) == 0) {
1c14df9e 303 k->kex_type = KEX_DH_GEX_SHA1;
2980ea68 304#ifdef GSSAPI
88928908 305 } else if (strncmp(k->name, KEX_GSS_SHA1, sizeof(KEX_GSS_SHA1)-1) == 0) {
1c14df9e 306 k->kex_type = KEX_GSS_GRP1_SHA1;
2980ea68 307#endif
3c0ef626 308 } else
309 fatal("bad kex alg %s", k->name);
310}
311static void
312choose_hostkeyalg(Kex *k, char *client, char *server)
313{
314 char *hostkeyalg = match_list(client, server, NULL);
315 if (hostkeyalg == NULL)
316 fatal("no hostkey alg");
317 k->hostkey_type = key_type_from_name(hostkeyalg);
318 if (k->hostkey_type == KEY_UNSPEC)
319 fatal("bad hostkey alg '%s'", hostkeyalg);
320 xfree(hostkeyalg);
321}
322
416fd2a8 323static int
1c14df9e 324proposals_match(char *my[PROPOSAL_MAX], char *peer[PROPOSAL_MAX])
325{
326 static int check[] = {
327 PROPOSAL_KEX_ALGS, PROPOSAL_SERVER_HOST_KEY_ALGS, -1
328 };
329 int *idx;
330 char *p;
331
332 for (idx = &check[0]; *idx != -1; idx++) {
333 if ((p = strchr(my[*idx], ',')) != NULL)
334 *p = '\0';
335 if ((p = strchr(peer[*idx], ',')) != NULL)
336 *p = '\0';
337 if (strcmp(my[*idx], peer[*idx]) != 0) {
338 debug2("proposal mismatch: my %s peer %s",
339 my[*idx], peer[*idx]);
340 return (0);
341 }
342 }
343 debug2("proposals match");
344 return (1);
345}
346
3c0ef626 347static void
348kex_choose_conf(Kex *kex)
349{
350 Newkeys *newkeys;
351 char **my, **peer;
352 char **cprop, **sprop;
353 int nenc, nmac, ncomp;
354 int mode;
355 int ctos; /* direction: if true client-to-server */
356 int need;
1c14df9e 357 int first_kex_follows, type;
3c0ef626 358
1c14df9e 359 my = kex_buf2prop(&kex->my, NULL);
360 peer = kex_buf2prop(&kex->peer, &first_kex_follows);
3c0ef626 361
362 if (kex->server) {
363 cprop=peer;
364 sprop=my;
365 } else {
366 cprop=my;
367 sprop=peer;
368 }
369
370 /* Algorithm Negotiation */
371 for (mode = 0; mode < MODE_MAX; mode++) {
372 newkeys = xmalloc(sizeof(*newkeys));
373 memset(newkeys, 0, sizeof(*newkeys));
374 kex->newkeys[mode] = newkeys;
375 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
376 nenc = ctos ? PROPOSAL_ENC_ALGS_CTOS : PROPOSAL_ENC_ALGS_STOC;
377 nmac = ctos ? PROPOSAL_MAC_ALGS_CTOS : PROPOSAL_MAC_ALGS_STOC;
378 ncomp = ctos ? PROPOSAL_COMP_ALGS_CTOS : PROPOSAL_COMP_ALGS_STOC;
379 choose_enc (&newkeys->enc, cprop[nenc], sprop[nenc]);
380 choose_mac (&newkeys->mac, cprop[nmac], sprop[nmac]);
381 choose_comp(&newkeys->comp, cprop[ncomp], sprop[ncomp]);
382 debug("kex: %s %s %s %s",
383 ctos ? "client->server" : "server->client",
384 newkeys->enc.name,
385 newkeys->mac.name,
386 newkeys->comp.name);
387 }
388 choose_kex(kex, cprop[PROPOSAL_KEX_ALGS], sprop[PROPOSAL_KEX_ALGS]);
389 choose_hostkeyalg(kex, cprop[PROPOSAL_SERVER_HOST_KEY_ALGS],
390 sprop[PROPOSAL_SERVER_HOST_KEY_ALGS]);
391 need = 0;
392 for (mode = 0; mode < MODE_MAX; mode++) {
393 newkeys = kex->newkeys[mode];
e9a17296 394 if (need < newkeys->enc.key_len)
395 need = newkeys->enc.key_len;
396 if (need < newkeys->enc.block_size)
397 need = newkeys->enc.block_size;
3c0ef626 398 if (need < newkeys->mac.key_len)
399 need = newkeys->mac.key_len;
400 }
401 /* XXX need runden? */
402 kex->we_need = need;
403
1c14df9e 404 /* ignore the next message if the proposals do not match */
416fd2a8 405 if (first_kex_follows && !proposals_match(my, peer) &&
1c14df9e 406 !(datafellows & SSH_BUG_FIRSTKEX)) {
407 type = packet_read();
408 debug2("skipping next packet (type %u)", type);
409 }
410
3c0ef626 411 kex_prop_free(my);
412 kex_prop_free(peer);
413}
414
415static u_char *
416derive_key(Kex *kex, int id, int need, u_char *hash, BIGNUM *shared_secret)
417{
418 Buffer b;
e9a17296 419 const EVP_MD *evp_md = EVP_sha1();
3c0ef626 420 EVP_MD_CTX md;
421 char c = id;
422 int have;
e9a17296 423 int mdsz = EVP_MD_size(evp_md);
3c0ef626 424 u_char *digest = xmalloc(roundup(need, mdsz));
425
426 buffer_init(&b);
427 buffer_put_bignum2(&b, shared_secret);
428
429 /* K1 = HASH(K || H || "A" || session_id) */
430 EVP_DigestInit(&md, evp_md);
431 if (!(datafellows & SSH_BUG_DERIVEKEY))
432 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
433 EVP_DigestUpdate(&md, hash, mdsz);
434 EVP_DigestUpdate(&md, &c, 1);
435 EVP_DigestUpdate(&md, kex->session_id, kex->session_id_len);
436 EVP_DigestFinal(&md, digest, NULL);
437
438 /*
439 * expand key:
440 * Kn = HASH(K || H || K1 || K2 || ... || Kn-1)
441 * Key = K1 || K2 || ... || Kn
442 */
443 for (have = mdsz; need > have; have += mdsz) {
444 EVP_DigestInit(&md, evp_md);
445 if (!(datafellows & SSH_BUG_DERIVEKEY))
446 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
447 EVP_DigestUpdate(&md, hash, mdsz);
448 EVP_DigestUpdate(&md, digest, have);
449 EVP_DigestFinal(&md, digest + have, NULL);
450 }
451 buffer_free(&b);
452#ifdef DEBUG_KEX
453 fprintf(stderr, "key '%c'== ", c);
454 dump_digest("key", digest, need);
455#endif
456 return digest;
457}
458
459Newkeys *current_keys[MODE_MAX];
460
461#define NKEYS 6
462void
463kex_derive_keys(Kex *kex, u_char *hash, BIGNUM *shared_secret)
464{
465 u_char *keys[NKEYS];
466 int i, mode, ctos;
467
468 for (i = 0; i < NKEYS; i++)
469 keys[i] = derive_key(kex, 'A'+i, kex->we_need, hash, shared_secret);
470
1c14df9e 471 debug2("kex_derive_keys");
3c0ef626 472 for (mode = 0; mode < MODE_MAX; mode++) {
473 current_keys[mode] = kex->newkeys[mode];
474 kex->newkeys[mode] = NULL;
475 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
476 current_keys[mode]->enc.iv = keys[ctos ? 0 : 1];
477 current_keys[mode]->enc.key = keys[ctos ? 2 : 3];
478 current_keys[mode]->mac.key = keys[ctos ? 4 : 5];
479 }
480}
481
482Newkeys *
483kex_get_newkeys(int mode)
484{
485 Newkeys *ret;
486
487 ret = current_keys[mode];
488 current_keys[mode] = NULL;
489 return ret;
490}
491
1b56ff3d 492void
493derive_ssh1_session_id(BIGNUM *host_modulus, BIGNUM *server_modulus,
494 u_int8_t cookie[8], u_int8_t id[16])
495{
496 const EVP_MD *evp_md = EVP_md5();
497 EVP_MD_CTX md;
498 u_int8_t nbuf[2048], obuf[EVP_MAX_MD_SIZE];
499 int len;
500
501 EVP_DigestInit(&md, evp_md);
502
503 len = BN_num_bytes(host_modulus);
504 if (len < (512 / 8) || len > sizeof(nbuf))
505 fatal("%s: bad host modulus (len %d)", __func__, len);
506 BN_bn2bin(host_modulus, nbuf);
507 EVP_DigestUpdate(&md, nbuf, len);
508
509 len = BN_num_bytes(server_modulus);
510 if (len < (512 / 8) || len > sizeof(nbuf))
511 fatal("%s: bad server modulus (len %d)", __func__, len);
512 BN_bn2bin(server_modulus, nbuf);
513 EVP_DigestUpdate(&md, nbuf, len);
514
515 EVP_DigestUpdate(&md, cookie, 8);
516
517 EVP_DigestFinal(&md, obuf, NULL);
518 memcpy(id, obuf, 16);
519
520 memset(nbuf, 0, sizeof(nbuf));
521 memset(obuf, 0, sizeof(obuf));
522 memset(&md, 0, sizeof(md));
523}
524
3c0ef626 525#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
526void
527dump_digest(char *msg, u_char *digest, int len)
528{
529 int i;
530
531 fprintf(stderr, "%s\n", msg);
e9a17296 532 for (i = 0; i< len; i++) {
3c0ef626 533 fprintf(stderr, "%02x", digest[i]);
534 if (i%32 == 31)
535 fprintf(stderr, "\n");
536 else if (i%8 == 7)
537 fprintf(stderr, " ");
538 }
539 fprintf(stderr, "\n");
540}
541#endif
This page took 1.722224 seconds and 5 git commands to generate.