eupn / passport-firmware

Firmware for Passport v1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Passport Wallet Firmware

Passport is an ultra-secure, open source hardware wallet for Bitcoin that offers excellent usability and a great design.

Get yours at foundationdevices.com and follow @FOUNDATIONdvcs on Twitter to keep up with the latest updates and security alerts.

Project Structure

The source code is organized according to the standard MicroPython project structure.

The source is, broadly speaking, split into two parts:

  • Bootloader. This is typically flashed into the device permanently at the factory, although we may release developer versions of Passport that allow users to flash their own bootloader.

  • Main Firmware. This is the main, updatable software running on Passport that provides the UI and wallet features.

Code specific to Passport is included in the following folders:

  • ports/stm32 Low-level platform configuration for MicroPython.
  • ports/stm32/boards/Passport C files that implement some device drivers and code that was 5-10 times faster in C than in Python.
  • bootloader C-based code that handles secure element initialization, firmware validation and updates, and system startup.
  • common Common C code shared between the bootloader and the main firmware.
  • graphics Images and a build script that converts the images to Python data for easier loading.
  • modules The MicroPython code that implements the user interface and menu actions.
  • trezor-firmware Contains a copy of the Trezor source code in order to use Trezor's crypto library. We will likely make this into a git submodule soon to make it even easier to keep the library up to date.
  • tools/cosign - A C-based utility that provides the code signing that keeps Passport's firmware safe.
  • utils Some CLI utilities used to generate BIP39 data for seed word lookup.

Development

Please see DEVELOPMENT.md for information on developing for Passport.

Verifying Firmware SHA Sums

To make building and verifying the firmware a simple process, there is a Dockerfile in the project that builds an image to be used to build the firmware. Using just, the following command can be used to verify the reproducability of the firmware. Make sure to substitute <the sha sum> for the SHA string to verify.

just verify-sha <the-sha-sum>

Open Source Components

Passport's firmware incorporates open-source software from several third-party projects, as well as other first-party work we open-sourced.

  • MicroPython - This forms the core foundation on which Passport is built.

  • Coldcard Firmware - Passport's security model has a lot in common with Coldcard, and the Passport firmware was originally based directly on the ColdCard repository. As development progressed, however, we chose to follow MicroPython best practices and start with a fresh MicroPython repository. We've ported numerous files from Coldcard as needed, and we thank them for their great contribution to open source.

  • Trezor Firmware - Trezor has kindly open-sourced a highly-optimized library of crypto algorithms. Rather than modify the Trezor code, we decided to include the original source. This will make it easier to incorporate future improvements and fixes from Trezor and their contributors. We may convert this to a git submodule in the future.

  • Quirc - Quirc is a QR decoding library that offers an embedded-friendly interface to process images from a camera for QR codes. This library has proven to be fast and reliable in Passport. We made some changes and contributed back to Quirc (pull request pending).

  • QRCode - QRCode is a QR code creator library that takes a string or data and encode it to a QR code which can then be displayed on screen, saved to file, etc. This library has a simple clean interface and was easy to integrate.

  • Foundation UR Python 2.0 - This is our Python port of the UR 2.0 standard from the wonderful Blockchain Commons. It provides the ability to encode/decode multi-part animated QR codes that represent data which is too large to fit in a single QR code. This is the new standard air-gapped wallets are expected to adopt moving forward.

  • Foundation UR Python 1.0 (Coming Soon) - This is our Python port of the UR 1.0 standard from BlockChain Commons. It has the same goals as UR 2.0, but was more of an early experiment. Foundation Devices ported this to Python to be compatible with air-gapped software wallets like BlueWallet and Specter.

Security Vulnerability Disclosure

Please report suspected security vulnerabilities in private to security@foundationdevices.com. Please do NOT create publicly viewable issues for suspected security vulnerabilities.

Licensing

All licenses used in Passport are reuse friendly, and the license for each component is marked separately in the header files where appropriate or in a .reuse/dep5 file otherwise. See the LICENSES folder and the ports/stm32/boards/Passport/LICENSES folders for details on each license file.

In summary, Passport makes use of the following licenses.

  • Apache License, Version 2.0
  • FreeBSD License (2-clause BSD License)
  • FreeBSD (2-clause BSD) Plus Patent License
  • Modified BSD License (3-clause BSD License)
  • GNU General Public License v3.0 (GPLv3)
  • GNU General Public License v3.0 (GPLv3) or later
  • ISC License (OpenBSD)
  • MIT License
  • The Unlicense

Due to the inclusion of GPLv3 code, Passport Firmware should be treated in a copyleft manner.

About

Firmware for Passport v1


Languages

Language:C 92.8%Language:Assembly 2.9%Language:Python 2.8%Language:PHP 0.3%Language:Shell 0.2%Language:Makefile 0.2%Language:TeX 0.1%Language:C++ 0.1%Language:HTML 0.1%Language:Roff 0.1%Language:CMake 0.1%Language:Perl 0.0%Language:M4 0.0%Language:Java 0.0%Language:C# 0.0%Language:Visual Basic .NET 0.0%Language:JavaScript 0.0%Language:Lua 0.0%Language:Ruby 0.0%Language:Mako 0.0%Language:Yacc 0.0%Language:CSS 0.0%Language:Lex 0.0%Language:Dockerfile 0.0%Language:GDB 0.0%Language:Nix 0.0%Language:OpenSCAD 0.0%Language:QMake 0.0%Language:Awk 0.0%Language:SmPL 0.0%Language:Tcl 0.0%Language:Batchfile 0.0%