blob: f24d49496b2fc3a3cf6eccf6321c8013172aa2a6 [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
Pali Rohárbeddea82021-09-24 23:07:02 +02004 * supports Kirkwood, Dove, Armada 370, Armada XP, Armada 375, Armada 38x and
5 * Armada 39x
Stefan Roese3b8b19d2014-10-22 12:13:23 +02006 *
7 * (C) Copyright 2013 Thomas Petazzoni
8 * <thomas.petazzoni@free-electrons.com>
Prafulla Wadaskar07329412009-09-07 15:05:02 +05309 */
10
Guilherme Maciel Ferreira8ed4d1c2013-12-01 12:43:10 -070011#include "imagetool.h"
Andreas Bießmann7abec5b2014-10-24 23:39:11 +020012#include <limits.h>
Prafulla Wadaskar07329412009-09-07 15:05:02 +053013#include <image.h>
Mario Six10d14492017-01-11 16:01:00 +010014#include <stdarg.h>
Stefan Roese3b8b19d2014-10-22 12:13:23 +020015#include <stdint.h>
Prafulla Wadaskar07329412009-09-07 15:05:02 +053016#include "kwbimage.h"
17
Jelle van der Waae0e55592017-05-08 21:31:20 +020018#include <openssl/bn.h>
Mario Six10d14492017-01-11 16:01:00 +010019#include <openssl/rsa.h>
20#include <openssl/pem.h>
21#include <openssl/err.h>
22#include <openssl/evp.h>
Jelle van der Waae0e55592017-05-08 21:31:20 +020023
Jonathan Gray237d0592018-02-21 02:59:01 +110024#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
25 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
Jelle van der Waae0e55592017-05-08 21:31:20 +020026static void RSA_get0_key(const RSA *r,
27 const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
28{
29 if (n != NULL)
30 *n = r->n;
31 if (e != NULL)
32 *e = r->e;
33 if (d != NULL)
34 *d = r->d;
35}
36
Jonathan Gray237d0592018-02-21 02:59:01 +110037#elif !defined(LIBRESSL_VERSION_NUMBER)
Jelle van der Waae0e55592017-05-08 21:31:20 +020038void EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx)
39{
40 EVP_MD_CTX_reset(ctx);
41}
42#endif
Mario Six10d14492017-01-11 16:01:00 +010043
Stefan Roese3b8b19d2014-10-22 12:13:23 +020044static struct image_cfg_element *image_cfg;
45static int cfgn;
Mario Six10d14492017-01-11 16:01:00 +010046static int verbose_mode;
Stefan Roese3b8b19d2014-10-22 12:13:23 +020047
48struct boot_mode {
49 unsigned int id;
50 const char *name;
51};
52
Mario Six10d14492017-01-11 16:01:00 +010053/*
54 * SHA2-256 hash
55 */
56struct hash_v1 {
57 uint8_t hash[32];
58};
59
Stefan Roese3b8b19d2014-10-22 12:13:23 +020060struct boot_mode boot_modes[] = {
Pali Rohár611a16b2021-08-11 10:14:17 +020061 { IBR_HDR_I2C_ID, "i2c" },
62 { IBR_HDR_SPI_ID, "spi" },
63 { IBR_HDR_NAND_ID, "nand" },
64 { IBR_HDR_SATA_ID, "sata" },
65 { IBR_HDR_PEX_ID, "pex" },
66 { IBR_HDR_UART_ID, "uart" },
67 { IBR_HDR_SDIO_ID, "sdio" },
Stefan Roese3b8b19d2014-10-22 12:13:23 +020068 {},
Prafulla Wadaskar07329412009-09-07 15:05:02 +053069};
70
Stefan Roese3b8b19d2014-10-22 12:13:23 +020071struct nand_ecc_mode {
72 unsigned int id;
73 const char *name;
74};
75
76struct nand_ecc_mode nand_ecc_modes[] = {
Pali Rohár611a16b2021-08-11 10:14:17 +020077 { IBR_HDR_ECC_DEFAULT, "default" },
78 { IBR_HDR_ECC_FORCED_HAMMING, "hamming" },
79 { IBR_HDR_ECC_FORCED_RS, "rs" },
80 { IBR_HDR_ECC_DISABLED, "disabled" },
Stefan Roese3b8b19d2014-10-22 12:13:23 +020081 {},
82};
83
84/* Used to identify an undefined execution or destination address */
85#define ADDR_INVALID ((uint32_t)-1)
86
Pali Rohár13b70402021-07-23 11:14:07 +020087#define BINARY_MAX_ARGS 255
Stefan Roese3b8b19d2014-10-22 12:13:23 +020088
89/* In-memory representation of a line of the configuration file */
Mario Six62da6762017-01-11 16:00:59 +010090
91enum image_cfg_type {
92 IMAGE_CFG_VERSION = 0x1,
93 IMAGE_CFG_BOOT_FROM,
94 IMAGE_CFG_DEST_ADDR,
95 IMAGE_CFG_EXEC_ADDR,
96 IMAGE_CFG_NAND_BLKSZ,
97 IMAGE_CFG_NAND_BADBLK_LOCATION,
98 IMAGE_CFG_NAND_ECC_MODE,
99 IMAGE_CFG_NAND_PAGESZ,
100 IMAGE_CFG_BINARY,
Mario Six62da6762017-01-11 16:00:59 +0100101 IMAGE_CFG_DATA,
Pali Rohárc0cfd1a2021-07-23 11:14:12 +0200102 IMAGE_CFG_DATA_DELAY,
Mario Six62da6762017-01-11 16:00:59 +0100103 IMAGE_CFG_BAUDRATE,
Pali Rohárd8840942021-11-08 18:12:41 +0100104 IMAGE_CFG_UART_PORT,
105 IMAGE_CFG_UART_MPP,
Mario Six62da6762017-01-11 16:00:59 +0100106 IMAGE_CFG_DEBUG,
Mario Six10d14492017-01-11 16:01:00 +0100107 IMAGE_CFG_KAK,
108 IMAGE_CFG_CSK,
109 IMAGE_CFG_CSK_INDEX,
110 IMAGE_CFG_JTAG_DELAY,
111 IMAGE_CFG_BOX_ID,
112 IMAGE_CFG_FLASH_ID,
113 IMAGE_CFG_SEC_COMMON_IMG,
114 IMAGE_CFG_SEC_SPECIALIZED_IMG,
115 IMAGE_CFG_SEC_BOOT_DEV,
116 IMAGE_CFG_SEC_FUSE_DUMP,
Mario Six62da6762017-01-11 16:00:59 +0100117
118 IMAGE_CFG_COUNT
119} type;
120
121static const char * const id_strs[] = {
122 [IMAGE_CFG_VERSION] = "VERSION",
123 [IMAGE_CFG_BOOT_FROM] = "BOOT_FROM",
124 [IMAGE_CFG_DEST_ADDR] = "DEST_ADDR",
125 [IMAGE_CFG_EXEC_ADDR] = "EXEC_ADDR",
126 [IMAGE_CFG_NAND_BLKSZ] = "NAND_BLKSZ",
127 [IMAGE_CFG_NAND_BADBLK_LOCATION] = "NAND_BADBLK_LOCATION",
128 [IMAGE_CFG_NAND_ECC_MODE] = "NAND_ECC_MODE",
129 [IMAGE_CFG_NAND_PAGESZ] = "NAND_PAGE_SIZE",
130 [IMAGE_CFG_BINARY] = "BINARY",
Mario Six62da6762017-01-11 16:00:59 +0100131 [IMAGE_CFG_DATA] = "DATA",
Pali Rohárc0cfd1a2021-07-23 11:14:12 +0200132 [IMAGE_CFG_DATA_DELAY] = "DATA_DELAY",
Mario Six62da6762017-01-11 16:00:59 +0100133 [IMAGE_CFG_BAUDRATE] = "BAUDRATE",
Pali Rohárd8840942021-11-08 18:12:41 +0100134 [IMAGE_CFG_UART_PORT] = "UART_PORT",
135 [IMAGE_CFG_UART_MPP] = "UART_MPP",
Mario Six62da6762017-01-11 16:00:59 +0100136 [IMAGE_CFG_DEBUG] = "DEBUG",
Mario Six10d14492017-01-11 16:01:00 +0100137 [IMAGE_CFG_KAK] = "KAK",
138 [IMAGE_CFG_CSK] = "CSK",
139 [IMAGE_CFG_CSK_INDEX] = "CSK_INDEX",
140 [IMAGE_CFG_JTAG_DELAY] = "JTAG_DELAY",
141 [IMAGE_CFG_BOX_ID] = "BOX_ID",
142 [IMAGE_CFG_FLASH_ID] = "FLASH_ID",
143 [IMAGE_CFG_SEC_COMMON_IMG] = "SEC_COMMON_IMG",
144 [IMAGE_CFG_SEC_SPECIALIZED_IMG] = "SEC_SPECIALIZED_IMG",
145 [IMAGE_CFG_SEC_BOOT_DEV] = "SEC_BOOT_DEV",
146 [IMAGE_CFG_SEC_FUSE_DUMP] = "SEC_FUSE_DUMP"
Mario Six62da6762017-01-11 16:00:59 +0100147};
148
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200149struct image_cfg_element {
Mario Six62da6762017-01-11 16:00:59 +0100150 enum image_cfg_type type;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200151 union {
152 unsigned int version;
153 unsigned int bootfrom;
154 struct {
155 const char *file;
156 unsigned int args[BINARY_MAX_ARGS];
157 unsigned int nargs;
158 } binary;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200159 unsigned int dstaddr;
160 unsigned int execaddr;
161 unsigned int nandblksz;
162 unsigned int nandbadblklocation;
163 unsigned int nandeccmode;
164 unsigned int nandpagesz;
165 struct ext_hdr_v0_reg regdata;
Pali Rohárc0cfd1a2021-07-23 11:14:12 +0200166 unsigned int regdata_delay;
Chris Packham883bf452016-11-09 22:07:45 +1300167 unsigned int baudrate;
Pali Rohárd8840942021-11-08 18:12:41 +0100168 unsigned int uart_port;
169 unsigned int uart_mpp;
Chris Packham1e0728a2016-11-09 22:21:45 +1300170 unsigned int debug;
Mario Six10d14492017-01-11 16:01:00 +0100171 const char *key_name;
172 int csk_idx;
173 uint8_t jtag_delay;
174 uint32_t boxid;
175 uint32_t flashid;
176 bool sec_specialized_img;
177 unsigned int sec_boot_dev;
178 const char *name;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200179 };
180};
181
182#define IMAGE_CFG_ELEMENT_MAX 256
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530183
184/*
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200185 * Utility functions to manipulate boot mode and ecc modes (convert
186 * them back and forth between description strings and the
187 * corresponding numerical identifiers).
188 */
189
190static const char *image_boot_mode_name(unsigned int id)
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530191{
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200192 int i;
Mario Sixd6009d72017-01-11 16:00:54 +0100193
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200194 for (i = 0; boot_modes[i].name; i++)
195 if (boot_modes[i].id == id)
196 return boot_modes[i].name;
197 return NULL;
198}
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530199
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200200int image_boot_mode_id(const char *boot_mode_name)
201{
202 int i;
Mario Sixd6009d72017-01-11 16:00:54 +0100203
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200204 for (i = 0; boot_modes[i].name; i++)
205 if (!strcmp(boot_modes[i].name, boot_mode_name))
206 return boot_modes[i].id;
207
208 return -1;
209}
210
211int image_nand_ecc_mode_id(const char *nand_ecc_mode_name)
212{
213 int i;
Mario Sixd6009d72017-01-11 16:00:54 +0100214
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200215 for (i = 0; nand_ecc_modes[i].name; i++)
216 if (!strcmp(nand_ecc_modes[i].name, nand_ecc_mode_name))
217 return nand_ecc_modes[i].id;
218 return -1;
219}
220
221static struct image_cfg_element *
222image_find_option(unsigned int optiontype)
223{
224 int i;
225
226 for (i = 0; i < cfgn; i++) {
227 if (image_cfg[i].type == optiontype)
228 return &image_cfg[i];
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530229 }
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200230
231 return NULL;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530232}
233
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200234static unsigned int
235image_count_options(unsigned int optiontype)
236{
237 int i;
238 unsigned int count = 0;
239
240 for (i = 0; i < cfgn; i++)
241 if (image_cfg[i].type == optiontype)
242 count++;
243
244 return count;
245}
246
Mario Six10d14492017-01-11 16:01:00 +0100247static int image_get_csk_index(void)
248{
249 struct image_cfg_element *e;
250
251 e = image_find_option(IMAGE_CFG_CSK_INDEX);
252 if (!e)
253 return -1;
254
255 return e->csk_idx;
256}
257
258static bool image_get_spezialized_img(void)
259{
260 struct image_cfg_element *e;
261
262 e = image_find_option(IMAGE_CFG_SEC_SPECIALIZED_IMG);
263 if (!e)
264 return false;
265
266 return e->sec_specialized_img;
267}
268
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530269/*
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200270 * Compute a 8-bit checksum of a memory area. This algorithm follows
271 * the requirements of the Marvell SoC BootROM specifications.
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530272 */
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200273static uint8_t image_checksum8(void *start, uint32_t len)
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530274{
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200275 uint8_t csum = 0;
276 uint8_t *p = start;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530277
278 /* check len and return zero checksum if invalid */
279 if (!len)
280 return 0;
281
282 do {
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200283 csum += *p;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530284 p++;
285 } while (--len);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200286
287 return csum;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530288}
289
Baruch Siach4a5b99b2017-07-04 20:23:40 +0300290/*
291 * Verify checksum over a complete header that includes the checksum field.
292 * Return 1 when OK, otherwise 0.
293 */
294static int main_hdr_checksum_ok(void *hdr)
295{
296 /* Offsets of checksum in v0 and v1 headers are the same */
297 struct main_hdr_v0 *main_hdr = (struct main_hdr_v0 *)hdr;
298 uint8_t checksum;
299
Marek Behúnd1b0b032021-09-24 23:07:01 +0200300 checksum = image_checksum8(hdr, kwbheader_size_for_csum(hdr));
Baruch Siach4a5b99b2017-07-04 20:23:40 +0300301 /* Calculated checksum includes the header checksum field. Compensate
302 * for that.
303 */
304 checksum -= main_hdr->checksum;
305
306 return checksum == main_hdr->checksum;
307}
308
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200309static uint32_t image_checksum32(void *start, uint32_t len)
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530310{
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200311 uint32_t csum = 0;
312 uint32_t *p = start;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530313
314 /* check len and return zero checksum if invalid */
315 if (!len)
316 return 0;
317
318 if (len % sizeof(uint32_t)) {
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200319 fprintf(stderr, "Length %d is not in multiple of %zu\n",
320 len, sizeof(uint32_t));
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530321 return 0;
322 }
323
324 do {
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200325 csum += *p;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530326 p++;
327 len -= sizeof(uint32_t);
328 } while (len > 0);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200329
330 return csum;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530331}
332
Chris Packham883bf452016-11-09 22:07:45 +1300333static uint8_t baudrate_to_option(unsigned int baudrate)
334{
335 switch (baudrate) {
336 case 2400:
337 return MAIN_HDR_V1_OPT_BAUD_2400;
338 case 4800:
339 return MAIN_HDR_V1_OPT_BAUD_4800;
340 case 9600:
341 return MAIN_HDR_V1_OPT_BAUD_9600;
342 case 19200:
343 return MAIN_HDR_V1_OPT_BAUD_19200;
344 case 38400:
345 return MAIN_HDR_V1_OPT_BAUD_38400;
346 case 57600:
347 return MAIN_HDR_V1_OPT_BAUD_57600;
348 case 115200:
349 return MAIN_HDR_V1_OPT_BAUD_115200;
350 default:
351 return MAIN_HDR_V1_OPT_BAUD_DEFAULT;
352 }
353}
354
Mario Six10d14492017-01-11 16:01:00 +0100355static void kwb_msg(const char *fmt, ...)
356{
357 if (verbose_mode) {
358 va_list ap;
359
360 va_start(ap, fmt);
361 vfprintf(stdout, fmt, ap);
362 va_end(ap);
363 }
364}
365
366static int openssl_err(const char *msg)
367{
368 unsigned long ssl_err = ERR_get_error();
369
370 fprintf(stderr, "%s", msg);
371 fprintf(stderr, ": %s\n",
372 ERR_error_string(ssl_err, 0));
373
374 return -1;
375}
376
377static int kwb_load_rsa_key(const char *keydir, const char *name, RSA **p_rsa)
378{
379 char path[PATH_MAX];
380 RSA *rsa;
381 FILE *f;
382
383 if (!keydir)
384 keydir = ".";
385
386 snprintf(path, sizeof(path), "%s/%s.key", keydir, name);
387 f = fopen(path, "r");
388 if (!f) {
389 fprintf(stderr, "Couldn't open RSA private key: '%s': %s\n",
390 path, strerror(errno));
391 return -ENOENT;
392 }
393
394 rsa = PEM_read_RSAPrivateKey(f, 0, NULL, "");
395 if (!rsa) {
396 openssl_err("Failure reading private key");
397 fclose(f);
398 return -EPROTO;
399 }
400 fclose(f);
401 *p_rsa = rsa;
402
403 return 0;
404}
405
406static int kwb_load_cfg_key(struct image_tool_params *params,
407 unsigned int cfg_option, const char *key_name,
408 RSA **p_key)
409{
410 struct image_cfg_element *e_key;
411 RSA *key;
412 int res;
413
414 *p_key = NULL;
415
416 e_key = image_find_option(cfg_option);
417 if (!e_key) {
418 fprintf(stderr, "%s not configured\n", key_name);
419 return -ENOENT;
420 }
421
422 res = kwb_load_rsa_key(params->keydir, e_key->key_name, &key);
423 if (res < 0) {
424 fprintf(stderr, "Failed to load %s\n", key_name);
425 return -ENOENT;
426 }
427
428 *p_key = key;
429
430 return 0;
431}
432
433static int kwb_load_kak(struct image_tool_params *params, RSA **p_kak)
434{
435 return kwb_load_cfg_key(params, IMAGE_CFG_KAK, "KAK", p_kak);
436}
437
438static int kwb_load_csk(struct image_tool_params *params, RSA **p_csk)
439{
440 return kwb_load_cfg_key(params, IMAGE_CFG_CSK, "CSK", p_csk);
441}
442
443static int kwb_compute_pubkey_hash(struct pubkey_der_v1 *pk,
444 struct hash_v1 *hash)
445{
446 EVP_MD_CTX *ctx;
447 unsigned int key_size;
448 unsigned int hash_size;
449 int ret = 0;
450
451 if (!pk || !hash || pk->key[0] != 0x30 || pk->key[1] != 0x82)
452 return -EINVAL;
453
454 key_size = (pk->key[2] << 8) + pk->key[3] + 4;
455
456 ctx = EVP_MD_CTX_create();
457 if (!ctx)
458 return openssl_err("EVP context creation failed");
459
460 EVP_MD_CTX_init(ctx);
461 if (!EVP_DigestInit(ctx, EVP_sha256())) {
462 ret = openssl_err("Digest setup failed");
463 goto hash_err_ctx;
464 }
465
466 if (!EVP_DigestUpdate(ctx, pk->key, key_size)) {
467 ret = openssl_err("Hashing data failed");
468 goto hash_err_ctx;
469 }
470
471 if (!EVP_DigestFinal(ctx, hash->hash, &hash_size)) {
472 ret = openssl_err("Could not obtain hash");
473 goto hash_err_ctx;
474 }
475
476 EVP_MD_CTX_cleanup(ctx);
477
478hash_err_ctx:
479 EVP_MD_CTX_destroy(ctx);
480 return ret;
481}
482
483static int kwb_import_pubkey(RSA **key, struct pubkey_der_v1 *src, char *keyname)
484{
485 RSA *rsa;
486 const unsigned char *ptr;
487
488 if (!key || !src)
489 goto fail;
490
491 ptr = src->key;
492 rsa = d2i_RSAPublicKey(key, &ptr, sizeof(src->key));
493 if (!rsa) {
494 openssl_err("error decoding public key");
495 goto fail;
496 }
497
498 return 0;
499fail:
500 fprintf(stderr, "Failed to decode %s pubkey\n", keyname);
501 return -EINVAL;
502}
503
504static int kwb_export_pubkey(RSA *key, struct pubkey_der_v1 *dst, FILE *hashf,
505 char *keyname)
506{
507 int size_exp, size_mod, size_seq;
Jelle van der Waae0e55592017-05-08 21:31:20 +0200508 const BIGNUM *key_e, *key_n;
Mario Six10d14492017-01-11 16:01:00 +0100509 uint8_t *cur;
510 char *errmsg = "Failed to encode %s\n";
511
Jelle van der Waae0e55592017-05-08 21:31:20 +0200512 RSA_get0_key(key, NULL, &key_e, NULL);
513 RSA_get0_key(key, &key_n, NULL, NULL);
514
515 if (!key || !key_e || !key_n || !dst) {
Mario Six10d14492017-01-11 16:01:00 +0100516 fprintf(stderr, "export pk failed: (%p, %p, %p, %p)",
Jelle van der Waae0e55592017-05-08 21:31:20 +0200517 key, key_e, key_n, dst);
Mario Six10d14492017-01-11 16:01:00 +0100518 fprintf(stderr, errmsg, keyname);
519 return -EINVAL;
520 }
521
522 /*
523 * According to the specs, the key should be PKCS#1 DER encoded.
524 * But unfortunately the really required encoding seems to be different;
525 * it violates DER...! (But it still conformes to BER.)
526 * (Length always in long form w/ 2 byte length code; no leading zero
527 * when MSB of first byte is set...)
528 * So we cannot use the encoding func provided by OpenSSL and have to
529 * do the encoding manually.
530 */
531
Jelle van der Waae0e55592017-05-08 21:31:20 +0200532 size_exp = BN_num_bytes(key_e);
533 size_mod = BN_num_bytes(key_n);
Mario Six10d14492017-01-11 16:01:00 +0100534 size_seq = 4 + size_mod + 4 + size_exp;
535
536 if (size_mod > 256) {
537 fprintf(stderr, "export pk failed: wrong mod size: %d\n",
538 size_mod);
539 fprintf(stderr, errmsg, keyname);
540 return -EINVAL;
541 }
542
543 if (4 + size_seq > sizeof(dst->key)) {
Marek Behúnf7b7f7c2021-09-24 23:06:38 +0200544 fprintf(stderr, "export pk failed: seq too large (%d, %zu)\n",
Mario Six10d14492017-01-11 16:01:00 +0100545 4 + size_seq, sizeof(dst->key));
546 fprintf(stderr, errmsg, keyname);
547 return -ENOBUFS;
548 }
549
550 cur = dst->key;
551
552 /* PKCS#1 (RFC3447) RSAPublicKey structure */
553 *cur++ = 0x30; /* SEQUENCE */
554 *cur++ = 0x82;
555 *cur++ = (size_seq >> 8) & 0xFF;
556 *cur++ = size_seq & 0xFF;
557 /* Modulus */
558 *cur++ = 0x02; /* INTEGER */
559 *cur++ = 0x82;
560 *cur++ = (size_mod >> 8) & 0xFF;
561 *cur++ = size_mod & 0xFF;
Jelle van der Waae0e55592017-05-08 21:31:20 +0200562 BN_bn2bin(key_n, cur);
Mario Six10d14492017-01-11 16:01:00 +0100563 cur += size_mod;
564 /* Exponent */
565 *cur++ = 0x02; /* INTEGER */
566 *cur++ = 0x82;
567 *cur++ = (size_exp >> 8) & 0xFF;
568 *cur++ = size_exp & 0xFF;
Jelle van der Waae0e55592017-05-08 21:31:20 +0200569 BN_bn2bin(key_e, cur);
Mario Six10d14492017-01-11 16:01:00 +0100570
571 if (hashf) {
572 struct hash_v1 pk_hash;
573 int i;
574 int ret = 0;
575
576 ret = kwb_compute_pubkey_hash(dst, &pk_hash);
577 if (ret < 0) {
578 fprintf(stderr, errmsg, keyname);
579 return ret;
580 }
581
582 fprintf(hashf, "SHA256 = ");
583 for (i = 0 ; i < sizeof(pk_hash.hash); ++i)
584 fprintf(hashf, "%02X", pk_hash.hash[i]);
585 fprintf(hashf, "\n");
586 }
587
588 return 0;
589}
590
591int kwb_sign(RSA *key, void *data, int datasz, struct sig_v1 *sig, char *signame)
592{
593 EVP_PKEY *evp_key;
594 EVP_MD_CTX *ctx;
595 unsigned int sig_size;
596 int size;
597 int ret = 0;
598
599 evp_key = EVP_PKEY_new();
600 if (!evp_key)
601 return openssl_err("EVP_PKEY object creation failed");
602
603 if (!EVP_PKEY_set1_RSA(evp_key, key)) {
604 ret = openssl_err("EVP key setup failed");
605 goto err_key;
606 }
607
608 size = EVP_PKEY_size(evp_key);
609 if (size > sizeof(sig->sig)) {
610 fprintf(stderr, "Buffer to small for signature (%d bytes)\n",
611 size);
612 ret = -ENOBUFS;
613 goto err_key;
614 }
615
616 ctx = EVP_MD_CTX_create();
617 if (!ctx) {
618 ret = openssl_err("EVP context creation failed");
619 goto err_key;
620 }
621 EVP_MD_CTX_init(ctx);
622 if (!EVP_SignInit(ctx, EVP_sha256())) {
623 ret = openssl_err("Signer setup failed");
624 goto err_ctx;
625 }
626
627 if (!EVP_SignUpdate(ctx, data, datasz)) {
628 ret = openssl_err("Signing data failed");
629 goto err_ctx;
630 }
631
632 if (!EVP_SignFinal(ctx, sig->sig, &sig_size, evp_key)) {
633 ret = openssl_err("Could not obtain signature");
634 goto err_ctx;
635 }
636
637 EVP_MD_CTX_cleanup(ctx);
638 EVP_MD_CTX_destroy(ctx);
639 EVP_PKEY_free(evp_key);
640
641 return 0;
642
643err_ctx:
644 EVP_MD_CTX_destroy(ctx);
645err_key:
646 EVP_PKEY_free(evp_key);
647 fprintf(stderr, "Failed to create %s signature\n", signame);
648 return ret;
649}
650
651int kwb_verify(RSA *key, void *data, int datasz, struct sig_v1 *sig,
652 char *signame)
653{
654 EVP_PKEY *evp_key;
655 EVP_MD_CTX *ctx;
656 int size;
657 int ret = 0;
658
659 evp_key = EVP_PKEY_new();
660 if (!evp_key)
661 return openssl_err("EVP_PKEY object creation failed");
662
663 if (!EVP_PKEY_set1_RSA(evp_key, key)) {
664 ret = openssl_err("EVP key setup failed");
665 goto err_key;
666 }
667
668 size = EVP_PKEY_size(evp_key);
669 if (size > sizeof(sig->sig)) {
670 fprintf(stderr, "Invalid signature size (%d bytes)\n",
671 size);
672 ret = -EINVAL;
673 goto err_key;
674 }
675
676 ctx = EVP_MD_CTX_create();
677 if (!ctx) {
678 ret = openssl_err("EVP context creation failed");
679 goto err_key;
680 }
681 EVP_MD_CTX_init(ctx);
682 if (!EVP_VerifyInit(ctx, EVP_sha256())) {
683 ret = openssl_err("Verifier setup failed");
684 goto err_ctx;
685 }
686
687 if (!EVP_VerifyUpdate(ctx, data, datasz)) {
688 ret = openssl_err("Hashing data failed");
689 goto err_ctx;
690 }
691
Young Xiaoda575f52019-04-17 17:20:24 +0800692 if (EVP_VerifyFinal(ctx, sig->sig, sizeof(sig->sig), evp_key) != 1) {
Mario Six10d14492017-01-11 16:01:00 +0100693 ret = openssl_err("Could not verify signature");
694 goto err_ctx;
695 }
696
697 EVP_MD_CTX_cleanup(ctx);
698 EVP_MD_CTX_destroy(ctx);
699 EVP_PKEY_free(evp_key);
700
701 return 0;
702
703err_ctx:
704 EVP_MD_CTX_destroy(ctx);
705err_key:
706 EVP_PKEY_free(evp_key);
707 fprintf(stderr, "Failed to verify %s signature\n", signame);
708 return ret;
709}
710
711int kwb_sign_and_verify(RSA *key, void *data, int datasz, struct sig_v1 *sig,
712 char *signame)
713{
714 if (kwb_sign(key, data, datasz, sig, signame) < 0)
715 return -1;
716
717 if (kwb_verify(key, data, datasz, sig, signame) < 0)
718 return -1;
719
720 return 0;
721}
722
723
724int kwb_dump_fuse_cmds_38x(FILE *out, struct secure_hdr_v1 *sec_hdr)
725{
726 struct hash_v1 kak_pub_hash;
727 struct image_cfg_element *e;
728 unsigned int fuse_line;
729 int i, idx;
730 uint8_t *ptr;
731 uint32_t val;
732 int ret = 0;
733
734 if (!out || !sec_hdr)
735 return -EINVAL;
736
737 ret = kwb_compute_pubkey_hash(&sec_hdr->kak, &kak_pub_hash);
738 if (ret < 0)
739 goto done;
740
741 fprintf(out, "# burn KAK pub key hash\n");
742 ptr = kak_pub_hash.hash;
743 for (fuse_line = 26; fuse_line <= 30; ++fuse_line) {
744 fprintf(out, "fuse prog -y %u 0 ", fuse_line);
745
746 for (i = 4; i-- > 0;)
747 fprintf(out, "%02hx", (ushort)ptr[i]);
748 ptr += 4;
749 fprintf(out, " 00");
750
751 if (fuse_line < 30) {
752 for (i = 3; i-- > 0;)
753 fprintf(out, "%02hx", (ushort)ptr[i]);
754 ptr += 3;
755 } else {
756 fprintf(out, "000000");
757 }
758
759 fprintf(out, " 1\n");
760 }
761
762 fprintf(out, "# burn CSK selection\n");
763
764 idx = image_get_csk_index();
765 if (idx < 0 || idx > 15) {
766 ret = -EINVAL;
767 goto done;
768 }
769 if (idx > 0) {
770 for (fuse_line = 31; fuse_line < 31 + idx; ++fuse_line)
771 fprintf(out, "fuse prog -y %u 0 00000001 00000000 1\n",
772 fuse_line);
773 } else {
774 fprintf(out, "# CSK index is 0; no mods needed\n");
775 }
776
777 e = image_find_option(IMAGE_CFG_BOX_ID);
778 if (e) {
779 fprintf(out, "# set box ID\n");
780 fprintf(out, "fuse prog -y 48 0 %08x 00000000 1\n", e->boxid);
781 }
782
783 e = image_find_option(IMAGE_CFG_FLASH_ID);
784 if (e) {
785 fprintf(out, "# set flash ID\n");
786 fprintf(out, "fuse prog -y 47 0 %08x 00000000 1\n", e->flashid);
787 }
788
789 fprintf(out, "# enable secure mode ");
790 fprintf(out, "(must be the last fuse line written)\n");
791
792 val = 1;
793 e = image_find_option(IMAGE_CFG_SEC_BOOT_DEV);
794 if (!e) {
795 fprintf(stderr, "ERROR: secured mode boot device not given\n");
796 ret = -EINVAL;
797 goto done;
798 }
799
800 if (e->sec_boot_dev > 0xff) {
801 fprintf(stderr, "ERROR: secured mode boot device invalid\n");
802 ret = -EINVAL;
803 goto done;
804 }
805
806 val |= (e->sec_boot_dev << 8);
807
808 fprintf(out, "fuse prog -y 24 0 %08x 0103e0a9 1\n", val);
809
810 fprintf(out, "# lock (unused) fuse lines (0-23)s\n");
811 for (fuse_line = 0; fuse_line < 24; ++fuse_line)
812 fprintf(out, "fuse prog -y %u 2 1\n", fuse_line);
813
814 fprintf(out, "# OK, that's all :-)\n");
815
816done:
817 return ret;
818}
819
820static int kwb_dump_fuse_cmds(struct secure_hdr_v1 *sec_hdr)
821{
822 int ret = 0;
823 struct image_cfg_element *e;
824
825 e = image_find_option(IMAGE_CFG_SEC_FUSE_DUMP);
826 if (!e)
827 return 0;
828
829 if (!strcmp(e->name, "a38x")) {
830 FILE *out = fopen("kwb_fuses_a38x.txt", "w+");
831
Heinrich Schuchardt379ec092021-08-17 07:03:20 +0200832 if (!out) {
833 fprintf(stderr, "Couldn't open eFuse settings: '%s': %s\n",
834 "kwb_fuses_a38x.txt", strerror(errno));
835 return -ENOENT;
836 }
837
Mario Six10d14492017-01-11 16:01:00 +0100838 kwb_dump_fuse_cmds_38x(out, sec_hdr);
839 fclose(out);
840 goto done;
841 }
842
843 ret = -ENOSYS;
844
845done:
846 return ret;
847}
848
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200849static void *image_create_v0(size_t *imagesz, struct image_tool_params *params,
850 int payloadsz)
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530851{
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200852 struct image_cfg_element *e;
853 size_t headersz;
854 struct main_hdr_v0 *main_hdr;
Mario Six7497cd62017-01-11 16:00:55 +0100855 uint8_t *image;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200856 int has_ext = 0;
857
858 /*
859 * Calculate the size of the header and the size of the
860 * payload
861 */
862 headersz = sizeof(struct main_hdr_v0);
863
864 if (image_count_options(IMAGE_CFG_DATA) > 0) {
865 has_ext = 1;
866 headersz += sizeof(struct ext_hdr_v0);
867 }
868
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200869 image = malloc(headersz);
870 if (!image) {
871 fprintf(stderr, "Cannot allocate memory for image\n");
872 return NULL;
873 }
874
875 memset(image, 0, headersz);
876
Mario Six7497cd62017-01-11 16:00:55 +0100877 main_hdr = (struct main_hdr_v0 *)image;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530878
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200879 /* Fill in the main header */
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100880 main_hdr->blocksize =
Pali Rohárcfb60a92021-07-23 11:13:56 +0200881 cpu_to_le32(payloadsz - headersz);
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100882 main_hdr->srcaddr = cpu_to_le32(headersz);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200883 main_hdr->ext = has_ext;
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100884 main_hdr->destaddr = cpu_to_le32(params->addr);
885 main_hdr->execaddr = cpu_to_le32(params->ep);
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530886
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200887 e = image_find_option(IMAGE_CFG_BOOT_FROM);
888 if (e)
889 main_hdr->blockid = e->bootfrom;
890 e = image_find_option(IMAGE_CFG_NAND_ECC_MODE);
891 if (e)
892 main_hdr->nandeccmode = e->nandeccmode;
893 e = image_find_option(IMAGE_CFG_NAND_PAGESZ);
894 if (e)
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100895 main_hdr->nandpagesize = cpu_to_le16(e->nandpagesz);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200896 main_hdr->checksum = image_checksum8(image,
897 sizeof(struct main_hdr_v0));
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530898
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200899 /* Generate the ext header */
900 if (has_ext) {
Mario Six6f273632017-01-11 16:00:56 +0100901 struct ext_hdr_v0 *ext_hdr;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200902 int cfgi, datai;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530903
Mario Six7497cd62017-01-11 16:00:55 +0100904 ext_hdr = (struct ext_hdr_v0 *)
905 (image + sizeof(struct main_hdr_v0));
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100906 ext_hdr->offset = cpu_to_le32(0x40);
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530907
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200908 for (cfgi = 0, datai = 0; cfgi < cfgn; cfgi++) {
909 e = &image_cfg[cfgi];
910 if (e->type != IMAGE_CFG_DATA)
911 continue;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530912
Reinhard Pfau3efeaae2015-11-29 15:48:25 +0100913 ext_hdr->rcfg[datai].raddr =
914 cpu_to_le32(e->regdata.raddr);
915 ext_hdr->rcfg[datai].rdata =
916 cpu_to_le32(e->regdata.rdata);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200917 datai++;
918 }
919
920 ext_hdr->checksum = image_checksum8(ext_hdr,
921 sizeof(struct ext_hdr_v0));
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530922 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530923
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200924 *imagesz = headersz;
925 return image;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530926}
927
Mario Six855cf9e2017-01-11 16:00:57 +0100928static size_t image_headersz_v1(int *hasext)
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200929{
930 struct image_cfg_element *binarye;
Pali Rohárfbe10ac2021-07-23 11:14:11 +0200931 unsigned int count;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200932 size_t headersz;
Pali Roháre0a6dc72021-07-23 11:14:09 +0200933 int cfgi;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530934
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200935 /*
936 * Calculate the size of the header and the size of the
937 * payload
938 */
939 headersz = sizeof(struct main_hdr_v1);
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530940
Pali Rohár46ebc0e2021-10-21 16:46:07 +0200941 if (image_get_csk_index() >= 0) {
942 headersz += sizeof(struct secure_hdr_v1);
943 if (hasext)
944 *hasext = 1;
945 }
946
Pali Rohárfbe10ac2021-07-23 11:14:11 +0200947 count = image_count_options(IMAGE_CFG_DATA);
948 if (count > 0)
949 headersz += sizeof(struct register_set_hdr_v1) + 8 * count + 4;
950
Pali Roháre0a6dc72021-07-23 11:14:09 +0200951 for (cfgi = 0; cfgi < cfgn; cfgi++) {
Mario Six6f273632017-01-11 16:00:56 +0100952 int ret;
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200953 struct stat s;
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530954
Pali Roháre0a6dc72021-07-23 11:14:09 +0200955 binarye = &image_cfg[cfgi];
956 if (binarye->type != IMAGE_CFG_BINARY)
957 continue;
958
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200959 ret = stat(binarye->binary.file, &s);
960 if (ret < 0) {
Andreas Bießmann7abec5b2014-10-24 23:39:11 +0200961 char cwd[PATH_MAX];
962 char *dir = cwd;
963
964 memset(cwd, 0, sizeof(cwd));
965 if (!getcwd(cwd, sizeof(cwd))) {
966 dir = "current working directory";
967 perror("getcwd() failed");
968 }
969
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200970 fprintf(stderr,
971 "Didn't find the file '%s' in '%s' which is mandatory to generate the image\n"
972 "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 +0200973 "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 +0200974 binarye->binary.file, dir);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200975 return 0;
976 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530977
Pali Rohár46ebc0e2021-10-21 16:46:07 +0200978 headersz += sizeof(struct opt_hdr_v1) + sizeof(uint32_t) +
979 (binarye->binary.nargs) * sizeof(uint32_t);
980 headersz = ALIGN(headersz, 16);
981 headersz += ALIGN(s.st_size, 4) + sizeof(uint32_t);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200982 if (hasext)
983 *hasext = 1;
984 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530985
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200986 /*
987 * The payload should be aligned on some reasonable
988 * boundary
989 */
Kever Yang0b21cde2020-03-30 11:56:20 +0800990 return ALIGN(headersz, 4096);
Stefan Roese3b8b19d2014-10-22 12:13:23 +0200991}
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530992
Pali Roháre0a6dc72021-07-23 11:14:09 +0200993int add_binary_header_v1(uint8_t **cur, uint8_t **next_ext,
Pali Rohár46ebc0e2021-10-21 16:46:07 +0200994 struct image_cfg_element *binarye,
995 struct main_hdr_v1 *main_hdr)
Mario Six030ca162017-01-11 16:00:58 +0100996{
Pali Roháre0a6dc72021-07-23 11:14:09 +0200997 struct opt_hdr_v1 *hdr = (struct opt_hdr_v1 *)*cur;
Pali Rohár46ebc0e2021-10-21 16:46:07 +0200998 uint32_t add_args;
999 uint32_t offset;
Mario Six030ca162017-01-11 16:00:58 +01001000 uint32_t *args;
1001 size_t binhdrsz;
1002 struct stat s;
1003 int argi;
1004 FILE *bin;
1005 int ret;
1006
Mario Six030ca162017-01-11 16:00:58 +01001007 hdr->headertype = OPT_HDR_V1_BINARY_TYPE;
1008
1009 bin = fopen(binarye->binary.file, "r");
1010 if (!bin) {
1011 fprintf(stderr, "Cannot open binary file %s\n",
1012 binarye->binary.file);
1013 return -1;
1014 }
1015
Mario Sixe3edf162017-02-13 10:11:55 +01001016 if (fstat(fileno(bin), &s)) {
1017 fprintf(stderr, "Cannot stat binary file %s\n",
1018 binarye->binary.file);
1019 goto err_close;
1020 }
Mario Six030ca162017-01-11 16:00:58 +01001021
Pali Roháre0a6dc72021-07-23 11:14:09 +02001022 *cur += sizeof(struct opt_hdr_v1);
Mario Six030ca162017-01-11 16:00:58 +01001023
Pali Roháre0a6dc72021-07-23 11:14:09 +02001024 args = (uint32_t *)*cur;
Mario Six030ca162017-01-11 16:00:58 +01001025 *args = cpu_to_le32(binarye->binary.nargs);
1026 args++;
1027 for (argi = 0; argi < binarye->binary.nargs; argi++)
1028 args[argi] = cpu_to_le32(binarye->binary.args[argi]);
1029
Pali Roháre0a6dc72021-07-23 11:14:09 +02001030 *cur += (binarye->binary.nargs + 1) * sizeof(uint32_t);
Mario Six030ca162017-01-11 16:00:58 +01001031
Pali Rohár46ebc0e2021-10-21 16:46:07 +02001032 /*
1033 * ARM executable code inside the BIN header on some mvebu platforms
1034 * (e.g. A370, AXP) must always be aligned with the 128-bit boundary.
1035 * This requirement can be met by inserting dummy arguments into
1036 * BIN header, if needed.
1037 */
1038 offset = *cur - (uint8_t *)main_hdr;
1039 add_args = ((16 - offset % 16) % 16) / sizeof(uint32_t);
1040 if (add_args) {
1041 *(args - 1) = cpu_to_le32(binarye->binary.nargs + add_args);
1042 *cur += add_args * sizeof(uint32_t);
1043 }
1044
Pali Roháre0a6dc72021-07-23 11:14:09 +02001045 ret = fread(*cur, s.st_size, 1, bin);
Mario Six030ca162017-01-11 16:00:58 +01001046 if (ret != 1) {
1047 fprintf(stderr,
1048 "Could not read binary image %s\n",
1049 binarye->binary.file);
Mario Sixe3edf162017-02-13 10:11:55 +01001050 goto err_close;
Mario Six030ca162017-01-11 16:00:58 +01001051 }
1052
1053 fclose(bin);
1054
Pali Roháre0a6dc72021-07-23 11:14:09 +02001055 *cur += ALIGN(s.st_size, 4);
Mario Six030ca162017-01-11 16:00:58 +01001056
Pali Roháre0a6dc72021-07-23 11:14:09 +02001057 *((uint32_t *)*cur) = 0x00000000;
1058 **next_ext = 1;
1059 *next_ext = *cur;
Mario Six030ca162017-01-11 16:00:58 +01001060
Pali Roháre0a6dc72021-07-23 11:14:09 +02001061 *cur += sizeof(uint32_t);
Mario Six030ca162017-01-11 16:00:58 +01001062
Pali Rohár46ebc0e2021-10-21 16:46:07 +02001063 binhdrsz = sizeof(struct opt_hdr_v1) +
1064 (binarye->binary.nargs + add_args + 2) * sizeof(uint32_t) +
1065 ALIGN(s.st_size, 4);
1066 hdr->headersz_lsb = cpu_to_le16(binhdrsz & 0xFFFF);
1067 hdr->headersz_msb = (binhdrsz & 0xFFFF0000) >> 16;
1068
Mario Six030ca162017-01-11 16:00:58 +01001069 return 0;
Mario Sixe3edf162017-02-13 10:11:55 +01001070
1071err_close:
1072 fclose(bin);
1073
1074 return -1;
Mario Six030ca162017-01-11 16:00:58 +01001075}
Mario Six10d14492017-01-11 16:01:00 +01001076
Mario Six10d14492017-01-11 16:01:00 +01001077int export_pub_kak_hash(RSA *kak, struct secure_hdr_v1 *secure_hdr)
1078{
1079 FILE *hashf;
1080 int res;
1081
1082 hashf = fopen("pub_kak_hash.txt", "w");
Heinrich Schuchardt379ec092021-08-17 07:03:20 +02001083 if (!hashf) {
1084 fprintf(stderr, "Couldn't open hash file: '%s': %s\n",
1085 "pub_kak_hash.txt", strerror(errno));
1086 return 1;
1087 }
Mario Six10d14492017-01-11 16:01:00 +01001088
1089 res = kwb_export_pubkey(kak, &secure_hdr->kak, hashf, "KAK");
1090
1091 fclose(hashf);
1092
1093 return res < 0 ? 1 : 0;
1094}
1095
1096int kwb_sign_csk_with_kak(struct image_tool_params *params,
1097 struct secure_hdr_v1 *secure_hdr, RSA *csk)
1098{
1099 RSA *kak = NULL;
1100 RSA *kak_pub = NULL;
1101 int csk_idx = image_get_csk_index();
1102 struct sig_v1 tmp_sig;
1103
Heinrich Schuchardtd8f0f1a2021-08-17 07:11:58 +02001104 if (csk_idx < 0 || csk_idx > 15) {
Mario Six10d14492017-01-11 16:01:00 +01001105 fprintf(stderr, "Invalid CSK index %d\n", csk_idx);
1106 return 1;
1107 }
1108
1109 if (kwb_load_kak(params, &kak) < 0)
1110 return 1;
1111
1112 if (export_pub_kak_hash(kak, secure_hdr))
1113 return 1;
1114
1115 if (kwb_import_pubkey(&kak_pub, &secure_hdr->kak, "KAK") < 0)
1116 return 1;
1117
1118 if (kwb_export_pubkey(csk, &secure_hdr->csk[csk_idx], NULL, "CSK") < 0)
1119 return 1;
1120
1121 if (kwb_sign_and_verify(kak, &secure_hdr->csk,
1122 sizeof(secure_hdr->csk) +
1123 sizeof(secure_hdr->csksig),
1124 &tmp_sig, "CSK") < 0)
1125 return 1;
1126
1127 if (kwb_verify(kak_pub, &secure_hdr->csk,
1128 sizeof(secure_hdr->csk) +
1129 sizeof(secure_hdr->csksig),
1130 &tmp_sig, "CSK (2)") < 0)
1131 return 1;
1132
1133 secure_hdr->csksig = tmp_sig;
1134
1135 return 0;
1136}
1137
1138int add_secure_header_v1(struct image_tool_params *params, uint8_t *ptr,
1139 int payloadsz, size_t headersz, uint8_t *image,
1140 struct secure_hdr_v1 *secure_hdr)
1141{
1142 struct image_cfg_element *e_jtagdelay;
1143 struct image_cfg_element *e_boxid;
1144 struct image_cfg_element *e_flashid;
1145 RSA *csk = NULL;
1146 unsigned char *image_ptr;
1147 size_t image_size;
1148 struct sig_v1 tmp_sig;
1149 bool specialized_img = image_get_spezialized_img();
1150
1151 kwb_msg("Create secure header content\n");
1152
1153 e_jtagdelay = image_find_option(IMAGE_CFG_JTAG_DELAY);
1154 e_boxid = image_find_option(IMAGE_CFG_BOX_ID);
1155 e_flashid = image_find_option(IMAGE_CFG_FLASH_ID);
1156
1157 if (kwb_load_csk(params, &csk) < 0)
1158 return 1;
1159
1160 secure_hdr->headertype = OPT_HDR_V1_SECURE_TYPE;
1161 secure_hdr->headersz_msb = 0;
1162 secure_hdr->headersz_lsb = cpu_to_le16(sizeof(struct secure_hdr_v1));
1163 if (e_jtagdelay)
1164 secure_hdr->jtag_delay = e_jtagdelay->jtag_delay;
1165 if (e_boxid && specialized_img)
1166 secure_hdr->boxid = cpu_to_le32(e_boxid->boxid);
1167 if (e_flashid && specialized_img)
1168 secure_hdr->flashid = cpu_to_le32(e_flashid->flashid);
1169
1170 if (kwb_sign_csk_with_kak(params, secure_hdr, csk))
1171 return 1;
1172
1173 image_ptr = ptr + headersz;
1174 image_size = payloadsz - headersz;
1175
1176 if (kwb_sign_and_verify(csk, image_ptr, image_size,
1177 &secure_hdr->imgsig, "image") < 0)
1178 return 1;
1179
1180 if (kwb_sign_and_verify(csk, image, headersz, &tmp_sig, "header") < 0)
1181 return 1;
1182
1183 secure_hdr->hdrsig = tmp_sig;
1184
1185 kwb_dump_fuse_cmds(secure_hdr);
1186
1187 return 0;
1188}
Mario Six030ca162017-01-11 16:00:58 +01001189
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001190static void *image_create_v1(size_t *imagesz, struct image_tool_params *params,
Mario Six10d14492017-01-11 16:01:00 +01001191 uint8_t *ptr, int payloadsz)
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001192{
Mario Six030ca162017-01-11 16:00:58 +01001193 struct image_cfg_element *e;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001194 struct main_hdr_v1 *main_hdr;
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001195 struct register_set_hdr_v1 *register_set_hdr;
Mario Six10d14492017-01-11 16:01:00 +01001196 struct secure_hdr_v1 *secure_hdr = NULL;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001197 size_t headersz;
Mario Six7497cd62017-01-11 16:00:55 +01001198 uint8_t *image, *cur;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001199 int hasext = 0;
Mario Six10d14492017-01-11 16:01:00 +01001200 uint8_t *next_ext = NULL;
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001201 int cfgi, datai, size;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301202
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001203 /*
1204 * Calculate the size of the header and the size of the
1205 * payload
1206 */
Mario Six855cf9e2017-01-11 16:00:57 +01001207 headersz = image_headersz_v1(&hasext);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001208 if (headersz == 0)
1209 return NULL;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301210
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001211 image = malloc(headersz);
1212 if (!image) {
1213 fprintf(stderr, "Cannot allocate memory for image\n");
1214 return NULL;
1215 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301216
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001217 memset(image, 0, headersz);
1218
Mario Six7497cd62017-01-11 16:00:55 +01001219 main_hdr = (struct main_hdr_v1 *)image;
Mario Six10d14492017-01-11 16:01:00 +01001220 cur = image;
1221 cur += sizeof(struct main_hdr_v1);
1222 next_ext = &main_hdr->ext;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001223
1224 /* Fill the main header */
Reinhard Pfau3efeaae2015-11-29 15:48:25 +01001225 main_hdr->blocksize =
Pali Rohárcfb60a92021-07-23 11:13:56 +02001226 cpu_to_le32(payloadsz - headersz);
Reinhard Pfau3efeaae2015-11-29 15:48:25 +01001227 main_hdr->headersz_lsb = cpu_to_le16(headersz & 0xFFFF);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001228 main_hdr->headersz_msb = (headersz & 0xFFFF0000) >> 16;
Pali Rohárf8171a52021-07-23 11:14:06 +02001229 main_hdr->destaddr = cpu_to_le32(params->addr);
Reinhard Pfau3efeaae2015-11-29 15:48:25 +01001230 main_hdr->execaddr = cpu_to_le32(params->ep);
1231 main_hdr->srcaddr = cpu_to_le32(headersz);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001232 main_hdr->ext = hasext;
1233 main_hdr->version = 1;
1234 e = image_find_option(IMAGE_CFG_BOOT_FROM);
1235 if (e)
1236 main_hdr->blockid = e->bootfrom;
1237 e = image_find_option(IMAGE_CFG_NAND_BLKSZ);
1238 if (e)
1239 main_hdr->nandblocksize = e->nandblksz / (64 * 1024);
Pali Rohárbf9a89e2021-10-22 12:37:46 +02001240 e = image_find_option(IMAGE_CFG_NAND_PAGESZ);
1241 if (e)
1242 main_hdr->nandpagesize = cpu_to_le16(e->nandpagesz);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001243 e = image_find_option(IMAGE_CFG_NAND_BADBLK_LOCATION);
1244 if (e)
1245 main_hdr->nandbadblklocation = e->nandbadblklocation;
Chris Packham883bf452016-11-09 22:07:45 +13001246 e = image_find_option(IMAGE_CFG_BAUDRATE);
1247 if (e)
Pali Rohárd8840942021-11-08 18:12:41 +01001248 main_hdr->options |= baudrate_to_option(e->baudrate);
1249 e = image_find_option(IMAGE_CFG_UART_PORT);
1250 if (e)
1251 main_hdr->options |= (e->uart_port & 3) << 3;
1252 e = image_find_option(IMAGE_CFG_UART_MPP);
1253 if (e)
1254 main_hdr->options |= (e->uart_mpp & 7) << 5;
Chris Packham1e0728a2016-11-09 22:21:45 +13001255 e = image_find_option(IMAGE_CFG_DEBUG);
1256 if (e)
1257 main_hdr->flags = e->debug ? 0x1 : 0;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001258
Pali Rohár6f6f65e2021-07-23 11:13:59 +02001259 /*
1260 * For SATA srcaddr is specified in number of sectors starting from
1261 * sector 0. The main header is stored at sector number 1.
1262 * This expects the sector size to be 512 bytes.
1263 * Header size is already aligned.
1264 */
1265 if (main_hdr->blockid == IBR_HDR_SATA_ID)
1266 main_hdr->srcaddr = cpu_to_le32(headersz / 512 + 1);
1267
1268 /*
1269 * For SDIO srcaddr is specified in number of sectors starting from
1270 * sector 0. The main header is stored at sector number 0.
1271 * This expects sector size to be 512 bytes.
1272 * Header size is already aligned.
1273 */
1274 if (main_hdr->blockid == IBR_HDR_SDIO_ID)
1275 main_hdr->srcaddr = cpu_to_le32(headersz / 512);
1276
1277 /* For PCIe srcaddr is not used and must be set to 0xFFFFFFFF. */
1278 if (main_hdr->blockid == IBR_HDR_PEX_ID)
1279 main_hdr->srcaddr = cpu_to_le32(0xFFFFFFFF);
1280
Mario Six10d14492017-01-11 16:01:00 +01001281 if (image_get_csk_index() >= 0) {
1282 /*
1283 * only reserve the space here; we fill the header later since
1284 * we need the header to be complete to compute the signatures
1285 */
1286 secure_hdr = (struct secure_hdr_v1 *)cur;
1287 cur += sizeof(struct secure_hdr_v1);
Pali Roháre0a6dc72021-07-23 11:14:09 +02001288 *next_ext = 1;
Mario Six10d14492017-01-11 16:01:00 +01001289 next_ext = &secure_hdr->next;
1290 }
Mario Six10d14492017-01-11 16:01:00 +01001291
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001292 datai = 0;
1293 register_set_hdr = (struct register_set_hdr_v1 *)cur;
1294 for (cfgi = 0; cfgi < cfgn; cfgi++) {
1295 e = &image_cfg[cfgi];
Pali Rohárc0cfd1a2021-07-23 11:14:12 +02001296 if (e->type != IMAGE_CFG_DATA &&
1297 e->type != IMAGE_CFG_DATA_DELAY)
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001298 continue;
Pali Rohárc0cfd1a2021-07-23 11:14:12 +02001299 if (e->type == IMAGE_CFG_DATA_DELAY) {
1300 size = sizeof(struct register_set_hdr_v1) + 8 * datai + 4;
1301 register_set_hdr->headertype = OPT_HDR_V1_REGISTER_TYPE;
1302 register_set_hdr->headersz_lsb = cpu_to_le16(size & 0xFFFF);
1303 register_set_hdr->headersz_msb = size >> 16;
1304 register_set_hdr->data[datai].last_entry.delay = e->regdata_delay;
1305 cur += size;
1306 *next_ext = 1;
1307 next_ext = &register_set_hdr->data[datai].last_entry.next;
1308 datai = 0;
1309 continue;
1310 }
Pali Rohárfbe10ac2021-07-23 11:14:11 +02001311 register_set_hdr->data[datai].entry.address =
1312 cpu_to_le32(e->regdata.raddr);
1313 register_set_hdr->data[datai].entry.value =
1314 cpu_to_le32(e->regdata.rdata);
1315 datai++;
1316 }
1317 if (datai != 0) {
1318 size = sizeof(struct register_set_hdr_v1) + 8 * datai + 4;
1319 register_set_hdr->headertype = OPT_HDR_V1_REGISTER_TYPE;
1320 register_set_hdr->headersz_lsb = cpu_to_le16(size & 0xFFFF);
1321 register_set_hdr->headersz_msb = size >> 16;
1322 /* Set delay to the smallest possible value 1ms. */
1323 register_set_hdr->data[datai].last_entry.delay = 1;
1324 cur += size;
1325 *next_ext = 1;
1326 next_ext = &register_set_hdr->data[datai].last_entry.next;
1327 }
1328
Pali Roháre0a6dc72021-07-23 11:14:09 +02001329 for (cfgi = 0; cfgi < cfgn; cfgi++) {
1330 e = &image_cfg[cfgi];
1331 if (e->type != IMAGE_CFG_BINARY)
1332 continue;
1333
Pali Rohár46ebc0e2021-10-21 16:46:07 +02001334 if (add_binary_header_v1(&cur, &next_ext, e, main_hdr))
Pali Roháre0a6dc72021-07-23 11:14:09 +02001335 return NULL;
1336 }
Mario Six10d14492017-01-11 16:01:00 +01001337
Mario Six10d14492017-01-11 16:01:00 +01001338 if (secure_hdr && add_secure_header_v1(params, ptr, payloadsz,
1339 headersz, image, secure_hdr))
1340 return NULL;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001341
1342 /* Calculate and set the header checksum */
1343 main_hdr->checksum = image_checksum8(main_hdr, headersz);
1344
1345 *imagesz = headersz;
1346 return image;
1347}
1348
Mario Six62da6762017-01-11 16:00:59 +01001349int recognize_keyword(char *keyword)
1350{
1351 int kw_id;
1352
1353 for (kw_id = 1; kw_id < IMAGE_CFG_COUNT; ++kw_id)
1354 if (!strcmp(keyword, id_strs[kw_id]))
1355 return kw_id;
1356
1357 return 0;
1358}
1359
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001360static int image_create_config_parse_oneline(char *line,
1361 struct image_cfg_element *el)
1362{
Mario Six62da6762017-01-11 16:00:59 +01001363 char *keyword, *saveptr, *value1, *value2;
1364 char delimiters[] = " \t";
1365 int keyword_id, ret, argi;
1366 char *unknown_msg = "Ignoring unknown line '%s'\n";
1367
1368 keyword = strtok_r(line, delimiters, &saveptr);
1369 keyword_id = recognize_keyword(keyword);
1370
1371 if (!keyword_id) {
1372 fprintf(stderr, unknown_msg, line);
1373 return 0;
1374 }
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001375
Mario Six62da6762017-01-11 16:00:59 +01001376 el->type = keyword_id;
Mario Sixd6009d72017-01-11 16:00:54 +01001377
Mario Six62da6762017-01-11 16:00:59 +01001378 value1 = strtok_r(NULL, delimiters, &saveptr);
1379
1380 if (!value1) {
1381 fprintf(stderr, "Parameter missing in line '%s'\n", line);
1382 return -1;
1383 }
1384
1385 switch (keyword_id) {
1386 case IMAGE_CFG_VERSION:
1387 el->version = atoi(value1);
1388 break;
1389 case IMAGE_CFG_BOOT_FROM:
1390 ret = image_boot_mode_id(value1);
Mario Sixd6009d72017-01-11 16:00:54 +01001391
Andreas Bießmann4c40e352014-10-24 23:25:52 +02001392 if (ret < 0) {
Mario Six62da6762017-01-11 16:00:59 +01001393 fprintf(stderr, "Invalid boot media '%s'\n", value1);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001394 return -1;
1395 }
Andreas Bießmann4c40e352014-10-24 23:25:52 +02001396 el->bootfrom = ret;
Mario Six62da6762017-01-11 16:00:59 +01001397 break;
1398 case IMAGE_CFG_NAND_BLKSZ:
1399 el->nandblksz = strtoul(value1, NULL, 16);
1400 break;
1401 case IMAGE_CFG_NAND_BADBLK_LOCATION:
1402 el->nandbadblklocation = strtoul(value1, NULL, 16);
1403 break;
1404 case IMAGE_CFG_NAND_ECC_MODE:
1405 ret = image_nand_ecc_mode_id(value1);
Mario Sixd6009d72017-01-11 16:00:54 +01001406
Andreas Bießmann4c40e352014-10-24 23:25:52 +02001407 if (ret < 0) {
Mario Six62da6762017-01-11 16:00:59 +01001408 fprintf(stderr, "Invalid NAND ECC mode '%s'\n", value1);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001409 return -1;
1410 }
Andreas Bießmann4c40e352014-10-24 23:25:52 +02001411 el->nandeccmode = ret;
Mario Six62da6762017-01-11 16:00:59 +01001412 break;
1413 case IMAGE_CFG_NAND_PAGESZ:
1414 el->nandpagesz = strtoul(value1, NULL, 16);
1415 break;
1416 case IMAGE_CFG_BINARY:
1417 argi = 0;
Mario Sixd6009d72017-01-11 16:00:54 +01001418
Mario Six62da6762017-01-11 16:00:59 +01001419 el->binary.file = strdup(value1);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001420 while (1) {
Mario Six62da6762017-01-11 16:00:59 +01001421 char *value = strtok_r(NULL, delimiters, &saveptr);
1422
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001423 if (!value)
1424 break;
1425 el->binary.args[argi] = strtoul(value, NULL, 16);
1426 argi++;
1427 if (argi >= BINARY_MAX_ARGS) {
1428 fprintf(stderr,
Mario Six62da6762017-01-11 16:00:59 +01001429 "Too many arguments for BINARY\n");
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001430 return -1;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301431 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301432 }
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001433 el->binary.nargs = argi;
Mario Six62da6762017-01-11 16:00:59 +01001434 break;
1435 case IMAGE_CFG_DATA:
1436 value2 = strtok_r(NULL, delimiters, &saveptr);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001437
1438 if (!value1 || !value2) {
1439 fprintf(stderr,
1440 "Invalid number of arguments for DATA\n");
1441 return -1;
1442 }
1443
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001444 el->regdata.raddr = strtoul(value1, NULL, 16);
1445 el->regdata.rdata = strtoul(value2, NULL, 16);
Mario Six62da6762017-01-11 16:00:59 +01001446 break;
Pali Rohárc0cfd1a2021-07-23 11:14:12 +02001447 case IMAGE_CFG_DATA_DELAY:
1448 if (!strcmp(value1, "SDRAM_SETUP"))
1449 el->regdata_delay = REGISTER_SET_HDR_OPT_DELAY_SDRAM_SETUP;
1450 else
1451 el->regdata_delay = REGISTER_SET_HDR_OPT_DELAY_MS(strtoul(value1, NULL, 10));
1452 break;
Mario Six62da6762017-01-11 16:00:59 +01001453 case IMAGE_CFG_BAUDRATE:
1454 el->baudrate = strtoul(value1, NULL, 10);
1455 break;
Pali Rohárd8840942021-11-08 18:12:41 +01001456 case IMAGE_CFG_UART_PORT:
1457 el->uart_port = strtoul(value1, NULL, 16);
1458 break;
1459 case IMAGE_CFG_UART_MPP:
1460 el->uart_mpp = strtoul(value1, NULL, 16);
1461 break;
Mario Six62da6762017-01-11 16:00:59 +01001462 case IMAGE_CFG_DEBUG:
1463 el->debug = strtoul(value1, NULL, 10);
1464 break;
Mario Six10d14492017-01-11 16:01:00 +01001465 case IMAGE_CFG_KAK:
1466 el->key_name = strdup(value1);
1467 break;
1468 case IMAGE_CFG_CSK:
1469 el->key_name = strdup(value1);
1470 break;
1471 case IMAGE_CFG_CSK_INDEX:
1472 el->csk_idx = strtol(value1, NULL, 0);
1473 break;
1474 case IMAGE_CFG_JTAG_DELAY:
1475 el->jtag_delay = strtoul(value1, NULL, 0);
1476 break;
1477 case IMAGE_CFG_BOX_ID:
1478 el->boxid = strtoul(value1, NULL, 0);
1479 break;
1480 case IMAGE_CFG_FLASH_ID:
1481 el->flashid = strtoul(value1, NULL, 0);
1482 break;
1483 case IMAGE_CFG_SEC_SPECIALIZED_IMG:
1484 el->sec_specialized_img = true;
1485 break;
1486 case IMAGE_CFG_SEC_COMMON_IMG:
1487 el->sec_specialized_img = false;
1488 break;
1489 case IMAGE_CFG_SEC_BOOT_DEV:
1490 el->sec_boot_dev = strtoul(value1, NULL, 0);
1491 break;
1492 case IMAGE_CFG_SEC_FUSE_DUMP:
1493 el->name = strdup(value1);
1494 break;
Mario Six62da6762017-01-11 16:00:59 +01001495 default:
1496 fprintf(stderr, unknown_msg, line);
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301497 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301498
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001499 return 0;
1500}
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301501
1502/*
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001503 * Parse the configuration file 'fcfg' into the array of configuration
1504 * elements 'image_cfg', and return the number of configuration
1505 * elements in 'cfgn'.
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301506 */
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001507static int image_create_config_parse(FILE *fcfg)
1508{
1509 int ret;
1510 int cfgi = 0;
1511
1512 /* Parse the configuration file */
1513 while (!feof(fcfg)) {
1514 char *line;
1515 char buf[256];
1516
1517 /* Read the current line */
1518 memset(buf, 0, sizeof(buf));
1519 line = fgets(buf, sizeof(buf), fcfg);
1520 if (!line)
1521 break;
1522
1523 /* Ignore useless lines */
1524 if (line[0] == '\n' || line[0] == '#')
1525 continue;
1526
1527 /* Strip final newline */
1528 if (line[strlen(line) - 1] == '\n')
1529 line[strlen(line) - 1] = 0;
1530
1531 /* Parse the current line */
1532 ret = image_create_config_parse_oneline(line,
1533 &image_cfg[cfgi]);
1534 if (ret)
1535 return ret;
1536
1537 cfgi++;
1538
1539 if (cfgi >= IMAGE_CFG_ELEMENT_MAX) {
1540 fprintf(stderr,
1541 "Too many configuration elements in .cfg file\n");
1542 return -1;
1543 }
1544 }
1545
1546 cfgn = cfgi;
1547 return 0;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301548}
1549
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001550static int image_get_version(void)
1551{
1552 struct image_cfg_element *e;
1553
1554 e = image_find_option(IMAGE_CFG_VERSION);
1555 if (!e)
1556 return -1;
1557
1558 return e->version;
1559}
1560
Pali Rohár04785152021-07-23 11:13:57 +02001561static int image_get_bootfrom(void)
1562{
1563 struct image_cfg_element *e;
1564
1565 e = image_find_option(IMAGE_CFG_BOOT_FROM);
1566 if (!e)
1567 return -1;
1568
1569 return e->bootfrom;
1570}
1571
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001572static void kwbimage_set_header(void *ptr, struct stat *sbuf, int ifd,
Guilherme Maciel Ferreira8ed4d1c2013-12-01 12:43:10 -07001573 struct image_tool_params *params)
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301574{
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001575 FILE *fcfg;
1576 void *image = NULL;
1577 int version;
Łukasz Majewskif04dab42014-11-21 09:22:43 +01001578 size_t headersz = 0;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301579 uint32_t checksum;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001580 int ret;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301581
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001582 fcfg = fopen(params->imagename, "r");
1583 if (!fcfg) {
1584 fprintf(stderr, "Could not open input file %s\n",
1585 params->imagename);
1586 exit(EXIT_FAILURE);
1587 }
1588
1589 image_cfg = malloc(IMAGE_CFG_ELEMENT_MAX *
1590 sizeof(struct image_cfg_element));
1591 if (!image_cfg) {
1592 fprintf(stderr, "Cannot allocate memory\n");
1593 fclose(fcfg);
1594 exit(EXIT_FAILURE);
1595 }
1596
1597 memset(image_cfg, 0,
1598 IMAGE_CFG_ELEMENT_MAX * sizeof(struct image_cfg_element));
1599 rewind(fcfg);
1600
1601 ret = image_create_config_parse(fcfg);
1602 fclose(fcfg);
1603 if (ret) {
1604 free(image_cfg);
1605 exit(EXIT_FAILURE);
1606 }
1607
1608 version = image_get_version();
Stefan Roese933918c2014-10-28 11:32:24 +01001609 switch (version) {
1610 /*
1611 * Fallback to version 0 if no version is provided in the
1612 * cfg file
1613 */
1614 case -1:
1615 case 0:
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001616 image = image_create_v0(&headersz, params, sbuf->st_size);
Stefan Roese933918c2014-10-28 11:32:24 +01001617 break;
1618
1619 case 1:
Mario Six10d14492017-01-11 16:01:00 +01001620 image = image_create_v1(&headersz, params, ptr, sbuf->st_size);
Stefan Roese933918c2014-10-28 11:32:24 +01001621 break;
1622
1623 default:
1624 fprintf(stderr, "Unsupported version %d\n", version);
1625 free(image_cfg);
1626 exit(EXIT_FAILURE);
1627 }
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301628
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001629 if (!image) {
1630 fprintf(stderr, "Could not create image\n");
1631 free(image_cfg);
1632 exit(EXIT_FAILURE);
1633 }
1634
1635 free(image_cfg);
1636
1637 /* Build and add image checksum header */
Pali Rohárcfb60a92021-07-23 11:13:56 +02001638 checksum = cpu_to_le32(image_checksum32((uint8_t *)ptr + headersz,
1639 sbuf->st_size - headersz - sizeof(uint32_t)));
1640 memcpy((uint8_t *)ptr + sbuf->st_size - sizeof(uint32_t), &checksum,
1641 sizeof(uint32_t));
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301642
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001643 /* Finally copy the header into the image area */
1644 memcpy(ptr, image, headersz);
1645
1646 free(image);
1647}
1648
1649static void kwbimage_print_header(const void *ptr)
1650{
1651 struct main_hdr_v0 *mhdr = (struct main_hdr_v0 *)ptr;
Marek Behúnb1a76502021-08-18 00:59:15 +02001652 struct opt_hdr_v1 *ohdr;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001653
1654 printf("Image Type: MVEBU Boot from %s Image\n",
1655 image_boot_mode_name(mhdr->blockid));
Marek Behúnfa9caec2021-09-24 23:07:00 +02001656 printf("Image version:%d\n", kwbimage_version(ptr));
Pali Rohárcd614ad2021-07-23 11:14:04 +02001657
Marek Behúnb1a76502021-08-18 00:59:15 +02001658 for_each_opt_hdr_v1 (ohdr, mhdr) {
1659 if (ohdr->headertype == OPT_HDR_V1_BINARY_TYPE) {
1660 printf("BIN Hdr Size: ");
1661 genimg_print_size(opt_hdr_v1_size(ohdr) - 12 -
1662 4 * ohdr->data[0]);
Pali Rohárcd614ad2021-07-23 11:14:04 +02001663 }
1664 }
Marek Behúnb1a76502021-08-18 00:59:15 +02001665
Gerald Kerma8f9e5832014-10-31 01:03:27 +01001666 printf("Data Size: ");
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001667 genimg_print_size(mhdr->blocksize - sizeof(uint32_t));
1668 printf("Load Address: %08x\n", mhdr->destaddr);
1669 printf("Entry Point: %08x\n", mhdr->execaddr);
1670}
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301671
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001672static int kwbimage_check_image_types(uint8_t type)
1673{
1674 if (type == IH_TYPE_KWBIMAGE)
1675 return EXIT_SUCCESS;
Mario Sixd6009d72017-01-11 16:00:54 +01001676
1677 return EXIT_FAILURE;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301678}
1679
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001680static int kwbimage_verify_header(unsigned char *ptr, int image_size,
1681 struct image_tool_params *params)
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301682{
Marek Behúnd1b0b032021-09-24 23:07:01 +02001683 size_t header_size = kwbheader_size(ptr);
1684 uint8_t csum;
Alexander Graf22e87fc2018-03-15 11:14:19 +01001685
1686 if (header_size > image_size)
1687 return -FDT_ERR_BADSTRUCTURE;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301688
Baruch Siach4a5b99b2017-07-04 20:23:40 +03001689 if (!main_hdr_checksum_ok(ptr))
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001690 return -FDT_ERR_BADSTRUCTURE;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301691
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001692 /* Only version 0 extended header has checksum */
Marek Behúnfa9caec2021-09-24 23:07:00 +02001693 if (kwbimage_version(ptr) == 0) {
Pali Rohár03345b92021-07-23 11:14:01 +02001694 struct main_hdr_v0 *mhdr = (struct main_hdr_v0 *)ptr;
Mario Six6f273632017-01-11 16:00:56 +01001695
Pali Rohár03345b92021-07-23 11:14:01 +02001696 if (mhdr->ext & 0x1) {
Marek Behúnd1b0b032021-09-24 23:07:01 +02001697 struct ext_hdr_v0 *ext_hdr = (void *)(mhdr + 1);
Pali Rohára98cc272021-08-11 10:14:15 +02001698
Marek Behúnd1b0b032021-09-24 23:07:01 +02001699 csum = image_checksum8(ext_hdr, sizeof(*ext_hdr) - 1);
1700 if (csum != ext_hdr->checksum)
Pali Rohár03345b92021-07-23 11:14:01 +02001701 return -FDT_ERR_BADSTRUCTURE;
1702 }
Marek Behúnfa9caec2021-09-24 23:07:00 +02001703 } else if (kwbimage_version(ptr) == 1) {
Pali Rohárfdb575a2021-07-23 11:14:02 +02001704 struct main_hdr_v1 *mhdr = (struct main_hdr_v1 *)ptr;
Marek Behúnb1a76502021-08-18 00:59:15 +02001705 const uint8_t *mhdr_end;
1706 struct opt_hdr_v1 *ohdr;
Pali Rohár48bc68c2021-07-23 11:14:03 +02001707 uint32_t offset;
1708 uint32_t size;
Pali Rohárfdb575a2021-07-23 11:14:02 +02001709
Marek Behúnb1a76502021-08-18 00:59:15 +02001710 mhdr_end = (uint8_t *)mhdr + header_size;
1711 for_each_opt_hdr_v1 (ohdr, ptr)
1712 if (!opt_hdr_v1_valid_size(ohdr, mhdr_end))
1713 return -FDT_ERR_BADSTRUCTURE;
Pali Rohár48bc68c2021-07-23 11:14:03 +02001714
1715 offset = le32_to_cpu(mhdr->srcaddr);
1716
1717 /*
1718 * For SATA srcaddr is specified in number of sectors.
1719 * The main header is must be stored at sector number 1.
1720 * This expects that sector size is 512 bytes and recalculates
1721 * data offset to bytes relative to the main header.
1722 */
1723 if (mhdr->blockid == IBR_HDR_SATA_ID) {
1724 if (offset < 1)
1725 return -FDT_ERR_BADSTRUCTURE;
1726 offset -= 1;
1727 offset *= 512;
1728 }
1729
1730 /*
1731 * For SDIO srcaddr is specified in number of sectors.
1732 * This expects that sector size is 512 bytes and recalculates
1733 * data offset to bytes.
1734 */
1735 if (mhdr->blockid == IBR_HDR_SDIO_ID)
1736 offset *= 512;
1737
1738 /*
1739 * For PCIe srcaddr is always set to 0xFFFFFFFF.
1740 * This expects that data starts after all headers.
1741 */
1742 if (mhdr->blockid == IBR_HDR_PEX_ID && offset == 0xFFFFFFFF)
1743 offset = header_size;
1744
1745 if (offset > image_size || offset % 4 != 0)
1746 return -FDT_ERR_BADSTRUCTURE;
1747
1748 size = le32_to_cpu(mhdr->blocksize);
Pali Roháre27c00b2021-08-11 10:14:16 +02001749 if (size < 4 || offset + size > image_size || size % 4 != 0)
Pali Rohár48bc68c2021-07-23 11:14:03 +02001750 return -FDT_ERR_BADSTRUCTURE;
1751
1752 if (image_checksum32(ptr + offset, size - 4) !=
1753 *(uint32_t *)(ptr + offset + size - 4))
1754 return -FDT_ERR_BADSTRUCTURE;
Pali Rohár010e2522021-08-11 10:14:14 +02001755 } else {
1756 return -FDT_ERR_BADSTRUCTURE;
Pali Rohárfdb575a2021-07-23 11:14:02 +02001757 }
1758
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301759 return 0;
1760}
1761
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001762static int kwbimage_generate(struct image_tool_params *params,
1763 struct image_type_params *tparams)
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301764{
Patrick Wildtef84f822017-05-10 22:18:54 +02001765 FILE *fcfg;
Pali Rohárcfb60a92021-07-23 11:13:56 +02001766 struct stat s;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001767 int alloc_len;
Pali Rohár04785152021-07-23 11:13:57 +02001768 int bootfrom;
Patrick Wildtef84f822017-05-10 22:18:54 +02001769 int version;
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001770 void *hdr;
Patrick Wildtef84f822017-05-10 22:18:54 +02001771 int ret;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301772
Patrick Wildtef84f822017-05-10 22:18:54 +02001773 fcfg = fopen(params->imagename, "r");
1774 if (!fcfg) {
1775 fprintf(stderr, "Could not open input file %s\n",
1776 params->imagename);
1777 exit(EXIT_FAILURE);
1778 }
1779
Pali Rohárcfb60a92021-07-23 11:13:56 +02001780 if (stat(params->datafile, &s)) {
1781 fprintf(stderr, "Could not stat data file %s: %s\n",
1782 params->datafile, strerror(errno));
1783 exit(EXIT_FAILURE);
1784 }
1785
Patrick Wildtef84f822017-05-10 22:18:54 +02001786 image_cfg = malloc(IMAGE_CFG_ELEMENT_MAX *
1787 sizeof(struct image_cfg_element));
1788 if (!image_cfg) {
1789 fprintf(stderr, "Cannot allocate memory\n");
1790 fclose(fcfg);
1791 exit(EXIT_FAILURE);
1792 }
1793
1794 memset(image_cfg, 0,
1795 IMAGE_CFG_ELEMENT_MAX * sizeof(struct image_cfg_element));
1796 rewind(fcfg);
1797
1798 ret = image_create_config_parse(fcfg);
1799 fclose(fcfg);
1800 if (ret) {
1801 free(image_cfg);
1802 exit(EXIT_FAILURE);
1803 }
1804
Pali Rohár04785152021-07-23 11:13:57 +02001805 bootfrom = image_get_bootfrom();
Patrick Wildtef84f822017-05-10 22:18:54 +02001806 version = image_get_version();
1807 switch (version) {
1808 /*
1809 * Fallback to version 0 if no version is provided in the
1810 * cfg file
1811 */
1812 case -1:
1813 case 0:
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001814 alloc_len = sizeof(struct main_hdr_v0) +
1815 sizeof(struct ext_hdr_v0);
Patrick Wildtef84f822017-05-10 22:18:54 +02001816 break;
1817
1818 case 1:
Mario Six855cf9e2017-01-11 16:00:57 +01001819 alloc_len = image_headersz_v1(NULL);
Patrick Wildtef84f822017-05-10 22:18:54 +02001820 break;
1821
1822 default:
1823 fprintf(stderr, "Unsupported version %d\n", version);
1824 free(image_cfg);
1825 exit(EXIT_FAILURE);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001826 }
1827
Patrick Wildtef84f822017-05-10 22:18:54 +02001828 free(image_cfg);
1829
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001830 hdr = malloc(alloc_len);
1831 if (!hdr) {
1832 fprintf(stderr, "%s: malloc return failure: %s\n",
1833 params->cmdname, strerror(errno));
1834 exit(EXIT_FAILURE);
1835 }
1836
1837 memset(hdr, 0, alloc_len);
1838 tparams->header_size = alloc_len;
1839 tparams->hdr = hdr;
1840
Stefan Roeseda43fd32015-11-24 09:14:59 +01001841 /*
1842 * The resulting image needs to be 4-byte aligned. At least
1843 * the Marvell hdrparser tool complains if its unaligned.
Pali Rohárcfb60a92021-07-23 11:13:56 +02001844 * After the image data is stored 4-byte checksum.
Pali Rohár04785152021-07-23 11:13:57 +02001845 * Final SPI and NAND images must be aligned to 256 bytes.
Pali Rohár6f6f65e2021-07-23 11:13:59 +02001846 * Final SATA and SDIO images must be aligned to 512 bytes.
Stefan Roeseda43fd32015-11-24 09:14:59 +01001847 */
Pali Rohár04785152021-07-23 11:13:57 +02001848 if (bootfrom == IBR_HDR_SPI_ID || bootfrom == IBR_HDR_NAND_ID)
1849 return 4 + (256 - (alloc_len + s.st_size + 4) % 256) % 256;
Pali Rohár6f6f65e2021-07-23 11:13:59 +02001850 else if (bootfrom == IBR_HDR_SATA_ID || bootfrom == IBR_HDR_SDIO_ID)
1851 return 4 + (512 - (alloc_len + s.st_size + 4) % 512) % 512;
Pali Rohár04785152021-07-23 11:13:57 +02001852 else
1853 return 4 + (4 - s.st_size % 4) % 4;
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301854}
1855
Pali Rohár5ec2c582021-07-23 11:14:34 +02001856static int kwbimage_extract_subimage(void *ptr, struct image_tool_params *params)
1857{
1858 struct main_hdr_v1 *mhdr = (struct main_hdr_v1 *)ptr;
Marek Behúnd1b0b032021-09-24 23:07:01 +02001859 size_t header_size = kwbheader_size(ptr);
Marek Behúnb1a76502021-08-18 00:59:15 +02001860 struct opt_hdr_v1 *ohdr;
Pali Rohár5ec2c582021-07-23 11:14:34 +02001861 int idx = params->pflag;
1862 int cur_idx = 0;
1863 uint32_t offset;
1864 ulong image;
1865 ulong size;
1866
Marek Behúnb1a76502021-08-18 00:59:15 +02001867 for_each_opt_hdr_v1 (ohdr, ptr) {
1868 if (ohdr->headertype != OPT_HDR_V1_BINARY_TYPE)
1869 continue;
Pali Rohár5ec2c582021-07-23 11:14:34 +02001870
Marek Behúnb1a76502021-08-18 00:59:15 +02001871 if (idx == cur_idx) {
1872 image = (ulong)&ohdr->data[4 + 4 * ohdr->data[0]];
1873 size = opt_hdr_v1_size(ohdr) - 12 - 4 * ohdr->data[0];
1874 goto extract;
Pali Rohár5ec2c582021-07-23 11:14:34 +02001875 }
Marek Behúnb1a76502021-08-18 00:59:15 +02001876
1877 ++cur_idx;
Pali Rohár5ec2c582021-07-23 11:14:34 +02001878 }
1879
1880 if (idx != cur_idx) {
1881 printf("Image %d is not present\n", idx);
1882 return -1;
1883 }
1884
1885 offset = le32_to_cpu(mhdr->srcaddr);
1886
1887 if (mhdr->blockid == IBR_HDR_SATA_ID) {
1888 offset -= 1;
1889 offset *= 512;
1890 }
1891
1892 if (mhdr->blockid == IBR_HDR_SDIO_ID)
1893 offset *= 512;
1894
1895 if (mhdr->blockid == IBR_HDR_PEX_ID && offset == 0xFFFFFFFF)
1896 offset = header_size;
1897
1898 image = (ulong)((uint8_t *)ptr + offset);
1899 size = le32_to_cpu(mhdr->blocksize) - 4;
1900
1901extract:
1902 return imagetool_save_subimage(params->outfile, image, size);
1903}
1904
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001905/*
1906 * Report Error if xflag is set in addition to default
1907 */
1908static int kwbimage_check_params(struct image_tool_params *params)
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301909{
Pali Rohár5ec2c582021-07-23 11:14:34 +02001910 if (!params->iflag && (!params->imagename || !strlen(params->imagename))) {
Mario Sixd6009d72017-01-11 16:00:54 +01001911 char *msg = "Configuration file for kwbimage creation omitted";
1912
1913 fprintf(stderr, "Error:%s - %s\n", params->cmdname, msg);
Stefan Roese3b8b19d2014-10-22 12:13:23 +02001914 return CFG_INVALID;
1915 }
1916
1917 return (params->dflag && (params->fflag || params->lflag)) ||
1918 (params->fflag && (params->dflag || params->lflag)) ||
1919 (params->lflag && (params->dflag || params->fflag)) ||
Pali Rohár5ec2c582021-07-23 11:14:34 +02001920 (params->xflag);
Prafulla Wadaskar07329412009-09-07 15:05:02 +05301921}
1922
1923/*
1924 * kwbimage type parameters definition
1925 */
Guilherme Maciel Ferreira28be1cf2015-01-15 02:48:07 -02001926U_BOOT_IMAGE_TYPE(
1927 kwbimage,
1928 "Marvell MVEBU Boot Image support",
1929 0,
1930 NULL,
1931 kwbimage_check_params,
1932 kwbimage_verify_header,
1933 kwbimage_print_header,
1934 kwbimage_set_header,
Pali Rohár5ec2c582021-07-23 11:14:34 +02001935 kwbimage_extract_subimage,
Guilherme Maciel Ferreira28be1cf2015-01-15 02:48:07 -02001936 kwbimage_check_image_types,
1937 NULL,
1938 kwbimage_generate
1939);