]> andersk Git - gssapi-openssh.git/blame - openssh/kex.c
add support for GsiAllowLimitedProxy option
[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"
08822d99 26RCSID("$OpenBSD: kex.c,v 1.65 2005/11/04 05:15:59 djm 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"
350391c5 43#include "monitor.h"
3c0ef626 44
5598e598 45#ifdef GSSAPI
46#include "ssh-gss.h"
47#endif
48
3c0ef626 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 */
473db5ab 56void
3c0ef626 57kex_prop2buf(Buffer *b, char *proposal[PROPOSAL_MAX])
58{
2ce0bfe4 59 u_int i;
3c0ef626 60
61 buffer_clear(b);
350391c5 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 **
8afc6a66 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);
8afc6a66 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{
2ce0bfe4 108 u_int i;
3c0ef626 109
110 for (i = 0; i < PROPOSAL_MAX; i++)
111 xfree(proposal[i]);
112 xfree(proposal);
113}
114
115static void
e9702f7d 116kex_protocol_error(int type, u_int32_t seq, void *ctxt)
3c0ef626 117{
e9702f7d 118 error("Hm, kex protocol error: type %d seq %u", type, seq);
3c0ef626 119}
120
121static void
e9702f7d 122kex_reset_dispatch(void)
3c0ef626 123{
e9702f7d 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{
e9702f7d 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
8afc6a66 139 debug("expecting SSH2_MSG_NEWKEYS");
e9702f7d 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{
7e82606e 155 u_int32_t rnd = 0;
350391c5 156 u_char *cookie;
2ce0bfe4 157 u_int i;
350391c5 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;
350391c5 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)
7e82606e 175 rnd = arc4random();
176 cookie[i] = rnd;
177 rnd >>= 8;
350391c5 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
e9702f7d 187kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
3c0ef626 188{
189 char *ptr;
2ce0bfe4 190 u_int i, dlen;
3c0ef626 191 Kex *kex = (Kex *)ctxt;
192
193 debug("SSH2_MSG_KEXINIT received");
194 if (kex == NULL)
195 fatal("kex_input_kexinit: no kex, cannot rekey");
196
197 ptr = packet_get_raw(&dlen);
198 buffer_append(&kex->peer, ptr, dlen);
199
200 /* discard packet */
201 for (i = 0; i < KEX_COOKIE_LEN; i++)
202 packet_get_char();
203 for (i = 0; i < PROPOSAL_MAX; i++)
204 xfree(packet_get_string(NULL));
276b07a3 205 (void) packet_get_char();
206 (void) packet_get_int();
e9702f7d 207 packet_check_eom();
3c0ef626 208
209 kex_kexinit_finish(kex);
210}
211
212Kex *
213kex_setup(char *proposal[PROPOSAL_MAX])
214{
215 Kex *kex;
216
217 kex = xmalloc(sizeof(*kex));
218 memset(kex, 0, sizeof(*kex));
219 buffer_init(&kex->peer);
220 buffer_init(&kex->my);
221 kex_prop2buf(&kex->my, proposal);
222 kex->done = 0;
223
224 kex_send_kexinit(kex); /* we start */
e9702f7d 225 kex_reset_dispatch();
3c0ef626 226
227 return kex;
228}
229
230static void
231kex_kexinit_finish(Kex *kex)
232{
233 if (!(kex->flags & KEX_INIT_SENT))
234 kex_send_kexinit(kex);
235
236 kex_choose_conf(kex);
237
8afc6a66 238 if (kex->kex_type >= 0 && kex->kex_type < KEX_MAX &&
239 kex->kex[kex->kex_type] != NULL) {
240 (kex->kex[kex->kex_type])(kex);
241 } else {
3c0ef626 242 fatal("Unsupported key exchange %d", kex->kex_type);
243 }
244}
245
246static void
247choose_enc(Enc *enc, char *client, char *server)
248{
249 char *name = match_list(client, server, NULL);
250 if (name == NULL)
251 fatal("no matching cipher found: client %s server %s", client, server);
e9702f7d 252 if ((enc->cipher = cipher_by_name(name)) == NULL)
3c0ef626 253 fatal("matching cipher is not supported: %s", name);
254 enc->name = name;
255 enc->enabled = 0;
256 enc->iv = NULL;
257 enc->key = NULL;
e9702f7d 258 enc->key_len = cipher_keylen(enc->cipher);
259 enc->block_size = cipher_blocksize(enc->cipher);
3c0ef626 260}
261static void
262choose_mac(Mac *mac, char *client, char *server)
263{
264 char *name = match_list(client, server, NULL);
265 if (name == NULL)
266 fatal("no matching mac found: client %s server %s", client, server);
267 if (mac_init(mac, name) < 0)
268 fatal("unsupported mac %s", name);
269 /* truncate the key */
270 if (datafellows & SSH_BUG_HMAC)
271 mac->key_len = 16;
272 mac->name = name;
273 mac->key = NULL;
274 mac->enabled = 0;
275}
276static void
277choose_comp(Comp *comp, char *client, char *server)
278{
279 char *name = match_list(client, server, NULL);
280 if (name == NULL)
281 fatal("no matching comp found: client %s server %s", client, server);
2ce0bfe4 282 if (strcmp(name, "zlib@openssh.com") == 0) {
283 comp->type = COMP_DELAYED;
284 } else if (strcmp(name, "zlib") == 0) {
285 comp->type = COMP_ZLIB;
3c0ef626 286 } else if (strcmp(name, "none") == 0) {
2ce0bfe4 287 comp->type = COMP_NONE;
3c0ef626 288 } else {
289 fatal("unsupported comp %s", name);
290 }
291 comp->name = name;
292}
293static void
294choose_kex(Kex *k, char *client, char *server)
295{
296 k->name = match_list(client, server, NULL);
297 if (k->name == NULL)
7cac2b65 298 fatal("no kex alg");
3c0ef626 299 if (strcmp(k->name, KEX_DH1) == 0) {
8afc6a66 300 k->kex_type = KEX_DH_GRP1_SHA1;
08822d99 301 k->evp_md = EVP_sha1();
7e82606e 302 } else if (strcmp(k->name, KEX_DH14) == 0) {
303 k->kex_type = KEX_DH_GRP14_SHA1;
08822d99 304 k->evp_md = EVP_sha1();
305 } else if (strcmp(k->name, KEX_DHGEX_SHA1) == 0) {
8afc6a66 306 k->kex_type = KEX_DH_GEX_SHA1;
08822d99 307 k->evp_md = EVP_sha1();
5598e598 308#ifdef GSSAPI
fe4ad273 309 } else if (strncmp(k->name, KEX_GSS_GEX_SHA1_ID,
310 sizeof(KEX_GSS_GEX_SHA1_ID)-1) == 0) {
311 k->kex_type = KEX_GSS_GEX_SHA1;
08822d99 312 k->evp_md = EVP_sha1();
c06c9ae8 313 } else if (strncmp(k->name, KEX_GSS_GRP1_SHA1_ID,
fe4ad273 314 sizeof(KEX_GSS_GRP1_SHA1_ID)-1) == 0) {
8afc6a66 315 k->kex_type = KEX_GSS_GRP1_SHA1;
08822d99 316 k->evp_md = EVP_sha1();
5598e598 317#endif
3c0ef626 318 } else
319 fatal("bad kex alg %s", k->name);
320}
08822d99 321
3c0ef626 322static void
323choose_hostkeyalg(Kex *k, char *client, char *server)
324{
325 char *hostkeyalg = match_list(client, server, NULL);
326 if (hostkeyalg == NULL)
327 fatal("no hostkey alg");
328 k->hostkey_type = key_type_from_name(hostkeyalg);
329 if (k->hostkey_type == KEY_UNSPEC)
330 fatal("bad hostkey alg '%s'", hostkeyalg);
331 xfree(hostkeyalg);
332}
333
540d72c3 334static int
8afc6a66 335proposals_match(char *my[PROPOSAL_MAX], char *peer[PROPOSAL_MAX])
336{
337 static int check[] = {
338 PROPOSAL_KEX_ALGS, PROPOSAL_SERVER_HOST_KEY_ALGS, -1
339 };
340 int *idx;
341 char *p;
342
343 for (idx = &check[0]; *idx != -1; idx++) {
344 if ((p = strchr(my[*idx], ',')) != NULL)
345 *p = '\0';
346 if ((p = strchr(peer[*idx], ',')) != NULL)
347 *p = '\0';
348 if (strcmp(my[*idx], peer[*idx]) != 0) {
349 debug2("proposal mismatch: my %s peer %s",
350 my[*idx], peer[*idx]);
351 return (0);
352 }
353 }
354 debug2("proposals match");
355 return (1);
356}
357
3c0ef626 358static void
359kex_choose_conf(Kex *kex)
360{
361 Newkeys *newkeys;
362 char **my, **peer;
363 char **cprop, **sprop;
364 int nenc, nmac, ncomp;
2ce0bfe4 365 u_int mode, ctos, need;
8afc6a66 366 int first_kex_follows, type;
3c0ef626 367
8afc6a66 368 my = kex_buf2prop(&kex->my, NULL);
369 peer = kex_buf2prop(&kex->peer, &first_kex_follows);
3c0ef626 370
371 if (kex->server) {
372 cprop=peer;
373 sprop=my;
374 } else {
375 cprop=my;
376 sprop=peer;
377 }
378
379 /* Algorithm Negotiation */
380 for (mode = 0; mode < MODE_MAX; mode++) {
381 newkeys = xmalloc(sizeof(*newkeys));
382 memset(newkeys, 0, sizeof(*newkeys));
383 kex->newkeys[mode] = newkeys;
384 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
385 nenc = ctos ? PROPOSAL_ENC_ALGS_CTOS : PROPOSAL_ENC_ALGS_STOC;
386 nmac = ctos ? PROPOSAL_MAC_ALGS_CTOS : PROPOSAL_MAC_ALGS_STOC;
387 ncomp = ctos ? PROPOSAL_COMP_ALGS_CTOS : PROPOSAL_COMP_ALGS_STOC;
388 choose_enc (&newkeys->enc, cprop[nenc], sprop[nenc]);
389 choose_mac (&newkeys->mac, cprop[nmac], sprop[nmac]);
390 choose_comp(&newkeys->comp, cprop[ncomp], sprop[ncomp]);
391 debug("kex: %s %s %s %s",
392 ctos ? "client->server" : "server->client",
393 newkeys->enc.name,
394 newkeys->mac.name,
395 newkeys->comp.name);
396 }
397 choose_kex(kex, cprop[PROPOSAL_KEX_ALGS], sprop[PROPOSAL_KEX_ALGS]);
398 choose_hostkeyalg(kex, cprop[PROPOSAL_SERVER_HOST_KEY_ALGS],
399 sprop[PROPOSAL_SERVER_HOST_KEY_ALGS]);
400 need = 0;
401 for (mode = 0; mode < MODE_MAX; mode++) {
402 newkeys = kex->newkeys[mode];
e9702f7d 403 if (need < newkeys->enc.key_len)
404 need = newkeys->enc.key_len;
405 if (need < newkeys->enc.block_size)
406 need = newkeys->enc.block_size;
3c0ef626 407 if (need < newkeys->mac.key_len)
408 need = newkeys->mac.key_len;
409 }
410 /* XXX need runden? */
411 kex->we_need = need;
412
8afc6a66 413 /* ignore the next message if the proposals do not match */
540d72c3 414 if (first_kex_follows && !proposals_match(my, peer) &&
2ce0bfe4 415 !(datafellows & SSH_BUG_FIRSTKEX)) {
8afc6a66 416 type = packet_read();
417 debug2("skipping next packet (type %u)", type);
418 }
419
3c0ef626 420 kex_prop_free(my);
421 kex_prop_free(peer);
422}
423
424static u_char *
08822d99 425derive_key(Kex *kex, int id, u_int need, u_char *hash, u_int hashlen,
426 BIGNUM *shared_secret)
3c0ef626 427{
428 Buffer b;
3c0ef626 429 EVP_MD_CTX md;
430 char c = id;
2ce0bfe4 431 u_int have;
08822d99 432 int mdsz;
2ce0bfe4 433 u_char *digest;
434
08822d99 435 if ((mdsz = EVP_MD_size(kex->evp_md)) <= 0)
436 fatal("bad kex md size %d", mdsz);
437 digest = xmalloc(roundup(need, mdsz));
3c0ef626 438
439 buffer_init(&b);
440 buffer_put_bignum2(&b, shared_secret);
441
442 /* K1 = HASH(K || H || "A" || session_id) */
08822d99 443 EVP_DigestInit(&md, kex->evp_md);
3c0ef626 444 if (!(datafellows & SSH_BUG_DERIVEKEY))
445 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
08822d99 446 EVP_DigestUpdate(&md, hash, hashlen);
3c0ef626 447 EVP_DigestUpdate(&md, &c, 1);
448 EVP_DigestUpdate(&md, kex->session_id, kex->session_id_len);
449 EVP_DigestFinal(&md, digest, NULL);
450
451 /*
452 * expand key:
453 * Kn = HASH(K || H || K1 || K2 || ... || Kn-1)
454 * Key = K1 || K2 || ... || Kn
455 */
456 for (have = mdsz; need > have; have += mdsz) {
08822d99 457 EVP_DigestInit(&md, kex->evp_md);
3c0ef626 458 if (!(datafellows & SSH_BUG_DERIVEKEY))
459 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
08822d99 460 EVP_DigestUpdate(&md, hash, hashlen);
3c0ef626 461 EVP_DigestUpdate(&md, digest, have);
462 EVP_DigestFinal(&md, digest + have, NULL);
463 }
464 buffer_free(&b);
465#ifdef DEBUG_KEX
466 fprintf(stderr, "key '%c'== ", c);
467 dump_digest("key", digest, need);
468#endif
469 return digest;
470}
471
472Newkeys *current_keys[MODE_MAX];
473
474#define NKEYS 6
475void
08822d99 476kex_derive_keys(Kex *kex, u_char *hash, u_int hashlen, BIGNUM *shared_secret)
3c0ef626 477{
478 u_char *keys[NKEYS];
2ce0bfe4 479 u_int i, mode, ctos;
3c0ef626 480
08822d99 481 for (i = 0; i < NKEYS; i++) {
482 keys[i] = derive_key(kex, 'A'+i, kex->we_need, hash, hashlen,
483 shared_secret);
484 }
3c0ef626 485
8afc6a66 486 debug2("kex_derive_keys");
3c0ef626 487 for (mode = 0; mode < MODE_MAX; mode++) {
488 current_keys[mode] = kex->newkeys[mode];
489 kex->newkeys[mode] = NULL;
490 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
491 current_keys[mode]->enc.iv = keys[ctos ? 0 : 1];
492 current_keys[mode]->enc.key = keys[ctos ? 2 : 3];
493 current_keys[mode]->mac.key = keys[ctos ? 4 : 5];
494 }
495}
496
497Newkeys *
498kex_get_newkeys(int mode)
499{
500 Newkeys *ret;
501
502 ret = current_keys[mode];
503 current_keys[mode] = NULL;
504 return ret;
505}
506
7e82606e 507void
508derive_ssh1_session_id(BIGNUM *host_modulus, BIGNUM *server_modulus,
509 u_int8_t cookie[8], u_int8_t id[16])
510{
511 const EVP_MD *evp_md = EVP_md5();
512 EVP_MD_CTX md;
513 u_int8_t nbuf[2048], obuf[EVP_MAX_MD_SIZE];
514 int len;
515
516 EVP_DigestInit(&md, evp_md);
517
518 len = BN_num_bytes(host_modulus);
2ce0bfe4 519 if (len < (512 / 8) || (u_int)len > sizeof(nbuf))
7e82606e 520 fatal("%s: bad host modulus (len %d)", __func__, len);
521 BN_bn2bin(host_modulus, nbuf);
522 EVP_DigestUpdate(&md, nbuf, len);
523
524 len = BN_num_bytes(server_modulus);
2ce0bfe4 525 if (len < (512 / 8) || (u_int)len > sizeof(nbuf))
7e82606e 526 fatal("%s: bad server modulus (len %d)", __func__, len);
527 BN_bn2bin(server_modulus, nbuf);
528 EVP_DigestUpdate(&md, nbuf, len);
529
530 EVP_DigestUpdate(&md, cookie, 8);
531
532 EVP_DigestFinal(&md, obuf, NULL);
533 memcpy(id, obuf, 16);
534
535 memset(nbuf, 0, sizeof(nbuf));
536 memset(obuf, 0, sizeof(obuf));
537 memset(&md, 0, sizeof(md));
538}
539
3c0ef626 540#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
541void
542dump_digest(char *msg, u_char *digest, int len)
543{
2ce0bfe4 544 u_int i;
3c0ef626 545
546 fprintf(stderr, "%s\n", msg);
e9702f7d 547 for (i = 0; i< len; i++) {
3c0ef626 548 fprintf(stderr, "%02x", digest[i]);
549 if (i%32 == 31)
550 fprintf(stderr, "\n");
551 else if (i%8 == 7)
552 fprintf(stderr, " ");
553 }
554 fprintf(stderr, "\n");
555}
556#endif
This page took 0.151101 seconds and 5 git commands to generate.