mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 15:38:11 +00:00
Merge pull request #845 from trezor/prusnak/webusb-popup
Don't show WebUSB popup in firmware, in bootloader only if no firmware present
This commit is contained in:
commit
581e46ff87
@ -50,8 +50,8 @@ static const uint8_t * const BOOTLOADER_KEYS[] = {
|
||||
|
||||
#define USB_IFACE_NUM 0
|
||||
|
||||
static void usb_init_all(void) {
|
||||
static const usb_dev_info_t dev_info = {
|
||||
static void usb_init_all(secbool usb21_landing) {
|
||||
usb_dev_info_t dev_info = {
|
||||
.device_class = 0x00,
|
||||
.device_subclass = 0x00,
|
||||
.device_protocol = 0x00,
|
||||
@ -63,7 +63,7 @@ static void usb_init_all(void) {
|
||||
.serial_number = "000000000000000000000000",
|
||||
.interface = "TREZOR Interface",
|
||||
.usb21_enabled = sectrue,
|
||||
.usb21_landing = sectrue,
|
||||
.usb21_landing = usb21_landing,
|
||||
};
|
||||
|
||||
static uint8_t rx_buffer[USB_PACKET_SIZE];
|
||||
@ -88,7 +88,9 @@ static void usb_init_all(void) {
|
||||
|
||||
static secbool bootloader_usb_loop(const vendor_header *const vhdr,
|
||||
const image_header *const hdr) {
|
||||
usb_init_all();
|
||||
// if both are NULL, we don't have a firmware installed
|
||||
// let's show a webusb landing page in this case
|
||||
usb_init_all((vhdr == NULL && hdr == NULL) ? sectrue : secfalse);
|
||||
|
||||
uint8_t buf[USB_PACKET_SIZE];
|
||||
|
||||
|
@ -59,6 +59,7 @@ bus = io.USB(
|
||||
product="TREZOR",
|
||||
interface="TREZOR Interface",
|
||||
serial_number=get_device_id(),
|
||||
usb21_landing=False,
|
||||
)
|
||||
bus.add(iface_wire)
|
||||
if __debug__:
|
||||
|
@ -18,6 +18,7 @@ usb = io.USB(
|
||||
manufacturer="SatoshiLabs",
|
||||
product="TREZOR",
|
||||
serial_number="000000000000000000000000",
|
||||
usb21_landing=False,
|
||||
)
|
||||
|
||||
usb.add(usb_vcp)
|
||||
|
@ -440,23 +440,38 @@ static void set_config(usbd_device *dev, uint16_t wValue) {
|
||||
static usbd_device *usbd_dev;
|
||||
static uint8_t usbd_control_buffer[256] __attribute__((aligned(2)));
|
||||
|
||||
static const struct usb_device_capability_descriptor *capabilities[] = {
|
||||
static const struct usb_device_capability_descriptor *capabilities_landing[] = {
|
||||
(const struct usb_device_capability_descriptor
|
||||
*)&webusb_platform_capability_descriptor,
|
||||
*)&webusb_platform_capability_descriptor_landing,
|
||||
};
|
||||
|
||||
static const struct usb_bos_descriptor bos_descriptor = {
|
||||
static const struct usb_device_capability_descriptor
|
||||
*capabilities_no_landing[] = {
|
||||
(const struct usb_device_capability_descriptor
|
||||
*)&webusb_platform_capability_descriptor_no_landing,
|
||||
};
|
||||
|
||||
static const struct usb_bos_descriptor bos_descriptor_landing = {
|
||||
.bLength = USB_DT_BOS_SIZE,
|
||||
.bDescriptorType = USB_DT_BOS,
|
||||
.bNumDeviceCaps = sizeof(capabilities) / sizeof(capabilities[0]),
|
||||
.capabilities = capabilities};
|
||||
.bNumDeviceCaps =
|
||||
sizeof(capabilities_landing) / sizeof(capabilities_landing[0]),
|
||||
.capabilities = capabilities_landing};
|
||||
|
||||
static void usbInit(void) {
|
||||
static const struct usb_bos_descriptor bos_descriptor_no_landing = {
|
||||
.bLength = USB_DT_BOS_SIZE,
|
||||
.bDescriptorType = USB_DT_BOS,
|
||||
.bNumDeviceCaps =
|
||||
sizeof(capabilities_no_landing) / sizeof(capabilities_no_landing[0]),
|
||||
.capabilities = capabilities_no_landing};
|
||||
|
||||
static void usbInit(bool firmware_present) {
|
||||
usbd_dev = usbd_init(&otgfs_usb_driver, &dev_descr, &config, usb_strings,
|
||||
sizeof(usb_strings) / sizeof(const char *),
|
||||
usbd_control_buffer, sizeof(usbd_control_buffer));
|
||||
usbd_register_set_config_callback(usbd_dev, set_config);
|
||||
usb21_setup(usbd_dev, &bos_descriptor);
|
||||
usb21_setup(usbd_dev, firmware_present ? &bos_descriptor_no_landing
|
||||
: &bos_descriptor_landing);
|
||||
webusb_setup(usbd_dev, "trezor.io/start");
|
||||
winusb_setup(usbd_dev, USB_INTERFACE_INDEX_MAIN);
|
||||
}
|
||||
@ -491,7 +506,7 @@ static void checkButtons(void) {
|
||||
|
||||
void usbLoop(void) {
|
||||
bool firmware_present = firmware_present_new();
|
||||
usbInit();
|
||||
usbInit(firmware_present);
|
||||
for (;;) {
|
||||
usbd_poll(usbd_dev);
|
||||
if (!firmware_present &&
|
||||
|
@ -373,7 +373,7 @@ static uint8_t usbd_control_buffer[256] __attribute__((aligned(2)));
|
||||
|
||||
static const struct usb_device_capability_descriptor *capabilities[] = {
|
||||
(const struct usb_device_capability_descriptor
|
||||
*)&webusb_platform_capability_descriptor,
|
||||
*)&webusb_platform_capability_descriptor_no_landing,
|
||||
};
|
||||
|
||||
static const struct usb_bos_descriptor bos_descriptor = {
|
||||
|
@ -23,15 +23,27 @@
|
||||
#include "util.h"
|
||||
#include "webusb.h"
|
||||
|
||||
const struct webusb_platform_descriptor webusb_platform_capability_descriptor =
|
||||
{.bLength = WEBUSB_PLATFORM_DESCRIPTOR_SIZE,
|
||||
.bDescriptorType = USB_DT_DEVICE_CAPABILITY,
|
||||
.bDevCapabilityType = USB_DC_PLATFORM,
|
||||
.bReserved = 0,
|
||||
.platformCapabilityUUID = WEBUSB_UUID,
|
||||
.bcdVersion = 0x0100,
|
||||
.bVendorCode = WEBUSB_VENDOR_CODE,
|
||||
.iLandingPage = 1};
|
||||
const struct webusb_platform_descriptor
|
||||
webusb_platform_capability_descriptor_landing = {
|
||||
.bLength = WEBUSB_PLATFORM_DESCRIPTOR_SIZE,
|
||||
.bDescriptorType = USB_DT_DEVICE_CAPABILITY,
|
||||
.bDevCapabilityType = USB_DC_PLATFORM,
|
||||
.bReserved = 0,
|
||||
.platformCapabilityUUID = WEBUSB_UUID,
|
||||
.bcdVersion = 0x0100,
|
||||
.bVendorCode = WEBUSB_VENDOR_CODE,
|
||||
.iLandingPage = 1};
|
||||
|
||||
const struct webusb_platform_descriptor
|
||||
webusb_platform_capability_descriptor_no_landing = {
|
||||
.bLength = WEBUSB_PLATFORM_DESCRIPTOR_SIZE,
|
||||
.bDescriptorType = USB_DT_DEVICE_CAPABILITY,
|
||||
.bDevCapabilityType = USB_DC_PLATFORM,
|
||||
.bReserved = 0,
|
||||
.platformCapabilityUUID = WEBUSB_UUID,
|
||||
.bcdVersion = 0x0100,
|
||||
.bVendorCode = WEBUSB_VENDOR_CODE,
|
||||
.iLandingPage = 0};
|
||||
|
||||
static const char* webusb_https_url;
|
||||
|
||||
|
@ -26,7 +26,9 @@
|
||||
#define WEBUSB_VENDOR_CODE 0x01
|
||||
|
||||
extern const struct webusb_platform_descriptor
|
||||
webusb_platform_capability_descriptor;
|
||||
webusb_platform_capability_descriptor_landing;
|
||||
extern const struct webusb_platform_descriptor
|
||||
webusb_platform_capability_descriptor_no_landing;
|
||||
|
||||
extern void webusb_setup(usbd_device* usbd_dev, const char* https_url);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user