]> andersk Git - openssh.git/blame - kex.c
- provos@cvs.openbsd.org 2002/03/18 17:31:54
[openssh.git] / kex.c
CommitLineData
4f8c6159 1/*
a96070d4 2 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
4f8c6159 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.
4f8c6159 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"
714954dc 26RCSID("$OpenBSD: kex.c,v 1.47 2002/02/28 15:46:33 markus Exp $");
4f8c6159 27
28#include <openssl/crypto.h>
4f8c6159 29
42f11eb2 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"
4f8c6159 37#include "kex.h"
fa08c86b 38#include "key.h"
42f11eb2 39#include "log.h"
b2552997 40#include "mac.h"
cab80f75 41#include "match.h"
a5c9ffdb 42#include "dispatch.h"
4f8c6159 43
71276795 44#define KEX_COOKIE_LEN 16
45
396c147e 46/* prototype */
47static void kex_kexinit_finish(Kex *);
48static void kex_choose_conf(Kex *);
a5c9ffdb 49
50/* put algorithm proposal into buffer */
396c147e 51static void
a5c9ffdb 52kex_prop2buf(Buffer *b, char *proposal[PROPOSAL_MAX])
4f8c6159 53{
4f8c6159 54 u_int32_t rand = 0;
55 int i;
a5c9ffdb 56
57 buffer_clear(b);
71276795 58 for (i = 0; i < KEX_COOKIE_LEN; i++) {
4f8c6159 59 if (i % 4 == 0)
60 rand = arc4random();
a5c9ffdb 61 buffer_put_char(b, rand & 0xff);
4f8c6159 62 rand >>= 8;
63 }
4f8c6159 64 for (i = 0; i < PROPOSAL_MAX; i++)
a5c9ffdb 65 buffer_put_cstring(b, proposal[i]);
66 buffer_put_char(b, 0); /* first_kex_packet_follows */
67 buffer_put_int(b, 0); /* uint32 reserved */
4f8c6159 68}
69
a5c9ffdb 70/* parse buffer and return algorithm proposal */
396c147e 71static char **
a5c9ffdb 72kex_buf2prop(Buffer *raw)
71276795 73{
a5c9ffdb 74 Buffer b;
71276795 75 int i;
a5c9ffdb 76 char **proposal;
71276795 77
a5c9ffdb 78 proposal = xmalloc(PROPOSAL_MAX * sizeof(char *));
79
80 buffer_init(&b);
81 buffer_append(&b, buffer_ptr(raw), buffer_len(raw));
71276795 82 /* skip cookie */
83 for (i = 0; i < KEX_COOKIE_LEN; i++)
a5c9ffdb 84 buffer_get_char(&b);
71276795 85 /* extract kex init proposal strings */
86 for (i = 0; i < PROPOSAL_MAX; i++) {
a5c9ffdb 87 proposal[i] = buffer_get_string(&b,NULL);
88 debug2("kex_parse_kexinit: %s", proposal[i]);
71276795 89 }
a5c9ffdb 90 /* first kex follows / reserved */
91 i = buffer_get_char(&b);
92 debug2("kex_parse_kexinit: first_kex_follows %d ", i);
93 i = buffer_get_int(&b);
94 debug2("kex_parse_kexinit: reserved %d ", i);
95 buffer_free(&b);
96 return proposal;
71276795 97}
98
396c147e 99static void
a5c9ffdb 100kex_prop_free(char **proposal)
4f8c6159 101{
102 int i;
a5c9ffdb 103
104 for (i = 0; i < PROPOSAL_MAX; i++)
105 xfree(proposal[i]);
106 xfree(proposal);
4f8c6159 107}
108
396c147e 109static void
7819b5c3 110kex_protocol_error(int type, u_int32_t seq, void *ctxt)
4f8c6159 111{
7819b5c3 112 error("Hm, kex protocol error: type %d seq %u", type, seq);
a5c9ffdb 113}
4f8c6159 114
396c147e 115static void
9d726f16 116kex_reset_dispatch(void)
7a37c112 117{
6367063f 118 dispatch_range(SSH2_MSG_TRANSPORT_MIN,
119 SSH2_MSG_TRANSPORT_MAX, &kex_protocol_error);
9d726f16 120 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
7a37c112 121}
122
a5c9ffdb 123void
d8ee838b 124kex_finish(Kex *kex)
a5c9ffdb 125{
9d726f16 126 kex_reset_dispatch();
d8ee838b 127
a5c9ffdb 128 packet_start(SSH2_MSG_NEWKEYS);
129 packet_send();
130 /* packet_write_wait(); */
131 debug("SSH2_MSG_NEWKEYS sent");
4f8c6159 132
cd332296 133 debug("waiting for SSH2_MSG_NEWKEYS");
54a5250f 134 packet_read_expect(SSH2_MSG_NEWKEYS);
b967d870 135 packet_check_eom();
a5c9ffdb 136 debug("SSH2_MSG_NEWKEYS received");
a7ca6275 137
c422989b 138 kex->done = 1;
a5c9ffdb 139 buffer_clear(&kex->peer);
d1ac6175 140 /* buffer_clear(&kex->my); */
a5c9ffdb 141 kex->flags &= ~KEX_INIT_SENT;
a7ca6275 142 xfree(kex->name);
143 kex->name = NULL;
4f8c6159 144}
145
a5c9ffdb 146void
147kex_send_kexinit(Kex *kex)
94ec8c6b 148{
7a37c112 149 if (kex == NULL) {
150 error("kex_send_kexinit: no kex, cannot rekey");
151 return;
152 }
d8ee838b 153 if (kex->flags & KEX_INIT_SENT) {
154 debug("KEX_INIT_SENT");
155 return;
156 }
c422989b 157 kex->done = 0;
a5c9ffdb 158 packet_start(SSH2_MSG_KEXINIT);
159 packet_put_raw(buffer_ptr(&kex->my), buffer_len(&kex->my));
160 packet_send();
161 debug("SSH2_MSG_KEXINIT sent");
162 kex->flags |= KEX_INIT_SENT;
163}
2b87da3b 164
a5c9ffdb 165void
7819b5c3 166kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
a5c9ffdb 167{
168 char *ptr;
169 int dlen;
bbb4cc1b 170 int i;
a5c9ffdb 171 Kex *kex = (Kex *)ctxt;
94ec8c6b 172
a5c9ffdb 173 debug("SSH2_MSG_KEXINIT received");
7a37c112 174 if (kex == NULL)
175 fatal("kex_input_kexinit: no kex, cannot rekey");
94ec8c6b 176
a5c9ffdb 177 ptr = packet_get_raw(&dlen);
178 buffer_append(&kex->peer, ptr, dlen);
94ec8c6b 179
bbb4cc1b 180 /* discard packet */
181 for (i = 0; i < KEX_COOKIE_LEN; i++)
182 packet_get_char();
183 for (i = 0; i < PROPOSAL_MAX; i++)
184 xfree(packet_get_string(NULL));
185 packet_get_char();
186 packet_get_int();
95500969 187 packet_check_eom();
bbb4cc1b 188
a5c9ffdb 189 kex_kexinit_finish(kex);
94ec8c6b 190}
191
a5c9ffdb 192Kex *
d8ee838b 193kex_setup(char *proposal[PROPOSAL_MAX])
4f8c6159 194{
a5c9ffdb 195 Kex *kex;
4f8c6159 196
a5c9ffdb 197 kex = xmalloc(sizeof(*kex));
198 memset(kex, 0, sizeof(*kex));
199 buffer_init(&kex->peer);
200 buffer_init(&kex->my);
201 kex_prop2buf(&kex->my, proposal);
c422989b 202 kex->done = 0;
a5c9ffdb 203
204 kex_send_kexinit(kex); /* we start */
9d726f16 205 kex_reset_dispatch();
7a37c112 206
a5c9ffdb 207 return kex;
208}
4f8c6159 209
396c147e 210static void
a5c9ffdb 211kex_kexinit_finish(Kex *kex)
212{
213 if (!(kex->flags & KEX_INIT_SENT))
214 kex_send_kexinit(kex);
215
216 kex_choose_conf(kex);
217
6aacefa7 218 switch (kex->kex_type) {
a5c9ffdb 219 case DH_GRP1_SHA1:
220 kexdh(kex);
221 break;
222 case DH_GEX_SHA1:
223 kexgex(kex);
224 break;
225 default:
226 fatal("Unsupported key exchange %d", kex->kex_type);
4f8c6159 227 }
4f8c6159 228}
229
396c147e 230static void
4f8c6159 231choose_enc(Enc *enc, char *client, char *server)
232{
cab80f75 233 char *name = match_list(client, server, NULL);
4f8c6159 234 if (name == NULL)
235 fatal("no matching cipher found: client %s server %s", client, server);
3ee832e5 236 if ((enc->cipher = cipher_by_name(name)) == NULL)
94ec8c6b 237 fatal("matching cipher is not supported: %s", name);
4f8c6159 238 enc->name = name;
239 enc->enabled = 0;
240 enc->iv = NULL;
241 enc->key = NULL;
3ee832e5 242 enc->key_len = cipher_keylen(enc->cipher);
243 enc->block_size = cipher_blocksize(enc->cipher);
4f8c6159 244}
396c147e 245static void
4f8c6159 246choose_mac(Mac *mac, char *client, char *server)
247{
cab80f75 248 char *name = match_list(client, server, NULL);
4f8c6159 249 if (name == NULL)
250 fatal("no matching mac found: client %s server %s", client, server);
b2552997 251 if (mac_init(mac, name) < 0)
4f8c6159 252 fatal("unsupported mac %s", name);
b2552997 253 /* truncate the key */
254 if (datafellows & SSH_BUG_HMAC)
255 mac->key_len = 16;
4f8c6159 256 mac->name = name;
4f8c6159 257 mac->key = NULL;
258 mac->enabled = 0;
259}
396c147e 260static void
4f8c6159 261choose_comp(Comp *comp, char *client, char *server)
262{
cab80f75 263 char *name = match_list(client, server, NULL);
4f8c6159 264 if (name == NULL)
265 fatal("no matching comp found: client %s server %s", client, server);
266 if (strcmp(name, "zlib") == 0) {
267 comp->type = 1;
268 } else if (strcmp(name, "none") == 0) {
269 comp->type = 0;
270 } else {
271 fatal("unsupported comp %s", name);
272 }
273 comp->name = name;
274}
396c147e 275static void
4f8c6159 276choose_kex(Kex *k, char *client, char *server)
277{
cab80f75 278 k->name = match_list(client, server, NULL);
4f8c6159 279 if (k->name == NULL)
280 fatal("no kex alg");
94ec8c6b 281 if (strcmp(k->name, KEX_DH1) == 0) {
282 k->kex_type = DH_GRP1_SHA1;
283 } else if (strcmp(k->name, KEX_DHGEX) == 0) {
284 k->kex_type = DH_GEX_SHA1;
285 } else
4f8c6159 286 fatal("bad kex alg %s", k->name);
287}
396c147e 288static void
4f8c6159 289choose_hostkeyalg(Kex *k, char *client, char *server)
290{
cab80f75 291 char *hostkeyalg = match_list(client, server, NULL);
fa08c86b 292 if (hostkeyalg == NULL)
4f8c6159 293 fatal("no hostkey alg");
fa08c86b 294 k->hostkey_type = key_type_from_name(hostkeyalg);
295 if (k->hostkey_type == KEY_UNSPEC)
296 fatal("bad hostkey alg '%s'", hostkeyalg);
eea39c02 297 xfree(hostkeyalg);
4f8c6159 298}
299
396c147e 300static void
d1ac6175 301kex_choose_conf(Kex *kex)
4f8c6159 302{
d1ac6175 303 Newkeys *newkeys;
a5c9ffdb 304 char **my, **peer;
305 char **cprop, **sprop;
d1ac6175 306 int nenc, nmac, ncomp;
4f8c6159 307 int mode;
308 int ctos; /* direction: if true client-to-server */
309 int need;
4f8c6159 310
d1ac6175 311 my = kex_buf2prop(&kex->my);
312 peer = kex_buf2prop(&kex->peer);
a5c9ffdb 313
d1ac6175 314 if (kex->server) {
a5c9ffdb 315 cprop=peer;
316 sprop=my;
317 } else {
318 cprop=my;
319 sprop=peer;
320 }
4f8c6159 321
c422989b 322 /* Algorithm Negotiation */
4f8c6159 323 for (mode = 0; mode < MODE_MAX; mode++) {
d1ac6175 324 newkeys = xmalloc(sizeof(*newkeys));
325 memset(newkeys, 0, sizeof(*newkeys));
c422989b 326 kex->newkeys[mode] = newkeys;
d1ac6175 327 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
4f8c6159 328 nenc = ctos ? PROPOSAL_ENC_ALGS_CTOS : PROPOSAL_ENC_ALGS_STOC;
329 nmac = ctos ? PROPOSAL_MAC_ALGS_CTOS : PROPOSAL_MAC_ALGS_STOC;
330 ncomp = ctos ? PROPOSAL_COMP_ALGS_CTOS : PROPOSAL_COMP_ALGS_STOC;
d1ac6175 331 choose_enc (&newkeys->enc, cprop[nenc], sprop[nenc]);
332 choose_mac (&newkeys->mac, cprop[nmac], sprop[nmac]);
333 choose_comp(&newkeys->comp, cprop[ncomp], sprop[ncomp]);
4f8c6159 334 debug("kex: %s %s %s %s",
335 ctos ? "client->server" : "server->client",
d1ac6175 336 newkeys->enc.name,
337 newkeys->mac.name,
338 newkeys->comp.name);
4f8c6159 339 }
d1ac6175 340 choose_kex(kex, cprop[PROPOSAL_KEX_ALGS], sprop[PROPOSAL_KEX_ALGS]);
341 choose_hostkeyalg(kex, cprop[PROPOSAL_SERVER_HOST_KEY_ALGS],
4f8c6159 342 sprop[PROPOSAL_SERVER_HOST_KEY_ALGS]);
4f8c6159 343 need = 0;
344 for (mode = 0; mode < MODE_MAX; mode++) {
c422989b 345 newkeys = kex->newkeys[mode];
3ee832e5 346 if (need < newkeys->enc.key_len)
347 need = newkeys->enc.key_len;
348 if (need < newkeys->enc.block_size)
349 need = newkeys->enc.block_size;
d1ac6175 350 if (need < newkeys->mac.key_len)
351 need = newkeys->mac.key_len;
4f8c6159 352 }
71276795 353 /* XXX need runden? */
d1ac6175 354 kex->we_need = need;
a5c9ffdb 355
356 kex_prop_free(my);
357 kex_prop_free(peer);
a5c9ffdb 358}
359
396c147e 360static u_char *
d1ac6175 361derive_key(Kex *kex, int id, int need, u_char *hash, BIGNUM *shared_secret)
a5c9ffdb 362{
363 Buffer b;
714954dc 364 const EVP_MD *evp_md = EVP_sha1();
a5c9ffdb 365 EVP_MD_CTX md;
366 char c = id;
367 int have;
a209a158 368 int mdsz = EVP_MD_size(evp_md);
c422989b 369 u_char *digest = xmalloc(roundup(need, mdsz));
a5c9ffdb 370
371 buffer_init(&b);
372 buffer_put_bignum2(&b, shared_secret);
373
c422989b 374 /* K1 = HASH(K || H || "A" || session_id) */
a5c9ffdb 375 EVP_DigestInit(&md, evp_md);
eef7adcb 376 if (!(datafellows & SSH_BUG_DERIVEKEY))
377 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
c422989b 378 EVP_DigestUpdate(&md, hash, mdsz);
379 EVP_DigestUpdate(&md, &c, 1);
d1ac6175 380 EVP_DigestUpdate(&md, kex->session_id, kex->session_id_len);
a5c9ffdb 381 EVP_DigestFinal(&md, digest, NULL);
382
c422989b 383 /*
384 * expand key:
385 * Kn = HASH(K || H || K1 || K2 || ... || Kn-1)
386 * Key = K1 || K2 || ... || Kn
387 */
a5c9ffdb 388 for (have = mdsz; need > have; have += mdsz) {
389 EVP_DigestInit(&md, evp_md);
eef7adcb 390 if (!(datafellows & SSH_BUG_DERIVEKEY))
391 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
a5c9ffdb 392 EVP_DigestUpdate(&md, hash, mdsz);
393 EVP_DigestUpdate(&md, digest, have);
394 EVP_DigestFinal(&md, digest + have, NULL);
395 }
396 buffer_free(&b);
397#ifdef DEBUG_KEX
398 fprintf(stderr, "key '%c'== ", c);
399 dump_digest("key", digest, need);
400#endif
401 return digest;
4f8c6159 402}
403
c422989b 404Newkeys *current_keys[MODE_MAX];
d1ac6175 405
cab80f75 406#define NKEYS 6
a5c9ffdb 407void
d1ac6175 408kex_derive_keys(Kex *kex, u_char *hash, BIGNUM *shared_secret)
4f8c6159 409{
1e3b8b07 410 u_char *keys[NKEYS];
d1ac6175 411 int i, mode, ctos;
4f8c6159 412
413 for (i = 0; i < NKEYS; i++)
d1ac6175 414 keys[i] = derive_key(kex, 'A'+i, kex->we_need, hash, shared_secret);
4f8c6159 415
d1ac6175 416 debug("kex_derive_keys");
4f8c6159 417 for (mode = 0; mode < MODE_MAX; mode++) {
c422989b 418 current_keys[mode] = kex->newkeys[mode];
419 kex->newkeys[mode] = NULL;
d1ac6175 420 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
c422989b 421 current_keys[mode]->enc.iv = keys[ctos ? 0 : 1];
422 current_keys[mode]->enc.key = keys[ctos ? 2 : 3];
423 current_keys[mode]->mac.key = keys[ctos ? 4 : 5];
4f8c6159 424 }
4f8c6159 425}
a5c9ffdb 426
d1ac6175 427Newkeys *
428kex_get_newkeys(int mode)
429{
c422989b 430 Newkeys *ret;
431
432 ret = current_keys[mode];
433 current_keys[mode] = NULL;
434 return ret;
d1ac6175 435}
436
a5c9ffdb 437#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
438void
439dump_digest(char *msg, u_char *digest, int len)
440{
441 int i;
442
443 fprintf(stderr, "%s\n", msg);
6aacefa7 444 for (i = 0; i< len; i++) {
a5c9ffdb 445 fprintf(stderr, "%02x", digest[i]);
446 if (i%32 == 31)
447 fprintf(stderr, "\n");
448 else if (i%8 == 7)
449 fprintf(stderr, " ");
450 }
451 fprintf(stderr, "\n");
452}
453#endif
This page took 0.224232 seconds and 5 git commands to generate.