mirror of
https://github.com/markqvist/RNode_Firmware.git
synced 2025-07-22 06:28:43 -04:00
Implemented ESP32 device init and firmware hash checks
This commit is contained in:
parent
c6844c9713
commit
bfab1e974d
6 changed files with 331 additions and 78 deletions
136
Device.h
Normal file
136
Device.h
Normal file
|
@ -0,0 +1,136 @@
|
|||
#include <Ed25519.h>
|
||||
#include "mbedtls/md.h"
|
||||
#include "esp_ota_ops.h"
|
||||
#include "esp_flash_partitions.h"
|
||||
#include "esp_partition.h"
|
||||
|
||||
// Forward declaration from Utilities.h
|
||||
void eeprom_update(int mapped_addr, uint8_t byte);
|
||||
void hard_reset(void);
|
||||
|
||||
const uint8_t dev_keys [] PROGMEM = {
|
||||
0x0f, 0x15, 0x86, 0x74, 0xa0, 0x7d, 0xf2, 0xde, 0x32, 0x11, 0x29, 0xc1, 0x0d, 0xda, 0xcc, 0xc3,
|
||||
0xe1, 0x9b, 0xac, 0xf2, 0x27, 0x06, 0xee, 0x89, 0x1f, 0x7a, 0xfc, 0xc3, 0x6a, 0xf5, 0x38, 0x08
|
||||
};
|
||||
|
||||
#define DEV_SIG_LEN 64
|
||||
uint8_t dev_sig[DEV_SIG_LEN];
|
||||
|
||||
#define DEV_KEY_LEN 32
|
||||
uint8_t dev_k_prv[DEV_KEY_LEN];
|
||||
uint8_t dev_k_pub[DEV_KEY_LEN];
|
||||
|
||||
#define DEV_HASH_LEN 32
|
||||
uint8_t dev_hash[DEV_HASH_LEN];
|
||||
uint8_t dev_partition_table_hash[DEV_HASH_LEN];
|
||||
uint8_t dev_bootloader_hash[DEV_HASH_LEN];
|
||||
uint8_t dev_firmware_hash[DEV_HASH_LEN];
|
||||
uint8_t dev_firmware_hash_target[DEV_HASH_LEN];
|
||||
|
||||
#define EEPROM_SIG_LEN 128
|
||||
uint8_t dev_eeprom_signature[EEPROM_SIG_LEN];
|
||||
|
||||
bool dev_signature_validated = false;
|
||||
bool fw_signature_validated = true;
|
||||
|
||||
#define DEV_SIG_OFFSET EEPROM_SIZE-EEPROM_RESERVED-DEV_SIG_LEN
|
||||
#define dev_sig_addr(a) (a+DEV_SIG_OFFSET)
|
||||
|
||||
#define DEV_FWHASH_OFFSET EEPROM_SIZE-EEPROM_RESERVED-DEV_SIG_LEN-DEV_HASH_LEN
|
||||
#define dev_fwhash_addr(a) (a+DEV_FWHASH_OFFSET)
|
||||
|
||||
bool device_signatures_ok() {
|
||||
return dev_signature_validated && fw_signature_validated;
|
||||
}
|
||||
|
||||
void device_validate_signature() {
|
||||
int n_keys = sizeof(dev_keys)/DEV_KEY_LEN;
|
||||
bool valid_signature_found = false;
|
||||
for (int i = 0; i < n_keys; i++) {
|
||||
memcpy(dev_k_pub, dev_keys+DEV_KEY_LEN*i, DEV_KEY_LEN);
|
||||
if (Ed25519::verify(dev_sig, dev_k_pub, dev_hash, DEV_HASH_LEN)) {
|
||||
valid_signature_found = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (valid_signature_found) {
|
||||
dev_signature_validated = true;
|
||||
} else {
|
||||
dev_signature_validated = false;
|
||||
}
|
||||
}
|
||||
|
||||
void device_save_signature() {
|
||||
device_validate_signature();
|
||||
if (dev_signature_validated) {
|
||||
for (uint8_t i = 0; i < DEV_SIG_LEN; i++) {
|
||||
eeprom_update(dev_sig_addr(i), dev_sig[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void device_load_signature() {
|
||||
for (uint8_t i = 0; i < DEV_SIG_LEN; i++) {
|
||||
dev_sig[i] = EEPROM.read(dev_sig_addr(i));
|
||||
}
|
||||
}
|
||||
|
||||
void device_load_firmware_hash() {
|
||||
Serial.println("Loading hash from EEPROM");
|
||||
for (uint8_t i = 0; i < DEV_HASH_LEN; i++) {
|
||||
dev_firmware_hash_target[i] = EEPROM.read(dev_fwhash_addr(i));
|
||||
}
|
||||
}
|
||||
|
||||
void device_save_firmware_hash() {
|
||||
for (uint8_t i = 0; i < DEV_HASH_LEN; i++) {
|
||||
eeprom_update(dev_fwhash_addr(i), dev_firmware_hash_target[i]);
|
||||
}
|
||||
if (!fw_signature_validated) hard_reset();
|
||||
}
|
||||
|
||||
void device_validate_partitions() {
|
||||
device_load_firmware_hash();
|
||||
esp_partition_t partition;
|
||||
partition.address = ESP_PARTITION_TABLE_OFFSET;
|
||||
partition.size = ESP_PARTITION_TABLE_MAX_LEN;
|
||||
partition.type = ESP_PARTITION_TYPE_DATA;
|
||||
esp_partition_get_sha256(&partition, dev_partition_table_hash);
|
||||
partition.address = ESP_BOOTLOADER_OFFSET;
|
||||
partition.size = ESP_PARTITION_TABLE_OFFSET;
|
||||
partition.type = ESP_PARTITION_TYPE_APP;
|
||||
esp_partition_get_sha256(&partition, dev_bootloader_hash);
|
||||
esp_partition_get_sha256(esp_ota_get_running_partition(), dev_firmware_hash);
|
||||
for (uint8_t i = 0; i < DEV_HASH_LEN; i++) {
|
||||
if (dev_firmware_hash_target[i] != dev_firmware_hash[i]) {
|
||||
fw_signature_validated = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool device_firmware_ok() {
|
||||
return fw_signature_validated;
|
||||
}
|
||||
|
||||
bool device_init() {
|
||||
if (bt_early_init()) {
|
||||
for (uint8_t i=0; i<EEPROM_SIG_LEN; i++){dev_eeprom_signature[i]=EEPROM.read(eeprom_addr(ADDR_SIGNATURE+i));}
|
||||
mbedtls_md_context_t ctx;
|
||||
mbedtls_md_type_t md_type = MBEDTLS_MD_SHA256;
|
||||
mbedtls_md_init(&ctx);
|
||||
mbedtls_md_setup(&ctx, mbedtls_md_info_from_type(md_type), 0);
|
||||
mbedtls_md_starts(&ctx);
|
||||
mbedtls_md_update(&ctx, dev_bt_mac, BT_DEV_ADDR_LEN);
|
||||
mbedtls_md_update(&ctx, dev_eeprom_signature, EEPROM_SIG_LEN);
|
||||
mbedtls_md_finish(&ctx, dev_hash);
|
||||
mbedtls_md_free(&ctx);
|
||||
device_load_signature();
|
||||
device_validate_signature();
|
||||
device_validate_partitions();
|
||||
device_init_done = true;
|
||||
return device_init_done && fw_signature_validated;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue