1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-17 21:39:23 +00:00
trezor-firmware/bootloader/bootloader.c

155 lines
4.2 KiB
C
Raw Normal View History

2014-10-23 16:09:41 +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 <string.h>
#include <libopencm3/stm32/rcc.h>
#include <libopencm3/stm32/gpio.h>
#include <libopencm3/cm3/scb.h>
#include "bootloader.h"
#include "signatures.h"
2014-10-23 16:09:41 +00:00
#include "buttons.h"
#include "setup.h"
#include "usb.h"
#include "oled.h"
#include "util.h"
#include "signatures.h"
#include "layout.h"
2014-10-30 16:57:33 +00:00
#include "rng.h"
#include "timer.h"
#include "memory.h"
2014-10-23 16:09:41 +00:00
void layoutFirmwareFingerprint(const uint8_t *hash)
{
char str[4][17];
2017-04-15 14:55:01 +00:00
for (int i = 0; i < 4; i++) {
data2hex(hash + i * 8, 8, str[i]);
}
layoutDialog(&bmp_icon_question, "Abort", "Continue", "Compare fingerprints", str[0], str[1], str[2], str[3], NULL, NULL);
}
bool get_button_response(void)
{
do {
delay(100000);
buttonUpdate();
} while (!button.YesUp && !button.NoUp);
return button.YesUp;
}
2019-02-21 14:18:00 +00:00
void show_halt(const char *line1, const char *line2)
{
2019-02-21 14:18:00 +00:00
layoutDialog(&bmp_icon_error, NULL, NULL, NULL, line1, line2, NULL, "Unplug your TREZOR,", "reinstall firmware.", NULL);
shutdown();
}
static void show_unofficial_warning(const uint8_t *hash)
2014-10-23 16:09:41 +00:00
{
layoutDialog(&bmp_icon_warning, "Abort", "I'll take the risk", NULL, "WARNING!", NULL, "Unofficial firmware", "detected.", NULL, NULL);
2014-10-23 16:09:41 +00:00
bool but = get_button_response();
if (!but) { // no button was pressed -> halt
2019-02-21 14:18:00 +00:00
show_halt("Unofficial firmware", "aborted.");
2014-10-23 16:09:41 +00:00
}
layoutFirmwareFingerprint(hash);
but = get_button_response();
if (!but) { // no button was pressed -> halt
2019-02-21 14:18:00 +00:00
show_halt("Unofficial firmware", "aborted.");
}
// everything is OK, user pressed 2x Continue -> continue program
2014-10-23 16:09:41 +00:00
}
static void __attribute__((noreturn)) load_app(int signed_firmware)
2014-10-23 16:09:41 +00:00
{
// zero out SRAM
memset_reg(_ram_start, _ram_end, 0);
jump_to_firmware((const vector_table_t *) FLASH_PTR(FLASH_APP_START), signed_firmware);
2014-10-23 16:09:41 +00:00
}
static void bootloader_loop(void)
2014-10-23 16:09:41 +00:00
{
oledClear();
2014-10-23 16:09:41 +00:00
oledDrawBitmap(0, 0, &bmp_logo64);
if (firmware_present_new()) {
oledDrawStringCenter(90, 10, "TREZOR", FONT_STANDARD);
oledDrawStringCenter(90, 30, "Bootloader", FONT_STANDARD);
oledDrawStringCenter(90, 50, VERSTR(VERSION_MAJOR) "." VERSTR(VERSION_MINOR) "." VERSTR(VERSION_PATCH), FONT_STANDARD);
} else {
oledDrawStringCenter(90, 10, "Welcome!", FONT_STANDARD);
oledDrawStringCenter(90, 30, "Please visit", FONT_STANDARD);
oledDrawStringCenter(90, 50, "trezor.io/start", FONT_STANDARD);
}
2014-10-23 16:09:41 +00:00
oledRefresh();
usbLoop();
2014-10-23 16:09:41 +00:00
}
int main(void)
{
2017-06-10 18:36:58 +00:00
#ifndef APPVER
2014-10-23 16:09:41 +00:00
setup();
2017-06-10 18:36:58 +00:00
#endif
__stack_chk_guard = random32(); // this supports compiler provided unpredictable stack protection checks
2017-06-10 18:36:58 +00:00
#ifndef APPVER
2014-10-23 16:09:41 +00:00
memory_protect();
oledInit();
2017-06-10 18:36:58 +00:00
#endif
2014-10-23 16:09:41 +00:00
mpu_config_bootloader();
2017-06-10 18:36:58 +00:00
#ifndef APPVER
2014-10-23 16:09:41 +00:00
// at least one button is unpressed
uint16_t state = gpio_port_read(BTN_PORT);
int unpressed = ((state & BTN_PIN_YES) == BTN_PIN_YES || (state & BTN_PIN_NO) == BTN_PIN_NO);
2014-10-23 16:09:41 +00:00
if (firmware_present_new() && unpressed) {
2014-10-23 16:09:41 +00:00
oledClear();
oledDrawBitmap(40, 0, &bmp_logo64_empty);
oledRefresh();
2014-10-23 16:09:41 +00:00
const image_header *hdr = (const image_header *)FLASH_PTR(FLASH_FWHEADER_START);
uint8_t fingerprint[32];
int signed_firmware = signatures_new_ok(hdr, fingerprint);
if (SIG_OK != signed_firmware) {
show_unofficial_warning(fingerprint);
timer_init();
}
2014-10-23 16:09:41 +00:00
if (SIG_OK != check_firmware_hashes(hdr)) {
layoutDialog(&bmp_icon_error, NULL, NULL, NULL, "Broken firmware", "detected.", NULL, "Unplug your TREZOR,", "reinstall firmware.", NULL);
shutdown();
}
mpu_config_off();
load_app(signed_firmware);
2014-10-23 16:09:41 +00:00
}
2017-06-10 18:36:58 +00:00
#endif
2014-10-23 16:09:41 +00:00
bootloader_loop();
return 0;
}