2019-08-30 20:33:37 +08:00
|
|
|
/*
|
2021-02-18 22:57:13 +08:00
|
|
|
* Copyright 2019-2021 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>
|
2021-02-06 00:40:42 +08:00
|
|
|
#include <openssl/proverr.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"
|
2019-10-04 21:25:59 +08:00
|
|
|
#include "prov/provider_ctx.h"
|
2020-09-04 15:55:28 +08:00
|
|
|
#include "prov/securitycheck.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 {
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_LIB_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-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
|
|
|
|
2020-02-02 20:09:23 +08:00
|
|
|
static size_t dsa_get_md_size(const PROV_DSA_CTX *pdsactx)
|
|
|
|
{
|
|
|
|
if (pdsactx->md != NULL)
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
return EVP_MD_get_size(pdsactx->md);
|
2020-02-02 20:09:23 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
pdsactx->libctx = PROV_LIBCTX_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-08-29 16:03:17 +08:00
|
|
|
int sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN);
|
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);
|
2021-04-10 00:26:34 +08:00
|
|
|
int md_nid = ossl_digest_get_approved_nid_with_sha1(ctx->libctx, md,
|
|
|
|
sha1_allowed);
|
2020-08-29 10:37:46 +08:00
|
|
|
size_t mdname_len = strlen(mdname);
|
2020-02-02 20:09:23 +08:00
|
|
|
|
2021-05-10 22:51:39 +08:00
|
|
|
if (md == NULL || md_nid < 0) {
|
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);
|
2021-05-10 22:51:39 +08:00
|
|
|
if (md_nid < 0)
|
2020-08-29 10:37:46 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-07-14 21:41:22 +08:00
|
|
|
if (!ctx->flag_allow_md) {
|
|
|
|
if (ctx->mdname[0] != '\0' && !EVP_MD_is_a(md, ctx->mdname)) {
|
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_DIGEST_NOT_ALLOWED,
|
|
|
|
"digest %s != %s", mdname, ctx->mdname);
|
|
|
|
EVP_MD_free(md);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EVP_MD_free(md);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-03-31 23:16:59 +08:00
|
|
|
EVP_MD_CTX_free(ctx->mdctx);
|
|
|
|
EVP_MD_free(ctx->md);
|
|
|
|
|
|
|
|
/*
|
2021-02-27 01:28:48 +08:00
|
|
|
* We do not care about DER writing errors.
|
2020-03-31 23:16:59 +08:00
|
|
|
* 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-09-30 10:15:12 +08:00
|
|
|
&& ossl_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;
|
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int dsa_signverify_init(void *vpdsactx, void *vdsa,
|
|
|
|
const OSSL_PARAM params[], 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()
|
2021-11-04 22:38:51 +08:00
|
|
|
|| pdsactx == NULL)
|
2019-08-30 20:33:37 +08:00
|
|
|
return 0;
|
2021-11-04 22:38:51 +08:00
|
|
|
|
|
|
|
if (vdsa == NULL && pdsactx->dsa == NULL) {
|
|
|
|
ERR_raise(ERR_LIB_PROV, PROV_R_NO_KEY_SET);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vdsa != NULL) {
|
|
|
|
if (!ossl_dsa_check_key(pdsactx->libctx, vdsa,
|
|
|
|
operation == EVP_PKEY_OP_SIGN)) {
|
|
|
|
ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!DSA_up_ref(vdsa))
|
|
|
|
return 0;
|
|
|
|
DSA_free(pdsactx->dsa);
|
|
|
|
pdsactx->dsa = vdsa;
|
|
|
|
}
|
|
|
|
|
2020-08-29 10:37:46 +08:00
|
|
|
pdsactx->operation = operation;
|
2021-03-02 20:43:36 +08:00
|
|
|
|
|
|
|
if (!dsa_set_ctx_params(pdsactx, params))
|
|
|
|
return 0;
|
|
|
|
|
2019-08-30 20:33:37 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int dsa_sign_init(void *vpdsactx, void *vdsa, const OSSL_PARAM params[])
|
2020-08-29 10:37:46 +08:00
|
|
|
{
|
2021-03-02 20:43:36 +08:00
|
|
|
return dsa_signverify_init(vpdsactx, vdsa, params, EVP_PKEY_OP_SIGN);
|
2020-08-29 10:37:46 +08:00
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int dsa_verify_init(void *vpdsactx, void *vdsa,
|
|
|
|
const OSSL_PARAM params[])
|
2020-08-29 10:37:46 +08:00
|
|
|
{
|
2021-03-02 20:43:36 +08:00
|
|
|
return dsa_signverify_init(vpdsactx, vdsa, params, EVP_PKEY_OP_VERIFY);
|
2020-08-29 10:37:46 +08:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
Fix external symbols related to dsa keys
Partial fix for #12964
This adds ossl_ names for the following symbols:
dsa_check_pairwise, dsa_check_params, dsa_check_priv_key, dsa_check_pub_key, dsa_check_pub_key_partial,
dsa_do_sign_int, dsa_ffc_params_fromdata,
dsa_generate_ffc_parameters, dsa_generate_public_key,
dsa_get0_params, dsa_key_fromdata, dsa_new_with_ctx, dsa_pkey_method, dsa_sign_int
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14231)
2021-02-18 14:30:37 +08:00
|
|
|
ret = ossl_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,
|
2021-03-02 20:43:36 +08:00
|
|
|
void *vdsa, const OSSL_PARAM params[],
|
|
|
|
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;
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
if (!dsa_signverify_init(vpdsactx, vdsa, params, 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
|
|
|
|
2021-07-14 21:41:22 +08:00
|
|
|
pdsactx->flag_allow_md = 0;
|
2021-11-04 22:38:51 +08:00
|
|
|
|
|
|
|
if (pdsactx->mdctx == NULL) {
|
|
|
|
pdsactx->mdctx = EVP_MD_CTX_new();
|
|
|
|
if (pdsactx->mdctx == NULL)
|
|
|
|
goto error;
|
|
|
|
}
|
2019-09-23 21:36:32 +08:00
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
if (!EVP_DigestInit_ex2(pdsactx->mdctx, pdsactx->md, params))
|
2020-01-21 22:05:56 +08:00
|
|
|
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);
|
|
|
|
pdsactx->mdctx = 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,
|
2021-03-02 20:43:36 +08:00
|
|
|
void *vdsa, const OSSL_PARAM params[])
|
2020-08-29 10:37:46 +08:00
|
|
|
{
|
2021-03-02 20:43:36 +08:00
|
|
|
return dsa_digest_signverify_init(vpdsactx, mdname, vdsa, params,
|
|
|
|
EVP_PKEY_OP_SIGN);
|
2020-08-29 10:37:46 +08:00
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int dsa_digest_verify_init(void *vpdsactx, const char *mdname,
|
|
|
|
void *vdsa, const OSSL_PARAM params[])
|
2020-08-29 10:37:46 +08:00
|
|
|
{
|
2021-03-02 20:43:36 +08:00
|
|
|
return dsa_digest_signverify_init(vpdsactx, mdname, vdsa, params,
|
|
|
|
EVP_PKEY_OP_VERIFY);
|
2020-08-29 10:37:46 +08:00
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
/*
|
2021-02-27 01:28:48 +08:00
|
|
|
* There is the possibility that some externally provided
|
2019-09-23 21:36:32 +08:00
|
|
|
* 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;
|
|
|
|
|
|
|
|
/*
|
2021-02-27 01:28:48 +08:00
|
|
|
* There is the possibility that some externally provided
|
2019-09-23 21:36:32 +08:00
|
|
|
* 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;
|
|
|
|
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;
|
2020-11-26 13:06:34 +08:00
|
|
|
dstctx->propq = NULL;
|
2019-09-23 21:36:32 +08:00
|
|
|
|
|
|
|
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
|
|
|
}
|
2020-11-26 13:06:34 +08:00
|
|
|
if (srcctx->propq != NULL) {
|
|
|
|
dstctx->propq = OPENSSL_strdup(srcctx->propq);
|
|
|
|
if (dstctx->propq == NULL)
|
|
|
|
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;
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
if (pdsactx == NULL)
|
2019-09-04 19:46:02 +08:00
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2021-02-27 01:02:36 +08:00
|
|
|
static const OSSL_PARAM *dsa_gettable_ctx_params(ossl_unused void *ctx,
|
|
|
|
ossl_unused void *provctx)
|
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;
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
if (pdsactx == NULL)
|
2019-08-30 20:33:37 +08:00
|
|
|
return 0;
|
2021-03-02 20:43:36 +08:00
|
|
|
if (params == NULL)
|
|
|
|
return 1;
|
2019-08-30 20:33:37 +08:00
|
|
|
|
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
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-02-27 01:02:36 +08:00
|
|
|
static const OSSL_PARAM settable_ctx_params[] = {
|
2019-09-04 19:46:02 +08:00
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2021-02-27 01:02:36 +08:00
|
|
|
static const OSSL_PARAM settable_ctx_params_no_digest[] = {
|
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
|
|
|
|
static const OSSL_PARAM *dsa_settable_ctx_params(void *vpdsactx,
|
|
|
|
ossl_unused void *provctx)
|
2019-09-04 19:46:02 +08:00
|
|
|
{
|
2021-02-27 01:02:36 +08:00
|
|
|
PROV_DSA_CTX *pdsactx = (PROV_DSA_CTX *)vpdsactx;
|
|
|
|
|
|
|
|
if (pdsactx != NULL && !pdsactx->flag_allow_md)
|
|
|
|
return settable_ctx_params_no_digest;
|
|
|
|
return settable_ctx_params;
|
2019-09-04 19:46:02 +08:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-09-28 10:28:29 +08:00
|
|
|
const OSSL_DISPATCH ossl_dsa_signature_functions[] = {
|
2019-08-30 20:33:37 +08:00
|
|
|
{ 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 }
|
|
|
|
};
|