blob: c5dd00578a33b70fd995eba9605002024747e3ce [file] [log] [blame]
markus@openbsd.org2ae666a2017-05-30 14:23:52 +00001/* $OpenBSD: kexgexs.c,v 1.31 2017/05/30 14:23:52 markus Exp $ */
Damien Miller8e7fb332003-02-24 12:03:03 +11002/*
3 * Copyright (c) 2000 Niels Provos. All rights reserved.
4 * Copyright (c) 2001 Markus Friedl. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "includes.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110028
Damien Miller72ef7c12015-01-15 02:21:31 +110029#ifdef WITH_OPENSSL
30
Damien Miller8dbffe72006-08-05 11:02:17 +100031
Damien Millerded319c2006-09-01 15:38:36 +100032#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100033#include <stdio.h>
Damien Millere3476ed2006-07-24 14:13:33 +100034#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100035#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100036
Damien Miller4499f4c2010-11-20 15:15:49 +110037#include <openssl/dh.h>
38
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000039#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100040#include "cipher.h"
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000041#include "digest.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"
47#include "compat.h"
Damien Millerd7834352006-08-05 12:39:39 +100048#ifdef GSSAPI
49#include "ssh-gss.h"
50#endif
Damien Miller8e7fb332003-02-24 12:03:03 +110051#include "monitor_wrap.h"
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000052#include "dispatch.h"
53#include "ssherr.h"
54#include "sshbuf.h"
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +000055#include "misc.h"
Damien Miller8e7fb332003-02-24 12:03:03 +110056
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000057static int input_kex_dh_gex_request(int, u_int32_t, struct ssh *);
58static int input_kex_dh_gex_init(int, u_int32_t, struct ssh *);
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000059
60int
61kexgex_server(struct ssh *ssh)
Damien Miller8e7fb332003-02-24 12:03:03 +110062{
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000063 ssh_dispatch_set(ssh, SSH2_MSG_KEX_DH_GEX_REQUEST,
64 &input_kex_dh_gex_request);
65 debug("expecting SSH2_MSG_KEX_DH_GEX_REQUEST");
66 return 0;
67}
Damien Miller8e7fb332003-02-24 12:03:03 +110068
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000069static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +000070input_kex_dh_gex_request(int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000071{
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000072 struct kex *kex = ssh->kex;
73 int r;
74 u_int min = 0, max = 0, nbits = 0;
Damien Miller8e7fb332003-02-24 12:03:03 +110075
djm@openbsd.org318be282015-04-13 02:04:08 +000076 debug("SSH2_MSG_KEX_DH_GEX_REQUEST received");
77 if ((r = sshpkt_get_u32(ssh, &min)) != 0 ||
78 (r = sshpkt_get_u32(ssh, &nbits)) != 0 ||
79 (r = sshpkt_get_u32(ssh, &max)) != 0 ||
80 (r = sshpkt_get_end(ssh)) != 0)
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000081 goto out;
djm@openbsd.org318be282015-04-13 02:04:08 +000082 kex->nbits = nbits;
83 kex->min = min;
84 kex->max = max;
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +000085 min = MAXIMUM(DH_GRP_MIN, min);
86 max = MINIMUM(DH_GRP_MAX, max);
87 nbits = MAXIMUM(DH_GRP_MIN, nbits);
88 nbits = MINIMUM(DH_GRP_MAX, nbits);
dtucker@openbsd.org68777fa2016-06-08 02:13:01 +000089
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000090 if (kex->max < kex->min || kex->nbits < kex->min ||
dtucker@openbsd.org68777fa2016-06-08 02:13:01 +000091 kex->max < kex->nbits || kex->max < DH_GRP_MIN) {
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000092 r = SSH_ERR_DH_GEX_OUT_OF_RANGE;
93 goto out;
94 }
Damien Miller8e7fb332003-02-24 12:03:03 +110095
96 /* Contact privileged parent */
dtucker@openbsd.org68777fa2016-06-08 02:13:01 +000097 kex->dh = PRIVSEP(choose_dh(min, nbits, max));
markus@openbsd.org57d10cb2015-01-19 20:16:15 +000098 if (kex->dh == NULL) {
dtucker@openbsd.org68777fa2016-06-08 02:13:01 +000099 sshpkt_disconnect(ssh, "no matching DH grp found");
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000100 r = SSH_ERR_ALLOC_FAIL;
101 goto out;
102 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100103 debug("SSH2_MSG_KEX_DH_GEX_GROUP sent");
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000104 if ((r = sshpkt_start(ssh, SSH2_MSG_KEX_DH_GEX_GROUP)) != 0 ||
105 (r = sshpkt_put_bignum2(ssh, kex->dh->p)) != 0 ||
106 (r = sshpkt_put_bignum2(ssh, kex->dh->g)) != 0 ||
107 (r = sshpkt_send(ssh)) != 0)
108 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100109
110 /* Compute our exchange value in parallel with the client */
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000111 if ((r = dh_gen_key(kex->dh, kex->we_need * 8)) != 0)
112 goto out;
113
Damien Miller8e7fb332003-02-24 12:03:03 +1100114 debug("expecting SSH2_MSG_KEX_DH_GEX_INIT");
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000115 ssh_dispatch_set(ssh, SSH2_MSG_KEX_DH_GEX_INIT, &input_kex_dh_gex_init);
116 r = 0;
117 out:
118 return r;
119}
120
121static int
markus@openbsd.org2ae666a2017-05-30 14:23:52 +0000122input_kex_dh_gex_init(int type, u_int32_t seq, struct ssh *ssh)
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000123{
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000124 struct kex *kex = ssh->kex;
125 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL;
126 struct sshkey *server_host_public, *server_host_private;
127 u_char *kbuf = NULL, *signature = NULL, *server_host_key_blob = NULL;
128 u_char hash[SSH_DIGEST_MAX_LENGTH];
129 size_t sbloblen, slen;
130 size_t klen = 0, hashlen;
131 int kout, r;
132
133 if (kex->load_host_public_key == NULL ||
134 kex->load_host_private_key == NULL) {
135 r = SSH_ERR_INVALID_ARGUMENT;
136 goto out;
137 }
djm@openbsd.org5104db72015-01-26 06:10:03 +0000138 server_host_public = kex->load_host_public_key(kex->hostkey_type,
139 kex->hostkey_nid, ssh);
140 server_host_private = kex->load_host_private_key(kex->hostkey_type,
141 kex->hostkey_nid, ssh);
djm@openbsd.orge2cc6be2015-01-20 07:55:33 +0000142 if (server_host_public == NULL) {
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000143 r = SSH_ERR_NO_HOSTKEY_LOADED;
144 goto out;
145 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100146
147 /* key, cert */
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000148 if ((dh_client_pub = BN_new()) == NULL) {
149 r = SSH_ERR_ALLOC_FAIL;
150 goto out;
151 }
152 if ((r = sshpkt_get_bignum2(ssh, dh_client_pub)) != 0 ||
153 (r = sshpkt_get_end(ssh)) != 0)
154 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100155
156#ifdef DEBUG_KEXDH
157 fprintf(stderr, "dh_client_pub= ");
158 BN_print_fp(stderr, dh_client_pub);
159 fprintf(stderr, "\n");
160 debug("bits %d", BN_num_bits(dh_client_pub));
161#endif
162
163#ifdef DEBUG_KEXDH
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000164 DHparams_print_fp(stderr, kex->dh);
Damien Miller8e7fb332003-02-24 12:03:03 +1100165 fprintf(stderr, "pub= ");
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000166 BN_print_fp(stderr, kex->dh->pub_key);
Damien Miller8e7fb332003-02-24 12:03:03 +1100167 fprintf(stderr, "\n");
168#endif
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000169 if (!dh_pub_is_valid(kex->dh, dh_client_pub)) {
170 sshpkt_disconnect(ssh, "bad client public DH value");
171 r = SSH_ERR_MESSAGE_INCOMPLETE;
172 goto out;
173 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100174
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000175 klen = DH_size(kex->dh);
176 if ((kbuf = malloc(klen)) == NULL ||
177 (shared_secret = BN_new()) == NULL) {
178 r = SSH_ERR_ALLOC_FAIL;
179 goto out;
180 }
181 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 ||
182 BN_bin2bn(kbuf, kout, shared_secret) == NULL) {
183 r = SSH_ERR_LIBCRYPTO_ERROR;
184 goto out;
185 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100186#ifdef DEBUG_KEXDH
187 dump_digest("shared secret", kbuf, kout);
188#endif
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000189 if ((r = sshkey_to_blob(server_host_public, &server_host_key_blob,
190 &sbloblen)) != 0)
191 goto out;
Damien Miller19bb3a52005-11-05 15:19:35 +1100192 /* calc H */
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000193 hashlen = sizeof(hash);
194 if ((r = kexgex_hash(
Damien Millerb3051d02014-01-10 10:58:53 +1100195 kex->hash_alg,
Damien Miller8e7fb332003-02-24 12:03:03 +1100196 kex->client_version_string,
197 kex->server_version_string,
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000198 sshbuf_ptr(kex->peer), sshbuf_len(kex->peer),
199 sshbuf_ptr(kex->my), sshbuf_len(kex->my),
Damien Miller8e7fb332003-02-24 12:03:03 +1100200 server_host_key_blob, sbloblen,
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000201 kex->min, kex->nbits, kex->max,
202 kex->dh->p, kex->dh->g,
Damien Miller8e7fb332003-02-24 12:03:03 +1100203 dh_client_pub,
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000204 kex->dh->pub_key,
Damien Miller19bb3a52005-11-05 15:19:35 +1100205 shared_secret,
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000206 hash, &hashlen)) != 0)
207 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100208
209 /* save session id := H */
Damien Miller8e7fb332003-02-24 12:03:03 +1100210 if (kex->session_id == NULL) {
Damien Miller19bb3a52005-11-05 15:19:35 +1100211 kex->session_id_len = hashlen;
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000212 kex->session_id = malloc(kex->session_id_len);
213 if (kex->session_id == NULL) {
214 r = SSH_ERR_ALLOC_FAIL;
215 goto out;
216 }
Damien Miller8e7fb332003-02-24 12:03:03 +1100217 memcpy(kex->session_id, hash, kex->session_id_len);
218 }
219
220 /* sign H */
markus@openbsd.org76c9fbb2015-12-04 16:41:28 +0000221 if ((r = kex->sign(server_host_private, server_host_public, &signature,
222 &slen, hash, hashlen, kex->hostkey_alg, ssh->compat)) < 0)
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000223 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100224
225 /* destroy_sensitive_data(); */
226
227 /* send server hostkey, DH pubkey 'f' and singed H */
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000228 if ((r = sshpkt_start(ssh, SSH2_MSG_KEX_DH_GEX_REPLY)) != 0 ||
229 (r = sshpkt_put_string(ssh, server_host_key_blob, sbloblen)) != 0 ||
230 (r = sshpkt_put_bignum2(ssh, kex->dh->pub_key)) != 0 || /* f */
231 (r = sshpkt_put_string(ssh, signature, slen)) != 0 ||
232 (r = sshpkt_send(ssh)) != 0)
233 goto out;
Damien Miller8e7fb332003-02-24 12:03:03 +1100234
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000235 if ((r = kex_derive_keys_bn(ssh, hash, hashlen, shared_secret)) == 0)
236 r = kex_send_newkeys(ssh);
237 out:
238 DH_free(kex->dh);
239 kex->dh = NULL;
240 if (dh_client_pub)
241 BN_clear_free(dh_client_pub);
242 if (kbuf) {
243 explicit_bzero(kbuf, klen);
244 free(kbuf);
245 }
246 if (shared_secret)
247 BN_clear_free(shared_secret);
Darren Tuckera627d422013-06-02 07:31:17 +1000248 free(server_host_key_blob);
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000249 free(signature);
250 return r;
Damien Miller8e7fb332003-02-24 12:03:03 +1100251}
Damien Miller72ef7c12015-01-15 02:21:31 +1100252#endif /* WITH_OPENSSL */