2018-02-26 13:06:10 +00:00
|
|
|
/*
|
2019-06-17 18:27:55 +00:00
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
2018-02-26 13:06:10 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) SatoshiLabs
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-04-01 10:57:14 +00:00
|
|
|
#ifndef __TREZORHAL_IMAGE_H__
|
|
|
|
#define __TREZORHAL_IMAGE_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2023-10-20 12:58:32 +00:00
|
|
|
#include "blake2s.h"
|
2023-06-30 10:12:55 +00:00
|
|
|
#include "flash.h"
|
2023-10-16 19:49:25 +00:00
|
|
|
#include "model.h"
|
2017-10-26 21:51:39 +00:00
|
|
|
#include "secbool.h"
|
2017-04-01 10:57:14 +00:00
|
|
|
|
2020-02-06 09:12:45 +00:00
|
|
|
#define IMAGE_HEADER_SIZE 0x400 // size of the bootloader or firmware header
|
2019-03-29 15:26:02 +00:00
|
|
|
#define IMAGE_SIG_SIZE 65
|
2020-02-06 09:12:45 +00:00
|
|
|
#define IMAGE_INIT_CHUNK_SIZE (16 * 1024)
|
2017-10-25 23:17:57 +00:00
|
|
|
|
2019-03-29 15:26:02 +00:00
|
|
|
#define BOOTLOADER_IMAGE_MAGIC 0x425A5254 // TRZB
|
2017-10-27 02:49:59 +00:00
|
|
|
|
2019-03-29 15:26:02 +00:00
|
|
|
#define FIRMWARE_IMAGE_MAGIC 0x465A5254 // TRZF
|
2017-10-27 02:49:59 +00:00
|
|
|
|
2017-04-01 10:57:14 +00:00
|
|
|
typedef struct {
|
2019-03-29 15:26:02 +00:00
|
|
|
uint32_t magic;
|
|
|
|
uint32_t hdrlen;
|
|
|
|
uint32_t expiry;
|
|
|
|
uint32_t codelen;
|
|
|
|
uint32_t version;
|
|
|
|
uint32_t fix_version;
|
2022-11-21 13:12:49 +00:00
|
|
|
uint32_t hw_model;
|
|
|
|
uint8_t hw_revision;
|
|
|
|
uint8_t monotonic;
|
|
|
|
uint8_t reserved_0[2];
|
2019-03-29 15:26:02 +00:00
|
|
|
uint8_t hashes[512];
|
2022-11-21 13:12:49 +00:00
|
|
|
uint8_t reserved_1[415];
|
2019-03-29 15:26:02 +00:00
|
|
|
uint8_t sigmask;
|
|
|
|
uint8_t sig[64];
|
2017-04-01 10:57:14 +00:00
|
|
|
} image_header;
|
|
|
|
|
2017-04-05 15:41:10 +00:00
|
|
|
#define MAX_VENDOR_PUBLIC_KEYS 8
|
|
|
|
|
2019-03-29 15:26:02 +00:00
|
|
|
#define VTRUST_WAIT 0x000F
|
|
|
|
#define VTRUST_RED 0x0010
|
|
|
|
#define VTRUST_CLICK 0x0020
|
|
|
|
#define VTRUST_STRING 0x0040
|
2023-07-20 11:20:50 +00:00
|
|
|
#define VTRUST_SECRET \
|
|
|
|
0x0080 // inverse logic, if set, don't allow to run with secret present
|
2019-03-29 15:26:02 +00:00
|
|
|
#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 {
|
2019-03-29 15:26:02 +00:00
|
|
|
uint32_t magic;
|
|
|
|
uint32_t hdrlen;
|
|
|
|
uint32_t expiry;
|
|
|
|
uint16_t version;
|
|
|
|
uint8_t vsig_m;
|
|
|
|
uint8_t vsig_n;
|
|
|
|
uint16_t vtrust;
|
|
|
|
// uint8_t reserved[14];
|
|
|
|
const uint8_t *vpub[MAX_VENDOR_PUBLIC_KEYS];
|
|
|
|
uint8_t vstr_len;
|
|
|
|
const char *vstr;
|
|
|
|
const uint8_t *vimg;
|
|
|
|
uint8_t sigmask;
|
|
|
|
uint8_t sig[64];
|
2022-11-21 13:12:49 +00:00
|
|
|
const uint8_t *origin; // pointer to the underlying data
|
2017-04-01 17:24:41 +00:00
|
|
|
} vendor_header;
|
|
|
|
|
2023-10-20 12:58:32 +00:00
|
|
|
typedef struct {
|
|
|
|
// vendor string
|
|
|
|
uint8_t vstr[64];
|
|
|
|
// vendor string length
|
|
|
|
size_t vstr_len;
|
|
|
|
// firmware version
|
|
|
|
uint8_t ver_major;
|
|
|
|
uint8_t ver_minor;
|
|
|
|
uint8_t ver_patch;
|
2023-08-11 15:57:32 +00:00
|
|
|
uint8_t ver_build;
|
2023-10-20 12:58:32 +00:00
|
|
|
// firmware fingerprint
|
|
|
|
uint8_t fingerprint[BLAKE2S_DIGEST_LENGTH];
|
|
|
|
// hash of vendor and image header
|
|
|
|
uint8_t hash[BLAKE2S_DIGEST_LENGTH];
|
|
|
|
} firmware_header_info_t;
|
|
|
|
|
2022-11-21 13:12:49 +00:00
|
|
|
const image_header *read_image_header(const uint8_t *const data,
|
|
|
|
const uint32_t magic,
|
|
|
|
const uint32_t maxsize);
|
2017-04-01 10:57:14 +00:00
|
|
|
|
2022-11-21 13:12:49 +00:00
|
|
|
secbool __wur check_image_model(const image_header *const hdr);
|
|
|
|
|
|
|
|
secbool __wur check_image_header_sig(const image_header *const hdr,
|
|
|
|
uint8_t key_m, uint8_t key_n,
|
|
|
|
const uint8_t *const *keys);
|
2017-04-01 17:24:41 +00:00
|
|
|
|
2022-05-02 22:16:38 +00:00
|
|
|
secbool __wur read_vendor_header(const uint8_t *const data,
|
|
|
|
vendor_header *const vhdr);
|
|
|
|
|
2022-11-21 13:12:49 +00:00
|
|
|
secbool __wur check_vendor_header_sig(const vendor_header *const vhdr,
|
|
|
|
uint8_t key_m, uint8_t key_n,
|
|
|
|
const uint8_t *const *keys);
|
|
|
|
|
2023-10-20 12:58:32 +00:00
|
|
|
secbool check_vendor_header_keys(const vendor_header *const vhdr);
|
|
|
|
|
2021-05-05 15:24:30 +00:00
|
|
|
void vendor_header_hash(const vendor_header *const vhdr, uint8_t *hash);
|
2017-12-13 21:50:48 +00:00
|
|
|
|
2019-03-29 15:26:02 +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
|
|
|
|
2019-03-29 15:26:02 +00:00
|
|
|
secbool __wur check_image_contents(const image_header *const hdr,
|
2023-06-30 10:12:55 +00:00
|
|
|
uint32_t firstskip,
|
|
|
|
const flash_area_t *area);
|
2017-10-26 15:16:59 +00:00
|
|
|
|
2022-05-05 11:47:19 +00:00
|
|
|
void get_image_fingerprint(const image_header *const hdr, uint8_t *const out);
|
|
|
|
|
2023-10-20 12:58:32 +00:00
|
|
|
secbool check_firmware_header(const uint8_t *header, size_t header_size,
|
|
|
|
firmware_header_info_t *info);
|
|
|
|
|
2017-04-01 10:57:14 +00:00
|
|
|
#endif
|