ARMmbed / uvisor-helloworld

This repo is deprecated and for historical purposes only - see https://github.com/ARMmbed/uvisor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This example is deprecated and kept for historic purposed only: please refer to the main repository for more information.

Hello World example for the uVisor

This is a Hello World yotta executable created to show some of the security features provided by the uVisor. The application hosts a secure box that is able to generate a secret at runtime. The secret is stored in the box context, so it is protected by uVisor against the rest of the code.

This is a challenge. For the security model to be effective, the box secret must not be leaked in any way. You can attempt whatever approach you prefer to try and read the secret. By default, the main event in this application continuously tries to verify its challenge against the box secret.

We already provide one example of such an approach. See the Run section for more information.

This example relies on the security features provided by the uVisor. Refer to its library documentation to know more about its use cases and about the uvisor-lib APIs. Please note that the official uVisor documentation describes the higher level security model, instead.

Supported platforms

The following platforms are currently supported:

The uVisor pre-linked binary images are built with the Launchpad GCC ARM Embedded toolchain. Currently only applications built with the same toolchain are supported.

How to

The following section explains how to build, flash and run the uVisor on OS X, Linux and Windows.

Pre-requisites

Please install the following:

Build

First, navigate to the directory containing your source files:

cd uvisor-helloworld

yotta must know which platform (target) it is building to. So we declare the target, then build.

yotta target frdm-k64f-gcc
yotta build

Note: This command builds the application in release mode. Debug mode is also available (yotta build -d) but it requires a debugger to be connected to the board. Read the Debug section for more information.

The resulting binary file will be located in build/frdm-k64f-gcc/source/uvisor-helloworld.bin.

The available targets for this example are:

  • frdm-k64f-gcc
  • stm32f429i-disco-gcc

Flash

Connect your board to your computer USB port and simply drag & drop the binary file from the previous step into the MBED device listed in the file browser.

The STM32F429I-DISCO does not offer yet the possibility to drag & drop a firmware on it, so you will need to use the STMicroelectronics proprietary software (available on Windows only) to flash it. For Linux please use st-flash for uploading new firmware to the device. On OS X st-flash is available via brew install stlink for updating the device firmware. Please refer to homebrew for more information.

Run

Hit the reset button after flashing to start program execution. The application starts running right after you reset the processor.

You can observe some logging messages on the UART port. On Linux/OS X you can use screen <path to serial> 115200 (press ctrl a k to exit). On Windows, make sure to have the serial port drivers installed; you can use a terminal application, like PuTTY, to connect to the device. In this example the UART baud rate is set to 115200.

Please note that on some devices (STM32F429I-DISCO) the on-board USB port cannot be used for UART output. In that case you need to connect an external port.

After reset the UART port shows the following:

***** uvisor-helloworld example *****
Main unprivileged box configured

The code from the main box checks its own secret against the secure box secret every second, using the secure box API. The outcome of the check is printed on the UART:

Verifying secret... Match/Mismatch

In addition to the UART output, we provide visual feedback through LEDs. An LED blinks when a secret verification is performed (period: 1s). If the check is successful (Match) the same LED blinks faster (period: 200ms). The colour of this LED depends on the board — see the table below.

After 10s, or if you press the main button, malicious code attempts to read the box secret. If it succeeds, the following message is printed:

Attempting to read the secret... Access granted!

In that case, the next time that the main box performs a check it will be successful:

Verifying secret... Match

On the other hand, if uVisor captures the denied access, the system halts and the following message is printed:

Attempting to read the secret... Access denied! Will now reboot

A different LED blinks when a fault is captured — see the table below. This LED blinks with a special pattern that depends on the captured fault — read the Debug section for more information. Upon halt, the system reboots and the application starts again.

Hardware-specific configurations

This example uses LEDs and push-buttons, the configuration of which depends on the target:

Target Main LED uVisor LED Button Comments
frdm-k64f-gcc LED_BLUE LED_RED SW2 Do not use SW3; uVisor will halt
stm32f429i-disco-gcc LED1 LED2 USER_BUTTON Use an external UART port for the program output

Debug

Failures and faults captured by the uVisor trigger a system halt. Upon halt, the uVisor issues an error code to the device, which can be used for debugging. Please refer to the API documentation for a complete list of the uVisor error codes.

In this application we provide a sample of what we call a debug box. A debug box is a secure box that can sign up to uVisor to handle debug events. In this way, every privileged uVisor debug handler can also trigger the execution of an unprivileged handler.

The current version of the debug box driver only supports one handler — the system halt handler:

void halt_error(int reason)

The debug box in this example receives the uVisor error codes and encodes them in red blinking patterns, to provide a visual feedback to the user.

The uVisor is also able to print additional debug messages, which are silenced by default. If you want to enable them, you need to build this application in debug mode:

yotta build -d

This command will ensure that a debug version of uVisor is linked to the application.

Note: In debug mode, the uVisor outputs logging messages via semihosting, which requires a connected debugger. If a debugger is not connected, the application will halt and you will see no UART message and no LED blinking.

Please refer to the Debugging uVisor document for more information about the built-in uVisor debug features and for documentation on the debug box driver.

About

This repo is deprecated and for historical purposes only - see https://github.com/ARMmbed/uvisor

License:Other


Languages

Language:C++ 50.2%Language:C 37.3%Language:Makefile 12.5%