2017-04-01 10:57:14 +00:00
|
|
|
#ifndef __TREZORHAL_IMAGE_H__
|
|
|
|
#define __TREZORHAL_IMAGE_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2017-10-26 21:51:39 +00:00
|
|
|
#include "secbool.h"
|
2017-04-01 10:57:14 +00:00
|
|
|
|
2017-10-25 23:17:57 +00:00
|
|
|
#define BOARDLOADER_START 0x08000000
|
|
|
|
#define BOOTLOADER_START 0x08020000
|
|
|
|
#define FIRMWARE_START 0x08040000
|
2017-10-26 01:08:18 +00:00
|
|
|
|
2017-10-26 00:09:06 +00:00
|
|
|
#define IMAGE_HEADER_SIZE 0x400
|
|
|
|
#define IMAGE_SIG_SIZE 65
|
2017-10-26 01:08:18 +00:00
|
|
|
#define IMAGE_CHUNK_SIZE (128 * 1024)
|
2017-10-25 23:17:57 +00:00
|
|
|
|
2017-10-27 02:49:59 +00:00
|
|
|
#define BOOTLOADER_IMAGE_MAGIC 0x425A5254 // TRZB
|
2017-10-27 03:09:35 +00:00
|
|
|
#define BOOTLOADER_IMAGE_MAXSIZE (1 * IMAGE_CHUNK_SIZE)
|
2017-10-27 02:49:59 +00:00
|
|
|
|
2017-10-27 03:09:35 +00:00
|
|
|
#define FIRMWARE_IMAGE_MAGIC 0x465A5254 // TRZF
|
|
|
|
#define FIRMWARE_IMAGE_MAXSIZE (6 * IMAGE_CHUNK_SIZE)
|
|
|
|
// TODO: change above limitation to 13 blocks after fixing writing to non-continuous area
|
2017-10-27 02:49:59 +00:00
|
|
|
|
2017-04-01 10:57:14 +00:00
|
|
|
typedef struct {
|
|
|
|
uint32_t magic;
|
|
|
|
uint32_t hdrlen;
|
|
|
|
uint32_t expiry;
|
|
|
|
uint32_t codelen;
|
|
|
|
uint32_t version;
|
2017-12-14 20:29:13 +00:00
|
|
|
uint32_t fix_version;
|
|
|
|
// uint8_t reserved[8];
|
2017-10-26 13:10:29 +00:00
|
|
|
uint8_t hashes[512];
|
|
|
|
// uint8_t reserved[415];
|
2017-04-01 10:57:14 +00:00
|
|
|
uint8_t sigmask;
|
|
|
|
uint8_t sig[64];
|
2017-12-15 18:22:59 +00:00
|
|
|
uint8_t fingerprint[32];
|
2017-04-01 10:57:14 +00:00
|
|
|
} image_header;
|
|
|
|
|
2017-04-05 15:41:10 +00:00
|
|
|
#define MAX_VENDOR_PUBLIC_KEYS 8
|
|
|
|
|
2017-12-15 19:53:29 +00:00
|
|
|
#define VTRUST_WAIT 0x000F
|
|
|
|
#define VTRUST_RED 0x0010
|
|
|
|
#define VTRUST_CLICK 0x0020
|
|
|
|
#define VTRUST_STRING 0x0040
|
|
|
|
#define VTRUST_ALL (VTRUST_WAIT | VTRUST_RED | VTRUST_CLICK | VTRUST_STRING)
|
2017-12-15 14:26:36 +00:00
|
|
|
|
2017-04-01 17:24:41 +00:00
|
|
|
typedef struct {
|
|
|
|
uint32_t magic;
|
|
|
|
uint32_t hdrlen;
|
|
|
|
uint32_t expiry;
|
|
|
|
uint16_t version;
|
|
|
|
uint8_t vsig_m;
|
|
|
|
uint8_t vsig_n;
|
2017-11-06 15:06:01 +00:00
|
|
|
uint16_t vtrust;
|
|
|
|
// uint8_t reserved[14];
|
2017-04-05 15:41:10 +00:00
|
|
|
const uint8_t *vpub[MAX_VENDOR_PUBLIC_KEYS];
|
2017-04-01 17:24:41 +00:00
|
|
|
uint8_t vstr_len;
|
2018-01-25 15:29:05 +00:00
|
|
|
const char *vstr;
|
2017-04-01 17:24:41 +00:00
|
|
|
const uint8_t *vimg;
|
|
|
|
uint8_t sigmask;
|
|
|
|
uint8_t sig[64];
|
|
|
|
} vendor_header;
|
|
|
|
|
2017-12-16 16:54:04 +00:00
|
|
|
secbool __wur load_image_header(const uint8_t * const data, const uint32_t magic, const uint32_t maxsize, uint8_t key_m, uint8_t key_n, const uint8_t * const *keys, image_header * const hdr);
|
2017-04-01 10:57:14 +00:00
|
|
|
|
2017-12-16 16:54:04 +00:00
|
|
|
secbool __wur load_vendor_header(const uint8_t * const data, uint8_t key_m, uint8_t key_n, const uint8_t * const *keys, vendor_header * const vhdr);
|
2017-04-01 17:24:41 +00:00
|
|
|
|
2017-12-13 21:50:48 +00:00
|
|
|
void vendor_keys_hash(const vendor_header * const vhdr, uint8_t *hash);
|
|
|
|
|
2017-12-16 16:54:04 +00:00
|
|
|
secbool __wur check_single_hash(const uint8_t * const hash, const uint8_t * const data, int len);
|
2017-10-27 03:09:35 +00:00
|
|
|
|
2017-12-16 16:54:04 +00:00
|
|
|
secbool __wur check_image_contents(const image_header * const hdr, uint32_t firstskip, const uint8_t *sectors, int blocks);
|
2017-10-26 15:16:59 +00:00
|
|
|
|
2017-04-01 10:57:14 +00:00
|
|
|
#endif
|