Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 Semihalf |
| 4 | * |
| 5 | * (C) Copyright 2000-2004 |
| 6 | * DENX Software Engineering |
| 7 | * Wolfgang Denk, wd@denx.de |
| 8 | * |
| 9 | * Updated-by: Prafulla Wadaskar <prafulla@marvell.com> |
| 10 | * default_image specific code abstracted from mkimage.c |
| 11 | * some functions added to address abstraction |
| 12 | * |
| 13 | * All rights reserved. |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 14 | */ |
| 15 | |
Guilherme Maciel Ferreira | f86ed6a | 2013-12-01 12:43:10 -0700 | [diff] [blame] | 16 | #include "imagetool.h" |
Guilherme Maciel Ferreira | 2662179 | 2015-01-15 02:54:43 -0200 | [diff] [blame] | 17 | #include "mkimage.h" |
Simon Glass | 3db7110 | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 18 | #include <u-boot/crc.h> |
Guilherme Maciel Ferreira | 2662179 | 2015-01-15 02:54:43 -0200 | [diff] [blame] | 19 | |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 20 | #include <image.h> |
Bryan O'Donoghue | 45b5571 | 2018-03-13 16:50:35 +0000 | [diff] [blame] | 21 | #include <tee/optee.h> |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 22 | #include <u-boot/crc.h> |
Breno Matheus Lima | 5b20d14 | 2019-09-23 18:39:47 +0000 | [diff] [blame] | 23 | #include <imximage.h> |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 24 | |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 25 | static struct legacy_img_hdr header; |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 26 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 27 | static int image_check_image_types(uint8_t type) |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 28 | { |
Stephen Warren | b9b50e89 | 2011-11-10 13:17:53 -0700 | [diff] [blame] | 29 | if (((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT)) || |
Marc Kleine-Budde | 28f924f | 2022-11-23 12:55:33 +0100 | [diff] [blame] | 30 | (type == IH_TYPE_KERNEL_NOLOAD) || (type == IH_TYPE_FIRMWARE_IVT) || |
| 31 | (type == IH_TYPE_FDT_LEGACY)) |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 32 | return EXIT_SUCCESS; |
| 33 | else |
| 34 | return EXIT_FAILURE; |
| 35 | } |
| 36 | |
Guilherme Maciel Ferreira | f86ed6a | 2013-12-01 12:43:10 -0700 | [diff] [blame] | 37 | static int image_check_params(struct image_tool_params *params) |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 38 | { |
| 39 | return ((params->dflag && (params->fflag || params->lflag)) || |
| 40 | (params->fflag && (params->dflag || params->lflag)) || |
| 41 | (params->lflag && (params->dflag || params->fflag))); |
| 42 | } |
| 43 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 44 | static int image_verify_header(unsigned char *ptr, int image_size, |
Guilherme Maciel Ferreira | f86ed6a | 2013-12-01 12:43:10 -0700 | [diff] [blame] | 45 | struct image_tool_params *params) |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 46 | { |
| 47 | uint32_t len; |
| 48 | const unsigned char *data; |
| 49 | uint32_t checksum; |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 50 | struct legacy_img_hdr header; |
| 51 | struct legacy_img_hdr *hdr = &header; |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 52 | |
| 53 | /* |
| 54 | * create copy of header so that we can blank out the |
| 55 | * checksum field for checking - this can't be done |
| 56 | * on the PROT_READ mapped data. |
| 57 | */ |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 58 | memcpy(hdr, ptr, sizeof(struct legacy_img_hdr)); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 59 | |
| 60 | if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) { |
Guilherme Maciel Ferreira | 2662179 | 2015-01-15 02:54:43 -0200 | [diff] [blame] | 61 | debug("%s: Bad Magic Number: \"%s\" is no valid image\n", |
| 62 | params->cmdname, params->imagefile); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 63 | return -FDT_ERR_BADMAGIC; |
| 64 | } |
| 65 | |
| 66 | data = (const unsigned char *)hdr; |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 67 | len = sizeof(struct legacy_img_hdr); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 68 | |
| 69 | checksum = be32_to_cpu(hdr->ih_hcrc); |
| 70 | hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */ |
| 71 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 72 | if (crc32(0, data, len) != checksum) { |
Guilherme Maciel Ferreira | 2662179 | 2015-01-15 02:54:43 -0200 | [diff] [blame] | 73 | debug("%s: ERROR: \"%s\" has bad header checksum!\n", |
| 74 | params->cmdname, params->imagefile); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 75 | return -FDT_ERR_BADSTATE; |
| 76 | } |
| 77 | |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 78 | data = (const unsigned char *)ptr + sizeof(struct legacy_img_hdr); |
| 79 | len = image_size - sizeof(struct legacy_img_hdr); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 80 | |
| 81 | checksum = be32_to_cpu(hdr->ih_dcrc); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 82 | if (crc32(0, data, len) != checksum) { |
Guilherme Maciel Ferreira | 2662179 | 2015-01-15 02:54:43 -0200 | [diff] [blame] | 83 | debug("%s: ERROR: \"%s\" has corrupted data!\n", |
| 84 | params->cmdname, params->imagefile); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 85 | return -FDT_ERR_BADSTRUCTURE; |
| 86 | } |
| 87 | return 0; |
| 88 | } |
| 89 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 90 | static void image_set_header(void *ptr, struct stat *sbuf, int ifd, |
Guilherme Maciel Ferreira | f86ed6a | 2013-12-01 12:43:10 -0700 | [diff] [blame] | 91 | struct image_tool_params *params) |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 92 | { |
| 93 | uint32_t checksum; |
Paul Kocialkowski | f3f431a | 2015-07-26 18:48:15 +0200 | [diff] [blame] | 94 | time_t time; |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 95 | uint32_t imagesize; |
Bryan O'Donoghue | 45b5571 | 2018-03-13 16:50:35 +0000 | [diff] [blame] | 96 | uint32_t ep; |
| 97 | uint32_t addr; |
Marc Kleine-Budde | 28f924f | 2022-11-23 12:55:33 +0100 | [diff] [blame] | 98 | int type; |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 99 | struct legacy_img_hdr *hdr = (struct legacy_img_hdr *)ptr; |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 100 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 101 | checksum = crc32(0, |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 102 | (const unsigned char *)(ptr + |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 103 | sizeof(struct legacy_img_hdr)), |
| 104 | sbuf->st_size - sizeof(struct legacy_img_hdr)); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 105 | |
Alex Kiernan | 87925df | 2018-06-20 20:10:51 +0000 | [diff] [blame] | 106 | time = imagetool_get_source_date(params->cmdname, sbuf->st_mtime); |
Bryan O'Donoghue | 45b5571 | 2018-03-13 16:50:35 +0000 | [diff] [blame] | 107 | ep = params->ep; |
| 108 | addr = params->addr; |
| 109 | |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 110 | if (params->type == IH_TYPE_FIRMWARE_IVT) |
| 111 | /* Add size of CSF minus IVT */ |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 112 | imagesize = sbuf->st_size - sizeof(struct legacy_img_hdr) |
Breno Matheus Lima | 5b20d14 | 2019-09-23 18:39:47 +0000 | [diff] [blame] | 113 | + 0x2060 - sizeof(flash_header_v2_t); |
| 114 | |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 115 | else |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 116 | imagesize = sbuf->st_size - sizeof(struct legacy_img_hdr); |
Paul Kocialkowski | f3f431a | 2015-07-26 18:48:15 +0200 | [diff] [blame] | 117 | |
Marc Kleine-Budde | 28f924f | 2022-11-23 12:55:33 +0100 | [diff] [blame] | 118 | if (params->type == IH_TYPE_FDT_LEGACY) |
| 119 | type = IH_TYPE_FLATDT; |
| 120 | else |
| 121 | type = params->type; |
| 122 | |
Bryan O'Donoghue | 45b5571 | 2018-03-13 16:50:35 +0000 | [diff] [blame] | 123 | if (params->os == IH_OS_TEE) { |
| 124 | addr = optee_image_get_load_addr(hdr); |
| 125 | ep = optee_image_get_entry_point(hdr); |
| 126 | } |
| 127 | |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 128 | /* Build new header */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 129 | image_set_magic(hdr, IH_MAGIC); |
Paul Kocialkowski | f3f431a | 2015-07-26 18:48:15 +0200 | [diff] [blame] | 130 | image_set_time(hdr, time); |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 131 | image_set_size(hdr, imagesize); |
Bryan O'Donoghue | 45b5571 | 2018-03-13 16:50:35 +0000 | [diff] [blame] | 132 | image_set_load(hdr, addr); |
| 133 | image_set_ep(hdr, ep); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 134 | image_set_dcrc(hdr, checksum); |
| 135 | image_set_os(hdr, params->os); |
| 136 | image_set_arch(hdr, params->arch); |
Marc Kleine-Budde | 28f924f | 2022-11-23 12:55:33 +0100 | [diff] [blame] | 137 | image_set_type(hdr, type); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 138 | image_set_comp(hdr, params->comp); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 139 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 140 | image_set_name(hdr, params->imagename); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 141 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 142 | checksum = crc32(0, (const unsigned char *)hdr, |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 143 | sizeof(struct legacy_img_hdr)); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 144 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 145 | image_set_hcrc(hdr, checksum); |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 146 | } |
| 147 | |
Guilherme Maciel Ferreira | 67f946c | 2015-01-15 02:54:41 -0200 | [diff] [blame] | 148 | static int image_extract_subimage(void *ptr, struct image_tool_params *params) |
Guilherme Maciel Ferreira | a804b5c | 2013-12-01 12:43:11 -0700 | [diff] [blame] | 149 | { |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 150 | const struct legacy_img_hdr *hdr = (const struct legacy_img_hdr *)ptr; |
Guilherme Maciel Ferreira | a804b5c | 2013-12-01 12:43:11 -0700 | [diff] [blame] | 151 | ulong file_data; |
| 152 | ulong file_len; |
| 153 | |
| 154 | if (image_check_type(hdr, IH_TYPE_MULTI)) { |
| 155 | ulong idx = params->pflag; |
| 156 | ulong count; |
| 157 | |
| 158 | /* get the number of data files present in the image */ |
| 159 | count = image_multi_count(hdr); |
| 160 | |
| 161 | /* retrieve the "data file" at the idx position */ |
| 162 | image_multi_getimg(hdr, idx, &file_data, &file_len); |
| 163 | |
| 164 | if ((file_len == 0) || (idx >= count)) { |
| 165 | fprintf(stderr, "%s: No such data file %ld in \"%s\"\n", |
| 166 | params->cmdname, idx, params->imagefile); |
| 167 | return -1; |
| 168 | } |
| 169 | } else { |
| 170 | file_data = image_get_data(hdr); |
| 171 | file_len = image_get_size(hdr); |
| 172 | } |
| 173 | |
| 174 | /* save the "data file" into the file system */ |
Guilherme Maciel Ferreira | 67f946c | 2015-01-15 02:54:41 -0200 | [diff] [blame] | 175 | return imagetool_save_subimage(params->outfile, file_data, file_len); |
Guilherme Maciel Ferreira | a804b5c | 2013-12-01 12:43:11 -0700 | [diff] [blame] | 176 | } |
| 177 | |
Prafulla Wadaskar | 89a4d6b | 2009-08-19 17:36:46 +0530 | [diff] [blame] | 178 | /* |
| 179 | * Default image type parameters definition |
| 180 | */ |
Guilherme Maciel Ferreira | a93648d | 2015-01-15 02:48:07 -0200 | [diff] [blame] | 181 | U_BOOT_IMAGE_TYPE( |
| 182 | defimage, |
| 183 | "Default Image support", |
Simon Glass | f3543e6 | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 184 | sizeof(struct legacy_img_hdr), |
Guilherme Maciel Ferreira | a93648d | 2015-01-15 02:48:07 -0200 | [diff] [blame] | 185 | (void *)&header, |
| 186 | image_check_params, |
| 187 | image_verify_header, |
| 188 | image_print_contents, |
| 189 | image_set_header, |
Guilherme Maciel Ferreira | 67f946c | 2015-01-15 02:54:41 -0200 | [diff] [blame] | 190 | image_extract_subimage, |
Guilherme Maciel Ferreira | a93648d | 2015-01-15 02:48:07 -0200 | [diff] [blame] | 191 | image_check_image_types, |
| 192 | NULL, |
| 193 | NULL |
| 194 | ); |