2017-06-19 21:59:13 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2017-10-16 16:03:04 +00:00
|
|
|
#include <pb.h>
|
2017-06-19 12:20:09 +00:00
|
|
|
#include <pb_decode.h>
|
2017-06-14 18:40:31 +00:00
|
|
|
#include <pb_encode.h>
|
|
|
|
#include "messages.pb.h"
|
2017-04-15 15:44:19 +00:00
|
|
|
|
2017-06-20 15:32:21 +00:00
|
|
|
#include "common.h"
|
2017-06-20 17:53:24 +00:00
|
|
|
#include "display.h"
|
2017-06-20 15:32:21 +00:00
|
|
|
#include "flash.h"
|
2017-10-16 16:03:04 +00:00
|
|
|
#include "image.h"
|
2017-04-12 16:31:23 +00:00
|
|
|
#include "usb.h"
|
|
|
|
#include "version.h"
|
|
|
|
|
|
|
|
#include "messages.h"
|
2017-10-17 15:31:16 +00:00
|
|
|
#include "style.h"
|
2017-04-12 16:31:23 +00:00
|
|
|
|
2017-10-16 16:03:04 +00:00
|
|
|
#define MSG_HEADER1_LEN 9
|
|
|
|
#define MSG_HEADER2_LEN 1
|
|
|
|
|
2017-06-14 18:40:31 +00:00
|
|
|
bool msg_parse_header(const uint8_t *buf, uint16_t *msg_id, uint32_t *msg_size)
|
|
|
|
{
|
2017-06-20 17:53:24 +00:00
|
|
|
if (buf[0] != '?' || buf[1] != '#' || buf[2] != '#') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
*msg_id = (buf[3] << 8) + buf[4];
|
|
|
|
*msg_size = (buf[5] << 24) + (buf[6] << 16) + (buf[7] << 8) + buf[8];
|
|
|
|
return true;
|
2017-06-14 18:40:31 +00:00
|
|
|
}
|
|
|
|
|
2017-06-14 21:18:00 +00:00
|
|
|
typedef struct {
|
|
|
|
uint8_t iface_num;
|
|
|
|
uint8_t packet_index;
|
|
|
|
uint8_t packet_pos;
|
|
|
|
uint8_t buf[USB_PACKET_SIZE];
|
|
|
|
} usb_write_state;
|
|
|
|
|
|
|
|
static bool _usb_write(pb_ostream_t *stream, const pb_byte_t *buf, size_t count)
|
2017-06-14 18:40:31 +00:00
|
|
|
{
|
2017-06-14 21:18:00 +00:00
|
|
|
usb_write_state *state = (usb_write_state *)(stream->state);
|
|
|
|
|
|
|
|
size_t written = 0;
|
|
|
|
// while we have data left
|
|
|
|
while (written < count) {
|
|
|
|
size_t remaining = count - written;
|
|
|
|
// if all remaining data fit into our packet
|
|
|
|
if (state->packet_pos + remaining <= USB_PACKET_SIZE) {
|
|
|
|
// append data from buf to state->buf
|
|
|
|
memcpy(state->buf + state->packet_pos, buf + written, remaining);
|
|
|
|
// advance position
|
|
|
|
state->packet_pos += remaining;
|
|
|
|
// and return
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// append data that fits
|
|
|
|
memcpy(state->buf + state->packet_pos, buf + written, USB_PACKET_SIZE - state->packet_pos);
|
|
|
|
written += USB_PACKET_SIZE - state->packet_pos;
|
|
|
|
// send packet
|
2017-10-17 16:29:03 +00:00
|
|
|
usb_hid_write_blocking(state->iface_num, state->buf, USB_PACKET_SIZE, 100);
|
2017-06-14 21:18:00 +00:00
|
|
|
// prepare new packet
|
|
|
|
state->packet_index++;
|
|
|
|
memset(state->buf, 0, USB_PACKET_SIZE);
|
|
|
|
state->buf[0] = '?';
|
2017-06-16 13:40:27 +00:00
|
|
|
state->packet_pos = MSG_HEADER2_LEN;
|
2017-06-14 21:18:00 +00:00
|
|
|
}
|
2017-06-14 18:40:31 +00:00
|
|
|
}
|
2017-06-14 21:18:00 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-06-19 12:20:09 +00:00
|
|
|
static void _usb_write_flush(usb_write_state *state)
|
2017-06-14 21:18:00 +00:00
|
|
|
{
|
|
|
|
// if packet is not filled up completely
|
|
|
|
if (state->packet_pos < USB_PACKET_SIZE) {
|
|
|
|
// pad it with zeroes
|
|
|
|
memset(state->buf + state->packet_pos, 0, USB_PACKET_SIZE - state->packet_pos);
|
|
|
|
}
|
|
|
|
// send packet
|
2017-10-17 16:29:03 +00:00
|
|
|
usb_hid_write_blocking(state->iface_num, state->buf, USB_PACKET_SIZE, 100);
|
2017-06-14 18:40:31 +00:00
|
|
|
}
|
|
|
|
|
2017-06-14 21:18:00 +00:00
|
|
|
static bool _send_msg(uint8_t iface_num, uint16_t msg_id, const pb_field_t fields[], const void *msg)
|
2017-06-14 18:40:31 +00:00
|
|
|
{
|
2017-06-14 21:18:00 +00:00
|
|
|
// determine message size by serializing it into a dummy stream
|
|
|
|
pb_ostream_t sizestream = {
|
|
|
|
.callback = NULL,
|
|
|
|
.state = NULL,
|
|
|
|
.max_size = SIZE_MAX,
|
|
|
|
.bytes_written = 0,
|
|
|
|
.errmsg = NULL};
|
2017-06-14 18:40:31 +00:00
|
|
|
if (!pb_encode(&sizestream, fields, msg)) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-14 21:18:00 +00:00
|
|
|
const uint32_t msg_size = sizestream.bytes_written;
|
|
|
|
|
|
|
|
usb_write_state state = {
|
|
|
|
.iface_num = iface_num,
|
|
|
|
.packet_index = 0,
|
2017-06-16 13:40:27 +00:00
|
|
|
.packet_pos = MSG_HEADER1_LEN,
|
2017-06-14 21:18:00 +00:00
|
|
|
.buf = {
|
|
|
|
'?', '#', '#',
|
|
|
|
(msg_id >> 8) & 0xFF, msg_id & 0xFF,
|
|
|
|
(msg_size >> 24) & 0xFF, (msg_size >> 16) & 0xFF, (msg_size >> 8) & 0xFF, msg_size & 0xFF,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
pb_ostream_t stream = {
|
|
|
|
.callback = &_usb_write,
|
|
|
|
.state = &state,
|
|
|
|
.max_size = SIZE_MAX,
|
|
|
|
.bytes_written = 0,
|
|
|
|
.errmsg = NULL
|
|
|
|
};
|
2017-06-14 18:40:31 +00:00
|
|
|
|
|
|
|
if (!pb_encode(&stream, fields, msg)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-19 12:20:09 +00:00
|
|
|
_usb_write_flush(&state);
|
2017-06-14 18:40:31 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-06-19 12:20:09 +00:00
|
|
|
#define MSG_SEND_INIT(TYPE) TYPE msg_send = TYPE##_init_default
|
|
|
|
#define MSG_SEND_ASSIGN_VALUE(FIELD, VALUE) do { msg_send.has_##FIELD = true; msg_send.FIELD = VALUE; } while (0)
|
2017-06-19 21:59:13 +00:00
|
|
|
// FIXME: strcpy -> strncpy
|
|
|
|
#define MSG_SEND_ASSIGN_STRING(FIELD, VALUE) do { msg_send.has_##FIELD = true; strcpy(msg_send.FIELD, VALUE); } while (0)
|
2017-06-19 12:20:09 +00:00
|
|
|
#define MSG_SEND(TYPE) do { _send_msg(iface_num, MessageType_MessageType_##TYPE, TYPE##_fields, &msg_send); } while (0)
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t iface_num;
|
|
|
|
uint8_t packet_index;
|
|
|
|
uint8_t packet_pos;
|
|
|
|
uint8_t *buf;
|
|
|
|
} usb_read_state;
|
2017-06-14 18:40:31 +00:00
|
|
|
|
2017-06-19 12:20:09 +00:00
|
|
|
static bool _usb_read(pb_istream_t *stream, uint8_t *buf, size_t count)
|
2017-06-14 18:40:31 +00:00
|
|
|
{
|
2017-06-19 12:20:09 +00:00
|
|
|
usb_read_state *state = (usb_read_state *)(stream->state);
|
|
|
|
|
|
|
|
size_t read = 0;
|
|
|
|
// while we have data left
|
|
|
|
while (read < count) {
|
|
|
|
size_t remaining = count - read;
|
|
|
|
// if all remaining data fit into our packet
|
|
|
|
if (state->packet_pos + remaining <= USB_PACKET_SIZE) {
|
|
|
|
// append data from buf to state->buf
|
|
|
|
memcpy(buf + read, state->buf + state->packet_pos, remaining);
|
|
|
|
// advance position
|
|
|
|
state->packet_pos += remaining;
|
|
|
|
// and return
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// append data that fits
|
|
|
|
memcpy(buf + read, state->buf + state->packet_pos, USB_PACKET_SIZE - state->packet_pos);
|
|
|
|
read += USB_PACKET_SIZE - state->packet_pos;
|
|
|
|
// read next packet
|
2017-06-20 13:06:16 +00:00
|
|
|
usb_hid_read_blocking(state->iface_num, state->buf, USB_PACKET_SIZE, 100);
|
2017-06-19 12:20:09 +00:00
|
|
|
// prepare next packet
|
|
|
|
state->packet_index++;
|
|
|
|
state->packet_pos = MSG_HEADER2_LEN;
|
2017-06-16 13:40:27 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-19 12:20:09 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _usb_read_flush(usb_read_state *state)
|
|
|
|
{
|
|
|
|
(void)state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool _recv_msg(uint8_t iface_num, uint32_t msg_size, uint8_t *buf, const pb_field_t fields[], void *msg)
|
|
|
|
{
|
|
|
|
usb_read_state state = {
|
|
|
|
.iface_num = iface_num,
|
|
|
|
.packet_index = 0,
|
|
|
|
.packet_pos = MSG_HEADER1_LEN,
|
|
|
|
.buf = buf
|
|
|
|
};
|
|
|
|
|
|
|
|
pb_istream_t stream = {
|
|
|
|
.callback = &_usb_read,
|
|
|
|
.state = &state,
|
|
|
|
.bytes_left = msg_size,
|
|
|
|
.errmsg = NULL
|
|
|
|
};
|
|
|
|
|
2017-06-19 21:05:21 +00:00
|
|
|
if (!pb_decode_noinit(&stream, fields, msg)) {
|
2017-06-19 12:20:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
_usb_read_flush(&state);
|
|
|
|
|
|
|
|
return true;
|
2017-06-16 13:40:27 +00:00
|
|
|
}
|
|
|
|
|
2017-06-19 21:05:21 +00:00
|
|
|
#define MSG_RECV_INIT(TYPE) TYPE msg_recv = TYPE##_init_default
|
2017-06-20 10:43:29 +00:00
|
|
|
#define MSG_RECV_CALLBACK(FIELD, CALLBACK) do { msg_recv.FIELD.funcs.decode = &CALLBACK; } while (0)
|
2017-06-19 12:20:09 +00:00
|
|
|
#define MSG_RECV(TYPE) do { _recv_msg(iface_num, msg_size, buf, TYPE##_fields, &msg_recv); } while(0)
|
|
|
|
|
2017-10-26 13:10:29 +00:00
|
|
|
void process_msg_Initialize(uint8_t iface_num, uint32_t msg_size, uint8_t *buf, bool firmware_present)
|
2017-06-16 13:40:27 +00:00
|
|
|
{
|
2017-06-19 12:20:09 +00:00
|
|
|
MSG_RECV_INIT(Initialize);
|
|
|
|
MSG_RECV(Initialize);
|
|
|
|
|
|
|
|
MSG_SEND_INIT(Features);
|
|
|
|
MSG_SEND_ASSIGN_STRING(vendor, "trezor.io");
|
|
|
|
MSG_SEND_ASSIGN_VALUE(major_version, VERSION_MAJOR);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(minor_version, VERSION_MINOR);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(patch_version, VERSION_PATCH);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(bootloader_mode, true);
|
2017-10-16 16:03:04 +00:00
|
|
|
MSG_SEND_ASSIGN_VALUE(firmware_present, firmware_present);
|
2017-06-14 18:40:31 +00:00
|
|
|
MSG_SEND(Features);
|
|
|
|
}
|
|
|
|
|
2017-06-16 13:40:27 +00:00
|
|
|
void process_msg_Ping(uint8_t iface_num, uint32_t msg_size, uint8_t *buf)
|
2017-06-14 18:40:31 +00:00
|
|
|
{
|
2017-06-19 12:20:09 +00:00
|
|
|
MSG_RECV_INIT(Ping);
|
|
|
|
MSG_RECV(Ping);
|
2017-06-16 13:40:27 +00:00
|
|
|
|
2017-06-19 12:20:09 +00:00
|
|
|
MSG_SEND_INIT(Success);
|
2017-06-19 21:59:13 +00:00
|
|
|
MSG_SEND_ASSIGN_STRING(message, msg_recv.message);
|
2017-06-14 18:40:31 +00:00
|
|
|
MSG_SEND(Success);
|
|
|
|
}
|
|
|
|
|
2017-06-20 17:53:24 +00:00
|
|
|
static uint32_t firmware_remaining, firmware_flashed, chunk_requested;
|
|
|
|
|
2017-10-16 18:24:28 +00:00
|
|
|
static void progress_erase(int pos, int len)
|
2017-06-20 17:53:24 +00:00
|
|
|
{
|
2017-10-17 15:31:16 +00:00
|
|
|
display_loader(250 * pos / len, 0, COLOR_BL_BLUE, COLOR_BLACK, 0, 0, 0);
|
2017-06-20 17:53:24 +00:00
|
|
|
}
|
2017-06-20 10:43:29 +00:00
|
|
|
|
2017-06-16 13:40:27 +00:00
|
|
|
void process_msg_FirmwareErase(uint8_t iface_num, uint32_t msg_size, uint8_t *buf)
|
2017-06-14 18:40:31 +00:00
|
|
|
{
|
2017-06-20 17:53:24 +00:00
|
|
|
firmware_remaining = 0;
|
2017-06-20 10:43:29 +00:00
|
|
|
firmware_flashed = 0;
|
|
|
|
chunk_requested = 0;
|
|
|
|
|
2017-06-19 12:20:09 +00:00
|
|
|
MSG_RECV_INIT(FirmwareErase);
|
|
|
|
MSG_RECV(FirmwareErase);
|
2017-06-16 13:40:27 +00:00
|
|
|
|
2017-06-20 17:53:24 +00:00
|
|
|
firmware_remaining = msg_recv.has_length ? msg_recv.length : 0;
|
|
|
|
if (firmware_remaining > 0 && firmware_remaining % 4 == 0) {
|
2017-06-20 15:32:21 +00:00
|
|
|
// erase flash
|
2017-10-16 18:24:28 +00:00
|
|
|
uint8_t sectors[] = {
|
|
|
|
FLASH_SECTOR_FIRMWARE_START,
|
|
|
|
7,
|
|
|
|
8,
|
|
|
|
9,
|
|
|
|
10,
|
|
|
|
FLASH_SECTOR_FIRMWARE_END,
|
|
|
|
FLASH_SECTOR_FIRMWARE_EXTRA_START,
|
|
|
|
18,
|
|
|
|
19,
|
|
|
|
20,
|
|
|
|
21,
|
|
|
|
22,
|
|
|
|
FLASH_SECTOR_FIRMWARE_EXTRA_END,
|
|
|
|
};
|
|
|
|
if (!flash_erase_sectors(sectors, 6 + 7, progress_erase)) {
|
2017-09-27 09:08:46 +00:00
|
|
|
MSG_SEND_INIT(Failure);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(code, FailureType_Failure_ProcessError);
|
|
|
|
MSG_SEND_ASSIGN_STRING(message, "Could not erase flash");
|
|
|
|
MSG_SEND(Failure);
|
|
|
|
return;
|
|
|
|
}
|
2017-06-20 15:32:21 +00:00
|
|
|
// request new firmware
|
2017-10-26 01:08:18 +00:00
|
|
|
chunk_requested = (firmware_remaining > IMAGE_CHUNK_SIZE) ? IMAGE_CHUNK_SIZE : firmware_remaining;
|
2017-06-20 10:43:29 +00:00
|
|
|
MSG_SEND_INIT(FirmwareRequest);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(offset, 0);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(length, chunk_requested);
|
|
|
|
MSG_SEND(FirmwareRequest);
|
|
|
|
} else {
|
|
|
|
MSG_SEND_INIT(Failure);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(code, FailureType_Failure_DataError);
|
|
|
|
MSG_SEND_ASSIGN_STRING(message, "Wrong firmware size");
|
|
|
|
MSG_SEND(Failure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t chunk_size = 0;
|
|
|
|
|
|
|
|
static bool _read_payload(pb_istream_t *stream, const pb_field_t *field, void **arg)
|
|
|
|
{
|
2017-06-20 17:53:24 +00:00
|
|
|
#define BUFSIZE 4096
|
2017-06-20 15:32:21 +00:00
|
|
|
uint32_t buf[BUFSIZE / sizeof(uint32_t)];
|
|
|
|
uint32_t chunk_written = 0;
|
2017-06-20 10:43:29 +00:00
|
|
|
chunk_size = stream->bytes_left;
|
|
|
|
while (stream->bytes_left) {
|
2017-06-20 17:53:24 +00:00
|
|
|
// print loader
|
2017-10-17 15:31:16 +00:00
|
|
|
display_loader(250 + 750 * (firmware_flashed + chunk_written) / (firmware_flashed + firmware_remaining), 0, COLOR_BL_BLUE, COLOR_BLACK, 0, 0, 0);
|
2017-06-20 15:32:21 +00:00
|
|
|
memset(buf, 0xFF, sizeof(buf));
|
|
|
|
// read data
|
|
|
|
if (!pb_read(stream, (pb_byte_t *)buf, (stream->bytes_left > BUFSIZE) ? BUFSIZE : stream->bytes_left)) {
|
2017-06-20 10:43:29 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-06-20 15:32:21 +00:00
|
|
|
// write data
|
|
|
|
for (int i = 0; i < BUFSIZE / sizeof(uint32_t); i++) {
|
2017-09-28 09:27:58 +00:00
|
|
|
if (!flash_write_word(FIRMWARE_START + firmware_flashed + chunk_written + i * sizeof(uint32_t), buf[i])) {
|
2017-06-20 15:32:21 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chunk_written += BUFSIZE;
|
2017-06-20 10:43:29 +00:00
|
|
|
}
|
|
|
|
return true;
|
2017-06-14 18:40:31 +00:00
|
|
|
}
|
|
|
|
|
2017-10-16 16:03:04 +00:00
|
|
|
int process_msg_FirmwareUpload(uint8_t iface_num, uint32_t msg_size, uint8_t *buf)
|
2017-06-14 18:40:31 +00:00
|
|
|
{
|
2017-09-27 09:08:46 +00:00
|
|
|
if (!flash_unlock()) {
|
|
|
|
MSG_SEND_INIT(Failure);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(code, FailureType_Failure_ProcessError);
|
|
|
|
MSG_SEND_ASSIGN_STRING(message, "Could not unlock flash");
|
|
|
|
MSG_SEND(Failure);
|
2017-10-16 16:03:04 +00:00
|
|
|
return -1;
|
2017-09-27 09:08:46 +00:00
|
|
|
}
|
|
|
|
|
2017-06-19 12:20:09 +00:00
|
|
|
MSG_RECV_INIT(FirmwareUpload);
|
2017-06-20 10:43:29 +00:00
|
|
|
MSG_RECV_CALLBACK(payload, _read_payload);
|
2017-06-19 12:20:09 +00:00
|
|
|
MSG_RECV(FirmwareUpload);
|
2017-09-27 09:08:46 +00:00
|
|
|
flash_lock();
|
2017-06-20 10:43:29 +00:00
|
|
|
|
|
|
|
if (chunk_size != chunk_requested) {
|
|
|
|
MSG_SEND_INIT(Failure);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(code, FailureType_Failure_DataError);
|
|
|
|
MSG_SEND_ASSIGN_STRING(message, "Invalid chunk size");
|
|
|
|
MSG_SEND(Failure);
|
|
|
|
}
|
|
|
|
|
2017-06-20 17:53:24 +00:00
|
|
|
firmware_remaining -= chunk_requested;
|
2017-06-20 10:43:29 +00:00
|
|
|
firmware_flashed += chunk_requested;
|
|
|
|
|
2017-06-20 17:53:24 +00:00
|
|
|
if (firmware_remaining > 0) {
|
2017-10-26 01:08:18 +00:00
|
|
|
chunk_requested = (firmware_remaining > IMAGE_CHUNK_SIZE) ? IMAGE_CHUNK_SIZE : firmware_remaining;
|
2017-06-20 10:43:29 +00:00
|
|
|
MSG_SEND_INIT(FirmwareRequest);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(offset, firmware_flashed);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(length, chunk_requested);
|
|
|
|
MSG_SEND(FirmwareRequest);
|
|
|
|
} else {
|
|
|
|
MSG_SEND_INIT(Success);
|
|
|
|
MSG_SEND(Success);
|
|
|
|
}
|
2017-10-16 16:03:04 +00:00
|
|
|
return (int)firmware_remaining;
|
2017-06-14 18:40:31 +00:00
|
|
|
}
|
|
|
|
|
2017-10-16 18:24:28 +00:00
|
|
|
static void progress_wipe(int pos, int len)
|
|
|
|
{
|
2017-10-17 15:31:16 +00:00
|
|
|
display_loader(1000 * pos / len, 0, COLOR_BL_BLUE, COLOR_BLACK, 0, 0, 0);
|
2017-10-16 18:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int process_msg_WipeDevice(uint8_t iface_num, uint32_t msg_size, uint8_t *buf)
|
|
|
|
{
|
|
|
|
uint8_t sectors[] = {
|
|
|
|
FLASH_SECTOR_STORAGE_1,
|
|
|
|
FLASH_SECTOR_STORAGE_2,
|
|
|
|
FLASH_SECTOR_FIRMWARE_START,
|
|
|
|
7,
|
|
|
|
8,
|
|
|
|
9,
|
|
|
|
10,
|
|
|
|
FLASH_SECTOR_FIRMWARE_END,
|
|
|
|
FLASH_SECTOR_UNUSED_START,
|
|
|
|
13,
|
|
|
|
14,
|
|
|
|
FLASH_SECTOR_UNUSED_END,
|
|
|
|
FLASH_SECTOR_FIRMWARE_EXTRA_START,
|
|
|
|
18,
|
|
|
|
19,
|
|
|
|
20,
|
|
|
|
21,
|
|
|
|
22,
|
|
|
|
FLASH_SECTOR_FIRMWARE_EXTRA_END,
|
2017-10-16 19:43:07 +00:00
|
|
|
FLASH_SECTOR_PIN_AREA,
|
2017-10-16 18:24:28 +00:00
|
|
|
};
|
2017-10-16 19:43:07 +00:00
|
|
|
if (!flash_erase_sectors(sectors, 2 + 6 + 4 + 7 + 1, progress_wipe)) {
|
2017-10-16 18:24:28 +00:00
|
|
|
MSG_SEND_INIT(Failure);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(code, FailureType_Failure_ProcessError);
|
|
|
|
MSG_SEND_ASSIGN_STRING(message, "Could not erase flash");
|
|
|
|
MSG_SEND(Failure);
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
MSG_SEND_INIT(Success);
|
|
|
|
MSG_SEND(Success);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-16 13:40:27 +00:00
|
|
|
void process_msg_unknown(uint8_t iface_num, uint32_t msg_size, uint8_t *buf)
|
2017-06-14 18:40:31 +00:00
|
|
|
{
|
2017-06-19 12:20:09 +00:00
|
|
|
// consume remaining message
|
|
|
|
int remaining_chunks = (msg_size - (USB_PACKET_SIZE - MSG_HEADER1_LEN)) / (USB_PACKET_SIZE - MSG_HEADER2_LEN);
|
|
|
|
for (int i = 0; i < remaining_chunks; i++) {
|
|
|
|
int r = usb_hid_read_blocking(USB_IFACE_NUM, buf, USB_PACKET_SIZE, 100);
|
|
|
|
if (r != USB_PACKET_SIZE) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-06-16 13:40:27 +00:00
|
|
|
|
2017-06-19 12:20:09 +00:00
|
|
|
MSG_SEND_INIT(Failure);
|
|
|
|
MSG_SEND_ASSIGN_VALUE(code, FailureType_Failure_UnexpectedMessage);
|
|
|
|
MSG_SEND_ASSIGN_STRING(message, "Unexpected message");
|
2017-06-14 18:40:31 +00:00
|
|
|
MSG_SEND(Failure);
|
2017-04-15 15:44:19 +00:00
|
|
|
}
|