Skip to main content

ESP32 OTA Updates — Amazon FreeRTOS

·3 mins·
AWS Esp32 IoT Framework
Table of Contents

ESP32 now supports secure Over-the-Air firmware updates with Amazon FreeRTOS. This enables users of ESP32 with Amazon FreeRTOS to:

  • Deploy new firmware on ESP32 in secure manner (single or group of devices, along with dynamic addition of new/re-provisioned device)
  • Verify authenticity and integrity of new firmware after its deployed
  • Extend OTA update security scheme to take leverage of hardware security features in ESP32

Working
#

At a high level,

  • The firmware image (or any other partition’s content: filesystem, configuration data), is initially uploaded to an S3 bucket on AWS.
  • An AWS OTA Job with the required certificates (for demo purpose can be self-signed) and code-signing profile (security scheme for ESP32 is ECDSA + SHA256) is setup.
  • On the device side, the OTA agent from Amazon FreeRTOS needs to be enabled in the firmware, along with the certificate that is responsible for verifying the firmware update image (essentially ECDSA public key).
  • The AWS OTA Job then takes the firmware image from the S3 bucket, signs it, and sends it over MQTT+TLS channel in small chunks to the OTA agent on the device.
  • The OTA agent on the device then writes the newly received firmware to its storage and manages the state.
  • At the end, firmware signature gets validated on the device and it gets approved for boot-up.
  • Post boot-up, the OTA agent again interacts with AWS OTA Job for verifying sanity of firmware, and finally the firmware image gets marked as legitimate one, notifying the boot-loader to erase all older firmware instances from the device storage (for not allowing forced rollback).

Procedure
#

Lets quickly walk over the steps for getting the OTA update demo functional on ESP32:

  • Select “Sign a new firmware image for me” option,
  • Create code signing profile, please select ESP32 platform here and provide certificates created earlier,

Enabling Hardware Security
#

The ESP32 port is so structured that the same secure firmware verification mechanism can be used by the ESP32 chipset for enabling secure boot .

ESP32’s secure boot scheme uses the same ECDSA + SHA256 algorithm. Hence the same public key that is used for the OTA firmware image verification can also be used by the bootloader to validate the firmware image on boot-up.

It is highly recommended that you use secure boot in conjunction with the OTA firmware updates in your products.

Related

Amazon FreeRTOS — ESP32 Support
·3 mins
Esp32 IoT Embedded Systems Microcontrollers Framework
Preface # Amazon FreeRTOS is the latest offering (after acquisition of FreeRTOS) from Amazon that tries to simplify cloud connectivity with Amazon services (e.
Espressif’s Alexa SDK v1.0b1!
·2 mins
Esp32 Alexa IoT Framework
The Espressif’s Alexa SDK v1.0b1 is now available on github here: https://github.com/espressif/esp-avs-sdk This is a low-footprint C-based SDK that includes support for all of the following features:
Anatomy of a Voice-Integrated Device
·3 mins
Alexa Framework Esp32
Recently I have seen significant interest from OEMs in embedding voice assistants, like Alexa, directly into their products.