/* Copyright 2018 Conor Patrick Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include "cbor.h" #include "device.h" #include "ctaphid.h" //#include "bsp.h" #include "util.h" #include "log.h" #include "ctap.h" #include "app.h" #include "memory_layout.h" #include "stm32l4xx_ll_rcc.h" #include "stm32l4xx.h" uint8_t REBOOT_FLAG = 0; void BOOT_boot(void) { typedef void (*pFunction)(void); uint32_t *bootAddress = (uint32_t *)(APPLICATION_START_ADDR); /* Set new vector table */ SCB->VTOR = APPLICATION_START_ADDR; /* Read new SP and PC from vector table */ __set_MSP(bootAddress[0]); ((pFunction)bootAddress[1])(); } int main(int argc, char * argv[]) { uint8_t hidmsg[64]; uint32_t t1 = 0; uint32_t stboot_time = 0; uint32_t boot = 1; set_logging_mask( /*0*/ TAG_GEN| // TAG_MC | // TAG_GA | // TAG_WALLET | TAG_STOR | // TAG_CP | // TAG_CTAP| // TAG_HID| /*TAG_U2F|*/ // TAG_PARSE | // TAG_TIME| // TAG_DUMP| // TAG_DUMP2| TAG_BOOT| TAG_EXT| TAG_GREEN| TAG_RED| TAG_ERR ); device_init(); printf1(TAG_GEN,"init device\n"); t1 = millis(); while(device_is_button_pressed()) { if ((millis() - t1) > 2000) { boot = 0; break; } } #ifdef SOLO_HACKER if (!is_bootloader_disabled()) { stboot_time = millis(); if ( RCC->CSR & (1<<29) )// check if there was independent watchdog reset { RCC->CSR |= (1<<23); // clear reset flags goto start_bootloader; } } #endif if (is_authorized_to_boot() && (boot || is_bootloader_disabled())) { BOOT_boot(); } else { printf1(TAG_RED,"Not authorized to boot (%08x == %08lx)\r\n", AUTH_WORD_ADDR, *(uint32_t*)AUTH_WORD_ADDR); } start_bootloader: usbhid_init(); printf1(TAG_GEN,"init usb\n"); ctaphid_init(); printf1(TAG_GEN,"init ctaphid\n"); memset(hidmsg,0,sizeof(hidmsg)); printf1(TAG_GEN,"recv'ing hid msg \n"); while(1) { if (millis() - t1 > HEARTBEAT_PERIOD) { bootloader_heartbeat(); t1 = millis(); } device_manage(); if (usbhid_recv(hidmsg) > 0) { ctaphid_handle_packet(hidmsg); memset(hidmsg, 0, sizeof(hidmsg)); } else { } ctaphid_check_timeouts(); if (REBOOT_FLAG) { delay(250); device_reboot(); } #ifdef SOLO_HACKER // Boot ST bootloader if button is held for 2s if (!device_is_button_pressed()) { stboot_time = millis(); } if ((millis() - stboot_time) > 5000) { boot_st_bootloader(); } #endif } // Should never get here usbhid_close(); printf1(TAG_GREEN, "done\n"); return 0; }