2019-06-01 20:05:45 +08:00
|
|
|
/*
|
2021-02-18 22:57:13 +08:00
|
|
|
* Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2019-06-01 20:05:45 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2020-06-21 07:21:19 +08:00
|
|
|
#include <openssl/core_dispatch.h>
|
2019-06-01 20:05:45 +08:00
|
|
|
#include <openssl/core_names.h>
|
|
|
|
#include <openssl/params.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/err.h>
|
2021-02-06 00:40:42 +08:00
|
|
|
#include <openssl/proverr.h>
|
2019-06-01 20:05:45 +08:00
|
|
|
|
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"
|
2020-09-07 11:03:07 +08:00
|
|
|
#include "prov/providercommon.h"
|
2019-06-01 20:05:45 +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 gmac_new;
|
|
|
|
static OSSL_FUNC_mac_dupctx_fn gmac_dup;
|
|
|
|
static OSSL_FUNC_mac_freectx_fn gmac_free;
|
|
|
|
static OSSL_FUNC_mac_gettable_params_fn gmac_gettable_params;
|
|
|
|
static OSSL_FUNC_mac_get_params_fn gmac_get_params;
|
|
|
|
static OSSL_FUNC_mac_settable_ctx_params_fn gmac_settable_ctx_params;
|
|
|
|
static OSSL_FUNC_mac_set_ctx_params_fn gmac_set_ctx_params;
|
|
|
|
static OSSL_FUNC_mac_init_fn gmac_init;
|
|
|
|
static OSSL_FUNC_mac_update_fn gmac_update;
|
|
|
|
static OSSL_FUNC_mac_final_fn gmac_final;
|
2019-06-01 20:05:45 +08:00
|
|
|
|
|
|
|
/* local GMAC pkey structure */
|
|
|
|
|
|
|
|
struct gmac_data_st {
|
|
|
|
void *provctx;
|
|
|
|
EVP_CIPHER_CTX *ctx; /* Cipher context */
|
2019-09-05 12:24:44 +08:00
|
|
|
PROV_CIPHER cipher;
|
2019-06-01 20:05:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void gmac_free(void *vmacctx)
|
|
|
|
{
|
|
|
|
struct gmac_data_st *macctx = vmacctx;
|
|
|
|
|
|
|
|
if (macctx != NULL) {
|
|
|
|
EVP_CIPHER_CTX_free(macctx->ctx);
|
2019-09-05 12:24:44 +08:00
|
|
|
ossl_prov_cipher_reset(&macctx->cipher);
|
2019-06-01 20:05:45 +08:00
|
|
|
OPENSSL_free(macctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *gmac_new(void *provctx)
|
|
|
|
{
|
|
|
|
struct gmac_data_st *macctx;
|
|
|
|
|
2020-09-07 11:03:07 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return NULL;
|
|
|
|
|
2019-06-01 20:05:45 +08:00
|
|
|
if ((macctx = OPENSSL_zalloc(sizeof(*macctx))) == NULL
|
|
|
|
|| (macctx->ctx = EVP_CIPHER_CTX_new()) == NULL) {
|
|
|
|
gmac_free(macctx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
macctx->provctx = provctx;
|
|
|
|
|
|
|
|
return macctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *gmac_dup(void *vsrc)
|
|
|
|
{
|
|
|
|
struct gmac_data_st *src = vsrc;
|
2020-09-07 11:03:07 +08:00
|
|
|
struct gmac_data_st *dst;
|
|
|
|
|
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return NULL;
|
2019-06-01 20:05:45 +08:00
|
|
|
|
2020-09-07 11:03:07 +08:00
|
|
|
dst = gmac_new(src->provctx);
|
2019-06-01 20:05:45 +08:00
|
|
|
if (dst == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!EVP_CIPHER_CTX_copy(dst->ctx, src->ctx)
|
2019-09-05 12:24:44 +08:00
|
|
|
|| !ossl_prov_cipher_copy(&dst->cipher, &src->cipher)) {
|
2019-06-01 20:05:45 +08:00
|
|
|
gmac_free(dst);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2021-02-02 20:42:55 +08:00
|
|
|
static size_t gmac_size(void)
|
|
|
|
{
|
|
|
|
return EVP_GCM_TLS_TAG_LEN;
|
|
|
|
}
|
|
|
|
|
2021-02-25 11:54:13 +08:00
|
|
|
static int gmac_setkey(struct gmac_data_st *macctx,
|
|
|
|
const unsigned char *key, size_t keylen)
|
2019-06-01 20:05:45 +08:00
|
|
|
{
|
2021-02-25 11:54:13 +08:00
|
|
|
EVP_CIPHER_CTX *ctx = macctx->ctx;
|
|
|
|
|
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
|
|
|
if (keylen != (size_t)EVP_CIPHER_CTX_get_key_length(ctx)) {
|
2021-02-25 11:54:13 +08:00
|
|
|
ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!EVP_EncryptInit_ex(ctx, NULL, NULL, key, NULL))
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gmac_init(void *vmacctx, const unsigned char *key,
|
|
|
|
size_t keylen, const OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
struct gmac_data_st *macctx = vmacctx;
|
|
|
|
|
|
|
|
if (!ossl_prov_is_running() || !gmac_set_ctx_params(macctx, params))
|
|
|
|
return 0;
|
|
|
|
if (key != NULL)
|
|
|
|
return gmac_setkey(macctx, key, keylen);
|
2022-04-12 23:58:23 +08:00
|
|
|
return EVP_EncryptInit_ex(macctx->ctx, NULL, NULL, NULL, NULL);
|
2019-06-01 20:05:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int gmac_update(void *vmacctx, const unsigned char *data,
|
|
|
|
size_t datalen)
|
|
|
|
{
|
|
|
|
struct gmac_data_st *macctx = vmacctx;
|
|
|
|
EVP_CIPHER_CTX *ctx = macctx->ctx;
|
|
|
|
int outlen;
|
|
|
|
|
2020-08-31 21:44:17 +08:00
|
|
|
if (datalen == 0)
|
|
|
|
return 1;
|
|
|
|
|
2019-06-01 20:05:45 +08:00
|
|
|
while (datalen > INT_MAX) {
|
|
|
|
if (!EVP_EncryptUpdate(ctx, NULL, &outlen, data, INT_MAX))
|
|
|
|
return 0;
|
|
|
|
data += INT_MAX;
|
|
|
|
datalen -= INT_MAX;
|
|
|
|
}
|
|
|
|
return EVP_EncryptUpdate(ctx, NULL, &outlen, data, datalen);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gmac_final(void *vmacctx, unsigned char *out, size_t *outl,
|
|
|
|
size_t outsize)
|
|
|
|
{
|
2021-03-10 01:23:39 +08:00
|
|
|
OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
|
2019-06-01 20:05:45 +08:00
|
|
|
struct gmac_data_st *macctx = vmacctx;
|
|
|
|
int hlen = 0;
|
|
|
|
|
2020-09-07 11:03:07 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return 0;
|
|
|
|
|
2019-06-01 20:05:45 +08:00
|
|
|
if (!EVP_EncryptFinal_ex(macctx->ctx, out, &hlen))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
hlen = gmac_size();
|
2021-03-10 01:23:39 +08:00
|
|
|
params[0] = OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_AEAD_TAG,
|
|
|
|
out, (size_t)hlen);
|
|
|
|
if (!EVP_CIPHER_CTX_get_params(macctx->ctx, params))
|
2019-06-01 20:05:45 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
*outl = hlen;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM known_gettable_params[] = {
|
2019-08-22 18:50:00 +08:00
|
|
|
OSSL_PARAM_size_t(OSSL_MAC_PARAM_SIZE, NULL),
|
2019-06-01 20:05:45 +08:00
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
2020-08-05 11:23:32 +08:00
|
|
|
static const OSSL_PARAM *gmac_gettable_params(void *provctx)
|
2019-06-01 20:05:45 +08:00
|
|
|
{
|
|
|
|
return known_gettable_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gmac_get_params(OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
OSSL_PARAM *p;
|
|
|
|
|
2019-08-22 18:50:00 +08:00
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_MAC_PARAM_SIZE)) != NULL)
|
2019-06-01 20:05:45 +08:00
|
|
|
return OSSL_PARAM_set_size_t(p, gmac_size());
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM known_settable_ctx_params[] = {
|
|
|
|
OSSL_PARAM_utf8_string(OSSL_MAC_PARAM_CIPHER, NULL, 0),
|
|
|
|
OSSL_PARAM_utf8_string(OSSL_MAC_PARAM_PROPERTIES, NULL, 0),
|
|
|
|
OSSL_PARAM_octet_string(OSSL_MAC_PARAM_KEY, NULL, 0),
|
|
|
|
OSSL_PARAM_octet_string(OSSL_MAC_PARAM_IV, NULL, 0),
|
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
2021-02-23 09:02:49 +08:00
|
|
|
static const OSSL_PARAM *gmac_settable_ctx_params(ossl_unused void *ctx,
|
|
|
|
ossl_unused void *provctx)
|
2019-06-01 20:05:45 +08:00
|
|
|
{
|
|
|
|
return known_settable_ctx_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ALL parameters should be set before init().
|
|
|
|
*/
|
2019-08-16 15:04:29 +08:00
|
|
|
static int gmac_set_ctx_params(void *vmacctx, const OSSL_PARAM params[])
|
2019-06-01 20:05:45 +08:00
|
|
|
{
|
|
|
|
struct gmac_data_st *macctx = vmacctx;
|
|
|
|
EVP_CIPHER_CTX *ctx = macctx->ctx;
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_LIB_CTX *provctx = PROV_LIBCTX_OF(macctx->provctx);
|
2019-06-01 20:05:45 +08:00
|
|
|
const OSSL_PARAM *p;
|
|
|
|
|
2021-02-25 11:54:13 +08:00
|
|
|
if (params == NULL)
|
|
|
|
return 1;
|
2022-04-12 23:58:23 +08:00
|
|
|
if (ctx == NULL)
|
2019-09-05 12:24:44 +08:00
|
|
|
return 0;
|
2019-06-01 20:05:45 +08:00
|
|
|
|
2022-04-12 23:58:23 +08:00
|
|
|
if ((p = OSSL_PARAM_locate_const(params, OSSL_MAC_PARAM_CIPHER)) != NULL) {
|
|
|
|
if (!ossl_prov_cipher_load_from_params(&macctx->cipher, params, provctx))
|
|
|
|
return 0;
|
|
|
|
if (EVP_CIPHER_get_mode(ossl_prov_cipher_cipher(&macctx->cipher))
|
|
|
|
!= EVP_CIPH_GCM_MODE) {
|
|
|
|
ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_MODE);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!EVP_EncryptInit_ex(ctx, ossl_prov_cipher_cipher(&macctx->cipher),
|
|
|
|
ossl_prov_cipher_engine(&macctx->cipher), NULL,
|
|
|
|
NULL))
|
|
|
|
return 0;
|
2019-06-01 20:05:45 +08:00
|
|
|
}
|
2019-09-05 12:24:44 +08:00
|
|
|
|
2021-02-25 11:54:13 +08:00
|
|
|
if ((p = OSSL_PARAM_locate_const(params, OSSL_MAC_PARAM_KEY)) != NULL)
|
|
|
|
if (p->data_type != OSSL_PARAM_OCTET_STRING
|
|
|
|
|| !gmac_setkey(macctx, p->data, p->data_size))
|
2019-06-01 20:05:45 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((p = OSSL_PARAM_locate_const(params, OSSL_MAC_PARAM_IV)) != NULL) {
|
|
|
|
if (p->data_type != OSSL_PARAM_OCTET_STRING)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN,
|
|
|
|
p->data_size, NULL)
|
|
|
|
|| !EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, p->data))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-09-28 10:28:29 +08:00
|
|
|
const OSSL_DISPATCH ossl_gmac_functions[] = {
|
2019-06-01 20:05:45 +08:00
|
|
|
{ OSSL_FUNC_MAC_NEWCTX, (void (*)(void))gmac_new },
|
|
|
|
{ OSSL_FUNC_MAC_DUPCTX, (void (*)(void))gmac_dup },
|
|
|
|
{ OSSL_FUNC_MAC_FREECTX, (void (*)(void))gmac_free },
|
|
|
|
{ OSSL_FUNC_MAC_INIT, (void (*)(void))gmac_init },
|
|
|
|
{ OSSL_FUNC_MAC_UPDATE, (void (*)(void))gmac_update },
|
|
|
|
{ OSSL_FUNC_MAC_FINAL, (void (*)(void))gmac_final },
|
|
|
|
{ OSSL_FUNC_MAC_GETTABLE_PARAMS, (void (*)(void))gmac_gettable_params },
|
|
|
|
{ OSSL_FUNC_MAC_GET_PARAMS, (void (*)(void))gmac_get_params },
|
|
|
|
{ OSSL_FUNC_MAC_SETTABLE_CTX_PARAMS,
|
|
|
|
(void (*)(void))gmac_settable_ctx_params },
|
2019-08-16 15:04:29 +08:00
|
|
|
{ OSSL_FUNC_MAC_SET_CTX_PARAMS, (void (*)(void))gmac_set_ctx_params },
|
2019-06-01 20:05:45 +08:00
|
|
|
{ 0, NULL }
|
|
|
|
};
|