freebsd-src/crypto/openssh/kexgexs.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

217 lines
6.3 KiB
C
Raw Normal View History

2023-08-10 16:16:53 +00:00
/* $OpenBSD: kexgexs.c,v 1.46 2023/03/29 01:07:48 dtucker Exp $ */
/*
* Copyright (c) 2000 Niels Provos. All rights reserved.
* Copyright (c) 2001 Markus Friedl. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "includes.h"
2006-09-30 13:29:51 +00:00
2015-07-02 13:15:34 +00:00
#ifdef WITH_OPENSSL
2006-09-30 13:29:51 +00:00
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
2011-02-17 11:47:40 +00:00
#include <openssl/dh.h>
#include "openbsd-compat/openssl-compat.h"
2015-07-02 13:15:34 +00:00
#include "sshkey.h"
2006-09-30 13:29:51 +00:00
#include "cipher.h"
2015-07-02 13:15:34 +00:00
#include "digest.h"
#include "kex.h"
#include "log.h"
#include "packet.h"
#include "dh.h"
#include "ssh2.h"
2006-09-30 13:29:51 +00:00
#ifdef GSSAPI
#include "ssh-gss.h"
#endif
#include "monitor_wrap.h"
2015-07-02 13:15:34 +00:00
#include "dispatch.h"
#include "ssherr.h"
#include "sshbuf.h"
2017-01-31 12:33:47 +00:00
#include "misc.h"
2015-07-02 13:15:34 +00:00
2018-05-06 12:24:45 +00:00
static int input_kex_dh_gex_request(int, u_int32_t, struct ssh *);
static int input_kex_dh_gex_init(int, u_int32_t, struct ssh *);
2015-07-02 13:15:34 +00:00
int
kexgex_server(struct ssh *ssh)
{
2015-07-02 13:15:34 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_KEX_DH_GEX_REQUEST,
&input_kex_dh_gex_request);
debug("expecting SSH2_MSG_KEX_DH_GEX_REQUEST");
return 0;
}
static int
2018-05-06 12:24:45 +00:00
input_kex_dh_gex_request(int type, u_int32_t seq, struct ssh *ssh)
2015-07-02 13:15:34 +00:00
{
struct kex *kex = ssh->kex;
int r;
u_int min = 0, max = 0, nbits = 0;
const BIGNUM *dh_p, *dh_g;
2015-07-02 13:18:50 +00:00
debug("SSH2_MSG_KEX_DH_GEX_REQUEST received");
2021-04-23 19:10:38 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_KEX_DH_GEX_REQUEST, &kex_protocol_error);
2015-07-02 13:18:50 +00:00
if ((r = sshpkt_get_u32(ssh, &min)) != 0 ||
(r = sshpkt_get_u32(ssh, &nbits)) != 0 ||
(r = sshpkt_get_u32(ssh, &max)) != 0 ||
(r = sshpkt_get_end(ssh)) != 0)
2015-07-02 13:15:34 +00:00
goto out;
2015-07-02 13:18:50 +00:00
kex->nbits = nbits;
kex->min = min;
kex->max = max;
2017-01-31 12:33:47 +00:00
min = MAXIMUM(DH_GRP_MIN, min);
max = MINIMUM(DH_GRP_MAX, max);
nbits = MAXIMUM(DH_GRP_MIN, nbits);
nbits = MINIMUM(DH_GRP_MAX, nbits);
2015-07-02 13:15:34 +00:00
if (kex->max < kex->min || kex->nbits < kex->min ||
2017-01-31 12:29:48 +00:00
kex->max < kex->nbits || kex->max < DH_GRP_MIN) {
2015-07-02 13:15:34 +00:00
r = SSH_ERR_DH_GEX_OUT_OF_RANGE;
goto out;
}
/* Contact privileged parent */
2015-07-02 13:15:34 +00:00
kex->dh = PRIVSEP(choose_dh(min, nbits, max));
if (kex->dh == NULL) {
2023-08-10 16:16:53 +00:00
(void)sshpkt_disconnect(ssh, "no matching DH grp found");
2015-07-02 13:15:34 +00:00
r = SSH_ERR_ALLOC_FAIL;
goto out;
}
debug("SSH2_MSG_KEX_DH_GEX_GROUP sent");
DH_get0_pqg(kex->dh, &dh_p, NULL, &dh_g);
2015-07-02 13:15:34 +00:00
if ((r = sshpkt_start(ssh, SSH2_MSG_KEX_DH_GEX_GROUP)) != 0 ||
(r = sshpkt_put_bignum2(ssh, dh_p)) != 0 ||
(r = sshpkt_put_bignum2(ssh, dh_g)) != 0 ||
2015-07-02 13:15:34 +00:00
(r = sshpkt_send(ssh)) != 0)
goto out;
/* Compute our exchange value in parallel with the client */
2015-07-02 13:15:34 +00:00
if ((r = dh_gen_key(kex->dh, kex->we_need * 8)) != 0)
goto out;
debug("expecting SSH2_MSG_KEX_DH_GEX_INIT");
2015-07-02 13:15:34 +00:00
ssh_dispatch_set(ssh, SSH2_MSG_KEX_DH_GEX_INIT, &input_kex_dh_gex_init);
r = 0;
out:
return r;
}
static int
2018-05-06 12:24:45 +00:00
input_kex_dh_gex_init(int type, u_int32_t seq, struct ssh *ssh)
2015-07-02 13:15:34 +00:00
{
struct kex *kex = ssh->kex;
2020-02-14 19:47:15 +00:00
BIGNUM *dh_client_pub = NULL;
const BIGNUM *pub_key, *dh_p, *dh_g;
2020-02-14 19:47:15 +00:00
struct sshbuf *shared_secret = NULL;
struct sshbuf *server_host_key_blob = NULL;
2015-07-02 13:15:34 +00:00
struct sshkey *server_host_public, *server_host_private;
2020-02-14 19:47:15 +00:00
u_char *signature = NULL;
2015-07-02 13:15:34 +00:00
u_char hash[SSH_DIGEST_MAX_LENGTH];
2020-02-14 19:47:15 +00:00
size_t slen, hashlen;
int r;
2015-07-02 13:15:34 +00:00
2021-04-23 19:10:38 +00:00
debug("SSH2_MSG_KEX_DH_GEX_INIT received");
ssh_dispatch_set(ssh, SSH2_MSG_KEX_DH_GEX_INIT, &kex_protocol_error);
2020-02-14 19:47:15 +00:00
if ((r = kex_load_hostkey(ssh, &server_host_private,
&server_host_public)) != 0)
2015-07-02 13:15:34 +00:00
goto out;
/* key, cert */
2020-02-14 19:47:15 +00:00
if ((r = sshpkt_get_bignum2(ssh, &dh_client_pub)) != 0 ||
2015-07-02 13:15:34 +00:00
(r = sshpkt_get_end(ssh)) != 0)
goto out;
2020-02-14 19:47:15 +00:00
if ((shared_secret = sshbuf_new()) == NULL) {
2015-07-02 13:15:34 +00:00
r = SSH_ERR_ALLOC_FAIL;
goto out;
}
2020-02-14 19:47:15 +00:00
if ((r = kex_dh_compute_key(kex, dh_client_pub, shared_secret)) != 0)
goto out;
if ((server_host_key_blob = sshbuf_new()) == NULL) {
r = SSH_ERR_ALLOC_FAIL;
2015-07-02 13:15:34 +00:00
goto out;
}
2020-02-14 19:47:15 +00:00
if ((r = sshkey_putb(server_host_public, server_host_key_blob)) != 0)
2015-07-02 13:15:34 +00:00
goto out;
2020-02-14 19:47:15 +00:00
2006-03-22 19:46:12 +00:00
/* calc H */
2020-02-14 19:47:15 +00:00
DH_get0_key(kex->dh, &pub_key, NULL);
DH_get0_pqg(kex->dh, &dh_p, NULL, &dh_g);
2015-07-02 13:15:34 +00:00
hashlen = sizeof(hash);
if ((r = kexgex_hash(
2014-01-30 10:56:49 +00:00
kex->hash_alg,
2020-02-14 19:47:15 +00:00
kex->client_version,
kex->server_version,
kex->peer,
kex->my,
server_host_key_blob,
2015-07-02 13:15:34 +00:00
kex->min, kex->nbits, kex->max,
dh_p, dh_g,
dh_client_pub,
pub_key,
2020-02-14 19:47:15 +00:00
sshbuf_ptr(shared_secret), sshbuf_len(shared_secret),
2015-07-02 13:15:34 +00:00
hash, &hashlen)) != 0)
goto out;
/* sign H */
2020-02-14 19:47:15 +00:00
if ((r = kex->sign(ssh, server_host_private, server_host_public,
&signature, &slen, hash, hashlen, kex->hostkey_alg)) < 0)
2015-07-02 13:15:34 +00:00
goto out;
2018-08-28 10:47:58 +00:00
/* send server hostkey, DH pubkey 'f' and signed H */
2015-07-02 13:15:34 +00:00
if ((r = sshpkt_start(ssh, SSH2_MSG_KEX_DH_GEX_REPLY)) != 0 ||
2020-02-14 19:47:15 +00:00
(r = sshpkt_put_stringb(ssh, server_host_key_blob)) != 0 ||
(r = sshpkt_put_bignum2(ssh, pub_key)) != 0 || /* f */
2015-07-02 13:15:34 +00:00
(r = sshpkt_put_string(ssh, signature, slen)) != 0 ||
(r = sshpkt_send(ssh)) != 0)
goto out;
2022-02-23 18:16:45 +00:00
if ((r = kex_derive_keys(ssh, hash, hashlen, shared_secret)) != 0 ||
(r = kex_send_newkeys(ssh)) != 0)
goto out;
/* retain copy of hostkey used at initial KEX */
if (kex->initial_hostkey == NULL &&
(r = sshkey_from_private(server_host_public,
&kex->initial_hostkey)) != 0)
goto out;
/* success */
2015-07-02 13:15:34 +00:00
out:
2019-02-05 15:03:53 +00:00
explicit_bzero(hash, sizeof(hash));
2015-07-02 13:15:34 +00:00
DH_free(kex->dh);
kex->dh = NULL;
2018-05-06 12:27:04 +00:00
BN_clear_free(dh_client_pub);
2020-02-14 19:47:15 +00:00
sshbuf_free(shared_secret);
sshbuf_free(server_host_key_blob);
2015-07-02 13:15:34 +00:00
free(signature);
return r;
}
2015-07-02 13:15:34 +00:00
#endif /* WITH_OPENSSL */