2019-08-30 20:33:37 +08:00
|
|
|
/*
|
2020-04-23 20:55:52 +08:00
|
|
|
* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-08-30 20:33:37 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2020-01-30 05:23:39 +08:00
|
|
|
/*
|
|
|
|
* DSA low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2020-01-21 22:05:56 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
#include <openssl/crypto.h>
|
2020-06-21 07:21:19 +08:00
|
|
|
#include <openssl/core_dispatch.h>
|
2019-08-30 20:33:37 +08:00
|
|
|
#include <openssl/core_names.h>
|
2020-01-21 22:05:56 +08:00
|
|
|
#include <openssl/err.h>
|
2019-08-30 20:33:37 +08:00
|
|
|
#include <openssl/dsa.h>
|
|
|
|
#include <openssl/params.h>
|
2019-09-23 21:36:32 +08:00
|
|
|
#include <openssl/evp.h>
|
2020-02-02 20:09:23 +08:00
|
|
|
#include <openssl/err.h>
|
2020-01-21 22:05:56 +08:00
|
|
|
#include "internal/nelem.h"
|
2020-01-22 21:00:21 +08:00
|
|
|
#include "internal/sizes.h"
|
2020-03-31 23:16:59 +08:00
|
|
|
#include "internal/cryptlib.h"
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
#include "prov/providercommon.h"
|
2019-10-04 21:20:48 +08:00
|
|
|
#include "prov/implementations.h"
|
2020-02-02 20:09:23 +08:00
|
|
|
#include "prov/providercommonerr.h"
|
2019-10-04 21:25:59 +08:00
|
|
|
#include "prov/provider_ctx.h"
|
2020-08-29 10:37:46 +08:00
|
|
|
#include "prov/provider_util.h"
|
2020-01-12 09:32:12 +08:00
|
|
|
#include "crypto/dsa.h"
|
2020-03-31 23:16:59 +08:00
|
|
|
#include "prov/der_dsa.h"
|
2019-08-30 20:33:37 +08:00
|
|
|
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_signature_newctx_fn dsa_newctx;
|
2020-08-29 10:37:46 +08:00
|
|
|
static OSSL_FUNC_signature_sign_init_fn dsa_sign_init;
|
|
|
|
static OSSL_FUNC_signature_verify_init_fn dsa_verify_init;
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_signature_sign_fn dsa_sign;
|
|
|
|
static OSSL_FUNC_signature_verify_fn dsa_verify;
|
2020-08-29 10:37:46 +08:00
|
|
|
static OSSL_FUNC_signature_digest_sign_init_fn dsa_digest_sign_init;
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_signature_digest_sign_update_fn dsa_digest_signverify_update;
|
|
|
|
static OSSL_FUNC_signature_digest_sign_final_fn dsa_digest_sign_final;
|
2020-08-29 10:37:46 +08:00
|
|
|
static OSSL_FUNC_signature_digest_verify_init_fn dsa_digest_verify_init;
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_signature_digest_verify_update_fn dsa_digest_signverify_update;
|
|
|
|
static OSSL_FUNC_signature_digest_verify_final_fn dsa_digest_verify_final;
|
|
|
|
static OSSL_FUNC_signature_freectx_fn dsa_freectx;
|
|
|
|
static OSSL_FUNC_signature_dupctx_fn dsa_dupctx;
|
|
|
|
static OSSL_FUNC_signature_get_ctx_params_fn dsa_get_ctx_params;
|
|
|
|
static OSSL_FUNC_signature_gettable_ctx_params_fn dsa_gettable_ctx_params;
|
|
|
|
static OSSL_FUNC_signature_set_ctx_params_fn dsa_set_ctx_params;
|
|
|
|
static OSSL_FUNC_signature_settable_ctx_params_fn dsa_settable_ctx_params;
|
|
|
|
static OSSL_FUNC_signature_get_ctx_md_params_fn dsa_get_ctx_md_params;
|
|
|
|
static OSSL_FUNC_signature_gettable_ctx_md_params_fn dsa_gettable_ctx_md_params;
|
|
|
|
static OSSL_FUNC_signature_set_ctx_md_params_fn dsa_set_ctx_md_params;
|
|
|
|
static OSSL_FUNC_signature_settable_ctx_md_params_fn dsa_settable_ctx_md_params;
|
2019-08-30 20:33:37 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* What's passed as an actual key is defined by the KEYMGMT interface.
|
|
|
|
* We happen to know that our KEYMGMT simply passes DSA structures, so
|
|
|
|
* we use that here too.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct {
|
2019-09-23 21:36:32 +08:00
|
|
|
OPENSSL_CTX *libctx;
|
2020-05-07 03:44:58 +08:00
|
|
|
char *propq;
|
2019-08-30 20:33:37 +08:00
|
|
|
DSA *dsa;
|
2020-02-02 20:09:23 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Flag to determine if the hash function can be changed (1) or not (0)
|
|
|
|
* Because it's dangerous to change during a DigestSign or DigestVerify
|
|
|
|
* operation, this flag is cleared by their Init function, and set again
|
|
|
|
* by their Final function.
|
|
|
|
*/
|
|
|
|
unsigned int flag_allow_md : 1;
|
|
|
|
|
2020-01-22 21:00:21 +08:00
|
|
|
char mdname[OSSL_MAX_NAME_SIZE];
|
2020-01-21 22:05:56 +08:00
|
|
|
|
2020-03-15 19:34:29 +08:00
|
|
|
/* The Algorithm Identifier of the combined signature algorithm */
|
2020-03-31 23:16:59 +08:00
|
|
|
unsigned char aid_buf[OSSL_MAX_ALGORITHM_ID_SIZE];
|
|
|
|
unsigned char *aid;
|
2020-01-21 22:05:56 +08:00
|
|
|
size_t aid_len;
|
|
|
|
|
|
|
|
/* main digest */
|
2019-09-23 21:36:32 +08:00
|
|
|
EVP_MD *md;
|
|
|
|
EVP_MD_CTX *mdctx;
|
2020-02-02 20:09:23 +08:00
|
|
|
size_t mdsize;
|
2020-08-29 10:37:46 +08:00
|
|
|
int operation;
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
} PROV_DSA_CTX;
|
|
|
|
|
2020-08-29 10:37:46 +08:00
|
|
|
/*
|
|
|
|
* Check for valid key sizes if fips mode. Refer to
|
|
|
|
* https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar2.pdf
|
|
|
|
* "Table 2"
|
|
|
|
*/
|
|
|
|
static int dsa_check_key_size(const PROV_DSA_CTX *ctx)
|
|
|
|
{
|
|
|
|
#ifdef FIPS_MODULE
|
|
|
|
size_t L, N;
|
|
|
|
const BIGNUM *p, *q;
|
|
|
|
DSA *dsa = ctx->dsa;
|
|
|
|
|
|
|
|
if (dsa == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = DSA_get0_p(dsa);
|
|
|
|
q = DSA_get0_q(dsa);
|
|
|
|
if (p == NULL || q == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
L = BN_num_bits(p);
|
|
|
|
N = BN_num_bits(q);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Valid sizes or verification - Note this could be a fips186-2 type
|
|
|
|
* key - so we allow 512 also. When this is no longer suppported the
|
|
|
|
* lower bound should be increased to 1024.
|
|
|
|
*/
|
|
|
|
if (ctx->operation != EVP_PKEY_OP_SIGN)
|
|
|
|
return (L >= 512 && N >= 160);
|
|
|
|
|
|
|
|
/* Valid sizes for both sign and verify */
|
|
|
|
if (L == 2048 && (N == 224 || N == 256))
|
|
|
|
return 1;
|
|
|
|
return (L == 3072 && N == 256);
|
|
|
|
#else
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-02-02 20:09:23 +08:00
|
|
|
static size_t dsa_get_md_size(const PROV_DSA_CTX *pdsactx)
|
|
|
|
{
|
|
|
|
if (pdsactx->md != NULL)
|
|
|
|
return EVP_MD_size(pdsactx->md);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-08-29 10:37:46 +08:00
|
|
|
static int dsa_get_md_nid(const PROV_DSA_CTX *ctx, const EVP_MD *md)
|
2020-02-02 20:09:23 +08:00
|
|
|
{
|
2020-08-29 10:37:46 +08:00
|
|
|
int sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN);
|
2020-02-02 20:09:23 +08:00
|
|
|
|
2020-08-29 10:37:46 +08:00
|
|
|
return ossl_prov_digest_get_approved_nid(md, sha1_allowed);
|
2020-02-02 20:09:23 +08:00
|
|
|
}
|
|
|
|
|
2020-05-07 03:44:58 +08:00
|
|
|
static void *dsa_newctx(void *provctx, const char *propq)
|
2019-08-30 20:33:37 +08:00
|
|
|
{
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
PROV_DSA_CTX *pdsactx;
|
|
|
|
|
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return NULL;
|
2019-09-23 21:36:32 +08:00
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
pdsactx = OPENSSL_zalloc(sizeof(PROV_DSA_CTX));
|
2019-09-23 21:36:32 +08:00
|
|
|
if (pdsactx == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
pdsactx->libctx = PROV_LIBRARY_CONTEXT_OF(provctx);
|
2020-02-02 20:09:23 +08:00
|
|
|
pdsactx->flag_allow_md = 1;
|
2020-05-07 03:44:58 +08:00
|
|
|
if (propq != NULL && (pdsactx->propq = OPENSSL_strdup(propq)) == NULL) {
|
|
|
|
OPENSSL_free(pdsactx);
|
|
|
|
pdsactx = NULL;
|
|
|
|
ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
|
|
|
|
}
|
2019-09-23 21:36:32 +08:00
|
|
|
return pdsactx;
|
2019-08-30 20:33:37 +08:00
|
|
|
}
|
|
|
|
|
2020-02-02 20:09:23 +08:00
|
|
|
static int dsa_setup_md(PROV_DSA_CTX *ctx,
|
|
|
|
const char *mdname, const char *mdprops)
|
|
|
|
{
|
2020-05-07 03:44:58 +08:00
|
|
|
if (mdprops == NULL)
|
|
|
|
mdprops = ctx->propq;
|
|
|
|
|
2020-02-02 20:09:23 +08:00
|
|
|
if (mdname != NULL) {
|
2020-03-31 23:16:59 +08:00
|
|
|
WPACKET pkt;
|
2020-08-29 10:37:46 +08:00
|
|
|
EVP_MD *md = EVP_MD_fetch(ctx->libctx, mdname, mdprops);
|
|
|
|
int md_nid = dsa_get_md_nid(ctx, md);
|
|
|
|
size_t mdname_len = strlen(mdname);
|
2020-02-02 20:09:23 +08:00
|
|
|
|
2020-03-31 23:16:59 +08:00
|
|
|
if (md == NULL || md_nid == NID_undef) {
|
2020-08-29 10:37:46 +08:00
|
|
|
if (md == NULL)
|
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_DIGEST,
|
|
|
|
"%s could not be fetched", mdname);
|
|
|
|
if (md_nid == NID_undef)
|
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_DIGEST_NOT_ALLOWED,
|
|
|
|
"digest=%s", mdname);
|
|
|
|
if (mdname_len >= sizeof(ctx->mdname))
|
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_DIGEST,
|
|
|
|
"%s exceeds name buffer length", mdname);
|
2020-02-02 20:09:23 +08:00
|
|
|
EVP_MD_free(md);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-31 23:16:59 +08:00
|
|
|
EVP_MD_CTX_free(ctx->mdctx);
|
|
|
|
EVP_MD_free(ctx->md);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO(3.0) Should we care about DER writing errors?
|
|
|
|
* All it really means is that for some reason, there's no
|
|
|
|
* AlgorithmIdentifier to be had, but the operation itself is
|
|
|
|
* still valid, just as long as it's not used to construct
|
|
|
|
* anything that needs an AlgorithmIdentifier.
|
|
|
|
*/
|
|
|
|
ctx->aid_len = 0;
|
|
|
|
if (WPACKET_init_der(&pkt, ctx->aid_buf, sizeof(ctx->aid_buf))
|
2020-05-19 16:43:49 +08:00
|
|
|
&& DER_w_algorithmIdentifier_DSA_with_MD(&pkt, -1, ctx->dsa,
|
|
|
|
md_nid)
|
2020-03-31 23:16:59 +08:00
|
|
|
&& WPACKET_finish(&pkt)) {
|
|
|
|
WPACKET_get_total_written(&pkt, &ctx->aid_len);
|
|
|
|
ctx->aid = WPACKET_get_curr(&pkt);
|
|
|
|
}
|
|
|
|
WPACKET_cleanup(&pkt);
|
|
|
|
|
|
|
|
ctx->mdctx = NULL;
|
2020-02-02 20:09:23 +08:00
|
|
|
ctx->md = md;
|
|
|
|
OPENSSL_strlcpy(ctx->mdname, mdname, sizeof(ctx->mdname));
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-08-29 10:37:46 +08:00
|
|
|
static int dsa_signverify_init(void *vpdsactx, void *vdsa, int operation)
|
2019-08-30 20:33:37 +08:00
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running()
|
|
|
|
|| pdsactx == NULL
|
|
|
|
|| vdsa == NULL
|
|
|
|
|| !DSA_up_ref(vdsa))
|
2019-08-30 20:33:37 +08:00
|
|
|
return 0;
|
|
|
|
DSA_free(pdsactx->dsa);
|
|
|
|
pdsactx->dsa = vdsa;
|
2020-08-29 10:37:46 +08:00
|
|
|
pdsactx->operation = operation;
|
|
|
|
if (!dsa_check_key_size(pdsactx)) {
|
|
|
|
ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH);
|
|
|
|
return 0;
|
|
|
|
}
|
2019-08-30 20:33:37 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-08-29 10:37:46 +08:00
|
|
|
static int dsa_sign_init(void *vpdsactx, void *vdsa)
|
|
|
|
{
|
|
|
|
return dsa_signverify_init(vpdsactx, vdsa, EVP_PKEY_OP_SIGN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dsa_verify_init(void *vpdsactx, void *vdsa)
|
|
|
|
{
|
|
|
|
return dsa_signverify_init(vpdsactx, vdsa, EVP_PKEY_OP_VERIFY);
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
static int dsa_sign(void *vpdsactx, unsigned char *sig, size_t *siglen,
|
|
|
|
size_t sigsize, const unsigned char *tbs, size_t tbslen)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
int ret;
|
|
|
|
unsigned int sltmp;
|
|
|
|
size_t dsasize = DSA_size(pdsactx->dsa);
|
2020-02-02 20:09:23 +08:00
|
|
|
size_t mdsize = dsa_get_md_size(pdsactx);
|
2019-08-30 20:33:37 +08:00
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return 0;
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
if (sig == NULL) {
|
|
|
|
*siglen = dsasize;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sigsize < (size_t)dsasize)
|
|
|
|
return 0;
|
|
|
|
|
2020-02-02 20:09:23 +08:00
|
|
|
if (mdsize != 0 && tbslen != mdsize)
|
2019-08-30 20:33:37 +08:00
|
|
|
return 0;
|
|
|
|
|
2020-02-16 11:03:46 +08:00
|
|
|
ret = dsa_sign_int(0, tbs, tbslen, sig, &sltmp, pdsactx->dsa);
|
2019-08-30 20:33:37 +08:00
|
|
|
if (ret <= 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*siglen = sltmp;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-09-02 23:48:26 +08:00
|
|
|
static int dsa_verify(void *vpdsactx, const unsigned char *sig, size_t siglen,
|
|
|
|
const unsigned char *tbs, size_t tbslen)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
2020-02-02 20:09:23 +08:00
|
|
|
size_t mdsize = dsa_get_md_size(pdsactx);
|
2019-09-02 23:48:26 +08:00
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running() || (mdsize != 0 && tbslen != mdsize))
|
2019-09-02 23:48:26 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return DSA_verify(0, tbs, tbslen, sig, siglen, pdsactx->dsa);
|
|
|
|
}
|
|
|
|
|
2019-09-23 21:36:32 +08:00
|
|
|
static int dsa_digest_signverify_init(void *vpdsactx, const char *mdname,
|
2020-08-29 10:37:46 +08:00
|
|
|
void *vdsa, int operation)
|
2019-09-23 21:36:32 +08:00
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return 0;
|
|
|
|
|
2020-02-02 20:09:23 +08:00
|
|
|
pdsactx->flag_allow_md = 0;
|
2020-08-29 10:37:46 +08:00
|
|
|
if (!dsa_signverify_init(vpdsactx, vdsa, operation))
|
2019-09-23 21:36:32 +08:00
|
|
|
return 0;
|
|
|
|
|
2020-05-07 03:44:58 +08:00
|
|
|
if (!dsa_setup_md(pdsactx, mdname, NULL))
|
2020-02-02 20:09:23 +08:00
|
|
|
return 0;
|
2020-01-21 22:05:56 +08:00
|
|
|
|
2019-09-23 21:36:32 +08:00
|
|
|
pdsactx->mdctx = EVP_MD_CTX_new();
|
|
|
|
if (pdsactx->mdctx == NULL)
|
2020-01-21 22:05:56 +08:00
|
|
|
goto error;
|
2019-09-23 21:36:32 +08:00
|
|
|
|
2020-01-21 22:05:56 +08:00
|
|
|
if (!EVP_DigestInit_ex(pdsactx->mdctx, pdsactx->md, NULL))
|
|
|
|
goto error;
|
2019-09-23 21:36:32 +08:00
|
|
|
|
|
|
|
return 1;
|
2020-01-21 22:05:56 +08:00
|
|
|
|
|
|
|
error:
|
|
|
|
EVP_MD_CTX_free(pdsactx->mdctx);
|
|
|
|
EVP_MD_free(pdsactx->md);
|
|
|
|
pdsactx->mdctx = NULL;
|
|
|
|
pdsactx->md = NULL;
|
|
|
|
return 0;
|
2019-09-23 21:36:32 +08:00
|
|
|
}
|
|
|
|
|
2020-08-29 10:37:46 +08:00
|
|
|
static int dsa_digest_sign_init(void *vpdsactx, const char *mdname,
|
|
|
|
void *vdsa)
|
|
|
|
{
|
|
|
|
return dsa_digest_signverify_init(vpdsactx, mdname, vdsa, EVP_PKEY_OP_SIGN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dsa_digest_verify_init(void *vpdsactx, const char *mdname, void *vdsa)
|
|
|
|
{
|
|
|
|
return dsa_digest_signverify_init(vpdsactx, mdname, vdsa, EVP_PKEY_OP_VERIFY);
|
|
|
|
}
|
|
|
|
|
2019-09-23 21:36:32 +08:00
|
|
|
int dsa_digest_signverify_update(void *vpdsactx, const unsigned char *data,
|
|
|
|
size_t datalen)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
|
|
|
if (pdsactx == NULL || pdsactx->mdctx == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_DigestUpdate(pdsactx->mdctx, data, datalen);
|
|
|
|
}
|
|
|
|
|
|
|
|
int dsa_digest_sign_final(void *vpdsactx, unsigned char *sig, size_t *siglen,
|
|
|
|
size_t sigsize)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
unsigned char digest[EVP_MAX_MD_SIZE];
|
|
|
|
unsigned int dlen = 0;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running() || pdsactx == NULL || pdsactx->mdctx == NULL)
|
2019-09-23 21:36:32 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If sig is NULL then we're just finding out the sig size. Other fields
|
|
|
|
* are ignored. Defer to dsa_sign.
|
|
|
|
*/
|
|
|
|
if (sig != NULL) {
|
|
|
|
/*
|
|
|
|
* TODO(3.0): There is the possibility that some externally provided
|
|
|
|
* digests exceed EVP_MAX_MD_SIZE. We should probably handle that somehow -
|
|
|
|
* but that problem is much larger than just in DSA.
|
|
|
|
*/
|
|
|
|
if (!EVP_DigestFinal_ex(pdsactx->mdctx, digest, &dlen))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-02-02 20:09:23 +08:00
|
|
|
pdsactx->flag_allow_md = 1;
|
|
|
|
|
2019-09-23 21:36:32 +08:00
|
|
|
return dsa_sign(vpdsactx, sig, siglen, sigsize, digest, (size_t)dlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int dsa_digest_verify_final(void *vpdsactx, const unsigned char *sig,
|
|
|
|
size_t siglen)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
unsigned char digest[EVP_MAX_MD_SIZE];
|
|
|
|
unsigned int dlen = 0;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running() || pdsactx == NULL || pdsactx->mdctx == NULL)
|
2019-09-23 21:36:32 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO(3.0): There is the possibility that some externally provided
|
|
|
|
* digests exceed EVP_MAX_MD_SIZE. We should probably handle that somehow -
|
|
|
|
* but that problem is much larger than just in DSA.
|
|
|
|
*/
|
|
|
|
if (!EVP_DigestFinal_ex(pdsactx->mdctx, digest, &dlen))
|
|
|
|
return 0;
|
|
|
|
|
2020-02-02 20:09:23 +08:00
|
|
|
pdsactx->flag_allow_md = 1;
|
|
|
|
|
2019-09-23 21:36:32 +08:00
|
|
|
return dsa_verify(vpdsactx, sig, siglen, digest, (size_t)dlen);
|
|
|
|
}
|
2019-09-02 23:48:26 +08:00
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
static void dsa_freectx(void *vpdsactx)
|
|
|
|
{
|
2020-06-17 09:33:16 +08:00
|
|
|
PROV_DSA_CTX *ctx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
|
|
|
OPENSSL_free(ctx->propq);
|
|
|
|
EVP_MD_CTX_free(ctx->mdctx);
|
|
|
|
EVP_MD_free(ctx->md);
|
|
|
|
ctx->propq = NULL;
|
|
|
|
ctx->mdctx = NULL;
|
|
|
|
ctx->md = NULL;
|
|
|
|
ctx->mdsize = 0;
|
|
|
|
DSA_free(ctx->dsa);
|
|
|
|
OPENSSL_free(ctx);
|
2019-08-30 20:33:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *dsa_dupctx(void *vpdsactx)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *srcctx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
PROV_DSA_CTX *dstctx;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return NULL;
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
dstctx = OPENSSL_zalloc(sizeof(*srcctx));
|
|
|
|
if (dstctx == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
*dstctx = *srcctx;
|
2019-09-23 21:36:32 +08:00
|
|
|
dstctx->dsa = NULL;
|
|
|
|
dstctx->md = NULL;
|
|
|
|
dstctx->mdctx = NULL;
|
|
|
|
|
|
|
|
if (srcctx->dsa != NULL && !DSA_up_ref(srcctx->dsa))
|
|
|
|
goto err;
|
|
|
|
dstctx->dsa = srcctx->dsa;
|
|
|
|
|
|
|
|
if (srcctx->md != NULL && !EVP_MD_up_ref(srcctx->md))
|
|
|
|
goto err;
|
|
|
|
dstctx->md = srcctx->md;
|
|
|
|
|
|
|
|
if (srcctx->mdctx != NULL) {
|
|
|
|
dstctx->mdctx = EVP_MD_CTX_new();
|
|
|
|
if (dstctx->mdctx == NULL
|
|
|
|
|| !EVP_MD_CTX_copy_ex(dstctx->mdctx, srcctx->mdctx))
|
|
|
|
goto err;
|
2019-08-30 20:33:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return dstctx;
|
2019-09-23 21:36:32 +08:00
|
|
|
err:
|
|
|
|
dsa_freectx(dstctx);
|
|
|
|
return NULL;
|
2019-08-30 20:33:37 +08:00
|
|
|
}
|
|
|
|
|
2019-09-04 19:46:02 +08:00
|
|
|
static int dsa_get_ctx_params(void *vpdsactx, OSSL_PARAM *params)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
OSSL_PARAM *p;
|
|
|
|
|
|
|
|
if (pdsactx == NULL || params == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2020-01-21 22:05:56 +08:00
|
|
|
p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_ALGORITHM_ID);
|
|
|
|
if (p != NULL
|
|
|
|
&& !OSSL_PARAM_set_octet_string(p, pdsactx->aid, pdsactx->aid_len))
|
|
|
|
return 0;
|
|
|
|
|
2019-09-04 19:46:02 +08:00
|
|
|
p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_DIGEST);
|
2020-02-02 20:09:23 +08:00
|
|
|
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, pdsactx->mdname))
|
2019-09-04 19:46:02 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM known_gettable_ctx_params[] = {
|
2020-01-21 22:05:56 +08:00
|
|
|
OSSL_PARAM_octet_string(OSSL_SIGNATURE_PARAM_ALGORITHM_ID, NULL, 0),
|
2019-09-04 19:46:02 +08:00
|
|
|
OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST, NULL, 0),
|
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
|
2020-08-29 10:37:46 +08:00
|
|
|
static const OSSL_PARAM *dsa_gettable_ctx_params(ossl_unused void *vctx)
|
2019-09-04 19:46:02 +08:00
|
|
|
{
|
|
|
|
return known_gettable_ctx_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dsa_set_ctx_params(void *vpdsactx, const OSSL_PARAM params[])
|
2019-08-30 20:33:37 +08:00
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
const OSSL_PARAM *p;
|
|
|
|
|
|
|
|
if (pdsactx == NULL || params == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2019-09-04 19:46:02 +08:00
|
|
|
p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_DIGEST);
|
2020-02-02 20:09:23 +08:00
|
|
|
/* Not allowed during certain operations */
|
|
|
|
if (p != NULL && !pdsactx->flag_allow_md)
|
2019-09-04 19:46:02 +08:00
|
|
|
return 0;
|
2020-02-02 20:09:23 +08:00
|
|
|
if (p != NULL) {
|
|
|
|
char mdname[OSSL_MAX_NAME_SIZE] = "", *pmdname = mdname;
|
|
|
|
char mdprops[OSSL_MAX_PROPQUERY_SIZE] = "", *pmdprops = mdprops;
|
|
|
|
const OSSL_PARAM *propsp =
|
|
|
|
OSSL_PARAM_locate_const(params,
|
|
|
|
OSSL_SIGNATURE_PARAM_PROPERTIES);
|
|
|
|
|
|
|
|
if (!OSSL_PARAM_get_utf8_string(p, &pmdname, sizeof(mdname)))
|
|
|
|
return 0;
|
|
|
|
if (propsp != NULL
|
|
|
|
&& !OSSL_PARAM_get_utf8_string(propsp, &pmdprops, sizeof(mdprops)))
|
|
|
|
return 0;
|
|
|
|
if (!dsa_setup_md(pdsactx, mdname, mdprops))
|
|
|
|
return 0;
|
|
|
|
}
|
2019-08-30 20:33:37 +08:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-09-04 19:46:02 +08:00
|
|
|
static const OSSL_PARAM known_settable_ctx_params[] = {
|
|
|
|
OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST, NULL, 0),
|
2020-05-26 11:53:07 +08:00
|
|
|
OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_PROPERTIES, NULL, 0),
|
2019-09-04 19:46:02 +08:00
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
|
2020-08-07 11:20:18 +08:00
|
|
|
static const OSSL_PARAM *dsa_settable_ctx_params(ossl_unused void *provctx)
|
2019-09-04 19:46:02 +08:00
|
|
|
{
|
2019-09-23 21:36:32 +08:00
|
|
|
/*
|
|
|
|
* TODO(3.0): Should this function return a different set of settable ctx
|
|
|
|
* params if the ctx is being used for a DigestSign/DigestVerify? In that
|
|
|
|
* case it is not allowed to set the digest size/digest name because the
|
|
|
|
* digest is explicitly set as part of the init.
|
2020-08-29 10:37:46 +08:00
|
|
|
* NOTE: Ideally we would check pdsactx->flag_allow_md, but this is
|
|
|
|
* problematic because there is no nice way of passing the
|
|
|
|
* PROV_DSA_CTX down to this function...
|
|
|
|
* Because we have API's that dont know about their parent..
|
|
|
|
* e.g: EVP_SIGNATURE_gettable_ctx_params(const EVP_SIGNATURE *sig).
|
|
|
|
* We could pass NULL for that case (but then how useful is the check?).
|
2019-09-23 21:36:32 +08:00
|
|
|
*/
|
2019-09-04 19:46:02 +08:00
|
|
|
return known_settable_ctx_params;
|
|
|
|
}
|
|
|
|
|
2019-09-23 21:36:32 +08:00
|
|
|
static int dsa_get_ctx_md_params(void *vpdsactx, OSSL_PARAM *params)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
|
|
|
if (pdsactx->mdctx == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_MD_CTX_get_params(pdsactx->mdctx, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM *dsa_gettable_ctx_md_params(void *vpdsactx)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
|
|
|
if (pdsactx->md == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_MD_gettable_ctx_params(pdsactx->md);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dsa_set_ctx_md_params(void *vpdsactx, const OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
|
|
|
if (pdsactx->mdctx == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_MD_CTX_set_params(pdsactx->mdctx, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM *dsa_settable_ctx_md_params(void *vpdsactx)
|
|
|
|
{
|
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
|
|
|
if (pdsactx->md == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_MD_settable_ctx_params(pdsactx->md);
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
const OSSL_DISPATCH dsa_signature_functions[] = {
|
|
|
|
{ OSSL_FUNC_SIGNATURE_NEWCTX, (void (*)(void))dsa_newctx },
|
2020-08-29 10:37:46 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_SIGN_INIT, (void (*)(void))dsa_sign_init },
|
2019-08-30 20:33:37 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_SIGN, (void (*)(void))dsa_sign },
|
2020-08-29 10:37:46 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_VERIFY_INIT, (void (*)(void))dsa_verify_init },
|
2019-09-02 23:48:26 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_VERIFY, (void (*)(void))dsa_verify },
|
2019-09-23 21:36:32 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_SIGN_INIT,
|
2020-08-29 10:37:46 +08:00
|
|
|
(void (*)(void))dsa_digest_sign_init },
|
2019-09-23 21:36:32 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_SIGN_UPDATE,
|
|
|
|
(void (*)(void))dsa_digest_signverify_update },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_SIGN_FINAL,
|
|
|
|
(void (*)(void))dsa_digest_sign_final },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_INIT,
|
2020-08-29 10:37:46 +08:00
|
|
|
(void (*)(void))dsa_digest_verify_init },
|
2019-09-23 21:36:32 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_UPDATE,
|
|
|
|
(void (*)(void))dsa_digest_signverify_update },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_FINAL,
|
|
|
|
(void (*)(void))dsa_digest_verify_final },
|
2019-08-30 20:33:37 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_FREECTX, (void (*)(void))dsa_freectx },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DUPCTX, (void (*)(void))dsa_dupctx },
|
2019-09-04 19:46:02 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_GET_CTX_PARAMS, (void (*)(void))dsa_get_ctx_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_GETTABLE_CTX_PARAMS,
|
|
|
|
(void (*)(void))dsa_gettable_ctx_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_SET_CTX_PARAMS, (void (*)(void))dsa_set_ctx_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_SETTABLE_CTX_PARAMS,
|
|
|
|
(void (*)(void))dsa_settable_ctx_params },
|
2019-09-23 21:36:32 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_GET_CTX_MD_PARAMS,
|
|
|
|
(void (*)(void))dsa_get_ctx_md_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_GETTABLE_CTX_MD_PARAMS,
|
|
|
|
(void (*)(void))dsa_gettable_ctx_md_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_SET_CTX_MD_PARAMS,
|
|
|
|
(void (*)(void))dsa_set_ctx_md_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_SETTABLE_CTX_MD_PARAMS,
|
|
|
|
(void (*)(void))dsa_settable_ctx_md_params },
|
2019-08-30 20:33:37 +08:00
|
|
|
{ 0, NULL }
|
|
|
|
};
|