1 /* $OpenBSD: kex.c,v 1.71 2006/03/25 13:17:02 djm 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 <openssl/crypto.h>
45 #define KEX_COOKIE_LEN 16
47 #if OPENSSL_VERSION_NUMBER >= 0x00907000L
48 # if defined(HAVE_EVP_SHA256)
49 # define evp_ssh_sha256 EVP_sha256
51 extern const EVP_MD
*evp_ssh_sha256(void);
56 static void kex_kexinit_finish(Kex
*);
57 static void kex_choose_conf(Kex
*);
59 /* put algorithm proposal into buffer */
61 kex_prop2buf(Buffer
*b
, char *proposal
[PROPOSAL_MAX
])
67 * add a dummy cookie, the cookie will be overwritten by
68 * kex_send_kexinit(), each time a kexinit is set
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 */
78 /* parse buffer and return algorithm proposal */
80 kex_buf2prop(Buffer
*raw
, int *first_kex_follows
)
86 proposal
= xcalloc(PROPOSAL_MAX
, sizeof(char *));
89 buffer_append(&b
, buffer_ptr(raw
), buffer_len(raw
));
91 for (i
= 0; i
< KEX_COOKIE_LEN
; i
++)
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
]);
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
);
110 kex_prop_free(char **proposal
)
114 for (i
= 0; i
< PROPOSAL_MAX
; i
++)
120 kex_protocol_error(int type
, u_int32_t seq
, void *ctxt
)
122 error("Hm, kex protocol error: type %d seq %u", type
, seq
);
126 kex_reset_dispatch(void)
128 dispatch_range(SSH2_MSG_TRANSPORT_MIN
,
129 SSH2_MSG_TRANSPORT_MAX
, &kex_protocol_error
);
130 dispatch_set(SSH2_MSG_KEXINIT
, &kex_input_kexinit
);
136 kex_reset_dispatch();
138 packet_start(SSH2_MSG_NEWKEYS
);
140 /* packet_write_wait(); */
141 debug("SSH2_MSG_NEWKEYS sent");
143 debug("expecting SSH2_MSG_NEWKEYS");
144 packet_read_expect(SSH2_MSG_NEWKEYS
);
146 debug("SSH2_MSG_NEWKEYS received");
149 buffer_clear(&kex
->peer
);
150 /* buffer_clear(&kex->my); */
151 kex
->flags
&= ~KEX_INIT_SENT
;
157 kex_send_kexinit(Kex
*kex
)
164 error("kex_send_kexinit: no kex, cannot rekey");
167 if (kex
->flags
& KEX_INIT_SENT
) {
168 debug("KEX_INIT_SENT");
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
++) {
183 packet_start(SSH2_MSG_KEXINIT
);
184 packet_put_raw(buffer_ptr(&kex
->my
), buffer_len(&kex
->my
));
186 debug("SSH2_MSG_KEXINIT sent");
187 kex
->flags
|= KEX_INIT_SENT
;
191 kex_input_kexinit(int type
, u_int32_t seq
, void *ctxt
)
195 Kex
*kex
= (Kex
*)ctxt
;
197 debug("SSH2_MSG_KEXINIT received");
199 fatal("kex_input_kexinit: no kex, cannot rekey");
201 ptr
= packet_get_raw(&dlen
);
202 buffer_append(&kex
->peer
, ptr
, dlen
);
205 for (i
= 0; i
< KEX_COOKIE_LEN
; i
++)
207 for (i
= 0; i
< PROPOSAL_MAX
; i
++)
208 xfree(packet_get_string(NULL
));
209 (void) packet_get_char();
210 (void) packet_get_int();
213 kex_kexinit_finish(kex
);
217 kex_setup(char *proposal
[PROPOSAL_MAX
])
221 kex
= xcalloc(1, sizeof(*kex
));
222 buffer_init(&kex
->peer
);
223 buffer_init(&kex
->my
);
224 kex_prop2buf(&kex
->my
, proposal
);
227 kex_send_kexinit(kex
); /* we start */
228 kex_reset_dispatch();
234 kex_kexinit_finish(Kex
*kex
)
236 if (!(kex
->flags
& KEX_INIT_SENT
))
237 kex_send_kexinit(kex
);
239 kex_choose_conf(kex
);
241 if (kex
->kex_type
>= 0 && kex
->kex_type
< KEX_MAX
&&
242 kex
->kex
[kex
->kex_type
] != NULL
) {
243 (kex
->kex
[kex
->kex_type
])(kex
);
245 fatal("Unsupported key exchange %d", kex
->kex_type
);
250 choose_enc(Enc
*enc
, char *client
, char *server
)
252 char *name
= match_list(client
, server
, NULL
);
254 fatal("no matching cipher found: client %s server %s", client
, server
);
255 if ((enc
->cipher
= cipher_by_name(name
)) == NULL
)
256 fatal("matching cipher is not supported: %s", name
);
261 enc
->key_len
= cipher_keylen(enc
->cipher
);
262 enc
->block_size
= cipher_blocksize(enc
->cipher
);
266 choose_mac(Mac
*mac
, char *client
, char *server
)
268 char *name
= match_list(client
, server
, 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
)
282 choose_comp(Comp
*comp
, char *client
, char *server
)
284 char *name
= match_list(client
, server
, NULL
);
286 fatal("no matching comp found: client %s server %s", client
, server
);
287 if (strcmp(name
, "zlib@openssh.com") == 0) {
288 comp
->type
= COMP_DELAYED
;
289 } else if (strcmp(name
, "zlib") == 0) {
290 comp
->type
= COMP_ZLIB
;
291 } else if (strcmp(name
, "none") == 0) {
292 comp
->type
= COMP_NONE
;
294 fatal("unsupported comp %s", name
);
300 choose_kex(Kex
*k
, char *client
, char *server
)
302 k
->name
= match_list(client
, server
, NULL
);
305 if (strcmp(k
->name
, KEX_DH1
) == 0) {
306 k
->kex_type
= KEX_DH_GRP1_SHA1
;
307 k
->evp_md
= EVP_sha1();
308 } else if (strcmp(k
->name
, KEX_DH14
) == 0) {
309 k
->kex_type
= KEX_DH_GRP14_SHA1
;
310 k
->evp_md
= EVP_sha1();
311 } else if (strcmp(k
->name
, KEX_DHGEX_SHA1
) == 0) {
312 k
->kex_type
= KEX_DH_GEX_SHA1
;
313 k
->evp_md
= EVP_sha1();
314 #if OPENSSL_VERSION_NUMBER >= 0x00907000L
315 } else if (strcmp(k
->name
, KEX_DHGEX_SHA256
) == 0) {
316 k
->kex_type
= KEX_DH_GEX_SHA256
;
317 k
->evp_md
= evp_ssh_sha256();
320 fatal("bad kex alg %s", k
->name
);
324 choose_hostkeyalg(Kex
*k
, char *client
, char *server
)
326 char *hostkeyalg
= match_list(client
, server
, NULL
);
327 if (hostkeyalg
== NULL
)
328 fatal("no hostkey alg");
329 k
->hostkey_type
= key_type_from_name(hostkeyalg
);
330 if (k
->hostkey_type
== KEY_UNSPEC
)
331 fatal("bad hostkey alg '%s'", hostkeyalg
);
336 proposals_match(char *my
[PROPOSAL_MAX
], char *peer
[PROPOSAL_MAX
])
338 static int check
[] = {
339 PROPOSAL_KEX_ALGS
, PROPOSAL_SERVER_HOST_KEY_ALGS
, -1
344 for (idx
= &check
[0]; *idx
!= -1; idx
++) {
345 if ((p
= strchr(my
[*idx
], ',')) != NULL
)
347 if ((p
= strchr(peer
[*idx
], ',')) != NULL
)
349 if (strcmp(my
[*idx
], peer
[*idx
]) != 0) {
350 debug2("proposal mismatch: my %s peer %s",
351 my
[*idx
], peer
[*idx
]);
355 debug2("proposals match");
360 kex_choose_conf(Kex
*kex
)
364 char **cprop
, **sprop
;
365 int nenc
, nmac
, ncomp
;
366 u_int mode
, ctos
, need
;
367 int first_kex_follows
, type
;
369 my
= kex_buf2prop(&kex
->my
, NULL
);
370 peer
= kex_buf2prop(&kex
->peer
, &first_kex_follows
);
380 /* Algorithm Negotiation */
381 for (mode
= 0; mode
< MODE_MAX
; mode
++) {
382 newkeys
= xcalloc(1, 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",
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
]);
401 for (mode
= 0; mode
< MODE_MAX
; mode
++) {
402 newkeys
= kex
->newkeys
[mode
];
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
;
407 if (need
< newkeys
->mac
.key_len
)
408 need
= newkeys
->mac
.key_len
;
410 /* XXX need runden? */
413 /* ignore the next message if the proposals do not match */
414 if (first_kex_follows
&& !proposals_match(my
, peer
) &&
415 !(datafellows
& SSH_BUG_FIRSTKEX
)) {
416 type
= packet_read();
417 debug2("skipping next packet (type %u)", type
);
425 derive_key(Kex
*kex
, int id
, u_int need
, u_char
*hash
, u_int hashlen
,
426 BIGNUM
*shared_secret
)
435 if ((mdsz
= EVP_MD_size(kex
->evp_md
)) <= 0)
436 fatal("bad kex md size %d", mdsz
);
437 digest
= xmalloc(roundup(need
, mdsz
));
440 buffer_put_bignum2(&b
, shared_secret
);
442 /* K1 = HASH(K || H || "A" || session_id) */
443 EVP_DigestInit(&md
, kex
->evp_md
);
444 if (!(datafellows
& SSH_BUG_DERIVEKEY
))
445 EVP_DigestUpdate(&md
, buffer_ptr(&b
), buffer_len(&b
));
446 EVP_DigestUpdate(&md
, hash
, hashlen
);
447 EVP_DigestUpdate(&md
, &c
, 1);
448 EVP_DigestUpdate(&md
, kex
->session_id
, kex
->session_id_len
);
449 EVP_DigestFinal(&md
, digest
, NULL
);
453 * Kn = HASH(K || H || K1 || K2 || ... || Kn-1)
454 * Key = K1 || K2 || ... || Kn
456 for (have
= mdsz
; need
> have
; have
+= mdsz
) {
457 EVP_DigestInit(&md
, kex
->evp_md
);
458 if (!(datafellows
& SSH_BUG_DERIVEKEY
))
459 EVP_DigestUpdate(&md
, buffer_ptr(&b
), buffer_len(&b
));
460 EVP_DigestUpdate(&md
, hash
, hashlen
);
461 EVP_DigestUpdate(&md
, digest
, have
);
462 EVP_DigestFinal(&md
, digest
+ have
, NULL
);
466 fprintf(stderr
, "key '%c'== ", c
);
467 dump_digest("key", digest
, need
);
472 Newkeys
*current_keys
[MODE_MAX
];
476 kex_derive_keys(Kex
*kex
, u_char
*hash
, u_int hashlen
, BIGNUM
*shared_secret
)
481 for (i
= 0; i
< NKEYS
; i
++) {
482 keys
[i
] = derive_key(kex
, 'A'+i
, kex
->we_need
, hash
, hashlen
,
486 debug2("kex_derive_keys");
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
) ||
491 (kex
->server
&& mode
== MODE_IN
);
492 current_keys
[mode
]->enc
.iv
= keys
[ctos
? 0 : 1];
493 current_keys
[mode
]->enc
.key
= keys
[ctos
? 2 : 3];
494 current_keys
[mode
]->mac
.key
= keys
[ctos
? 4 : 5];
499 kex_get_newkeys(int mode
)
503 ret
= current_keys
[mode
];
504 current_keys
[mode
] = NULL
;
509 derive_ssh1_session_id(BIGNUM
*host_modulus
, BIGNUM
*server_modulus
,
510 u_int8_t cookie
[8], u_int8_t id
[16])
512 const EVP_MD
*evp_md
= EVP_md5();
514 u_int8_t nbuf
[2048], obuf
[EVP_MAX_MD_SIZE
];
517 EVP_DigestInit(&md
, evp_md
);
519 len
= BN_num_bytes(host_modulus
);
520 if (len
< (512 / 8) || (u_int
)len
> sizeof(nbuf
))
521 fatal("%s: bad host modulus (len %d)", __func__
, len
);
522 BN_bn2bin(host_modulus
, nbuf
);
523 EVP_DigestUpdate(&md
, nbuf
, len
);
525 len
= BN_num_bytes(server_modulus
);
526 if (len
< (512 / 8) || (u_int
)len
> sizeof(nbuf
))
527 fatal("%s: bad server modulus (len %d)", __func__
, len
);
528 BN_bn2bin(server_modulus
, nbuf
);
529 EVP_DigestUpdate(&md
, nbuf
, len
);
531 EVP_DigestUpdate(&md
, cookie
, 8);
533 EVP_DigestFinal(&md
, obuf
, NULL
);
534 memcpy(id
, obuf
, 16);
536 memset(nbuf
, 0, sizeof(nbuf
));
537 memset(obuf
, 0, sizeof(obuf
));
538 memset(&md
, 0, sizeof(md
));
541 #if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
543 dump_digest(char *msg
, u_char
*digest
, int len
)
547 fprintf(stderr
, "%s\n", msg
);
548 for (i
= 0; i
< len
; i
++) {
549 fprintf(stderr
, "%02x", digest
[i
]);
551 fprintf(stderr
, "\n");
553 fprintf(stderr
, " ");
555 fprintf(stderr
, "\n");