| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /* Flash encryption Example
- This example code is in the Public Domain (or CC0 licensed, at your option.)
- Unless required by applicable law or agreed to in writing, this
- software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- CONDITIONS OF ANY KIND, either express or implied.
- */
- #include <stdio.h>
- #include "freertos/FreeRTOS.h"
- #include "freertos/task.h"
- #include "soc/efuse_reg.h"
- #include "esp_efuse.h"
- #include "esp_system.h"
- #include "esp_spi_flash.h"
- #include "esp_log.h"
- #include "esp_efuse_table.h"
- #include <string.h>
- static void example_print_chip_info(void);
- static void example_secure_boot_status(void);
- #define TAG "example_secure_boot"
- void app_main(void)
- {
- printf("\nExample to check Secure Boot status\n");
- example_print_chip_info();
- example_secure_boot_status();
- }
- static void example_print_chip_info(void)
- {
- /* Print chip information */
- esp_chip_info_t chip_info;
- esp_chip_info(&chip_info);
- printf("This is ESP32 chip with %d CPU cores, WiFi%s%s, ",
- chip_info.cores,
- (chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "",
- (chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : "");
- printf("silicon revision %d, ", chip_info.revision);
- printf("%dMB %s flash\n", spi_flash_get_chip_size() / (1024 * 1024),
- (chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external");
- }
- #define DIGEST_LEN 32
- static void example_secure_boot_status(void)
- {
- uint32_t efuse_block0 = REG_READ(EFUSE_BLK0_RDATA6_REG);
- #ifdef CONFIG_ESP32_REV_MIN_3
- uint8_t efuse_trusted_digest[DIGEST_LEN] = {0}, i;
- ESP_LOGI(TAG, "Checking for secure boot v2..");
- if(efuse_block0 & EFUSE_RD_ABS_DONE_1) {
- ESP_LOGI(TAG, "ABS_DONE_1 is set. Secure Boot V2 enabled");
- memcpy(efuse_trusted_digest, (uint8_t *)EFUSE_BLK2_RDATA0_REG, DIGEST_LEN);
- ESP_LOGI(TAG, "Reading the public key digest from BLK2.");
- for (i = 0; i < DIGEST_LEN; i++) {
- ESP_LOGI(TAG, "%02x \t", efuse_trusted_digest[i]);
- }
- return;
- } else {
- ESP_LOGI(TAG, "Secure boot v2 not enabled. Enable Secure Boot V2 in menuconfig, build & flash again.");
- }
- #endif
- ESP_LOGI(TAG, "Checking for secure boot v1..");
- uint32_t dis_reg = REG_READ(EFUSE_BLK0_RDATA0_REG);
- if (efuse_block0 & EFUSE_RD_ABS_DONE_0) {
- ESP_LOGI(TAG, "ABS_DONE_0 is set. Secure Boot V1 enabled");
- #ifdef CONFIG_ESP32_REV_MIN_3
- ESP_LOGW(TAG, "This chip version supports Secure Boot V2. It is recommended to use Secure Boot V2.");
- #endif
- bool efuse_key_read_protected = dis_reg & EFUSE_RD_DIS_BLK2;
- bool efuse_key_write_protected = dis_reg & EFUSE_WR_DIS_BLK2;
- ESP_LOGI(TAG, "Checking the integrityof the key in BLK2..");
- if (!efuse_key_read_protected) {
- ESP_LOGE(TAG, "Key is not read protected. Refusing to blow secure boot efuse.");
- return;
- }
- if (!efuse_key_write_protected) {
- ESP_LOGE(TAG, "Key is not write protected. Refusing to blow secure boot efuse.");
- return;
- }
- ESP_LOGI(TAG, "Key is read/write protected in eFuse.");
- return;
- } else {
- ESP_LOGI(TAG, "Secure Boot V1 not enabled. Enable Secure Boot in menuconfig, build & flash again.");
- }
- }
|