| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- /*
- * SPDX-FileCopyrightText: 2020-2023 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include <stdlib.h>
- #include <string.h>
- #include <assert.h>
- #include "freertos/FreeRTOS.h"
- #include "freertos/task.h"
- #include "esp_timer.h"
- #include "esp_ds.h"
- #include "esp_crypto_lock.h"
- #include "esp_private/esp_crypto_lock_internal.h"
- #include "esp_hmac.h"
- #include "esp_memory_utils.h"
- #if CONFIG_IDF_TARGET_ESP32S2
- #include "esp32s2/rom/aes.h"
- #include "esp32s2/rom/sha.h"
- #include "esp32s2/rom/hmac.h"
- #include "soc/soc_memory_layout.h"
- #else /* CONFIG_IDF_TARGET_ESP32S2 */
- #include "esp_private/periph_ctrl.h"
- #include "hal/ds_hal.h"
- #include "hal/ds_ll.h"
- #include "hal/hmac_hal.h"
- #include "hal/hmac_ll.h"
- #endif /* !CONFIG_IDF_TARGET_ESP32S2 */
- #if CONFIG_IDF_TARGET_ESP32S2
- #include "esp32s2/rom/digital_signature.h"
- #endif
- #if CONFIG_IDF_TARGET_ESP32S3
- #include "esp32s3/rom/digital_signature.h"
- #endif
- #if CONFIG_IDF_TARGET_ESP32C3
- #include "esp32c3/rom/digital_signature.h"
- #endif
- #if CONFIG_IDF_TARGET_ESP32C6
- #include "esp32c6/rom/digital_signature.h"
- #endif
- #if CONFIG_IDF_TARGET_ESP32H2
- #include "esp32h2/rom/digital_signature.h"
- #endif
- #if CONFIG_IDF_TARGET_ESP32P4
- #include "esp32p4/rom/digital_signature.h"
- #endif
- struct esp_ds_context {
- const ets_ds_data_t *data;
- };
- /**
- * The vtask delay \c esp_ds_sign() is using while waiting for completion of the signing operation.
- */
- #define ESP_DS_SIGN_TASK_DELAY_MS 10
- #define RSA_LEN_MAX ((SOC_RSA_MAX_BIT_LEN/8) - 1)
- /*
- * Check that the size of esp_ds_data_t and ets_ds_data_t is the same because both structs are converted using
- * raw casts.
- */
- _Static_assert(sizeof(esp_ds_data_t) == sizeof(ets_ds_data_t),
- "The size and structure of esp_ds_data_t and ets_ds_data_t must match exactly, they're used in raw casts");
- /*
- * esp_digital_signature_length_t is used in esp_ds_data_t in contrast to ets_ds_data_t, where unsigned is used.
- * Check esp_digital_signature_length_t's width here because it's converted to unsigned using raw casts.
- */
- _Static_assert(sizeof(esp_digital_signature_length_t) == sizeof(unsigned),
- "The size of esp_digital_signature_length_t and unsigned has to be the same");
- #ifdef CONFIG_IDF_TARGET_ESP32S2
- static void ds_acquire_enable(void)
- {
- /* Lock AES, SHA and RSA peripheral */
- esp_crypto_dma_lock_acquire();
- esp_crypto_mpi_lock_acquire();
- ets_hmac_enable();
- ets_ds_enable();
- }
- static void ds_disable_release(void)
- {
- ets_ds_disable();
- ets_hmac_disable();
- esp_crypto_mpi_lock_release();
- esp_crypto_dma_lock_release();
- }
- esp_err_t esp_ds_sign(const void *message,
- const esp_ds_data_t *data,
- hmac_key_id_t key_id,
- void *signature)
- {
- // Need to check signature here, otherwise the signature is only checked when the signing has finished and fails
- // but the signing isn't uninitialized and the mutex is still locked.
- if (!signature) {
- return ESP_ERR_INVALID_ARG;
- }
- esp_ds_context_t *context;
- esp_err_t result = esp_ds_start_sign(message, data, key_id, &context);
- if (result != ESP_OK) {
- return result;
- }
- while (esp_ds_is_busy()) {
- vTaskDelay(ESP_DS_SIGN_TASK_DELAY_MS / portTICK_PERIOD_MS);
- }
- return esp_ds_finish_sign(signature, context);
- }
- esp_err_t esp_ds_start_sign(const void *message,
- const esp_ds_data_t *data,
- hmac_key_id_t key_id,
- esp_ds_context_t **esp_ds_ctx)
- {
- if (!message || !data || !esp_ds_ctx) {
- return ESP_ERR_INVALID_ARG;
- }
- if (key_id >= HMAC_KEY_MAX) {
- return ESP_ERR_INVALID_ARG;
- }
- if (!(data->rsa_length == ESP_DS_RSA_1024
- || data->rsa_length == ESP_DS_RSA_2048
- || data->rsa_length == ESP_DS_RSA_3072
- #if SOC_RSA_MAX_BIT_LEN == 4096
- || data->rsa_length == ESP_DS_RSA_4096
- #endif
- )) {
- return ESP_ERR_INVALID_ARG;
- }
- ds_acquire_enable();
- // initiate hmac
- int r = ets_hmac_calculate_downstream(ETS_EFUSE_BLOCK_KEY0 + (ets_efuse_block_t) key_id,
- ETS_EFUSE_KEY_PURPOSE_HMAC_DOWN_DIGITAL_SIGNATURE);
- if (r != ETS_OK) {
- ds_disable_release();
- return ESP_ERR_HW_CRYPTO_DS_HMAC_FAIL;
- }
- esp_ds_context_t *context = malloc(sizeof(esp_ds_context_t));
- if (!context) {
- ds_disable_release();
- return ESP_ERR_NO_MEM;
- }
- ets_ds_data_t *ds_data = (ets_ds_data_t *) data;
- // initiate signing
- ets_ds_result_t result = ets_ds_start_sign(message, ds_data);
- // ETS_DS_INVALID_PARAM only happens if a parameter is NULL or data->rsa_length is wrong
- // We checked all of that already
- assert(result != ETS_DS_INVALID_PARAM);
- if (result == ETS_DS_INVALID_KEY) {
- ds_disable_release();
- free(context);
- return ESP_ERR_HW_CRYPTO_DS_INVALID_KEY;
- }
- context->data = (const ets_ds_data_t *)ds_data;
- *esp_ds_ctx = context;
- return ESP_OK;
- }
- bool esp_ds_is_busy(void)
- {
- return ets_ds_is_busy();
- }
- esp_err_t esp_ds_finish_sign(void *signature, esp_ds_context_t *esp_ds_ctx)
- {
- if (!signature || !esp_ds_ctx) {
- return ESP_ERR_INVALID_ARG;
- }
- const ets_ds_data_t *ds_data = esp_ds_ctx->data;
- ets_ds_result_t result = ets_ds_finish_sign(signature, ds_data);
- esp_err_t return_value = ESP_OK;
- // we checked all the parameters
- assert(result != ETS_DS_INVALID_PARAM);
- if (result == ETS_DS_INVALID_DIGEST) {
- return_value = ESP_ERR_HW_CRYPTO_DS_INVALID_DIGEST;
- }
- if (result == ETS_DS_INVALID_PADDING) {
- return_value = ESP_ERR_HW_CRYPTO_DS_INVALID_PADDING;
- }
- free(esp_ds_ctx);
- int res = ets_hmac_invalidate_downstream(ETS_EFUSE_KEY_PURPOSE_HMAC_DOWN_DIGITAL_SIGNATURE);
- assert(res == ETS_OK); // should not fail if called with correct purpose
- (void)res;
- ds_disable_release();
- return return_value;
- }
- esp_err_t esp_ds_encrypt_params(esp_ds_data_t *data,
- const void *iv,
- const esp_ds_p_data_t *p_data,
- const void *key)
- {
- // p_data has to be valid, in internal memory and word aligned
- if (!p_data) {
- return ESP_ERR_INVALID_ARG;
- }
- assert(esp_ptr_internal(p_data) && esp_ptr_word_aligned(p_data));
- esp_err_t result = ESP_OK;
- esp_crypto_dma_lock_acquire();
- ets_aes_enable();
- ets_sha_enable();
- ets_ds_data_t *ds_data = (ets_ds_data_t *) data;
- const ets_ds_p_data_t *ds_plain_data = (const ets_ds_p_data_t *) p_data;
- ets_ds_result_t ets_result = ets_ds_encrypt_params(ds_data, iv, ds_plain_data, key, ETS_DS_KEY_HMAC);
- if (ets_result == ETS_DS_INVALID_PARAM) {
- result = ESP_ERR_INVALID_ARG;
- }
- ets_sha_disable();
- ets_aes_disable();
- esp_crypto_dma_lock_release();
- return result;
- }
- #else /* !CONFIG_IDF_TARGET_ESP32S2 (targets other than esp32s2) */
- static void ds_acquire_enable(void)
- {
- esp_crypto_ds_lock_acquire();
- #if CONFIG_IDF_TARGET_ESP32S3
- esp_crypto_mpi_lock_acquire();
- #endif
- // We also enable SHA and HMAC here. SHA is used by HMAC, HMAC is used by DS.
- HMAC_RCC_ATOMIC() {
- hmac_ll_enable_bus_clock(true);
- hmac_ll_reset_register();
- }
- periph_module_enable(PERIPH_SHA_MODULE);
- DS_RCC_ATOMIC() {
- ds_ll_enable_bus_clock(true);
- ds_ll_reset_register();
- }
- hmac_hal_start();
- }
- static void ds_disable_release(void)
- {
- ds_hal_finish();
- DS_RCC_ATOMIC() {
- ds_ll_enable_bus_clock(false);
- }
- periph_module_disable(PERIPH_SHA_MODULE);
- HMAC_RCC_ATOMIC() {
- hmac_ll_enable_bus_clock(false);
- }
- #if CONFIG_IDF_TARGET_ESP32S3
- esp_crypto_mpi_lock_release();
- #endif
- esp_crypto_ds_lock_release();
- }
- esp_err_t esp_ds_sign(const void *message,
- const esp_ds_data_t *data,
- hmac_key_id_t key_id,
- void *signature)
- {
- // Need to check signature here, otherwise the signature is only checked when the signing has finished and fails
- // but the signing isn't uninitialized and the mutex is still locked.
- if (!signature) {
- return ESP_ERR_INVALID_ARG;
- }
- esp_ds_context_t *context;
- esp_err_t result = esp_ds_start_sign(message, data, key_id, &context);
- if (result != ESP_OK) {
- return result;
- }
- while (esp_ds_is_busy()) {
- vTaskDelay(ESP_DS_SIGN_TASK_DELAY_MS / portTICK_PERIOD_MS);
- }
- return esp_ds_finish_sign(signature, context);
- }
- esp_err_t esp_ds_start_sign(const void *message,
- const esp_ds_data_t *data,
- hmac_key_id_t key_id,
- esp_ds_context_t **esp_ds_ctx)
- {
- if (!message || !data || !esp_ds_ctx) {
- return ESP_ERR_INVALID_ARG;
- }
- if (key_id >= HMAC_KEY_MAX) {
- return ESP_ERR_INVALID_ARG;
- }
- if (!(data->rsa_length == ESP_DS_RSA_1024
- || data->rsa_length == ESP_DS_RSA_2048
- || data->rsa_length == ESP_DS_RSA_3072
- #if SOC_RSA_MAX_BIT_LEN == 4096
- || data->rsa_length == ESP_DS_RSA_4096
- #endif
- )) {
- return ESP_ERR_INVALID_ARG;
- }
- ds_acquire_enable();
- // initiate hmac
- uint32_t conf_error = hmac_hal_configure(HMAC_OUTPUT_DS, key_id);
- if (conf_error) {
- ds_disable_release();
- return ESP_ERR_HW_CRYPTO_DS_HMAC_FAIL;
- }
- ds_hal_start();
- // check encryption key from HMAC
- int64_t start_time = esp_timer_get_time();
- while (ds_ll_busy() != 0) {
- if ((esp_timer_get_time() - start_time) > SOC_DS_KEY_CHECK_MAX_WAIT_US) {
- ds_disable_release();
- return ESP_ERR_HW_CRYPTO_DS_INVALID_KEY;
- }
- }
- esp_ds_context_t *context = malloc(sizeof(esp_ds_context_t));
- if (!context) {
- ds_disable_release();
- return ESP_ERR_NO_MEM;
- }
- size_t rsa_len = (data->rsa_length + 1) * 4;
- ds_hal_write_private_key_params(data->c);
- ds_hal_configure_iv((uint32_t *)data->iv);
- ds_hal_write_message(message, rsa_len);
- // initiate signing
- ds_hal_start_sign();
- context->data = (const ets_ds_data_t *)data;
- *esp_ds_ctx = context;
- return ESP_OK;
- }
- bool esp_ds_is_busy(void)
- {
- return ds_hal_busy();
- }
- esp_err_t esp_ds_finish_sign(void *signature, esp_ds_context_t *esp_ds_ctx)
- {
- if (!signature || !esp_ds_ctx) {
- return ESP_ERR_INVALID_ARG;
- }
- const esp_ds_data_t *data = (const esp_ds_data_t *)esp_ds_ctx->data;
- unsigned rsa_len = (data->rsa_length + 1) * 4;
- while (ds_hal_busy()) { }
- ds_signature_check_t sig_check_result = ds_hal_read_result((uint8_t *) signature, (size_t) rsa_len);
- esp_err_t return_value = ESP_OK;
- if (sig_check_result == DS_SIGNATURE_MD_FAIL || sig_check_result == DS_SIGNATURE_PADDING_AND_MD_FAIL) {
- return_value = ESP_ERR_HW_CRYPTO_DS_INVALID_DIGEST;
- }
- if (sig_check_result == DS_SIGNATURE_PADDING_FAIL) {
- return_value = ESP_ERR_HW_CRYPTO_DS_INVALID_PADDING;
- }
- free(esp_ds_ctx);
- hmac_hal_clean();
- ds_disable_release();
- return return_value;
- }
- esp_err_t esp_ds_encrypt_params(esp_ds_data_t *data,
- const void *iv,
- const esp_ds_p_data_t *p_data,
- const void *key)
- {
- if (!p_data) {
- return ESP_ERR_INVALID_ARG;
- }
- esp_err_t result = ESP_OK;
- // The `esp_ds_encrypt_params` operation does not use the Digital Signature peripheral,
- // but just the AES and SHA peripherals, so acquiring locks just for these peripherals
- // would be enough rather than acquiring a lock for the Digital Signature peripheral.
- esp_crypto_sha_aes_lock_acquire();
- periph_module_enable(PERIPH_AES_MODULE);
- periph_module_enable(PERIPH_SHA_MODULE);
- ets_ds_data_t *ds_data = (ets_ds_data_t *) data;
- const ets_ds_p_data_t *ds_plain_data = (const ets_ds_p_data_t *) p_data;
- ets_ds_result_t ets_result = ets_ds_encrypt_params(ds_data, iv, ds_plain_data, key, ETS_DS_KEY_HMAC);
- if (ets_result == ETS_DS_INVALID_PARAM) {
- result = ESP_ERR_INVALID_ARG;
- }
- periph_module_disable(PERIPH_SHA_MODULE);
- periph_module_disable(PERIPH_AES_MODULE);
- esp_crypto_sha_aes_lock_release();
- return result;
- }
- #endif
|