blob: 8367c6c3053faf23f8a4eb92b55bc9bfc5c789ee [file] [log] [blame]
djm@openbsd.org001aa552018-04-10 00:10:49 +00001/* $OpenBSD: kexdhs.c,v 1.27 2018/04/10 00:10:49 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
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000038#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100039#include "cipher.h"
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000040#include "digest.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110041#include "kex.h"
42#include "log.h"
43#include "packet.h"
44#include "dh.h"
45#include "ssh2.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110046
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000047#include "dispatch.h"
48#include "compat.h"
49#include "ssherr.h"
50#include "sshbuf.h"
51
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000052static int input_kex_dh_init(int, u_int32_t, struct ssh *);
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000053
54int
55kexdh_server(struct ssh *ssh)
Damien Miller8e7fb332003-02-24 12:03:03 +110056{
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000057 struct kex *kex = ssh->kex;
58 int r;
Damien Miller8e7fb332003-02-24 12:03:03 +110059
60 /* generate server DH public key */
Damien Millerf675fc42004-06-15 10:30:09 +100061 switch (kex->kex_type) {
62 case KEX_DH_GRP1_SHA1:
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000063 kex->dh = dh_new_group1();
Damien Millerf675fc42004-06-15 10:30:09 +100064 break;
65 case KEX_DH_GRP14_SHA1:
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +000066 case KEX_DH_GRP14_SHA256:
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000067 kex->dh = dh_new_group14();
Damien Millerf675fc42004-06-15 10:30:09 +100068 break;
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +000069 case KEX_DH_GRP16_SHA512:
70 kex->dh = dh_new_group16();
71 break;
72 case KEX_DH_GRP18_SHA512:
73 kex->dh = dh_new_group18();
74 break;
Damien Millerf675fc42004-06-15 10:30:09 +100075 default:
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000076 r = SSH_ERR_INVALID_ARGUMENT;
77 goto out;
Damien Millerf675fc42004-06-15 10:30:09 +100078 }
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000079 if (kex->dh == NULL) {
80 r = SSH_ERR_ALLOC_FAIL;
81 goto out;
82 }
83 if ((r = dh_gen_key(kex->dh, kex->we_need * 8)) != 0)
84 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +110085
86 debug("expecting SSH2_MSG_KEXDH_INIT");
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000087 ssh_dispatch_set(ssh, SSH2_MSG_KEXDH_INIT, &input_kex_dh_init);
88 r = 0;
89 out:
90 return r;
91}
92
93int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000094input_kex_dh_init(int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000095{
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000096 struct kex *kex = ssh->kex;
97 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL;
djm@openbsd.org482d23b2018-09-13 02:08:33 +000098 const BIGNUM *pub_key;
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000099 struct sshkey *server_host_public, *server_host_private;
100 u_char *kbuf = NULL, *signature = NULL, *server_host_key_blob = NULL;
101 u_char hash[SSH_DIGEST_MAX_LENGTH];
102 size_t sbloblen, slen;
103 size_t klen = 0, hashlen;
104 int kout, r;
Damien Miller8e7fb332003-02-24 12:03:03 +1100105
Damien Miller0a80ca12010-02-27 07:55:05 +1100106 if (kex->load_host_public_key == NULL ||
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000107 kex->load_host_private_key == NULL) {
108 r = SSH_ERR_INVALID_ARGUMENT;
109 goto out;
110 }
djm@openbsd.org5104db72015-01-26 06:10:03 +0000111 server_host_public = kex->load_host_public_key(kex->hostkey_type,
112 kex->hostkey_nid, ssh);
113 server_host_private = kex->load_host_private_key(kex->hostkey_type,
114 kex->hostkey_nid, ssh);
djm@openbsd.orge2cc6be2015-01-20 07:55:33 +0000115 if (server_host_public == NULL) {
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000116 r = SSH_ERR_NO_HOSTKEY_LOADED;
117 goto out;
118 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100119
120 /* key, cert */
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000121 if ((dh_client_pub = BN_new()) == NULL) {
122 r = SSH_ERR_ALLOC_FAIL;
123 goto out;
124 }
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000125 DH_get0_key(kex->dh, &pub_key, NULL);
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000126 if ((r = sshpkt_get_bignum2(ssh, dh_client_pub)) != 0 ||
127 (r = sshpkt_get_end(ssh)) != 0)
128 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100129
130#ifdef DEBUG_KEXDH
131 fprintf(stderr, "dh_client_pub= ");
132 BN_print_fp(stderr, dh_client_pub);
133 fprintf(stderr, "\n");
134 debug("bits %d", BN_num_bits(dh_client_pub));
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000135 DHparams_print_fp(stderr, kex->dh);
Damien Miller8e7fb332003-02-24 12:03:03 +1100136 fprintf(stderr, "pub= ");
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000137 BN_print_fp(stderr, pub_key);
Damien Miller8e7fb332003-02-24 12:03:03 +1100138 fprintf(stderr, "\n");
139#endif
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000140 if (!dh_pub_is_valid(kex->dh, dh_client_pub)) {
141 sshpkt_disconnect(ssh, "bad client public DH value");
142 r = SSH_ERR_MESSAGE_INCOMPLETE;
143 goto out;
144 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100145
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000146 klen = DH_size(kex->dh);
147 if ((kbuf = malloc(klen)) == NULL ||
148 (shared_secret = BN_new()) == NULL) {
149 r = SSH_ERR_ALLOC_FAIL;
150 goto out;
151 }
152 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 ||
153 BN_bin2bn(kbuf, kout, shared_secret) == NULL) {
154 r = SSH_ERR_LIBCRYPTO_ERROR;
155 goto out;
156 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100157#ifdef DEBUG_KEXDH
158 dump_digest("shared secret", kbuf, kout);
159#endif
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000160 if ((r = sshkey_to_blob(server_host_public, &server_host_key_blob,
161 &sbloblen)) != 0)
162 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100163 /* calc H */
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000164 hashlen = sizeof(hash);
165 if ((r = kex_dh_hash(
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +0000166 kex->hash_alg,
Damien Miller8e7fb332003-02-24 12:03:03 +1100167 kex->client_version_string,
168 kex->server_version_string,
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000169 sshbuf_ptr(kex->peer), sshbuf_len(kex->peer),
170 sshbuf_ptr(kex->my), sshbuf_len(kex->my),
Damien Miller8e7fb332003-02-24 12:03:03 +1100171 server_host_key_blob, sbloblen,
172 dh_client_pub,
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000173 pub_key,
Damien Miller19bb3a52005-11-05 15:19:35 +1100174 shared_secret,
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000175 hash, &hashlen)) != 0)
176 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100177
178 /* save session id := H */
Damien Miller8e7fb332003-02-24 12:03:03 +1100179 if (kex->session_id == NULL) {
Damien Miller19bb3a52005-11-05 15:19:35 +1100180 kex->session_id_len = hashlen;
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000181 kex->session_id = malloc(kex->session_id_len);
182 if (kex->session_id == NULL) {
183 r = SSH_ERR_ALLOC_FAIL;
184 goto out;
185 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100186 memcpy(kex->session_id, hash, kex->session_id_len);
187 }
188
189 /* sign H */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000190 if ((r = kex->sign(server_host_private, server_host_public, &signature,
191 &slen, hash, hashlen, kex->hostkey_alg, ssh->compat)) < 0)
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000192 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100193
194 /* destroy_sensitive_data(); */
195
djm@openbsd.org001aa552018-04-10 00:10:49 +0000196 /* send server hostkey, DH pubkey 'f' and signed H */
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000197 if ((r = sshpkt_start(ssh, SSH2_MSG_KEXDH_REPLY)) != 0 ||
198 (r = sshpkt_put_string(ssh, server_host_key_blob, sbloblen)) != 0 ||
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000199 (r = sshpkt_put_bignum2(ssh, pub_key)) != 0 || /* f */
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000200 (r = sshpkt_put_string(ssh, signature, slen)) != 0 ||
201 (r = sshpkt_send(ssh)) != 0)
202 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100203
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000204 if ((r = kex_derive_keys_bn(ssh, hash, hashlen, shared_secret)) == 0)
205 r = kex_send_newkeys(ssh);
206 out:
207 explicit_bzero(hash, sizeof(hash));
208 DH_free(kex->dh);
209 kex->dh = NULL;
jsing@openbsd.org7cd31632018-02-07 02:06:50 +0000210 BN_clear_free(dh_client_pub);
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000211 if (kbuf) {
212 explicit_bzero(kbuf, klen);
213 free(kbuf);
214 }
jsing@openbsd.org7cd31632018-02-07 02:06:50 +0000215 BN_clear_free(shared_secret);
Darren Tuckera627d422013-06-02 07:31:17 +1000216 free(server_host_key_blob);
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000217 free(signature);
218 return r;
Damien Miller8e7fb332003-02-24 12:03:03 +1100219}
Damien Miller72ef7c12015-01-15 02:21:31 +1100220#endif /* WITH_OPENSSL */