2022-04-14 04:54:04 +00:00
|
|
|
# SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-08-23 04:37:55 +00:00
|
|
|
from __future__ import print_function
|
2021-01-26 02:49:01 +00:00
|
|
|
|
2020-09-16 22:06:54 +00:00
|
|
|
import binascii
|
2021-01-26 02:49:01 +00:00
|
|
|
from collections import namedtuple
|
|
|
|
from io import BytesIO
|
2020-09-16 22:06:54 +00:00
|
|
|
|
2022-04-28 07:14:47 +00:00
|
|
|
import espsecure
|
2022-04-14 04:54:04 +00:00
|
|
|
import pytest
|
|
|
|
from pytest_embedded import Dut
|
2021-01-26 02:49:01 +00:00
|
|
|
|
2019-08-23 04:37:55 +00:00
|
|
|
|
|
|
|
# To prepare a test runner for this example:
|
|
|
|
# 1. Generate zero flash encryption key:
|
|
|
|
# dd if=/dev/zero of=key.bin bs=1 count=32
|
|
|
|
# 2.Burn Efuses:
|
|
|
|
# espefuse.py --do-not-confirm -p $ESPPORT burn_efuse FLASH_CRYPT_CONFIG 0xf
|
|
|
|
# espefuse.py --do-not-confirm -p $ESPPORT burn_efuse FLASH_CRYPT_CNT 0x1
|
|
|
|
# espefuse.py --do-not-confirm -p $ESPPORT burn_key flash_encryption key.bin
|
2022-04-14 04:54:04 +00:00
|
|
|
@pytest.mark.esp32
|
|
|
|
@pytest.mark.esp32c3
|
|
|
|
@pytest.mark.flash_encryption
|
|
|
|
def test_examples_security_flash_encryption(dut: Dut) -> None:
|
2022-04-28 07:14:47 +00:00
|
|
|
# Erase the nvs_key partition
|
|
|
|
dut.serial.erase_partition('nvs_key')
|
2020-09-16 22:06:54 +00:00
|
|
|
# calculate the expected ciphertext
|
2021-01-26 02:49:01 +00:00
|
|
|
flash_addr = dut.app.partition_table['storage']['offset']
|
2020-09-16 22:06:54 +00:00
|
|
|
plain_hex_str = '00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f'
|
|
|
|
plain_data = binascii.unhexlify(plain_hex_str.replace(' ', ''))
|
|
|
|
|
2021-03-17 08:11:03 +00:00
|
|
|
# espsecure uses the cryptography package for encrypting
|
|
|
|
# with aes-xts, but does not allow for a symmetric key
|
|
|
|
# so the key for later chips are not all zeros
|
2022-04-14 04:54:04 +00:00
|
|
|
if dut.target == 'esp32':
|
2021-03-17 08:11:03 +00:00
|
|
|
key_bytes = b'\x00' * 32
|
|
|
|
aes_xts = False
|
|
|
|
else:
|
|
|
|
key_bytes = b'\xff' + b'\x00' * 31
|
|
|
|
aes_xts = True
|
|
|
|
|
2020-09-16 22:06:54 +00:00
|
|
|
# Emulate espsecure encrypt_flash_data command
|
2021-01-15 08:04:59 +00:00
|
|
|
EncryptFlashDataArgs = namedtuple('EncryptFlashDataArgs', ['output', 'plaintext_file', 'address', 'keyfile', 'flash_crypt_conf', 'aes_xts'])
|
2021-03-17 08:11:03 +00:00
|
|
|
args = EncryptFlashDataArgs(BytesIO(), BytesIO(plain_data), flash_addr, BytesIO(key_bytes), 0xF, aes_xts)
|
2020-09-16 22:06:54 +00:00
|
|
|
espsecure.encrypt_flash_data(args)
|
|
|
|
|
|
|
|
expected_ciphertext = args.output.getvalue()
|
|
|
|
hex_ciphertext = binascii.hexlify(expected_ciphertext).decode('ascii')
|
|
|
|
expected_str = (' '.join(hex_ciphertext[i:i + 2] for i in range(0, 16, 2)) + ' ' +
|
|
|
|
' '.join(hex_ciphertext[i:i + 2] for i in range(16, 32, 2)))
|
|
|
|
|
2019-08-23 04:37:55 +00:00
|
|
|
lines = [
|
|
|
|
'FLASH_CRYPT_CNT eFuse value is 1',
|
|
|
|
'Flash encryption feature is enabled in DEVELOPMENT mode',
|
|
|
|
'with esp_partition_write',
|
2020-09-16 22:06:54 +00:00
|
|
|
plain_hex_str,
|
2019-08-23 04:37:55 +00:00
|
|
|
'with esp_partition_read',
|
2020-09-16 22:06:54 +00:00
|
|
|
plain_hex_str,
|
2019-08-23 04:37:55 +00:00
|
|
|
'with spi_flash_read',
|
2020-12-15 03:01:39 +00:00
|
|
|
expected_str,
|
|
|
|
# The status of NVS encryption for the "nvs" partition
|
2022-06-02 12:44:21 +00:00
|
|
|
'NVS partition "nvs" is encrypted.',
|
|
|
|
# The status of NVS encryption for the "custom_nvs" partition
|
|
|
|
'NVS partition "custom_nvs" is encrypted.'
|
2019-08-23 04:37:55 +00:00
|
|
|
]
|
|
|
|
for line in lines:
|
2022-06-27 13:27:58 +00:00
|
|
|
dut.expect(line, timeout=20)
|