2 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
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.
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.
26 RCSID("$OpenBSD: kexdhs.c,v 1.2 2004/06/13 12:53:24 djm Exp $");
35 #include "monitor_wrap.h"
38 kexdh_server(Kex
*kex
)
40 BIGNUM
*shared_secret
= NULL
, *dh_client_pub
= NULL
;
43 u_char
*kbuf
, *hash
, *signature
= NULL
, *server_host_key_blob
= NULL
;
44 u_int sbloblen
, klen
, kout
;
47 /* generate server DH public key */
48 switch (kex
->kex_type
) {
49 case KEX_DH_GRP1_SHA1
:
52 case KEX_DH_GRP14_SHA1
:
53 dh
= dh_new_group14();
56 fatal("%s: Unexpected KEX type %d", __func__
, kex
->kex_type
);
58 dh_gen_key(dh
, kex
->we_need
* 8);
60 debug("expecting SSH2_MSG_KEXDH_INIT");
61 packet_read_expect(SSH2_MSG_KEXDH_INIT
);
63 if (kex
->load_host_key
== NULL
)
64 fatal("Cannot load hostkey");
65 server_host_key
= kex
->load_host_key(kex
->hostkey_type
);
66 if (server_host_key
== NULL
)
67 fatal("Unsupported hostkey type %d", kex
->hostkey_type
);
70 if ((dh_client_pub
= BN_new()) == NULL
)
71 fatal("dh_client_pub == NULL");
72 packet_get_bignum2(dh_client_pub
);
76 fprintf(stderr
, "dh_client_pub= ");
77 BN_print_fp(stderr
, dh_client_pub
);
78 fprintf(stderr
, "\n");
79 debug("bits %d", BN_num_bits(dh_client_pub
));
83 DHparams_print_fp(stderr
, dh
);
84 fprintf(stderr
, "pub= ");
85 BN_print_fp(stderr
, dh
->pub_key
);
86 fprintf(stderr
, "\n");
88 if (!dh_pub_is_valid(dh
, dh_client_pub
))
89 packet_disconnect("bad client public DH value");
93 kout
= DH_compute_key(kbuf
, dh_client_pub
, dh
);
95 dump_digest("shared secret", kbuf
, kout
);
97 if ((shared_secret
= BN_new()) == NULL
)
98 fatal("kexdh_server: BN_new failed");
99 BN_bin2bn(kbuf
, kout
, shared_secret
);
100 memset(kbuf
, 0, klen
);
103 key_to_blob(server_host_key
, &server_host_key_blob
, &sbloblen
);
107 kex
->client_version_string
,
108 kex
->server_version_string
,
109 buffer_ptr(&kex
->peer
), buffer_len(&kex
->peer
),
110 buffer_ptr(&kex
->my
), buffer_len(&kex
->my
),
111 server_host_key_blob
, sbloblen
,
116 BN_clear_free(dh_client_pub
);
118 /* save session id := H */
119 /* XXX hashlen depends on KEX */
120 if (kex
->session_id
== NULL
) {
121 kex
->session_id_len
= 20;
122 kex
->session_id
= xmalloc(kex
->session_id_len
);
123 memcpy(kex
->session_id
, hash
, kex
->session_id_len
);
127 /* XXX hashlen depends on KEX */
128 PRIVSEP(key_sign(server_host_key
, &signature
, &slen
, hash
, 20));
130 /* destroy_sensitive_data(); */
132 /* send server hostkey, DH pubkey 'f' and singed H */
133 packet_start(SSH2_MSG_KEXDH_REPLY
);
134 packet_put_string(server_host_key_blob
, sbloblen
);
135 packet_put_bignum2(dh
->pub_key
); /* f */
136 packet_put_string(signature
, slen
);
140 xfree(server_host_key_blob
);
141 /* have keys, free DH */
144 kex_derive_keys(kex
, hash
, shared_secret
);
145 BN_clear_free(shared_secret
);