Skip to content

F-Secure Armory Drive - USB encrypted drive with mobile unlock over BLE

License

Notifications You must be signed in to change notification settings

andrejro/armory-drive

 
 

Repository files navigation

Introduction

⚠️ this software is in beta stage

This TamaGo based unikernel allows encrypted USB Mass Storage interfacing for a microSD card connected to a USB armory Mk II.

The encrypted storage setup and authentication is meant to be performed with the F-Secure Armory mobile application (to be released - private invites only ATM) over Bluetooth (BLE).

To understand the firmware capabilities and use see this Tutorial.

Security Model

See the detailed specifications for full explanation of the security model.

Installation of pre-compiled releases

F-Secure provides binary releases for the Armory Drive firmware.

The binary release includes the armory-drive-installer tool (for Linux, Windows and macOS) to guide through initial installation of such releases and Secure Boot activation.

⚠️ loading signed releases triggers secure boot activation which is an a irreversible operation to be performed at your own risk, carefully read and understand the following instructions.

The installer supports the following installation modes:

  • F-Secure signed releases: the installation of such firmware images causes F-Secure own secure boot public keys to be permanently fused on the target USB armory, fully converting the device to exclusive use with Armory Drive releases signed by F-Secure.

  • User signed releases: the installation of such firmware images causes user own secure boot keys to be created and permanently fused on the target USB armory, fully converting the device to exclusive use with user signed binaries.

  • Unsigned releases: such firmware images do not leverage on Secure Boot and can be installed on standard USB armory devices.

    Such releases however cannot guarantee device security as hardware bound key material will use default test keys, lacking protection for stored armory communication keys and leaving data encryption key freshness only to the mobile application.

    Unsigned releases are recommended only for test/evaluation purposes and are not recommended for protection of sensitive data where device tampering is a risk.

The armory-drive-installer provides interactive installation for all modes and is the recommended way to use the Armory Drive firmware.

Expert users can compile and sign their own releases with the information included in section Installation of self-compiled releases.

Operation

Pairing and initialization

See the Tutorial.

Disk access

When running with a microSD card inserted, the USB armory Mk II can be used like any standard USB drive when unlocked through its paired companion iOS app.

LED on off blinking
blue BLE active BLE inactive pairing in progress
white SD card unlocked SD card locked firmware update in progress

Firmware update

The armory-drive-installer provides interactive upgrade of all installation modes and is the recommended way to upgrade the Armory Drive firmware.

Alternatively only users of F-Secure signed releases or unsigned releases can use the following procedure on USB armory devices which have been already initialized with the Armory Drive firmware as shown in Pairing and initialization.

  1. Download file armory-drive.ota from the latest binary release
  2. If the USB armory contains an SD card, remove it.
  3. Plug the USB armory.
  4. An "F-Secure" disk volume should appear.
  5. Rename armory-drive.ota to "UA-DRIVE.OTA".
  6. Copy "UA-DRIVE.OTA" to the "F-Secure" disk.
  7. Eject the "F-Secure" disk.
  8. The white LED should turn on and then off after the update is complete.
  9. Put the SD card back in.

Installation of self-compiled releases

⚠️ these instructions are for expert users only, it is recommended to use armory-drive-installer if you don't know what you are doing.

Compiling

Ensure that make, a recent version of go and protoc are installed.

Install, or update, the following dependency (ensure that the GOPATH variable is set accordingly):

go get -u google.golang.org/protobuf/cmd/protoc-gen-go

Build the TamaGo compiler (or use the latest binary release):

wget https://github.com/f-secure-foundry/tamago-go/archive/refs/tags/latest.zip
unzip latest.zip
cd tamago-go-latest/src && ./all.bash
cd ../bin && export TAMAGO=`pwd`/go

The firmware is meant to be executed on secure booted systems, therefore secure boot keys should be created and passed with the HAB_KEYS environment variable.

To build and install firmware updates to be passed over USB Mass Storage (see Firmware update) the OTA_KEYS variable must be set to a path containing the output of minisign keys generated as follows:

minisign -G -p $OTA_KEYS/armory-drive-minisign.pub -s armory-drive-minisign.sec

Build the armory-drive-signed.imx application executable:

make CROSS_COMPILE=arm-none-eabi- HAB_KEYS=<path> OTA_KEYS=<path> imx_signed

An unsigned test/development binary can be compiled with the imx target.

Installing

To permanently install armory-drive-signed.imx on internal non-volatile memory, follow these instructions for internal eMMC flashing.

Alternatively armory-ums can be used.

Support

If you require support, please email us at usbarmory@f-secure.com.

Authors

Andrea Barisani
andrea.barisani@f-secure.com | andrea@inversepath.com

License

Copyright (c) F-Secure Corporation

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation under version 3 of the License.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

See accompanying LICENSE file for full details.

About

F-Secure Armory Drive - USB encrypted drive with mobile unlock over BLE

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 94.4%
  • Makefile 5.6%