2014-10-23 16:09:41 +00:00
/*
2017-11-05 16:46:34 +00:00
* This file is part of the TREZOR project , https : //trezor.io/
2014-10-23 16:09:41 +00:00
*
* Copyright ( C ) 2014 Pavol Rusnak < stick @ satoshilabs . com >
*
* This library is free software : you can redistribute it and / or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This library 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 Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library . If not , see < http : //www.gnu.org/licenses/>.
*/
# include <libopencm3/usb/usbd.h>
2018-03-13 23:35:59 +00:00
# include <libopencm3/usb/hid.h>
2014-10-23 16:09:41 +00:00
# include <libopencm3/stm32/flash.h>
# include <string.h>
# include "buttons.h"
# include "bootloader.h"
# include "oled.h"
# include "rng.h"
# include "usb.h"
# include "serialno.h"
# include "layout.h"
# include "util.h"
# include "signatures.h"
# include "sha2.h"
2017-07-04 17:34:25 +00:00
# include "ecdsa.h"
# include "secp256k1.h"
2018-01-18 14:21:48 +00:00
# include "memzero.h"
2014-10-23 16:09:41 +00:00
2017-08-20 12:43:21 +00:00
# define FIRMWARE_MAGIC "TRZR"
2016-05-23 17:42:25 +00:00
# define ENDPOINT_ADDRESS_IN (0x81)
# define ENDPOINT_ADDRESS_OUT (0x01)
2017-06-30 14:52:00 +00:00
static bool brand_new_firmware ;
2017-12-15 14:49:02 +00:00
static bool old_was_unsigned ;
2017-06-30 14:52:00 +00:00
2014-10-23 16:09:41 +00:00
static const struct usb_device_descriptor dev_descr = {
. bLength = USB_DT_DEVICE_SIZE ,
. bDescriptorType = USB_DT_DEVICE ,
2018-03-13 23:35:59 +00:00
. bcdUSB = 0x0200 ,
2014-10-23 16:09:41 +00:00
. bDeviceClass = 0 ,
. bDeviceSubClass = 0 ,
. bDeviceProtocol = 0 ,
. bMaxPacketSize0 = 64 ,
. idVendor = 0x534c ,
. idProduct = 0x0001 ,
2018-03-13 23:35:59 +00:00
. bcdDevice = 0x0100 ,
2014-10-23 16:09:41 +00:00
. iManufacturer = 1 ,
. iProduct = 2 ,
. iSerialNumber = 3 ,
. bNumConfigurations = 1 ,
} ;
2018-03-13 23:35:59 +00:00
static const uint8_t hid_report_descriptor [ ] = {
0x06 , 0x00 , 0xff , // USAGE_PAGE (Vendor Defined)
0x09 , 0x01 , // USAGE (1)
0xa1 , 0x01 , // COLLECTION (Application)
0x09 , 0x20 , // USAGE (Input Report Data)
0x15 , 0x00 , // LOGICAL_MINIMUM (0)
0x26 , 0xff , 0x00 , // LOGICAL_MAXIMUM (255)
0x75 , 0x08 , // REPORT_SIZE (8)
0x95 , 0x40 , // REPORT_COUNT (64)
0x81 , 0x02 , // INPUT (Data,Var,Abs)
0x09 , 0x21 , // USAGE (Output Report Data)
0x15 , 0x00 , // LOGICAL_MINIMUM (0)
0x26 , 0xff , 0x00 , // LOGICAL_MAXIMUM (255)
0x75 , 0x08 , // REPORT_SIZE (8)
0x95 , 0x40 , // REPORT_COUNT (64)
0x91 , 0x02 , // OUTPUT (Data,Var,Abs)
0xc0 // END_COLLECTION
} ;
static const struct {
struct usb_hid_descriptor hid_descriptor ;
struct {
uint8_t bReportDescriptorType ;
uint16_t wDescriptorLength ;
} __attribute__ ( ( packed ) ) hid_report ;
} __attribute__ ( ( packed ) ) hid_function = {
. hid_descriptor = {
. bLength = sizeof ( hid_function ) ,
. bDescriptorType = USB_DT_HID ,
. bcdHID = 0x0111 ,
. bCountryCode = 0 ,
. bNumDescriptors = 1 ,
} ,
. hid_report = {
. bReportDescriptorType = USB_DT_REPORT ,
. wDescriptorLength = sizeof ( hid_report_descriptor ) ,
}
} ;
static const struct usb_endpoint_descriptor hid_endpoints [ 2 ] = { {
2014-10-23 16:09:41 +00:00
. bLength = USB_DT_ENDPOINT_SIZE ,
. bDescriptorType = USB_DT_ENDPOINT ,
2016-05-23 17:42:25 +00:00
. bEndpointAddress = ENDPOINT_ADDRESS_IN ,
2014-10-23 16:09:41 +00:00
. bmAttributes = USB_ENDPOINT_ATTR_INTERRUPT ,
. wMaxPacketSize = 64 ,
2018-01-27 22:56:24 +00:00
. bInterval = 1 ,
2014-10-23 16:09:41 +00:00
} , {
. bLength = USB_DT_ENDPOINT_SIZE ,
. bDescriptorType = USB_DT_ENDPOINT ,
2016-05-23 17:42:25 +00:00
. bEndpointAddress = ENDPOINT_ADDRESS_OUT ,
2014-10-23 16:09:41 +00:00
. bmAttributes = USB_ENDPOINT_ATTR_INTERRUPT ,
. wMaxPacketSize = 64 ,
2018-01-27 22:56:24 +00:00
. bInterval = 1 ,
2014-10-23 16:09:41 +00:00
} } ;
2018-03-13 23:35:59 +00:00
static const struct usb_interface_descriptor hid_iface [ ] = { {
2014-10-23 16:09:41 +00:00
. bLength = USB_DT_INTERFACE_SIZE ,
. bDescriptorType = USB_DT_INTERFACE ,
2018-03-13 23:35:59 +00:00
. bInterfaceNumber = 0 ,
2014-10-23 16:09:41 +00:00
. bAlternateSetting = 0 ,
. bNumEndpoints = 2 ,
2018-03-13 23:35:59 +00:00
. bInterfaceClass = USB_CLASS_HID ,
2014-10-23 16:09:41 +00:00
. bInterfaceSubClass = 0 ,
. bInterfaceProtocol = 0 ,
. iInterface = 0 ,
2018-03-13 23:35:59 +00:00
. endpoint = hid_endpoints ,
. extra = & hid_function ,
. extralen = sizeof ( hid_function ) ,
2014-10-23 16:09:41 +00:00
} } ;
static const struct usb_interface ifaces [ ] = { {
. num_altsetting = 1 ,
2018-03-13 23:35:59 +00:00
. altsetting = hid_iface ,
2014-10-23 16:09:41 +00:00
} } ;
static const struct usb_config_descriptor config = {
. bLength = USB_DT_CONFIGURATION_SIZE ,
. bDescriptorType = USB_DT_CONFIGURATION ,
. wTotalLength = 0 ,
. bNumInterfaces = 1 ,
. bConfigurationValue = 1 ,
. iConfiguration = 0 ,
. bmAttributes = 0x80 ,
. bMaxPower = 0x32 ,
. interface = ifaces ,
} ;
static const char * usb_strings [ ] = {
" SatoshiLabs " ,
" TREZOR " ,
" " , // empty serial
} ;
2018-03-13 23:35:59 +00:00
static int hid_control_request ( usbd_device * dev , struct usb_setup_data * req , uint8_t * * buf , uint16_t * len , usbd_control_complete_callback * complete )
{
( void ) complete ;
( void ) dev ;
if ( ( req - > bmRequestType ! = 0x81 ) | |
( req - > bRequest ! = USB_REQ_GET_DESCRIPTOR ) | |
( req - > wValue ! = 0x2200 ) )
return 0 ;
/* Handle the HID report descriptor. */
* buf = ( uint8_t * ) hid_report_descriptor ;
* len = sizeof ( hid_report_descriptor ) ;
return 1 ;
}
2014-10-23 16:09:41 +00:00
enum {
STATE_READY ,
STATE_OPEN ,
STATE_FLASHSTART ,
STATE_FLASHING ,
STATE_CHECK ,
STATE_END ,
} ;
static uint32_t flash_pos = 0 , flash_len = 0 ;
static char flash_state = STATE_READY ;
static uint8_t flash_anim = 0 ;
static uint16_t msg_id = 0xFFFF ;
static uint32_t msg_size = 0 ;
static uint8_t meta_backup [ FLASH_META_LEN ] ;
static void send_msg_success ( usbd_device * dev )
{
2017-04-15 14:55:01 +00:00
// response: Success message (id 2), payload len 0
2016-05-23 17:42:25 +00:00
while ( usbd_ep_write_packet ( dev , ENDPOINT_ADDRESS_IN ,
2017-04-15 14:55:01 +00:00
// header
" ?## "
// msg_id
" \x00 \x02 "
// msg_size
" \x00 \x00 \x00 \x00 "
// padding
2014-10-23 16:09:41 +00:00
" \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
, 64 ) ! = 64 ) { }
}
static void send_msg_failure ( usbd_device * dev )
{
2017-04-15 14:55:01 +00:00
// response: Failure message (id 3), payload len 2
// - code = 99 (Failure_FirmwareError)
2016-05-23 17:42:25 +00:00
while ( usbd_ep_write_packet ( dev , ENDPOINT_ADDRESS_IN ,
2017-04-15 14:55:01 +00:00
// header
" ?## "
// msg_id
" \x00 \x03 "
// msg_size
" \x00 \x00 \x00 \x02 "
// data
" \x08 " " \x63 "
// padding
2014-10-23 16:09:41 +00:00
" \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
, 64 ) ! = 64 ) { }
}
static void send_msg_features ( usbd_device * dev )
{
2017-04-15 14:55:01 +00:00
// response: Features message (id 17), payload len 30
// - vendor = "bitcointrezor.com"
// - major_version = VERSION_MAJOR
// - minor_version = VERSION_MINOR
// - patch_version = VERSION_PATCH
// - bootloader_mode = True
// - firmware_present = True/False
2017-12-04 21:30:11 +00:00
// - model = "1"
2017-06-30 14:52:00 +00:00
if ( brand_new_firmware ) {
2016-09-26 11:09:09 +00:00
while ( usbd_ep_write_packet ( dev , ENDPOINT_ADDRESS_IN ,
2017-04-15 14:55:01 +00:00
// header
" ?## "
// msg_id
" \x00 \x11 "
// msg_size
" \x00 \x00 \x00 \x1e "
// data
" \x0a " " \x11 " " bitcointrezor.com "
" \x10 " VERSION_MAJOR_CHAR
" \x18 " VERSION_MINOR_CHAR
" \x20 " VERSION_PATCH_CHAR
" \x28 " " \x01 "
2017-06-30 14:52:00 +00:00
" \x90 \x01 " " \x00 "
2017-12-04 21:30:11 +00:00
" \xaa " " \x01 " " 1 "
2017-04-15 14:55:01 +00:00
// padding
2017-12-04 21:30:11 +00:00
" \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
2016-09-26 11:09:09 +00:00
, 64 ) ! = 64 ) { }
} else {
while ( usbd_ep_write_packet ( dev , ENDPOINT_ADDRESS_IN ,
2017-04-15 14:55:01 +00:00
// header
" ?## "
// msg_id
" \x00 \x11 "
// msg_size
" \x00 \x00 \x00 \x1e "
// data
" \x0a \x11 " " bitcointrezor.com "
" \x10 " VERSION_MAJOR_CHAR
" \x18 " VERSION_MINOR_CHAR
" \x20 " VERSION_PATCH_CHAR
" \x28 " " \x01 "
2017-06-30 14:52:00 +00:00
" \x90 \x01 " " \x01 "
2017-12-04 21:30:11 +00:00
" \xaa " " \x01 " " 1 "
2017-04-15 14:55:01 +00:00
// padding
2017-12-04 21:30:11 +00:00
" \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
2016-09-26 11:09:09 +00:00
, 64 ) ! = 64 ) { }
}
2014-10-23 16:09:41 +00:00
}
static void send_msg_buttonrequest_firmwarecheck ( usbd_device * dev )
{
2017-04-15 14:55:01 +00:00
// response: ButtonRequest message (id 26), payload len 2
// - code = ButtonRequest_FirmwareCheck (9)
2016-05-23 17:42:25 +00:00
while ( usbd_ep_write_packet ( dev , ENDPOINT_ADDRESS_IN ,
2017-04-15 14:55:01 +00:00
// header
" ?## "
// msg_id
" \x00 \x1a "
// msg_size
" \x00 \x00 \x00 \x02 "
// data
" \x08 " " \x09 "
// padding
2014-10-23 16:09:41 +00:00
" \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 \x00 "
, 64 ) ! = 64 ) { }
}
2017-06-29 16:11:19 +00:00
static void erase_metadata_sectors ( void )
{
flash_unlock ( ) ;
for ( int i = FLASH_META_SECTOR_FIRST ; i < = FLASH_META_SECTOR_LAST ; i + + ) {
flash_erase_sector ( i , FLASH_CR_PROGRAM_X32 ) ;
}
flash_lock ( ) ;
}
static void backup_metadata ( uint8_t * backup )
{
memcpy ( backup , ( void * ) FLASH_META_START , FLASH_META_LEN ) ;
}
static void restore_metadata ( const uint8_t * backup )
{
flash_unlock ( ) ;
for ( int i = 0 ; i < FLASH_META_LEN / 4 ; i + + ) {
const uint32_t * w = ( const uint32_t * ) ( backup + i * 4 ) ;
flash_program_word ( FLASH_META_START + i * 4 , * w ) ;
}
flash_lock ( ) ;
}
2018-03-13 23:35:59 +00:00
static void hid_rx_callback ( usbd_device * dev , uint8_t ep )
2014-10-23 16:09:41 +00:00
{
( void ) ep ;
static uint8_t buf [ 64 ] __attribute__ ( ( aligned ( 4 ) ) ) ;
static uint8_t towrite [ 4 ] __attribute__ ( ( aligned ( 4 ) ) ) ;
static int wi ;
2016-05-23 17:42:25 +00:00
if ( usbd_ep_read_packet ( dev , ENDPOINT_ADDRESS_OUT , buf , 64 ) ! = 64 ) return ;
2014-10-23 16:09:41 +00:00
if ( flash_state = = STATE_END ) {
return ;
}
if ( flash_state = = STATE_READY | | flash_state = = STATE_OPEN | | flash_state = = STATE_FLASHSTART | | flash_state = = STATE_CHECK ) {
if ( buf [ 0 ] ! = ' ? ' | | buf [ 1 ] ! = ' # ' | | buf [ 2 ] ! = ' # ' ) { // invalid start - discard
return ;
}
// struct.unpack(">HL") => msg, size
msg_id = ( buf [ 3 ] < < 8 ) + buf [ 4 ] ;
2018-03-22 22:00:29 +00:00
msg_size = ( ( uint32_t ) buf [ 5 ] < < 24 ) + ( buf [ 6 ] < < 16 ) + ( buf [ 7 ] < < 8 ) + buf [ 8 ] ;
2014-10-23 16:09:41 +00:00
}
if ( flash_state = = STATE_READY | | flash_state = = STATE_OPEN ) {
if ( msg_id = = 0x0000 ) { // Initialize message (id 0)
send_msg_features ( dev ) ;
flash_state = STATE_OPEN ;
return ;
}
2018-03-07 13:16:24 +00:00
if ( msg_id = = 0x0037 ) { // GetFeatures message (id 55)
send_msg_features ( dev ) ;
return ;
}
2014-10-23 16:09:41 +00:00
if ( msg_id = = 0x0001 ) { // Ping message (id 1)
send_msg_success ( dev ) ;
return ;
2017-06-29 15:31:23 +00:00
}
2018-03-15 02:15:08 +00:00
if ( msg_id = = 0x0005 ) { // WipeDevice message (id 5)
layoutDialog ( & bmp_icon_question , " Cancel " , " Confirm " , NULL , " Do you really want to " , " wipe the device? " , NULL , " All data will be lost. " , NULL , NULL ) ;
do {
delay ( 100000 ) ;
buttonUpdate ( ) ;
} while ( ! button . YesUp & & ! button . NoUp ) ;
if ( button . YesUp ) {
flash_wait_for_last_operation ( ) ;
flash_clear_status_flags ( ) ;
flash_unlock ( ) ;
// erase metadata area
for ( int i = FLASH_META_SECTOR_FIRST ; i < = FLASH_META_SECTOR_LAST ; i + + ) {
layoutProgress ( " ERASING ... Please wait " , 1000 * ( i - FLASH_META_SECTOR_FIRST ) / ( FLASH_CODE_SECTOR_LAST - FLASH_META_SECTOR_FIRST ) ) ;
flash_erase_sector ( i , FLASH_CR_PROGRAM_X32 ) ;
}
// erase code area
for ( int i = FLASH_CODE_SECTOR_FIRST ; i < = FLASH_CODE_SECTOR_LAST ; i + + ) {
layoutProgress ( " ERASING ... Please wait " , 1000 * ( i - FLASH_META_SECTOR_FIRST ) / ( FLASH_CODE_SECTOR_LAST - FLASH_META_SECTOR_FIRST ) ) ;
flash_erase_sector ( i , FLASH_CR_PROGRAM_X32 ) ;
}
flash_wait_for_last_operation ( ) ;
flash_lock ( ) ;
flash_state = STATE_END ;
layoutDialog ( & bmp_icon_ok , NULL , NULL , NULL , " Device " , " successfully wiped. " , NULL , " You may now " , " unplug your TREZOR. " , NULL ) ;
send_msg_success ( dev ) ;
} else {
flash_state = STATE_END ;
layoutDialog ( & bmp_icon_warning , NULL , NULL , NULL , " Device wipe " , " aborted. " , NULL , " You may now " , " unplug your TREZOR. " , NULL ) ;
send_msg_failure ( dev ) ;
}
return ;
}
2017-06-29 15:31:23 +00:00
if ( msg_id = = 0x0020 ) { // SelfTest message (id 32)
2017-07-04 17:34:25 +00:00
2017-07-10 17:10:25 +00:00
// USB TEST
2017-07-19 09:39:04 +00:00
layoutProgress ( " TESTING USB ... " , 0 ) ;
2017-07-10 17:10:25 +00:00
bool status_usb = ( buf [ 9 ] = = 0x0a ) & & ( buf [ 10 ] = = 53 ) & & ( 0 = = memcmp ( buf + 11 , " \x00 \xFF \x55 \xAA \x66 \x99 \x33 \xCC " " ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789! " " \x00 \xFF \x55 \xAA \x66 \x99 \x33 \xCC " , 53 ) ) ;
2017-07-18 22:08:13 +00:00
// RNG TEST
2017-07-19 09:39:04 +00:00
layoutProgress ( " TESTING RNG ... " , 250 ) ;
2017-07-18 22:08:13 +00:00
uint32_t cnt [ 256 ] ;
memset ( cnt , 0 , sizeof ( cnt ) ) ;
2017-07-19 09:39:04 +00:00
for ( int i = 0 ; i < ( 256 * 2000 ) ; i + + ) {
uint32_t r = random32 ( ) ;
cnt [ r & 0xFF ] + + ;
cnt [ ( r > > 8 ) & 0xFF ] + + ;
cnt [ ( r > > 16 ) & 0xFF ] + + ;
cnt [ ( r > > 24 ) & 0xFF ] + + ;
2017-07-18 22:08:13 +00:00
}
bool status_rng = true ;
for ( int i = 0 ; i < 256 ; i + + ) {
2017-07-19 09:39:04 +00:00
status_rng = status_rng & & ( cnt [ i ] > = 7600 ) & & ( cnt [ i ] < = 8400 ) ;
2017-07-18 22:08:13 +00:00
}
2017-07-04 17:34:25 +00:00
// CPU TEST
2017-07-19 09:39:04 +00:00
layoutProgress ( " TESTING CPU ... " , 500 ) ;
// privkey : e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
// pubkey : 04a34b99f22c790c4e36b2b3c2c35a36db06226e41c692fc82b8b56ac1c540c5bd
// 5b8dec5235a0fa8722476c7709c02559e3aa73aa03918ba2d492eea75abea235
// digest : c84a4cc264100070c8be2acf4072efaadaedfef3d6209c0fe26387e6b1262bbf
// sig: : f7869c679bbed1817052affd0264ccc6486795f6d06d0c187651b8f3863670c8
// 2ccf89be32a53eb65ea7c007859783d46717986fead0833ec60c5729cdc4a9ee
bool status_cpu = ( 0 = = ecdsa_verify_digest ( & secp256k1 ,
( const uint8_t * ) " \x04 \xa3 \x4b \x99 \xf2 \x2c \x79 \x0c \x4e \x36 \xb2 \xb3 \xc2 \xc3 \x5a \x36 \xdb \x06 \x22 \x6e \x41 \xc6 \x92 \xfc \x82 \xb8 \xb5 \x6a \xc1 \xc5 \x40 \xc5 \xbd \x5b \x8d \xec \x52 \x35 \xa0 \xfa \x87 \x22 \x47 \x6c \x77 \x09 \xc0 \x25 \x59 \xe3 \xaa \x73 \xaa \x03 \x91 \x8b \xa2 \xd4 \x92 \xee \xa7 \x5a \xbe \xa2 \x35 " ,
( const uint8_t * ) " \xf7 \x86 \x9c \x67 \x9b \xbe \xd1 \x81 \x70 \x52 \xaf \xfd \x02 \x64 \xcc \xc6 \x48 \x67 \x95 \xf6 \xd0 \x6d \x0c \x18 \x76 \x51 \xb8 \xf3 \x86 \x36 \x70 \xc8 \x2c \xcf \x89 \xbe \x32 \xa5 \x3e \xb6 \x5e \xa7 \xc0 \x07 \x85 \x97 \x83 \xd4 \x67 \x17 \x98 \x6f \xea \xd0 \x83 \x3e \xc6 \x0c \x57 \x29 \xcd \xc4 \xa9 \xee " ,
( const uint8_t * ) " \xc8 \x4a \x4c \xc2 \x64 \x10 \x00 \x70 \xc8 \xbe \x2a \xcf \x40 \x72 \xef \xaa \xda \xed \xfe \xf3 \xd6 \x20 \x9c \x0f \xe2 \x63 \x87 \xe6 \xb1 \x26 \x2b \xbf " ) ) ;
2017-07-04 17:34:25 +00:00
// FLASH TEST
2017-07-19 09:39:04 +00:00
layoutProgress ( " TESTING FLASH ... " , 750 ) ;
2017-07-03 17:18:34 +00:00
2017-06-29 16:11:19 +00:00
// backup metadata
backup_metadata ( meta_backup ) ;
2017-06-29 16:36:19 +00:00
2017-07-19 09:39:04 +00:00
// write test pattern
erase_metadata_sectors ( ) ;
flash_unlock ( ) ;
for ( int i = 0 ; i < FLASH_META_LEN / 4 ; i + + ) {
flash_program_word ( FLASH_META_START + i * 4 , 0x3C695A0F ) ;
2017-06-29 16:36:19 +00:00
}
2017-07-19 09:39:04 +00:00
flash_lock ( ) ;
// compute hash of written test pattern
uint8_t hash [ 32 ] ;
sha256_Raw ( ( unsigned char * ) FLASH_META_START , FLASH_META_LEN , hash ) ;
2017-06-29 16:36:19 +00:00
2017-07-24 12:39:15 +00:00
// restore metadata from backup
2017-06-29 16:36:19 +00:00
erase_metadata_sectors ( ) ;
2017-06-29 16:11:19 +00:00
restore_metadata ( meta_backup ) ;
2018-01-18 14:21:48 +00:00
memzero ( meta_backup , sizeof ( meta_backup ) ) ;
2017-06-29 16:36:19 +00:00
2017-07-19 09:39:04 +00:00
// compare against known hash computed via the following Python3 script:
// hashlib.sha256(binascii.unhexlify('0F5A693C' * 8192)).hexdigest()
bool status_flash = ( 0 = = memcmp ( hash , " \xa6 \xc2 \x25 \xa4 \x76 \xa1 \xde \x76 \x09 \xe0 \xb0 \x07 \xf8 \xe2 \x5a \xec \x1d \x75 \x8d \x5c \x36 \xc8 \x4a \x6b \x75 \x4e \xd5 \x3d \xe6 \x99 \x97 \x64 " , 32 ) ) ;
2017-07-04 17:34:25 +00:00
2017-07-18 22:08:13 +00:00
bool status_all = status_usb & & status_rng & & status_cpu & & status_flash ;
2017-07-04 17:34:25 +00:00
if ( status_all ) {
2017-06-29 16:36:19 +00:00
send_msg_success ( dev ) ;
} else {
send_msg_failure ( dev ) ;
}
2017-07-04 17:34:25 +00:00
layoutDialog ( status_all ? & bmp_icon_info : & bmp_icon_error ,
NULL , NULL , NULL ,
2017-07-10 17:10:25 +00:00
status_usb ? " Test USB ... OK " : " Test USB ... Failed " ,
2017-07-18 22:08:13 +00:00
status_rng ? " Test RNG ... OK " : " Test RNG ... Failed " ,
2017-07-04 17:34:25 +00:00
status_cpu ? " Test CPU ... OK " : " Test CPU ... Failed " ,
status_flash ? " Test FLASH ... OK " : " Test FLASH ... Failed " ,
NULL ,
NULL
) ;
2017-06-29 15:31:23 +00:00
return ;
2014-10-23 16:09:41 +00:00
}
}
if ( flash_state = = STATE_OPEN ) {
if ( msg_id = = 0x0006 ) { // FirmwareErase message (id 6)
2017-06-30 14:52:00 +00:00
if ( ! brand_new_firmware ) {
2017-04-16 17:28:25 +00:00
layoutDialog ( & bmp_icon_question , " Abort " , " Continue " , NULL , " Install new " , " firmware? " , NULL , " Never do this without " , " your recovery card! " , NULL ) ;
do {
delay ( 100000 ) ;
buttonUpdate ( ) ;
} while ( ! button . YesUp & & ! button . NoUp ) ;
}
2017-06-30 14:52:00 +00:00
if ( brand_new_firmware | | button . YesUp ) {
2017-12-15 14:49:02 +00:00
// check whether current firmware is signed
2018-03-15 03:15:41 +00:00
if ( ! brand_new_firmware & & SIG_OK = = signatures_ok ( NULL ) ) {
2017-12-15 14:49:02 +00:00
old_was_unsigned = false ;
// backup metadata
backup_metadata ( meta_backup ) ;
} else {
old_was_unsigned = true ;
}
2017-09-04 15:09:34 +00:00
flash_wait_for_last_operation ( ) ;
2017-08-23 15:21:44 +00:00
flash_clear_status_flags ( ) ;
2014-10-23 16:09:41 +00:00
flash_unlock ( ) ;
// erase metadata area
2017-06-29 16:11:19 +00:00
for ( int i = FLASH_META_SECTOR_FIRST ; i < = FLASH_META_SECTOR_LAST ; i + + ) {
layoutProgress ( " ERASING ... Please wait " , 1000 * ( i - FLASH_META_SECTOR_FIRST ) / ( FLASH_CODE_SECTOR_LAST - FLASH_META_SECTOR_FIRST ) ) ;
2014-10-23 16:09:41 +00:00
flash_erase_sector ( i , FLASH_CR_PROGRAM_X32 ) ;
}
// erase code area
2017-06-29 16:11:19 +00:00
for ( int i = FLASH_CODE_SECTOR_FIRST ; i < = FLASH_CODE_SECTOR_LAST ; i + + ) {
layoutProgress ( " ERASING ... Please wait " , 1000 * ( i - FLASH_META_SECTOR_FIRST ) / ( FLASH_CODE_SECTOR_LAST - FLASH_META_SECTOR_FIRST ) ) ;
2014-10-23 16:09:41 +00:00
flash_erase_sector ( i , FLASH_CR_PROGRAM_X32 ) ;
}
2016-05-24 22:41:13 +00:00
layoutProgress ( " INSTALLING ... Please wait " , 0 ) ;
2017-09-04 15:09:34 +00:00
flash_wait_for_last_operation ( ) ;
2014-10-23 16:09:41 +00:00
flash_lock ( ) ;
2017-08-23 15:21:44 +00:00
// check that metadata was succesfully erased
// flash status register should show now error and
// the config block should contain only \xff.
uint8_t hash [ 32 ] ;
sha256_Raw ( ( unsigned char * ) FLASH_META_START , FLASH_META_LEN , hash ) ;
if ( ( FLASH_SR & ( FLASH_SR_PGAERR | FLASH_SR_PGPERR | FLASH_SR_PGSERR | FLASH_SR_WRPERR ) ) ! = 0
| | memcmp ( hash , " \x2d \x86 \x4c \x0b \x78 \x9a \x43 \x21 \x4e \xee \x85 \x24 \xd3 \x18 \x20 \x75 \x12 \x5e \x5c \xa2 \xcd \x52 \x7f \x35 \x82 \xec \x87 \xff \xd9 \x40 \x76 \xbc " , 32 ) ! = 0 ) {
send_msg_failure ( dev ) ;
flash_state = STATE_END ;
layoutDialog ( & bmp_icon_error , NULL , NULL , NULL , " Error installing " , " firmware. " , NULL , " Unplug your TREZOR " , " and try again. " , NULL ) ;
return ;
}
2014-10-23 16:09:41 +00:00
send_msg_success ( dev ) ;
flash_state = STATE_FLASHSTART ;
return ;
}
send_msg_failure ( dev ) ;
flash_state = STATE_END ;
2016-06-08 15:55:25 +00:00
layoutDialog ( & bmp_icon_warning , NULL , NULL , NULL , " Firmware installation " , " aborted. " , NULL , " You may now " , " unplug your TREZOR. " , NULL ) ;
2014-10-23 16:09:41 +00:00
return ;
}
return ;
}
if ( flash_state = = STATE_FLASHSTART ) {
if ( msg_id = = 0x0007 ) { // FirmwareUpload message (id 7)
if ( buf [ 9 ] ! = 0x0a ) { // invalid contents
send_msg_failure ( dev ) ;
flash_state = STATE_END ;
2016-06-08 15:55:25 +00:00
layoutDialog ( & bmp_icon_error , NULL , NULL , NULL , " Error installing " , " firmware. " , NULL , " Unplug your TREZOR " , " and try again. " , NULL ) ;
2014-10-23 16:09:41 +00:00
return ;
}
// read payload length
2017-06-29 16:11:19 +00:00
uint8_t * p = buf + 10 ;
2014-10-23 16:09:41 +00:00
flash_len = readprotobufint ( & p ) ;
if ( flash_len > FLASH_TOTAL_SIZE + FLASH_META_DESC_LEN - ( FLASH_APP_START - FLASH_ORIGIN ) ) { // firmware is too big
send_msg_failure ( dev ) ;
flash_state = STATE_END ;
2017-01-10 14:08:08 +00:00
layoutDialog ( & bmp_icon_error , NULL , NULL , NULL , " Firmware is too big. " , NULL , " Get official firmware " , " from trezor.io/start " , NULL , NULL ) ;
2014-10-23 16:09:41 +00:00
return ;
}
2017-08-20 12:43:21 +00:00
// check firmware magic
if ( memcmp ( p , FIRMWARE_MAGIC , 4 ) ! = 0 ) {
send_msg_failure ( dev ) ;
flash_state = STATE_END ;
layoutDialog ( & bmp_icon_error , NULL , NULL , NULL , " Wrong firmware header. " , NULL , " Get official firmware " , " from trezor.io/start " , NULL , NULL ) ;
return ;
}
2014-10-23 16:09:41 +00:00
flash_state = STATE_FLASHING ;
2017-08-20 12:43:21 +00:00
p + = 4 ; // Don't flash firmware header yet.
flash_pos = 4 ;
2014-10-23 16:09:41 +00:00
wi = 0 ;
flash_unlock ( ) ;
while ( p < buf + 64 ) {
towrite [ wi ] = * p ;
wi + + ;
if ( wi = = 4 ) {
2017-06-29 16:11:19 +00:00
const uint32_t * w = ( uint32_t * ) towrite ;
2014-10-23 16:09:41 +00:00
flash_program_word ( FLASH_META_START + flash_pos , * w ) ;
flash_pos + = 4 ;
wi = 0 ;
}
p + + ;
}
flash_lock ( ) ;
return ;
}
return ;
}
if ( flash_state = = STATE_FLASHING ) {
if ( buf [ 0 ] ! = ' ? ' ) { // invalid contents
send_msg_failure ( dev ) ;
flash_state = STATE_END ;
2016-06-08 15:55:25 +00:00
layoutDialog ( & bmp_icon_error , NULL , NULL , NULL , " Error installing " , " firmware. " , NULL , " Unplug your TREZOR " , " and try again. " , NULL ) ;
2014-10-23 16:09:41 +00:00
return ;
}
2017-06-29 16:11:19 +00:00
const uint8_t * p = buf + 1 ;
2016-05-24 22:41:13 +00:00
if ( flash_anim % 32 = = 4 ) {
2014-12-21 17:58:56 +00:00
layoutProgress ( " INSTALLING ... Please wait " , 1000 * flash_pos / flash_len ) ;
}
2014-10-23 16:09:41 +00:00
flash_anim + + ;
flash_unlock ( ) ;
while ( p < buf + 64 & & flash_pos < flash_len ) {
towrite [ wi ] = * p ;
wi + + ;
if ( wi = = 4 ) {
2017-06-29 16:11:19 +00:00
const uint32_t * w = ( const uint32_t * ) towrite ;
2014-10-23 16:09:41 +00:00
if ( flash_pos < FLASH_META_DESC_LEN ) {
flash_program_word ( FLASH_META_START + flash_pos , * w ) ; // the first 256 bytes of firmware is metadata descriptor
} else {
flash_program_word ( FLASH_APP_START + ( flash_pos - FLASH_META_DESC_LEN ) , * w ) ; // the rest is code
}
flash_pos + = 4 ;
wi = 0 ;
}
p + + ;
}
flash_lock ( ) ;
// flashing done
if ( flash_pos = = flash_len ) {
flash_state = STATE_CHECK ;
2017-07-25 15:24:40 +00:00
if ( ! brand_new_firmware ) {
send_msg_buttonrequest_firmwarecheck ( dev ) ;
return ;
}
} else {
return ;
2014-10-23 16:09:41 +00:00
}
}
if ( flash_state = = STATE_CHECK ) {
2017-06-30 14:52:00 +00:00
if ( ! brand_new_firmware ) {
2017-07-25 15:24:40 +00:00
if ( msg_id ! = 0x001B ) { // ButtonAck message (id 27)
return ;
}
uint8_t hash [ 32 ] ;
sha256_Raw ( ( unsigned char * ) FLASH_APP_START , flash_len - FLASH_META_DESC_LEN , hash ) ;
2017-06-30 14:52:00 +00:00
layoutFirmwareHash ( hash ) ;
do {
delay ( 100000 ) ;
buttonUpdate ( ) ;
} while ( ! button . YesUp & & ! button . NoUp ) ;
}
bool hash_check_ok = brand_new_firmware | | button . YesUp ;
2014-10-23 16:09:41 +00:00
2014-12-21 17:58:56 +00:00
layoutProgress ( " INSTALLING ... Please wait " , 1000 ) ;
2014-10-23 16:09:41 +00:00
uint8_t flags = * ( ( uint8_t * ) FLASH_META_FLAGS ) ;
2017-12-15 14:49:02 +00:00
// wipe storage if:
2018-03-15 03:15:41 +00:00
// 0) there was no firmware
2017-12-15 14:49:02 +00:00
// 1) old firmware was unsigned
// 2) firmware restore flag isn't set
// 3) signatures are not ok
2018-03-15 03:15:41 +00:00
if ( brand_new_firmware | | old_was_unsigned | | ( flags & 0x01 ) = = 0 | | SIG_OK ! = signatures_ok ( NULL ) ) {
2018-01-18 14:21:48 +00:00
memzero ( meta_backup , sizeof ( meta_backup ) ) ;
2017-08-20 12:43:21 +00:00
}
// copy new firmware header
memcpy ( meta_backup , ( void * ) FLASH_META_START , FLASH_META_DESC_LEN ) ;
// write "TRZR" in header only when hash was confirmed
if ( hash_check_ok ) {
memcpy ( meta_backup , FIRMWARE_MAGIC , 4 ) ;
2014-10-23 16:09:41 +00:00
} else {
2018-01-18 14:21:48 +00:00
memzero ( meta_backup , 4 ) ;
2014-10-23 16:09:41 +00:00
}
2017-08-20 12:43:21 +00:00
// no need to erase, because we are not changing any already flashed byte.
restore_metadata ( meta_backup ) ;
2018-01-18 14:21:48 +00:00
memzero ( meta_backup , sizeof ( meta_backup ) ) ;
2017-08-20 12:43:21 +00:00
2014-10-23 16:09:41 +00:00
flash_state = STATE_END ;
if ( hash_check_ok ) {
2016-06-08 15:55:25 +00:00
layoutDialog ( & bmp_icon_ok , NULL , NULL , NULL , " New firmware " , " successfully installed. " , NULL , " You may now " , " unplug your TREZOR. " , NULL ) ;
2014-10-23 16:09:41 +00:00
send_msg_success ( dev ) ;
} else {
2016-06-08 15:55:25 +00:00
layoutDialog ( & bmp_icon_warning , NULL , NULL , NULL , " Firmware installation " , " aborted. " , NULL , " You need to repeat " , " the procedure with " , " the correct firmware. " ) ;
2014-10-23 16:09:41 +00:00
send_msg_failure ( dev ) ;
}
return ;
}
}
2018-03-13 23:35:59 +00:00
static void hid_set_config ( usbd_device * dev , uint16_t wValue )
2014-10-23 16:09:41 +00:00
{
( void ) wValue ;
2018-03-13 23:35:59 +00:00
usbd_ep_setup ( dev , ENDPOINT_ADDRESS_IN , USB_ENDPOINT_ATTR_INTERRUPT , 64 , 0 ) ;
usbd_ep_setup ( dev , ENDPOINT_ADDRESS_OUT , USB_ENDPOINT_ATTR_INTERRUPT , 64 , hid_rx_callback ) ;
usbd_register_control_callback (
dev ,
USB_REQ_TYPE_STANDARD | USB_REQ_TYPE_INTERFACE ,
USB_REQ_TYPE_TYPE | USB_REQ_TYPE_RECIPIENT ,
hid_control_request
) ;
2014-10-23 16:09:41 +00:00
}
static usbd_device * usbd_dev ;
2018-03-13 23:35:59 +00:00
static uint8_t usbd_control_buffer [ 128 ] ;
2014-10-23 16:09:41 +00:00
2016-10-06 13:02:44 +00:00
void checkButtons ( void )
{
2016-12-06 15:09:09 +00:00
static bool btn_left = false , btn_right = false , btn_final = false ;
if ( btn_final ) {
return ;
}
2016-10-06 13:02:44 +00:00
uint16_t state = gpio_port_read ( BTN_PORT ) ;
if ( ( state & ( BTN_PIN_YES | BTN_PIN_NO ) ) ! = ( BTN_PIN_YES | BTN_PIN_NO ) ) {
if ( ( state & BTN_PIN_NO ) ! = BTN_PIN_NO ) {
2016-12-06 15:09:09 +00:00
btn_left = true ;
2016-10-06 13:02:44 +00:00
}
if ( ( state & BTN_PIN_YES ) ! = BTN_PIN_YES ) {
2016-12-06 15:09:09 +00:00
btn_right = true ;
2016-10-06 13:02:44 +00:00
}
2016-12-06 15:09:09 +00:00
}
if ( btn_left ) {
oledBox ( 0 , 0 , 3 , 3 , true ) ;
}
if ( btn_right ) {
oledBox ( OLED_WIDTH - 4 , 0 , OLED_WIDTH - 1 , 3 , true ) ;
}
if ( btn_left | | btn_right ) {
2016-10-06 13:02:44 +00:00
oledRefresh ( ) ;
}
2016-12-06 15:09:09 +00:00
if ( btn_left & & btn_right ) {
btn_final = true ;
}
2016-10-06 13:02:44 +00:00
}
2017-06-30 14:52:00 +00:00
void usbLoop ( bool firmware_present )
2014-10-23 16:09:41 +00:00
{
2017-06-30 14:52:00 +00:00
brand_new_firmware = ! firmware_present ;
2018-03-13 23:35:59 +00:00
usbd_dev = usbd_init ( & otgfs_usb_driver , & dev_descr , & config , usb_strings , 3 , usbd_control_buffer , sizeof ( usbd_control_buffer ) ) ;
usbd_register_set_config_callback ( usbd_dev , hid_set_config ) ;
2014-10-23 16:09:41 +00:00
for ( ; ; ) {
usbd_poll ( usbd_dev ) ;
2017-06-30 14:52:00 +00:00
if ( brand_new_firmware & & ( flash_state = = STATE_READY | | flash_state = = STATE_OPEN ) ) {
2016-10-06 13:02:44 +00:00
checkButtons ( ) ;
}
2014-10-23 16:09:41 +00:00
}
}