2016-11-02 10:41:58 +11:00
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2017-06-27 17:25:30 +10:00
# pragma once
2016-11-02 10:41:58 +11:00
# include <stdbool.h>
# include <esp_err.h>
2019-05-13 18:02:45 +08:00
# include "soc/efuse_periph.h"
2020-02-25 01:21:41 +05:30
# include "esp_image_format.h"
2020-07-13 21:57:24 +08:00
# include "esp_rom_efuse.h"
2018-07-19 15:15:37 +10:00
# include "sdkconfig.h"
2020-07-13 21:57:24 +08:00
# if CONFIG_IDF_TARGET_ESP32
2020-02-25 01:21:41 +05:30
# include "esp32/rom/secure_boot.h"
2020-11-26 19:56:13 +11:00
# elif CONFIG_IDF_TARGET_ESP32S2
# include "esp32s2/rom/efuse.h"
# elif CONFIG_IDF_TARGET_ESP32C3
# include "esp32c3/rom/efuse.h"
2019-05-27 14:29:43 +08:00
# endif
2018-07-19 15:15:37 +10:00
2020-02-16 16:51:42 +11:00
typedef struct ets_secure_boot_signature ets_secure_boot_signature_t ;
2020-02-25 01:21:41 +05:30
# ifdef CONFIG_SECURE_BOOT_V1_ENABLED
2018-07-19 15:15:37 +10:00
# if !defined(CONFIG_SECURE_SIGNED_ON_BOOT) || !defined(CONFIG_SECURE_SIGNED_ON_UPDATE) || !defined(CONFIG_SECURE_SIGNED_APPS)
# error "internal sdkconfig error, secure boot should always enable all signature options"
# endif
# endif
2017-06-27 17:25:30 +10:00
# ifdef __cplusplus
extern " C " {
# endif
2016-11-02 10:41:58 +11:00
/* Support functions for secure boot features.
Can be compiled as part of app or bootloader code.
*/
/** @brief Is secure boot currently enabled in hardware?
*
2019-05-27 14:29:43 +08:00
* This means that the ROM bootloader code will only boot
* a verified secure bootloader from now on.
2016-11-02 10:41:58 +11:00
*
* @return true if secure boot is enabled.
*/
2019-05-27 14:29:43 +08:00
static inline bool esp_secure_boot_enabled ( void )
{
# if CONFIG_IDF_TARGET_ESP32
2020-02-25 01:21:41 +05:30
# ifdef CONFIG_SECURE_BOOT_V1_ENABLED
return REG_READ ( EFUSE_BLK0_RDATA6_REG ) & EFUSE_RD_ABS_DONE_0 ;
# elif CONFIG_SECURE_BOOT_V2_ENABLED
return ets_use_secure_boot_v2 ( ) ;
# endif
2020-07-13 21:57:24 +08:00
# else
return esp_rom_efuse_is_secure_boot_enabled ( ) ;
2019-05-27 14:29:43 +08:00
# endif
2020-02-25 01:21:41 +05:30
return false ; /* Secure Boot not enabled in menuconfig */
2016-11-02 17:54:47 +11:00
}
2016-11-02 10:41:58 +11:00
2019-04-04 15:25:22 +05:30
/** @brief Generate secure digest from bootloader image
*
* @important This function is intended to be called from bootloader code only.
*
2020-02-25 01:21:41 +05:30
* This function is only used in the context of the Secure Boot V1 scheme.
2020-11-10 18:40:01 +11:00
*
2019-04-04 15:25:22 +05:30
* If secure boot is not yet enabled for bootloader, this will:
* 1) generate the secure boot key and burn it on EFUSE
* (without enabling R/W protection)
* 2) generate the digest from bootloader and save it
* to flash address 0x0
*
* If first boot gets interrupted after calling this function
* but before esp_secure_boot_permanently_enable() is called, then
* the key burned on EFUSE will not be regenerated, unless manually
* done using espefuse.py tool
*
* @return ESP_OK if secure boot digest is generated
* successfully or found to be already present
*/
esp_err_t esp_secure_boot_generate_digest ( void ) ;
2016-11-02 10:41:58 +11:00
2020-02-25 01:21:41 +05:30
/** @brief Enable secure boot V1 if it is not already enabled.
2016-11-02 10:41:58 +11:00
*
2020-02-25 01:21:41 +05:30
* @important If this function succeeds, secure boot V1 is permanently
2016-11-02 10:41:58 +11:00
* enabled on the chip via efuse.
*
2016-11-02 17:54:47 +11:00
* @important This function is intended to be called from bootloader code only.
*
2020-11-10 18:40:01 +11:00
* @important In case of Secure Boot V1, this will enable r/w protection
* of secure boot key on EFUSE, therefore it is to be ensured that
* esp_secure_boot_generate_digest() is called before this .If secure boot is not
2020-02-25 01:21:41 +05:30
* yet enabled for bootloader, this will
2019-04-04 15:25:22 +05:30
* 1) enable R/W protection of secure boot key on EFUSE
* 2) enable secure boot by blowing the EFUSE_RD_ABS_DONE_0 efuse.
2016-11-02 17:54:47 +11:00
*
* This function does not verify secure boot of the bootloader (the
* ROM bootloader does this.)
*
* Will fail if efuses have been part-burned in a way that indicates
* secure boot should not or could not be correctly enabled.
*
2016-11-02 10:41:58 +11:00
* @return ESP_ERR_INVALID_STATE if efuse state doesn't allow
* secure boot to be enabled cleanly. ESP_OK if secure boot
* is enabled on this chip from now on.
*/
2016-11-02 17:54:47 +11:00
esp_err_t esp_secure_boot_permanently_enable ( void ) ;
2016-11-02 10:41:58 +11:00
2020-02-25 01:21:41 +05:30
/** @brief Enables secure boot V2 if it is not already enabled.
*
* @important If this function succeeds, secure boot V2 is permanently
* enabled on the chip via efuse.
*
* @important This function is intended to be called from bootloader code only.
2020-11-10 18:40:01 +11:00
*
* @important In case of Secure Boot V2, this will enable write protection
* of secure boot key on EFUSE in BLK2. .If secure boot is not
2020-02-25 01:21:41 +05:30
* yet enabled for bootloader, this will
* 1) enable W protection of secure boot key on EFUSE
* 2) enable secure boot by blowing the EFUSE_RD_ABS_DONE_1 efuse.
2016-11-07 15:45:57 +11:00
*
2020-02-25 01:21:41 +05:30
* This function does not verify secure boot of the bootloader (the
* ROM bootloader does this.)
*
* @param image_data Image metadata of the application to be loaded.
2020-11-10 18:40:01 +11:00
*
2020-02-25 01:21:41 +05:30
* Will fail if efuses have been part-burned in a way that indicates
* secure boot should not or could not be correctly enabled.
*
* @return ESP_ERR_INVALID_STATE if efuse state doesn't allow
* secure boot to be enabled cleanly. ESP_OK if secure boot
* is enabled on this chip from now on.
*/
esp_err_t esp_secure_boot_v2_permanently_enable ( const esp_image_metadata_t * image_data ) ;
/** @brief Verify the secure boot signature appended to some binary data in flash.
*
* For ECDSA Scheme (Secure Boot V1) - deterministic ECDSA w/ SHA256 image
* For RSA Scheme (Secure Boot V2) - RSA-PSS Verification of the SHA-256 image
2020-11-10 18:40:01 +11:00
*
2020-02-25 01:21:41 +05:30
* Public key is compiled into the calling program in the ECDSA Scheme.
* See the apt docs/security/secure-boot-v1.rst or docs/security/secure-boot-v2.rst for details.
2016-11-03 17:33:30 +11:00
*
* @param src_addr Starting offset of the data in flash.
* @param length Length of data in bytes. Signature is appended -after- length bytes.
*
2016-11-11 17:00:34 +11:00
* If flash encryption is enabled, the image will be transparently decrypted while being verified.
*
2020-02-16 16:51:42 +11:00
* @note This function doesn't have any fault injection resistance so should not be called
* during a secure boot itself (but can be called when verifying an update, etc.)
*
2016-11-03 17:33:30 +11:00
* @return ESP_OK if signature is valid, ESP_ERR_INVALID_STATE if
* signature fails, ESP_FAIL for other failures (ie can't read flash).
*/
esp_err_t esp_secure_boot_verify_signature ( uint32_t src_addr , uint32_t length ) ;
2016-11-02 10:41:58 +11:00
2016-11-11 17:00:34 +11:00
/** @brief Secure boot verification block, on-flash data format. */
typedef struct {
uint32_t version ;
uint8_t signature [ 64 ] ;
} esp_secure_boot_sig_block_t ;
2020-02-16 16:51:42 +11:00
/** @brief Verify the ECDSA secure boot signature block for Secure Boot V1.
*
* Calculates Deterministic ECDSA w/ SHA256 based on the SHA256 hash of the image. ECDSA signature
* verification must be enabled in project configuration to use this function.
2020-02-25 01:21:41 +05:30
*
* Similar to esp_secure_boot_verify_signature(), but can be used when the digest is precalculated.
2020-02-16 16:51:42 +11:00
* @param sig_block Pointer to ECDSA signature block data
2020-02-25 01:21:41 +05:30
* @param image_digest Pointer to 32 byte buffer holding SHA-256 hash.
2020-02-16 16:51:42 +11:00
* @param verified_digest Pointer to 32 byte buffer that will receive verified digest if verification completes. (Used during bootloader implementation only, result is invalid otherwise.)
2020-02-25 01:21:41 +05:30
*
*/
2020-02-16 16:51:42 +11:00
esp_err_t esp_secure_boot_verify_ecdsa_signature_block ( const esp_secure_boot_sig_block_t * sig_block , const uint8_t * image_digest , uint8_t * verified_digest ) ;
/** @brief Verify the RSA secure boot signature block for Secure Boot V2.
*
* Performs RSA-PSS Verification of the SHA-256 image based on the public key
* in the signature block, compared against the public key digest stored in efuse.
*
* Similar to esp_secure_boot_verify_signature(), but can be used when the digest is precalculated.
* @param sig_block Pointer to RSA signature block data
* @param image_digest Pointer to 32 byte buffer holding SHA-256 hash.
* @param verified_digest Pointer to 32 byte buffer that will receive verified digest if verification completes. (Used during bootloader implementation only, result is invalid otherwise.)
*
*/
esp_err_t esp_secure_boot_verify_rsa_signature_block ( const ets_secure_boot_signature_t * sig_block , const uint8_t * image_digest , uint8_t * verified_digest ) ;
/** @brief Legacy ECDSA verification function
*
* @note Deprecated, call either esp_secure_boot_verify_ecdsa_signature_block() or esp_secure_boot_verify_rsa_signature_block() instead.
*
* @param sig_block Pointer to ECDSA signature block data
* @param image_digest Pointer to 32 byte buffer holding SHA-256 hash.
*/
esp_err_t esp_secure_boot_verify_signature_block ( const esp_secure_boot_sig_block_t * sig_block , const uint8_t * image_digest )
__attribute__ ( ( deprecated ( " use esp_secure_boot_verify_ecdsa_signature_block instead " ) ) ) ;
2017-06-28 16:46:34 +10:00
2016-11-11 17:00:34 +11:00
# define FLASH_OFFS_SECURE_BOOT_IV_DIGEST 0
/** @brief Secure boot IV+digest header */
typedef struct {
uint8_t iv [ 128 ] ;
uint8_t digest [ 64 ] ;
} esp_secure_boot_iv_digest_t ;
2017-06-27 17:25:30 +10:00
# ifdef __cplusplus
}
2016-11-02 10:41:58 +11:00
# endif