// SPDX-License-Identifier: BSD-2-Clause /* * Copyright (c) 2019 Huawei Technologies Co., Ltd */ #include #include #include #include #include #include #include #include #include "sm4.h" struct sm4_cbc_ctx { struct crypto_cipher_ctx ctx; struct sm4_context state; uint8_t iv[16]; }; static const struct crypto_cipher_ops sm4_cbc_ops; static struct sm4_cbc_ctx *to_sm4_cbc_ctx(struct crypto_cipher_ctx *ctx) { assert(ctx && ctx->ops == &sm4_cbc_ops); return container_of(ctx, struct sm4_cbc_ctx, ctx); } static TEE_Result sm4_cbc_init(struct crypto_cipher_ctx *ctx, TEE_OperationMode mode, const uint8_t *key1, size_t key1_len, const uint8_t *key2 __unused, size_t key2_len __unused, const uint8_t *iv, size_t iv_len) { struct sm4_cbc_ctx *c = to_sm4_cbc_ctx(ctx); if (key1_len != 16 || iv_len != sizeof(c->iv)) return TEE_ERROR_BAD_PARAMETERS; if (mode == TEE_MODE_ENCRYPT) sm4_setkey_enc(&c->state, key1); else sm4_setkey_dec(&c->state, key1); memcpy(c->iv, iv, sizeof(c->iv)); return TEE_SUCCESS; } static TEE_Result sm4_cbc_update(struct crypto_cipher_ctx *ctx, bool last_block __unused, const uint8_t *data, size_t len, uint8_t *dst) { struct sm4_cbc_ctx *c = to_sm4_cbc_ctx(ctx); sm4_crypt_cbc(&c->state, len, c->iv, data, dst); return TEE_SUCCESS; } static void sm4_cbc_final(struct crypto_cipher_ctx *ctx) { struct sm4_cbc_ctx *c = to_sm4_cbc_ctx(ctx); memzero_explicit(&c->state, sizeof(c->state)); memzero_explicit(&c->iv, sizeof(c->iv)); } static void sm4_cbc_free_ctx(struct crypto_cipher_ctx *ctx) { free(to_sm4_cbc_ctx(ctx)); } static void sm4_cbc_copy_state(struct crypto_cipher_ctx *dst_ctx, struct crypto_cipher_ctx *src_ctx) { struct sm4_cbc_ctx *src = to_sm4_cbc_ctx(src_ctx); struct sm4_cbc_ctx *dst = to_sm4_cbc_ctx(dst_ctx); dst->state = src->state; memcpy(dst->iv, src->iv, sizeof(src->iv)); } static const struct crypto_cipher_ops sm4_cbc_ops = { .init = sm4_cbc_init, .update = sm4_cbc_update, .final = sm4_cbc_final, .free_ctx = sm4_cbc_free_ctx, .copy_state = sm4_cbc_copy_state, }; TEE_Result crypto_sm4_cbc_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) { struct sm4_cbc_ctx *c = NULL; c = calloc(1, sizeof(*c)); if (!c) return TEE_ERROR_OUT_OF_MEMORY; c->ctx.ops = &sm4_cbc_ops; *ctx_ret = &c->ctx; return TEE_SUCCESS; }