Secure OTA DFU

Introduction

The following article shows how to securely upgrade Bluetooth application OTA (over-the-air) using signed+encrypted upgrade files. The process is tested with Bluetooth SDK v3.1.1.

Gecko Bootloader

The Gecko Bootloader is a common bootloader for all Silicon Labs protocol stacks. It can load applications from different sources (internal flash, external flash, UART, SPI, over-the-air) using different protocols (XMODEM, BGAPI, EZSP SPI, Bluetooth, and so on.). It can be configured in a number of ways and its capabilities depend on the current configuration. This document shows how you can use it for loading a new application into the device sent over a Bluetooth connection.

Security Features

The Gecko Bootloader has three security features:

Upgrade files are in a custom GBL (Gecko Bootloader) format. An authenticated upgrade file means that an electronic signature is attached to the GBL file. The signature is produced with a public-private key pair. The public key is stored in the device, while the private key is kept secret by the manufacturer. The signature ensures that the upgrade file is from a trusted source.

An encrypted upgrade file means that the content of the GBL file is encrypted to protect against eavesdroppers.

Secure Boot means that a signature is attached to the firmware image (.s37) before it is packed into upgrade file formal (.gbl). Note that this differs from an authenticated upgrade file, as authenticated upgrade file means that a signature is attached to the upgrade file after the image was packed into GBL format. A signed image file (secure boot) ensures that the image was not modified since last boot and that it is from a trusted source. This is checked at every boot. Upgrade file authentication is only checked while upgrading.

The following content shows how to use these security features.

OTA DFU

Over-The-Air Device Firmware Upgrade (OTA DFU) means that the device firmware can be updated via a Bluetooth connection.

To enable Bluetooth OTA update, the target device must be programmed with an appropriate Gecko Bootloader configuration and additionally with any Bluetooth application that supports OTA.

A Bluetooth application developed with Silicon Labs Bluetooth SDK comprises two parts.

Since Bluetooth SDK v2.7 the two parts are

The OTA functionality is built into the Apploader code. If the device is restarted in DFU mode, the Apploader is started instead of the user application. This makes it possible to perform OTA update without any involvement from the user application.

The only requirement for the user application is for a way to trigger a reboot into DFU mode. Reboot into DFU mode can be triggered in a variety of ways. It is up to the application developer to decide which is most applicable. Most of the example applications provided in the Bluetooth SDK already have OTA support built into the code (using the OTA DFU software component). In these examples, the DFU mode is triggered through the Silicon Labs OTA service that is included as part of the application’s GATT database (contributed by the OTA DFU software component). To restart the device in OTA mode, the following API is used: sl_bt_system_reset(2).

The following processes are OTA DFU:

  1. The device is restarted in OTA mode, and the Apploader is started.

  2. The Apploader overwrites the old Application code with the new one.

For more details regarding OTA DFU using the Apploader, see AN1086: Using the Gecko Bootloader with the Silicon Labs Bluetooth® Applications.

Create and Build Bootloader

Create Bootloader Project

Gecko Bootloader is included in the Gecko SDK Suite. A number of predefined configurations are available to help customers easily create new Bootloader projects for different purposes. Different bootloader configurations are recommended for different devices:

To create a new bootloader project:

  1. Open Simplicity Studio and select your device in the Devices or Debug Adapters tab.

  2. Check the Preferred SDK under General Information in the OVERVIEW tab.

  3. Click EXAMPLE PROJECTS & DEMOS tab, and select Bootloader under Technology Type section.

  4. Select the appropriate Gecko Bootloader application type for your device (e.g., Internal Storage Bootloader), click FINISH.

Add Security Features

After the bootloader project is created, the Application Builder automatically opens up. To add security features, do the following:

  1. Open the Plugins tab.

  2. Click on Bootloader Core.

  3. On the right side tick the checkboxes:

    • Require signed firmware upgrade files.
    • Require encrypted firmware upgrade files.
    • Enable secure boot.
  4. Click Generate in the upper right corner.

Build Bootloader

After the bootloader code was generated by the AppBuilder, build your project:

  1. Click on the build icon.

Generate Security Keys

To use the security features of the Gecko Bootloader, generate the encryption and signing keys. These keys must be then written to the EFR32 device. The encryption key is used with the GBL file for secure firmware update. The signing keys are used both with the GBL file for secure firmware update and to sign the application image for Secure Boot.

You can create security keys with Simplicity Commander:

  1. For ease of use, add the Commander path (C:\SiliconLabs\SimplicityStudio\v5\developer\adapter_packs\commander) to the Path environment variable in your OS.

  2. Generate signing keys with the following command in command line: commander gbl keygen --type ecc-p256 --outfile app-sign-key.pem This creates three files: app-sign-key.pem, app-sign-key.pem.pub and app-sign-key.pem-token.txt. The first contains the private key (keep it secret), the other two contain the public key which has to be flashed to the device.

  3. Generate encryption key with the following command in command line: commander gbl keygen --type aes-ccm --outfile app-encrypt-key.txt This creates one file named app-encrypt-key.txt

