blob: 114b313b4d5b3d30ce3a3fc85180c4fd8a995462 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05302/*
Stefan Roese4acd2d22014-10-22 12:13:23 +02003 * Image manipulator for Marvell SoCs
Pali Rohár8010f4f2021-09-24 23:07:02 +02004 * supports Kirkwood, Dove, Armada 370, Armada XP, Armada 375, Armada 38x and
5 * Armada 39x
Stefan Roese4acd2d22014-10-22 12:13:23 +02006 *
7 * (C) Copyright 2013 Thomas Petazzoni
8 * <thomas.petazzoni@free-electrons.com>
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05309 */
10
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070011#include "imagetool.h"
Andreas Bießmanne5f1a582014-10-24 23:39:11 +020012#include <limits.h>
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +053013#include <image.h>
Mario Sixa1b6b0a2017-01-11 16:01:00 +010014#include <stdarg.h>
Stefan Roese4acd2d22014-10-22 12:13:23 +020015#include <stdint.h>
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +053016#include "kwbimage.h"
17
Jelle van der Waae15843b2017-05-08 21:31:20 +020018#include <openssl/bn.h>
Mario Sixa1b6b0a2017-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 Waae15843b2017-05-08 21:31:20 +020023
Jonathan Graya2d5efd2018-02-21 02:59:01 +110024#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
25 (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
Jelle van der Waae15843b2017-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 Graya2d5efd2018-02-21 02:59:01 +110037#elif !defined(LIBRESSL_VERSION_NUMBER)
Jelle van der Waae15843b2017-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 Sixa1b6b0a2017-01-11 16:01:00 +010043
Stefan Roese4acd2d22014-10-22 12:13:23 +020044static struct image_cfg_element *image_cfg;
45static int cfgn;
Mario Sixa1b6b0a2017-01-11 16:01:00 +010046static int verbose_mode;
Stefan Roese4acd2d22014-10-22 12:13:23 +020047
48struct boot_mode {
49 unsigned int id;
50 const char *name;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +053051};
52
Mario Sixa1b6b0a2017-01-11 16:01:00 +010053/*
54 * SHA2-256 hash
55 */
56struct hash_v1 {
57 uint8_t hash[32];
58};
59
Stefan Roese4acd2d22014-10-22 12:13:23 +020060struct boot_mode boot_modes[] = {
Pali Roháre515a332021-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 Roese4acd2d22014-10-22 12:13:23 +020068 {},
69};
70
71struct nand_ecc_mode {
72 unsigned int id;
73 const char *name;
74};
75
76struct nand_ecc_mode nand_ecc_modes[] = {
Pali Roháre515a332021-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 Roese4acd2d22014-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ár6c7f1522021-07-23 11:14:07 +020087#define BINARY_MAX_ARGS 255
Stefan Roese4acd2d22014-10-22 12:13:23 +020088
89/* In-memory representation of a line of the configuration file */
Mario Six4991b4f2017-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 Six4991b4f2017-01-11 16:00:59 +0100101 IMAGE_CFG_DATA,
Pali Rohárf63c5832021-07-23 11:14:12 +0200102 IMAGE_CFG_DATA_DELAY,
Mario Six4991b4f2017-01-11 16:00:59 +0100103 IMAGE_CFG_BAUDRATE,
Pali Rohár12f2c032021-11-08 18:12:41 +0100104 IMAGE_CFG_UART_PORT,
105 IMAGE_CFG_UART_MPP,
Mario Six4991b4f2017-01-11 16:00:59 +0100106 IMAGE_CFG_DEBUG,
Mario Sixa1b6b0a2017-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 Six4991b4f2017-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 Six4991b4f2017-01-11 16:00:59 +0100131 [IMAGE_CFG_DATA] = "DATA",
Pali Rohárf63c5832021-07-23 11:14:12 +0200132 [IMAGE_CFG_DATA_DELAY] = "DATA_DELAY",
Mario Six4991b4f2017-01-11 16:00:59 +0100133 [IMAGE_CFG_BAUDRATE] = "BAUDRATE",
Pali Rohár12f2c032021-11-08 18:12:41 +0100134 [IMAGE_CFG_UART_PORT] = "UART_PORT",
135 [IMAGE_CFG_UART_MPP] = "UART_MPP",
Mario Six4991b4f2017-01-11 16:00:59 +0100136 [IMAGE_CFG_DEBUG] = "DEBUG",
Mario Sixa1b6b0a2017-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 Six4991b4f2017-01-11 16:00:59 +0100147};
148
Stefan Roese4acd2d22014-10-22 12:13:23 +0200149struct image_cfg_element {
Mario Six4991b4f2017-01-11 16:00:59 +0100150 enum image_cfg_type type;
Stefan Roese4acd2d22014-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 Roese4acd2d22014-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árf63c5832021-07-23 11:14:12 +0200166 unsigned int regdata_delay;
Chris Packham4bdb5472016-11-09 22:07:45 +1300167 unsigned int baudrate;
Pali Rohár12f2c032021-11-08 18:12:41 +0100168 unsigned int uart_port;
169 unsigned int uart_mpp;
Chris Packham2611c052016-11-09 22:21:45 +1300170 unsigned int debug;
Mario Sixa1b6b0a2017-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 Roese4acd2d22014-10-22 12:13:23 +0200179 };
180};
181
182#define IMAGE_CFG_ELEMENT_MAX 256
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530183
184/*
Stefan Roese4acd2d22014-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).
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530188 */
Stefan Roese4acd2d22014-10-22 12:13:23 +0200189
190static const char *image_boot_mode_name(unsigned int id)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530191{
Stefan Roese4acd2d22014-10-22 12:13:23 +0200192 int i;
Mario Six94490a42017-01-11 16:00:54 +0100193
Stefan Roese4acd2d22014-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}
199
200int image_boot_mode_id(const char *boot_mode_name)
201{
202 int i;
Mario Six94490a42017-01-11 16:00:54 +0100203
Stefan Roese4acd2d22014-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 Six94490a42017-01-11 16:00:54 +0100214
Stefan Roese4acd2d22014-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];
229 }
230
231 return NULL;
232}
233
234static 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 Sixa1b6b0a2017-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
Pali Rohárd1547b32021-11-08 18:12:43 +0100269static int image_get_bootfrom(void)
270{
271 struct image_cfg_element *e;
272
273 e = image_find_option(IMAGE_CFG_BOOT_FROM);
274 if (!e)
275 /* fallback to SPI if no BOOT_FROM is not provided */
276 return IBR_HDR_SPI_ID;
277
278 return e->bootfrom;
279}
280
Stefan Roese4acd2d22014-10-22 12:13:23 +0200281/*
282 * Compute a 8-bit checksum of a memory area. This algorithm follows
283 * the requirements of the Marvell SoC BootROM specifications.
284 */
285static uint8_t image_checksum8(void *start, uint32_t len)
286{
287 uint8_t csum = 0;
288 uint8_t *p = start;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530289
290 /* check len and return zero checksum if invalid */
291 if (!len)
292 return 0;
293
294 do {
Stefan Roese4acd2d22014-10-22 12:13:23 +0200295 csum += *p;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530296 p++;
297 } while (--len);
Stefan Roese4acd2d22014-10-22 12:13:23 +0200298
299 return csum;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530300}
301
Baruch Siachdb7cd4ed2017-07-04 20:23:40 +0300302/*
303 * Verify checksum over a complete header that includes the checksum field.
304 * Return 1 when OK, otherwise 0.
305 */
306static int main_hdr_checksum_ok(void *hdr)
307{
308 /* Offsets of checksum in v0 and v1 headers are the same */
309 struct main_hdr_v0 *main_hdr = (struct main_hdr_v0 *)hdr;
310 uint8_t checksum;
311
Marek Behúnfe2fd732021-09-24 23:07:01 +0200312 checksum = image_checksum8(hdr, kwbheader_size_for_csum(hdr));
Baruch Siachdb7cd4ed2017-07-04 20:23:40 +0300313 /* Calculated checksum includes the header checksum field. Compensate
314 * for that.
315 */
316 checksum -= main_hdr->checksum;
317
318 return checksum == main_hdr->checksum;
319}
320
Stefan Roese4acd2d22014-10-22 12:13:23 +0200321static uint32_t image_checksum32(void *start, uint32_t len)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530322{
Stefan Roese4acd2d22014-10-22 12:13:23 +0200323 uint32_t csum = 0;
324 uint32_t *p = start;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530325
326 /* check len and return zero checksum if invalid */
327 if (!len)
328 return 0;
329
330 if (len % sizeof(uint32_t)) {
Stefan Roese4acd2d22014-10-22 12:13:23 +0200331 fprintf(stderr, "Length %d is not in multiple of %zu\n",
332 len, sizeof(uint32_t));
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530333 return 0;
334 }
335
336 do {
Stefan Roese4acd2d22014-10-22 12:13:23 +0200337 csum += *p;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530338 p++;
339 len -= sizeof(uint32_t);
340 } while (len > 0);
Stefan Roese4acd2d22014-10-22 12:13:23 +0200341
342 return csum;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530343}
344
Chris Packham4bdb5472016-11-09 22:07:45 +1300345static uint8_t baudrate_to_option(unsigned int baudrate)
346{
347 switch (baudrate) {
348 case 2400:
349 return MAIN_HDR_V1_OPT_BAUD_2400;
350 case 4800:
351 return MAIN_HDR_V1_OPT_BAUD_4800;
352 case 9600:
353 return MAIN_HDR_V1_OPT_BAUD_9600;
354 case 19200:
355 return MAIN_HDR_V1_OPT_BAUD_19200;
356 case 38400:
357 return MAIN_HDR_V1_OPT_BAUD_38400;
358 case 57600:
359 return MAIN_HDR_V1_OPT_BAUD_57600;
360 case 115200:
361 return MAIN_HDR_V1_OPT_BAUD_115200;
362 default:
363 return MAIN_HDR_V1_OPT_BAUD_DEFAULT;
364 }
365}
366
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100367static void kwb_msg(const char *fmt, ...)
368{
369 if (verbose_mode) {
370 va_list ap;
371
372 va_start(ap, fmt);
373 vfprintf(stdout, fmt, ap);
374 va_end(ap);
375 }
376}
377
378static int openssl_err(const char *msg)
379{
380 unsigned long ssl_err = ERR_get_error();
381
382 fprintf(stderr, "%s", msg);
383 fprintf(stderr, ": %s\n",
384 ERR_error_string(ssl_err, 0));
385
386 return -1;
387}
388
389static int kwb_load_rsa_key(const char *keydir, const char *name, RSA **p_rsa)
390{
391 char path[PATH_MAX];
392 RSA *rsa;
393 FILE *f;
394
395 if (!keydir)
396 keydir = ".";
397
398 snprintf(path, sizeof(path), "%s/%s.key", keydir, name);
399 f = fopen(path, "r");
400 if (!f) {
401 fprintf(stderr, "Couldn't open RSA private key: '%s': %s\n",
402 path, strerror(errno));
403 return -ENOENT;
404 }
405
406 rsa = PEM_read_RSAPrivateKey(f, 0, NULL, "");
407 if (!rsa) {
408 openssl_err("Failure reading private key");
409 fclose(f);
410 return -EPROTO;
411 }
412 fclose(f);
413 *p_rsa = rsa;
414
415 return 0;
416}
417
418static int kwb_load_cfg_key(struct image_tool_params *params,
419 unsigned int cfg_option, const char *key_name,
420 RSA **p_key)
421{
422 struct image_cfg_element *e_key;
423 RSA *key;
424 int res;
425
426 *p_key = NULL;
427
428 e_key = image_find_option(cfg_option);
429 if (!e_key) {
430 fprintf(stderr, "%s not configured\n", key_name);
431 return -ENOENT;
432 }
433
434 res = kwb_load_rsa_key(params->keydir, e_key->key_name, &key);
435 if (res < 0) {
436 fprintf(stderr, "Failed to load %s\n", key_name);
437 return -ENOENT;
438 }
439
440 *p_key = key;
441
442 return 0;
443}
444
445static int kwb_load_kak(struct image_tool_params *params, RSA **p_kak)
446{
447 return kwb_load_cfg_key(params, IMAGE_CFG_KAK, "KAK", p_kak);
448}
449
450static int kwb_load_csk(struct image_tool_params *params, RSA **p_csk)
451{
452 return kwb_load_cfg_key(params, IMAGE_CFG_CSK, "CSK", p_csk);
453}
454
455static int kwb_compute_pubkey_hash(struct pubkey_der_v1 *pk,
456 struct hash_v1 *hash)
457{
458 EVP_MD_CTX *ctx;
459 unsigned int key_size;
460 unsigned int hash_size;
461 int ret = 0;
462
463 if (!pk || !hash || pk->key[0] != 0x30 || pk->key[1] != 0x82)
464 return -EINVAL;
465
466 key_size = (pk->key[2] << 8) + pk->key[3] + 4;
467
468 ctx = EVP_MD_CTX_create();
469 if (!ctx)
470 return openssl_err("EVP context creation failed");
471
472 EVP_MD_CTX_init(ctx);
473 if (!EVP_DigestInit(ctx, EVP_sha256())) {
474 ret = openssl_err("Digest setup failed");
475 goto hash_err_ctx;
476 }
477
478 if (!EVP_DigestUpdate(ctx, pk->key, key_size)) {
479 ret = openssl_err("Hashing data failed");
480 goto hash_err_ctx;
481 }
482
483 if (!EVP_DigestFinal(ctx, hash->hash, &hash_size)) {
484 ret = openssl_err("Could not obtain hash");
485 goto hash_err_ctx;
486 }
487
488 EVP_MD_CTX_cleanup(ctx);
489
490hash_err_ctx:
491 EVP_MD_CTX_destroy(ctx);
492 return ret;
493}
494
495static int kwb_import_pubkey(RSA **key, struct pubkey_der_v1 *src, char *keyname)
496{
497 RSA *rsa;
498 const unsigned char *ptr;
499
500 if (!key || !src)
501 goto fail;
502
503 ptr = src->key;
504 rsa = d2i_RSAPublicKey(key, &ptr, sizeof(src->key));
505 if (!rsa) {
506 openssl_err("error decoding public key");
507 goto fail;
508 }
509
510 return 0;
511fail:
512 fprintf(stderr, "Failed to decode %s pubkey\n", keyname);
513 return -EINVAL;
514}
515
516static int kwb_export_pubkey(RSA *key, struct pubkey_der_v1 *dst, FILE *hashf,
517 char *keyname)
518{
519 int size_exp, size_mod, size_seq;
Jelle van der Waae15843b2017-05-08 21:31:20 +0200520 const BIGNUM *key_e, *key_n;
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100521 uint8_t *cur;
522 char *errmsg = "Failed to encode %s\n";
523
Jelle van der Waae15843b2017-05-08 21:31:20 +0200524 RSA_get0_key(key, NULL, &key_e, NULL);
525 RSA_get0_key(key, &key_n, NULL, NULL);
526
527 if (!key || !key_e || !key_n || !dst) {
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100528 fprintf(stderr, "export pk failed: (%p, %p, %p, %p)",
Jelle van der Waae15843b2017-05-08 21:31:20 +0200529 key, key_e, key_n, dst);
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100530 fprintf(stderr, errmsg, keyname);
531 return -EINVAL;
532 }
533
534 /*
535 * According to the specs, the key should be PKCS#1 DER encoded.
536 * But unfortunately the really required encoding seems to be different;
537 * it violates DER...! (But it still conformes to BER.)
538 * (Length always in long form w/ 2 byte length code; no leading zero
539 * when MSB of first byte is set...)
540 * So we cannot use the encoding func provided by OpenSSL and have to
541 * do the encoding manually.
542 */
543
Jelle van der Waae15843b2017-05-08 21:31:20 +0200544 size_exp = BN_num_bytes(key_e);
545 size_mod = BN_num_bytes(key_n);
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100546 size_seq = 4 + size_mod + 4 + size_exp;
547
548 if (size_mod > 256) {
549 fprintf(stderr, "export pk failed: wrong mod size: %d\n",
550 size_mod);
551 fprintf(stderr, errmsg, keyname);
552 return -EINVAL;
553 }
554
555 if (4 + size_seq > sizeof(dst->key)) {
Marek Behún3b5da642021-09-24 23:06:38 +0200556 fprintf(stderr, "export pk failed: seq too large (%d, %zu)\n",
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100557 4 + size_seq, sizeof(dst->key));
558 fprintf(stderr, errmsg, keyname);
559 return -ENOBUFS;
560 }
561
562 cur = dst->key;
563
564 /* PKCS#1 (RFC3447) RSAPublicKey structure */
565 *cur++ = 0x30; /* SEQUENCE */
566 *cur++ = 0x82;
567 *cur++ = (size_seq >> 8) & 0xFF;
568 *cur++ = size_seq & 0xFF;
569 /* Modulus */
570 *cur++ = 0x02; /* INTEGER */
571 *cur++ = 0x82;
572 *cur++ = (size_mod >> 8) & 0xFF;
573 *cur++ = size_mod & 0xFF;
Jelle van der Waae15843b2017-05-08 21:31:20 +0200574 BN_bn2bin(key_n, cur);
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100575 cur += size_mod;
576 /* Exponent */
577 *cur++ = 0x02; /* INTEGER */
578 *cur++ = 0x82;
579 *cur++ = (size_exp >> 8) & 0xFF;
580 *cur++ = size_exp & 0xFF;
Jelle van der Waae15843b2017-05-08 21:31:20 +0200581 BN_bn2bin(key_e, cur);
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100582
583 if (hashf) {
584 struct hash_v1 pk_hash;
585 int i;
586 int ret = 0;
587
588 ret = kwb_compute_pubkey_hash(dst, &pk_hash);
589 if (ret < 0) {
590 fprintf(stderr, errmsg, keyname);
591 return ret;
592 }
593
594 fprintf(hashf, "SHA256 = ");
595 for (i = 0 ; i < sizeof(pk_hash.hash); ++i)
596 fprintf(hashf, "%02X", pk_hash.hash[i]);
597 fprintf(hashf, "\n");
598 }
599
600 return 0;
601}
602
603int kwb_sign(RSA *key, void *data, int datasz, struct sig_v1 *sig, char *signame)
604{
605 EVP_PKEY *evp_key;
606 EVP_MD_CTX *ctx;
607 unsigned int sig_size;
608 int size;
609 int ret = 0;
610
611 evp_key = EVP_PKEY_new();
612 if (!evp_key)
613 return openssl_err("EVP_PKEY object creation failed");
614
615 if (!EVP_PKEY_set1_RSA(evp_key, key)) {
616 ret = openssl_err("EVP key setup failed");
617 goto err_key;
618 }
619
620 size = EVP_PKEY_size(evp_key);
621 if (size > sizeof(sig->sig)) {
622 fprintf(stderr, "Buffer to small for signature (%d bytes)\n",
623 size);
624 ret = -ENOBUFS;
625 goto err_key;
626 }
627
628 ctx = EVP_MD_CTX_create();
629 if (!ctx) {
630 ret = openssl_err("EVP context creation failed");
631 goto err_key;
632 }
633 EVP_MD_CTX_init(ctx);
634 if (!EVP_SignInit(ctx, EVP_sha256())) {
635 ret = openssl_err("Signer setup failed");
636 goto err_ctx;
637 }
638
639 if (!EVP_SignUpdate(ctx, data, datasz)) {
640 ret = openssl_err("Signing data failed");
641 goto err_ctx;
642 }
643
644 if (!EVP_SignFinal(ctx, sig->sig, &sig_size, evp_key)) {
645 ret = openssl_err("Could not obtain signature");
646 goto err_ctx;
647 }
648
649 EVP_MD_CTX_cleanup(ctx);
650 EVP_MD_CTX_destroy(ctx);
651 EVP_PKEY_free(evp_key);
652
653 return 0;
654
655err_ctx:
656 EVP_MD_CTX_destroy(ctx);
657err_key:
658 EVP_PKEY_free(evp_key);
659 fprintf(stderr, "Failed to create %s signature\n", signame);
660 return ret;
661}
662
663int kwb_verify(RSA *key, void *data, int datasz, struct sig_v1 *sig,
664 char *signame)
665{
666 EVP_PKEY *evp_key;
667 EVP_MD_CTX *ctx;
668 int size;
669 int ret = 0;
670
671 evp_key = EVP_PKEY_new();
672 if (!evp_key)
673 return openssl_err("EVP_PKEY object creation failed");
674
675 if (!EVP_PKEY_set1_RSA(evp_key, key)) {
676 ret = openssl_err("EVP key setup failed");
677 goto err_key;
678 }
679
680 size = EVP_PKEY_size(evp_key);
681 if (size > sizeof(sig->sig)) {
682 fprintf(stderr, "Invalid signature size (%d bytes)\n",
683 size);
684 ret = -EINVAL;
685 goto err_key;
686 }
687
688 ctx = EVP_MD_CTX_create();
689 if (!ctx) {
690 ret = openssl_err("EVP context creation failed");
691 goto err_key;
692 }
693 EVP_MD_CTX_init(ctx);
694 if (!EVP_VerifyInit(ctx, EVP_sha256())) {
695 ret = openssl_err("Verifier setup failed");
696 goto err_ctx;
697 }
698
699 if (!EVP_VerifyUpdate(ctx, data, datasz)) {
700 ret = openssl_err("Hashing data failed");
701 goto err_ctx;
702 }
703
Young Xiao22515122019-04-17 17:20:24 +0800704 if (EVP_VerifyFinal(ctx, sig->sig, sizeof(sig->sig), evp_key) != 1) {
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100705 ret = openssl_err("Could not verify signature");
706 goto err_ctx;
707 }
708
709 EVP_MD_CTX_cleanup(ctx);
710 EVP_MD_CTX_destroy(ctx);
711 EVP_PKEY_free(evp_key);
712
713 return 0;
714
715err_ctx:
716 EVP_MD_CTX_destroy(ctx);
717err_key:
718 EVP_PKEY_free(evp_key);
719 fprintf(stderr, "Failed to verify %s signature\n", signame);
720 return ret;
721}
722
723int kwb_sign_and_verify(RSA *key, void *data, int datasz, struct sig_v1 *sig,
724 char *signame)
725{
726 if (kwb_sign(key, data, datasz, sig, signame) < 0)
727 return -1;
728
729 if (kwb_verify(key, data, datasz, sig, signame) < 0)
730 return -1;
731
732 return 0;
733}
734
735
736int kwb_dump_fuse_cmds_38x(FILE *out, struct secure_hdr_v1 *sec_hdr)
737{
738 struct hash_v1 kak_pub_hash;
739 struct image_cfg_element *e;
740 unsigned int fuse_line;
741 int i, idx;
742 uint8_t *ptr;
743 uint32_t val;
744 int ret = 0;
745
746 if (!out || !sec_hdr)
747 return -EINVAL;
748
749 ret = kwb_compute_pubkey_hash(&sec_hdr->kak, &kak_pub_hash);
750 if (ret < 0)
751 goto done;
752
753 fprintf(out, "# burn KAK pub key hash\n");
754 ptr = kak_pub_hash.hash;
755 for (fuse_line = 26; fuse_line <= 30; ++fuse_line) {
756 fprintf(out, "fuse prog -y %u 0 ", fuse_line);
757
758 for (i = 4; i-- > 0;)
759 fprintf(out, "%02hx", (ushort)ptr[i]);
760 ptr += 4;
761 fprintf(out, " 00");
762
763 if (fuse_line < 30) {
764 for (i = 3; i-- > 0;)
765 fprintf(out, "%02hx", (ushort)ptr[i]);
766 ptr += 3;
767 } else {
768 fprintf(out, "000000");
769 }
770
771 fprintf(out, " 1\n");
772 }
773
774 fprintf(out, "# burn CSK selection\n");
775
776 idx = image_get_csk_index();
777 if (idx < 0 || idx > 15) {
778 ret = -EINVAL;
779 goto done;
780 }
781 if (idx > 0) {
782 for (fuse_line = 31; fuse_line < 31 + idx; ++fuse_line)
783 fprintf(out, "fuse prog -y %u 0 00000001 00000000 1\n",
784 fuse_line);
785 } else {
786 fprintf(out, "# CSK index is 0; no mods needed\n");
787 }
788
789 e = image_find_option(IMAGE_CFG_BOX_ID);
790 if (e) {
791 fprintf(out, "# set box ID\n");
792 fprintf(out, "fuse prog -y 48 0 %08x 00000000 1\n", e->boxid);
793 }
794
795 e = image_find_option(IMAGE_CFG_FLASH_ID);
796 if (e) {
797 fprintf(out, "# set flash ID\n");
798 fprintf(out, "fuse prog -y 47 0 %08x 00000000 1\n", e->flashid);
799 }
800
801 fprintf(out, "# enable secure mode ");
802 fprintf(out, "(must be the last fuse line written)\n");
803
804 val = 1;
805 e = image_find_option(IMAGE_CFG_SEC_BOOT_DEV);
806 if (!e) {
807 fprintf(stderr, "ERROR: secured mode boot device not given\n");
808 ret = -EINVAL;
809 goto done;
810 }
811
812 if (e->sec_boot_dev > 0xff) {
813 fprintf(stderr, "ERROR: secured mode boot device invalid\n");
814 ret = -EINVAL;
815 goto done;
816 }
817
818 val |= (e->sec_boot_dev << 8);
819
820 fprintf(out, "fuse prog -y 24 0 %08x 0103e0a9 1\n", val);
821
822 fprintf(out, "# lock (unused) fuse lines (0-23)s\n");
823 for (fuse_line = 0; fuse_line < 24; ++fuse_line)
824 fprintf(out, "fuse prog -y %u 2 1\n", fuse_line);
825
826 fprintf(out, "# OK, that's all :-)\n");
827
828done:
829 return ret;
830}
831
832static int kwb_dump_fuse_cmds(struct secure_hdr_v1 *sec_hdr)
833{
834 int ret = 0;
835 struct image_cfg_element *e;
836
837 e = image_find_option(IMAGE_CFG_SEC_FUSE_DUMP);
838 if (!e)
839 return 0;
840
841 if (!strcmp(e->name, "a38x")) {
842 FILE *out = fopen("kwb_fuses_a38x.txt", "w+");
843
Heinrich Schuchardtf858bb22021-08-17 07:03:20 +0200844 if (!out) {
845 fprintf(stderr, "Couldn't open eFuse settings: '%s': %s\n",
846 "kwb_fuses_a38x.txt", strerror(errno));
847 return -ENOENT;
848 }
849
Mario Sixa1b6b0a2017-01-11 16:01:00 +0100850 kwb_dump_fuse_cmds_38x(out, sec_hdr);
851 fclose(out);
852 goto done;
853 }
854
855 ret = -ENOSYS;
856
857done:
858 return ret;
859}
860
Pali Rohár5cad2e62021-11-08 18:12:48 +0100861static size_t image_headersz_align(size_t headersz, uint8_t blockid)
862{
863 /*
864 * Header needs to be 4-byte aligned, which is already ensured by code
865 * above. Moreover UART images must have header aligned to 128 bytes
866 * (xmodem block size), NAND images to 256 bytes (ECC calculation),
867 * and SATA and SDIO images to 512 bytes (storage block size).
868 * Note that SPI images do not have to have header size aligned
869 * to 256 bytes because it is possible to read from SPI storage from
870 * any offset (read offset does not have to be aligned to block size).
871 */
872 if (blockid == IBR_HDR_UART_ID)
873 return ALIGN(headersz, 128);
874 else if (blockid == IBR_HDR_NAND_ID)
875 return ALIGN(headersz, 256);
876 else if (blockid == IBR_HDR_SATA_ID || blockid == IBR_HDR_SDIO_ID)
877 return ALIGN(headersz, 512);
878 else
879 return headersz;
880}
881
Stefan Roese4acd2d22014-10-22 12:13:23 +0200882static void *image_create_v0(size_t *imagesz, struct image_tool_params *params,
883 int payloadsz)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530884{
Stefan Roese4acd2d22014-10-22 12:13:23 +0200885 struct image_cfg_element *e;
886 size_t headersz;
887 struct main_hdr_v0 *main_hdr;
Mario Six885fba12017-01-11 16:00:55 +0100888 uint8_t *image;
Stefan Roese4acd2d22014-10-22 12:13:23 +0200889 int has_ext = 0;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530890
Stefan Roese4acd2d22014-10-22 12:13:23 +0200891 /*
892 * Calculate the size of the header and the size of the
893 * payload
894 */
895 headersz = sizeof(struct main_hdr_v0);
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530896
Stefan Roese4acd2d22014-10-22 12:13:23 +0200897 if (image_count_options(IMAGE_CFG_DATA) > 0) {
898 has_ext = 1;
899 headersz += sizeof(struct ext_hdr_v0);
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530900 }
901
Stefan Roese4acd2d22014-10-22 12:13:23 +0200902 image = malloc(headersz);
903 if (!image) {
904 fprintf(stderr, "Cannot allocate memory for image\n");
905 return NULL;
906 }
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530907
Stefan Roese4acd2d22014-10-22 12:13:23 +0200908 memset(image, 0, headersz);
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530909
Mario Six885fba12017-01-11 16:00:55 +0100910 main_hdr = (struct main_hdr_v0 *)image;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530911
Stefan Roese4acd2d22014-10-22 12:13:23 +0200912 /* Fill in the main header */
Reinhard Pfaua8840dc2015-11-29 15:48:25 +0100913 main_hdr->blocksize =
Pali Roháre23ad5d2021-11-08 18:12:47 +0100914 cpu_to_le32(payloadsz);
Reinhard Pfaua8840dc2015-11-29 15:48:25 +0100915 main_hdr->srcaddr = cpu_to_le32(headersz);
Stefan Roese4acd2d22014-10-22 12:13:23 +0200916 main_hdr->ext = has_ext;
Pali Rohár01bdac62021-11-08 18:12:42 +0100917 main_hdr->version = 0;
Reinhard Pfaua8840dc2015-11-29 15:48:25 +0100918 main_hdr->destaddr = cpu_to_le32(params->addr);
919 main_hdr->execaddr = cpu_to_le32(params->ep);
Pali Rohárd1547b32021-11-08 18:12:43 +0100920 main_hdr->blockid = image_get_bootfrom();
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530921
Stefan Roese4acd2d22014-10-22 12:13:23 +0200922 e = image_find_option(IMAGE_CFG_NAND_ECC_MODE);
923 if (e)
924 main_hdr->nandeccmode = e->nandeccmode;
925 e = image_find_option(IMAGE_CFG_NAND_PAGESZ);
926 if (e)
Reinhard Pfaua8840dc2015-11-29 15:48:25 +0100927 main_hdr->nandpagesize = cpu_to_le16(e->nandpagesz);
Stefan Roese4acd2d22014-10-22 12:13:23 +0200928 main_hdr->checksum = image_checksum8(image,
929 sizeof(struct main_hdr_v0));
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530930
Stefan Roese4acd2d22014-10-22 12:13:23 +0200931 /* Generate the ext header */
932 if (has_ext) {
Mario Sixe89016c2017-01-11 16:00:56 +0100933 struct ext_hdr_v0 *ext_hdr;
Stefan Roese4acd2d22014-10-22 12:13:23 +0200934 int cfgi, datai;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530935
Mario Six885fba12017-01-11 16:00:55 +0100936 ext_hdr = (struct ext_hdr_v0 *)
937 (image + sizeof(struct main_hdr_v0));
Reinhard Pfaua8840dc2015-11-29 15:48:25 +0100938 ext_hdr->offset = cpu_to_le32(0x40);
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530939
Stefan Roese4acd2d22014-10-22 12:13:23 +0200940 for (cfgi = 0, datai = 0; cfgi < cfgn; cfgi++) {
941 e = &image_cfg[cfgi];
942 if (e->type != IMAGE_CFG_DATA)
943 continue;
944
Reinhard Pfaua8840dc2015-11-29 15:48:25 +0100945 ext_hdr->rcfg[datai].raddr =
946 cpu_to_le32(e->regdata.raddr);
947 ext_hdr->rcfg[datai].rdata =
948 cpu_to_le32(e->regdata.rdata);
Stefan Roese4acd2d22014-10-22 12:13:23 +0200949 datai++;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530950 }
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530951
Stefan Roese4acd2d22014-10-22 12:13:23 +0200952 ext_hdr->checksum = image_checksum8(ext_hdr,
953 sizeof(struct ext_hdr_v0));
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530954 }
955
Stefan Roese4acd2d22014-10-22 12:13:23 +0200956 *imagesz = headersz;
957 return image;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530958}
959
Mario Sixe93cf532017-01-11 16:00:57 +0100960static size_t image_headersz_v1(int *hasext)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530961{
Stefan Roese4acd2d22014-10-22 12:13:23 +0200962 struct image_cfg_element *binarye;
Pali Rohár02ba70a2021-07-23 11:14:11 +0200963 unsigned int count;
Stefan Roese4acd2d22014-10-22 12:13:23 +0200964 size_t headersz;
Pali Rohárd9fb82c2021-07-23 11:14:09 +0200965 int cfgi;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530966
Stefan Roese4acd2d22014-10-22 12:13:23 +0200967 /*
968 * Calculate the size of the header and the size of the
969 * payload
970 */
971 headersz = sizeof(struct main_hdr_v1);
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530972
Pali Roháre58f08b2021-10-21 16:46:07 +0200973 if (image_get_csk_index() >= 0) {
974 headersz += sizeof(struct secure_hdr_v1);
975 if (hasext)
976 *hasext = 1;
977 }
978
Pali Rohár02ba70a2021-07-23 11:14:11 +0200979 count = image_count_options(IMAGE_CFG_DATA);
980 if (count > 0)
981 headersz += sizeof(struct register_set_hdr_v1) + 8 * count + 4;
982
Pali Rohárd9fb82c2021-07-23 11:14:09 +0200983 for (cfgi = 0; cfgi < cfgn; cfgi++) {
Mario Sixe89016c2017-01-11 16:00:56 +0100984 int ret;
Stefan Roese4acd2d22014-10-22 12:13:23 +0200985 struct stat s;
986
Pali Rohárd9fb82c2021-07-23 11:14:09 +0200987 binarye = &image_cfg[cfgi];
988 if (binarye->type != IMAGE_CFG_BINARY)
989 continue;
990
Stefan Roese4acd2d22014-10-22 12:13:23 +0200991 ret = stat(binarye->binary.file, &s);
992 if (ret < 0) {
Andreas Bießmanne5f1a582014-10-24 23:39:11 +0200993 char cwd[PATH_MAX];
994 char *dir = cwd;
995
996 memset(cwd, 0, sizeof(cwd));
997 if (!getcwd(cwd, sizeof(cwd))) {
998 dir = "current working directory";
999 perror("getcwd() failed");
1000 }
1001
Stefan Roese4acd2d22014-10-22 12:13:23 +02001002 fprintf(stderr,
1003 "Didn't find the file '%s' in '%s' which is mandatory to generate the image\n"
1004 "This file generally contains the DDR3 training code, and should be extracted from an existing bootable\n"
Pali Rohár3d7b93d2021-07-23 11:14:35 +02001005 "image for your board. Use 'dumpimage -T kwbimage -p 0' to extract it from an existing image.\n",
Andreas Bießmanne5f1a582014-10-24 23:39:11 +02001006 binarye->binary.file, dir);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001007 return 0;
1008 }
1009
Pali Roháre58f08b2021-10-21 16:46:07 +02001010 headersz += sizeof(struct opt_hdr_v1) + sizeof(uint32_t) +
1011 (binarye->binary.nargs) * sizeof(uint32_t);
1012 headersz = ALIGN(headersz, 16);
1013 headersz += ALIGN(s.st_size, 4) + sizeof(uint32_t);
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001014 if (hasext)
1015 *hasext = 1;
1016 }
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001017
Pali Rohár5cad2e62021-11-08 18:12:48 +01001018 return image_headersz_align(headersz, image_get_bootfrom());
Stefan Roese4acd2d22014-10-22 12:13:23 +02001019}
1020
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001021int add_binary_header_v1(uint8_t **cur, uint8_t **next_ext,
Pali Roháre58f08b2021-10-21 16:46:07 +02001022 struct image_cfg_element *binarye,
1023 struct main_hdr_v1 *main_hdr)
Mario Six79066ef2017-01-11 16:00:58 +01001024{
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001025 struct opt_hdr_v1 *hdr = (struct opt_hdr_v1 *)*cur;
Pali Roháre58f08b2021-10-21 16:46:07 +02001026 uint32_t add_args;
1027 uint32_t offset;
Mario Six79066ef2017-01-11 16:00:58 +01001028 uint32_t *args;
1029 size_t binhdrsz;
1030 struct stat s;
1031 int argi;
1032 FILE *bin;
1033 int ret;
1034
Mario Six79066ef2017-01-11 16:00:58 +01001035 hdr->headertype = OPT_HDR_V1_BINARY_TYPE;
1036
1037 bin = fopen(binarye->binary.file, "r");
1038 if (!bin) {
1039 fprintf(stderr, "Cannot open binary file %s\n",
1040 binarye->binary.file);
1041 return -1;
1042 }
1043
Mario Six1f6c8a52017-02-13 10:11:55 +01001044 if (fstat(fileno(bin), &s)) {
1045 fprintf(stderr, "Cannot stat binary file %s\n",
1046 binarye->binary.file);
1047 goto err_close;
1048 }
Mario Six79066ef2017-01-11 16:00:58 +01001049
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001050 *cur += sizeof(struct opt_hdr_v1);
Mario Six79066ef2017-01-11 16:00:58 +01001051
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001052 args = (uint32_t *)*cur;
Mario Six79066ef2017-01-11 16:00:58 +01001053 *args = cpu_to_le32(binarye->binary.nargs);
1054 args++;
1055 for (argi = 0; argi < binarye->binary.nargs; argi++)
1056 args[argi] = cpu_to_le32(binarye->binary.args[argi]);
1057
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001058 *cur += (binarye->binary.nargs + 1) * sizeof(uint32_t);
Mario Six79066ef2017-01-11 16:00:58 +01001059
Pali Roháre58f08b2021-10-21 16:46:07 +02001060 /*
1061 * ARM executable code inside the BIN header on some mvebu platforms
1062 * (e.g. A370, AXP) must always be aligned with the 128-bit boundary.
1063 * This requirement can be met by inserting dummy arguments into
1064 * BIN header, if needed.
1065 */
1066 offset = *cur - (uint8_t *)main_hdr;
1067 add_args = ((16 - offset % 16) % 16) / sizeof(uint32_t);
1068 if (add_args) {
1069 *(args - 1) = cpu_to_le32(binarye->binary.nargs + add_args);
1070 *cur += add_args * sizeof(uint32_t);
1071 }
1072
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001073 ret = fread(*cur, s.st_size, 1, bin);
Mario Six79066ef2017-01-11 16:00:58 +01001074 if (ret != 1) {
1075 fprintf(stderr,
1076 "Could not read binary image %s\n",
1077 binarye->binary.file);
Mario Six1f6c8a52017-02-13 10:11:55 +01001078 goto err_close;
Mario Six79066ef2017-01-11 16:00:58 +01001079 }
1080
1081 fclose(bin);
1082
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001083 *cur += ALIGN(s.st_size, 4);
Mario Six79066ef2017-01-11 16:00:58 +01001084
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001085 *((uint32_t *)*cur) = 0x00000000;
1086 **next_ext = 1;
1087 *next_ext = *cur;
Mario Six79066ef2017-01-11 16:00:58 +01001088
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001089 *cur += sizeof(uint32_t);
Mario Six79066ef2017-01-11 16:00:58 +01001090
Pali Roháre58f08b2021-10-21 16:46:07 +02001091 binhdrsz = sizeof(struct opt_hdr_v1) +
1092 (binarye->binary.nargs + add_args + 2) * sizeof(uint32_t) +
1093 ALIGN(s.st_size, 4);
1094 hdr->headersz_lsb = cpu_to_le16(binhdrsz & 0xFFFF);
1095 hdr->headersz_msb = (binhdrsz & 0xFFFF0000) >> 16;
1096
Mario Six79066ef2017-01-11 16:00:58 +01001097 return 0;
Mario Six1f6c8a52017-02-13 10:11:55 +01001098
1099err_close:
1100 fclose(bin);
1101
1102 return -1;
Mario Six79066ef2017-01-11 16:00:58 +01001103}
1104
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001105int export_pub_kak_hash(RSA *kak, struct secure_hdr_v1 *secure_hdr)
1106{
1107 FILE *hashf;
1108 int res;
1109
1110 hashf = fopen("pub_kak_hash.txt", "w");
Heinrich Schuchardtf858bb22021-08-17 07:03:20 +02001111 if (!hashf) {
1112 fprintf(stderr, "Couldn't open hash file: '%s': %s\n",
1113 "pub_kak_hash.txt", strerror(errno));
1114 return 1;
1115 }
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001116
1117 res = kwb_export_pubkey(kak, &secure_hdr->kak, hashf, "KAK");
1118
1119 fclose(hashf);
1120
1121 return res < 0 ? 1 : 0;
1122}
1123
1124int kwb_sign_csk_with_kak(struct image_tool_params *params,
1125 struct secure_hdr_v1 *secure_hdr, RSA *csk)
1126{
1127 RSA *kak = NULL;
1128 RSA *kak_pub = NULL;
1129 int csk_idx = image_get_csk_index();
1130 struct sig_v1 tmp_sig;
1131
Heinrich Schuchardtf0317d72021-08-17 07:11:58 +02001132 if (csk_idx < 0 || csk_idx > 15) {
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001133 fprintf(stderr, "Invalid CSK index %d\n", csk_idx);
1134 return 1;
1135 }
1136
1137 if (kwb_load_kak(params, &kak) < 0)
1138 return 1;
1139
1140 if (export_pub_kak_hash(kak, secure_hdr))
1141 return 1;
1142
1143 if (kwb_import_pubkey(&kak_pub, &secure_hdr->kak, "KAK") < 0)
1144 return 1;
1145
1146 if (kwb_export_pubkey(csk, &secure_hdr->csk[csk_idx], NULL, "CSK") < 0)
1147 return 1;
1148
1149 if (kwb_sign_and_verify(kak, &secure_hdr->csk,
1150 sizeof(secure_hdr->csk) +
1151 sizeof(secure_hdr->csksig),
1152 &tmp_sig, "CSK") < 0)
1153 return 1;
1154
1155 if (kwb_verify(kak_pub, &secure_hdr->csk,
1156 sizeof(secure_hdr->csk) +
1157 sizeof(secure_hdr->csksig),
1158 &tmp_sig, "CSK (2)") < 0)
1159 return 1;
1160
1161 secure_hdr->csksig = tmp_sig;
1162
1163 return 0;
1164}
1165
1166int add_secure_header_v1(struct image_tool_params *params, uint8_t *ptr,
1167 int payloadsz, size_t headersz, uint8_t *image,
1168 struct secure_hdr_v1 *secure_hdr)
1169{
1170 struct image_cfg_element *e_jtagdelay;
1171 struct image_cfg_element *e_boxid;
1172 struct image_cfg_element *e_flashid;
1173 RSA *csk = NULL;
1174 unsigned char *image_ptr;
1175 size_t image_size;
1176 struct sig_v1 tmp_sig;
1177 bool specialized_img = image_get_spezialized_img();
1178
1179 kwb_msg("Create secure header content\n");
1180
1181 e_jtagdelay = image_find_option(IMAGE_CFG_JTAG_DELAY);
1182 e_boxid = image_find_option(IMAGE_CFG_BOX_ID);
1183 e_flashid = image_find_option(IMAGE_CFG_FLASH_ID);
1184
1185 if (kwb_load_csk(params, &csk) < 0)
1186 return 1;
1187
1188 secure_hdr->headertype = OPT_HDR_V1_SECURE_TYPE;
1189 secure_hdr->headersz_msb = 0;
1190 secure_hdr->headersz_lsb = cpu_to_le16(sizeof(struct secure_hdr_v1));
1191 if (e_jtagdelay)
1192 secure_hdr->jtag_delay = e_jtagdelay->jtag_delay;
1193 if (e_boxid && specialized_img)
1194 secure_hdr->boxid = cpu_to_le32(e_boxid->boxid);
1195 if (e_flashid && specialized_img)
1196 secure_hdr->flashid = cpu_to_le32(e_flashid->flashid);
1197
1198 if (kwb_sign_csk_with_kak(params, secure_hdr, csk))
1199 return 1;
1200
1201 image_ptr = ptr + headersz;
1202 image_size = payloadsz - headersz;
1203
1204 if (kwb_sign_and_verify(csk, image_ptr, image_size,
1205 &secure_hdr->imgsig, "image") < 0)
1206 return 1;
1207
1208 if (kwb_sign_and_verify(csk, image, headersz, &tmp_sig, "header") < 0)
1209 return 1;
1210
1211 secure_hdr->hdrsig = tmp_sig;
1212
1213 kwb_dump_fuse_cmds(secure_hdr);
1214
1215 return 0;
1216}
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001217
Stefan Roese4acd2d22014-10-22 12:13:23 +02001218static void *image_create_v1(size_t *imagesz, struct image_tool_params *params,
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001219 uint8_t *ptr, int payloadsz)
Stefan Roese4acd2d22014-10-22 12:13:23 +02001220{
Mario Six79066ef2017-01-11 16:00:58 +01001221 struct image_cfg_element *e;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001222 struct main_hdr_v1 *main_hdr;
Pali Rohár2b0980c2021-11-08 18:12:49 +01001223 struct opt_hdr_v1 *ohdr;
Pali Rohár02ba70a2021-07-23 11:14:11 +02001224 struct register_set_hdr_v1 *register_set_hdr;
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001225 struct secure_hdr_v1 *secure_hdr = NULL;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001226 size_t headersz;
Mario Six885fba12017-01-11 16:00:55 +01001227 uint8_t *image, *cur;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001228 int hasext = 0;
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001229 uint8_t *next_ext = NULL;
Pali Rohár02ba70a2021-07-23 11:14:11 +02001230 int cfgi, datai, size;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001231
1232 /*
1233 * Calculate the size of the header and the size of the
1234 * payload
1235 */
Mario Sixe93cf532017-01-11 16:00:57 +01001236 headersz = image_headersz_v1(&hasext);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001237 if (headersz == 0)
1238 return NULL;
1239
1240 image = malloc(headersz);
1241 if (!image) {
1242 fprintf(stderr, "Cannot allocate memory for image\n");
1243 return NULL;
1244 }
1245
1246 memset(image, 0, headersz);
1247
Mario Six885fba12017-01-11 16:00:55 +01001248 main_hdr = (struct main_hdr_v1 *)image;
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001249 cur = image;
1250 cur += sizeof(struct main_hdr_v1);
1251 next_ext = &main_hdr->ext;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001252
1253 /* Fill the main header */
Reinhard Pfaua8840dc2015-11-29 15:48:25 +01001254 main_hdr->blocksize =
Pali Roháre23ad5d2021-11-08 18:12:47 +01001255 cpu_to_le32(payloadsz);
Reinhard Pfaua8840dc2015-11-29 15:48:25 +01001256 main_hdr->headersz_lsb = cpu_to_le16(headersz & 0xFFFF);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001257 main_hdr->headersz_msb = (headersz & 0xFFFF0000) >> 16;
Pali Rohárcc3443f2021-07-23 11:14:06 +02001258 main_hdr->destaddr = cpu_to_le32(params->addr);
Reinhard Pfaua8840dc2015-11-29 15:48:25 +01001259 main_hdr->execaddr = cpu_to_le32(params->ep);
1260 main_hdr->srcaddr = cpu_to_le32(headersz);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001261 main_hdr->ext = hasext;
1262 main_hdr->version = 1;
Pali Rohárd1547b32021-11-08 18:12:43 +01001263 main_hdr->blockid = image_get_bootfrom();
1264
Stefan Roese4acd2d22014-10-22 12:13:23 +02001265 e = image_find_option(IMAGE_CFG_NAND_BLKSZ);
1266 if (e)
1267 main_hdr->nandblocksize = e->nandblksz / (64 * 1024);
Pali Rohár2fdba4f2021-10-22 12:37:46 +02001268 e = image_find_option(IMAGE_CFG_NAND_PAGESZ);
1269 if (e)
1270 main_hdr->nandpagesize = cpu_to_le16(e->nandpagesz);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001271 e = image_find_option(IMAGE_CFG_NAND_BADBLK_LOCATION);
1272 if (e)
1273 main_hdr->nandbadblklocation = e->nandbadblklocation;
Chris Packham4bdb5472016-11-09 22:07:45 +13001274 e = image_find_option(IMAGE_CFG_BAUDRATE);
1275 if (e)
Pali Rohár12f2c032021-11-08 18:12:41 +01001276 main_hdr->options |= baudrate_to_option(e->baudrate);
1277 e = image_find_option(IMAGE_CFG_UART_PORT);
1278 if (e)
1279 main_hdr->options |= (e->uart_port & 3) << 3;
1280 e = image_find_option(IMAGE_CFG_UART_MPP);
1281 if (e)
1282 main_hdr->options |= (e->uart_mpp & 7) << 5;
Chris Packham2611c052016-11-09 22:21:45 +13001283 e = image_find_option(IMAGE_CFG_DEBUG);
1284 if (e)
1285 main_hdr->flags = e->debug ? 0x1 : 0;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001286
Pali Rohár501a54a2021-07-23 11:13:59 +02001287 /*
1288 * For SATA srcaddr is specified in number of sectors starting from
1289 * sector 0. The main header is stored at sector number 1.
1290 * This expects the sector size to be 512 bytes.
1291 * Header size is already aligned.
1292 */
1293 if (main_hdr->blockid == IBR_HDR_SATA_ID)
1294 main_hdr->srcaddr = cpu_to_le32(headersz / 512 + 1);
1295
1296 /*
1297 * For SDIO srcaddr is specified in number of sectors starting from
1298 * sector 0. The main header is stored at sector number 0.
1299 * This expects sector size to be 512 bytes.
1300 * Header size is already aligned.
1301 */
1302 if (main_hdr->blockid == IBR_HDR_SDIO_ID)
1303 main_hdr->srcaddr = cpu_to_le32(headersz / 512);
1304
1305 /* For PCIe srcaddr is not used and must be set to 0xFFFFFFFF. */
1306 if (main_hdr->blockid == IBR_HDR_PEX_ID)
1307 main_hdr->srcaddr = cpu_to_le32(0xFFFFFFFF);
1308
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001309 if (image_get_csk_index() >= 0) {
1310 /*
1311 * only reserve the space here; we fill the header later since
1312 * we need the header to be complete to compute the signatures
1313 */
1314 secure_hdr = (struct secure_hdr_v1 *)cur;
1315 cur += sizeof(struct secure_hdr_v1);
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001316 *next_ext = 1;
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001317 next_ext = &secure_hdr->next;
1318 }
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001319
Pali Rohár02ba70a2021-07-23 11:14:11 +02001320 datai = 0;
1321 register_set_hdr = (struct register_set_hdr_v1 *)cur;
1322 for (cfgi = 0; cfgi < cfgn; cfgi++) {
1323 e = &image_cfg[cfgi];
Pali Rohárf63c5832021-07-23 11:14:12 +02001324 if (e->type != IMAGE_CFG_DATA &&
1325 e->type != IMAGE_CFG_DATA_DELAY)
Pali Rohár02ba70a2021-07-23 11:14:11 +02001326 continue;
Pali Rohárf63c5832021-07-23 11:14:12 +02001327 if (e->type == IMAGE_CFG_DATA_DELAY) {
1328 size = sizeof(struct register_set_hdr_v1) + 8 * datai + 4;
1329 register_set_hdr->headertype = OPT_HDR_V1_REGISTER_TYPE;
1330 register_set_hdr->headersz_lsb = cpu_to_le16(size & 0xFFFF);
1331 register_set_hdr->headersz_msb = size >> 16;
1332 register_set_hdr->data[datai].last_entry.delay = e->regdata_delay;
1333 cur += size;
1334 *next_ext = 1;
1335 next_ext = &register_set_hdr->data[datai].last_entry.next;
1336 datai = 0;
1337 continue;
1338 }
Pali Rohár02ba70a2021-07-23 11:14:11 +02001339 register_set_hdr->data[datai].entry.address =
1340 cpu_to_le32(e->regdata.raddr);
1341 register_set_hdr->data[datai].entry.value =
1342 cpu_to_le32(e->regdata.rdata);
1343 datai++;
1344 }
1345 if (datai != 0) {
1346 size = sizeof(struct register_set_hdr_v1) + 8 * datai + 4;
1347 register_set_hdr->headertype = OPT_HDR_V1_REGISTER_TYPE;
1348 register_set_hdr->headersz_lsb = cpu_to_le16(size & 0xFFFF);
1349 register_set_hdr->headersz_msb = size >> 16;
1350 /* Set delay to the smallest possible value 1ms. */
1351 register_set_hdr->data[datai].last_entry.delay = 1;
1352 cur += size;
1353 *next_ext = 1;
1354 next_ext = &register_set_hdr->data[datai].last_entry.next;
1355 }
1356
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001357 for (cfgi = 0; cfgi < cfgn; cfgi++) {
1358 e = &image_cfg[cfgi];
1359 if (e->type != IMAGE_CFG_BINARY)
1360 continue;
1361
Pali Roháre58f08b2021-10-21 16:46:07 +02001362 if (add_binary_header_v1(&cur, &next_ext, e, main_hdr))
Pali Rohárd9fb82c2021-07-23 11:14:09 +02001363 return NULL;
1364 }
Stefan Roese4acd2d22014-10-22 12:13:23 +02001365
Pali Roháre23ad5d2021-11-08 18:12:47 +01001366 if (secure_hdr && add_secure_header_v1(params, ptr, payloadsz + headersz,
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001367 headersz, image, secure_hdr))
1368 return NULL;
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001369
Stefan Roese4acd2d22014-10-22 12:13:23 +02001370 /* Calculate and set the header checksum */
1371 main_hdr->checksum = image_checksum8(main_hdr, headersz);
1372
1373 *imagesz = headersz;
Pali Rohár2b0980c2021-11-08 18:12:49 +01001374
1375 /* Fill the real header size without padding into the main header */
1376 headersz = sizeof(*main_hdr);
1377 for_each_opt_hdr_v1 (ohdr, main_hdr)
1378 headersz += opt_hdr_v1_size(ohdr);
1379 main_hdr->headersz_lsb = cpu_to_le16(headersz & 0xFFFF);
1380 main_hdr->headersz_msb = (headersz & 0xFFFF0000) >> 16;
1381
Stefan Roese4acd2d22014-10-22 12:13:23 +02001382 return image;
1383}
1384
Mario Six4991b4f2017-01-11 16:00:59 +01001385int recognize_keyword(char *keyword)
1386{
1387 int kw_id;
1388
1389 for (kw_id = 1; kw_id < IMAGE_CFG_COUNT; ++kw_id)
1390 if (!strcmp(keyword, id_strs[kw_id]))
1391 return kw_id;
1392
1393 return 0;
1394}
1395
Stefan Roese4acd2d22014-10-22 12:13:23 +02001396static int image_create_config_parse_oneline(char *line,
1397 struct image_cfg_element *el)
1398{
Mario Six4991b4f2017-01-11 16:00:59 +01001399 char *keyword, *saveptr, *value1, *value2;
1400 char delimiters[] = " \t";
1401 int keyword_id, ret, argi;
1402 char *unknown_msg = "Ignoring unknown line '%s'\n";
Stefan Roese4acd2d22014-10-22 12:13:23 +02001403
Mario Six4991b4f2017-01-11 16:00:59 +01001404 keyword = strtok_r(line, delimiters, &saveptr);
1405 keyword_id = recognize_keyword(keyword);
Mario Six94490a42017-01-11 16:00:54 +01001406
Mario Six4991b4f2017-01-11 16:00:59 +01001407 if (!keyword_id) {
1408 fprintf(stderr, unknown_msg, line);
1409 return 0;
1410 }
1411
1412 el->type = keyword_id;
1413
1414 value1 = strtok_r(NULL, delimiters, &saveptr);
1415
1416 if (!value1) {
1417 fprintf(stderr, "Parameter missing in line '%s'\n", line);
1418 return -1;
1419 }
1420
1421 switch (keyword_id) {
1422 case IMAGE_CFG_VERSION:
1423 el->version = atoi(value1);
1424 break;
1425 case IMAGE_CFG_BOOT_FROM:
1426 ret = image_boot_mode_id(value1);
Mario Six94490a42017-01-11 16:00:54 +01001427
Andreas Bießmannf411b8f2014-10-24 23:25:52 +02001428 if (ret < 0) {
Mario Six4991b4f2017-01-11 16:00:59 +01001429 fprintf(stderr, "Invalid boot media '%s'\n", value1);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001430 return -1;
1431 }
Andreas Bießmannf411b8f2014-10-24 23:25:52 +02001432 el->bootfrom = ret;
Mario Six4991b4f2017-01-11 16:00:59 +01001433 break;
1434 case IMAGE_CFG_NAND_BLKSZ:
1435 el->nandblksz = strtoul(value1, NULL, 16);
1436 break;
1437 case IMAGE_CFG_NAND_BADBLK_LOCATION:
1438 el->nandbadblklocation = strtoul(value1, NULL, 16);
1439 break;
1440 case IMAGE_CFG_NAND_ECC_MODE:
1441 ret = image_nand_ecc_mode_id(value1);
Mario Six94490a42017-01-11 16:00:54 +01001442
Andreas Bießmannf411b8f2014-10-24 23:25:52 +02001443 if (ret < 0) {
Mario Six4991b4f2017-01-11 16:00:59 +01001444 fprintf(stderr, "Invalid NAND ECC mode '%s'\n", value1);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001445 return -1;
1446 }
Andreas Bießmannf411b8f2014-10-24 23:25:52 +02001447 el->nandeccmode = ret;
Mario Six4991b4f2017-01-11 16:00:59 +01001448 break;
1449 case IMAGE_CFG_NAND_PAGESZ:
1450 el->nandpagesz = strtoul(value1, NULL, 16);
1451 break;
1452 case IMAGE_CFG_BINARY:
1453 argi = 0;
Mario Six94490a42017-01-11 16:00:54 +01001454
Mario Six4991b4f2017-01-11 16:00:59 +01001455 el->binary.file = strdup(value1);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001456 while (1) {
Mario Six4991b4f2017-01-11 16:00:59 +01001457 char *value = strtok_r(NULL, delimiters, &saveptr);
1458
Stefan Roese4acd2d22014-10-22 12:13:23 +02001459 if (!value)
1460 break;
1461 el->binary.args[argi] = strtoul(value, NULL, 16);
1462 argi++;
1463 if (argi >= BINARY_MAX_ARGS) {
1464 fprintf(stderr,
Mario Six4991b4f2017-01-11 16:00:59 +01001465 "Too many arguments for BINARY\n");
Stefan Roese4acd2d22014-10-22 12:13:23 +02001466 return -1;
1467 }
1468 }
1469 el->binary.nargs = argi;
Mario Six4991b4f2017-01-11 16:00:59 +01001470 break;
1471 case IMAGE_CFG_DATA:
1472 value2 = strtok_r(NULL, delimiters, &saveptr);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001473
1474 if (!value1 || !value2) {
1475 fprintf(stderr,
1476 "Invalid number of arguments for DATA\n");
1477 return -1;
1478 }
1479
Stefan Roese4acd2d22014-10-22 12:13:23 +02001480 el->regdata.raddr = strtoul(value1, NULL, 16);
1481 el->regdata.rdata = strtoul(value2, NULL, 16);
Mario Six4991b4f2017-01-11 16:00:59 +01001482 break;
Pali Rohárf63c5832021-07-23 11:14:12 +02001483 case IMAGE_CFG_DATA_DELAY:
1484 if (!strcmp(value1, "SDRAM_SETUP"))
1485 el->regdata_delay = REGISTER_SET_HDR_OPT_DELAY_SDRAM_SETUP;
1486 else
1487 el->regdata_delay = REGISTER_SET_HDR_OPT_DELAY_MS(strtoul(value1, NULL, 10));
1488 break;
Mario Six4991b4f2017-01-11 16:00:59 +01001489 case IMAGE_CFG_BAUDRATE:
1490 el->baudrate = strtoul(value1, NULL, 10);
1491 break;
Pali Rohár12f2c032021-11-08 18:12:41 +01001492 case IMAGE_CFG_UART_PORT:
1493 el->uart_port = strtoul(value1, NULL, 16);
1494 break;
1495 case IMAGE_CFG_UART_MPP:
1496 el->uart_mpp = strtoul(value1, NULL, 16);
1497 break;
Mario Six4991b4f2017-01-11 16:00:59 +01001498 case IMAGE_CFG_DEBUG:
1499 el->debug = strtoul(value1, NULL, 10);
1500 break;
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001501 case IMAGE_CFG_KAK:
1502 el->key_name = strdup(value1);
1503 break;
1504 case IMAGE_CFG_CSK:
1505 el->key_name = strdup(value1);
1506 break;
1507 case IMAGE_CFG_CSK_INDEX:
1508 el->csk_idx = strtol(value1, NULL, 0);
1509 break;
1510 case IMAGE_CFG_JTAG_DELAY:
1511 el->jtag_delay = strtoul(value1, NULL, 0);
1512 break;
1513 case IMAGE_CFG_BOX_ID:
1514 el->boxid = strtoul(value1, NULL, 0);
1515 break;
1516 case IMAGE_CFG_FLASH_ID:
1517 el->flashid = strtoul(value1, NULL, 0);
1518 break;
1519 case IMAGE_CFG_SEC_SPECIALIZED_IMG:
1520 el->sec_specialized_img = true;
1521 break;
1522 case IMAGE_CFG_SEC_COMMON_IMG:
1523 el->sec_specialized_img = false;
1524 break;
1525 case IMAGE_CFG_SEC_BOOT_DEV:
1526 el->sec_boot_dev = strtoul(value1, NULL, 0);
1527 break;
1528 case IMAGE_CFG_SEC_FUSE_DUMP:
1529 el->name = strdup(value1);
1530 break;
Mario Six4991b4f2017-01-11 16:00:59 +01001531 default:
1532 fprintf(stderr, unknown_msg, line);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001533 }
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05301534
1535 return 0;
1536}
1537
Stefan Roese4acd2d22014-10-22 12:13:23 +02001538/*
1539 * Parse the configuration file 'fcfg' into the array of configuration
1540 * elements 'image_cfg', and return the number of configuration
1541 * elements in 'cfgn'.
1542 */
1543static int image_create_config_parse(FILE *fcfg)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05301544{
Stefan Roese4acd2d22014-10-22 12:13:23 +02001545 int ret;
1546 int cfgi = 0;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05301547
Stefan Roese4acd2d22014-10-22 12:13:23 +02001548 /* Parse the configuration file */
1549 while (!feof(fcfg)) {
1550 char *line;
1551 char buf[256];
1552
1553 /* Read the current line */
1554 memset(buf, 0, sizeof(buf));
1555 line = fgets(buf, sizeof(buf), fcfg);
1556 if (!line)
1557 break;
1558
1559 /* Ignore useless lines */
1560 if (line[0] == '\n' || line[0] == '#')
1561 continue;
1562
1563 /* Strip final newline */
1564 if (line[strlen(line) - 1] == '\n')
1565 line[strlen(line) - 1] = 0;
1566
1567 /* Parse the current line */
1568 ret = image_create_config_parse_oneline(line,
1569 &image_cfg[cfgi]);
1570 if (ret)
1571 return ret;
1572
1573 cfgi++;
1574
1575 if (cfgi >= IMAGE_CFG_ELEMENT_MAX) {
1576 fprintf(stderr,
1577 "Too many configuration elements in .cfg file\n");
1578 return -1;
1579 }
1580 }
1581
1582 cfgn = cfgi;
1583 return 0;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05301584}
1585
Stefan Roese4acd2d22014-10-22 12:13:23 +02001586static int image_get_version(void)
1587{
1588 struct image_cfg_element *e;
1589
1590 e = image_find_option(IMAGE_CFG_VERSION);
1591 if (!e)
1592 return -1;
1593
1594 return e->version;
1595}
1596
Stefan Roese4acd2d22014-10-22 12:13:23 +02001597static void kwbimage_set_header(void *ptr, struct stat *sbuf, int ifd,
1598 struct image_tool_params *params)
1599{
1600 FILE *fcfg;
1601 void *image = NULL;
1602 int version;
Łukasz Majewski93e93712014-11-21 09:22:43 +01001603 size_t headersz = 0;
Pali Roháre23ad5d2021-11-08 18:12:47 +01001604 size_t datasz;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001605 uint32_t checksum;
Pali Roháre23ad5d2021-11-08 18:12:47 +01001606 struct stat s;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001607 int ret;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001608
Pali Roháre23ad5d2021-11-08 18:12:47 +01001609 /*
1610 * Do not use sbuf->st_size as it contains size with padding.
1611 * We need original image data size, so stat original file.
1612 */
1613 if (stat(params->datafile, &s)) {
1614 fprintf(stderr, "Could not stat data file %s: %s\n",
1615 params->datafile, strerror(errno));
1616 exit(EXIT_FAILURE);
1617 }
1618 datasz = ALIGN(s.st_size, 4);
1619
Stefan Roese4acd2d22014-10-22 12:13:23 +02001620 fcfg = fopen(params->imagename, "r");
1621 if (!fcfg) {
1622 fprintf(stderr, "Could not open input file %s\n",
1623 params->imagename);
1624 exit(EXIT_FAILURE);
1625 }
1626
1627 image_cfg = malloc(IMAGE_CFG_ELEMENT_MAX *
1628 sizeof(struct image_cfg_element));
1629 if (!image_cfg) {
1630 fprintf(stderr, "Cannot allocate memory\n");
1631 fclose(fcfg);
1632 exit(EXIT_FAILURE);
1633 }
1634
1635 memset(image_cfg, 0,
1636 IMAGE_CFG_ELEMENT_MAX * sizeof(struct image_cfg_element));
1637 rewind(fcfg);
1638
1639 ret = image_create_config_parse(fcfg);
1640 fclose(fcfg);
1641 if (ret) {
1642 free(image_cfg);
1643 exit(EXIT_FAILURE);
1644 }
1645
1646 version = image_get_version();
Stefan Roese934a5292014-10-28 11:32:24 +01001647 switch (version) {
1648 /*
1649 * Fallback to version 0 if no version is provided in the
1650 * cfg file
1651 */
1652 case -1:
1653 case 0:
Pali Roháre23ad5d2021-11-08 18:12:47 +01001654 image = image_create_v0(&headersz, params, datasz + 4);
Stefan Roese934a5292014-10-28 11:32:24 +01001655 break;
1656
1657 case 1:
Pali Roháre23ad5d2021-11-08 18:12:47 +01001658 image = image_create_v1(&headersz, params, ptr, datasz + 4);
Stefan Roese934a5292014-10-28 11:32:24 +01001659 break;
1660
1661 default:
1662 fprintf(stderr, "Unsupported version %d\n", version);
1663 free(image_cfg);
1664 exit(EXIT_FAILURE);
1665 }
Stefan Roese4acd2d22014-10-22 12:13:23 +02001666
1667 if (!image) {
1668 fprintf(stderr, "Could not create image\n");
1669 free(image_cfg);
1670 exit(EXIT_FAILURE);
1671 }
1672
1673 free(image_cfg);
1674
Pali Roháre23ad5d2021-11-08 18:12:47 +01001675 /* Build and add image data checksum */
Pali Rohár37cb9c12021-07-23 11:13:56 +02001676 checksum = cpu_to_le32(image_checksum32((uint8_t *)ptr + headersz,
Pali Roháre23ad5d2021-11-08 18:12:47 +01001677 datasz));
1678 memcpy((uint8_t *)ptr + headersz + datasz, &checksum, sizeof(uint32_t));
Stefan Roese4acd2d22014-10-22 12:13:23 +02001679
1680 /* Finally copy the header into the image area */
1681 memcpy(ptr, image, headersz);
1682
1683 free(image);
1684}
1685
1686static void kwbimage_print_header(const void *ptr)
1687{
1688 struct main_hdr_v0 *mhdr = (struct main_hdr_v0 *)ptr;
Marek Behún732c9302021-08-18 00:59:15 +02001689 struct opt_hdr_v1 *ohdr;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001690
1691 printf("Image Type: MVEBU Boot from %s Image\n",
1692 image_boot_mode_name(mhdr->blockid));
Marek Behúnacb0b382021-09-24 23:07:00 +02001693 printf("Image version:%d\n", kwbimage_version(ptr));
Pali Rohár34dcf952021-07-23 11:14:04 +02001694
Marek Behún732c9302021-08-18 00:59:15 +02001695 for_each_opt_hdr_v1 (ohdr, mhdr) {
1696 if (ohdr->headertype == OPT_HDR_V1_BINARY_TYPE) {
1697 printf("BIN Hdr Size: ");
1698 genimg_print_size(opt_hdr_v1_size(ohdr) - 12 -
1699 4 * ohdr->data[0]);
Pali Rohár34dcf952021-07-23 11:14:04 +02001700 }
1701 }
Marek Behún732c9302021-08-18 00:59:15 +02001702
Gerald Kerma26f195c2014-10-31 01:03:27 +01001703 printf("Data Size: ");
Stefan Roese4acd2d22014-10-22 12:13:23 +02001704 genimg_print_size(mhdr->blocksize - sizeof(uint32_t));
1705 printf("Load Address: %08x\n", mhdr->destaddr);
1706 printf("Entry Point: %08x\n", mhdr->execaddr);
1707}
1708
1709static int kwbimage_check_image_types(uint8_t type)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05301710{
1711 if (type == IH_TYPE_KWBIMAGE)
1712 return EXIT_SUCCESS;
Mario Six94490a42017-01-11 16:00:54 +01001713
1714 return EXIT_FAILURE;
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05301715}
1716
Stefan Roese4acd2d22014-10-22 12:13:23 +02001717static int kwbimage_verify_header(unsigned char *ptr, int image_size,
1718 struct image_tool_params *params)
1719{
Marek Behúnfe2fd732021-09-24 23:07:01 +02001720 size_t header_size = kwbheader_size(ptr);
Pali Rohár700ea982021-11-08 18:12:44 +01001721 uint8_t blockid;
1722 uint32_t offset;
1723 uint32_t size;
Marek Behúnfe2fd732021-09-24 23:07:01 +02001724 uint8_t csum;
Alexander Graf6cd56782018-03-15 11:14:19 +01001725
1726 if (header_size > image_size)
1727 return -FDT_ERR_BADSTRUCTURE;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001728
Baruch Siachdb7cd4ed2017-07-04 20:23:40 +03001729 if (!main_hdr_checksum_ok(ptr))
Stefan Roese4acd2d22014-10-22 12:13:23 +02001730 return -FDT_ERR_BADSTRUCTURE;
1731
1732 /* Only version 0 extended header has checksum */
Marek Behúnacb0b382021-09-24 23:07:00 +02001733 if (kwbimage_version(ptr) == 0) {
Pali Rohárfe2c0e22021-07-23 11:14:01 +02001734 struct main_hdr_v0 *mhdr = (struct main_hdr_v0 *)ptr;
Mario Sixe89016c2017-01-11 16:00:56 +01001735
Pali Rohárfe2c0e22021-07-23 11:14:01 +02001736 if (mhdr->ext & 0x1) {
Marek Behúnfe2fd732021-09-24 23:07:01 +02001737 struct ext_hdr_v0 *ext_hdr = (void *)(mhdr + 1);
Pali Rohárfe2c0e22021-07-23 11:14:01 +02001738
Marek Behúnfe2fd732021-09-24 23:07:01 +02001739 csum = image_checksum8(ext_hdr, sizeof(*ext_hdr) - 1);
1740 if (csum != ext_hdr->checksum)
Pali Rohárfe2c0e22021-07-23 11:14:01 +02001741 return -FDT_ERR_BADSTRUCTURE;
1742 }
Pali Rohár700ea982021-11-08 18:12:44 +01001743
1744 blockid = mhdr->blockid;
1745 offset = le32_to_cpu(mhdr->srcaddr);
1746 size = le32_to_cpu(mhdr->blocksize);
Marek Behúnacb0b382021-09-24 23:07:00 +02001747 } else if (kwbimage_version(ptr) == 1) {
Pali Rohár93804452021-07-23 11:14:02 +02001748 struct main_hdr_v1 *mhdr = (struct main_hdr_v1 *)ptr;
Marek Behún732c9302021-08-18 00:59:15 +02001749 const uint8_t *mhdr_end;
1750 struct opt_hdr_v1 *ohdr;
Pali Rohár93804452021-07-23 11:14:02 +02001751
Marek Behún732c9302021-08-18 00:59:15 +02001752 mhdr_end = (uint8_t *)mhdr + header_size;
1753 for_each_opt_hdr_v1 (ohdr, ptr)
1754 if (!opt_hdr_v1_valid_size(ohdr, mhdr_end))
1755 return -FDT_ERR_BADSTRUCTURE;
Pali Roháre0c243c2021-07-23 11:14:03 +02001756
Pali Rohár700ea982021-11-08 18:12:44 +01001757 blockid = mhdr->blockid;
Pali Roháre0c243c2021-07-23 11:14:03 +02001758 offset = le32_to_cpu(mhdr->srcaddr);
Pali Roháre0c243c2021-07-23 11:14:03 +02001759 size = le32_to_cpu(mhdr->blocksize);
Pali Rohárb9840562021-08-11 10:14:14 +02001760 } else {
1761 return -FDT_ERR_BADSTRUCTURE;
Pali Rohár93804452021-07-23 11:14:02 +02001762 }
1763
Pali Rohár700ea982021-11-08 18:12:44 +01001764 /*
1765 * For SATA srcaddr is specified in number of sectors.
1766 * The main header is must be stored at sector number 1.
1767 * This expects that sector size is 512 bytes and recalculates
1768 * data offset to bytes relative to the main header.
1769 */
1770 if (blockid == IBR_HDR_SATA_ID) {
1771 if (offset < 1)
1772 return -FDT_ERR_BADSTRUCTURE;
1773 offset -= 1;
1774 offset *= 512;
1775 }
1776
1777 /*
1778 * For SDIO srcaddr is specified in number of sectors.
1779 * This expects that sector size is 512 bytes and recalculates
1780 * data offset to bytes.
1781 */
1782 if (blockid == IBR_HDR_SDIO_ID)
1783 offset *= 512;
1784
1785 /*
1786 * For PCIe srcaddr is always set to 0xFFFFFFFF.
1787 * This expects that data starts after all headers.
1788 */
1789 if (blockid == IBR_HDR_PEX_ID && offset == 0xFFFFFFFF)
1790 offset = header_size;
1791
1792 if (offset > image_size || offset % 4 != 0)
1793 return -FDT_ERR_BADSTRUCTURE;
1794
1795 if (size < 4 || offset + size > image_size || size % 4 != 0)
1796 return -FDT_ERR_BADSTRUCTURE;
1797
1798 if (image_checksum32(ptr + offset, size - 4) !=
1799 *(uint32_t *)(ptr + offset + size - 4))
1800 return -FDT_ERR_BADSTRUCTURE;
1801
Stefan Roese4acd2d22014-10-22 12:13:23 +02001802 return 0;
1803}
1804
1805static int kwbimage_generate(struct image_tool_params *params,
1806 struct image_type_params *tparams)
1807{
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001808 FILE *fcfg;
Pali Rohár37cb9c12021-07-23 11:13:56 +02001809 struct stat s;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001810 int alloc_len;
Pali Rohárc934aad2021-07-23 11:13:57 +02001811 int bootfrom;
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001812 int version;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001813 void *hdr;
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001814 int ret;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001815
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001816 fcfg = fopen(params->imagename, "r");
1817 if (!fcfg) {
1818 fprintf(stderr, "Could not open input file %s\n",
1819 params->imagename);
1820 exit(EXIT_FAILURE);
1821 }
1822
Pali Rohár37cb9c12021-07-23 11:13:56 +02001823 if (stat(params->datafile, &s)) {
1824 fprintf(stderr, "Could not stat data file %s: %s\n",
1825 params->datafile, strerror(errno));
1826 exit(EXIT_FAILURE);
1827 }
1828
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001829 image_cfg = malloc(IMAGE_CFG_ELEMENT_MAX *
1830 sizeof(struct image_cfg_element));
1831 if (!image_cfg) {
1832 fprintf(stderr, "Cannot allocate memory\n");
1833 fclose(fcfg);
1834 exit(EXIT_FAILURE);
1835 }
1836
1837 memset(image_cfg, 0,
1838 IMAGE_CFG_ELEMENT_MAX * sizeof(struct image_cfg_element));
1839 rewind(fcfg);
1840
1841 ret = image_create_config_parse(fcfg);
1842 fclose(fcfg);
1843 if (ret) {
1844 free(image_cfg);
1845 exit(EXIT_FAILURE);
1846 }
1847
Pali Rohárc934aad2021-07-23 11:13:57 +02001848 bootfrom = image_get_bootfrom();
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001849 version = image_get_version();
1850 switch (version) {
1851 /*
1852 * Fallback to version 0 if no version is provided in the
1853 * cfg file
1854 */
1855 case -1:
1856 case 0:
Stefan Roese4acd2d22014-10-22 12:13:23 +02001857 alloc_len = sizeof(struct main_hdr_v0) +
1858 sizeof(struct ext_hdr_v0);
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001859 break;
1860
1861 case 1:
Mario Sixe93cf532017-01-11 16:00:57 +01001862 alloc_len = image_headersz_v1(NULL);
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001863 break;
1864
1865 default:
1866 fprintf(stderr, "Unsupported version %d\n", version);
1867 free(image_cfg);
1868 exit(EXIT_FAILURE);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001869 }
1870
Patrick Wildt6cbf7ed2017-05-10 22:18:54 +02001871 free(image_cfg);
1872
Stefan Roese4acd2d22014-10-22 12:13:23 +02001873 hdr = malloc(alloc_len);
1874 if (!hdr) {
1875 fprintf(stderr, "%s: malloc return failure: %s\n",
1876 params->cmdname, strerror(errno));
1877 exit(EXIT_FAILURE);
1878 }
1879
1880 memset(hdr, 0, alloc_len);
1881 tparams->header_size = alloc_len;
1882 tparams->hdr = hdr;
1883
Stefan Roese77720852015-11-24 09:14:59 +01001884 /*
1885 * The resulting image needs to be 4-byte aligned. At least
1886 * the Marvell hdrparser tool complains if its unaligned.
Pali Rohár37cb9c12021-07-23 11:13:56 +02001887 * After the image data is stored 4-byte checksum.
Pali Rohár188099e2021-11-08 18:12:46 +01001888 * Final UART image must be aligned to 128 bytes.
Pali Rohárc934aad2021-07-23 11:13:57 +02001889 * Final SPI and NAND images must be aligned to 256 bytes.
Pali Rohár501a54a2021-07-23 11:13:59 +02001890 * Final SATA and SDIO images must be aligned to 512 bytes.
Stefan Roese77720852015-11-24 09:14:59 +01001891 */
Pali Rohárc934aad2021-07-23 11:13:57 +02001892 if (bootfrom == IBR_HDR_SPI_ID || bootfrom == IBR_HDR_NAND_ID)
1893 return 4 + (256 - (alloc_len + s.st_size + 4) % 256) % 256;
Pali Rohár501a54a2021-07-23 11:13:59 +02001894 else if (bootfrom == IBR_HDR_SATA_ID || bootfrom == IBR_HDR_SDIO_ID)
1895 return 4 + (512 - (alloc_len + s.st_size + 4) % 512) % 512;
Pali Rohár188099e2021-11-08 18:12:46 +01001896 else if (bootfrom == IBR_HDR_UART_ID)
1897 return 4 + (128 - (alloc_len + s.st_size + 4) % 128) % 128;
Pali Rohárc934aad2021-07-23 11:13:57 +02001898 else
1899 return 4 + (4 - s.st_size % 4) % 4;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001900}
1901
Pali Roháraa6943c2021-07-23 11:14:34 +02001902static int kwbimage_extract_subimage(void *ptr, struct image_tool_params *params)
1903{
1904 struct main_hdr_v1 *mhdr = (struct main_hdr_v1 *)ptr;
Marek Behúnfe2fd732021-09-24 23:07:01 +02001905 size_t header_size = kwbheader_size(ptr);
Marek Behún732c9302021-08-18 00:59:15 +02001906 struct opt_hdr_v1 *ohdr;
Pali Roháraa6943c2021-07-23 11:14:34 +02001907 int idx = params->pflag;
1908 int cur_idx = 0;
1909 uint32_t offset;
1910 ulong image;
1911 ulong size;
1912
Marek Behún732c9302021-08-18 00:59:15 +02001913 for_each_opt_hdr_v1 (ohdr, ptr) {
1914 if (ohdr->headertype != OPT_HDR_V1_BINARY_TYPE)
1915 continue;
Pali Roháraa6943c2021-07-23 11:14:34 +02001916
Marek Behún732c9302021-08-18 00:59:15 +02001917 if (idx == cur_idx) {
1918 image = (ulong)&ohdr->data[4 + 4 * ohdr->data[0]];
1919 size = opt_hdr_v1_size(ohdr) - 12 - 4 * ohdr->data[0];
1920 goto extract;
Pali Roháraa6943c2021-07-23 11:14:34 +02001921 }
Marek Behún732c9302021-08-18 00:59:15 +02001922
1923 ++cur_idx;
Pali Roháraa6943c2021-07-23 11:14:34 +02001924 }
1925
1926 if (idx != cur_idx) {
1927 printf("Image %d is not present\n", idx);
1928 return -1;
1929 }
1930
1931 offset = le32_to_cpu(mhdr->srcaddr);
1932
1933 if (mhdr->blockid == IBR_HDR_SATA_ID) {
1934 offset -= 1;
1935 offset *= 512;
1936 }
1937
1938 if (mhdr->blockid == IBR_HDR_SDIO_ID)
1939 offset *= 512;
1940
1941 if (mhdr->blockid == IBR_HDR_PEX_ID && offset == 0xFFFFFFFF)
1942 offset = header_size;
1943
1944 image = (ulong)((uint8_t *)ptr + offset);
1945 size = le32_to_cpu(mhdr->blocksize) - 4;
1946
1947extract:
1948 return imagetool_save_subimage(params->outfile, image, size);
1949}
1950
Stefan Roese4acd2d22014-10-22 12:13:23 +02001951/*
1952 * Report Error if xflag is set in addition to default
1953 */
1954static int kwbimage_check_params(struct image_tool_params *params)
1955{
Pali Roháraa6943c2021-07-23 11:14:34 +02001956 if (!params->iflag && (!params->imagename || !strlen(params->imagename))) {
Mario Six94490a42017-01-11 16:00:54 +01001957 char *msg = "Configuration file for kwbimage creation omitted";
1958
1959 fprintf(stderr, "Error:%s - %s\n", params->cmdname, msg);
Pali Rohár56087c12021-11-08 18:12:45 +01001960 return 1;
Stefan Roese4acd2d22014-10-22 12:13:23 +02001961 }
1962
1963 return (params->dflag && (params->fflag || params->lflag)) ||
1964 (params->fflag && (params->dflag || params->lflag)) ||
1965 (params->lflag && (params->dflag || params->fflag)) ||
Pali Roháraa6943c2021-07-23 11:14:34 +02001966 (params->xflag);
Stefan Roese4acd2d22014-10-22 12:13:23 +02001967}
1968
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +05301969/*
1970 * kwbimage type parameters definition
1971 */
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -02001972U_BOOT_IMAGE_TYPE(
1973 kwbimage,
1974 "Marvell MVEBU Boot Image support",
1975 0,
1976 NULL,
1977 kwbimage_check_params,
1978 kwbimage_verify_header,
1979 kwbimage_print_header,
1980 kwbimage_set_header,
Pali Roháraa6943c2021-07-23 11:14:34 +02001981 kwbimage_extract_subimage,
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -02001982 kwbimage_check_image_types,
1983 NULL,
1984 kwbimage_generate
1985);