blob: aa865cc443f70e71949fed260dc8b16b03fdeaff [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskar07329412009-09-07 15:05:02 +05302/*
Stefan Roese3b8b19d2014-10-22 12:13:23 +02003 * Image manipulator for Marvell SoCs
Mario Six10d14492017-01-11 16:01:00 +01004 * supports Kirkwood, Dove, Armada 370, Armada XP, and Armada 38x
Stefan Roese3b8b19d2014-10-22 12:13:23 +02005 *
6 * (C) Copyright 2013 Thomas Petazzoni
7 * <thomas.petazzoni@free-electrons.com>
Prafulla Wadaskar07329412009-09-07 15:05:02 +05308 *
Mario Six10d14492017-01-11 16:01:00 +01009 * Not implemented: support for the register headers in v1 images
Prafulla Wadaskar07329412009-09-07 15:05:02 +053010 */
11
Guilherme Maciel Ferreira8ed4d1c2013-12-01 12:43:10 -070012#include "imagetool.h"
Andreas Bießmann7abec5b2014-10-24 23:39:11 +020013#include <limits.h>
Prafulla Wadaskar07329412009-09-07 15:05:02 +053014#include <image.h>
Mario Six10d14492017-01-11 16:01:00 +010015#include <stdarg.h>
Stefan Roese3b8b19d2014-10-22 12:13:23 +020016#include <stdint.h>
Prafulla Wadaskar07329412009-09-07 15:05:02 +053017#include "kwbimage.h"
18
Jelle van der Waae0e55592017-05-08 21:31:20 +020019#include <openssl/bn.h>
Mario Six10d14492017-01-11 16:01:00 +010020#include <openssl/rsa.h>
21#include <openssl/pem.h>
22#include <openssl/err.h>
23#include <openssl/evp.h>
Jelle van der Waae0e55592017-05-08 21:31:20 +020024
Jonathan Gray237d0592018-02-21 02:59:01 +110025#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
26 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
Jelle van der Waae0e55592017-05-08 21:31:20 +020027static void RSA_get0_key(const RSA *r,
28 const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
29{
30 if (n != NULL)
31 *n = r->n;
32 if (e != NULL)
33 *e = r->e;
34 if (d != NULL)
35 *d = r->d;
36}
37
Jonathan Gray237d0592018-02-21 02:59:01 +110038#elif !defined(LIBRESSL_VERSION_NUMBER)
Jelle van der Waae0e55592017-05-08 21:31:20 +020039void EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx)
40{
41 EVP_MD_CTX_reset(ctx);
42}
43#endif
Mario Six10d14492017-01-11 16:01:00 +010044
Stefan Roese3b8b19d2014-10-22 12:13:23 +020045static struct image_cfg_element *image_cfg;
46static int cfgn;
Mario Six10d14492017-01-11 16:01:00 +010047static int verbose_mode;
Stefan Roese3b8b19d2014-10-22 12:13:23 +020048
49struct boot_mode {
50 unsigned int id;
51 const char *name;
52};
53
Mario Six10d14492017-01-11 16:01:00 +010054/*
55 * SHA2-256 hash
56 */
57struct hash_v1 {
58 uint8_t hash[32];
59};
60
Stefan Roese3b8b19d2014-10-22 12:13:23 +020061struct boot_mode boot_modes[] = {
Pali Rohár611a16b2021-08-11 10:14:17 +020062 { IBR_HDR_I2C_ID, "i2c" },
63 { IBR_HDR_SPI_ID, "spi" },
64 { IBR_HDR_NAND_ID, "nand" },
65 { IBR_HDR_SATA_ID, "sata" },
66 { IBR_HDR_PEX_ID, "pex" },
67 { IBR_HDR_UART_ID, "uart" },
68 { IBR_HDR_SDIO_ID, "sdio" },
Stefan Roese3b8b19d2014-10-22 12:13:23 +020069 {},
Prafulla Wadaskar07329412009-09-07 15:05:02 +053070};
71
Stefan Roese3b8b19d2014-10-22 12:13:23 +020072struct nand_ecc_mode {
73 unsigned int id;
74 const char *name;
75};
76
77struct nand_ecc_mode nand_ecc_modes[] = {
Pali Rohár611a16b2021-08-11 10:14:17 +020078 { IBR_HDR_ECC_DEFAULT, "default" },
79 { IBR_HDR_ECC_FORCED_HAMMING, "hamming" },
80 { IBR_HDR_ECC_FORCED_RS, "rs" },
81 { IBR_HDR_ECC_DISABLED, "disabled" },
Stefan Roese3b8b19d2014-10-22 12:13:23 +020082 {},
83};
84
85/* Used to identify an undefined execution or destination address */
86#define ADDR_INVALID ((uint32_t)-1)
87
Pali Rohár13b70402021-07-23 11:14:07 +020088#define BINARY_MAX_ARGS 255
Stefan Roese3b8b19d2014-10-22 12:13:23 +020089
90/* In-memory representation of a line of the configuration file */
Mario Six62da6762017-01-11 16:00:59 +010091
92enum image_cfg_type {
93 IMAGE_CFG_VERSION = 0x1,
94 IMAGE_CFG_BOOT_FROM,
95 IMAGE_CFG_DEST_ADDR,
96 IMAGE_CFG_EXEC_ADDR,
97 IMAGE_CFG_NAND_BLKSZ,
98 IMAGE_CFG_NAND_BADBLK_LOCATION,
99 IMAGE_CFG_NAND_ECC_MODE,
100 IMAGE_CFG_NAND_PAGESZ,
101 IMAGE_CFG_BINARY,
Mario Six62da6762017-01-11 16:00:59 +0100102 IMAGE_CFG_DATA,
Pali Rohárc0cfd1a2021-07-23 11:14:12 +0200103 IMAGE_CFG_DATA_DELAY,
Mario Six62da6762017-01-11 16:00:59 +0100104 IMAGE_CFG_BAUDRATE,
105 IMAGE_CFG_DEBUG,
Mario Six10d14492017-01-11 16:01:00 +0100106 IMAGE_CFG_KAK,
107 IMAGE_CFG_CSK,
108 IMAGE_CFG_CSK_INDEX,
109 IMAGE_CFG_JTAG_DELAY,
110 IMAGE_CFG_BOX_ID,
111 IMAGE_CFG_FLASH_ID,
112 IMAGE_CFG_SEC_COMMON_IMG,
113 IMAGE_CFG_SEC_SPECIALIZED_IMG,
114 IMAGE_CFG_SEC_BOOT_DEV,
115 IMAGE_CFG_SEC_FUSE_DUMP,
Mario Six62da6762017-01-11 16:00:59 +0100116
117 IMAGE_CFG_COUNT
118} type;
119
120static const char * const id_strs[] = {
121 [IMAGE_CFG_VERSION] = "VERSION",
122 [IMAGE_CFG_BOOT_FROM] = "BOOT_FROM",
123 [IMAGE_CFG_DEST_ADDR] = "DEST_ADDR",
124 [IMAGE_CFG_EXEC_ADDR] = "EXEC_ADDR",
125 [IMAGE_CFG_NAND_BLKSZ] = "NAND_BLKSZ",
126 [IMAGE_CFG_NAND_BADBLK_LOCATION] = "NAND_BADBLK_LOCATION",
127 [IMAGE_CFG_NAND_ECC_MODE] = "NAND_ECC_MODE",
128 [IMAGE_CFG_NAND_PAGESZ] = "NAND_PAGE_SIZE",
129 [IMAGE_CFG_BINARY] = "BINARY",
Mario Six62da6762017-01-11 16:00:59 +0100130 [IMAGE_CFG_DATA] = "DATA",
Pali Rohárc0cfd1a2021-07-23 11:14:12 +0200131 [IMAGE_CFG_DATA_DELAY] = "DATA_DELAY",
Mario Six62da6762017-01-11 16:00:59 +0100132 [IMAGE_CFG_BAUDRATE] = "BAUDRATE",
133 [IMAGE_CFG_DEBUG] = "DEBUG",
Mario Six10d14492017-01-11 16:01:00 +0100134 [IMAGE_CFG_KAK] = "KAK",
135 [IMAGE_CFG_CSK] = "CSK",
136 [IMAGE_CFG_CSK_INDEX] = "CSK_INDEX",
137 [IMAGE_CFG_JTAG_DELAY] = "JTAG_DELAY",
138 [IMAGE_CFG_BOX_ID] = "BOX_ID",
139 [IMAGE_CFG_FLASH_ID] = "FLASH_ID",
140 [IMAGE_CFG_SEC_COMMON_IMG] = "SEC_COMMON_IMG",
141 [IMAGE_CFG_SEC_SPECIALIZED_IMG] = "SEC_SPECIALIZED_IMG",
142 [IMAGE_CFG_SEC_BOOT_DEV] = "SEC_BOOT_DEV",
143 [IMAGE_CFG_SEC_FUSE_DUMP] = "SEC_FUSE_DUMP"
Mario Six62da6762017-01-11 16:00:59 +0100144};
145
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200146struct image_cfg_element {
Mario Six62da6762017-01-11 16:00:59 +0100147 enum image_cfg_type type;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200148 union {
149 unsigned int version;
150 unsigned int bootfrom;
151 struct {
152 const char *file;
153 unsigned int args[BINARY_MAX_ARGS];
154 unsigned int nargs;
155 } binary;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200156 unsigned int dstaddr;
157 unsigned int execaddr;
158 unsigned int nandblksz;
159 unsigned int nandbadblklocation;
160 unsigned int nandeccmode;
161 unsigned int nandpagesz;
162 struct ext_hdr_v0_reg regdata;
Pali Rohárc0cfd1a2021-07-23 11:14:12 +0200163 unsigned int regdata_delay;
Chris Packham883bf452016-11-09 22:07:45 +1300164 unsigned int baudrate;
Chris Packham1e0728a2016-11-09 22:21:45 +1300165 unsigned int debug;
Mario Six10d14492017-01-11 16:01:00 +0100166 const char *key_name;
167 int csk_idx;
168 uint8_t jtag_delay;
169 uint32_t boxid;
170 uint32_t flashid;
171 bool sec_specialized_img;
172 unsigned int sec_boot_dev;
173 const char *name;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200174 };
175};
176
177#define IMAGE_CFG_ELEMENT_MAX 256
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530178
179/*
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200180 * Utility functions to manipulate boot mode and ecc modes (convert
181 * them back and forth between description strings and the
182 * corresponding numerical identifiers).
183 */
184
185static const char *image_boot_mode_name(unsigned int id)
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530186{
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200187 int i;
Mario Sixd6009d72017-01-11 16:00:54 +0100188
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200189 for (i = 0; boot_modes[i].name; i++)
190 if (boot_modes[i].id == id)
191 return boot_modes[i].name;
192 return NULL;
193}
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530194
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200195int image_boot_mode_id(const char *boot_mode_name)
196{
197 int i;
Mario Sixd6009d72017-01-11 16:00:54 +0100198
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200199 for (i = 0; boot_modes[i].name; i++)
200 if (!strcmp(boot_modes[i].name, boot_mode_name))
201 return boot_modes[i].id;
202
203 return -1;
204}
205
206int image_nand_ecc_mode_id(const char *nand_ecc_mode_name)
207{
208 int i;
Mario Sixd6009d72017-01-11 16:00:54 +0100209
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200210 for (i = 0; nand_ecc_modes[i].name; i++)
211 if (!strcmp(nand_ecc_modes[i].name, nand_ecc_mode_name))
212 return nand_ecc_modes[i].id;
213 return -1;
214}
215
216static struct image_cfg_element *
217image_find_option(unsigned int optiontype)
218{
219 int i;
220
221 for (i = 0; i < cfgn; i++) {
222 if (image_cfg[i].type == optiontype)
223 return &image_cfg[i];
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530224 }
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200225
226 return NULL;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530227}
228
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200229static unsigned int
230image_count_options(unsigned int optiontype)
231{
232 int i;
233 unsigned int count = 0;
234
235 for (i = 0; i < cfgn; i++)
236 if (image_cfg[i].type == optiontype)
237 count++;
238
239 return count;
240}
241
Mario Six10d14492017-01-11 16:01:00 +0100242static int image_get_csk_index(void)
243{
244 struct image_cfg_element *e;
245
246 e = image_find_option(IMAGE_CFG_CSK_INDEX);
247 if (!e)
248 return -1;
249
250 return e->csk_idx;
251}
252
253static bool image_get_spezialized_img(void)
254{
255 struct image_cfg_element *e;
256
257 e = image_find_option(IMAGE_CFG_SEC_SPECIALIZED_IMG);
258 if (!e)
259 return false;
260
261 return e->sec_specialized_img;
262}
263
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530264/*
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200265 * Compute a 8-bit checksum of a memory area. This algorithm follows
266 * the requirements of the Marvell SoC BootROM specifications.
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530267 */
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200268static uint8_t image_checksum8(void *start, uint32_t len)
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530269{
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200270 uint8_t csum = 0;
271 uint8_t *p = start;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530272
273 /* check len and return zero checksum if invalid */
274 if (!len)
275 return 0;
276
277 do {
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200278 csum += *p;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530279 p++;
280 } while (--len);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200281
282 return csum;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530283}
284
Baruch Siach4a5b99b2017-07-04 20:23:40 +0300285size_t kwbimage_header_size(unsigned char *ptr)
286{
287 if (image_version((void *)ptr) == 0)
288 return sizeof(struct main_hdr_v0);
289 else
290 return KWBHEADER_V1_SIZE((struct main_hdr_v1 *)ptr);
291}
292
293/*
294 * Verify checksum over a complete header that includes the checksum field.
295 * Return 1 when OK, otherwise 0.
296 */
297static int main_hdr_checksum_ok(void *hdr)
298{
299 /* Offsets of checksum in v0 and v1 headers are the same */
300 struct main_hdr_v0 *main_hdr = (struct main_hdr_v0 *)hdr;
301 uint8_t checksum;
302
303 checksum = image_checksum8(hdr, kwbimage_header_size(hdr));
304 /* Calculated checksum includes the header checksum field. Compensate
305 * for that.
306 */
307 checksum -= main_hdr->checksum;
308
309 return checksum == main_hdr->checksum;
310}
311
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200312static uint32_t image_checksum32(void *start, uint32_t len)
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530313{
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200314 uint32_t csum = 0;
315 uint32_t *p = start;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530316
317 /* check len and return zero checksum if invalid */
318 if (!len)
319 return 0;
320
321 if (len % sizeof(uint32_t)) {
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200322 fprintf(stderr, "Length %d is not in multiple of %zu\n",
323 len, sizeof(uint32_t));
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530324 return 0;
325 }
326
327 do {
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200328 csum += *p;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530329 p++;
330 len -= sizeof(uint32_t);
331 } while (len > 0);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200332
333 return csum;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530334}
335
Chris Packham883bf452016-11-09 22:07:45 +1300336static uint8_t baudrate_to_option(unsigned int baudrate)
337{
338 switch (baudrate) {
339 case 2400:
340 return MAIN_HDR_V1_OPT_BAUD_2400;
341 case 4800:
342 return MAIN_HDR_V1_OPT_BAUD_4800;
343 case 9600:
344 return MAIN_HDR_V1_OPT_BAUD_9600;
345 case 19200:
346 return MAIN_HDR_V1_OPT_BAUD_19200;
347 case 38400:
348 return MAIN_HDR_V1_OPT_BAUD_38400;
349 case 57600:
350 return MAIN_HDR_V1_OPT_BAUD_57600;
351 case 115200:
352 return MAIN_HDR_V1_OPT_BAUD_115200;
353 default:
354 return MAIN_HDR_V1_OPT_BAUD_DEFAULT;
355 }
356}
357
Mario Six10d14492017-01-11 16:01:00 +0100358static void kwb_msg(const char *fmt, ...)
359{
360 if (verbose_mode) {
361 va_list ap;
362
363 va_start(ap, fmt);
364 vfprintf(stdout, fmt, ap);
365 va_end(ap);
366 }
367}
368
369static int openssl_err(const char *msg)
370{
371 unsigned long ssl_err = ERR_get_error();
372
373 fprintf(stderr, "%s", msg);
374 fprintf(stderr, ": %s\n",
375 ERR_error_string(ssl_err, 0));
376
377 return -1;
378}
379
380static int kwb_load_rsa_key(const char *keydir, const char *name, RSA **p_rsa)
381{
382 char path[PATH_MAX];
383 RSA *rsa;
384 FILE *f;
385
386 if (!keydir)
387 keydir = ".";
388
389 snprintf(path, sizeof(path), "%s/%s.key", keydir, name);
390 f = fopen(path, "r");
391 if (!f) {
392 fprintf(stderr, "Couldn't open RSA private key: '%s': %s\n",
393 path, strerror(errno));
394 return -ENOENT;
395 }
396
397 rsa = PEM_read_RSAPrivateKey(f, 0, NULL, "");
398 if (!rsa) {
399 openssl_err("Failure reading private key");
400 fclose(f);
401 return -EPROTO;
402 }
403 fclose(f);
404 *p_rsa = rsa;
405
406 return 0;
407}
408
409static int kwb_load_cfg_key(struct image_tool_params *params,
410 unsigned int cfg_option, const char *key_name,
411 RSA **p_key)
412{
413 struct image_cfg_element *e_key;
414 RSA *key;
415 int res;
416
417 *p_key = NULL;
418
419 e_key = image_find_option(cfg_option);
420 if (!e_key) {
421 fprintf(stderr, "%s not configured\n", key_name);
422 return -ENOENT;
423 }
424
425 res = kwb_load_rsa_key(params->keydir, e_key->key_name, &key);
426 if (res < 0) {
427 fprintf(stderr, "Failed to load %s\n", key_name);
428 return -ENOENT;
429 }
430
431 *p_key = key;
432
433 return 0;
434}
435
436static int kwb_load_kak(struct image_tool_params *params, RSA **p_kak)
437{
438 return kwb_load_cfg_key(params, IMAGE_CFG_KAK, "KAK", p_kak);
439}
440
441static int kwb_load_csk(struct image_tool_params *params, RSA **p_csk)
442{
443 return kwb_load_cfg_key(params, IMAGE_CFG_CSK, "CSK", p_csk);
444}
445
446static int kwb_compute_pubkey_hash(struct pubkey_der_v1 *pk,
447 struct hash_v1 *hash)
448{
449 EVP_MD_CTX *ctx;
450 unsigned int key_size;
451 unsigned int hash_size;
452 int ret = 0;
453
454 if (!pk || !hash || pk->key[0] != 0x30 || pk->key[1] != 0x82)
455 return -EINVAL;
456
457 key_size = (pk->key[2] << 8) + pk->key[3] + 4;
458
459 ctx = EVP_MD_CTX_create();
460 if (!ctx)
461 return openssl_err("EVP context creation failed");
462
463 EVP_MD_CTX_init(ctx);
464 if (!EVP_DigestInit(ctx, EVP_sha256())) {
465 ret = openssl_err("Digest setup failed");
466 goto hash_err_ctx;
467 }
468
469 if (!EVP_DigestUpdate(ctx, pk->key, key_size)) {
470 ret = openssl_err("Hashing data failed");
471 goto hash_err_ctx;
472 }
473
474 if (!EVP_DigestFinal(ctx, hash->hash, &hash_size)) {
475 ret = openssl_err("Could not obtain hash");
476 goto hash_err_ctx;
477 }
478
479 EVP_MD_CTX_cleanup(ctx);
480
481hash_err_ctx:
482 EVP_MD_CTX_destroy(ctx);
483 return ret;
484}
485
486static int kwb_import_pubkey(RSA **key, struct pubkey_der_v1 *src, char *keyname)
487{
488 RSA *rsa;
489 const unsigned char *ptr;
490
491 if (!key || !src)
492 goto fail;
493
494 ptr = src->key;
495 rsa = d2i_RSAPublicKey(key, &ptr, sizeof(src->key));
496 if (!rsa) {
497 openssl_err("error decoding public key");
498 goto fail;
499 }
500
501 return 0;
502fail:
503 fprintf(stderr, "Failed to decode %s pubkey\n", keyname);
504 return -EINVAL;
505}
506
507static int kwb_export_pubkey(RSA *key, struct pubkey_der_v1 *dst, FILE *hashf,
508 char *keyname)
509{
510 int size_exp, size_mod, size_seq;
Jelle van der Waae0e55592017-05-08 21:31:20 +0200511 const BIGNUM *key_e, *key_n;
Mario Six10d14492017-01-11 16:01:00 +0100512 uint8_t *cur;
513 char *errmsg = "Failed to encode %s\n";
514
Jelle van der Waae0e55592017-05-08 21:31:20 +0200515 RSA_get0_key(key, NULL, &key_e, NULL);
516 RSA_get0_key(key, &key_n, NULL, NULL);
517
518 if (!key || !key_e || !key_n || !dst) {
Mario Six10d14492017-01-11 16:01:00 +0100519 fprintf(stderr, "export pk failed: (%p, %p, %p, %p)",
Jelle van der Waae0e55592017-05-08 21:31:20 +0200520 key, key_e, key_n, dst);
Mario Six10d14492017-01-11 16:01:00 +0100521 fprintf(stderr, errmsg, keyname);
522 return -EINVAL;
523 }
524
525 /*
526 * According to the specs, the key should be PKCS#1 DER encoded.
527 * But unfortunately the really required encoding seems to be different;
528 * it violates DER...! (But it still conformes to BER.)
529 * (Length always in long form w/ 2 byte length code; no leading zero
530 * when MSB of first byte is set...)
531 * So we cannot use the encoding func provided by OpenSSL and have to
532 * do the encoding manually.
533 */
534
Jelle van der Waae0e55592017-05-08 21:31:20 +0200535 size_exp = BN_num_bytes(key_e);
536 size_mod = BN_num_bytes(key_n);
Mario Six10d14492017-01-11 16:01:00 +0100537 size_seq = 4 + size_mod + 4 + size_exp;
538
539 if (size_mod > 256) {
540 fprintf(stderr, "export pk failed: wrong mod size: %d\n",
541 size_mod);
542 fprintf(stderr, errmsg, keyname);
543 return -EINVAL;
544 }
545
546 if (4 + size_seq > sizeof(dst->key)) {
547 fprintf(stderr, "export pk failed: seq too large (%d, %lu)\n",
548 4 + size_seq, sizeof(dst->key));
549 fprintf(stderr, errmsg, keyname);
550 return -ENOBUFS;
551 }
552
553 cur = dst->key;
554
555 /* PKCS#1 (RFC3447) RSAPublicKey structure */
556 *cur++ = 0x30; /* SEQUENCE */
557 *cur++ = 0x82;
558 *cur++ = (size_seq >> 8) & 0xFF;
559 *cur++ = size_seq & 0xFF;
560 /* Modulus */
561 *cur++ = 0x02; /* INTEGER */
562 *cur++ = 0x82;
563 *cur++ = (size_mod >> 8) & 0xFF;
564 *cur++ = size_mod & 0xFF;
Jelle van der Waae0e55592017-05-08 21:31:20 +0200565 BN_bn2bin(key_n, cur);
Mario Six10d14492017-01-11 16:01:00 +0100566 cur += size_mod;
567 /* Exponent */
568 *cur++ = 0x02; /* INTEGER */
569 *cur++ = 0x82;
570 *cur++ = (size_exp >> 8) & 0xFF;
571 *cur++ = size_exp & 0xFF;
Jelle van der Waae0e55592017-05-08 21:31:20 +0200572 BN_bn2bin(key_e, cur);
Mario Six10d14492017-01-11 16:01:00 +0100573
574 if (hashf) {
575 struct hash_v1 pk_hash;
576 int i;
577 int ret = 0;
578
579 ret = kwb_compute_pubkey_hash(dst, &pk_hash);
580 if (ret < 0) {
581 fprintf(stderr, errmsg, keyname);
582 return ret;
583 }
584
585 fprintf(hashf, "SHA256 = ");
586 for (i = 0 ; i < sizeof(pk_hash.hash); ++i)
587 fprintf(hashf, "%02X", pk_hash.hash[i]);
588 fprintf(hashf, "\n");
589 }
590
591 return 0;
592}
593
594int kwb_sign(RSA *key, void *data, int datasz, struct sig_v1 *sig, char *signame)
595{
596 EVP_PKEY *evp_key;
597 EVP_MD_CTX *ctx;
598 unsigned int sig_size;
599 int size;
600 int ret = 0;
601
602 evp_key = EVP_PKEY_new();
603 if (!evp_key)
604 return openssl_err("EVP_PKEY object creation failed");
605
606 if (!EVP_PKEY_set1_RSA(evp_key, key)) {
607 ret = openssl_err("EVP key setup failed");
608 goto err_key;
609 }
610
611 size = EVP_PKEY_size(evp_key);
612 if (size > sizeof(sig->sig)) {
613 fprintf(stderr, "Buffer to small for signature (%d bytes)\n",
614 size);
615 ret = -ENOBUFS;
616 goto err_key;
617 }
618
619 ctx = EVP_MD_CTX_create();
620 if (!ctx) {
621 ret = openssl_err("EVP context creation failed");
622 goto err_key;
623 }
624 EVP_MD_CTX_init(ctx);
625 if (!EVP_SignInit(ctx, EVP_sha256())) {
626 ret = openssl_err("Signer setup failed");
627 goto err_ctx;
628 }
629
630 if (!EVP_SignUpdate(ctx, data, datasz)) {
631 ret = openssl_err("Signing data failed");
632 goto err_ctx;
633 }
634
635 if (!EVP_SignFinal(ctx, sig->sig, &sig_size, evp_key)) {
636 ret = openssl_err("Could not obtain signature");
637 goto err_ctx;
638 }
639
640 EVP_MD_CTX_cleanup(ctx);
641 EVP_MD_CTX_destroy(ctx);
642 EVP_PKEY_free(evp_key);
643
644 return 0;
645
646err_ctx:
647 EVP_MD_CTX_destroy(ctx);
648err_key:
649 EVP_PKEY_free(evp_key);
650 fprintf(stderr, "Failed to create %s signature\n", signame);
651 return ret;
652}
653
654int kwb_verify(RSA *key, void *data, int datasz, struct sig_v1 *sig,
655 char *signame)
656{
657 EVP_PKEY *evp_key;
658 EVP_MD_CTX *ctx;
659 int size;
660 int ret = 0;
661
662 evp_key = EVP_PKEY_new();
663 if (!evp_key)
664 return openssl_err("EVP_PKEY object creation failed");
665
666 if (!EVP_PKEY_set1_RSA(evp_key, key)) {
667 ret = openssl_err("EVP key setup failed");
668 goto err_key;
669 }
670
671 size = EVP_PKEY_size(evp_key);
672 if (size > sizeof(sig->sig)) {
673 fprintf(stderr, "Invalid signature size (%d bytes)\n",
674 size);
675 ret = -EINVAL;
676 goto err_key;
677 }
678
679 ctx = EVP_MD_CTX_create();
680 if (!ctx) {
681 ret = openssl_err("EVP context creation failed");
682 goto err_key;
683 }
684 EVP_MD_CTX_init(ctx);
685 if (!EVP_VerifyInit(ctx, EVP_sha256())) {
686 ret = openssl_err("Verifier setup failed");
687 goto err_ctx;
688 }
689
690 if (!EVP_VerifyUpdate(ctx, data, datasz)) {
691 ret = openssl_err("Hashing data failed");
692 goto err_ctx;
693 }
694
Young Xiaoda575f52019-04-17 17:20:24 +0800695 if (EVP_VerifyFinal(ctx, sig->sig, sizeof(sig->sig), evp_key) != 1) {
Mario Six10d14492017-01-11 16:01:00 +0100696 ret = openssl_err("Could not verify signature");
697 goto err_ctx;
698 }
699
700 EVP_MD_CTX_cleanup(ctx);
701 EVP_MD_CTX_destroy(ctx);
702 EVP_PKEY_free(evp_key);
703
704 return 0;
705
706err_ctx:
707 EVP_MD_CTX_destroy(ctx);
708err_key:
709 EVP_PKEY_free(evp_key);
710 fprintf(stderr, "Failed to verify %s signature\n", signame);
711 return ret;
712}
713
714int kwb_sign_and_verify(RSA *key, void *data, int datasz, struct sig_v1 *sig,
715 char *signame)
716{
717 if (kwb_sign(key, data, datasz, sig, signame) < 0)
718 return -1;
719
720 if (kwb_verify(key, data, datasz, sig, signame) < 0)
721 return -1;
722
723 return 0;
724}
725
726
727int kwb_dump_fuse_cmds_38x(FILE *out, struct secure_hdr_v1 *sec_hdr)
728{
729 struct hash_v1 kak_pub_hash;
730 struct image_cfg_element *e;
731 unsigned int fuse_line;
732 int i, idx;
733 uint8_t *ptr;
734 uint32_t val;
735 int ret = 0;
736
737 if (!out || !sec_hdr)
738 return -EINVAL;
739
740 ret = kwb_compute_pubkey_hash(&sec_hdr->kak, &kak_pub_hash);
741 if (ret < 0)
742 goto done;
743
744 fprintf(out, "# burn KAK pub key hash\n");
745 ptr = kak_pub_hash.hash;
746 for (fuse_line = 26; fuse_line <= 30; ++fuse_line) {
747 fprintf(out, "fuse prog -y %u 0 ", fuse_line);
748
749 for (i = 4; i-- > 0;)
750 fprintf(out, "%02hx", (ushort)ptr[i]);
751 ptr += 4;
752 fprintf(out, " 00");
753
754 if (fuse_line < 30) {
755 for (i = 3; i-- > 0;)
756 fprintf(out, "%02hx", (ushort)ptr[i]);
757 ptr += 3;
758 } else {
759 fprintf(out, "000000");
760 }
761
762 fprintf(out, " 1\n");
763 }
764
765 fprintf(out, "# burn CSK selection\n");
766
767 idx = image_get_csk_index();
768 if (idx < 0 || idx > 15) {
769 ret = -EINVAL;
770 goto done;
771 }
772 if (idx > 0) {
773 for (fuse_line = 31; fuse_line < 31 + idx; ++fuse_line)
774 fprintf(out, "fuse prog -y %u 0 00000001 00000000 1\n",
775 fuse_line);
776 } else {
777 fprintf(out, "# CSK index is 0; no mods needed\n");
778 }
779
780 e = image_find_option(IMAGE_CFG_BOX_ID);
781 if (e) {
782 fprintf(out, "# set box ID\n");
783 fprintf(out, "fuse prog -y 48 0 %08x 00000000 1\n", e->boxid);
784 }
785
786 e = image_find_option(IMAGE_CFG_FLASH_ID);
787 if (e) {
788 fprintf(out, "# set flash ID\n");
789 fprintf(out, "fuse prog -y 47 0 %08x 00000000 1\n", e->flashid);
790 }
791
792 fprintf(out, "# enable secure mode ");
793 fprintf(out, "(must be the last fuse line written)\n");
794
795 val = 1;
796 e = image_find_option(IMAGE_CFG_SEC_BOOT_DEV);
797 if (!e) {
798 fprintf(stderr, "ERROR: secured mode boot device not given\n");
799 ret = -EINVAL;
800 goto done;
801 }
802
803 if (e->sec_boot_dev > 0xff) {
804 fprintf(stderr, "ERROR: secured mode boot device invalid\n");
805 ret = -EINVAL;
806 goto done;
807 }
808
809 val |= (e->sec_boot_dev << 8);
810
811 fprintf(out, "fuse prog -y 24 0 %08x 0103e0a9 1\n", val);
812
813 fprintf(out, "# lock (unused) fuse lines (0-23)s\n");
814 for (fuse_line = 0; fuse_line < 24; ++fuse_line)
815 fprintf(out, "fuse prog -y %u 2 1\n", fuse_line);
816
817 fprintf(out, "# OK, that's all :-)\n");
818
819done:
820 return ret;
821}
822
823static int kwb_dump_fuse_cmds(struct secure_hdr_v1 *sec_hdr)
824{
825 int ret = 0;
826 struct image_cfg_element *e;
827
828 e = image_find_option(IMAGE_CFG_SEC_FUSE_DUMP);
829 if (!e)
830 return 0;
831
832 if (!strcmp(e->name, "a38x")) {
833 FILE *out = fopen("kwb_fuses_a38x.txt", "w+");
834
Heinrich Schuchardt379ec092021-08-17 07:03:20 +0200835 if (!out) {
836 fprintf(stderr, "Couldn't open eFuse settings: '%s': %s\n",
837 "kwb_fuses_a38x.txt", strerror(errno));
838 return -ENOENT;
839 }
840
Mario Six10d14492017-01-11 16:01:00 +0100841 kwb_dump_fuse_cmds_38x(out, sec_hdr);
842 fclose(out);
843 goto done;
844 }
845
846 ret = -ENOSYS;
847
848done:
849 return ret;
850}
851
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200852static void *image_create_v0(size_t *imagesz, struct image_tool_params *params,
853 int payloadsz)
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530854{
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200855 struct image_cfg_element *e;
856 size_t headersz;
857 struct main_hdr_v0 *main_hdr;
Mario Six7497cd62017-01-11 16:00:55 +0100858 uint8_t *image;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200859 int has_ext = 0;
860
861 /*
862 * Calculate the size of the header and the size of the
863 * payload
864 */
865 headersz = sizeof(struct main_hdr_v0);
866
867 if (image_count_options(IMAGE_CFG_DATA) > 0) {
868 has_ext = 1;
869 headersz += sizeof(struct ext_hdr_v0);
870 }
871
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200872 image = malloc(headersz);
873 if (!image) {
874 fprintf(stderr, "Cannot allocate memory for image\n");
875 return NULL;
876 }
877
878 memset(image, 0, headersz);
879
Mario Six7497cd62017-01-11 16:00:55 +0100880 main_hdr = (struct main_hdr_v0 *)image;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530881
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200882 /* Fill in the main header */
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100883 main_hdr->blocksize =
Pali Rohárcfb60a92021-07-23 11:13:56 +0200884 cpu_to_le32(payloadsz - headersz);
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100885 main_hdr->srcaddr = cpu_to_le32(headersz);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200886 main_hdr->ext = has_ext;
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100887 main_hdr->destaddr = cpu_to_le32(params->addr);
888 main_hdr->execaddr = cpu_to_le32(params->ep);
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530889
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200890 e = image_find_option(IMAGE_CFG_BOOT_FROM);
891 if (e)
892 main_hdr->blockid = e->bootfrom;
893 e = image_find_option(IMAGE_CFG_NAND_ECC_MODE);
894 if (e)
895 main_hdr->nandeccmode = e->nandeccmode;
896 e = image_find_option(IMAGE_CFG_NAND_PAGESZ);
897 if (e)
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100898 main_hdr->nandpagesize = cpu_to_le16(e->nandpagesz);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200899 main_hdr->checksum = image_checksum8(image,
900 sizeof(struct main_hdr_v0));
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530901
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200902 /* Generate the ext header */
903 if (has_ext) {
Mario Six6f273632017-01-11 16:00:56 +0100904 struct ext_hdr_v0 *ext_hdr;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200905 int cfgi, datai;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530906
Mario Six7497cd62017-01-11 16:00:55 +0100907 ext_hdr = (struct ext_hdr_v0 *)
908 (image + sizeof(struct main_hdr_v0));
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100909 ext_hdr->offset = cpu_to_le32(0x40);
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530910
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200911 for (cfgi = 0, datai = 0; cfgi < cfgn; cfgi++) {
912 e = &image_cfg[cfgi];
913 if (e->type != IMAGE_CFG_DATA)
914 continue;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530915
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100916 ext_hdr->rcfg[datai].raddr =
917 cpu_to_le32(e->regdata.raddr);
918 ext_hdr->rcfg[datai].rdata =
919 cpu_to_le32(e->regdata.rdata);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200920 datai++;
921 }
922
923 ext_hdr->checksum = image_checksum8(ext_hdr,
924 sizeof(struct ext_hdr_v0));
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530925 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530926
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200927 *imagesz = headersz;
928 return image;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530929}
930
Mario Six855cf9e2017-01-11 16:00:57 +0100931static size_t image_headersz_v1(int *hasext)
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200932{
933 struct image_cfg_element *binarye;
Pali Rohárfbe10ac2021-07-23 11:14:11 +0200934 unsigned int count;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200935 size_t headersz;
Pali Roháre0a6dc72021-07-23 11:14:09 +0200936 int cfgi;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530937
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200938 /*
939 * Calculate the size of the header and the size of the
940 * payload
941 */
942 headersz = sizeof(struct main_hdr_v1);
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530943
Pali Rohárfbe10ac2021-07-23 11:14:11 +0200944 count = image_count_options(IMAGE_CFG_DATA);
945 if (count > 0)
946 headersz += sizeof(struct register_set_hdr_v1) + 8 * count + 4;
947
Pali Roháre0a6dc72021-07-23 11:14:09 +0200948 for (cfgi = 0; cfgi < cfgn; cfgi++) {
Mario Six6f273632017-01-11 16:00:56 +0100949 int ret;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200950 struct stat s;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530951
Pali Roháre0a6dc72021-07-23 11:14:09 +0200952 binarye = &image_cfg[cfgi];
953 if (binarye->type != IMAGE_CFG_BINARY)
954 continue;
955
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200956 ret = stat(binarye->binary.file, &s);
957 if (ret < 0) {
Andreas Bießmann7abec5b2014-10-24 23:39:11 +0200958 char cwd[PATH_MAX];
959 char *dir = cwd;
960
961 memset(cwd, 0, sizeof(cwd));
962 if (!getcwd(cwd, sizeof(cwd))) {
963 dir = "current working directory";
964 perror("getcwd() failed");
965 }
966
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200967 fprintf(stderr,
968 "Didn't find the file '%s' in '%s' which is mandatory to generate the image\n"
969 "This file generally contains the DDR3 training code, and should be extracted from an existing bootable\n"
Pali Rohár18d8ea92021-07-23 11:14:35 +0200970 "image for your board. Use 'dumpimage -T kwbimage -p 0' to extract it from an existing image.\n",
Andreas Bießmann7abec5b2014-10-24 23:39:11 +0200971 binarye->binary.file, dir);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200972 return 0;
973 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530974
Reinhard Pfau5286c0d2015-11-29 15:52:14 +0100975 headersz += sizeof(struct opt_hdr_v1) +
Pali Rohárd79cbc92021-07-23 11:14:08 +0200976 ALIGN(s.st_size, 4) +
Reinhard Pfau5286c0d2015-11-29 15:52:14 +0100977 (binarye->binary.nargs + 2) * sizeof(uint32_t);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200978 if (hasext)
979 *hasext = 1;
980 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530981
Mario Six10d14492017-01-11 16:01:00 +0100982 if (image_get_csk_index() >= 0) {
983 headersz += sizeof(struct secure_hdr_v1);
984 if (hasext)
985 *hasext = 1;
986 }
Mario Six10d14492017-01-11 16:01:00 +0100987
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200988 /*
989 * The payload should be aligned on some reasonable
990 * boundary
991 */
Kever Yang0b21cde2020-03-30 11:56:20 +0800992 return ALIGN(headersz, 4096);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200993}
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530994
Pali Roháre0a6dc72021-07-23 11:14:09 +0200995int add_binary_header_v1(uint8_t **cur, uint8_t **next_ext,
996 struct image_cfg_element *binarye)
Mario Six030ca162017-01-11 16:00:58 +0100997{
Pali Roháre0a6dc72021-07-23 11:14:09 +0200998 struct opt_hdr_v1 *hdr = (struct opt_hdr_v1 *)*cur;
Mario Six030ca162017-01-11 16:00:58 +0100999 uint32_t *args;
1000 size_t binhdrsz;
1001 struct stat s;
1002 int argi;
1003 FILE *bin;
1004 int ret;
1005
Mario Six030ca162017-01-11 16:00:58 +01001006 hdr->headertype = OPT_HDR_V1_BINARY_TYPE;
1007
1008 bin = fopen(binarye->binary.file, "r");
1009 if (!bin) {
1010 fprintf(stderr, "Cannot open binary file %s\n",
1011 binarye->binary.file);
1012 return -1;
1013 }
1014
Mario Sixe3edf162017-02-13 10:11:55 +01001015 if (fstat(fileno(bin), &s)) {
1016 fprintf(stderr, "Cannot stat binary file %s\n",
1017 binarye->binary.file);
1018 goto err_close;
1019 }
Mario Six030ca162017-01-11 16:00:58 +01001020
1021 binhdrsz = sizeof(struct opt_hdr_v1) +
1022 (binarye->binary.nargs + 2) * sizeof(uint32_t) +
Pali Rohárd79cbc92021-07-23 11:14:08 +02001023 ALIGN(s.st_size, 4);
Mario Six030ca162017-01-11 16:00:58 +01001024 hdr->headersz_lsb = cpu_to_le16(binhdrsz & 0xFFFF);
1025 hdr->headersz_msb = (binhdrsz & 0xFFFF0000) >> 16;
1026
Pali Roháre0a6dc72021-07-23 11:14:09 +02001027 *cur += sizeof(struct opt_hdr_v1);
Mario Six030ca162017-01-11 16:00:58 +01001028
Pali Roháre0a6dc72021-07-23 11:14:09 +02001029 args = (uint32_t *)*cur;
Mario Six030ca162017-01-11 16:00:58 +01001030 *args = cpu_to_le32(binarye->binary.nargs);
1031 args++;
1032 for (argi = 0; argi < binarye->binary.nargs; argi++)
1033 args[argi] = cpu_to_le32(binarye->binary.args[argi]);
1034
Pali Roháre0a6dc72021-07-23 11:14:09 +02001035 *cur += (binarye->binary.nargs + 1) * sizeof(uint32_t);
Mario Six030ca162017-01-11 16:00:58 +01001036
Pali Roháre0a6dc72021-07-23 11:14:09 +02001037 ret = fread(*cur, s.st_size, 1, bin);
Mario Six030ca162017-01-11 16:00:58 +01001038 if (ret != 1) {
1039 fprintf(stderr,
1040 "Could not read binary image %s\n",
1041 binarye->binary.file);
Mario Sixe3edf162017-02-13 10:11:55 +01001042 goto err_close;
Mario Six030ca162017-01-11 16:00:58 +01001043 }
1044
1045 fclose(bin);
1046
Pali Roháre0a6dc72021-07-23 11:14:09 +02001047 *cur += ALIGN(s.st_size, 4);
Mario Six030ca162017-01-11 16:00:58 +01001048
Pali Roháre0a6dc72021-07-23 11:14:09 +02001049 *((uint32_t *)*cur) = 0x00000000;
1050 **next_ext = 1;
1051 *next_ext = *cur;
Mario Six030ca162017-01-11 16:00:58 +01001052
Pali Roháre0a6dc72021-07-23 11:14:09 +02001053 *cur += sizeof(uint32_t);
Mario Six030ca162017-01-11 16:00:58 +01001054
1055 return 0;
Mario Sixe3edf162017-02-13 10:11:55 +01001056
1057err_close:
1058 fclose(bin);
1059
1060 return -1;
Mario Six030ca162017-01-11 16:00:58 +01001061}
Mario Six10d14492017-01-11 16:01:00 +01001062
Mario Six10d14492017-01-11 16:01:00 +01001063int export_pub_kak_hash(RSA *kak, struct secure_hdr_v1 *secure_hdr)
1064{
1065 FILE *hashf;
1066 int res;
1067
1068 hashf = fopen("pub_kak_hash.txt", "w");
Heinrich Schuchardt379ec092021-08-17 07:03:20 +02001069 if (!hashf) {
1070 fprintf(stderr, "Couldn't open hash file: '%s': %s\n",
1071 "pub_kak_hash.txt", strerror(errno));
1072 return 1;
1073 }
Mario Six10d14492017-01-11 16:01:00 +01001074
1075 res = kwb_export_pubkey(kak, &secure_hdr->kak, hashf, "KAK");
1076
1077 fclose(hashf);
1078
1079 return res < 0 ? 1 : 0;
1080}
1081
1082int kwb_sign_csk_with_kak(struct image_tool_params *params,
1083 struct secure_hdr_v1 *secure_hdr, RSA *csk)
1084{
1085 RSA *kak = NULL;
1086 RSA *kak_pub = NULL;
1087 int csk_idx = image_get_csk_index();
1088 struct sig_v1 tmp_sig;
1089
Heinrich Schuchardtd8f0f1a2021-08-17 07:11:58 +02001090 if (csk_idx < 0 || csk_idx > 15) {
Mario Six10d14492017-01-11 16:01:00 +01001091 fprintf(stderr, "Invalid CSK index %d\n", csk_idx);
1092 return 1;
1093 }
1094
1095 if (kwb_load_kak(params, &kak) < 0)
1096 return 1;
1097
1098 if (export_pub_kak_hash(kak, secure_hdr))
1099 return 1;
1100
1101 if (kwb_import_pubkey(&kak_pub, &secure_hdr->kak, "KAK") < 0)
1102 return 1;
1103
1104 if (kwb_export_pubkey(csk, &secure_hdr->csk[csk_idx], NULL, "CSK") < 0)
1105 return 1;
1106
1107 if (kwb_sign_and_verify(kak, &secure_hdr->csk,
1108 sizeof(secure_hdr->csk) +
1109 sizeof(secure_hdr->csksig),
1110 &tmp_sig, "CSK") < 0)
1111 return 1;
1112
1113 if (kwb_verify(kak_pub, &secure_hdr->csk,
1114 sizeof(secure_hdr->csk) +
1115 sizeof(secure_hdr->csksig),
1116 &tmp_sig, "CSK (2)") < 0)
1117 return 1;
1118
1119 secure_hdr->csksig = tmp_sig;
1120
1121 return 0;
1122}
1123
1124int add_secure_header_v1(struct image_tool_params *params, uint8_t *ptr,
1125 int payloadsz, size_t headersz, uint8_t *image,
1126 struct secure_hdr_v1 *secure_hdr)
1127{
1128 struct image_cfg_element *e_jtagdelay;
1129 struct image_cfg_element *e_boxid;
1130 struct image_cfg_element *e_flashid;
1131 RSA *csk = NULL;
1132 unsigned char *image_ptr;
1133 size_t image_size;
1134 struct sig_v1 tmp_sig;
1135 bool specialized_img = image_get_spezialized_img();
1136
1137 kwb_msg("Create secure header content\n");
1138
1139 e_jtagdelay = image_find_option(IMAGE_CFG_JTAG_DELAY);
1140 e_boxid = image_find_option(IMAGE_CFG_BOX_ID);
1141 e_flashid = image_find_option(IMAGE_CFG_FLASH_ID);
1142
1143 if (kwb_load_csk(params, &csk) < 0)
1144 return 1;
1145
1146 secure_hdr->headertype = OPT_HDR_V1_SECURE_TYPE;
1147 secure_hdr->headersz_msb = 0;
1148 secure_hdr->headersz_lsb = cpu_to_le16(sizeof(struct secure_hdr_v1));
1149 if (e_jtagdelay)
1150 secure_hdr->jtag_delay = e_jtagdelay->jtag_delay;
1151 if (e_boxid && specialized_img)
1152 secure_hdr->boxid = cpu_to_le32(e_boxid->boxid);
1153 if (e_flashid && specialized_img)
1154 secure_hdr->flashid = cpu_to_le32(e_flashid->flashid);
1155
1156 if (kwb_sign_csk_with_kak(params, secure_hdr, csk))
1157 return 1;
1158
1159 image_ptr = ptr + headersz;
1160 image_size = payloadsz - headersz;
1161
1162 if (kwb_sign_and_verify(csk, image_ptr, image_size,
1163 &secure_hdr->imgsig, "image") < 0)
1164 return 1;
1165
1166 if (kwb_sign_and_verify(csk, image, headersz, &tmp_sig, "header") < 0)
1167 return 1;
1168
1169 secure_hdr->hdrsig = tmp_sig;
1170
1171 kwb_dump_fuse_cmds(secure_hdr);
1172
1173 return 0;
1174}
Mario Six030ca162017-01-11 16:00:58 +01001175
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001176static void *image_create_v1(size_t *imagesz, struct image_tool_params *params,
Mario Six10d14492017-01-11 16:01:00 +01001177 uint8_t *ptr, int payloadsz)
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001178{
Mario Six030ca162017-01-11 16:00:58 +01001179 struct image_cfg_element *e;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001180 struct main_hdr_v1 *main_hdr;
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001181 struct register_set_hdr_v1 *register_set_hdr;
Mario Six10d14492017-01-11 16:01:00 +01001182 struct secure_hdr_v1 *secure_hdr = NULL;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001183 size_t headersz;
Mario Six7497cd62017-01-11 16:00:55 +01001184 uint8_t *image, *cur;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001185 int hasext = 0;
Mario Six10d14492017-01-11 16:01:00 +01001186 uint8_t *next_ext = NULL;
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001187 int cfgi, datai, size;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301188
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001189 /*
1190 * Calculate the size of the header and the size of the
1191 * payload
1192 */
Mario Six855cf9e2017-01-11 16:00:57 +01001193 headersz = image_headersz_v1(&hasext);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001194 if (headersz == 0)
1195 return NULL;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301196
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001197 image = malloc(headersz);
1198 if (!image) {
1199 fprintf(stderr, "Cannot allocate memory for image\n");
1200 return NULL;
1201 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301202
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001203 memset(image, 0, headersz);
1204
Mario Six7497cd62017-01-11 16:00:55 +01001205 main_hdr = (struct main_hdr_v1 *)image;
Mario Six10d14492017-01-11 16:01:00 +01001206 cur = image;
1207 cur += sizeof(struct main_hdr_v1);
1208 next_ext = &main_hdr->ext;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001209
1210 /* Fill the main header */
Reinhard Pfau3efeaae2015-11-29 15:48:25 +01001211 main_hdr->blocksize =
Pali Rohárcfb60a92021-07-23 11:13:56 +02001212 cpu_to_le32(payloadsz - headersz);
Reinhard Pfau3efeaae2015-11-29 15:48:25 +01001213 main_hdr->headersz_lsb = cpu_to_le16(headersz & 0xFFFF);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001214 main_hdr->headersz_msb = (headersz & 0xFFFF0000) >> 16;
Pali Rohárf8171a52021-07-23 11:14:06 +02001215 main_hdr->destaddr = cpu_to_le32(params->addr);
Reinhard Pfau3efeaae2015-11-29 15:48:25 +01001216 main_hdr->execaddr = cpu_to_le32(params->ep);
1217 main_hdr->srcaddr = cpu_to_le32(headersz);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001218 main_hdr->ext = hasext;
1219 main_hdr->version = 1;
1220 e = image_find_option(IMAGE_CFG_BOOT_FROM);
1221 if (e)
1222 main_hdr->blockid = e->bootfrom;
1223 e = image_find_option(IMAGE_CFG_NAND_BLKSZ);
1224 if (e)
1225 main_hdr->nandblocksize = e->nandblksz / (64 * 1024);
1226 e = image_find_option(IMAGE_CFG_NAND_BADBLK_LOCATION);
1227 if (e)
1228 main_hdr->nandbadblklocation = e->nandbadblklocation;
Chris Packham883bf452016-11-09 22:07:45 +13001229 e = image_find_option(IMAGE_CFG_BAUDRATE);
1230 if (e)
1231 main_hdr->options = baudrate_to_option(e->baudrate);
Chris Packham1e0728a2016-11-09 22:21:45 +13001232 e = image_find_option(IMAGE_CFG_DEBUG);
1233 if (e)
1234 main_hdr->flags = e->debug ? 0x1 : 0;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001235
Pali Rohár6f6f65e2021-07-23 11:13:59 +02001236 /*
1237 * For SATA srcaddr is specified in number of sectors starting from
1238 * sector 0. The main header is stored at sector number 1.
1239 * This expects the sector size to be 512 bytes.
1240 * Header size is already aligned.
1241 */
1242 if (main_hdr->blockid == IBR_HDR_SATA_ID)
1243 main_hdr->srcaddr = cpu_to_le32(headersz / 512 + 1);
1244
1245 /*
1246 * For SDIO srcaddr is specified in number of sectors starting from
1247 * sector 0. The main header is stored at sector number 0.
1248 * This expects sector size to be 512 bytes.
1249 * Header size is already aligned.
1250 */
1251 if (main_hdr->blockid == IBR_HDR_SDIO_ID)
1252 main_hdr->srcaddr = cpu_to_le32(headersz / 512);
1253
1254 /* For PCIe srcaddr is not used and must be set to 0xFFFFFFFF. */
1255 if (main_hdr->blockid == IBR_HDR_PEX_ID)
1256 main_hdr->srcaddr = cpu_to_le32(0xFFFFFFFF);
1257
Mario Six10d14492017-01-11 16:01:00 +01001258 if (image_get_csk_index() >= 0) {
1259 /*
1260 * only reserve the space here; we fill the header later since
1261 * we need the header to be complete to compute the signatures
1262 */
1263 secure_hdr = (struct secure_hdr_v1 *)cur;
1264 cur += sizeof(struct secure_hdr_v1);
Pali Roháre0a6dc72021-07-23 11:14:09 +02001265 *next_ext = 1;
Mario Six10d14492017-01-11 16:01:00 +01001266 next_ext = &secure_hdr->next;
1267 }
Mario Six10d14492017-01-11 16:01:00 +01001268
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001269 datai = 0;
1270 register_set_hdr = (struct register_set_hdr_v1 *)cur;
1271 for (cfgi = 0; cfgi < cfgn; cfgi++) {
1272 e = &image_cfg[cfgi];
Pali Rohárc0cfd1a2021-07-23 11:14:12 +02001273 if (e->type != IMAGE_CFG_DATA &&
1274 e->type != IMAGE_CFG_DATA_DELAY)
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001275 continue;
Pali Rohárc0cfd1a2021-07-23 11:14:12 +02001276 if (e->type == IMAGE_CFG_DATA_DELAY) {
1277 size = sizeof(struct register_set_hdr_v1) + 8 * datai + 4;
1278 register_set_hdr->headertype = OPT_HDR_V1_REGISTER_TYPE;
1279 register_set_hdr->headersz_lsb = cpu_to_le16(size & 0xFFFF);
1280 register_set_hdr->headersz_msb = size >> 16;
1281 register_set_hdr->data[datai].last_entry.delay = e->regdata_delay;
1282 cur += size;
1283 *next_ext = 1;
1284 next_ext = &register_set_hdr->data[datai].last_entry.next;
1285 datai = 0;
1286 continue;
1287 }
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001288 register_set_hdr->data[datai].entry.address =
1289 cpu_to_le32(e->regdata.raddr);
1290 register_set_hdr->data[datai].entry.value =
1291 cpu_to_le32(e->regdata.rdata);
1292 datai++;
1293 }
1294 if (datai != 0) {
1295 size = sizeof(struct register_set_hdr_v1) + 8 * datai + 4;
1296 register_set_hdr->headertype = OPT_HDR_V1_REGISTER_TYPE;
1297 register_set_hdr->headersz_lsb = cpu_to_le16(size & 0xFFFF);
1298 register_set_hdr->headersz_msb = size >> 16;
1299 /* Set delay to the smallest possible value 1ms. */
1300 register_set_hdr->data[datai].last_entry.delay = 1;
1301 cur += size;
1302 *next_ext = 1;
1303 next_ext = &register_set_hdr->data[datai].last_entry.next;
1304 }
1305
Pali Roháre0a6dc72021-07-23 11:14:09 +02001306 for (cfgi = 0; cfgi < cfgn; cfgi++) {
1307 e = &image_cfg[cfgi];
1308 if (e->type != IMAGE_CFG_BINARY)
1309 continue;
1310
1311 if (add_binary_header_v1(&cur, &next_ext, e))
1312 return NULL;
1313 }
Mario Six10d14492017-01-11 16:01:00 +01001314
Mario Six10d14492017-01-11 16:01:00 +01001315 if (secure_hdr && add_secure_header_v1(params, ptr, payloadsz,
1316 headersz, image, secure_hdr))
1317 return NULL;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001318
1319 /* Calculate and set the header checksum */
1320 main_hdr->checksum = image_checksum8(main_hdr, headersz);
1321
1322 *imagesz = headersz;
1323 return image;
1324}
1325
Mario Six62da6762017-01-11 16:00:59 +01001326int recognize_keyword(char *keyword)
1327{
1328 int kw_id;
1329
1330 for (kw_id = 1; kw_id < IMAGE_CFG_COUNT; ++kw_id)
1331 if (!strcmp(keyword, id_strs[kw_id]))
1332 return kw_id;
1333
1334 return 0;
1335}
1336
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001337static int image_create_config_parse_oneline(char *line,
1338 struct image_cfg_element *el)
1339{
Mario Six62da6762017-01-11 16:00:59 +01001340 char *keyword, *saveptr, *value1, *value2;
1341 char delimiters[] = " \t";
1342 int keyword_id, ret, argi;
1343 char *unknown_msg = "Ignoring unknown line '%s'\n";
1344
1345 keyword = strtok_r(line, delimiters, &saveptr);
1346 keyword_id = recognize_keyword(keyword);
1347
1348 if (!keyword_id) {
1349 fprintf(stderr, unknown_msg, line);
1350 return 0;
1351 }
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001352
Mario Six62da6762017-01-11 16:00:59 +01001353 el->type = keyword_id;
Mario Sixd6009d72017-01-11 16:00:54 +01001354
Mario Six62da6762017-01-11 16:00:59 +01001355 value1 = strtok_r(NULL, delimiters, &saveptr);
1356
1357 if (!value1) {
1358 fprintf(stderr, "Parameter missing in line '%s'\n", line);
1359 return -1;
1360 }
1361
1362 switch (keyword_id) {
1363 case IMAGE_CFG_VERSION:
1364 el->version = atoi(value1);
1365 break;
1366 case IMAGE_CFG_BOOT_FROM:
1367 ret = image_boot_mode_id(value1);
Mario Sixd6009d72017-01-11 16:00:54 +01001368
Andreas Bießmann4c40e352014-10-24 23:25:52 +02001369 if (ret < 0) {
Mario Six62da6762017-01-11 16:00:59 +01001370 fprintf(stderr, "Invalid boot media '%s'\n", value1);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001371 return -1;
1372 }
Andreas Bießmann4c40e352014-10-24 23:25:52 +02001373 el->bootfrom = ret;
Mario Six62da6762017-01-11 16:00:59 +01001374 break;
1375 case IMAGE_CFG_NAND_BLKSZ:
1376 el->nandblksz = strtoul(value1, NULL, 16);
1377 break;
1378 case IMAGE_CFG_NAND_BADBLK_LOCATION:
1379 el->nandbadblklocation = strtoul(value1, NULL, 16);
1380 break;
1381 case IMAGE_CFG_NAND_ECC_MODE:
1382 ret = image_nand_ecc_mode_id(value1);
Mario Sixd6009d72017-01-11 16:00:54 +01001383
Andreas Bießmann4c40e352014-10-24 23:25:52 +02001384 if (ret < 0) {
Mario Six62da6762017-01-11 16:00:59 +01001385 fprintf(stderr, "Invalid NAND ECC mode '%s'\n", value1);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001386 return -1;
1387 }
Andreas Bießmann4c40e352014-10-24 23:25:52 +02001388 el->nandeccmode = ret;
Mario Six62da6762017-01-11 16:00:59 +01001389 break;
1390 case IMAGE_CFG_NAND_PAGESZ:
1391 el->nandpagesz = strtoul(value1, NULL, 16);
1392 break;
1393 case IMAGE_CFG_BINARY:
1394 argi = 0;
Mario Sixd6009d72017-01-11 16:00:54 +01001395
Mario Six62da6762017-01-11 16:00:59 +01001396 el->binary.file = strdup(value1);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001397 while (1) {
Mario Six62da6762017-01-11 16:00:59 +01001398 char *value = strtok_r(NULL, delimiters, &saveptr);
1399
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001400 if (!value)
1401 break;
1402 el->binary.args[argi] = strtoul(value, NULL, 16);
1403 argi++;
1404 if (argi >= BINARY_MAX_ARGS) {
1405 fprintf(stderr,
Mario Six62da6762017-01-11 16:00:59 +01001406 "Too many arguments for BINARY\n");
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001407 return -1;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301408 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301409 }
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001410 el->binary.nargs = argi;
Mario Six62da6762017-01-11 16:00:59 +01001411 break;
1412 case IMAGE_CFG_DATA:
1413 value2 = strtok_r(NULL, delimiters, &saveptr);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001414
1415 if (!value1 || !value2) {
1416 fprintf(stderr,
1417 "Invalid number of arguments for DATA\n");
1418 return -1;
1419 }
1420
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001421 el->regdata.raddr = strtoul(value1, NULL, 16);
1422 el->regdata.rdata = strtoul(value2, NULL, 16);
Mario Six62da6762017-01-11 16:00:59 +01001423 break;
Pali Rohárc0cfd1a2021-07-23 11:14:12 +02001424 case IMAGE_CFG_DATA_DELAY:
1425 if (!strcmp(value1, "SDRAM_SETUP"))
1426 el->regdata_delay = REGISTER_SET_HDR_OPT_DELAY_SDRAM_SETUP;
1427 else
1428 el->regdata_delay = REGISTER_SET_HDR_OPT_DELAY_MS(strtoul(value1, NULL, 10));
1429 break;
Mario Six62da6762017-01-11 16:00:59 +01001430 case IMAGE_CFG_BAUDRATE:
1431 el->baudrate = strtoul(value1, NULL, 10);
1432 break;
1433 case IMAGE_CFG_DEBUG:
1434 el->debug = strtoul(value1, NULL, 10);
1435 break;
Mario Six10d14492017-01-11 16:01:00 +01001436 case IMAGE_CFG_KAK:
1437 el->key_name = strdup(value1);
1438 break;
1439 case IMAGE_CFG_CSK:
1440 el->key_name = strdup(value1);
1441 break;
1442 case IMAGE_CFG_CSK_INDEX:
1443 el->csk_idx = strtol(value1, NULL, 0);
1444 break;
1445 case IMAGE_CFG_JTAG_DELAY:
1446 el->jtag_delay = strtoul(value1, NULL, 0);
1447 break;
1448 case IMAGE_CFG_BOX_ID:
1449 el->boxid = strtoul(value1, NULL, 0);
1450 break;
1451 case IMAGE_CFG_FLASH_ID:
1452 el->flashid = strtoul(value1, NULL, 0);
1453 break;
1454 case IMAGE_CFG_SEC_SPECIALIZED_IMG:
1455 el->sec_specialized_img = true;
1456 break;
1457 case IMAGE_CFG_SEC_COMMON_IMG:
1458 el->sec_specialized_img = false;
1459 break;
1460 case IMAGE_CFG_SEC_BOOT_DEV:
1461 el->sec_boot_dev = strtoul(value1, NULL, 0);
1462 break;
1463 case IMAGE_CFG_SEC_FUSE_DUMP:
1464 el->name = strdup(value1);
1465 break;
Mario Six62da6762017-01-11 16:00:59 +01001466 default:
1467 fprintf(stderr, unknown_msg, line);
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301468 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301469
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001470 return 0;
1471}
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301472
1473/*
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001474 * Parse the configuration file 'fcfg' into the array of configuration
1475 * elements 'image_cfg', and return the number of configuration
1476 * elements in 'cfgn'.
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301477 */
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001478static int image_create_config_parse(FILE *fcfg)
1479{
1480 int ret;
1481 int cfgi = 0;
1482
1483 /* Parse the configuration file */
1484 while (!feof(fcfg)) {
1485 char *line;
1486 char buf[256];
1487
1488 /* Read the current line */
1489 memset(buf, 0, sizeof(buf));
1490 line = fgets(buf, sizeof(buf), fcfg);
1491 if (!line)
1492 break;
1493
1494 /* Ignore useless lines */
1495 if (line[0] == '\n' || line[0] == '#')
1496 continue;
1497
1498 /* Strip final newline */
1499 if (line[strlen(line) - 1] == '\n')
1500 line[strlen(line) - 1] = 0;
1501
1502 /* Parse the current line */
1503 ret = image_create_config_parse_oneline(line,
1504 &image_cfg[cfgi]);
1505 if (ret)
1506 return ret;
1507
1508 cfgi++;
1509
1510 if (cfgi >= IMAGE_CFG_ELEMENT_MAX) {
1511 fprintf(stderr,
1512 "Too many configuration elements in .cfg file\n");
1513 return -1;
1514 }
1515 }
1516
1517 cfgn = cfgi;
1518 return 0;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301519}
1520
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001521static int image_get_version(void)
1522{
1523 struct image_cfg_element *e;
1524
1525 e = image_find_option(IMAGE_CFG_VERSION);
1526 if (!e)
1527 return -1;
1528
1529 return e->version;
1530}
1531
Pali Rohár04785152021-07-23 11:13:57 +02001532static int image_get_bootfrom(void)
1533{
1534 struct image_cfg_element *e;
1535
1536 e = image_find_option(IMAGE_CFG_BOOT_FROM);
1537 if (!e)
1538 return -1;
1539
1540 return e->bootfrom;
1541}
1542
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001543static void kwbimage_set_header(void *ptr, struct stat *sbuf, int ifd,
Guilherme Maciel Ferreira8ed4d1c2013-12-01 12:43:10 -07001544 struct image_tool_params *params)
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301545{
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001546 FILE *fcfg;
1547 void *image = NULL;
1548 int version;
Łukasz Majewskif04dab42014-11-21 09:22:43 +01001549 size_t headersz = 0;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301550 uint32_t checksum;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001551 int ret;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301552
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001553 fcfg = fopen(params->imagename, "r");
1554 if (!fcfg) {
1555 fprintf(stderr, "Could not open input file %s\n",
1556 params->imagename);
1557 exit(EXIT_FAILURE);
1558 }
1559
1560 image_cfg = malloc(IMAGE_CFG_ELEMENT_MAX *
1561 sizeof(struct image_cfg_element));
1562 if (!image_cfg) {
1563 fprintf(stderr, "Cannot allocate memory\n");
1564 fclose(fcfg);
1565 exit(EXIT_FAILURE);
1566 }
1567
1568 memset(image_cfg, 0,
1569 IMAGE_CFG_ELEMENT_MAX * sizeof(struct image_cfg_element));
1570 rewind(fcfg);
1571
1572 ret = image_create_config_parse(fcfg);
1573 fclose(fcfg);
1574 if (ret) {
1575 free(image_cfg);
1576 exit(EXIT_FAILURE);
1577 }
1578
1579 version = image_get_version();
Stefan Roese933918c2014-10-28 11:32:24 +01001580 switch (version) {
1581 /*
1582 * Fallback to version 0 if no version is provided in the
1583 * cfg file
1584 */
1585 case -1:
1586 case 0:
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001587 image = image_create_v0(&headersz, params, sbuf->st_size);
Stefan Roese933918c2014-10-28 11:32:24 +01001588 break;
1589
1590 case 1:
Mario Six10d14492017-01-11 16:01:00 +01001591 image = image_create_v1(&headersz, params, ptr, sbuf->st_size);
Stefan Roese933918c2014-10-28 11:32:24 +01001592 break;
1593
1594 default:
1595 fprintf(stderr, "Unsupported version %d\n", version);
1596 free(image_cfg);
1597 exit(EXIT_FAILURE);
1598 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301599
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001600 if (!image) {
1601 fprintf(stderr, "Could not create image\n");
1602 free(image_cfg);
1603 exit(EXIT_FAILURE);
1604 }
1605
1606 free(image_cfg);
1607
1608 /* Build and add image checksum header */
Pali Rohárcfb60a92021-07-23 11:13:56 +02001609 checksum = cpu_to_le32(image_checksum32((uint8_t *)ptr + headersz,
1610 sbuf->st_size - headersz - sizeof(uint32_t)));
1611 memcpy((uint8_t *)ptr + sbuf->st_size - sizeof(uint32_t), &checksum,
1612 sizeof(uint32_t));
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301613
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001614 /* Finally copy the header into the image area */
1615 memcpy(ptr, image, headersz);
1616
1617 free(image);
1618}
1619
1620static void kwbimage_print_header(const void *ptr)
1621{
1622 struct main_hdr_v0 *mhdr = (struct main_hdr_v0 *)ptr;
1623
1624 printf("Image Type: MVEBU Boot from %s Image\n",
1625 image_boot_mode_name(mhdr->blockid));
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001626 printf("Image version:%d\n", image_version((void *)ptr));
Pali Rohárcd614ad2021-07-23 11:14:04 +02001627 if (image_version((void *)ptr) == 1) {
1628 struct main_hdr_v1 *mhdr = (struct main_hdr_v1 *)ptr;
1629
1630 if (mhdr->ext & 0x1) {
1631 struct opt_hdr_v1 *ohdr = (struct opt_hdr_v1 *)
1632 ((uint8_t *)ptr +
1633 sizeof(*mhdr));
1634
1635 while (1) {
1636 uint32_t ohdr_size;
1637
1638 ohdr_size = (ohdr->headersz_msb << 16) |
1639 le16_to_cpu(ohdr->headersz_lsb);
1640 if (ohdr->headertype == OPT_HDR_V1_BINARY_TYPE) {
1641 printf("BIN Hdr Size: ");
1642 genimg_print_size(ohdr_size - 12 - 4 * ohdr->data[0]);
1643 }
1644 if (!(*((uint8_t *)ohdr + ohdr_size - 4) & 0x1))
1645 break;
1646 ohdr = (struct opt_hdr_v1 *)((uint8_t *)ohdr +
1647 ohdr_size);
1648 }
1649 }
1650 }
Gerald Kerma8f9e5832014-10-31 01:03:27 +01001651 printf("Data Size: ");
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001652 genimg_print_size(mhdr->blocksize - sizeof(uint32_t));
1653 printf("Load Address: %08x\n", mhdr->destaddr);
1654 printf("Entry Point: %08x\n", mhdr->execaddr);
1655}
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301656
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001657static int kwbimage_check_image_types(uint8_t type)
1658{
1659 if (type == IH_TYPE_KWBIMAGE)
1660 return EXIT_SUCCESS;
Mario Sixd6009d72017-01-11 16:00:54 +01001661
1662 return EXIT_FAILURE;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301663}
1664
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001665static int kwbimage_verify_header(unsigned char *ptr, int image_size,
1666 struct image_tool_params *params)
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301667{
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001668 uint8_t checksum;
Alexander Graf22e87fc2018-03-15 11:14:19 +01001669 size_t header_size = kwbimage_header_size(ptr);
1670
1671 if (header_size > image_size)
1672 return -FDT_ERR_BADSTRUCTURE;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301673
Baruch Siach4a5b99b2017-07-04 20:23:40 +03001674 if (!main_hdr_checksum_ok(ptr))
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001675 return -FDT_ERR_BADSTRUCTURE;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301676
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001677 /* Only version 0 extended header has checksum */
1678 if (image_version((void *)ptr) == 0) {
Pali Rohár03345b92021-07-23 11:14:01 +02001679 struct main_hdr_v0 *mhdr = (struct main_hdr_v0 *)ptr;
Mario Six6f273632017-01-11 16:00:56 +01001680
Pali Rohár03345b92021-07-23 11:14:01 +02001681 if (mhdr->ext & 0x1) {
1682 struct ext_hdr_v0 *ext_hdr;
1683
Pali Rohára98cc272021-08-11 10:14:15 +02001684 if (header_size + sizeof(*ext_hdr) > image_size)
1685 return -FDT_ERR_BADSTRUCTURE;
1686
Pali Rohár03345b92021-07-23 11:14:01 +02001687 ext_hdr = (struct ext_hdr_v0 *)
Mario Six7497cd62017-01-11 16:00:55 +01001688 (ptr + sizeof(struct main_hdr_v0));
Pali Rohár03345b92021-07-23 11:14:01 +02001689 checksum = image_checksum8(ext_hdr,
1690 sizeof(struct ext_hdr_v0)
1691 - sizeof(uint8_t));
1692 if (checksum != ext_hdr->checksum)
1693 return -FDT_ERR_BADSTRUCTURE;
1694 }
Pali Rohár010e2522021-08-11 10:14:14 +02001695 } else if (image_version((void *)ptr) == 1) {
Pali Rohárfdb575a2021-07-23 11:14:02 +02001696 struct main_hdr_v1 *mhdr = (struct main_hdr_v1 *)ptr;
Pali Rohár48bc68c2021-07-23 11:14:03 +02001697 uint32_t offset;
1698 uint32_t size;
Pali Rohárfdb575a2021-07-23 11:14:02 +02001699
1700 if (mhdr->ext & 0x1) {
1701 uint32_t ohdr_size;
1702 struct opt_hdr_v1 *ohdr = (struct opt_hdr_v1 *)
1703 (ptr + sizeof(*mhdr));
1704
1705 while (1) {
1706 if ((uint8_t *)ohdr + sizeof(*ohdr) >
1707 (uint8_t *)mhdr + header_size)
1708 return -FDT_ERR_BADSTRUCTURE;
1709
1710 ohdr_size = (ohdr->headersz_msb << 16) |
1711 le16_to_cpu(ohdr->headersz_lsb);
1712
1713 if (ohdr_size < 8 ||
1714 (uint8_t *)ohdr + ohdr_size >
1715 (uint8_t *)mhdr + header_size)
1716 return -FDT_ERR_BADSTRUCTURE;
1717
1718 if (!(*((uint8_t *)ohdr + ohdr_size - 4) & 0x1))
1719 break;
1720 ohdr = (struct opt_hdr_v1 *)((uint8_t *)ohdr +
1721 ohdr_size);
1722 }
1723 }
Pali Rohár48bc68c2021-07-23 11:14:03 +02001724
1725 offset = le32_to_cpu(mhdr->srcaddr);
1726
1727 /*
1728 * For SATA srcaddr is specified in number of sectors.
1729 * The main header is must be stored at sector number 1.
1730 * This expects that sector size is 512 bytes and recalculates
1731 * data offset to bytes relative to the main header.
1732 */
1733 if (mhdr->blockid == IBR_HDR_SATA_ID) {
1734 if (offset < 1)
1735 return -FDT_ERR_BADSTRUCTURE;
1736 offset -= 1;
1737 offset *= 512;
1738 }
1739
1740 /*
1741 * For SDIO srcaddr is specified in number of sectors.
1742 * This expects that sector size is 512 bytes and recalculates
1743 * data offset to bytes.
1744 */
1745 if (mhdr->blockid == IBR_HDR_SDIO_ID)
1746 offset *= 512;
1747
1748 /*
1749 * For PCIe srcaddr is always set to 0xFFFFFFFF.
1750 * This expects that data starts after all headers.
1751 */
1752 if (mhdr->blockid == IBR_HDR_PEX_ID && offset == 0xFFFFFFFF)
1753 offset = header_size;
1754
1755 if (offset > image_size || offset % 4 != 0)
1756 return -FDT_ERR_BADSTRUCTURE;
1757
1758 size = le32_to_cpu(mhdr->blocksize);
Pali Roháre27c00b2021-08-11 10:14:16 +02001759 if (size < 4 || offset + size > image_size || size % 4 != 0)
Pali Rohár48bc68c2021-07-23 11:14:03 +02001760 return -FDT_ERR_BADSTRUCTURE;
1761
1762 if (image_checksum32(ptr + offset, size - 4) !=
1763 *(uint32_t *)(ptr + offset + size - 4))
1764 return -FDT_ERR_BADSTRUCTURE;
Pali Rohár010e2522021-08-11 10:14:14 +02001765 } else {
1766 return -FDT_ERR_BADSTRUCTURE;
Pali Rohárfdb575a2021-07-23 11:14:02 +02001767 }
1768
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301769 return 0;
1770}
1771
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001772static int kwbimage_generate(struct image_tool_params *params,
1773 struct image_type_params *tparams)
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301774{
Patrick Wildtef84f822017-05-10 22:18:54 +02001775 FILE *fcfg;
Pali Rohárcfb60a92021-07-23 11:13:56 +02001776 struct stat s;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001777 int alloc_len;
Pali Rohár04785152021-07-23 11:13:57 +02001778 int bootfrom;
Patrick Wildtef84f822017-05-10 22:18:54 +02001779 int version;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001780 void *hdr;
Patrick Wildtef84f822017-05-10 22:18:54 +02001781 int ret;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301782
Patrick Wildtef84f822017-05-10 22:18:54 +02001783 fcfg = fopen(params->imagename, "r");
1784 if (!fcfg) {
1785 fprintf(stderr, "Could not open input file %s\n",
1786 params->imagename);
1787 exit(EXIT_FAILURE);
1788 }
1789
Pali Rohárcfb60a92021-07-23 11:13:56 +02001790 if (stat(params->datafile, &s)) {
1791 fprintf(stderr, "Could not stat data file %s: %s\n",
1792 params->datafile, strerror(errno));
1793 exit(EXIT_FAILURE);
1794 }
1795
Patrick Wildtef84f822017-05-10 22:18:54 +02001796 image_cfg = malloc(IMAGE_CFG_ELEMENT_MAX *
1797 sizeof(struct image_cfg_element));
1798 if (!image_cfg) {
1799 fprintf(stderr, "Cannot allocate memory\n");
1800 fclose(fcfg);
1801 exit(EXIT_FAILURE);
1802 }
1803
1804 memset(image_cfg, 0,
1805 IMAGE_CFG_ELEMENT_MAX * sizeof(struct image_cfg_element));
1806 rewind(fcfg);
1807
1808 ret = image_create_config_parse(fcfg);
1809 fclose(fcfg);
1810 if (ret) {
1811 free(image_cfg);
1812 exit(EXIT_FAILURE);
1813 }
1814
Pali Rohár04785152021-07-23 11:13:57 +02001815 bootfrom = image_get_bootfrom();
Patrick Wildtef84f822017-05-10 22:18:54 +02001816 version = image_get_version();
1817 switch (version) {
1818 /*
1819 * Fallback to version 0 if no version is provided in the
1820 * cfg file
1821 */
1822 case -1:
1823 case 0:
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001824 alloc_len = sizeof(struct main_hdr_v0) +
1825 sizeof(struct ext_hdr_v0);
Patrick Wildtef84f822017-05-10 22:18:54 +02001826 break;
1827
1828 case 1:
Mario Six855cf9e2017-01-11 16:00:57 +01001829 alloc_len = image_headersz_v1(NULL);
Patrick Wildtef84f822017-05-10 22:18:54 +02001830 break;
1831
1832 default:
1833 fprintf(stderr, "Unsupported version %d\n", version);
1834 free(image_cfg);
1835 exit(EXIT_FAILURE);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001836 }
1837
Patrick Wildtef84f822017-05-10 22:18:54 +02001838 free(image_cfg);
1839
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001840 hdr = malloc(alloc_len);
1841 if (!hdr) {
1842 fprintf(stderr, "%s: malloc return failure: %s\n",
1843 params->cmdname, strerror(errno));
1844 exit(EXIT_FAILURE);
1845 }
1846
1847 memset(hdr, 0, alloc_len);
1848 tparams->header_size = alloc_len;
1849 tparams->hdr = hdr;
1850
Stefan Roeseda43fd32015-11-24 09:14:59 +01001851 /*
1852 * The resulting image needs to be 4-byte aligned. At least
1853 * the Marvell hdrparser tool complains if its unaligned.
Pali Rohárcfb60a92021-07-23 11:13:56 +02001854 * After the image data is stored 4-byte checksum.
Pali Rohár04785152021-07-23 11:13:57 +02001855 * Final SPI and NAND images must be aligned to 256 bytes.
Pali Rohár6f6f65e2021-07-23 11:13:59 +02001856 * Final SATA and SDIO images must be aligned to 512 bytes.
Stefan Roeseda43fd32015-11-24 09:14:59 +01001857 */
Pali Rohár04785152021-07-23 11:13:57 +02001858 if (bootfrom == IBR_HDR_SPI_ID || bootfrom == IBR_HDR_NAND_ID)
1859 return 4 + (256 - (alloc_len + s.st_size + 4) % 256) % 256;
Pali Rohár6f6f65e2021-07-23 11:13:59 +02001860 else if (bootfrom == IBR_HDR_SATA_ID || bootfrom == IBR_HDR_SDIO_ID)
1861 return 4 + (512 - (alloc_len + s.st_size + 4) % 512) % 512;
Pali Rohár04785152021-07-23 11:13:57 +02001862 else
1863 return 4 + (4 - s.st_size % 4) % 4;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301864}
1865
Pali Rohár5ec2c582021-07-23 11:14:34 +02001866static int kwbimage_extract_subimage(void *ptr, struct image_tool_params *params)
1867{
1868 struct main_hdr_v1 *mhdr = (struct main_hdr_v1 *)ptr;
1869 size_t header_size = kwbimage_header_size(ptr);
1870 int idx = params->pflag;
1871 int cur_idx = 0;
1872 uint32_t offset;
1873 ulong image;
1874 ulong size;
1875
1876 if (image_version((void *)ptr) == 1 && (mhdr->ext & 0x1)) {
1877 struct opt_hdr_v1 *ohdr = (struct opt_hdr_v1 *)
1878 ((uint8_t *)ptr +
1879 sizeof(*mhdr));
1880
1881 while (1) {
1882 uint32_t ohdr_size = (ohdr->headersz_msb << 16) |
1883 le16_to_cpu(ohdr->headersz_lsb);
1884
1885 if (ohdr->headertype == OPT_HDR_V1_BINARY_TYPE) {
1886 if (idx == cur_idx) {
1887 image = (ulong)&ohdr->data[4 +
1888 4 * ohdr->data[0]];
1889 size = ohdr_size - 12 -
1890 4 * ohdr->data[0];
1891 goto extract;
1892 }
1893 ++cur_idx;
1894 }
1895 if (!(*((uint8_t *)ohdr + ohdr_size - 4) & 0x1))
1896 break;
1897 ohdr = (struct opt_hdr_v1 *)((uint8_t *)ohdr +
1898 ohdr_size);
1899 }
1900 }
1901
1902 if (idx != cur_idx) {
1903 printf("Image %d is not present\n", idx);
1904 return -1;
1905 }
1906
1907 offset = le32_to_cpu(mhdr->srcaddr);
1908
1909 if (mhdr->blockid == IBR_HDR_SATA_ID) {
1910 offset -= 1;
1911 offset *= 512;
1912 }
1913
1914 if (mhdr->blockid == IBR_HDR_SDIO_ID)
1915 offset *= 512;
1916
1917 if (mhdr->blockid == IBR_HDR_PEX_ID && offset == 0xFFFFFFFF)
1918 offset = header_size;
1919
1920 image = (ulong)((uint8_t *)ptr + offset);
1921 size = le32_to_cpu(mhdr->blocksize) - 4;
1922
1923extract:
1924 return imagetool_save_subimage(params->outfile, image, size);
1925}
1926
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001927/*
1928 * Report Error if xflag is set in addition to default
1929 */
1930static int kwbimage_check_params(struct image_tool_params *params)
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301931{
Pali Rohár5ec2c582021-07-23 11:14:34 +02001932 if (!params->iflag && (!params->imagename || !strlen(params->imagename))) {
Mario Sixd6009d72017-01-11 16:00:54 +01001933 char *msg = "Configuration file for kwbimage creation omitted";
1934
1935 fprintf(stderr, "Error:%s - %s\n", params->cmdname, msg);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001936 return CFG_INVALID;
1937 }
1938
1939 return (params->dflag && (params->fflag || params->lflag)) ||
1940 (params->fflag && (params->dflag || params->lflag)) ||
1941 (params->lflag && (params->dflag || params->fflag)) ||
Pali Rohár5ec2c582021-07-23 11:14:34 +02001942 (params->xflag);
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301943}
1944
1945/*
1946 * kwbimage type parameters definition
1947 */
Guilherme Maciel Ferreira28be1cf2015-01-15 02:48:07 -02001948U_BOOT_IMAGE_TYPE(
1949 kwbimage,
1950 "Marvell MVEBU Boot Image support",
1951 0,
1952 NULL,
1953 kwbimage_check_params,
1954 kwbimage_verify_header,
1955 kwbimage_print_header,
1956 kwbimage_set_header,
Pali Rohár5ec2c582021-07-23 11:14:34 +02001957 kwbimage_extract_subimage,
Guilherme Maciel Ferreira28be1cf2015-01-15 02:48:07 -02001958 kwbimage_check_image_types,
1959 NULL,
1960 kwbimage_generate
1961);