Flash Security Keys

Write the two token files containing the encryption key and public key to the device.

On series 1 devices (EFR32xG1x) issue the following command:

commander flash --tokengroup znet --tokenfile app-encrypt-key.txt --tokenfile app-sign-key.pem-token.txt

On series 2 devices (EFR32xG2x) use the following commands:

commander security writekey --decrypt app-encrypt-key.txt --device EFR32MG21A010F1024 --serialno 440068705

commander security writekey --sign app-sign-key.pem.pub --device EFR32MG21A010F1024 --serialno 440068705

For more information on writing security keys to series 2 devices see AN1222: Production Programming of Series 2 Devices.

Create and Build Basic Application

Because OTA DFU is not fully implemented in the Bootloader, a minimal Bluetooth application has to be created and flashed to the device along with the Bootloader to support the upgrade.

Create Basic Application Project

To create a basic application that supports OTA DFU, do the following:

  1. Open Simplicity Studio and select your device in the Devices or Debug Adapters tab.

  2. Check the Preferred SDK under General Information in the OVERVIEW tab.

  3. Click EXAMPLE PROJECTS & DEMOS tab, and select Bluetooth under Technology Type section.

  4. Select SOC - Empty sample application, and click FINISH.

Build Application

The application code is automatically generated after the project was created. The SoC – Empty sample application contains everything needed for OTA support (OTA service and characteristics + code to support to restart the device in DFU mode + Apploader image. These are all added by the OTA DFU software component). To build the application, do the following:

  1. Click on the build icon.

Sign the Application Image

Because Secure Boot was enabled in the bootloader, only signed application images can be booted.

To use OTA DFU, sign the Apploader and the Application parts of the image separately because they will be updated separately.

To add a signature to the Apploader and to the Application image, do the following:

  1. Copy app-sign-key.pem (from the folder in which you ran the commander gbl keygen command) into your project.
  2. Run the create_bl_files.bat batch file found in your project, which will create the signed GBL files into the output_gbl folder.

Note: to get batch file work properly, you may have to set some environment variables. For more details, see AN1086: Using the Gecko Bootloader with the Silicon Labs Bluetooth® Applications.

Upload Bootloader and Basic Application

After both Bootloader image and Application image are ready, upload them to the device:

  1. Copy the .s37 file from the bootloader project to the output_gbl folder of the Bluetooth application project.

    Note: On series 1 devices, the ...-combined.s37 file contains the full bootloader – while other output files in the bootloader project contain only the second stage of the bootloader. If you haven't flashed a bootloader to your device yet, it is recommended to use the combined image file.

  2. Merge the Bootloader image with the Apploader and the Application images. Open a command line to the output_gbl folder, and use the following command:

    • commander convert bootloader-storage-internal-single.s37 apploader-signed.gbl application-signed.gbl --outfile bootloader+stack+app.s37
  3. Upload the merged image to your device (e.g. right click on the merged .s37 file in Simplicity Studio and select Flash to Device. You can also use Simplicity Commander for flashing.)

Create and Build Upgrade Application

Create Application Project

Create the application to upgrade the device to, for example the Thermometer sample application. Similarly to the creation of the Basic Application, do the following:

  1. Open Simplicity Studio and select your device in the Devices or Debug Adapters tab.

  2. Check the Preferred SDK under General Information in the OVERVIEW tab.

  3. Click EXAMPLE PROJECTS & DEMOS tab, and select Bluetooth under Technology Type section.

  4. Select SOC - Thermometer sample application, and click FINISH.

Build Application

The application code is automatically generated after the project was created. To build the application, do the following:

  1. Click on the build icon.

Create Signed and Encrypted Upgrade Files from the Image

The bootloader accepts upgrade images in .gbl format. To create .gbl files from the image and sign/encrypt it, do the following:

  1. Copy app-sign-key.pem and app-encrypt-key.txt into your project.
  2. Run create_bl_files.bat.
  3. Check upgrade files in output_gbl folder within your project.

Upgrade your Device

Now your device can be upgraded OTA from the basic application to the upgrade application. For this you need another device which will send the new firmware to the target device via Bluetooth. In this example, a smartphone will be used for this purpose.

  1. Download and install EFR Connect app to your smartphone.

  2. Open the output_gbl folder in your project.

  3. Copy the upgrade files from your computer to your smartphone.

    • Copy apploader-signed-encrypted.gbl and application-signed-encrypted.gbl
  4. Open the EFR Connect app.

  5. Select the Bluetooth Browser.

  6. Find your device. The basic app advertises itself as Empty Example. Because there might be other devices advertising around you with the same name, place your smartphone close to your device and find the one with the highest RSSI.

  7. Click on your device to connect to it.

  8. Open the context menu in the upper right corner and select OTA.

  9. Choose Full OTA.

  10. Select apploader-signed-encrypted.gbl as your apploader image and application-signed-encrypted.gbl as your application image.

  11. Click OTA.

  12. After the upload is finished, you should see your device advertising itself as Thermometer Example in the Bluetooth Browser.