diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-03-29 05:38:00 +0200 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2021-04-01 01:07:08 +0200 |
commit | e454a3934c287aede194cac49c8934f04bf6a04f (patch) | |
tree | c43916f0a50c5e2d1a9aa1caa00539c0629f1175 /crypto/dh | |
parent | CHANGES.md: reflect OSSL_HTTP_REQ_CTX_i2d renamed to OSSL_HTTP_REQ_CTX_set1_req (diff) | |
download | openssl-e454a3934c287aede194cac49c8934f04bf6a04f.tar.xz openssl-e454a3934c287aede194cac49c8934f04bf6a04f.zip |
Add a range check (from SP800-56Ar3) to DH key derivation.
Fixes #14401
Note that this moves the public key check out of DH compute_key() since
key validation does not belong inside this primitive..
The check has been moved to the EVP_PKEY_derive_set_peer() function so that
it generally applies to all exchange operations.. Use EVP_PKEY_derive_set_peer_ex()
to disable this behaviour.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14717)
Diffstat (limited to 'crypto/dh')
-rw-r--r-- | crypto/dh/dh_err.c | 3 | ||||
-rw-r--r-- | crypto/dh/dh_key.c | 45 |
2 files changed, 28 insertions, 20 deletions
diff --git a/crypto/dh/dh_err.c b/crypto/dh/dh_err.c index 00a3110964..3652e89b3d 100644 --- a/crypto/dh/dh_err.c +++ b/crypto/dh/dh_err.c @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -41,6 +41,7 @@ static const ERR_STRING_DATA DH_str_reasons[] = { {ERR_PACK(ERR_LIB_DH, 0, DH_R_INVALID_PARAMETER_NID), "invalid parameter nid"}, {ERR_PACK(ERR_LIB_DH, 0, DH_R_INVALID_PUBKEY), "invalid public key"}, + {ERR_PACK(ERR_LIB_DH, 0, DH_R_INVALID_SECRET), "invalid secret"}, {ERR_PACK(ERR_LIB_DH, 0, DH_R_KDF_PARAMETER_ERROR), "kdf parameter error"}, {ERR_PACK(ERR_LIB_DH, 0, DH_R_KEYS_NOT_SET), "keys not set"}, {ERR_PACK(ERR_LIB_DH, 0, DH_R_MISSING_PUBKEY), "missing pubkey"}, diff --git a/crypto/dh/dh_key.c b/crypto/dh/dh_key.c index 3617e61e23..33ac134c51 100644 --- a/crypto/dh/dh_key.c +++ b/crypto/dh/dh_key.c @@ -33,15 +33,16 @@ static int dh_bn_mod_exp(const DH *dh, BIGNUM *r, static int dh_init(DH *dh); static int dh_finish(DH *dh); -static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) +/* + * See SP800-56Ar3 Section 5.7.1.1 + * Finite Field Cryptography Diffie-Hellman (FFC DH) Primitive + */ +int ossl_dh_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) { BN_CTX *ctx = NULL; BN_MONT_CTX *mont = NULL; - BIGNUM *tmp; + BIGNUM *z = NULL, *pminus1; int ret = -1; -#ifndef FIPS_MODULE - int check_result; -#endif if (BN_num_bits(dh->params.p) > OPENSSL_DH_MAX_MODULUS_BITS) { ERR_raise(ERR_LIB_DH, DH_R_MODULUS_TOO_LARGE); @@ -57,8 +58,9 @@ static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) if (ctx == NULL) goto err; BN_CTX_start(ctx); - tmp = BN_CTX_get(ctx); - if (tmp == NULL) + pminus1 = BN_CTX_get(ctx); + z = BN_CTX_get(ctx); + if (z == NULL) goto err; if (dh->priv_key == NULL) { @@ -73,22 +75,27 @@ static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) if (!mont) goto err; } -/* TODO(3.0) : Solve in a PR related to Key validation for DH */ -#ifndef FIPS_MODULE - if (!DH_check_pub_key(dh, pub_key, &check_result) || check_result) { - ERR_raise(ERR_LIB_DH, DH_R_INVALID_PUBKEY); - goto err; - } -#endif - if (!dh->meth->bn_mod_exp(dh, tmp, pub_key, dh->priv_key, dh->params.p, ctx, + + /* (Step 1) Z = pub_key^priv_key mod p */ + if (!dh->meth->bn_mod_exp(dh, z, pub_key, dh->priv_key, dh->params.p, ctx, mont)) { ERR_raise(ERR_LIB_DH, ERR_R_BN_LIB); goto err; } + /* (Step 2) Error if z <= 1 or z = p - 1 */ + if (BN_copy(pminus1, dh->params.p) == NULL + || !BN_sub_word(pminus1, 1) + || BN_cmp(z, BN_value_one()) <= 0 + || BN_cmp(z, pminus1) == 0) { + ERR_raise(ERR_LIB_DH, DH_R_INVALID_SECRET); + goto err; + } + /* return the padded key, i.e. same number of bytes as the modulus */ - ret = BN_bn2binpad(tmp, key, BN_num_bytes(dh->params.p)); + ret = BN_bn2binpad(z, key, BN_num_bytes(dh->params.p)); err: + BN_clear(z); /* (Step 2) destroy intermediate values */ BN_CTX_end(ctx); BN_CTX_free(ctx); return ret; @@ -105,7 +112,7 @@ int DH_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) /* compute the key; ret is constant unless compute_key is external */ #ifdef FIPS_MODULE - ret = compute_key(key, pub_key, dh); + ret = ossl_dh_compute_key(key, pub_key, dh); #else ret = dh->meth->compute_key(key, pub_key, dh); #endif @@ -134,7 +141,7 @@ int DH_compute_key_padded(unsigned char *key, const BIGNUM *pub_key, DH *dh) /* rv is constant unless compute_key is external */ #ifdef FIPS_MODULE - rv = compute_key(key, pub_key, dh); + rv = ossl_dh_compute_key(key, pub_key, dh); #else rv = dh->meth->compute_key(key, pub_key, dh); #endif @@ -152,7 +159,7 @@ int DH_compute_key_padded(unsigned char *key, const BIGNUM *pub_key, DH *dh) static DH_METHOD dh_ossl = { "OpenSSL DH Method", generate_key, - compute_key, + ossl_dh_compute_key, dh_bn_mod_exp, dh_init, dh_finish, |