1 /* $OpenBSD: kex.c,v 1.76 2006/08/03 03:34:42 deraadt Exp $ */
3 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #include <sys/param.h>
35 #include <openssl/crypto.h>
51 #define KEX_COOKIE_LEN 16
53 #if OPENSSL_VERSION_NUMBER >= 0x00907000L
54 # if defined(HAVE_EVP_SHA256)
55 # define evp_ssh_sha256 EVP_sha256
57 extern const EVP_MD
*evp_ssh_sha256(void);
62 static void kex_kexinit_finish(Kex
*);
63 static void kex_choose_conf(Kex
*);
65 /* put algorithm proposal into buffer */
67 kex_prop2buf(Buffer
*b
, char *proposal
[PROPOSAL_MAX
])
73 * add a dummy cookie, the cookie will be overwritten by
74 * kex_send_kexinit(), each time a kexinit is set
76 for (i
= 0; i
< KEX_COOKIE_LEN
; i
++)
77 buffer_put_char(b
, 0);
78 for (i
= 0; i
< PROPOSAL_MAX
; i
++)
79 buffer_put_cstring(b
, proposal
[i
]);
80 buffer_put_char(b
, 0); /* first_kex_packet_follows */
81 buffer_put_int(b
, 0); /* uint32 reserved */
84 /* parse buffer and return algorithm proposal */
86 kex_buf2prop(Buffer
*raw
, int *first_kex_follows
)
92 proposal
= xcalloc(PROPOSAL_MAX
, sizeof(char *));
95 buffer_append(&b
, buffer_ptr(raw
), buffer_len(raw
));
97 for (i
= 0; i
< KEX_COOKIE_LEN
; i
++)
99 /* extract kex init proposal strings */
100 for (i
= 0; i
< PROPOSAL_MAX
; i
++) {
101 proposal
[i
] = buffer_get_string(&b
,NULL
);
102 debug2("kex_parse_kexinit: %s", proposal
[i
]);
104 /* first kex follows / reserved */
105 i
= buffer_get_char(&b
);
106 if (first_kex_follows
!= NULL
)
107 *first_kex_follows
= i
;
108 debug2("kex_parse_kexinit: first_kex_follows %d ", i
);
109 i
= buffer_get_int(&b
);
110 debug2("kex_parse_kexinit: reserved %d ", i
);
116 kex_prop_free(char **proposal
)
120 for (i
= 0; i
< PROPOSAL_MAX
; i
++)
126 kex_protocol_error(int type
, u_int32_t seq
, void *ctxt
)
128 error("Hm, kex protocol error: type %d seq %u", type
, seq
);
132 kex_reset_dispatch(void)
134 dispatch_range(SSH2_MSG_TRANSPORT_MIN
,
135 SSH2_MSG_TRANSPORT_MAX
, &kex_protocol_error
);
136 dispatch_set(SSH2_MSG_KEXINIT
, &kex_input_kexinit
);
142 kex_reset_dispatch();
144 packet_start(SSH2_MSG_NEWKEYS
);
146 /* packet_write_wait(); */
147 debug("SSH2_MSG_NEWKEYS sent");
149 debug("expecting SSH2_MSG_NEWKEYS");
150 packet_read_expect(SSH2_MSG_NEWKEYS
);
152 debug("SSH2_MSG_NEWKEYS received");
155 buffer_clear(&kex
->peer
);
156 /* buffer_clear(&kex->my); */
157 kex
->flags
&= ~KEX_INIT_SENT
;
163 kex_send_kexinit(Kex
*kex
)
170 error("kex_send_kexinit: no kex, cannot rekey");
173 if (kex
->flags
& KEX_INIT_SENT
) {
174 debug("KEX_INIT_SENT");
179 /* generate a random cookie */
180 if (buffer_len(&kex
->my
) < KEX_COOKIE_LEN
)
181 fatal("kex_send_kexinit: kex proposal too short");
182 cookie
= buffer_ptr(&kex
->my
);
183 for (i
= 0; i
< KEX_COOKIE_LEN
; i
++) {
189 packet_start(SSH2_MSG_KEXINIT
);
190 packet_put_raw(buffer_ptr(&kex
->my
), buffer_len(&kex
->my
));
192 debug("SSH2_MSG_KEXINIT sent");
193 kex
->flags
|= KEX_INIT_SENT
;
197 kex_input_kexinit(int type
, u_int32_t seq
, void *ctxt
)
201 Kex
*kex
= (Kex
*)ctxt
;
203 debug("SSH2_MSG_KEXINIT received");
205 fatal("kex_input_kexinit: no kex, cannot rekey");
207 ptr
= packet_get_raw(&dlen
);
208 buffer_append(&kex
->peer
, ptr
, dlen
);
211 for (i
= 0; i
< KEX_COOKIE_LEN
; i
++)
213 for (i
= 0; i
< PROPOSAL_MAX
; i
++)
214 xfree(packet_get_string(NULL
));
215 (void) packet_get_char();
216 (void) packet_get_int();
219 kex_kexinit_finish(kex
);
223 kex_setup(char *proposal
[PROPOSAL_MAX
])
227 kex
= xcalloc(1, sizeof(*kex
));
228 buffer_init(&kex
->peer
);
229 buffer_init(&kex
->my
);
230 kex_prop2buf(&kex
->my
, proposal
);
233 kex_send_kexinit(kex
); /* we start */
234 kex_reset_dispatch();
240 kex_kexinit_finish(Kex
*kex
)
242 if (!(kex
->flags
& KEX_INIT_SENT
))
243 kex_send_kexinit(kex
);
245 kex_choose_conf(kex
);
247 if (kex
->kex_type
>= 0 && kex
->kex_type
< KEX_MAX
&&
248 kex
->kex
[kex
->kex_type
] != NULL
) {
249 (kex
->kex
[kex
->kex_type
])(kex
);
251 fatal("Unsupported key exchange %d", kex
->kex_type
);
256 choose_enc(Enc
*enc
, char *client
, char *server
)
258 char *name
= match_list(client
, server
, NULL
);
260 fatal("no matching cipher found: client %s server %s", client
, server
);
261 if ((enc
->cipher
= cipher_by_name(name
)) == NULL
)
262 fatal("matching cipher is not supported: %s", name
);
267 enc
->key_len
= cipher_keylen(enc
->cipher
);
268 enc
->block_size
= cipher_blocksize(enc
->cipher
);
272 choose_mac(Mac
*mac
, char *client
, char *server
)
274 char *name
= match_list(client
, server
, NULL
);
276 fatal("no matching mac found: client %s server %s", client
, server
);
277 if (mac_init(mac
, name
) < 0)
278 fatal("unsupported mac %s", name
);
279 /* truncate the key */
280 if (datafellows
& SSH_BUG_HMAC
)
288 choose_comp(Comp
*comp
, char *client
, char *server
)
290 char *name
= match_list(client
, server
, NULL
);
292 fatal("no matching comp found: client %s server %s", client
, server
);
293 if (strcmp(name
, "zlib@openssh.com") == 0) {
294 comp
->type
= COMP_DELAYED
;
295 } else if (strcmp(name
, "zlib") == 0) {
296 comp
->type
= COMP_ZLIB
;
297 } else if (strcmp(name
, "none") == 0) {
298 comp
->type
= COMP_NONE
;
300 fatal("unsupported comp %s", name
);
306 choose_kex(Kex
*k
, char *client
, char *server
)
308 k
->name
= match_list(client
, server
, NULL
);
311 if (strcmp(k
->name
, KEX_DH1
) == 0) {
312 k
->kex_type
= KEX_DH_GRP1_SHA1
;
313 k
->evp_md
= EVP_sha1();
314 } else if (strcmp(k
->name
, KEX_DH14
) == 0) {
315 k
->kex_type
= KEX_DH_GRP14_SHA1
;
316 k
->evp_md
= EVP_sha1();
317 } else if (strcmp(k
->name
, KEX_DHGEX_SHA1
) == 0) {
318 k
->kex_type
= KEX_DH_GEX_SHA1
;
319 k
->evp_md
= EVP_sha1();
320 #if OPENSSL_VERSION_NUMBER >= 0x00907000L
321 } else if (strcmp(k
->name
, KEX_DHGEX_SHA256
) == 0) {
322 k
->kex_type
= KEX_DH_GEX_SHA256
;
323 k
->evp_md
= evp_ssh_sha256();
326 fatal("bad kex alg %s", k
->name
);
330 choose_hostkeyalg(Kex
*k
, char *client
, char *server
)
332 char *hostkeyalg
= match_list(client
, server
, NULL
);
333 if (hostkeyalg
== NULL
)
334 fatal("no hostkey alg");
335 k
->hostkey_type
= key_type_from_name(hostkeyalg
);
336 if (k
->hostkey_type
== KEY_UNSPEC
)
337 fatal("bad hostkey alg '%s'", hostkeyalg
);
342 proposals_match(char *my
[PROPOSAL_MAX
], char *peer
[PROPOSAL_MAX
])
344 static int check
[] = {
345 PROPOSAL_KEX_ALGS
, PROPOSAL_SERVER_HOST_KEY_ALGS
, -1
350 for (idx
= &check
[0]; *idx
!= -1; idx
++) {
351 if ((p
= strchr(my
[*idx
], ',')) != NULL
)
353 if ((p
= strchr(peer
[*idx
], ',')) != NULL
)
355 if (strcmp(my
[*idx
], peer
[*idx
]) != 0) {
356 debug2("proposal mismatch: my %s peer %s",
357 my
[*idx
], peer
[*idx
]);
361 debug2("proposals match");
366 kex_choose_conf(Kex
*kex
)
370 char **cprop
, **sprop
;
371 int nenc
, nmac
, ncomp
;
372 u_int mode
, ctos
, need
;
373 int first_kex_follows
, type
;
375 my
= kex_buf2prop(&kex
->my
, NULL
);
376 peer
= kex_buf2prop(&kex
->peer
, &first_kex_follows
);
386 /* Algorithm Negotiation */
387 for (mode
= 0; mode
< MODE_MAX
; mode
++) {
388 newkeys
= xcalloc(1, sizeof(*newkeys
));
389 kex
->newkeys
[mode
] = newkeys
;
390 ctos
= (!kex
->server
&& mode
== MODE_OUT
) || (kex
->server
&& mode
== MODE_IN
);
391 nenc
= ctos
? PROPOSAL_ENC_ALGS_CTOS
: PROPOSAL_ENC_ALGS_STOC
;
392 nmac
= ctos
? PROPOSAL_MAC_ALGS_CTOS
: PROPOSAL_MAC_ALGS_STOC
;
393 ncomp
= ctos
? PROPOSAL_COMP_ALGS_CTOS
: PROPOSAL_COMP_ALGS_STOC
;
394 choose_enc (&newkeys
->enc
, cprop
[nenc
], sprop
[nenc
]);
395 choose_mac (&newkeys
->mac
, cprop
[nmac
], sprop
[nmac
]);
396 choose_comp(&newkeys
->comp
, cprop
[ncomp
], sprop
[ncomp
]);
397 debug("kex: %s %s %s %s",
398 ctos
? "client->server" : "server->client",
403 choose_kex(kex
, cprop
[PROPOSAL_KEX_ALGS
], sprop
[PROPOSAL_KEX_ALGS
]);
404 choose_hostkeyalg(kex
, cprop
[PROPOSAL_SERVER_HOST_KEY_ALGS
],
405 sprop
[PROPOSAL_SERVER_HOST_KEY_ALGS
]);
407 for (mode
= 0; mode
< MODE_MAX
; mode
++) {
408 newkeys
= kex
->newkeys
[mode
];
409 if (need
< newkeys
->enc
.key_len
)
410 need
= newkeys
->enc
.key_len
;
411 if (need
< newkeys
->enc
.block_size
)
412 need
= newkeys
->enc
.block_size
;
413 if (need
< newkeys
->mac
.key_len
)
414 need
= newkeys
->mac
.key_len
;
416 /* XXX need runden? */
419 /* ignore the next message if the proposals do not match */
420 if (first_kex_follows
&& !proposals_match(my
, peer
) &&
421 !(datafellows
& SSH_BUG_FIRSTKEX
)) {
422 type
= packet_read();
423 debug2("skipping next packet (type %u)", type
);
431 derive_key(Kex
*kex
, int id
, u_int need
, u_char
*hash
, u_int hashlen
,
432 BIGNUM
*shared_secret
)
441 if ((mdsz
= EVP_MD_size(kex
->evp_md
)) <= 0)
442 fatal("bad kex md size %d", mdsz
);
443 digest
= xmalloc(roundup(need
, mdsz
));
446 buffer_put_bignum2(&b
, shared_secret
);
448 /* K1 = HASH(K || H || "A" || session_id) */
449 EVP_DigestInit(&md
, kex
->evp_md
);
450 if (!(datafellows
& SSH_BUG_DERIVEKEY
))
451 EVP_DigestUpdate(&md
, buffer_ptr(&b
), buffer_len(&b
));
452 EVP_DigestUpdate(&md
, hash
, hashlen
);
453 EVP_DigestUpdate(&md
, &c
, 1);
454 EVP_DigestUpdate(&md
, kex
->session_id
, kex
->session_id_len
);
455 EVP_DigestFinal(&md
, digest
, NULL
);
459 * Kn = HASH(K || H || K1 || K2 || ... || Kn-1)
460 * Key = K1 || K2 || ... || Kn
462 for (have
= mdsz
; need
> have
; have
+= mdsz
) {
463 EVP_DigestInit(&md
, kex
->evp_md
);
464 if (!(datafellows
& SSH_BUG_DERIVEKEY
))
465 EVP_DigestUpdate(&md
, buffer_ptr(&b
), buffer_len(&b
));
466 EVP_DigestUpdate(&md
, hash
, hashlen
);
467 EVP_DigestUpdate(&md
, digest
, have
);
468 EVP_DigestFinal(&md
, digest
+ have
, NULL
);
472 fprintf(stderr
, "key '%c'== ", c
);
473 dump_digest("key", digest
, need
);
478 Newkeys
*current_keys
[MODE_MAX
];
482 kex_derive_keys(Kex
*kex
, u_char
*hash
, u_int hashlen
, BIGNUM
*shared_secret
)
487 for (i
= 0; i
< NKEYS
; i
++) {
488 keys
[i
] = derive_key(kex
, 'A'+i
, kex
->we_need
, hash
, hashlen
,
492 debug2("kex_derive_keys");
493 for (mode
= 0; mode
< MODE_MAX
; mode
++) {
494 current_keys
[mode
] = kex
->newkeys
[mode
];
495 kex
->newkeys
[mode
] = NULL
;
496 ctos
= (!kex
->server
&& mode
== MODE_OUT
) ||
497 (kex
->server
&& mode
== MODE_IN
);
498 current_keys
[mode
]->enc
.iv
= keys
[ctos
? 0 : 1];
499 current_keys
[mode
]->enc
.key
= keys
[ctos
? 2 : 3];
500 current_keys
[mode
]->mac
.key
= keys
[ctos
? 4 : 5];
505 kex_get_newkeys(int mode
)
509 ret
= current_keys
[mode
];
510 current_keys
[mode
] = NULL
;
515 derive_ssh1_session_id(BIGNUM
*host_modulus
, BIGNUM
*server_modulus
,
516 u_int8_t cookie
[8], u_int8_t id
[16])
518 const EVP_MD
*evp_md
= EVP_md5();
520 u_int8_t nbuf
[2048], obuf
[EVP_MAX_MD_SIZE
];
523 EVP_DigestInit(&md
, evp_md
);
525 len
= BN_num_bytes(host_modulus
);
526 if (len
< (512 / 8) || (u_int
)len
> sizeof(nbuf
))
527 fatal("%s: bad host modulus (len %d)", __func__
, len
);
528 BN_bn2bin(host_modulus
, nbuf
);
529 EVP_DigestUpdate(&md
, nbuf
, len
);
531 len
= BN_num_bytes(server_modulus
);
532 if (len
< (512 / 8) || (u_int
)len
> sizeof(nbuf
))
533 fatal("%s: bad server modulus (len %d)", __func__
, len
);
534 BN_bn2bin(server_modulus
, nbuf
);
535 EVP_DigestUpdate(&md
, nbuf
, len
);
537 EVP_DigestUpdate(&md
, cookie
, 8);
539 EVP_DigestFinal(&md
, obuf
, NULL
);
540 memcpy(id
, obuf
, 16);
542 memset(nbuf
, 0, sizeof(nbuf
));
543 memset(obuf
, 0, sizeof(obuf
));
544 memset(&md
, 0, sizeof(md
));
547 #if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
549 dump_digest(char *msg
, u_char
*digest
, int len
)
553 fprintf(stderr
, "%s\n", msg
);
554 for (i
= 0; i
< len
; i
++) {
555 fprintf(stderr
, "%02x", digest
[i
]);
557 fprintf(stderr
, "\n");
559 fprintf(stderr
, " ");
561 fprintf(stderr
, "\n");