firmware/stm32/bootloader
2020-11-18 14:19:14 -05:00
..
assets dev squashed 2020-11-18 14:19:14 -05:00
micro-ecc Save memory by removing unused code 2019-09-23 10:42:43 -04:00
releases Bump version 2020-06-12 08:49:08 -04:00
.gitignore Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
ae_config.h Switch to exactly 13 tries 2019-07-26 11:23:45 -04:00
ae.c dev squashed 2020-11-18 14:19:14 -05:00
ae.h dev squashed 2020-11-18 14:19:14 -05:00
basics.h dev squashed 2020-11-18 14:19:14 -05:00
clocks.c dev squashed 2020-11-18 14:19:14 -05:00
clocks.h dev squashed 2020-11-18 14:19:14 -05:00
constant_time.c dev squashed 2020-11-18 14:19:14 -05:00
constant_time.h dev squashed 2020-11-18 14:19:14 -05:00
delay.c dev squashed 2020-11-18 14:19:14 -05:00
delay.h dev squashed 2020-11-18 14:19:14 -05:00
dispatch.c dev squashed 2020-11-18 14:19:14 -05:00
dispatch.h dev squashed 2020-11-18 14:19:14 -05:00
enable.c dev squashed 2020-11-18 14:19:14 -05:00
firmware-keys.h dev squashed 2020-11-18 14:19:14 -05:00
gpio.c dev squashed 2020-11-18 14:19:14 -05:00
gpio.h dev squashed 2020-11-18 14:19:14 -05:00
keylayout.py Switch to exactly 13 tries 2019-07-26 11:23:45 -04:00
link-script.ld Remove code to support 2.x.x firmware on Mk3 hardware 2019-09-23 14:02:09 -04:00
Makefile dev squashed 2020-11-18 14:19:14 -05:00
mathcheck.py Encrypt the secrets stored in 608a 2019-07-29 10:11:22 -04:00
misc.h dev squashed 2020-11-18 14:19:14 -05:00
mk-sigheader.py Support firmware limiting itself to specific hardware revs 2020-01-21 09:53:56 -05:00
oled.c dev squashed 2020-11-18 14:19:14 -05:00
oled.h dev squashed 2020-11-18 14:19:14 -05:00
pins.c dev squashed 2020-11-18 14:19:14 -05:00
pins.h dev squashed 2020-11-18 14:19:14 -05:00
README.md Working math for KDF used for word prefix 2019-07-17 16:13:59 -04:00
rng.c dev squashed 2020-11-18 14:19:14 -05:00
rng.h dev squashed 2020-11-18 14:19:14 -05:00
secel_config.py dev squashed 2020-11-18 14:19:14 -05:00
secel_debug.py dev squashed 2020-11-18 14:19:14 -05:00
sflash.c dev squashed 2020-11-18 14:19:14 -05:00
sflash.h dev squashed 2020-11-18 14:19:14 -05:00
sha256.c Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
sha256.h Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
sigheader.h dev squashed 2020-11-18 14:19:14 -05:00
sigheader.py dev squashed 2020-11-18 14:19:14 -05:00
startup.S Preserve SP during callgate process. Bump copyright, version 2019-02-11 13:46:28 -05:00
stm32l4xx_hal_conf.h Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
stm32l4xx_hal_firewall.c Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
stm32l4xx_hal_gpio.c Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
stm32l4xx_hal_rcc_ex.c Switch to exactly 13 tries 2019-07-26 11:23:45 -04:00
stm32l4xx_hal_rcc.c Making whole firmware public with single, signed commit. 2018-07-24 14:07:33 -04:00
stm32l4xx_hal_spi.c dev squashed 2020-11-18 14:19:14 -05:00
storage.c dev squashed 2020-11-18 14:19:14 -05:00
storage.h dev squashed 2020-11-18 14:19:14 -05:00
verify.c dev squashed 2020-11-18 14:19:14 -05:00
verify.h dev squashed 2020-11-18 14:19:14 -05:00
version.c dev squashed 2020-11-18 14:19:14 -05:00
version.h dev squashed 2020-11-18 14:19:14 -05:00

Coldcard Bootloader

We have a bootloader. It does the usual code signature checking, but also offers some security features used during runtime. Part of this is keeping some bytes secret in the long term. It can never be field upgraded, and yet plays an important part in that process.

Firewalled Code/Data

This code is linked separately from other executables, and resides in its own reserved area at the start of flash memory. That area is protected from readback using chip features: "Proprietary Code Read-Out Protection (PCROP)" aka. firewall.

A very limited amount of security-sensitive code resides here. It protects your currency, but only indirectly. It's more about making your key storage per-system unique.

Notes

  • the most helpful file here is bootloader.lss which is generated in build process

  • using OpenOCD is prefered for lower level code like this (not GDB)

  • stm32l4x.cpu arm disassemble 0x000008 10 thumb is very helpful

  • you can power cycle the board (to enter/exit DFU) and OpenOCD keeps working

  • for consistent reading of state, do this:

    • power cycle
    • "reset"
    • "halt"
  • wipe chip with:

    • stm32l4x mass_erase 0 in openocd monitor to bulk-erase whole chip
  • To clear flash with write protect on... FLASH regs at 0x40022000 base FLASH->CR = 0x40022014 FLASH->WRP1AR = 0x4002202c

    have DFU active. doesn't work from running

    halt

    expect 0x40000000, if it's 0xc0000000, can't work; reboot w/ DFU pressed, to fix

    mdw 0x40022014

    ignore warning about "power cycle" from this:

    stm32l4x unlock 0

    expect 0 from this:

    mdw 0x40022014

    disable all write-protect (bank 1, A region)

    mww 0x4002202c 0xff00ffff mww 0x40022030 0xff00ffff

    commit change

    mww 0x40022014 0x20000

    read back in OB (expect ff00ffff NOT ff0fff00)

    mdw 0x1FFF7818

    launch changes? (causes weird reset)

    mww 0x40022014 0x8000000

  • "stm32l4x.cpu mdb" is nice hexdump, much better than regular mdb

  • If you're having trouble getting the debugger to started / link up right, try in DFU mode.

  • You must always wipe flash when you change the 508/608 because no code to erase the pairing secret and can't rewrite flash.

    halt stm32l4x unlock 0 stm32l4x mass_erase 0

Credits

Reading 'pairing secret'

This is a useful command, but only works on non-production units:

dfu-util -d 0483:df11 -a 0 -s 0x08007800:256 -U pairing.bin

Resources

Todo List

  • measure OLED reset and CS pulse lengths, and SPI clk during boot w/ internal RC oscilator
  • HAL code for SPI should be removed and replaced with a few one-liners
  • GPIO code maybe removed as well?