1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2018 Arm Ltd.
13 #include <openssl/asn1t.h>
14 #include <openssl/pem.h>
15 #include <openssl/rsa.h>
18 #include <sunxi_image.h>
20 #include "imagetool.h"
24 * NAND requires 8K padding. For other devices, BROM requires only
25 * 512B padding, but let's use the larger padding to cover everything.
29 #define pr_fmt(fmt) "mkimage (TOC0): %s: " fmt
30 #define pr_err(fmt, args...) fprintf(stderr, pr_fmt(fmt), "error", ##args)
31 #define pr_warn(fmt, args...) fprintf(stderr, pr_fmt(fmt), "warning", ##args)
32 #define pr_info(fmt, args...) fprintf(stderr, pr_fmt(fmt), "info", ##args)
34 struct __packed toc0_key_item {
48 * This looks somewhat like an X.509 certificate, but it is not valid BER.
51 * - Some X.509 certificate fields are missing or rearranged.
52 * - Some sequences have the wrong tag.
53 * - Zero-length sequences are accepted.
54 * - Large strings and integers must be an even number of bytes long.
55 * - Positive integers are not zero-extended to maintain their sign.
57 * See https://linux-sunxi.org/TOC0 for more information.
59 struct __packed toc0_small_tag {
64 typedef struct toc0_small_tag toc0_small_int;
65 typedef struct toc0_small_tag toc0_small_oct;
66 typedef struct toc0_small_tag toc0_small_seq;
67 typedef struct toc0_small_tag toc0_small_exp;
69 #define TOC0_SMALL_INT(len) { 0x02, (len) }
70 #define TOC0_SMALL_SEQ(len) { 0x30, (len) }
71 #define TOC0_SMALL_EXP(tag, len) { 0xa0 | (tag), len }
73 struct __packed toc0_large_tag {
80 typedef struct toc0_large_tag toc0_large_int;
81 typedef struct toc0_large_tag toc0_large_bit;
82 typedef struct toc0_large_tag toc0_large_seq;
84 #define TOC0_LARGE_INT(len) { 0x02, 0x82, (len) >> 8, (len) & 0xff }
85 #define TOC0_LARGE_BIT(len) { 0x03, 0x82, (len) >> 8, (len) & 0xff }
86 #define TOC0_LARGE_SEQ(len) { 0x30, 0x82, (len) >> 8, (len) & 0xff }
88 struct __packed toc0_cert_item {
89 toc0_large_seq tag_totalSequence;
90 struct __packed toc0_totalSequence {
91 toc0_large_seq tag_mainSequence;
92 struct __packed toc0_mainSequence {
93 toc0_small_exp tag_explicit0;
94 struct __packed toc0_explicit0 {
95 toc0_small_int tag_version;
98 toc0_small_int tag_serialNumber;
100 toc0_small_seq tag_signature;
101 toc0_small_seq tag_issuer;
102 toc0_small_seq tag_validity;
103 toc0_small_seq tag_subject;
104 toc0_large_seq tag_subjectPublicKeyInfo;
105 struct __packed toc0_subjectPublicKeyInfo {
106 toc0_small_seq tag_algorithm;
107 toc0_large_seq tag_publicKey;
108 struct __packed toc0_publicKey {
109 toc0_large_int tag_n;
111 toc0_small_int tag_e;
114 } subjectPublicKeyInfo;
115 toc0_small_exp tag_explicit3;
116 struct __packed toc0_explicit3 {
117 toc0_small_seq tag_extension;
118 struct __packed toc0_extension {
119 toc0_small_int tag_digest;
124 toc0_large_bit tag_sigSequence;
125 struct __packed toc0_sigSequence {
126 toc0_small_seq tag_algorithm;
127 toc0_large_bit tag_signature;
128 uint8_t signature[256];
133 #define sizeof_field(TYPE, MEMBER) sizeof((((TYPE *)0)->MEMBER))
135 static const struct toc0_cert_item cert_item_template = {
136 TOC0_LARGE_SEQ(sizeof(struct toc0_totalSequence)),
138 TOC0_LARGE_SEQ(sizeof(struct toc0_mainSequence)),
140 TOC0_SMALL_EXP(0, sizeof(struct toc0_explicit0)),
142 TOC0_SMALL_INT(sizeof_field(struct toc0_explicit0, version)),
145 TOC0_SMALL_INT(sizeof_field(struct toc0_mainSequence, serialNumber)),
151 TOC0_LARGE_SEQ(sizeof(struct toc0_subjectPublicKeyInfo)),
154 TOC0_LARGE_SEQ(sizeof(struct toc0_publicKey)),
156 TOC0_LARGE_INT(sizeof_field(struct toc0_publicKey, n)),
158 TOC0_SMALL_INT(sizeof_field(struct toc0_publicKey, e)),
162 TOC0_SMALL_EXP(3, sizeof(struct toc0_explicit3)),
164 TOC0_SMALL_SEQ(sizeof(struct toc0_extension)),
166 TOC0_SMALL_INT(sizeof_field(struct toc0_extension, digest)),
171 TOC0_LARGE_BIT(sizeof(struct toc0_sigSequence)),
174 TOC0_LARGE_BIT(sizeof_field(struct toc0_sigSequence, signature)),
180 #define TOC0_DEFAULT_NUM_ITEMS 3
181 #define TOC0_DEFAULT_HEADER_LEN \
183 sizeof(struct toc0_main_info) + \
184 sizeof(struct toc0_item_info) * TOC0_DEFAULT_NUM_ITEMS + \
185 sizeof(struct toc0_cert_item) + \
186 sizeof(struct toc0_key_item), \
189 static char *fw_key_file = "fw_key.pem";
190 static char *key_item_file = "key_item.bin";
191 static char *root_key_file = "root_key.pem";
194 * Create a key item in @buf, containing the public keys @root_key and @fw_key,
195 * and signed by the RSA key @root_key.
197 static int toc0_create_key_item(uint8_t *buf, uint32_t *len,
198 RSA *root_key, RSA *fw_key)
200 struct toc0_key_item *key_item = (void *)buf;
201 uint8_t digest[SHA256_DIGEST_LENGTH];
202 int ret = EXIT_FAILURE;
203 unsigned int sig_len;
207 n_len = BN_bn2bin(RSA_get0_n(root_key), key_item->key0);
208 e_len = BN_bn2bin(RSA_get0_e(root_key), key_item->key0 + n_len);
209 if (n_len + e_len > sizeof(key_item->key0)) {
210 pr_err("Root key is too big for key item\n");
213 key_item->key0_n_len = cpu_to_le32(n_len);
214 key_item->key0_e_len = cpu_to_le32(e_len);
217 n_len = BN_bn2bin(RSA_get0_n(fw_key), key_item->key1);
218 e_len = BN_bn2bin(RSA_get0_e(fw_key), key_item->key1 + n_len);
219 if (n_len + e_len > sizeof(key_item->key1)) {
220 pr_err("Firmware key is too big for key item\n");
223 key_item->key1_n_len = cpu_to_le32(n_len);
224 key_item->key1_e_len = cpu_to_le32(e_len);
226 /* Sign the key item. */
227 key_item->sig_len = cpu_to_le32(RSA_size(root_key));
228 SHA256(buf, key_item->sig - buf, digest);
229 if (!RSA_sign(NID_sha256, digest, sizeof(digest),
230 key_item->sig, &sig_len, root_key)) {
231 pr_err("Failed to sign key item\n");
234 if (sig_len != sizeof(key_item->sig)) {
235 pr_err("Bad key item signature length\n");
239 *len = sizeof(*key_item);
247 * Verify the key item in @buf, containing two public keys @key0 and @key1,
248 * and signed by the RSA key @key0. If @root_key is provided, only signatures
249 * by that key will be accepted. @key1 is returned in @key.
251 static int toc0_verify_key_item(const uint8_t *buf, uint32_t len,
252 RSA *root_key, RSA **fw_key)
254 struct toc0_key_item *key_item = (void *)buf;
255 uint8_t digest[SHA256_DIGEST_LENGTH];
256 int ret = EXIT_FAILURE;
262 if (len < sizeof(*key_item))
266 n_len = le32_to_cpu(key_item->key0_n_len);
267 e_len = le32_to_cpu(key_item->key0_e_len);
268 if (n_len + e_len > sizeof(key_item->key0)) {
269 pr_err("Bad root key size in key item\n");
272 n = BN_bin2bn(key_item->key0, n_len, NULL);
273 e = BN_bin2bn(key_item->key0 + n_len, e_len, NULL);
277 if (!RSA_set0_key(key0, n, e, NULL))
280 /* If a root key was provided, compare it to key 0. */
281 if (root_key && (BN_cmp(n, RSA_get0_n(root_key)) ||
282 BN_cmp(e, RSA_get0_e(root_key)))) {
283 pr_err("Wrong root key in key item\n");
287 /* Verify the key item signature. */
288 SHA256(buf, key_item->sig - buf, digest);
289 if (!RSA_verify(NID_sha256, digest, sizeof(digest),
290 key_item->sig, le32_to_cpu(key_item->sig_len), key0)) {
291 pr_err("Bad key item signature\n");
297 n_len = le32_to_cpu(key_item->key1_n_len);
298 e_len = le32_to_cpu(key_item->key1_e_len);
299 if (n_len + e_len > sizeof(key_item->key1)) {
300 pr_err("Bad firmware key size in key item\n");
303 n = BN_bin2bn(key_item->key1, n_len, NULL);
304 e = BN_bin2bn(key_item->key1 + n_len, e_len, NULL);
308 if (!RSA_set0_key(key1, n, e, NULL))
312 /* If a FW key was provided, compare it to key 1. */
313 if (BN_cmp(n, RSA_get0_n(*fw_key)) ||
314 BN_cmp(e, RSA_get0_e(*fw_key))) {
315 pr_err("Wrong firmware key in key item\n");
319 /* Otherwise, send key1 back to the caller. */
335 * Create a certificate in @buf, describing the firmware with SHA256 digest
336 * @digest, and signed by the RSA key @fw_key.
338 static int toc0_create_cert_item(uint8_t *buf, uint32_t *len, RSA *fw_key,
339 uint8_t digest[static SHA256_DIGEST_LENGTH])
341 struct toc0_cert_item *cert_item = (void *)buf;
342 uint8_t cert_digest[SHA256_DIGEST_LENGTH];
343 struct toc0_totalSequence *totalSequence;
344 struct toc0_sigSequence *sigSequence;
345 struct toc0_extension *extension;
346 struct toc0_publicKey *publicKey;
347 int ret = EXIT_FAILURE;
348 unsigned int sig_len;
350 memcpy(cert_item, &cert_item_template, sizeof(*cert_item));
351 *len = sizeof(*cert_item);
354 * Fill in the public key.
356 * Only 2048-bit RSA keys are supported. Since this uses a fixed-size
357 * structure, it may fail for non-standard exponents.
359 totalSequence = &cert_item->totalSequence;
360 publicKey = &totalSequence->mainSequence.subjectPublicKeyInfo.publicKey;
361 if (BN_bn2binpad(RSA_get0_n(fw_key), publicKey->n, sizeof(publicKey->n)) < 0 ||
362 BN_bn2binpad(RSA_get0_e(fw_key), publicKey->e, sizeof(publicKey->e)) < 0) {
363 pr_err("Firmware key is too big for certificate\n");
367 /* Fill in the firmware digest. */
368 extension = &totalSequence->mainSequence.explicit3.extension;
369 memcpy(&extension->digest, digest, SHA256_DIGEST_LENGTH);
372 * Sign the certificate.
374 * In older SBROM versions (and by default in newer versions),
375 * the last 4 bytes of the certificate are not signed.
377 * (The buffer passed to SHA256 starts at tag_mainSequence, but
378 * the buffer size does not include the length of that tag.)
380 SHA256((uint8_t *)totalSequence, sizeof(struct toc0_mainSequence), cert_digest);
381 sigSequence = &totalSequence->sigSequence;
382 if (!RSA_sign(NID_sha256, cert_digest, SHA256_DIGEST_LENGTH,
383 sigSequence->signature, &sig_len, fw_key)) {
384 pr_err("Failed to sign certificate\n");
387 if (sig_len != sizeof(sigSequence->signature)) {
388 pr_err("Bad certificate signature length\n");
399 * Verify the certificate in @buf, describing the firmware with SHA256 digest
400 * @digest, and signed by the RSA key contained within. If @fw_key is provided,
401 * only that key will be accepted.
403 * This function is only expected to work with images created by mkimage.
405 static int toc0_verify_cert_item(const uint8_t *buf, uint32_t len, RSA *fw_key,
406 uint8_t digest[static SHA256_DIGEST_LENGTH])
408 const struct toc0_cert_item *cert_item = (const void *)buf;
409 uint8_t cert_digest[SHA256_DIGEST_LENGTH];
410 const struct toc0_totalSequence *totalSequence;
411 const struct toc0_sigSequence *sigSequence;
412 const struct toc0_extension *extension;
413 const struct toc0_publicKey *publicKey;
414 int ret = EXIT_FAILURE;
418 /* Extract the public key from the certificate. */
419 totalSequence = &cert_item->totalSequence;
420 publicKey = &totalSequence->mainSequence.subjectPublicKeyInfo.publicKey;
421 n = BN_bin2bn(publicKey->n, sizeof(publicKey->n), NULL);
422 e = BN_bin2bn(publicKey->e, sizeof(publicKey->e), NULL);
426 if (!RSA_set0_key(key, n, e, NULL))
429 /* If a key was provided, compare it to the embedded key. */
430 if (fw_key && (BN_cmp(RSA_get0_n(key), RSA_get0_n(fw_key)) ||
431 BN_cmp(RSA_get0_e(key), RSA_get0_e(fw_key)))) {
432 pr_err("Wrong firmware key in certificate\n");
436 /* If a digest was provided, compare it to the embedded digest. */
437 extension = &totalSequence->mainSequence.explicit3.extension;
438 if (digest && memcmp(&extension->digest, digest, SHA256_DIGEST_LENGTH)) {
439 pr_err("Wrong firmware digest in certificate\n");
443 /* Verify the certificate's signature. See the comment above. */
444 SHA256((uint8_t *)totalSequence, sizeof(struct toc0_mainSequence), cert_digest);
445 sigSequence = &totalSequence->sigSequence;
446 if (!RSA_verify(NID_sha256, cert_digest, SHA256_DIGEST_LENGTH,
447 sigSequence->signature,
448 sizeof(sigSequence->signature), key)) {
449 pr_err("Bad certificate signature\n");
462 * Always create a TOC0 containing 3 items. The extra item will be ignored on
463 * SoCs which do not support it.
465 static int toc0_create(uint8_t *buf, uint32_t len, RSA *root_key, RSA *fw_key,
466 uint8_t *key_item, uint32_t key_item_len,
467 uint8_t *fw_item, uint32_t fw_item_len, uint32_t fw_addr)
469 struct toc0_main_info *main_info = (void *)buf;
470 struct toc0_item_info *item_info = (void *)(main_info + 1);
471 uint8_t digest[SHA256_DIGEST_LENGTH];
472 uint32_t *buf32 = (void *)buf;
473 RSA *orig_fw_key = fw_key;
474 int ret = EXIT_FAILURE;
475 uint32_t checksum = 0;
476 uint32_t item_offset;
477 uint32_t item_length;
480 /* Hash the firmware for inclusion in the certificate. */
481 SHA256(fw_item, fw_item_len, digest);
483 /* Create the main TOC0 header, containing three items. */
484 memcpy(main_info->name, TOC0_MAIN_INFO_NAME, sizeof(main_info->name));
485 main_info->magic = cpu_to_le32(TOC0_MAIN_INFO_MAGIC);
486 main_info->checksum = cpu_to_le32(BROM_STAMP_VALUE);
487 main_info->num_items = cpu_to_le32(TOC0_DEFAULT_NUM_ITEMS);
488 memcpy(main_info->end, TOC0_MAIN_INFO_END, sizeof(main_info->end));
490 /* The first item links the ROTPK to the signing key. */
491 item_offset = sizeof(*main_info) +
492 sizeof(*item_info) * TOC0_DEFAULT_NUM_ITEMS;
493 /* Using an existing key item avoids needing the root private key. */
495 item_length = sizeof(*key_item);
496 if (toc0_verify_key_item(key_item, item_length,
499 memcpy(buf + item_offset, key_item, item_length);
500 } else if (toc0_create_key_item(buf + item_offset, &item_length,
505 item_info->name = cpu_to_le32(TOC0_ITEM_INFO_NAME_KEY);
506 item_info->offset = cpu_to_le32(item_offset);
507 item_info->length = cpu_to_le32(item_length);
508 memcpy(item_info->end, TOC0_ITEM_INFO_END, sizeof(item_info->end));
510 /* The second item contains a certificate signed by the firmware key. */
511 item_offset = item_offset + item_length;
512 if (toc0_create_cert_item(buf + item_offset, &item_length,
517 item_info->name = cpu_to_le32(TOC0_ITEM_INFO_NAME_CERT);
518 item_info->offset = cpu_to_le32(item_offset);
519 item_info->length = cpu_to_le32(item_length);
520 memcpy(item_info->end, TOC0_ITEM_INFO_END, sizeof(item_info->end));
522 /* The third item contains the actual boot code. */
523 item_offset = ALIGN(item_offset + item_length, 32);
524 item_length = fw_item_len;
525 if (buf + item_offset != fw_item)
526 memmove(buf + item_offset, fw_item, item_length);
529 item_info->name = cpu_to_le32(TOC0_ITEM_INFO_NAME_FIRMWARE);
530 item_info->offset = cpu_to_le32(item_offset);
531 item_info->length = cpu_to_le32(item_length);
532 item_info->load_addr = cpu_to_le32(fw_addr);
533 memcpy(item_info->end, TOC0_ITEM_INFO_END, sizeof(item_info->end));
535 /* Pad to the required block size with 0xff to be flash-friendly. */
536 item_offset = item_offset + item_length;
537 item_length = ALIGN(item_offset, PAD_SIZE) - item_offset;
538 memset(buf + item_offset, 0xff, item_length);
540 /* Fill in the total padded file length. */
541 item_offset = item_offset + item_length;
542 main_info->length = cpu_to_le32(item_offset);
544 /* Verify enough space was provided when creating the image. */
545 assert(len >= item_offset);
547 /* Calculate the checksum. Yes, it's that simple. */
548 for (i = 0; i < item_offset / 4; ++i)
549 checksum += le32_to_cpu(buf32[i]);
550 main_info->checksum = cpu_to_le32(checksum);
555 if (fw_key != orig_fw_key)
561 static const struct toc0_item_info *
562 toc0_find_item(const struct toc0_main_info *main_info, uint32_t name,
563 uint32_t *offset, uint32_t *length)
565 const struct toc0_item_info *item_info = (void *)(main_info + 1);
566 uint32_t item_offset, item_length;
567 uint32_t num_items, main_length;
570 num_items = le32_to_cpu(main_info->num_items);
571 main_length = le32_to_cpu(main_info->length);
573 for (i = 0; i < num_items; ++i, ++item_info) {
574 if (le32_to_cpu(item_info->name) != name)
577 item_offset = le32_to_cpu(item_info->offset);
578 item_length = le32_to_cpu(item_info->length);
580 if (item_offset > main_length ||
581 item_length > main_length - item_offset)
584 *offset = item_offset;
585 *length = item_length;
593 static int toc0_verify(const uint8_t *buf, uint32_t len, RSA *root_key)
595 const struct toc0_main_info *main_info = (void *)buf;
596 const struct toc0_item_info *item_info;
597 uint8_t digest[SHA256_DIGEST_LENGTH];
598 uint32_t main_length = le32_to_cpu(main_info->length);
599 uint32_t checksum = BROM_STAMP_VALUE;
600 uint32_t *buf32 = (void *)buf;
601 uint32_t length, offset;
602 int ret = EXIT_FAILURE;
606 if (len < main_length)
609 /* Verify the main header. */
610 if (memcmp(main_info->name, TOC0_MAIN_INFO_NAME, sizeof(main_info->name)))
612 if (le32_to_cpu(main_info->magic) != TOC0_MAIN_INFO_MAGIC)
614 /* Verify the checksum without modifying the buffer. */
615 for (i = 0; i < main_length / 4; ++i)
616 checksum += le32_to_cpu(buf32[i]);
617 if (checksum != 2 * le32_to_cpu(main_info->checksum))
619 /* The length must be at least 512 byte aligned. */
620 if (main_length % 512)
622 if (memcmp(main_info->end, TOC0_MAIN_INFO_END, sizeof(main_info->end)))
625 /* Verify the key item if present (it is optional). */
626 item_info = toc0_find_item(main_info, TOC0_ITEM_INFO_NAME_KEY,
630 else if (toc0_verify_key_item(buf + offset, length, root_key, &fw_key))
633 /* Hash the firmware to compare with the certificate. */
634 item_info = toc0_find_item(main_info, TOC0_ITEM_INFO_NAME_FIRMWARE,
637 pr_err("Missing firmware item\n");
640 SHA256(buf + offset, length, digest);
642 /* Verify the certificate item. */
643 item_info = toc0_find_item(main_info, TOC0_ITEM_INFO_NAME_CERT,
646 pr_err("Missing certificate item\n");
649 if (toc0_verify_cert_item(buf + offset, length, fw_key, digest))
655 if (fw_key != root_key)
661 static int toc0_check_params(struct image_tool_params *params)
667 * If a key directory was provided, look for key files there.
668 * Otherwise, look for them in the current directory. The key files are
669 * the "quoted" terms in the description below.
671 * A summary of the chain of trust on most SoCs:
672 * 1) eFuse contains a SHA256 digest of the public "root key".
673 * 2) Private "root key" signs the certificate item (generated here).
674 * 3) Certificate item contains a SHA256 digest of the firmware item.
676 * A summary of the chain of trust on the H6 (by default; a bit in the
677 * BROM_CONFIG eFuse makes it work like above):
678 * 1) eFuse contains a SHA256 digest of the public "root key".
679 * 2) Private "root key" signs the "key item" (generated here).
680 * 3) "Key item" contains the public "root key" and public "fw key".
681 * 4) Private "fw key" signs the certificate item (generated here).
682 * 5) Certificate item contains a SHA256 digest of the firmware item.
684 * This means there are three valid ways to generate a TOC0:
685 * 1) Provide the private "root key" only. This works everywhere.
686 * For H6, the "root key" will also be used as the "fw key".
687 * 2) FOR H6 ONLY: Provide the private "root key" and a separate
689 * 3) FOR H6 ONLY: Provide the private "fw key" and a pre-existing
690 * "key item" containing the corresponding public "fw key".
691 * In this case, the private "root key" can be kept offline. The
692 * "key item" can be extracted from a TOC0 image generated using
695 * Note that until the ROTPK_HASH eFuse is programmed, any "root key"
696 * will be accepted by the BROM.
698 if (params->keydir) {
699 if (asprintf(&fw_key_file, "%s/%s", params->keydir, fw_key_file) < 0)
701 if (asprintf(&key_item_file, "%s/%s", params->keydir, key_item_file) < 0)
703 if (asprintf(&root_key_file, "%s/%s", params->keydir, root_key_file) < 0)
710 static int toc0_verify_header(unsigned char *buf, int image_size,
711 struct image_tool_params *params)
713 int ret = EXIT_FAILURE;
714 RSA *root_key = NULL;
717 /* A root public key is optional. */
718 fp = fopen(root_key_file, "rb");
720 pr_info("Verifying image with existing root key\n");
721 root_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
723 root_key = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL);
726 pr_err("Failed to read public key from '%s'\n",
732 ret = toc0_verify(buf, image_size, root_key);
740 static const char *toc0_item_name(uint32_t name)
742 if (name == TOC0_ITEM_INFO_NAME_CERT)
743 return "Certificate";
744 if (name == TOC0_ITEM_INFO_NAME_FIRMWARE)
746 if (name == TOC0_ITEM_INFO_NAME_KEY)
751 static void toc0_print_header(const void *buf)
753 const struct toc0_main_info *main_info = buf;
754 const struct toc0_item_info *item_info = (void *)(main_info + 1);
755 uint32_t head_length, main_length, num_items;
756 uint32_t item_offset, item_length, item_name;
760 num_items = le32_to_cpu(main_info->num_items);
761 head_length = sizeof(*main_info) + num_items * sizeof(*item_info);
762 main_length = le32_to_cpu(main_info->length);
764 printf("Allwinner TOC0 Image\n"
766 "Contents: %d items\n"
767 " 00000000:%08x Headers\n",
768 main_length, num_items, head_length);
770 for (i = 0; i < num_items; ++i, ++item_info) {
771 item_offset = le32_to_cpu(item_info->offset);
772 item_length = le32_to_cpu(item_info->length);
773 item_name = le32_to_cpu(item_info->name);
775 if (item_name == TOC0_ITEM_INFO_NAME_FIRMWARE)
776 load_addr = le32_to_cpu(item_info->load_addr);
778 printf(" %08x:%08x %s\n",
779 item_offset, item_length,
780 toc0_item_name(item_name));
783 if (num_items && item_offset + item_length < main_length) {
784 item_offset = item_offset + item_length;
785 item_length = main_length - item_offset;
787 printf(" %08x:%08x Padding\n",
788 item_offset, item_length);
792 printf("Load address: 0x%08x\n", load_addr);
795 static void toc0_set_header(void *buf, struct stat *sbuf, int ifd,
796 struct image_tool_params *params)
798 uint32_t key_item_len = 0;
799 uint8_t *key_item = NULL;
800 int ret = EXIT_FAILURE;
801 RSA *root_key = NULL;
805 /* Either a key item or the root private key is required. */
806 fp = fopen(key_item_file, "rb");
808 pr_info("Creating image using existing key item\n");
809 key_item_len = sizeof(struct toc0_key_item);
810 key_item = OPENSSL_malloc(key_item_len);
811 if (!key_item || fread(key_item, key_item_len, 1, fp) != 1) {
812 pr_err("Failed to read key item from '%s'\n",
820 fp = fopen(root_key_file, "rb");
822 root_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
824 root_key = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL);
829 /* When using an existing key item, the root key is optional. */
830 if (!key_item && (!root_key || !RSA_get0_d(root_key))) {
831 pr_err("Failed to read private key from '%s'\n",
833 pr_info("Try 'openssl genrsa -out root_key.pem'\n");
837 /* The certificate/firmware private key is always required. */
838 fp = fopen(fw_key_file, "rb");
840 fw_key = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
845 /* If the root key is a private key, it can be used instead. */
846 if (root_key && RSA_get0_d(root_key)) {
847 pr_info("Using root key as firmware key\n");
850 pr_err("Failed to read private key from '%s'\n",
856 /* Warn about potential compatibility issues. */
857 if (key_item || fw_key != root_key)
858 pr_warn("Only H6 supports separate root and firmware keys\n");
860 ret = toc0_create(buf, params->file_size, root_key, fw_key,
861 key_item, key_item_len,
862 buf + TOC0_DEFAULT_HEADER_LEN,
863 params->orig_file_size, params->addr);
866 OPENSSL_free(key_item);
867 OPENSSL_free(root_key);
868 if (fw_key != root_key)
869 OPENSSL_free(fw_key);
873 if (ret != EXIT_SUCCESS)
877 static int toc0_check_image_type(uint8_t type)
879 return type == IH_TYPE_SUNXI_TOC0 ? 0 : 1;
882 static int toc0_vrec_header(struct image_tool_params *params,
883 struct image_type_params *tparams)
885 tparams->hdr = calloc(tparams->header_size, 1);
887 /* Save off the unpadded data size for SHA256 calculation. */
888 params->orig_file_size = params->file_size - TOC0_DEFAULT_HEADER_LEN;
890 /* Return padding to 8K blocks. */
891 return ALIGN(params->file_size, PAD_SIZE) - params->file_size;
896 "Allwinner TOC0 Boot Image support",
897 TOC0_DEFAULT_HEADER_LEN,
904 toc0_check_image_type,