2019-06-02 00:36:10 +08:00
|
|
|
/*
|
2020-04-23 20:55:52 +08:00
|
|
|
* Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-06-02 00:36:10 +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-14 10:11:50 +08:00
|
|
|
/*
|
|
|
|
* HMAC low level APIs are deprecated for public use, but still ok for internal
|
|
|
|
* use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2020-06-21 07:21:19 +08:00
|
|
|
#include <openssl/core_dispatch.h>
|
2019-06-02 00:36:10 +08:00
|
|
|
#include <openssl/core_names.h>
|
|
|
|
#include <openssl/params.h>
|
|
|
|
#include <openssl/engine.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/hmac.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"
|
|
|
|
#include "prov/provider_util.h"
|
2019-06-02 00:36:10 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Forward declaration of everything implemented here. This is not strictly
|
|
|
|
* necessary for the compiler, but provides an assurance that the signatures
|
|
|
|
* of the functions in the dispatch table are correct.
|
|
|
|
*/
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_mac_newctx_fn hmac_new;
|
|
|
|
static OSSL_FUNC_mac_dupctx_fn hmac_dup;
|
|
|
|
static OSSL_FUNC_mac_freectx_fn hmac_free;
|
|
|
|
static OSSL_FUNC_mac_gettable_ctx_params_fn hmac_gettable_ctx_params;
|
|
|
|
static OSSL_FUNC_mac_get_ctx_params_fn hmac_get_ctx_params;
|
|
|
|
static OSSL_FUNC_mac_settable_ctx_params_fn hmac_settable_ctx_params;
|
|
|
|
static OSSL_FUNC_mac_set_ctx_params_fn hmac_set_ctx_params;
|
|
|
|
static OSSL_FUNC_mac_init_fn hmac_init;
|
|
|
|
static OSSL_FUNC_mac_update_fn hmac_update;
|
|
|
|
static OSSL_FUNC_mac_final_fn hmac_final;
|
2019-06-02 00:36:10 +08:00
|
|
|
|
|
|
|
/* local HMAC context structure */
|
|
|
|
|
|
|
|
/* typedef EVP_MAC_IMPL */
|
|
|
|
struct hmac_data_st {
|
|
|
|
void *provctx;
|
|
|
|
HMAC_CTX *ctx; /* HMAC context */
|
2019-09-05 11:54:53 +08:00
|
|
|
PROV_DIGEST digest;
|
2019-06-02 00:36:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static size_t hmac_size(void *vmacctx);
|
|
|
|
|
|
|
|
static void *hmac_new(void *provctx)
|
|
|
|
{
|
|
|
|
struct hmac_data_st *macctx;
|
|
|
|
|
|
|
|
if ((macctx = OPENSSL_zalloc(sizeof(*macctx))) == NULL
|
|
|
|
|| (macctx->ctx = HMAC_CTX_new()) == NULL) {
|
|
|
|
OPENSSL_free(macctx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* TODO(3.0) Should we do something more with that context? */
|
|
|
|
macctx->provctx = provctx;
|
|
|
|
|
|
|
|
return macctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void hmac_free(void *vmacctx)
|
|
|
|
{
|
|
|
|
struct hmac_data_st *macctx = vmacctx;
|
|
|
|
|
|
|
|
if (macctx != NULL) {
|
|
|
|
HMAC_CTX_free(macctx->ctx);
|
2019-09-05 11:54:53 +08:00
|
|
|
ossl_prov_digest_reset(&macctx->digest);
|
2019-06-02 00:36:10 +08:00
|
|
|
OPENSSL_free(macctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *hmac_dup(void *vsrc)
|
|
|
|
{
|
|
|
|
struct hmac_data_st *src = vsrc;
|
|
|
|
struct hmac_data_st *dst = hmac_new(src->provctx);
|
|
|
|
|
|
|
|
if (dst == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2019-09-05 11:54:53 +08:00
|
|
|
if (!HMAC_CTX_copy(dst->ctx, src->ctx)
|
|
|
|
|| !ossl_prov_digest_copy(&dst->digest, &src->digest)) {
|
2019-06-02 00:36:10 +08:00
|
|
|
hmac_free(dst);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t hmac_size(void *vmacctx)
|
|
|
|
{
|
|
|
|
struct hmac_data_st *macctx = vmacctx;
|
|
|
|
|
|
|
|
return HMAC_size(macctx->ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int hmac_init(void *vmacctx)
|
|
|
|
{
|
|
|
|
struct hmac_data_st *macctx = vmacctx;
|
2019-09-05 11:54:53 +08:00
|
|
|
const EVP_MD *digest = ossl_prov_digest_md(&macctx->digest);
|
2019-06-02 00:36:10 +08:00
|
|
|
int rv = 1;
|
|
|
|
|
|
|
|
/* HMAC_Init_ex doesn't tolerate all zero params, so we must be careful */
|
2019-09-05 11:54:53 +08:00
|
|
|
if (digest != NULL)
|
|
|
|
rv = HMAC_Init_ex(macctx->ctx, NULL, 0, digest,
|
|
|
|
ossl_prov_digest_engine(&macctx->digest));
|
|
|
|
ossl_prov_digest_reset(&macctx->digest);
|
2019-06-02 00:36:10 +08:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int hmac_update(void *vmacctx, const unsigned char *data,
|
|
|
|
size_t datalen)
|
|
|
|
{
|
|
|
|
struct hmac_data_st *macctx = vmacctx;
|
|
|
|
|
|
|
|
return HMAC_Update(macctx->ctx, data, datalen);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int hmac_final(void *vmacctx, unsigned char *out, size_t *outl,
|
|
|
|
size_t outsize)
|
|
|
|
{
|
|
|
|
unsigned int hlen;
|
|
|
|
struct hmac_data_st *macctx = vmacctx;
|
|
|
|
|
|
|
|
if (!HMAC_Final(macctx->ctx, out, &hlen))
|
|
|
|
return 0;
|
2020-08-05 13:26:48 +08:00
|
|
|
*outl = hlen;
|
2019-06-02 00:36:10 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM known_gettable_ctx_params[] = {
|
2019-08-22 18:50:00 +08:00
|
|
|
OSSL_PARAM_size_t(OSSL_MAC_PARAM_SIZE, NULL),
|
2019-06-02 00:36:10 +08:00
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
2020-08-07 11:20:18 +08:00
|
|
|
static const OSSL_PARAM *hmac_gettable_ctx_params(ossl_unused void *provctx)
|
2019-06-02 00:36:10 +08:00
|
|
|
{
|
|
|
|
return known_gettable_ctx_params;
|
|
|
|
}
|
|
|
|
|
2019-08-16 15:04:29 +08:00
|
|
|
static int hmac_get_ctx_params(void *vmacctx, OSSL_PARAM params[])
|
2019-06-02 00:36:10 +08:00
|
|
|
{
|
|
|
|
OSSL_PARAM *p;
|
|
|
|
|
2019-08-22 18:50:00 +08:00
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_MAC_PARAM_SIZE)) != NULL)
|
2019-06-02 00:36:10 +08:00
|
|
|
return OSSL_PARAM_set_size_t(p, hmac_size(vmacctx));
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM known_settable_ctx_params[] = {
|
|
|
|
OSSL_PARAM_utf8_string(OSSL_MAC_PARAM_DIGEST, NULL, 0),
|
|
|
|
OSSL_PARAM_utf8_string(OSSL_MAC_PARAM_PROPERTIES, NULL, 0),
|
|
|
|
OSSL_PARAM_octet_string(OSSL_MAC_PARAM_KEY, NULL, 0),
|
|
|
|
OSSL_PARAM_int(OSSL_MAC_PARAM_FLAGS, NULL),
|
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
2020-08-07 11:20:18 +08:00
|
|
|
static const OSSL_PARAM *hmac_settable_ctx_params(ossl_unused void *provctx)
|
2019-06-02 00:36:10 +08:00
|
|
|
{
|
|
|
|
return known_settable_ctx_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ALL parameters should be set before init().
|
|
|
|
*/
|
2019-08-16 15:04:29 +08:00
|
|
|
static int hmac_set_ctx_params(void *vmacctx, const OSSL_PARAM params[])
|
2019-06-02 00:36:10 +08:00
|
|
|
{
|
|
|
|
struct hmac_data_st *macctx = vmacctx;
|
2019-09-05 11:54:53 +08:00
|
|
|
OPENSSL_CTX *ctx = PROV_LIBRARY_CONTEXT_OF(macctx->provctx);
|
2019-06-02 00:36:10 +08:00
|
|
|
const OSSL_PARAM *p;
|
|
|
|
|
2019-09-05 11:54:53 +08:00
|
|
|
if (!ossl_prov_digest_load_from_params(&macctx->digest, params, ctx))
|
|
|
|
return 0;
|
2019-06-02 00:36:10 +08:00
|
|
|
|
|
|
|
/* TODO(3.0) formalize the meaning of "flags", perhaps as other params */
|
|
|
|
if ((p = OSSL_PARAM_locate_const(params,
|
|
|
|
OSSL_MAC_PARAM_FLAGS)) != NULL) {
|
|
|
|
int flags = 0;
|
|
|
|
|
|
|
|
if (!OSSL_PARAM_get_int(p, &flags))
|
|
|
|
return 0;
|
|
|
|
HMAC_CTX_set_flags(macctx->ctx, flags);
|
|
|
|
}
|
|
|
|
if ((p = OSSL_PARAM_locate_const(params, OSSL_MAC_PARAM_KEY)) != NULL) {
|
|
|
|
if (p->data_type != OSSL_PARAM_OCTET_STRING)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!HMAC_Init_ex(macctx->ctx, p->data, p->data_size,
|
2019-09-05 11:54:53 +08:00
|
|
|
ossl_prov_digest_md(&macctx->digest),
|
|
|
|
NULL /* ENGINE */))
|
2019-06-02 00:36:10 +08:00
|
|
|
return 0;
|
|
|
|
|
2019-09-05 11:54:53 +08:00
|
|
|
ossl_prov_digest_reset(&macctx->digest);
|
2019-06-02 00:36:10 +08:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const OSSL_DISPATCH hmac_functions[] = {
|
|
|
|
{ OSSL_FUNC_MAC_NEWCTX, (void (*)(void))hmac_new },
|
|
|
|
{ OSSL_FUNC_MAC_DUPCTX, (void (*)(void))hmac_dup },
|
|
|
|
{ OSSL_FUNC_MAC_FREECTX, (void (*)(void))hmac_free },
|
|
|
|
{ OSSL_FUNC_MAC_INIT, (void (*)(void))hmac_init },
|
|
|
|
{ OSSL_FUNC_MAC_UPDATE, (void (*)(void))hmac_update },
|
|
|
|
{ OSSL_FUNC_MAC_FINAL, (void (*)(void))hmac_final },
|
|
|
|
{ OSSL_FUNC_MAC_GETTABLE_CTX_PARAMS,
|
|
|
|
(void (*)(void))hmac_gettable_ctx_params },
|
2019-08-16 15:04:29 +08:00
|
|
|
{ OSSL_FUNC_MAC_GET_CTX_PARAMS, (void (*)(void))hmac_get_ctx_params },
|
2019-06-02 00:36:10 +08:00
|
|
|
{ OSSL_FUNC_MAC_SETTABLE_CTX_PARAMS,
|
|
|
|
(void (*)(void))hmac_settable_ctx_params },
|
2019-08-16 15:04:29 +08:00
|
|
|
{ OSSL_FUNC_MAC_SET_CTX_PARAMS, (void (*)(void))hmac_set_ctx_params },
|
2019-06-02 00:36:10 +08:00
|
|
|
{ 0, NULL }
|
|
|
|
};
|