blob: 56aa5d0310708b25f94ef1941ff0693a1cb00604 [file] [log] [blame]
Damien Millera5103f42014-02-04 11:20:14 +11001/* $OpenBSD: kexdhs.c,v 1.18 2014/02/02 03:44:31 djm Exp $ */
Damien Miller8e7fb332003-02-24 12:03:03 +11002/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
13 *
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.
24 */
25
26#include "includes.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110027
Damien Miller72ef7c12015-01-15 02:21:31 +110028#ifdef WITH_OPENSSL
29
Damien Millerd7834352006-08-05 12:39:39 +100030#include <sys/types.h>
Damien Millerded319c2006-09-01 15:38:36 +100031
32#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100033#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100034#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100035
Damien Miller4499f4c2010-11-20 15:15:49 +110036#include <openssl/dh.h>
37
Damien Miller8e7fb332003-02-24 12:03:03 +110038#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100039#include "buffer.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110040#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +100041#include "cipher.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110042#include "kex.h"
43#include "log.h"
44#include "packet.h"
45#include "dh.h"
46#include "ssh2.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110047
48void
49kexdh_server(Kex *kex)
50{
51 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL;
52 DH *dh;
Damien Miller0a80ca12010-02-27 07:55:05 +110053 Key *server_host_public, *server_host_private;
Damien Miller8e7fb332003-02-24 12:03:03 +110054 u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL;
Damien Miller570c2ab2006-11-05 05:32:02 +110055 u_int sbloblen, klen, hashlen, slen;
56 int kout;
Damien Miller8e7fb332003-02-24 12:03:03 +110057
58 /* generate server DH public key */
Damien Millerf675fc42004-06-15 10:30:09 +100059 switch (kex->kex_type) {
60 case KEX_DH_GRP1_SHA1:
61 dh = dh_new_group1();
62 break;
63 case KEX_DH_GRP14_SHA1:
64 dh = dh_new_group14();
65 break;
66 default:
67 fatal("%s: Unexpected KEX type %d", __func__, kex->kex_type);
68 }
Damien Miller8e7fb332003-02-24 12:03:03 +110069 dh_gen_key(dh, kex->we_need * 8);
70
71 debug("expecting SSH2_MSG_KEXDH_INIT");
72 packet_read_expect(SSH2_MSG_KEXDH_INIT);
73
Damien Miller0a80ca12010-02-27 07:55:05 +110074 if (kex->load_host_public_key == NULL ||
75 kex->load_host_private_key == NULL)
Damien Miller8e7fb332003-02-24 12:03:03 +110076 fatal("Cannot load hostkey");
Damien Miller0a80ca12010-02-27 07:55:05 +110077 server_host_public = kex->load_host_public_key(kex->hostkey_type);
78 if (server_host_public == NULL)
Damien Miller8e7fb332003-02-24 12:03:03 +110079 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller0a80ca12010-02-27 07:55:05 +110080 server_host_private = kex->load_host_private_key(kex->hostkey_type);
Damien Miller8e7fb332003-02-24 12:03:03 +110081
82 /* key, cert */
83 if ((dh_client_pub = BN_new()) == NULL)
84 fatal("dh_client_pub == NULL");
85 packet_get_bignum2(dh_client_pub);
86 packet_check_eom();
87
88#ifdef DEBUG_KEXDH
89 fprintf(stderr, "dh_client_pub= ");
90 BN_print_fp(stderr, dh_client_pub);
91 fprintf(stderr, "\n");
92 debug("bits %d", BN_num_bits(dh_client_pub));
93#endif
94
95#ifdef DEBUG_KEXDH
96 DHparams_print_fp(stderr, dh);
97 fprintf(stderr, "pub= ");
98 BN_print_fp(stderr, dh->pub_key);
99 fprintf(stderr, "\n");
100#endif
101 if (!dh_pub_is_valid(dh, dh_client_pub))
102 packet_disconnect("bad client public DH value");
103
104 klen = DH_size(dh);
105 kbuf = xmalloc(klen);
Damien Miller570c2ab2006-11-05 05:32:02 +1100106 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
107 fatal("DH_compute_key: failed");
Damien Miller8e7fb332003-02-24 12:03:03 +1100108#ifdef DEBUG_KEXDH
109 dump_digest("shared secret", kbuf, kout);
110#endif
111 if ((shared_secret = BN_new()) == NULL)
112 fatal("kexdh_server: BN_new failed");
Darren Tucker0bc85572006-11-07 23:14:41 +1100113 if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
114 fatal("kexdh_server: BN_bin2bn failed");
Damien Millera5103f42014-02-04 11:20:14 +1100115 explicit_bzero(kbuf, klen);
Darren Tuckera627d422013-06-02 07:31:17 +1000116 free(kbuf);
Damien Miller8e7fb332003-02-24 12:03:03 +1100117
Damien Miller0a80ca12010-02-27 07:55:05 +1100118 key_to_blob(server_host_public, &server_host_key_blob, &sbloblen);
Damien Miller8e7fb332003-02-24 12:03:03 +1100119
120 /* calc H */
Damien Miller19bb3a52005-11-05 15:19:35 +1100121 kex_dh_hash(
Damien Miller8e7fb332003-02-24 12:03:03 +1100122 kex->client_version_string,
123 kex->server_version_string,
124 buffer_ptr(&kex->peer), buffer_len(&kex->peer),
125 buffer_ptr(&kex->my), buffer_len(&kex->my),
126 server_host_key_blob, sbloblen,
127 dh_client_pub,
128 dh->pub_key,
Damien Miller19bb3a52005-11-05 15:19:35 +1100129 shared_secret,
130 &hash, &hashlen
Damien Miller8e7fb332003-02-24 12:03:03 +1100131 );
132 BN_clear_free(dh_client_pub);
133
134 /* save session id := H */
Damien Miller8e7fb332003-02-24 12:03:03 +1100135 if (kex->session_id == NULL) {
Damien Miller19bb3a52005-11-05 15:19:35 +1100136 kex->session_id_len = hashlen;
Damien Miller8e7fb332003-02-24 12:03:03 +1100137 kex->session_id = xmalloc(kex->session_id_len);
138 memcpy(kex->session_id, hash, kex->session_id_len);
139 }
140
141 /* sign H */
Damien Miller85b45e02013-07-20 13:21:52 +1000142 kex->sign(server_host_private, server_host_public, &signature, &slen,
143 hash, hashlen);
Damien Miller8e7fb332003-02-24 12:03:03 +1100144
145 /* destroy_sensitive_data(); */
146
147 /* send server hostkey, DH pubkey 'f' and singed H */
148 packet_start(SSH2_MSG_KEXDH_REPLY);
149 packet_put_string(server_host_key_blob, sbloblen);
150 packet_put_bignum2(dh->pub_key); /* f */
151 packet_put_string(signature, slen);
152 packet_send();
153
Darren Tuckera627d422013-06-02 07:31:17 +1000154 free(signature);
155 free(server_host_key_blob);
Damien Miller8e7fb332003-02-24 12:03:03 +1100156 /* have keys, free DH */
157 DH_free(dh);
158
Damien Miller91b580e2014-01-12 19:21:22 +1100159 kex_derive_keys_bn(kex, hash, hashlen, shared_secret);
Damien Miller8e7fb332003-02-24 12:03:03 +1100160 BN_clear_free(shared_secret);
161 kex_finish(kex);
162}
Damien Miller72ef7c12015-01-15 02:21:31 +1100163#endif /* WITH_OPENSSL */