2019-01-21 14:14:56 +00:00
|
|
|
// Copyright 2015-2019 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.
|
|
|
|
|
|
|
|
#include <strings.h>
|
2019-07-12 06:29:40 +00:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include "esp_log.h"
|
2019-01-21 14:14:56 +00:00
|
|
|
#include "esp_efuse.h"
|
|
|
|
#include "esp_efuse_table.h"
|
|
|
|
#include "esp_flash_encrypt.h"
|
2019-07-12 06:29:40 +00:00
|
|
|
#include "esp_secure_boot.h"
|
|
|
|
|
2020-03-11 17:48:56 +00:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2020-04-25 04:59:39 +00:00
|
|
|
#define CRYPT_CNT ESP_EFUSE_FLASH_CRYPT_CNT
|
2020-03-11 17:48:56 +00:00
|
|
|
#define WR_DIS_CRYPT_CNT ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
2020-04-25 04:59:39 +00:00
|
|
|
#define CRYPT_CNT ESP_EFUSE_SPI_BOOT_CRYPT_CNT
|
2020-03-11 17:48:56 +00:00
|
|
|
#define WR_DIS_CRYPT_CNT ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT
|
|
|
|
#endif
|
|
|
|
|
2019-07-12 06:29:40 +00:00
|
|
|
#ifndef BOOTLOADER_BUILD
|
|
|
|
static const char *TAG = "flash_encrypt";
|
|
|
|
|
|
|
|
void esp_flash_encryption_init_checks()
|
|
|
|
{
|
|
|
|
esp_flash_enc_mode_t mode;
|
|
|
|
|
|
|
|
// First check is: if Release mode flash encryption & secure boot are enabled then
|
|
|
|
// FLASH_CRYPT_CNT *must* be write protected. This will have happened automatically
|
|
|
|
// if bootloader is IDF V4.0 or newer but may not have happened for previous ESP-IDF bootloaders.
|
|
|
|
#ifdef CONFIG_SECURE_FLASH_ENCRYPTION_MODE_RELEASE
|
2020-02-24 19:51:41 +00:00
|
|
|
#ifdef CONFIG_SECURE_BOOT
|
2019-07-12 06:29:40 +00:00
|
|
|
if (esp_secure_boot_enabled() && esp_flash_encryption_enabled()) {
|
2020-04-25 05:13:18 +00:00
|
|
|
bool flash_crypt_cnt_wr_dis = esp_efuse_read_field_bit(WR_DIS_CRYPT_CNT);
|
2019-07-12 06:29:40 +00:00
|
|
|
if (!flash_crypt_cnt_wr_dis) {
|
2020-04-25 04:59:39 +00:00
|
|
|
uint8_t flash_crypt_cnt = 0;
|
|
|
|
esp_efuse_read_field_blob(CRYPT_CNT, &flash_crypt_cnt, CRYPT_CNT[0]->bit_count);
|
|
|
|
if (flash_crypt_cnt == (1<<(CRYPT_CNT[0]->bit_count))-1) {
|
|
|
|
// If encryption counter is already max, no need to write protect it
|
|
|
|
// (this distinction is important on ESP32 ECO3 where write-procted FLASH_CRYPT_CNT also write-protects UART_DL_DIS)
|
|
|
|
return;
|
|
|
|
}
|
2020-06-01 12:33:23 +00:00
|
|
|
ESP_LOGE(TAG, "Flash encryption & Secure Boot together requires FLASH_CRYPT_CNT efuse to be write protected. Fixing now...");
|
2019-07-12 06:29:40 +00:00
|
|
|
esp_flash_write_protect_crypt_cnt();
|
|
|
|
}
|
|
|
|
}
|
2020-02-24 19:51:41 +00:00
|
|
|
#endif // CONFIG_SECURE_BOOT
|
2019-07-12 06:29:40 +00:00
|
|
|
#endif // CONFIG_SECURE_FLASH_ENCRYPTION_MODE_RELEASE
|
|
|
|
|
|
|
|
// Second check is to print a warning or error if the current running flash encryption mode
|
|
|
|
// doesn't match the expectation from project config (due to mismatched bootloader and app, probably)
|
|
|
|
mode = esp_get_flash_encryption_mode();
|
|
|
|
if (mode == ESP_FLASH_ENC_MODE_DEVELOPMENT) {
|
|
|
|
#ifdef CONFIG_SECURE_FLASH_ENCRYPTION_MODE_RELEASE
|
2020-06-01 12:33:23 +00:00
|
|
|
ESP_LOGE(TAG, "Flash encryption settings error: app is configured for RELEASE but efuses are set for DEVELOPMENT");
|
|
|
|
ESP_LOGE(TAG, "Mismatch found in security options in bootloader menuconfig and efuse settings. Device is not secure.");
|
2019-07-12 06:29:40 +00:00
|
|
|
#else
|
2020-06-01 12:33:23 +00:00
|
|
|
ESP_LOGW(TAG, "Flash encryption mode is DEVELOPMENT (not secure)");
|
2019-07-12 06:29:40 +00:00
|
|
|
#endif
|
|
|
|
} else if (mode == ESP_FLASH_ENC_MODE_RELEASE) {
|
2020-06-01 12:33:23 +00:00
|
|
|
ESP_LOGI(TAG, "Flash encryption mode is RELEASE");
|
2019-07-12 06:29:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2019-01-21 14:14:56 +00:00
|
|
|
|
2019-07-16 09:33:30 +00:00
|
|
|
void esp_flash_write_protect_crypt_cnt(void)
|
2019-01-21 14:14:56 +00:00
|
|
|
{
|
2020-04-25 04:58:30 +00:00
|
|
|
esp_efuse_write_field_bit(WR_DIS_CRYPT_CNT);
|
2019-01-21 14:14:56 +00:00
|
|
|
}
|
|
|
|
|
2019-07-16 09:33:30 +00:00
|
|
|
esp_flash_enc_mode_t esp_get_flash_encryption_mode(void)
|
2019-01-21 14:14:56 +00:00
|
|
|
{
|
|
|
|
uint8_t efuse_flash_crypt_cnt_wr_protected = 0;
|
2020-03-11 17:48:56 +00:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2019-01-21 14:14:56 +00:00
|
|
|
uint8_t dis_dl_enc = 0, dis_dl_dec = 0, dis_dl_cache = 0;
|
2020-03-11 17:48:56 +00:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
|
|
|
uint8_t dis_dl_enc = 0;
|
2020-03-31 19:40:08 +00:00
|
|
|
uint8_t dis_dl_icache = 0;
|
|
|
|
uint8_t dis_dl_dcache = 0;
|
|
|
|
|
2020-03-11 17:48:56 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-21 14:14:56 +00:00
|
|
|
esp_flash_enc_mode_t mode = ESP_FLASH_ENC_MODE_DEVELOPMENT;
|
|
|
|
|
|
|
|
if (esp_flash_encryption_enabled()) {
|
|
|
|
/* Check if FLASH CRYPT CNT is write protected */
|
2020-04-25 05:13:18 +00:00
|
|
|
efuse_flash_crypt_cnt_wr_protected = esp_efuse_read_field_bit(WR_DIS_CRYPT_CNT);
|
2020-03-11 17:48:56 +00:00
|
|
|
|
2019-01-21 14:14:56 +00:00
|
|
|
if (efuse_flash_crypt_cnt_wr_protected) {
|
2020-03-11 17:48:56 +00:00
|
|
|
|
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2020-04-25 05:13:18 +00:00
|
|
|
dis_dl_cache = esp_efuse_read_field_bit(ESP_EFUSE_DISABLE_DL_CACHE);
|
|
|
|
dis_dl_enc = esp_efuse_read_field_bit(ESP_EFUSE_DISABLE_DL_ENCRYPT);
|
|
|
|
dis_dl_dec = esp_efuse_read_field_bit(ESP_EFUSE_DISABLE_DL_DECRYPT);
|
2019-01-21 14:14:56 +00:00
|
|
|
/* Check if DISABLE_DL_DECRYPT, DISABLE_DL_ENCRYPT & DISABLE_DL_CACHE are set */
|
|
|
|
if ( dis_dl_cache && dis_dl_enc && dis_dl_dec ) {
|
|
|
|
mode = ESP_FLASH_ENC_MODE_RELEASE;
|
|
|
|
}
|
2020-03-11 17:48:56 +00:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
2020-04-25 05:13:18 +00:00
|
|
|
dis_dl_enc = esp_efuse_read_field_bit(ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT);
|
|
|
|
dis_dl_icache = esp_efuse_read_field_bit(ESP_EFUSE_DIS_DOWNLOAD_ICACHE);
|
|
|
|
dis_dl_dcache = esp_efuse_read_field_bit(ESP_EFUSE_DIS_DOWNLOAD_DCACHE);
|
2020-03-11 17:48:56 +00:00
|
|
|
|
2020-03-31 19:40:08 +00:00
|
|
|
if (dis_dl_enc && dis_dl_icache && dis_dl_dcache) {
|
2020-03-11 17:48:56 +00:00
|
|
|
mode = ESP_FLASH_ENC_MODE_RELEASE;
|
|
|
|
}
|
2020-04-25 04:58:30 +00:00
|
|
|
#endif
|
2019-01-21 14:14:56 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mode = ESP_FLASH_ENC_MODE_DISABLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mode;
|
|
|
|
}
|