Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013, Google Inc. |
| 4 | * |
| 5 | * (C) Copyright 2008 Semihalf |
| 6 | * |
| 7 | * (C) Copyright 2000-2006 |
| 8 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Simon Glass | c581970 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 11 | #define LOG_CATEGORY LOGC_BOOT |
| 12 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 13 | #ifdef USE_HOSTCC |
| 14 | #include "mkimage.h" |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 15 | #include <time.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 16 | #include <linux/libfdt.h> |
Simon Glass | 3db7110 | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 17 | #include <u-boot/crc.h> |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 18 | #else |
Andreas Dannenberg | eba3fbd | 2016-07-27 12:12:39 -0500 | [diff] [blame] | 19 | #include <linux/compiler.h> |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 20 | #include <linux/sizes.h> |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 21 | #include <common.h> |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 22 | #include <errno.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 23 | #include <log.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 24 | #include <mapmem.h> |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 25 | #include <asm/io.h> |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 26 | #include <malloc.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 27 | #include <asm/global_data.h> |
Chia-Wei Wang | ca47955 | 2021-07-30 09:08:05 +0800 | [diff] [blame] | 28 | #ifdef CONFIG_DM_HASH |
| 29 | #include <dm.h> |
| 30 | #include <u-boot/hash.h> |
| 31 | #endif |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 32 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 33 | #endif /* !USE_HOSTCC*/ |
| 34 | |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 35 | #include <bootm.h> |
Andreas Dannenberg | eba3fbd | 2016-07-27 12:12:39 -0500 | [diff] [blame] | 36 | #include <image.h> |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 37 | #include <bootstage.h> |
Sebastian Reichel | f14e6ee | 2021-01-04 20:48:03 +0100 | [diff] [blame] | 38 | #include <linux/kconfig.h> |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 39 | #include <u-boot/crc.h> |
| 40 | #include <u-boot/md5.h> |
Jeroen Hofstee | 2b9912e | 2014-06-12 22:27:12 +0200 | [diff] [blame] | 41 | #include <u-boot/sha1.h> |
| 42 | #include <u-boot/sha256.h> |
Reuben Dowle | d16b38f | 2020-04-16 17:36:52 +1200 | [diff] [blame] | 43 | #include <u-boot/sha512.h> |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 44 | |
| 45 | /*****************************************************************************/ |
| 46 | /* New uImage format routines */ |
| 47 | /*****************************************************************************/ |
| 48 | #ifndef USE_HOSTCC |
| 49 | static int fit_parse_spec(const char *spec, char sepc, ulong addr_curr, |
| 50 | ulong *addr, const char **name) |
| 51 | { |
| 52 | const char *sep; |
| 53 | |
| 54 | *addr = addr_curr; |
| 55 | *name = NULL; |
| 56 | |
| 57 | sep = strchr(spec, sepc); |
| 58 | if (sep) { |
| 59 | if (sep - spec > 0) |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 60 | *addr = hextoul(spec, NULL); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 61 | |
| 62 | *name = sep + 1; |
| 63 | return 1; |
| 64 | } |
| 65 | |
| 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * fit_parse_conf - parse FIT configuration spec |
| 71 | * @spec: input string, containing configuration spec |
| 72 | * @add_curr: current image address (to be used as a possible default) |
| 73 | * @addr: pointer to a ulong variable, will hold FIT image address of a given |
| 74 | * configuration |
| 75 | * @conf_name double pointer to a char, will hold pointer to a configuration |
| 76 | * unit name |
| 77 | * |
Masahiro Yamada | 069d594 | 2013-09-18 09:36:38 +0900 | [diff] [blame] | 78 | * fit_parse_conf() expects configuration spec in the form of [<addr>]#<conf>, |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 79 | * where <addr> is a FIT image address that contains configuration |
| 80 | * with a <conf> unit name. |
| 81 | * |
| 82 | * Address part is optional, and if omitted default add_curr will |
| 83 | * be used instead. |
| 84 | * |
| 85 | * returns: |
| 86 | * 1 if spec is a valid configuration string, |
| 87 | * addr and conf_name are set accordingly |
| 88 | * 0 otherwise |
| 89 | */ |
| 90 | int fit_parse_conf(const char *spec, ulong addr_curr, |
| 91 | ulong *addr, const char **conf_name) |
| 92 | { |
| 93 | return fit_parse_spec(spec, '#', addr_curr, addr, conf_name); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * fit_parse_subimage - parse FIT subimage spec |
| 98 | * @spec: input string, containing subimage spec |
| 99 | * @add_curr: current image address (to be used as a possible default) |
| 100 | * @addr: pointer to a ulong variable, will hold FIT image address of a given |
| 101 | * subimage |
| 102 | * @image_name: double pointer to a char, will hold pointer to a subimage name |
| 103 | * |
Masahiro Yamada | 069d594 | 2013-09-18 09:36:38 +0900 | [diff] [blame] | 104 | * fit_parse_subimage() expects subimage spec in the form of |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 105 | * [<addr>]:<subimage>, where <addr> is a FIT image address that contains |
| 106 | * subimage with a <subimg> unit name. |
| 107 | * |
| 108 | * Address part is optional, and if omitted default add_curr will |
| 109 | * be used instead. |
| 110 | * |
| 111 | * returns: |
| 112 | * 1 if spec is a valid subimage string, |
| 113 | * addr and image_name are set accordingly |
| 114 | * 0 otherwise |
| 115 | */ |
| 116 | int fit_parse_subimage(const char *spec, ulong addr_curr, |
| 117 | ulong *addr, const char **image_name) |
| 118 | { |
| 119 | return fit_parse_spec(spec, ':', addr_curr, addr, image_name); |
| 120 | } |
| 121 | #endif /* !USE_HOSTCC */ |
| 122 | |
Joel Stanley | 93af80f | 2020-12-08 14:42:14 +1030 | [diff] [blame] | 123 | #ifdef USE_HOSTCC |
| 124 | /* Host tools use these implementations for Cipher and Signature support */ |
| 125 | static void *host_blob; |
| 126 | |
| 127 | void image_set_host_blob(void *blob) |
| 128 | { |
| 129 | host_blob = blob; |
| 130 | } |
| 131 | |
| 132 | void *image_get_host_blob(void) |
| 133 | { |
| 134 | return host_blob; |
| 135 | } |
| 136 | #endif /* USE_HOSTCC */ |
| 137 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 138 | static void fit_get_debug(const void *fit, int noffset, |
| 139 | char *prop_name, int err) |
| 140 | { |
| 141 | debug("Can't get '%s' property from FIT 0x%08lx, node: offset %d, name %s (%s)\n", |
| 142 | prop_name, (ulong)fit, noffset, fit_get_name(fit, noffset, NULL), |
| 143 | fdt_strerror(err)); |
| 144 | } |
| 145 | |
Guilherme Maciel Ferreira | 39931f9 | 2015-01-15 02:54:42 -0200 | [diff] [blame] | 146 | /** |
| 147 | * fit_get_subimage_count - get component (sub-image) count |
| 148 | * @fit: pointer to the FIT format image header |
| 149 | * @images_noffset: offset of images node |
| 150 | * |
| 151 | * returns: |
| 152 | * number of image components |
| 153 | */ |
| 154 | int fit_get_subimage_count(const void *fit, int images_noffset) |
| 155 | { |
| 156 | int noffset; |
| 157 | int ndepth; |
| 158 | int count = 0; |
| 159 | |
| 160 | /* Process its subnodes, print out component images details */ |
| 161 | for (ndepth = 0, count = 0, |
| 162 | noffset = fdt_next_node(fit, images_noffset, &ndepth); |
| 163 | (noffset >= 0) && (ndepth > 0); |
| 164 | noffset = fdt_next_node(fit, noffset, &ndepth)) { |
| 165 | if (ndepth == 1) { |
| 166 | count++; |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | return count; |
| 171 | } |
| 172 | |
Ravik Hasija | 7a01882 | 2021-01-27 14:01:48 -0800 | [diff] [blame] | 173 | #if CONFIG_IS_ENABLED(FIT_PRINT) || CONFIG_IS_ENABLED(SPL_FIT_PRINT) |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 174 | /** |
Tom Rini | 16c4b16 | 2018-05-08 14:34:05 -0400 | [diff] [blame] | 175 | * fit_image_print_data() - prints out the hash node details |
| 176 | * @fit: pointer to the FIT format image header |
| 177 | * @noffset: offset of the hash node |
| 178 | * @p: pointer to prefix string |
| 179 | * @type: Type of information to print ("hash" or "sign") |
| 180 | * |
| 181 | * fit_image_print_data() lists properties for the processed hash node |
| 182 | * |
| 183 | * This function avoid using puts() since it prints a newline on the host |
| 184 | * but does not in U-Boot. |
| 185 | * |
| 186 | * returns: |
| 187 | * no returned results |
| 188 | */ |
| 189 | static void fit_image_print_data(const void *fit, int noffset, const char *p, |
| 190 | const char *type) |
| 191 | { |
| 192 | const char *keyname; |
| 193 | uint8_t *value; |
| 194 | int value_len; |
| 195 | char *algo; |
Philippe Reynes | 2003156 | 2018-11-14 13:51:00 +0100 | [diff] [blame] | 196 | const char *padding; |
Simon Glass | 72188f5 | 2020-03-18 11:44:06 -0600 | [diff] [blame] | 197 | bool required; |
Tom Rini | 16c4b16 | 2018-05-08 14:34:05 -0400 | [diff] [blame] | 198 | int ret, i; |
| 199 | |
| 200 | debug("%s %s node: '%s'\n", p, type, |
| 201 | fit_get_name(fit, noffset, NULL)); |
| 202 | printf("%s %s algo: ", p, type); |
| 203 | if (fit_image_hash_get_algo(fit, noffset, &algo)) { |
| 204 | printf("invalid/unsupported\n"); |
| 205 | return; |
| 206 | } |
| 207 | printf("%s", algo); |
Simon Glass | 72188f5 | 2020-03-18 11:44:06 -0600 | [diff] [blame] | 208 | keyname = fdt_getprop(fit, noffset, FIT_KEY_HINT, NULL); |
| 209 | required = fdt_getprop(fit, noffset, FIT_KEY_REQUIRED, NULL) != NULL; |
Tom Rini | 16c4b16 | 2018-05-08 14:34:05 -0400 | [diff] [blame] | 210 | if (keyname) |
| 211 | printf(":%s", keyname); |
| 212 | if (required) |
| 213 | printf(" (required)"); |
| 214 | printf("\n"); |
| 215 | |
Philippe Reynes | 2003156 | 2018-11-14 13:51:00 +0100 | [diff] [blame] | 216 | padding = fdt_getprop(fit, noffset, "padding", NULL); |
| 217 | if (padding) |
| 218 | printf("%s %s padding: %s\n", p, type, padding); |
| 219 | |
Tom Rini | 16c4b16 | 2018-05-08 14:34:05 -0400 | [diff] [blame] | 220 | ret = fit_image_hash_get_value(fit, noffset, &value, |
| 221 | &value_len); |
| 222 | printf("%s %s value: ", p, type); |
| 223 | if (ret) { |
| 224 | printf("unavailable\n"); |
| 225 | } else { |
| 226 | for (i = 0; i < value_len; i++) |
| 227 | printf("%02x", value[i]); |
| 228 | printf("\n"); |
| 229 | } |
| 230 | |
| 231 | debug("%s %s len: %d\n", p, type, value_len); |
| 232 | |
| 233 | /* Signatures have a time stamp */ |
| 234 | if (IMAGE_ENABLE_TIMESTAMP && keyname) { |
| 235 | time_t timestamp; |
| 236 | |
| 237 | printf("%s Timestamp: ", p); |
| 238 | if (fit_get_timestamp(fit, noffset, ×tamp)) |
| 239 | printf("unavailable\n"); |
| 240 | else |
| 241 | genimg_print_time(timestamp); |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * fit_image_print_verification_data() - prints out the hash/signature details |
| 247 | * @fit: pointer to the FIT format image header |
| 248 | * @noffset: offset of the hash or signature node |
| 249 | * @p: pointer to prefix string |
| 250 | * |
| 251 | * This lists properties for the processed hash node |
| 252 | * |
| 253 | * returns: |
| 254 | * no returned results |
| 255 | */ |
| 256 | static void fit_image_print_verification_data(const void *fit, int noffset, |
| 257 | const char *p) |
| 258 | { |
| 259 | const char *name; |
| 260 | |
| 261 | /* |
| 262 | * Check subnode name, must be equal to "hash" or "signature". |
| 263 | * Multiple hash/signature nodes require unique unit node |
| 264 | * names, e.g. hash-1, hash-2, signature-1, signature-2, etc. |
| 265 | */ |
| 266 | name = fit_get_name(fit, noffset, NULL); |
| 267 | if (!strncmp(name, FIT_HASH_NODENAME, strlen(FIT_HASH_NODENAME))) { |
| 268 | fit_image_print_data(fit, noffset, p, "Hash"); |
| 269 | } else if (!strncmp(name, FIT_SIG_NODENAME, |
| 270 | strlen(FIT_SIG_NODENAME))) { |
| 271 | fit_image_print_data(fit, noffset, p, "Sign"); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * fit_conf_print - prints out the FIT configuration details |
| 277 | * @fit: pointer to the FIT format image header |
| 278 | * @noffset: offset of the configuration node |
| 279 | * @p: pointer to prefix string |
| 280 | * |
| 281 | * fit_conf_print() lists all mandatory properties for the processed |
| 282 | * configuration node. |
| 283 | * |
| 284 | * returns: |
| 285 | * no returned results |
| 286 | */ |
| 287 | static void fit_conf_print(const void *fit, int noffset, const char *p) |
| 288 | { |
| 289 | char *desc; |
| 290 | const char *uname; |
| 291 | int ret; |
| 292 | int fdt_index, loadables_index; |
| 293 | int ndepth; |
| 294 | |
| 295 | /* Mandatory properties */ |
| 296 | ret = fit_get_desc(fit, noffset, &desc); |
| 297 | printf("%s Description: ", p); |
| 298 | if (ret) |
| 299 | printf("unavailable\n"); |
| 300 | else |
| 301 | printf("%s\n", desc); |
| 302 | |
| 303 | uname = fdt_getprop(fit, noffset, FIT_KERNEL_PROP, NULL); |
| 304 | printf("%s Kernel: ", p); |
| 305 | if (!uname) |
| 306 | printf("unavailable\n"); |
| 307 | else |
| 308 | printf("%s\n", uname); |
| 309 | |
| 310 | /* Optional properties */ |
| 311 | uname = fdt_getprop(fit, noffset, FIT_RAMDISK_PROP, NULL); |
| 312 | if (uname) |
| 313 | printf("%s Init Ramdisk: %s\n", p, uname); |
| 314 | |
| 315 | uname = fdt_getprop(fit, noffset, FIT_FIRMWARE_PROP, NULL); |
| 316 | if (uname) |
| 317 | printf("%s Firmware: %s\n", p, uname); |
| 318 | |
| 319 | for (fdt_index = 0; |
| 320 | uname = fdt_stringlist_get(fit, noffset, FIT_FDT_PROP, |
| 321 | fdt_index, NULL), uname; |
| 322 | fdt_index++) { |
| 323 | if (fdt_index == 0) |
| 324 | printf("%s FDT: ", p); |
| 325 | else |
| 326 | printf("%s ", p); |
| 327 | printf("%s\n", uname); |
| 328 | } |
| 329 | |
| 330 | uname = fdt_getprop(fit, noffset, FIT_FPGA_PROP, NULL); |
| 331 | if (uname) |
| 332 | printf("%s FPGA: %s\n", p, uname); |
| 333 | |
| 334 | /* Print out all of the specified loadables */ |
| 335 | for (loadables_index = 0; |
| 336 | uname = fdt_stringlist_get(fit, noffset, FIT_LOADABLE_PROP, |
| 337 | loadables_index, NULL), uname; |
| 338 | loadables_index++) { |
| 339 | if (loadables_index == 0) { |
| 340 | printf("%s Loadables: ", p); |
| 341 | } else { |
| 342 | printf("%s ", p); |
| 343 | } |
| 344 | printf("%s\n", uname); |
| 345 | } |
| 346 | |
| 347 | /* Process all hash subnodes of the component configuration node */ |
| 348 | for (ndepth = 0, noffset = fdt_next_node(fit, noffset, &ndepth); |
| 349 | (noffset >= 0) && (ndepth > 0); |
| 350 | noffset = fdt_next_node(fit, noffset, &ndepth)) { |
| 351 | if (ndepth == 1) { |
| 352 | /* Direct child node of the component configuration node */ |
| 353 | fit_image_print_verification_data(fit, noffset, p); |
| 354 | } |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | /** |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 359 | * fit_print_contents - prints out the contents of the FIT format image |
| 360 | * @fit: pointer to the FIT format image header |
| 361 | * @p: pointer to prefix string |
| 362 | * |
| 363 | * fit_print_contents() formats a multi line FIT image contents description. |
Andreas Dannenberg | e17adbb | 2016-06-15 17:00:19 -0500 | [diff] [blame] | 364 | * The routine prints out FIT image properties (root node level) followed by |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 365 | * the details of each component image. |
| 366 | * |
| 367 | * returns: |
| 368 | * no returned results |
| 369 | */ |
| 370 | void fit_print_contents(const void *fit) |
| 371 | { |
| 372 | char *desc; |
| 373 | char *uname; |
| 374 | int images_noffset; |
| 375 | int confs_noffset; |
| 376 | int noffset; |
| 377 | int ndepth; |
| 378 | int count = 0; |
| 379 | int ret; |
| 380 | const char *p; |
| 381 | time_t timestamp; |
| 382 | |
Simon Glass | 1fe7d93 | 2013-05-08 08:05:58 +0000 | [diff] [blame] | 383 | /* Indent string is defined in header image.h */ |
| 384 | p = IMAGE_INDENT_STRING; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 385 | |
| 386 | /* Root node properties */ |
| 387 | ret = fit_get_desc(fit, 0, &desc); |
| 388 | printf("%sFIT description: ", p); |
| 389 | if (ret) |
| 390 | printf("unavailable\n"); |
| 391 | else |
| 392 | printf("%s\n", desc); |
| 393 | |
| 394 | if (IMAGE_ENABLE_TIMESTAMP) { |
| 395 | ret = fit_get_timestamp(fit, 0, ×tamp); |
| 396 | printf("%sCreated: ", p); |
| 397 | if (ret) |
| 398 | printf("unavailable\n"); |
| 399 | else |
| 400 | genimg_print_time(timestamp); |
| 401 | } |
| 402 | |
| 403 | /* Find images parent node offset */ |
| 404 | images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); |
| 405 | if (images_noffset < 0) { |
| 406 | printf("Can't find images parent node '%s' (%s)\n", |
| 407 | FIT_IMAGES_PATH, fdt_strerror(images_noffset)); |
| 408 | return; |
| 409 | } |
| 410 | |
| 411 | /* Process its subnodes, print out component images details */ |
| 412 | for (ndepth = 0, count = 0, |
| 413 | noffset = fdt_next_node(fit, images_noffset, &ndepth); |
| 414 | (noffset >= 0) && (ndepth > 0); |
| 415 | noffset = fdt_next_node(fit, noffset, &ndepth)) { |
| 416 | if (ndepth == 1) { |
| 417 | /* |
| 418 | * Direct child node of the images parent node, |
| 419 | * i.e. component image node. |
| 420 | */ |
| 421 | printf("%s Image %u (%s)\n", p, count++, |
| 422 | fit_get_name(fit, noffset, NULL)); |
| 423 | |
| 424 | fit_image_print(fit, noffset, p); |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | /* Find configurations parent node offset */ |
| 429 | confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH); |
| 430 | if (confs_noffset < 0) { |
| 431 | debug("Can't get configurations parent node '%s' (%s)\n", |
| 432 | FIT_CONFS_PATH, fdt_strerror(confs_noffset)); |
| 433 | return; |
| 434 | } |
| 435 | |
| 436 | /* get default configuration unit name from default property */ |
| 437 | uname = (char *)fdt_getprop(fit, noffset, FIT_DEFAULT_PROP, NULL); |
| 438 | if (uname) |
| 439 | printf("%s Default Configuration: '%s'\n", p, uname); |
| 440 | |
| 441 | /* Process its subnodes, print out configurations details */ |
| 442 | for (ndepth = 0, count = 0, |
| 443 | noffset = fdt_next_node(fit, confs_noffset, &ndepth); |
| 444 | (noffset >= 0) && (ndepth > 0); |
| 445 | noffset = fdt_next_node(fit, noffset, &ndepth)) { |
| 446 | if (ndepth == 1) { |
| 447 | /* |
| 448 | * Direct child node of the configurations parent node, |
| 449 | * i.e. configuration node. |
| 450 | */ |
| 451 | printf("%s Configuration %u (%s)\n", p, count++, |
| 452 | fit_get_name(fit, noffset, NULL)); |
| 453 | |
| 454 | fit_conf_print(fit, noffset, p); |
| 455 | } |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | /** |
| 460 | * fit_image_print - prints out the FIT component image details |
| 461 | * @fit: pointer to the FIT format image header |
| 462 | * @image_noffset: offset of the component image node |
| 463 | * @p: pointer to prefix string |
| 464 | * |
Andreas Dannenberg | e17adbb | 2016-06-15 17:00:19 -0500 | [diff] [blame] | 465 | * fit_image_print() lists all mandatory properties for the processed component |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 466 | * image. If present, hash nodes are printed out as well. Load |
| 467 | * address for images of type firmware is also printed out. Since the load |
| 468 | * address is not mandatory for firmware images, it will be output as |
| 469 | * "unavailable" when not present. |
| 470 | * |
| 471 | * returns: |
| 472 | * no returned results |
| 473 | */ |
| 474 | void fit_image_print(const void *fit, int image_noffset, const char *p) |
| 475 | { |
| 476 | char *desc; |
| 477 | uint8_t type, arch, os, comp; |
| 478 | size_t size; |
| 479 | ulong load, entry; |
| 480 | const void *data; |
| 481 | int noffset; |
| 482 | int ndepth; |
| 483 | int ret; |
| 484 | |
| 485 | /* Mandatory properties */ |
| 486 | ret = fit_get_desc(fit, image_noffset, &desc); |
| 487 | printf("%s Description: ", p); |
| 488 | if (ret) |
| 489 | printf("unavailable\n"); |
| 490 | else |
| 491 | printf("%s\n", desc); |
| 492 | |
Simon Glass | 1fd1e2f | 2013-07-16 20:10:01 -0700 | [diff] [blame] | 493 | if (IMAGE_ENABLE_TIMESTAMP) { |
| 494 | time_t timestamp; |
| 495 | |
| 496 | ret = fit_get_timestamp(fit, 0, ×tamp); |
| 497 | printf("%s Created: ", p); |
| 498 | if (ret) |
| 499 | printf("unavailable\n"); |
| 500 | else |
| 501 | genimg_print_time(timestamp); |
| 502 | } |
| 503 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 504 | fit_image_get_type(fit, image_noffset, &type); |
| 505 | printf("%s Type: %s\n", p, genimg_get_type_name(type)); |
| 506 | |
| 507 | fit_image_get_comp(fit, image_noffset, &comp); |
| 508 | printf("%s Compression: %s\n", p, genimg_get_comp_name(comp)); |
| 509 | |
Kelvin Cheung | c3c8638 | 2018-05-19 18:21:37 +0800 | [diff] [blame] | 510 | ret = fit_image_get_data_and_size(fit, image_noffset, &data, &size); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 511 | |
Sebastian Reichel | f14e6ee | 2021-01-04 20:48:03 +0100 | [diff] [blame] | 512 | if (!host_build()) { |
| 513 | printf("%s Data Start: ", p); |
| 514 | if (ret) { |
| 515 | printf("unavailable\n"); |
| 516 | } else { |
| 517 | void *vdata = (void *)data; |
Simon Glass | c6ac13b | 2013-05-16 13:53:26 +0000 | [diff] [blame] | 518 | |
Sebastian Reichel | f14e6ee | 2021-01-04 20:48:03 +0100 | [diff] [blame] | 519 | printf("0x%08lx\n", (ulong)map_to_sysmem(vdata)); |
| 520 | } |
Simon Glass | c6ac13b | 2013-05-16 13:53:26 +0000 | [diff] [blame] | 521 | } |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 522 | |
| 523 | printf("%s Data Size: ", p); |
| 524 | if (ret) |
| 525 | printf("unavailable\n"); |
| 526 | else |
| 527 | genimg_print_size(size); |
| 528 | |
| 529 | /* Remaining, type dependent properties */ |
| 530 | if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) || |
| 531 | (type == IH_TYPE_RAMDISK) || (type == IH_TYPE_FIRMWARE) || |
| 532 | (type == IH_TYPE_FLATDT)) { |
| 533 | fit_image_get_arch(fit, image_noffset, &arch); |
| 534 | printf("%s Architecture: %s\n", p, genimg_get_arch_name(arch)); |
| 535 | } |
| 536 | |
Michal Simek | 6faf462 | 2018-03-26 16:31:27 +0200 | [diff] [blame] | 537 | if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_RAMDISK) || |
| 538 | (type == IH_TYPE_FIRMWARE)) { |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 539 | fit_image_get_os(fit, image_noffset, &os); |
| 540 | printf("%s OS: %s\n", p, genimg_get_os_name(os)); |
| 541 | } |
| 542 | |
| 543 | if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) || |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 544 | (type == IH_TYPE_FIRMWARE) || (type == IH_TYPE_RAMDISK) || |
| 545 | (type == IH_TYPE_FPGA)) { |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 546 | ret = fit_image_get_load(fit, image_noffset, &load); |
| 547 | printf("%s Load Address: ", p); |
| 548 | if (ret) |
| 549 | printf("unavailable\n"); |
| 550 | else |
| 551 | printf("0x%08lx\n", load); |
| 552 | } |
| 553 | |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 554 | /* optional load address for FDT */ |
| 555 | if (type == IH_TYPE_FLATDT && !fit_image_get_load(fit, image_noffset, &load)) |
| 556 | printf("%s Load Address: 0x%08lx\n", p, load); |
| 557 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 558 | if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) || |
| 559 | (type == IH_TYPE_RAMDISK)) { |
York Sun | 6004765 | 2016-02-29 15:48:40 -0800 | [diff] [blame] | 560 | ret = fit_image_get_entry(fit, image_noffset, &entry); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 561 | printf("%s Entry Point: ", p); |
| 562 | if (ret) |
| 563 | printf("unavailable\n"); |
| 564 | else |
| 565 | printf("0x%08lx\n", entry); |
| 566 | } |
| 567 | |
| 568 | /* Process all hash subnodes of the component image node */ |
| 569 | for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth); |
| 570 | (noffset >= 0) && (ndepth > 0); |
| 571 | noffset = fdt_next_node(fit, noffset, &ndepth)) { |
| 572 | if (ndepth == 1) { |
| 573 | /* Direct child node of the component image node */ |
Simon Glass | d8b7536 | 2013-05-07 06:12:02 +0000 | [diff] [blame] | 574 | fit_image_print_verification_data(fit, noffset, p); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 575 | } |
| 576 | } |
| 577 | } |
Marek Vasut | a3c43b1 | 2018-05-13 00:22:53 +0200 | [diff] [blame] | 578 | #else |
| 579 | void fit_print_contents(const void *fit) { } |
| 580 | void fit_image_print(const void *fit, int image_noffset, const char *p) { } |
Ravik Hasija | 7a01882 | 2021-01-27 14:01:48 -0800 | [diff] [blame] | 581 | #endif /* CONFIG_IS_ENABLED(FIR_PRINT) || CONFIG_IS_ENABLED(SPL_FIT_PRINT) */ |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 582 | |
| 583 | /** |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 584 | * fit_get_desc - get node description property |
| 585 | * @fit: pointer to the FIT format image header |
| 586 | * @noffset: node offset |
Andreas Dannenberg | e17adbb | 2016-06-15 17:00:19 -0500 | [diff] [blame] | 587 | * @desc: double pointer to the char, will hold pointer to the description |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 588 | * |
| 589 | * fit_get_desc() reads description property from a given node, if |
Andreas Dannenberg | e17adbb | 2016-06-15 17:00:19 -0500 | [diff] [blame] | 590 | * description is found pointer to it is returned in third call argument. |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 591 | * |
| 592 | * returns: |
| 593 | * 0, on success |
| 594 | * -1, on failure |
| 595 | */ |
| 596 | int fit_get_desc(const void *fit, int noffset, char **desc) |
| 597 | { |
| 598 | int len; |
| 599 | |
| 600 | *desc = (char *)fdt_getprop(fit, noffset, FIT_DESC_PROP, &len); |
| 601 | if (*desc == NULL) { |
| 602 | fit_get_debug(fit, noffset, FIT_DESC_PROP, len); |
| 603 | return -1; |
| 604 | } |
| 605 | |
| 606 | return 0; |
| 607 | } |
| 608 | |
| 609 | /** |
| 610 | * fit_get_timestamp - get node timestamp property |
| 611 | * @fit: pointer to the FIT format image header |
| 612 | * @noffset: node offset |
| 613 | * @timestamp: pointer to the time_t, will hold read timestamp |
| 614 | * |
Andreas Dannenberg | e17adbb | 2016-06-15 17:00:19 -0500 | [diff] [blame] | 615 | * fit_get_timestamp() reads timestamp property from given node, if timestamp |
| 616 | * is found and has a correct size its value is returned in third call |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 617 | * argument. |
| 618 | * |
| 619 | * returns: |
| 620 | * 0, on success |
| 621 | * -1, on property read failure |
| 622 | * -2, on wrong timestamp size |
| 623 | */ |
| 624 | int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp) |
| 625 | { |
| 626 | int len; |
| 627 | const void *data; |
| 628 | |
| 629 | data = fdt_getprop(fit, noffset, FIT_TIMESTAMP_PROP, &len); |
| 630 | if (data == NULL) { |
| 631 | fit_get_debug(fit, noffset, FIT_TIMESTAMP_PROP, len); |
| 632 | return -1; |
| 633 | } |
| 634 | if (len != sizeof(uint32_t)) { |
| 635 | debug("FIT timestamp with incorrect size of (%u)\n", len); |
| 636 | return -2; |
| 637 | } |
| 638 | |
| 639 | *timestamp = uimage_to_cpu(*((uint32_t *)data)); |
| 640 | return 0; |
| 641 | } |
| 642 | |
| 643 | /** |
| 644 | * fit_image_get_node - get node offset for component image of a given unit name |
| 645 | * @fit: pointer to the FIT format image header |
| 646 | * @image_uname: component image node unit name |
| 647 | * |
Andreas Dannenberg | e17adbb | 2016-06-15 17:00:19 -0500 | [diff] [blame] | 648 | * fit_image_get_node() finds a component image (within the '/images' |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 649 | * node) of a provided unit name. If image is found its node offset is |
| 650 | * returned to the caller. |
| 651 | * |
| 652 | * returns: |
| 653 | * image node offset when found (>=0) |
| 654 | * negative number on failure (FDT_ERR_* code) |
| 655 | */ |
| 656 | int fit_image_get_node(const void *fit, const char *image_uname) |
| 657 | { |
| 658 | int noffset, images_noffset; |
| 659 | |
| 660 | images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); |
| 661 | if (images_noffset < 0) { |
| 662 | debug("Can't find images parent node '%s' (%s)\n", |
| 663 | FIT_IMAGES_PATH, fdt_strerror(images_noffset)); |
| 664 | return images_noffset; |
| 665 | } |
| 666 | |
| 667 | noffset = fdt_subnode_offset(fit, images_noffset, image_uname); |
| 668 | if (noffset < 0) { |
| 669 | debug("Can't get node offset for image unit name: '%s' (%s)\n", |
| 670 | image_uname, fdt_strerror(noffset)); |
| 671 | } |
| 672 | |
| 673 | return noffset; |
| 674 | } |
| 675 | |
| 676 | /** |
| 677 | * fit_image_get_os - get os id for a given component image node |
| 678 | * @fit: pointer to the FIT format image header |
| 679 | * @noffset: component image node offset |
| 680 | * @os: pointer to the uint8_t, will hold os numeric id |
| 681 | * |
| 682 | * fit_image_get_os() finds os property in a given component image node. |
| 683 | * If the property is found, its (string) value is translated to the numeric |
| 684 | * id which is returned to the caller. |
| 685 | * |
| 686 | * returns: |
| 687 | * 0, on success |
| 688 | * -1, on failure |
| 689 | */ |
| 690 | int fit_image_get_os(const void *fit, int noffset, uint8_t *os) |
| 691 | { |
| 692 | int len; |
| 693 | const void *data; |
| 694 | |
| 695 | /* Get OS name from property data */ |
| 696 | data = fdt_getprop(fit, noffset, FIT_OS_PROP, &len); |
| 697 | if (data == NULL) { |
| 698 | fit_get_debug(fit, noffset, FIT_OS_PROP, len); |
| 699 | *os = -1; |
| 700 | return -1; |
| 701 | } |
| 702 | |
| 703 | /* Translate OS name to id */ |
| 704 | *os = genimg_get_os_id(data); |
| 705 | return 0; |
| 706 | } |
| 707 | |
| 708 | /** |
| 709 | * fit_image_get_arch - get arch id for a given component image node |
| 710 | * @fit: pointer to the FIT format image header |
| 711 | * @noffset: component image node offset |
| 712 | * @arch: pointer to the uint8_t, will hold arch numeric id |
| 713 | * |
| 714 | * fit_image_get_arch() finds arch property in a given component image node. |
| 715 | * If the property is found, its (string) value is translated to the numeric |
| 716 | * id which is returned to the caller. |
| 717 | * |
| 718 | * returns: |
| 719 | * 0, on success |
| 720 | * -1, on failure |
| 721 | */ |
| 722 | int fit_image_get_arch(const void *fit, int noffset, uint8_t *arch) |
| 723 | { |
| 724 | int len; |
| 725 | const void *data; |
| 726 | |
| 727 | /* Get architecture name from property data */ |
| 728 | data = fdt_getprop(fit, noffset, FIT_ARCH_PROP, &len); |
| 729 | if (data == NULL) { |
| 730 | fit_get_debug(fit, noffset, FIT_ARCH_PROP, len); |
| 731 | *arch = -1; |
| 732 | return -1; |
| 733 | } |
| 734 | |
| 735 | /* Translate architecture name to id */ |
| 736 | *arch = genimg_get_arch_id(data); |
| 737 | return 0; |
| 738 | } |
| 739 | |
| 740 | /** |
| 741 | * fit_image_get_type - get type id for a given component image node |
| 742 | * @fit: pointer to the FIT format image header |
| 743 | * @noffset: component image node offset |
| 744 | * @type: pointer to the uint8_t, will hold type numeric id |
| 745 | * |
| 746 | * fit_image_get_type() finds type property in a given component image node. |
| 747 | * If the property is found, its (string) value is translated to the numeric |
| 748 | * id which is returned to the caller. |
| 749 | * |
| 750 | * returns: |
| 751 | * 0, on success |
| 752 | * -1, on failure |
| 753 | */ |
| 754 | int fit_image_get_type(const void *fit, int noffset, uint8_t *type) |
| 755 | { |
| 756 | int len; |
| 757 | const void *data; |
| 758 | |
| 759 | /* Get image type name from property data */ |
| 760 | data = fdt_getprop(fit, noffset, FIT_TYPE_PROP, &len); |
| 761 | if (data == NULL) { |
| 762 | fit_get_debug(fit, noffset, FIT_TYPE_PROP, len); |
| 763 | *type = -1; |
| 764 | return -1; |
| 765 | } |
| 766 | |
| 767 | /* Translate image type name to id */ |
| 768 | *type = genimg_get_type_id(data); |
| 769 | return 0; |
| 770 | } |
| 771 | |
| 772 | /** |
| 773 | * fit_image_get_comp - get comp id for a given component image node |
| 774 | * @fit: pointer to the FIT format image header |
| 775 | * @noffset: component image node offset |
| 776 | * @comp: pointer to the uint8_t, will hold comp numeric id |
| 777 | * |
| 778 | * fit_image_get_comp() finds comp property in a given component image node. |
| 779 | * If the property is found, its (string) value is translated to the numeric |
| 780 | * id which is returned to the caller. |
| 781 | * |
| 782 | * returns: |
| 783 | * 0, on success |
| 784 | * -1, on failure |
| 785 | */ |
| 786 | int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp) |
| 787 | { |
| 788 | int len; |
| 789 | const void *data; |
| 790 | |
| 791 | /* Get compression name from property data */ |
| 792 | data = fdt_getprop(fit, noffset, FIT_COMP_PROP, &len); |
| 793 | if (data == NULL) { |
| 794 | fit_get_debug(fit, noffset, FIT_COMP_PROP, len); |
| 795 | *comp = -1; |
| 796 | return -1; |
| 797 | } |
| 798 | |
| 799 | /* Translate compression name to id */ |
| 800 | *comp = genimg_get_comp_id(data); |
| 801 | return 0; |
| 802 | } |
| 803 | |
York Sun | 6004765 | 2016-02-29 15:48:40 -0800 | [diff] [blame] | 804 | static int fit_image_get_address(const void *fit, int noffset, char *name, |
| 805 | ulong *load) |
| 806 | { |
York Sun | c1913cb | 2016-02-29 15:48:41 -0800 | [diff] [blame] | 807 | int len, cell_len; |
| 808 | const fdt32_t *cell; |
| 809 | uint64_t load64 = 0; |
York Sun | 6004765 | 2016-02-29 15:48:40 -0800 | [diff] [blame] | 810 | |
York Sun | c1913cb | 2016-02-29 15:48:41 -0800 | [diff] [blame] | 811 | cell = fdt_getprop(fit, noffset, name, &len); |
| 812 | if (cell == NULL) { |
York Sun | 6004765 | 2016-02-29 15:48:40 -0800 | [diff] [blame] | 813 | fit_get_debug(fit, noffset, name, len); |
| 814 | return -1; |
| 815 | } |
| 816 | |
York Sun | c1913cb | 2016-02-29 15:48:41 -0800 | [diff] [blame] | 817 | cell_len = len >> 2; |
| 818 | /* Use load64 to avoid compiling warning for 32-bit target */ |
| 819 | while (cell_len--) { |
| 820 | load64 = (load64 << 32) | uimage_to_cpu(*cell); |
| 821 | cell++; |
| 822 | } |
Michal Simek | 13d1ca8 | 2020-09-03 12:44:51 +0200 | [diff] [blame] | 823 | |
| 824 | if (len > sizeof(ulong) && (uint32_t)(load64 >> 32)) { |
| 825 | printf("Unsupported %s address size\n", name); |
| 826 | return -1; |
| 827 | } |
| 828 | |
York Sun | c1913cb | 2016-02-29 15:48:41 -0800 | [diff] [blame] | 829 | *load = (ulong)load64; |
York Sun | 6004765 | 2016-02-29 15:48:40 -0800 | [diff] [blame] | 830 | |
| 831 | return 0; |
| 832 | } |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 833 | /** |
| 834 | * fit_image_get_load() - get load addr property for given component image node |
| 835 | * @fit: pointer to the FIT format image header |
| 836 | * @noffset: component image node offset |
| 837 | * @load: pointer to the uint32_t, will hold load address |
| 838 | * |
| 839 | * fit_image_get_load() finds load address property in a given component |
| 840 | * image node. If the property is found, its value is returned to the caller. |
| 841 | * |
| 842 | * returns: |
| 843 | * 0, on success |
| 844 | * -1, on failure |
| 845 | */ |
| 846 | int fit_image_get_load(const void *fit, int noffset, ulong *load) |
| 847 | { |
York Sun | 6004765 | 2016-02-29 15:48:40 -0800 | [diff] [blame] | 848 | return fit_image_get_address(fit, noffset, FIT_LOAD_PROP, load); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | /** |
| 852 | * fit_image_get_entry() - get entry point address property |
| 853 | * @fit: pointer to the FIT format image header |
| 854 | * @noffset: component image node offset |
| 855 | * @entry: pointer to the uint32_t, will hold entry point address |
| 856 | * |
| 857 | * This gets the entry point address property for a given component image |
| 858 | * node. |
| 859 | * |
| 860 | * fit_image_get_entry() finds entry point address property in a given |
| 861 | * component image node. If the property is found, its value is returned |
| 862 | * to the caller. |
| 863 | * |
| 864 | * returns: |
| 865 | * 0, on success |
| 866 | * -1, on failure |
| 867 | */ |
| 868 | int fit_image_get_entry(const void *fit, int noffset, ulong *entry) |
| 869 | { |
York Sun | 6004765 | 2016-02-29 15:48:40 -0800 | [diff] [blame] | 870 | return fit_image_get_address(fit, noffset, FIT_ENTRY_PROP, entry); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 871 | } |
| 872 | |
| 873 | /** |
| 874 | * fit_image_get_data - get data property and its size for a given component image node |
| 875 | * @fit: pointer to the FIT format image header |
| 876 | * @noffset: component image node offset |
| 877 | * @data: double pointer to void, will hold data property's data address |
| 878 | * @size: pointer to size_t, will hold data property's data size |
| 879 | * |
| 880 | * fit_image_get_data() finds data property in a given component image node. |
| 881 | * If the property is found its data start address and size are returned to |
| 882 | * the caller. |
| 883 | * |
| 884 | * returns: |
| 885 | * 0, on success |
| 886 | * -1, on failure |
| 887 | */ |
| 888 | int fit_image_get_data(const void *fit, int noffset, |
| 889 | const void **data, size_t *size) |
| 890 | { |
| 891 | int len; |
| 892 | |
| 893 | *data = fdt_getprop(fit, noffset, FIT_DATA_PROP, &len); |
| 894 | if (*data == NULL) { |
| 895 | fit_get_debug(fit, noffset, FIT_DATA_PROP, len); |
| 896 | *size = 0; |
| 897 | return -1; |
| 898 | } |
| 899 | |
| 900 | *size = len; |
| 901 | return 0; |
| 902 | } |
| 903 | |
| 904 | /** |
tomas.melin@vaisala.com | db1b79b | 2017-01-13 13:20:14 +0200 | [diff] [blame] | 905 | * Get 'data-offset' property from a given image node. |
| 906 | * |
| 907 | * @fit: pointer to the FIT image header |
| 908 | * @noffset: component image node offset |
| 909 | * @data_offset: holds the data-offset property |
| 910 | * |
| 911 | * returns: |
| 912 | * 0, on success |
| 913 | * -ENOENT if the property could not be found |
| 914 | */ |
| 915 | int fit_image_get_data_offset(const void *fit, int noffset, int *data_offset) |
| 916 | { |
| 917 | const fdt32_t *val; |
| 918 | |
| 919 | val = fdt_getprop(fit, noffset, FIT_DATA_OFFSET_PROP, NULL); |
| 920 | if (!val) |
| 921 | return -ENOENT; |
| 922 | |
| 923 | *data_offset = fdt32_to_cpu(*val); |
| 924 | |
| 925 | return 0; |
| 926 | } |
| 927 | |
| 928 | /** |
Peng Fan | a1be94b | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 929 | * Get 'data-position' property from a given image node. |
| 930 | * |
| 931 | * @fit: pointer to the FIT image header |
| 932 | * @noffset: component image node offset |
| 933 | * @data_position: holds the data-position property |
| 934 | * |
| 935 | * returns: |
| 936 | * 0, on success |
| 937 | * -ENOENT if the property could not be found |
| 938 | */ |
| 939 | int fit_image_get_data_position(const void *fit, int noffset, |
| 940 | int *data_position) |
| 941 | { |
| 942 | const fdt32_t *val; |
| 943 | |
| 944 | val = fdt_getprop(fit, noffset, FIT_DATA_POSITION_PROP, NULL); |
| 945 | if (!val) |
| 946 | return -ENOENT; |
| 947 | |
| 948 | *data_position = fdt32_to_cpu(*val); |
| 949 | |
| 950 | return 0; |
| 951 | } |
| 952 | |
| 953 | /** |
tomas.melin@vaisala.com | db1b79b | 2017-01-13 13:20:14 +0200 | [diff] [blame] | 954 | * Get 'data-size' property from a given image node. |
| 955 | * |
| 956 | * @fit: pointer to the FIT image header |
| 957 | * @noffset: component image node offset |
| 958 | * @data_size: holds the data-size property |
| 959 | * |
| 960 | * returns: |
| 961 | * 0, on success |
| 962 | * -ENOENT if the property could not be found |
| 963 | */ |
| 964 | int fit_image_get_data_size(const void *fit, int noffset, int *data_size) |
| 965 | { |
| 966 | const fdt32_t *val; |
| 967 | |
| 968 | val = fdt_getprop(fit, noffset, FIT_DATA_SIZE_PROP, NULL); |
| 969 | if (!val) |
| 970 | return -ENOENT; |
| 971 | |
| 972 | *data_size = fdt32_to_cpu(*val); |
| 973 | |
| 974 | return 0; |
| 975 | } |
| 976 | |
| 977 | /** |
Philippe Reynes | 4df3578 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 978 | * Get 'data-size-unciphered' property from a given image node. |
| 979 | * |
| 980 | * @fit: pointer to the FIT image header |
| 981 | * @noffset: component image node offset |
| 982 | * @data_size: holds the data-size property |
| 983 | * |
| 984 | * returns: |
| 985 | * 0, on success |
| 986 | * -ENOENT if the property could not be found |
| 987 | */ |
| 988 | int fit_image_get_data_size_unciphered(const void *fit, int noffset, |
| 989 | size_t *data_size) |
| 990 | { |
| 991 | const fdt32_t *val; |
| 992 | |
| 993 | val = fdt_getprop(fit, noffset, "data-size-unciphered", NULL); |
| 994 | if (!val) |
| 995 | return -ENOENT; |
| 996 | |
| 997 | *data_size = (size_t)fdt32_to_cpu(*val); |
| 998 | |
| 999 | return 0; |
| 1000 | } |
| 1001 | |
| 1002 | /** |
Kelvin Cheung | c3c8638 | 2018-05-19 18:21:37 +0800 | [diff] [blame] | 1003 | * fit_image_get_data_and_size - get data and its size including |
| 1004 | * both embedded and external data |
| 1005 | * @fit: pointer to the FIT format image header |
| 1006 | * @noffset: component image node offset |
| 1007 | * @data: double pointer to void, will hold data property's data address |
| 1008 | * @size: pointer to size_t, will hold data property's data size |
| 1009 | * |
| 1010 | * fit_image_get_data_and_size() finds data and its size including |
| 1011 | * both embedded and external data. If the property is found |
| 1012 | * its data start address and size are returned to the caller. |
| 1013 | * |
| 1014 | * returns: |
| 1015 | * 0, on success |
| 1016 | * otherwise, on failure |
| 1017 | */ |
| 1018 | int fit_image_get_data_and_size(const void *fit, int noffset, |
| 1019 | const void **data, size_t *size) |
| 1020 | { |
| 1021 | bool external_data = false; |
| 1022 | int offset; |
| 1023 | int len; |
| 1024 | int ret; |
| 1025 | |
| 1026 | if (!fit_image_get_data_position(fit, noffset, &offset)) { |
| 1027 | external_data = true; |
| 1028 | } else if (!fit_image_get_data_offset(fit, noffset, &offset)) { |
| 1029 | external_data = true; |
| 1030 | /* |
| 1031 | * For FIT with external data, figure out where |
| 1032 | * the external images start. This is the base |
| 1033 | * for the data-offset properties in each image. |
| 1034 | */ |
| 1035 | offset += ((fdt_totalsize(fit) + 3) & ~3); |
| 1036 | } |
| 1037 | |
| 1038 | if (external_data) { |
| 1039 | debug("External Data\n"); |
| 1040 | ret = fit_image_get_data_size(fit, noffset, &len); |
Heinrich Schuchardt | 1837804 | 2020-03-11 21:51:08 +0100 | [diff] [blame] | 1041 | if (!ret) { |
| 1042 | *data = fit + offset; |
| 1043 | *size = len; |
| 1044 | } |
Kelvin Cheung | c3c8638 | 2018-05-19 18:21:37 +0800 | [diff] [blame] | 1045 | } else { |
| 1046 | ret = fit_image_get_data(fit, noffset, data, size); |
| 1047 | } |
| 1048 | |
| 1049 | return ret; |
| 1050 | } |
| 1051 | |
| 1052 | /** |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1053 | * fit_image_hash_get_algo - get hash algorithm name |
| 1054 | * @fit: pointer to the FIT format image header |
| 1055 | * @noffset: hash node offset |
| 1056 | * @algo: double pointer to char, will hold pointer to the algorithm name |
| 1057 | * |
| 1058 | * fit_image_hash_get_algo() finds hash algorithm property in a given hash node. |
| 1059 | * If the property is found its data start address is returned to the caller. |
| 1060 | * |
| 1061 | * returns: |
| 1062 | * 0, on success |
| 1063 | * -1, on failure |
| 1064 | */ |
| 1065 | int fit_image_hash_get_algo(const void *fit, int noffset, char **algo) |
| 1066 | { |
| 1067 | int len; |
| 1068 | |
| 1069 | *algo = (char *)fdt_getprop(fit, noffset, FIT_ALGO_PROP, &len); |
| 1070 | if (*algo == NULL) { |
| 1071 | fit_get_debug(fit, noffset, FIT_ALGO_PROP, len); |
| 1072 | return -1; |
| 1073 | } |
| 1074 | |
| 1075 | return 0; |
| 1076 | } |
| 1077 | |
| 1078 | /** |
| 1079 | * fit_image_hash_get_value - get hash value and length |
| 1080 | * @fit: pointer to the FIT format image header |
| 1081 | * @noffset: hash node offset |
| 1082 | * @value: double pointer to uint8_t, will hold address of a hash value data |
| 1083 | * @value_len: pointer to an int, will hold hash data length |
| 1084 | * |
| 1085 | * fit_image_hash_get_value() finds hash value property in a given hash node. |
| 1086 | * If the property is found its data start address and size are returned to |
| 1087 | * the caller. |
| 1088 | * |
| 1089 | * returns: |
| 1090 | * 0, on success |
| 1091 | * -1, on failure |
| 1092 | */ |
| 1093 | int fit_image_hash_get_value(const void *fit, int noffset, uint8_t **value, |
| 1094 | int *value_len) |
| 1095 | { |
| 1096 | int len; |
| 1097 | |
| 1098 | *value = (uint8_t *)fdt_getprop(fit, noffset, FIT_VALUE_PROP, &len); |
| 1099 | if (*value == NULL) { |
| 1100 | fit_get_debug(fit, noffset, FIT_VALUE_PROP, len); |
| 1101 | *value_len = 0; |
| 1102 | return -1; |
| 1103 | } |
| 1104 | |
| 1105 | *value_len = len; |
| 1106 | return 0; |
| 1107 | } |
| 1108 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1109 | /** |
| 1110 | * fit_image_hash_get_ignore - get hash ignore flag |
| 1111 | * @fit: pointer to the FIT format image header |
| 1112 | * @noffset: hash node offset |
| 1113 | * @ignore: pointer to an int, will hold hash ignore flag |
| 1114 | * |
| 1115 | * fit_image_hash_get_ignore() finds hash ignore property in a given hash node. |
| 1116 | * If the property is found and non-zero, the hash algorithm is not verified by |
| 1117 | * u-boot automatically. |
| 1118 | * |
| 1119 | * returns: |
| 1120 | * 0, on ignore not found |
| 1121 | * value, on ignore found |
| 1122 | */ |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1123 | static int fit_image_hash_get_ignore(const void *fit, int noffset, int *ignore) |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1124 | { |
| 1125 | int len; |
| 1126 | int *value; |
| 1127 | |
| 1128 | value = (int *)fdt_getprop(fit, noffset, FIT_IGNORE_PROP, &len); |
| 1129 | if (value == NULL || len != sizeof(int)) |
| 1130 | *ignore = 0; |
| 1131 | else |
| 1132 | *ignore = *value; |
| 1133 | |
| 1134 | return 0; |
| 1135 | } |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1136 | |
Philippe Reynes | 7298e42 | 2019-12-18 18:25:41 +0100 | [diff] [blame] | 1137 | /** |
| 1138 | * fit_image_cipher_get_algo - get cipher algorithm name |
| 1139 | * @fit: pointer to the FIT format image header |
| 1140 | * @noffset: cipher node offset |
| 1141 | * @algo: double pointer to char, will hold pointer to the algorithm name |
| 1142 | * |
| 1143 | * fit_image_cipher_get_algo() finds cipher algorithm property in a given |
| 1144 | * cipher node. If the property is found its data start address is returned |
| 1145 | * to the caller. |
| 1146 | * |
| 1147 | * returns: |
| 1148 | * 0, on success |
| 1149 | * -1, on failure |
| 1150 | */ |
| 1151 | int fit_image_cipher_get_algo(const void *fit, int noffset, char **algo) |
| 1152 | { |
| 1153 | int len; |
| 1154 | |
| 1155 | *algo = (char *)fdt_getprop(fit, noffset, FIT_ALGO_PROP, &len); |
| 1156 | if (!*algo) { |
| 1157 | fit_get_debug(fit, noffset, FIT_ALGO_PROP, len); |
| 1158 | return -1; |
| 1159 | } |
| 1160 | |
| 1161 | return 0; |
| 1162 | } |
| 1163 | |
Simon Glass | 7a80de4 | 2016-02-24 09:14:42 -0700 | [diff] [blame] | 1164 | ulong fit_get_end(const void *fit) |
| 1165 | { |
| 1166 | return map_to_sysmem((void *)(fit + fdt_totalsize(fit))); |
| 1167 | } |
| 1168 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1169 | /** |
| 1170 | * fit_set_timestamp - set node timestamp property |
| 1171 | * @fit: pointer to the FIT format image header |
| 1172 | * @noffset: node offset |
| 1173 | * @timestamp: timestamp value to be set |
| 1174 | * |
| 1175 | * fit_set_timestamp() attempts to set timestamp property in the requested |
| 1176 | * node and returns operation status to the caller. |
| 1177 | * |
| 1178 | * returns: |
| 1179 | * 0, on success |
Simon Glass | 4f427a4 | 2014-06-02 22:04:51 -0600 | [diff] [blame] | 1180 | * -ENOSPC if no space in device tree, -1 for other error |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1181 | */ |
| 1182 | int fit_set_timestamp(void *fit, int noffset, time_t timestamp) |
| 1183 | { |
| 1184 | uint32_t t; |
| 1185 | int ret; |
| 1186 | |
| 1187 | t = cpu_to_uimage(timestamp); |
| 1188 | ret = fdt_setprop(fit, noffset, FIT_TIMESTAMP_PROP, &t, |
| 1189 | sizeof(uint32_t)); |
| 1190 | if (ret) { |
Simon Glass | 8df81e1 | 2016-05-01 13:55:37 -0600 | [diff] [blame] | 1191 | debug("Can't set '%s' property for '%s' node (%s)\n", |
| 1192 | FIT_TIMESTAMP_PROP, fit_get_name(fit, noffset, NULL), |
| 1193 | fdt_strerror(ret)); |
Simon Glass | 4f427a4 | 2014-06-02 22:04:51 -0600 | [diff] [blame] | 1194 | return ret == -FDT_ERR_NOSPACE ? -ENOSPC : -1; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1195 | } |
| 1196 | |
| 1197 | return 0; |
| 1198 | } |
| 1199 | |
| 1200 | /** |
| 1201 | * calculate_hash - calculate and return hash for provided input data |
| 1202 | * @data: pointer to the input data |
| 1203 | * @data_len: data length |
| 1204 | * @algo: requested hash algorithm |
| 1205 | * @value: pointer to the char, will hold hash value data (caller must |
| 1206 | * allocate enough free space) |
| 1207 | * value_len: length of the calculated hash |
| 1208 | * |
| 1209 | * calculate_hash() computes input data hash according to the requested |
| 1210 | * algorithm. |
| 1211 | * Resulting hash value is placed in caller provided 'value' buffer, length |
| 1212 | * of the calculated hash is returned via value_len pointer argument. |
| 1213 | * |
| 1214 | * returns: |
| 1215 | * 0, on success |
| 1216 | * -1, when algo is unsupported |
| 1217 | */ |
Alexandru Gagniuc | 92055e1 | 2021-09-02 19:54:21 -0500 | [diff] [blame] | 1218 | int calculate_hash(const void *data, int data_len, const char *name, |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1219 | uint8_t *value, int *value_len) |
| 1220 | { |
Chia-Wei Wang | ca47955 | 2021-07-30 09:08:05 +0800 | [diff] [blame] | 1221 | #if !defined(USE_HOSTCC) && defined(CONFIG_DM_HASH) |
| 1222 | int rc; |
| 1223 | enum HASH_ALGO hash_algo; |
| 1224 | struct udevice *dev; |
| 1225 | |
| 1226 | rc = uclass_get_device(UCLASS_HASH, 0, &dev); |
| 1227 | if (rc) { |
| 1228 | debug("failed to get hash device, rc=%d\n", rc); |
| 1229 | return -1; |
| 1230 | } |
| 1231 | |
| 1232 | hash_algo = hash_algo_lookup_by_name(algo); |
| 1233 | if (hash_algo == HASH_ALGO_INVALID) { |
| 1234 | debug("Unsupported hash algorithm\n"); |
| 1235 | return -1; |
| 1236 | }; |
| 1237 | |
| 1238 | rc = hash_digest_wd(dev, hash_algo, data, data_len, value, CHUNKSZ); |
| 1239 | if (rc) { |
| 1240 | debug("failed to get hash value, rc=%d\n", rc); |
| 1241 | return -1; |
| 1242 | } |
| 1243 | |
| 1244 | *value_len = hash_algo_digest_size(hash_algo); |
| 1245 | #else |
Alexandru Gagniuc | 92055e1 | 2021-09-02 19:54:21 -0500 | [diff] [blame] | 1246 | struct hash_algo *algo; |
| 1247 | int ret; |
| 1248 | |
| 1249 | ret = hash_lookup_algo(name, &algo); |
| 1250 | if (ret < 0) { |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1251 | debug("Unsupported hash alogrithm\n"); |
| 1252 | return -1; |
| 1253 | } |
Alexandru Gagniuc | 92055e1 | 2021-09-02 19:54:21 -0500 | [diff] [blame] | 1254 | |
| 1255 | algo->hash_func_ws(data, data_len, value, algo->chunk_size); |
| 1256 | *value_len = algo->digest_size; |
Chia-Wei Wang | ca47955 | 2021-07-30 09:08:05 +0800 | [diff] [blame] | 1257 | #endif |
Alexandru Gagniuc | 92055e1 | 2021-09-02 19:54:21 -0500 | [diff] [blame] | 1258 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1259 | return 0; |
| 1260 | } |
| 1261 | |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1262 | static int fit_image_check_hash(const void *fit, int noffset, const void *data, |
| 1263 | size_t size, char **err_msgp) |
| 1264 | { |
| 1265 | uint8_t value[FIT_MAX_HASH_LEN]; |
| 1266 | int value_len; |
| 1267 | char *algo; |
| 1268 | uint8_t *fit_value; |
| 1269 | int fit_value_len; |
| 1270 | int ignore; |
| 1271 | |
| 1272 | *err_msgp = NULL; |
| 1273 | |
| 1274 | if (fit_image_hash_get_algo(fit, noffset, &algo)) { |
Simon Glass | e754da2 | 2013-05-07 06:11:59 +0000 | [diff] [blame] | 1275 | *err_msgp = "Can't get hash algo property"; |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1276 | return -1; |
| 1277 | } |
| 1278 | printf("%s", algo); |
| 1279 | |
| 1280 | if (IMAGE_ENABLE_IGNORE) { |
| 1281 | fit_image_hash_get_ignore(fit, noffset, &ignore); |
| 1282 | if (ignore) { |
| 1283 | printf("-skipped "); |
| 1284 | return 0; |
| 1285 | } |
| 1286 | } |
| 1287 | |
| 1288 | if (fit_image_hash_get_value(fit, noffset, &fit_value, |
| 1289 | &fit_value_len)) { |
Simon Glass | e754da2 | 2013-05-07 06:11:59 +0000 | [diff] [blame] | 1290 | *err_msgp = "Can't get hash value property"; |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1291 | return -1; |
| 1292 | } |
| 1293 | |
| 1294 | if (calculate_hash(data, size, algo, value, &value_len)) { |
Simon Glass | e754da2 | 2013-05-07 06:11:59 +0000 | [diff] [blame] | 1295 | *err_msgp = "Unsupported hash algorithm"; |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1296 | return -1; |
| 1297 | } |
| 1298 | |
| 1299 | if (value_len != fit_value_len) { |
Simon Glass | e754da2 | 2013-05-07 06:11:59 +0000 | [diff] [blame] | 1300 | *err_msgp = "Bad hash value len"; |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1301 | return -1; |
| 1302 | } else if (memcmp(value, fit_value, value_len) != 0) { |
Simon Glass | e754da2 | 2013-05-07 06:11:59 +0000 | [diff] [blame] | 1303 | *err_msgp = "Bad hash value"; |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1304 | return -1; |
| 1305 | } |
| 1306 | |
| 1307 | return 0; |
| 1308 | } |
| 1309 | |
Jun Nie | 5c643db | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1310 | int fit_image_verify_with_data(const void *fit, int image_noffset, |
| 1311 | const void *data, size_t size) |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1312 | { |
Simon Glass | 56518e7 | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1313 | int noffset = 0; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1314 | char *err_msg = ""; |
Simon Glass | 56518e7 | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1315 | int verify_all = 1; |
| 1316 | int ret; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1317 | |
Simon Glass | 56518e7 | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1318 | /* Verify all required signatures */ |
AKASHI Takahiro | b983cc2 | 2020-02-21 15:12:55 +0900 | [diff] [blame] | 1319 | if (FIT_IMAGE_ENABLE_VERIFY && |
Simon Glass | 56518e7 | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1320 | fit_image_verify_required_sigs(fit, image_noffset, data, size, |
| 1321 | gd_fdt_blob(), &verify_all)) { |
| 1322 | err_msg = "Unable to verify required signature"; |
| 1323 | goto error; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
| 1326 | /* Process all hash subnodes of the component image node */ |
Simon Glass | df87e6b | 2016-10-02 17:59:29 -0600 | [diff] [blame] | 1327 | fdt_for_each_subnode(noffset, fit, image_noffset) { |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1328 | const char *name = fit_get_name(fit, noffset, NULL); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1329 | |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1330 | /* |
| 1331 | * Check subnode name, must be equal to "hash". |
| 1332 | * Multiple hash nodes require unique unit node |
Andre Przywara | b2267e8 | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 1333 | * names, e.g. hash-1, hash-2, etc. |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1334 | */ |
| 1335 | if (!strncmp(name, FIT_HASH_NODENAME, |
| 1336 | strlen(FIT_HASH_NODENAME))) { |
| 1337 | if (fit_image_check_hash(fit, noffset, data, size, |
| 1338 | &err_msg)) |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1339 | goto error; |
Simon Glass | ab9efc6 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 1340 | puts("+ "); |
AKASHI Takahiro | b983cc2 | 2020-02-21 15:12:55 +0900 | [diff] [blame] | 1341 | } else if (FIT_IMAGE_ENABLE_VERIFY && verify_all && |
Simon Glass | 56518e7 | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1342 | !strncmp(name, FIT_SIG_NODENAME, |
| 1343 | strlen(FIT_SIG_NODENAME))) { |
| 1344 | ret = fit_image_check_sig(fit, noffset, data, |
| 1345 | size, -1, &err_msg); |
Simon Glass | 2e33e76 | 2016-02-24 09:14:43 -0700 | [diff] [blame] | 1346 | |
| 1347 | /* |
| 1348 | * Show an indication on failure, but do not return |
| 1349 | * an error. Only keys marked 'required' can cause |
| 1350 | * an image validation failure. See the call to |
| 1351 | * fit_image_verify_required_sigs() above. |
| 1352 | */ |
| 1353 | if (ret) |
Simon Glass | 56518e7 | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1354 | puts("- "); |
| 1355 | else |
| 1356 | puts("+ "); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1357 | } |
| 1358 | } |
| 1359 | |
| 1360 | if (noffset == -FDT_ERR_TRUNCATED || noffset == -FDT_ERR_BADSTRUCTURE) { |
Simon Glass | e754da2 | 2013-05-07 06:11:59 +0000 | [diff] [blame] | 1361 | err_msg = "Corrupted or truncated tree"; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1362 | goto error; |
| 1363 | } |
| 1364 | |
| 1365 | return 1; |
| 1366 | |
| 1367 | error: |
Simon Glass | e754da2 | 2013-05-07 06:11:59 +0000 | [diff] [blame] | 1368 | printf(" error!\n%s for '%s' hash node in '%s' image node\n", |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1369 | err_msg, fit_get_name(fit, noffset, NULL), |
| 1370 | fit_get_name(fit, image_noffset, NULL)); |
| 1371 | return 0; |
| 1372 | } |
| 1373 | |
| 1374 | /** |
Jun Nie | 5c643db | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1375 | * fit_image_verify - verify data integrity |
| 1376 | * @fit: pointer to the FIT format image header |
| 1377 | * @image_noffset: component image node offset |
| 1378 | * |
| 1379 | * fit_image_verify() goes over component image hash nodes, |
| 1380 | * re-calculates each data hash and compares with the value stored in hash |
| 1381 | * node. |
| 1382 | * |
| 1383 | * returns: |
| 1384 | * 1, if all hashes are valid |
| 1385 | * 0, otherwise (or on error) |
| 1386 | */ |
| 1387 | int fit_image_verify(const void *fit, int image_noffset) |
| 1388 | { |
Simon Glass | 79af75f | 2021-02-15 17:08:06 -0700 | [diff] [blame] | 1389 | const char *name = fit_get_name(fit, image_noffset, NULL); |
Jun Nie | 5c643db | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1390 | const void *data; |
| 1391 | size_t size; |
Jun Nie | 5c643db | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1392 | char *err_msg = ""; |
| 1393 | |
Simon Glass | 1ac9c4c | 2021-07-05 16:32:56 -0600 | [diff] [blame] | 1394 | if (IS_ENABLED(CONFIG_FIT_SIGNATURE) && strchr(name, '@')) { |
Simon Glass | 79af75f | 2021-02-15 17:08:06 -0700 | [diff] [blame] | 1395 | /* |
| 1396 | * We don't support this since libfdt considers names with the |
| 1397 | * name root but different @ suffix to be equal |
| 1398 | */ |
| 1399 | err_msg = "Node name contains @"; |
| 1400 | goto err; |
| 1401 | } |
Jun Nie | 5c643db | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1402 | /* Get image data and data length */ |
Kelvin Cheung | c3c8638 | 2018-05-19 18:21:37 +0800 | [diff] [blame] | 1403 | if (fit_image_get_data_and_size(fit, image_noffset, &data, &size)) { |
Jun Nie | 5c643db | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1404 | err_msg = "Can't get image data/size"; |
Simon Glass | 79af75f | 2021-02-15 17:08:06 -0700 | [diff] [blame] | 1405 | goto err; |
Jun Nie | 5c643db | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1406 | } |
| 1407 | |
| 1408 | return fit_image_verify_with_data(fit, image_noffset, data, size); |
Simon Glass | 79af75f | 2021-02-15 17:08:06 -0700 | [diff] [blame] | 1409 | |
| 1410 | err: |
| 1411 | printf("error!\n%s in '%s' image node\n", err_msg, |
| 1412 | fit_get_name(fit, image_noffset, NULL)); |
| 1413 | return 0; |
Jun Nie | 5c643db | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1414 | } |
| 1415 | |
| 1416 | /** |
Andreas Dannenberg | e17adbb | 2016-06-15 17:00:19 -0500 | [diff] [blame] | 1417 | * fit_all_image_verify - verify data integrity for all images |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1418 | * @fit: pointer to the FIT format image header |
| 1419 | * |
Simon Glass | b8da836 | 2013-05-07 06:11:57 +0000 | [diff] [blame] | 1420 | * fit_all_image_verify() goes over all images in the FIT and |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1421 | * for every images checks if all it's hashes are valid. |
| 1422 | * |
| 1423 | * returns: |
| 1424 | * 1, if all hashes of all images are valid |
| 1425 | * 0, otherwise (or on error) |
| 1426 | */ |
Simon Glass | b8da836 | 2013-05-07 06:11:57 +0000 | [diff] [blame] | 1427 | int fit_all_image_verify(const void *fit) |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1428 | { |
| 1429 | int images_noffset; |
| 1430 | int noffset; |
| 1431 | int ndepth; |
| 1432 | int count; |
| 1433 | |
| 1434 | /* Find images parent node offset */ |
| 1435 | images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); |
| 1436 | if (images_noffset < 0) { |
| 1437 | printf("Can't find images parent node '%s' (%s)\n", |
| 1438 | FIT_IMAGES_PATH, fdt_strerror(images_noffset)); |
| 1439 | return 0; |
| 1440 | } |
| 1441 | |
| 1442 | /* Process all image subnodes, check hashes for each */ |
| 1443 | printf("## Checking hash(es) for FIT Image at %08lx ...\n", |
| 1444 | (ulong)fit); |
| 1445 | for (ndepth = 0, count = 0, |
| 1446 | noffset = fdt_next_node(fit, images_noffset, &ndepth); |
| 1447 | (noffset >= 0) && (ndepth > 0); |
| 1448 | noffset = fdt_next_node(fit, noffset, &ndepth)) { |
| 1449 | if (ndepth == 1) { |
| 1450 | /* |
| 1451 | * Direct child node of the images parent node, |
| 1452 | * i.e. component image node. |
| 1453 | */ |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1454 | printf(" Hash(es) for Image %u (%s): ", count, |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1455 | fit_get_name(fit, noffset, NULL)); |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1456 | count++; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1457 | |
Simon Glass | b8da836 | 2013-05-07 06:11:57 +0000 | [diff] [blame] | 1458 | if (!fit_image_verify(fit, noffset)) |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1459 | return 0; |
| 1460 | printf("\n"); |
| 1461 | } |
| 1462 | } |
| 1463 | return 1; |
| 1464 | } |
| 1465 | |
Philippe Reynes | 4df3578 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 1466 | static int fit_image_uncipher(const void *fit, int image_noffset, |
| 1467 | void **data, size_t *size) |
| 1468 | { |
| 1469 | int cipher_noffset, ret; |
| 1470 | void *dst; |
| 1471 | size_t size_dst; |
| 1472 | |
| 1473 | cipher_noffset = fdt_subnode_offset(fit, image_noffset, |
| 1474 | FIT_CIPHER_NODENAME); |
| 1475 | if (cipher_noffset < 0) |
| 1476 | return 0; |
| 1477 | |
| 1478 | ret = fit_image_decrypt_data(fit, image_noffset, cipher_noffset, |
| 1479 | *data, *size, &dst, &size_dst); |
| 1480 | if (ret) |
| 1481 | goto out; |
| 1482 | |
| 1483 | *data = dst; |
| 1484 | *size = size_dst; |
| 1485 | |
| 1486 | out: |
| 1487 | return ret; |
| 1488 | } |
Philippe Reynes | 4df3578 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 1489 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1490 | /** |
| 1491 | * fit_image_check_os - check whether image node is of a given os type |
| 1492 | * @fit: pointer to the FIT format image header |
| 1493 | * @noffset: component image node offset |
| 1494 | * @os: requested image os |
| 1495 | * |
| 1496 | * fit_image_check_os() reads image os property and compares its numeric |
| 1497 | * id with the requested os. Comparison result is returned to the caller. |
| 1498 | * |
| 1499 | * returns: |
| 1500 | * 1 if image is of given os type |
| 1501 | * 0 otherwise (or on error) |
| 1502 | */ |
| 1503 | int fit_image_check_os(const void *fit, int noffset, uint8_t os) |
| 1504 | { |
| 1505 | uint8_t image_os; |
| 1506 | |
| 1507 | if (fit_image_get_os(fit, noffset, &image_os)) |
| 1508 | return 0; |
| 1509 | return (os == image_os); |
| 1510 | } |
| 1511 | |
| 1512 | /** |
| 1513 | * fit_image_check_arch - check whether image node is of a given arch |
| 1514 | * @fit: pointer to the FIT format image header |
| 1515 | * @noffset: component image node offset |
| 1516 | * @arch: requested imagearch |
| 1517 | * |
| 1518 | * fit_image_check_arch() reads image arch property and compares its numeric |
| 1519 | * id with the requested arch. Comparison result is returned to the caller. |
| 1520 | * |
| 1521 | * returns: |
| 1522 | * 1 if image is of given arch |
| 1523 | * 0 otherwise (or on error) |
| 1524 | */ |
| 1525 | int fit_image_check_arch(const void *fit, int noffset, uint8_t arch) |
| 1526 | { |
| 1527 | uint8_t image_arch; |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 1528 | int aarch32_support = 0; |
| 1529 | |
Simon Glass | e2734d6 | 2021-03-15 18:11:12 +1300 | [diff] [blame] | 1530 | /* Let's assume that sandbox can load any architecture */ |
| 1531 | if (IS_ENABLED(CONFIG_SANDBOX)) |
| 1532 | return true; |
| 1533 | |
Sebastian Reichel | f14e6ee | 2021-01-04 20:48:03 +0100 | [diff] [blame] | 1534 | if (IS_ENABLED(CONFIG_ARM64_SUPPORT_AARCH32)) |
| 1535 | aarch32_support = 1; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1536 | |
| 1537 | if (fit_image_get_arch(fit, noffset, &image_arch)) |
| 1538 | return 0; |
Simon Glass | 5bda35c | 2014-10-10 08:21:57 -0600 | [diff] [blame] | 1539 | return (arch == image_arch) || |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 1540 | (arch == IH_ARCH_I386 && image_arch == IH_ARCH_X86_64) || |
| 1541 | (arch == IH_ARCH_ARM64 && image_arch == IH_ARCH_ARM && |
| 1542 | aarch32_support); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1543 | } |
| 1544 | |
| 1545 | /** |
| 1546 | * fit_image_check_type - check whether image node is of a given type |
| 1547 | * @fit: pointer to the FIT format image header |
| 1548 | * @noffset: component image node offset |
| 1549 | * @type: requested image type |
| 1550 | * |
| 1551 | * fit_image_check_type() reads image type property and compares its numeric |
| 1552 | * id with the requested type. Comparison result is returned to the caller. |
| 1553 | * |
| 1554 | * returns: |
| 1555 | * 1 if image is of given type |
| 1556 | * 0 otherwise (or on error) |
| 1557 | */ |
| 1558 | int fit_image_check_type(const void *fit, int noffset, uint8_t type) |
| 1559 | { |
| 1560 | uint8_t image_type; |
| 1561 | |
| 1562 | if (fit_image_get_type(fit, noffset, &image_type)) |
| 1563 | return 0; |
| 1564 | return (type == image_type); |
| 1565 | } |
| 1566 | |
| 1567 | /** |
| 1568 | * fit_image_check_comp - check whether image node uses given compression |
| 1569 | * @fit: pointer to the FIT format image header |
| 1570 | * @noffset: component image node offset |
| 1571 | * @comp: requested image compression type |
| 1572 | * |
| 1573 | * fit_image_check_comp() reads image compression property and compares its |
| 1574 | * numeric id with the requested compression type. Comparison result is |
| 1575 | * returned to the caller. |
| 1576 | * |
| 1577 | * returns: |
| 1578 | * 1 if image uses requested compression |
| 1579 | * 0 otherwise (or on error) |
| 1580 | */ |
| 1581 | int fit_image_check_comp(const void *fit, int noffset, uint8_t comp) |
| 1582 | { |
| 1583 | uint8_t image_comp; |
| 1584 | |
| 1585 | if (fit_image_get_comp(fit, noffset, &image_comp)) |
| 1586 | return 0; |
| 1587 | return (comp == image_comp); |
| 1588 | } |
| 1589 | |
Simon Glass | 3f04db8 | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 1590 | /** |
| 1591 | * fdt_check_no_at() - Check for nodes whose names contain '@' |
| 1592 | * |
| 1593 | * This checks the parent node and all subnodes recursively |
| 1594 | * |
| 1595 | * @fit: FIT to check |
| 1596 | * @parent: Parent node to check |
| 1597 | * @return 0 if OK, -EADDRNOTAVAIL is a node has a name containing '@' |
| 1598 | */ |
| 1599 | static int fdt_check_no_at(const void *fit, int parent) |
| 1600 | { |
| 1601 | const char *name; |
| 1602 | int node; |
| 1603 | int ret; |
| 1604 | |
| 1605 | name = fdt_get_name(fit, parent, NULL); |
| 1606 | if (!name || strchr(name, '@')) |
| 1607 | return -EADDRNOTAVAIL; |
| 1608 | |
| 1609 | fdt_for_each_subnode(node, fit, parent) { |
| 1610 | ret = fdt_check_no_at(fit, node); |
| 1611 | if (ret) |
| 1612 | return ret; |
| 1613 | } |
| 1614 | |
| 1615 | return 0; |
| 1616 | } |
| 1617 | |
Simon Glass | c581970 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1618 | int fit_check_format(const void *fit, ulong size) |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1619 | { |
Simon Glass | c581970 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1620 | int ret; |
| 1621 | |
Heinrich Schuchardt | ea1a9ec | 2021-01-13 02:09:12 +0100 | [diff] [blame] | 1622 | /* A FIT image must be a valid FDT */ |
Simon Glass | c581970 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1623 | ret = fdt_check_header(fit); |
| 1624 | if (ret) { |
| 1625 | log_debug("Wrong FIT format: not a flattened device tree (err=%d)\n", |
| 1626 | ret); |
| 1627 | return -ENOEXEC; |
Heinrich Schuchardt | ea1a9ec | 2021-01-13 02:09:12 +0100 | [diff] [blame] | 1628 | } |
| 1629 | |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 1630 | if (CONFIG_IS_ENABLED(FIT_FULL_CHECK)) { |
| 1631 | /* |
| 1632 | * If we are not given the size, make do wtih calculating it. |
| 1633 | * This is not as secure, so we should consider a flag to |
| 1634 | * control this. |
| 1635 | */ |
| 1636 | if (size == IMAGE_SIZE_INVAL) |
| 1637 | size = fdt_totalsize(fit); |
| 1638 | ret = fdt_check_full(fit, size); |
Simon Glass | 3f04db8 | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 1639 | if (ret) |
| 1640 | ret = -EINVAL; |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 1641 | |
Simon Glass | 3f04db8 | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 1642 | /* |
| 1643 | * U-Boot stopped using unit addressed in 2017. Since libfdt |
| 1644 | * can match nodes ignoring any unit address, signature |
| 1645 | * verification can see the wrong node if one is inserted with |
| 1646 | * the same name as a valid node but with a unit address |
| 1647 | * attached. Protect against this by disallowing unit addresses. |
| 1648 | */ |
| 1649 | if (!ret && CONFIG_IS_ENABLED(FIT_SIGNATURE)) { |
| 1650 | ret = fdt_check_no_at(fit, 0); |
| 1651 | |
| 1652 | if (ret) { |
| 1653 | log_debug("FIT check error %d\n", ret); |
| 1654 | return ret; |
| 1655 | } |
| 1656 | } |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 1657 | if (ret) { |
| 1658 | log_debug("FIT check error %d\n", ret); |
Simon Glass | 3f04db8 | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 1659 | return ret; |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 1660 | } |
| 1661 | } |
| 1662 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1663 | /* mandatory / node 'description' property */ |
Simon Glass | c581970 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1664 | if (!fdt_getprop(fit, 0, FIT_DESC_PROP, NULL)) { |
| 1665 | log_debug("Wrong FIT format: no description\n"); |
| 1666 | return -ENOMSG; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1667 | } |
| 1668 | |
| 1669 | if (IMAGE_ENABLE_TIMESTAMP) { |
| 1670 | /* mandatory / node 'timestamp' property */ |
Simon Glass | c581970 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1671 | if (!fdt_getprop(fit, 0, FIT_TIMESTAMP_PROP, NULL)) { |
| 1672 | log_debug("Wrong FIT format: no timestamp\n"); |
Simon Glass | 29cbc4b | 2021-02-24 08:50:32 -0500 | [diff] [blame] | 1673 | return -EBADMSG; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1674 | } |
| 1675 | } |
| 1676 | |
| 1677 | /* mandatory subimages parent '/images' node */ |
| 1678 | if (fdt_path_offset(fit, FIT_IMAGES_PATH) < 0) { |
Simon Glass | c581970 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1679 | log_debug("Wrong FIT format: no images parent node\n"); |
| 1680 | return -ENOENT; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1681 | } |
| 1682 | |
Simon Glass | c581970 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1683 | return 0; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1684 | } |
| 1685 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1686 | /** |
| 1687 | * fit_conf_find_compat |
| 1688 | * @fit: pointer to the FIT format image header |
| 1689 | * @fdt: pointer to the device tree to compare against |
| 1690 | * |
| 1691 | * fit_conf_find_compat() attempts to find the configuration whose fdt is the |
| 1692 | * most compatible with the passed in device tree. |
| 1693 | * |
| 1694 | * Example: |
| 1695 | * |
| 1696 | * / o image-tree |
| 1697 | * |-o images |
Andre Przywara | b2267e8 | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 1698 | * | |-o fdt-1 |
| 1699 | * | |-o fdt-2 |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1700 | * | |
| 1701 | * |-o configurations |
Andre Przywara | b2267e8 | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 1702 | * |-o config-1 |
| 1703 | * | |-fdt = fdt-1 |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1704 | * | |
Andre Przywara | b2267e8 | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 1705 | * |-o config-2 |
| 1706 | * |-fdt = fdt-2 |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1707 | * |
| 1708 | * / o U-Boot fdt |
| 1709 | * |-compatible = "foo,bar", "bim,bam" |
| 1710 | * |
| 1711 | * / o kernel fdt1 |
| 1712 | * |-compatible = "foo,bar", |
| 1713 | * |
| 1714 | * / o kernel fdt2 |
| 1715 | * |-compatible = "bim,bam", "baz,biz" |
| 1716 | * |
| 1717 | * Configuration 1 would be picked because the first string in U-Boot's |
| 1718 | * compatible list, "foo,bar", matches a compatible string in the root of fdt1. |
| 1719 | * "bim,bam" in fdt2 matches the second string which isn't as good as fdt1. |
| 1720 | * |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1721 | * As an optimization, the compatible property from the FDT's root node can be |
| 1722 | * copied into the configuration node in the FIT image. This is required to |
| 1723 | * match configurations with compressed FDTs. |
| 1724 | * |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1725 | * returns: |
| 1726 | * offset to the configuration to use if one was found |
| 1727 | * -1 otherwise |
| 1728 | */ |
| 1729 | int fit_conf_find_compat(const void *fit, const void *fdt) |
| 1730 | { |
| 1731 | int ndepth = 0; |
| 1732 | int noffset, confs_noffset, images_noffset; |
| 1733 | const void *fdt_compat; |
| 1734 | int fdt_compat_len; |
| 1735 | int best_match_offset = 0; |
| 1736 | int best_match_pos = 0; |
| 1737 | |
| 1738 | confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH); |
| 1739 | images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); |
| 1740 | if (confs_noffset < 0 || images_noffset < 0) { |
| 1741 | debug("Can't find configurations or images nodes.\n"); |
| 1742 | return -1; |
| 1743 | } |
| 1744 | |
| 1745 | fdt_compat = fdt_getprop(fdt, 0, "compatible", &fdt_compat_len); |
| 1746 | if (!fdt_compat) { |
| 1747 | debug("Fdt for comparison has no \"compatible\" property.\n"); |
| 1748 | return -1; |
| 1749 | } |
| 1750 | |
| 1751 | /* |
| 1752 | * Loop over the configurations in the FIT image. |
| 1753 | */ |
| 1754 | for (noffset = fdt_next_node(fit, confs_noffset, &ndepth); |
| 1755 | (noffset >= 0) && (ndepth > 0); |
| 1756 | noffset = fdt_next_node(fit, noffset, &ndepth)) { |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1757 | const void *fdt; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1758 | const char *kfdt_name; |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1759 | int kfdt_noffset, compat_noffset; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1760 | const char *cur_fdt_compat; |
| 1761 | int len; |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1762 | size_t sz; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1763 | int i; |
| 1764 | |
| 1765 | if (ndepth > 1) |
| 1766 | continue; |
| 1767 | |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1768 | /* If there's a compat property in the config node, use that. */ |
| 1769 | if (fdt_getprop(fit, noffset, "compatible", NULL)) { |
| 1770 | fdt = fit; /* search in FIT image */ |
| 1771 | compat_noffset = noffset; /* search under config node */ |
| 1772 | } else { /* Otherwise extract it from the kernel FDT. */ |
| 1773 | kfdt_name = fdt_getprop(fit, noffset, "fdt", &len); |
| 1774 | if (!kfdt_name) { |
| 1775 | debug("No fdt property found.\n"); |
| 1776 | continue; |
| 1777 | } |
| 1778 | kfdt_noffset = fdt_subnode_offset(fit, images_noffset, |
| 1779 | kfdt_name); |
| 1780 | if (kfdt_noffset < 0) { |
| 1781 | debug("No image node named \"%s\" found.\n", |
| 1782 | kfdt_name); |
| 1783 | continue; |
| 1784 | } |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 1785 | |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1786 | if (!fit_image_check_comp(fit, kfdt_noffset, |
| 1787 | IH_COMP_NONE)) { |
| 1788 | debug("Can't extract compat from \"%s\" " |
| 1789 | "(compressed)\n", kfdt_name); |
| 1790 | continue; |
| 1791 | } |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 1792 | |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1793 | /* search in this config's kernel FDT */ |
John Keeping | 650bf00 | 2021-06-25 17:58:04 +0100 | [diff] [blame] | 1794 | if (fit_image_get_data_and_size(fit, kfdt_noffset, |
| 1795 | &fdt, &sz)) { |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1796 | debug("Failed to get fdt \"%s\".\n", kfdt_name); |
| 1797 | continue; |
| 1798 | } |
| 1799 | |
| 1800 | compat_noffset = 0; /* search kFDT under root node */ |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1801 | } |
| 1802 | |
| 1803 | len = fdt_compat_len; |
| 1804 | cur_fdt_compat = fdt_compat; |
| 1805 | /* |
| 1806 | * Look for a match for each U-Boot compatibility string in |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1807 | * turn in the compat string property. |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1808 | */ |
| 1809 | for (i = 0; len > 0 && |
| 1810 | (!best_match_offset || best_match_pos > i); i++) { |
| 1811 | int cur_len = strlen(cur_fdt_compat) + 1; |
| 1812 | |
Julius Werner | 18cfa61 | 2019-07-24 19:37:56 -0700 | [diff] [blame] | 1813 | if (!fdt_node_check_compatible(fdt, compat_noffset, |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1814 | cur_fdt_compat)) { |
| 1815 | best_match_offset = noffset; |
| 1816 | best_match_pos = i; |
| 1817 | break; |
| 1818 | } |
| 1819 | len -= cur_len; |
| 1820 | cur_fdt_compat += cur_len; |
| 1821 | } |
| 1822 | } |
| 1823 | if (!best_match_offset) { |
| 1824 | debug("No match found.\n"); |
| 1825 | return -1; |
| 1826 | } |
| 1827 | |
| 1828 | return best_match_offset; |
| 1829 | } |
| 1830 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1831 | int fit_conf_get_node(const void *fit, const char *conf_uname) |
| 1832 | { |
| 1833 | int noffset, confs_noffset; |
| 1834 | int len; |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 1835 | const char *s; |
| 1836 | char *conf_uname_copy = NULL; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1837 | |
| 1838 | confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH); |
| 1839 | if (confs_noffset < 0) { |
| 1840 | debug("Can't find configurations parent node '%s' (%s)\n", |
| 1841 | FIT_CONFS_PATH, fdt_strerror(confs_noffset)); |
| 1842 | return confs_noffset; |
| 1843 | } |
| 1844 | |
| 1845 | if (conf_uname == NULL) { |
| 1846 | /* get configuration unit name from the default property */ |
| 1847 | debug("No configuration specified, trying default...\n"); |
Sebastian Reichel | d8ab0fe | 2021-01-04 20:48:04 +0100 | [diff] [blame] | 1848 | if (!host_build() && IS_ENABLED(CONFIG_MULTI_DTB_FIT)) { |
| 1849 | noffset = fit_find_config_node(fit); |
| 1850 | if (noffset < 0) |
| 1851 | return noffset; |
| 1852 | conf_uname = fdt_get_name(fit, noffset, NULL); |
| 1853 | } else { |
| 1854 | conf_uname = (char *)fdt_getprop(fit, confs_noffset, |
| 1855 | FIT_DEFAULT_PROP, &len); |
| 1856 | if (conf_uname == NULL) { |
| 1857 | fit_get_debug(fit, confs_noffset, FIT_DEFAULT_PROP, |
| 1858 | len); |
| 1859 | return len; |
| 1860 | } |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1861 | } |
| 1862 | debug("Found default configuration: '%s'\n", conf_uname); |
| 1863 | } |
| 1864 | |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 1865 | s = strchr(conf_uname, '#'); |
| 1866 | if (s) { |
| 1867 | len = s - conf_uname; |
| 1868 | conf_uname_copy = malloc(len + 1); |
| 1869 | if (!conf_uname_copy) { |
| 1870 | debug("Can't allocate uname copy: '%s'\n", |
| 1871 | conf_uname); |
| 1872 | return -ENOMEM; |
| 1873 | } |
| 1874 | memcpy(conf_uname_copy, conf_uname, len); |
| 1875 | conf_uname_copy[len] = '\0'; |
| 1876 | conf_uname = conf_uname_copy; |
| 1877 | } |
| 1878 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1879 | noffset = fdt_subnode_offset(fit, confs_noffset, conf_uname); |
| 1880 | if (noffset < 0) { |
| 1881 | debug("Can't get node offset for configuration unit name: '%s' (%s)\n", |
| 1882 | conf_uname, fdt_strerror(noffset)); |
| 1883 | } |
| 1884 | |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 1885 | if (conf_uname_copy) |
| 1886 | free(conf_uname_copy); |
| 1887 | |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1888 | return noffset; |
| 1889 | } |
| 1890 | |
Pantelis Antoniou | ad026ad | 2017-09-04 23:12:14 +0300 | [diff] [blame] | 1891 | int fit_conf_get_prop_node_count(const void *fit, int noffset, |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1892 | const char *prop_name) |
| 1893 | { |
Pantelis Antoniou | ad026ad | 2017-09-04 23:12:14 +0300 | [diff] [blame] | 1894 | return fdt_stringlist_count(fit, noffset, prop_name); |
| 1895 | } |
| 1896 | |
| 1897 | int fit_conf_get_prop_node_index(const void *fit, int noffset, |
| 1898 | const char *prop_name, int index) |
| 1899 | { |
| 1900 | const char *uname; |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1901 | int len; |
| 1902 | |
| 1903 | /* get kernel image unit name from configuration kernel property */ |
Pantelis Antoniou | ad026ad | 2017-09-04 23:12:14 +0300 | [diff] [blame] | 1904 | uname = fdt_stringlist_get(fit, noffset, prop_name, index, &len); |
Simon Glass | 53fbb7e | 2013-05-07 06:11:53 +0000 | [diff] [blame] | 1905 | if (uname == NULL) |
| 1906 | return len; |
| 1907 | |
| 1908 | return fit_image_get_node(fit, uname); |
| 1909 | } |
| 1910 | |
Pantelis Antoniou | ad026ad | 2017-09-04 23:12:14 +0300 | [diff] [blame] | 1911 | int fit_conf_get_prop_node(const void *fit, int noffset, |
| 1912 | const char *prop_name) |
| 1913 | { |
| 1914 | return fit_conf_get_prop_node_index(fit, noffset, prop_name, 0); |
| 1915 | } |
| 1916 | |
Jeroen Hofstee | 718feca | 2014-10-08 22:57:38 +0200 | [diff] [blame] | 1917 | static int fit_image_select(const void *fit, int rd_noffset, int verify) |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1918 | { |
| 1919 | fit_image_print(fit, rd_noffset, " "); |
| 1920 | |
| 1921 | if (verify) { |
| 1922 | puts(" Verifying Hash Integrity ... "); |
| 1923 | if (!fit_image_verify(fit, rd_noffset)) { |
| 1924 | puts("Bad Data Hash\n"); |
| 1925 | return -EACCES; |
| 1926 | } |
| 1927 | puts("OK\n"); |
| 1928 | } |
| 1929 | |
| 1930 | return 0; |
| 1931 | } |
| 1932 | |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1933 | int fit_get_node_from_config(bootm_headers_t *images, const char *prop_name, |
| 1934 | ulong addr) |
| 1935 | { |
| 1936 | int cfg_noffset; |
| 1937 | void *fit_hdr; |
| 1938 | int noffset; |
| 1939 | |
| 1940 | debug("* %s: using config '%s' from image at 0x%08lx\n", |
| 1941 | prop_name, images->fit_uname_cfg, addr); |
| 1942 | |
| 1943 | /* Check whether configuration has this property defined */ |
| 1944 | fit_hdr = map_sysmem(addr, 0); |
| 1945 | cfg_noffset = fit_conf_get_node(fit_hdr, images->fit_uname_cfg); |
| 1946 | if (cfg_noffset < 0) { |
| 1947 | debug("* %s: no such config\n", prop_name); |
Paul Burton | bd86ef1 | 2016-09-20 18:17:12 +0100 | [diff] [blame] | 1948 | return -EINVAL; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1949 | } |
| 1950 | |
| 1951 | noffset = fit_conf_get_prop_node(fit_hdr, cfg_noffset, prop_name); |
| 1952 | if (noffset < 0) { |
| 1953 | debug("* %s: no '%s' in config\n", prop_name, prop_name); |
Jonathan Gray | bac17b7 | 2016-09-03 08:30:14 +1000 | [diff] [blame] | 1954 | return -ENOENT; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1955 | } |
| 1956 | |
| 1957 | return noffset; |
| 1958 | } |
| 1959 | |
Simon Glass | 126cc86 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 1960 | /** |
| 1961 | * fit_get_image_type_property() - get property name for IH_TYPE_... |
| 1962 | * |
| 1963 | * @return the properly name where we expect to find the image in the |
| 1964 | * config node |
| 1965 | */ |
| 1966 | static const char *fit_get_image_type_property(int type) |
| 1967 | { |
| 1968 | /* |
| 1969 | * This is sort-of available in the uimage_type[] table in image.c |
Andreas Dannenberg | e17adbb | 2016-06-15 17:00:19 -0500 | [diff] [blame] | 1970 | * but we don't have access to the short name, and "fdt" is different |
Simon Glass | 126cc86 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 1971 | * anyway. So let's just keep it here. |
| 1972 | */ |
| 1973 | switch (type) { |
| 1974 | case IH_TYPE_FLATDT: |
| 1975 | return FIT_FDT_PROP; |
| 1976 | case IH_TYPE_KERNEL: |
| 1977 | return FIT_KERNEL_PROP; |
Alexandru Gagniuc | 47b6f7f | 2021-04-01 13:25:30 -0500 | [diff] [blame] | 1978 | case IH_TYPE_FIRMWARE: |
| 1979 | return FIT_FIRMWARE_PROP; |
Simon Glass | 126cc86 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 1980 | case IH_TYPE_RAMDISK: |
| 1981 | return FIT_RAMDISK_PROP; |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 1982 | case IH_TYPE_X86_SETUP: |
| 1983 | return FIT_SETUP_PROP; |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1984 | case IH_TYPE_LOADABLE: |
| 1985 | return FIT_LOADABLE_PROP; |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1986 | case IH_TYPE_FPGA: |
| 1987 | return FIT_FPGA_PROP; |
Marek Vasut | 0298d20 | 2018-05-13 00:22:54 +0200 | [diff] [blame] | 1988 | case IH_TYPE_STANDALONE: |
| 1989 | return FIT_STANDALONE_PROP; |
Simon Glass | 126cc86 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 1990 | } |
| 1991 | |
| 1992 | return "unknown"; |
| 1993 | } |
| 1994 | |
| 1995 | int fit_image_load(bootm_headers_t *images, ulong addr, |
Simon Glass | f320a4d | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 1996 | const char **fit_unamep, const char **fit_uname_configp, |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1997 | int arch, int image_type, int bootstage_id, |
| 1998 | enum fit_load_op load_op, ulong *datap, ulong *lenp) |
| 1999 | { |
| 2000 | int cfg_noffset, noffset; |
| 2001 | const char *fit_uname; |
Simon Glass | f320a4d | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 2002 | const char *fit_uname_config; |
Pantelis Antoniou | 7c3dc77 | 2017-09-04 23:12:15 +0300 | [diff] [blame] | 2003 | const char *fit_base_uname_config; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2004 | const void *fit; |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2005 | void *buf; |
| 2006 | void *loadbuf; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2007 | size_t size; |
| 2008 | int type_ok, os_ok; |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2009 | ulong load, load_end, data, len; |
| 2010 | uint8_t os, comp; |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 2011 | #ifndef USE_HOSTCC |
| 2012 | uint8_t os_arch; |
| 2013 | #endif |
Simon Glass | 126cc86 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 2014 | const char *prop_name; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2015 | int ret; |
| 2016 | |
| 2017 | fit = map_sysmem(addr, 0); |
| 2018 | fit_uname = fit_unamep ? *fit_unamep : NULL; |
Simon Glass | f320a4d | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 2019 | fit_uname_config = fit_uname_configp ? *fit_uname_configp : NULL; |
Pantelis Antoniou | 7c3dc77 | 2017-09-04 23:12:15 +0300 | [diff] [blame] | 2020 | fit_base_uname_config = NULL; |
Simon Glass | 126cc86 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 2021 | prop_name = fit_get_image_type_property(image_type); |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2022 | printf("## Loading %s from FIT Image at %08lx ...\n", prop_name, addr); |
| 2023 | |
| 2024 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_FORMAT); |
Simon Glass | 3f04db8 | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 2025 | ret = fit_check_format(fit, IMAGE_SIZE_INVAL); |
| 2026 | if (ret) { |
| 2027 | printf("Bad FIT %s image format! (err=%d)\n", prop_name, ret); |
| 2028 | if (CONFIG_IS_ENABLED(FIT_SIGNATURE) && ret == -EADDRNOTAVAIL) |
| 2029 | printf("Signature checking prevents use of unit addresses (@) in nodes\n"); |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2030 | bootstage_error(bootstage_id + BOOTSTAGE_SUB_FORMAT); |
Simon Glass | 3f04db8 | 2021-02-15 17:08:12 -0700 | [diff] [blame] | 2031 | return ret; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2032 | } |
| 2033 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_FORMAT_OK); |
| 2034 | if (fit_uname) { |
Masahiro Yamada | f150c83 | 2014-02-18 15:39:21 +0900 | [diff] [blame] | 2035 | /* get FIT component image node offset */ |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2036 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_UNIT_NAME); |
| 2037 | noffset = fit_image_get_node(fit, fit_uname); |
| 2038 | } else { |
| 2039 | /* |
| 2040 | * no image node unit name, try to get config |
| 2041 | * node first. If config unit node name is NULL |
| 2042 | * fit_conf_get_node() will try to find default config node |
| 2043 | */ |
| 2044 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_NO_UNIT_NAME); |
Simon Glass | 70c1c89 | 2021-07-14 17:05:36 -0500 | [diff] [blame] | 2045 | if (IS_ENABLED(CONFIG_FIT_BEST_MATCH) && !fit_uname_config) { |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2046 | cfg_noffset = fit_conf_find_compat(fit, gd_fdt_blob()); |
| 2047 | } else { |
| 2048 | cfg_noffset = fit_conf_get_node(fit, |
| 2049 | fit_uname_config); |
| 2050 | } |
| 2051 | if (cfg_noffset < 0) { |
| 2052 | puts("Could not find configuration node\n"); |
| 2053 | bootstage_error(bootstage_id + |
| 2054 | BOOTSTAGE_SUB_NO_UNIT_NAME); |
| 2055 | return -ENOENT; |
| 2056 | } |
Marek Vasut | 078e558 | 2018-05-31 17:59:07 +0200 | [diff] [blame] | 2057 | |
Pantelis Antoniou | 7c3dc77 | 2017-09-04 23:12:15 +0300 | [diff] [blame] | 2058 | fit_base_uname_config = fdt_get_name(fit, cfg_noffset, NULL); |
| 2059 | printf(" Using '%s' configuration\n", fit_base_uname_config); |
Marek Vasut | 078e558 | 2018-05-31 17:59:07 +0200 | [diff] [blame] | 2060 | /* Remember this config */ |
| 2061 | if (image_type == IH_TYPE_KERNEL) |
Pantelis Antoniou | 7c3dc77 | 2017-09-04 23:12:15 +0300 | [diff] [blame] | 2062 | images->fit_uname_cfg = fit_base_uname_config; |
Marek Vasut | 078e558 | 2018-05-31 17:59:07 +0200 | [diff] [blame] | 2063 | |
AKASHI Takahiro | b983cc2 | 2020-02-21 15:12:55 +0900 | [diff] [blame] | 2064 | if (FIT_IMAGE_ENABLE_VERIFY && images->verify) { |
Marek Vasut | 078e558 | 2018-05-31 17:59:07 +0200 | [diff] [blame] | 2065 | puts(" Verifying Hash Integrity ... "); |
| 2066 | if (fit_config_verify(fit, cfg_noffset)) { |
| 2067 | puts("Bad Data Hash\n"); |
| 2068 | bootstage_error(bootstage_id + |
| 2069 | BOOTSTAGE_SUB_HASH); |
| 2070 | return -EACCES; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2071 | } |
Marek Vasut | 078e558 | 2018-05-31 17:59:07 +0200 | [diff] [blame] | 2072 | puts("OK\n"); |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2073 | } |
| 2074 | |
Marek Vasut | 078e558 | 2018-05-31 17:59:07 +0200 | [diff] [blame] | 2075 | bootstage_mark(BOOTSTAGE_ID_FIT_CONFIG); |
| 2076 | |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2077 | noffset = fit_conf_get_prop_node(fit, cfg_noffset, |
| 2078 | prop_name); |
| 2079 | fit_uname = fit_get_name(fit, noffset, NULL); |
| 2080 | } |
| 2081 | if (noffset < 0) { |
Simon Glass | 382cf62 | 2020-03-18 11:43:56 -0600 | [diff] [blame] | 2082 | printf("Could not find subimage node type '%s'\n", prop_name); |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2083 | bootstage_error(bootstage_id + BOOTSTAGE_SUB_SUBNODE); |
| 2084 | return -ENOENT; |
| 2085 | } |
| 2086 | |
| 2087 | printf(" Trying '%s' %s subimage\n", fit_uname, prop_name); |
| 2088 | |
| 2089 | ret = fit_image_select(fit, noffset, images->verify); |
| 2090 | if (ret) { |
| 2091 | bootstage_error(bootstage_id + BOOTSTAGE_SUB_HASH); |
| 2092 | return ret; |
| 2093 | } |
| 2094 | |
| 2095 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_CHECK_ARCH); |
Sebastian Reichel | f14e6ee | 2021-01-04 20:48:03 +0100 | [diff] [blame] | 2096 | if (!host_build() && IS_ENABLED(CONFIG_SANDBOX)) { |
| 2097 | if (!fit_image_check_target_arch(fit, noffset)) { |
| 2098 | puts("Unsupported Architecture\n"); |
| 2099 | bootstage_error(bootstage_id + BOOTSTAGE_SUB_CHECK_ARCH); |
| 2100 | return -ENOEXEC; |
| 2101 | } |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2102 | } |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 2103 | |
| 2104 | #ifndef USE_HOSTCC |
| 2105 | fit_image_get_arch(fit, noffset, &os_arch); |
| 2106 | images->os.arch = os_arch; |
| 2107 | #endif |
| 2108 | |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2109 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_CHECK_ALL); |
| 2110 | type_ok = fit_image_check_type(fit, noffset, image_type) || |
mario.six@gdsys.cc | e8fb435 | 2016-07-20 08:32:50 +0200 | [diff] [blame] | 2111 | fit_image_check_type(fit, noffset, IH_TYPE_FIRMWARE) || |
Alexandru Gagniuc | 033ac4e | 2021-04-01 13:25:31 -0500 | [diff] [blame] | 2112 | fit_image_check_type(fit, noffset, IH_TYPE_TEE) || |
mario.six@gdsys.cc | e8fb435 | 2016-07-20 08:32:50 +0200 | [diff] [blame] | 2113 | (image_type == IH_TYPE_KERNEL && |
| 2114 | fit_image_check_type(fit, noffset, IH_TYPE_KERNEL_NOLOAD)); |
Marek Vasut | 3811723 | 2014-12-16 14:07:22 +0100 | [diff] [blame] | 2115 | |
Andreas Bießmann | 950fe26 | 2016-08-14 20:31:24 +0200 | [diff] [blame] | 2116 | os_ok = image_type == IH_TYPE_FLATDT || |
| 2117 | image_type == IH_TYPE_FPGA || |
Marek Vasut | 3811723 | 2014-12-16 14:07:22 +0100 | [diff] [blame] | 2118 | fit_image_check_os(fit, noffset, IH_OS_LINUX) || |
mario.six@gdsys.cc | e8fb435 | 2016-07-20 08:32:50 +0200 | [diff] [blame] | 2119 | fit_image_check_os(fit, noffset, IH_OS_U_BOOT) || |
Alexandru Gagniuc | 033ac4e | 2021-04-01 13:25:31 -0500 | [diff] [blame] | 2120 | fit_image_check_os(fit, noffset, IH_OS_TEE) || |
Cristian Ciocaltea | a031b03 | 2019-12-24 18:05:38 +0200 | [diff] [blame] | 2121 | fit_image_check_os(fit, noffset, IH_OS_OPENRTOS) || |
Lihua Zhao | 0df27d6 | 2020-03-18 07:32:07 -0700 | [diff] [blame] | 2122 | fit_image_check_os(fit, noffset, IH_OS_EFI) || |
| 2123 | fit_image_check_os(fit, noffset, IH_OS_VXWORKS); |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 2124 | |
| 2125 | /* |
| 2126 | * If either of the checks fail, we should report an error, but |
| 2127 | * if the image type is coming from the "loadables" field, we |
| 2128 | * don't care what it is |
| 2129 | */ |
| 2130 | if ((!type_ok || !os_ok) && image_type != IH_TYPE_LOADABLE) { |
Marek Vasut | 3811723 | 2014-12-16 14:07:22 +0100 | [diff] [blame] | 2131 | fit_image_get_os(fit, noffset, &os); |
| 2132 | printf("No %s %s %s Image\n", |
| 2133 | genimg_get_os_name(os), |
| 2134 | genimg_get_arch_name(arch), |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2135 | genimg_get_type_name(image_type)); |
| 2136 | bootstage_error(bootstage_id + BOOTSTAGE_SUB_CHECK_ALL); |
| 2137 | return -EIO; |
| 2138 | } |
| 2139 | |
| 2140 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_CHECK_ALL_OK); |
| 2141 | |
| 2142 | /* get image data address and length */ |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2143 | if (fit_image_get_data_and_size(fit, noffset, |
| 2144 | (const void **)&buf, &size)) { |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2145 | printf("Could not find %s subimage data!\n", prop_name); |
| 2146 | bootstage_error(bootstage_id + BOOTSTAGE_SUB_GET_DATA); |
Simon Glass | 2f99807 | 2013-06-16 07:46:49 -0700 | [diff] [blame] | 2147 | return -ENOENT; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2148 | } |
Andrew F. Davis | 44402fe | 2016-11-21 14:37:09 -0600 | [diff] [blame] | 2149 | |
Philippe Reynes | 4df3578 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 2150 | /* Decrypt data before uncompress/move */ |
Sebastian Reichel | f14e6ee | 2021-01-04 20:48:03 +0100 | [diff] [blame] | 2151 | if (IS_ENABLED(CONFIG_FIT_CIPHER) && IMAGE_ENABLE_DECRYPT) { |
Philippe Reynes | 4df3578 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 2152 | puts(" Decrypting Data ... "); |
| 2153 | if (fit_image_uncipher(fit, noffset, &buf, &size)) { |
| 2154 | puts("Error\n"); |
| 2155 | return -EACCES; |
| 2156 | } |
| 2157 | puts("OK\n"); |
| 2158 | } |
Philippe Reynes | 4df3578 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 2159 | |
Andrew F. Davis | 44402fe | 2016-11-21 14:37:09 -0600 | [diff] [blame] | 2160 | /* perform any post-processing on the image data */ |
Sebastian Reichel | f14e6ee | 2021-01-04 20:48:03 +0100 | [diff] [blame] | 2161 | if (!host_build() && IS_ENABLED(CONFIG_FIT_IMAGE_POST_PROCESS)) |
Lokesh Vutla | 481d394 | 2021-06-11 11:45:05 +0300 | [diff] [blame] | 2162 | board_fit_image_post_process(fit, noffset, &buf, &size); |
Andrew F. Davis | 44402fe | 2016-11-21 14:37:09 -0600 | [diff] [blame] | 2163 | |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2164 | len = (ulong)size; |
| 2165 | |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2166 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_GET_DATA_OK); |
| 2167 | |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2168 | data = map_to_sysmem(buf); |
| 2169 | load = data; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2170 | if (load_op == FIT_LOAD_IGNORED) { |
| 2171 | /* Don't load */ |
| 2172 | } else if (fit_image_get_load(fit, noffset, &load)) { |
| 2173 | if (load_op == FIT_LOAD_REQUIRED) { |
| 2174 | printf("Can't get %s subimage load address!\n", |
| 2175 | prop_name); |
| 2176 | bootstage_error(bootstage_id + BOOTSTAGE_SUB_LOAD); |
| 2177 | return -EBADF; |
| 2178 | } |
Simon Glass | fe20a81 | 2014-08-22 14:26:43 -0600 | [diff] [blame] | 2179 | } else if (load_op != FIT_LOAD_OPTIONAL_NON_ZERO || load) { |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2180 | ulong image_start, image_end; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2181 | |
| 2182 | /* |
| 2183 | * move image data to the load address, |
| 2184 | * make sure we don't overwrite initial image |
| 2185 | */ |
| 2186 | image_start = addr; |
| 2187 | image_end = addr + fit_get_size(fit); |
| 2188 | |
| 2189 | load_end = load + len; |
| 2190 | if (image_type != IH_TYPE_KERNEL && |
| 2191 | load < image_end && load_end > image_start) { |
| 2192 | printf("Error: %s overwritten\n", prop_name); |
| 2193 | return -EXDEV; |
| 2194 | } |
| 2195 | |
| 2196 | printf(" Loading %s from 0x%08lx to 0x%08lx\n", |
| 2197 | prop_name, data, load); |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2198 | } else { |
| 2199 | load = data; /* No load address specified */ |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2200 | } |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2201 | |
| 2202 | comp = IH_COMP_NONE; |
| 2203 | loadbuf = buf; |
| 2204 | /* Kernel images get decompressed later in bootm_load_os(). */ |
Julius Werner | bddd985 | 2019-08-02 15:52:28 -0700 | [diff] [blame] | 2205 | if (!fit_image_get_comp(fit, noffset, &comp) && |
| 2206 | comp != IH_COMP_NONE && |
| 2207 | !(image_type == IH_TYPE_KERNEL || |
| 2208 | image_type == IH_TYPE_KERNEL_NOLOAD || |
| 2209 | image_type == IH_TYPE_RAMDISK)) { |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2210 | ulong max_decomp_len = len * 20; |
| 2211 | if (load == data) { |
| 2212 | loadbuf = malloc(max_decomp_len); |
| 2213 | load = map_to_sysmem(loadbuf); |
| 2214 | } else { |
| 2215 | loadbuf = map_sysmem(load, max_decomp_len); |
| 2216 | } |
| 2217 | if (image_decomp(comp, load, data, image_type, |
| 2218 | loadbuf, buf, len, max_decomp_len, &load_end)) { |
| 2219 | printf("Error decompressing %s\n", prop_name); |
| 2220 | |
| 2221 | return -ENOEXEC; |
| 2222 | } |
| 2223 | len = load_end - load; |
| 2224 | } else if (load != data) { |
| 2225 | loadbuf = map_sysmem(load, len); |
| 2226 | memcpy(loadbuf, buf, len); |
| 2227 | } |
| 2228 | |
Julius Werner | bddd985 | 2019-08-02 15:52:28 -0700 | [diff] [blame] | 2229 | if (image_type == IH_TYPE_RAMDISK && comp != IH_COMP_NONE) |
| 2230 | puts("WARNING: 'compression' nodes for ramdisks are deprecated," |
| 2231 | " please fix your .its file!\n"); |
| 2232 | |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2233 | /* verify that image data is a proper FDT blob */ |
| 2234 | if (image_type == IH_TYPE_FLATDT && fdt_check_header(loadbuf)) { |
| 2235 | puts("Subimage data is not a FDT"); |
| 2236 | return -ENOEXEC; |
| 2237 | } |
| 2238 | |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2239 | bootstage_mark(bootstage_id + BOOTSTAGE_SUB_LOAD); |
| 2240 | |
Julius Werner | b1307f8 | 2019-07-24 19:37:55 -0700 | [diff] [blame] | 2241 | *datap = load; |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2242 | *lenp = len; |
| 2243 | if (fit_unamep) |
| 2244 | *fit_unamep = (char *)fit_uname; |
Simon Glass | f320a4d | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 2245 | if (fit_uname_configp) |
Pantelis Antoniou | 7c3dc77 | 2017-09-04 23:12:15 +0300 | [diff] [blame] | 2246 | *fit_uname_configp = (char *)(fit_uname_config ? : |
| 2247 | fit_base_uname_config); |
Simon Glass | 782cfbb | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 2248 | |
| 2249 | return noffset; |
| 2250 | } |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 2251 | |
| 2252 | int boot_get_setup_fit(bootm_headers_t *images, uint8_t arch, |
| 2253 | ulong *setup_start, ulong *setup_len) |
| 2254 | { |
| 2255 | int noffset; |
| 2256 | ulong addr; |
| 2257 | ulong len; |
| 2258 | int ret; |
| 2259 | |
| 2260 | addr = map_to_sysmem(images->fit_hdr_os); |
| 2261 | noffset = fit_get_node_from_config(images, FIT_SETUP_PROP, addr); |
| 2262 | if (noffset < 0) |
| 2263 | return noffset; |
| 2264 | |
| 2265 | ret = fit_image_load(images, addr, NULL, NULL, arch, |
| 2266 | IH_TYPE_X86_SETUP, BOOTSTAGE_ID_FIT_SETUP_START, |
| 2267 | FIT_LOAD_REQUIRED, setup_start, &len); |
| 2268 | |
| 2269 | return ret; |
| 2270 | } |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2271 | |
| 2272 | #ifndef USE_HOSTCC |
| 2273 | int boot_get_fdt_fit(bootm_headers_t *images, ulong addr, |
| 2274 | const char **fit_unamep, const char **fit_uname_configp, |
| 2275 | int arch, ulong *datap, ulong *lenp) |
| 2276 | { |
| 2277 | int fdt_noffset, cfg_noffset, count; |
| 2278 | const void *fit; |
| 2279 | const char *fit_uname = NULL; |
| 2280 | const char *fit_uname_config = NULL; |
| 2281 | char *fit_uname_config_copy = NULL; |
| 2282 | char *next_config = NULL; |
| 2283 | ulong load, len; |
| 2284 | #ifdef CONFIG_OF_LIBFDT_OVERLAY |
| 2285 | ulong image_start, image_end; |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 2286 | ulong ovload, ovlen, ovcopylen; |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2287 | const char *uconfig; |
| 2288 | const char *uname; |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 2289 | void *base, *ov, *ovcopy = NULL; |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2290 | int i, err, noffset, ov_noffset; |
| 2291 | #endif |
| 2292 | |
| 2293 | fit_uname = fit_unamep ? *fit_unamep : NULL; |
| 2294 | |
| 2295 | if (fit_uname_configp && *fit_uname_configp) { |
| 2296 | fit_uname_config_copy = strdup(*fit_uname_configp); |
| 2297 | if (!fit_uname_config_copy) |
| 2298 | return -ENOMEM; |
| 2299 | |
| 2300 | next_config = strchr(fit_uname_config_copy, '#'); |
| 2301 | if (next_config) |
| 2302 | *next_config++ = '\0'; |
| 2303 | if (next_config - 1 > fit_uname_config_copy) |
| 2304 | fit_uname_config = fit_uname_config_copy; |
| 2305 | } |
| 2306 | |
| 2307 | fdt_noffset = fit_image_load(images, |
| 2308 | addr, &fit_uname, &fit_uname_config, |
| 2309 | arch, IH_TYPE_FLATDT, |
| 2310 | BOOTSTAGE_ID_FIT_FDT_START, |
| 2311 | FIT_LOAD_OPTIONAL, &load, &len); |
| 2312 | |
| 2313 | if (fdt_noffset < 0) |
| 2314 | goto out; |
| 2315 | |
| 2316 | debug("fit_uname=%s, fit_uname_config=%s\n", |
| 2317 | fit_uname ? fit_uname : "<NULL>", |
| 2318 | fit_uname_config ? fit_uname_config : "<NULL>"); |
| 2319 | |
| 2320 | fit = map_sysmem(addr, 0); |
| 2321 | |
| 2322 | cfg_noffset = fit_conf_get_node(fit, fit_uname_config); |
| 2323 | |
| 2324 | /* single blob, or error just return as well */ |
| 2325 | count = fit_conf_get_prop_node_count(fit, cfg_noffset, FIT_FDT_PROP); |
| 2326 | if (count <= 1 && !next_config) |
| 2327 | goto out; |
| 2328 | |
| 2329 | /* we need to apply overlays */ |
| 2330 | |
| 2331 | #ifdef CONFIG_OF_LIBFDT_OVERLAY |
| 2332 | image_start = addr; |
| 2333 | image_end = addr + fit_get_size(fit); |
| 2334 | /* verify that relocation took place by load address not being in fit */ |
| 2335 | if (load >= image_start && load < image_end) { |
| 2336 | /* check is simplified; fit load checks for overlaps */ |
| 2337 | printf("Overlayed FDT requires relocation\n"); |
| 2338 | fdt_noffset = -EBADF; |
| 2339 | goto out; |
| 2340 | } |
| 2341 | |
| 2342 | base = map_sysmem(load, len); |
| 2343 | |
| 2344 | /* apply extra configs in FIT first, followed by args */ |
| 2345 | for (i = 1; ; i++) { |
| 2346 | if (i < count) { |
| 2347 | noffset = fit_conf_get_prop_node_index(fit, cfg_noffset, |
| 2348 | FIT_FDT_PROP, i); |
| 2349 | uname = fit_get_name(fit, noffset, NULL); |
| 2350 | uconfig = NULL; |
| 2351 | } else { |
| 2352 | if (!next_config) |
| 2353 | break; |
| 2354 | uconfig = next_config; |
| 2355 | next_config = strchr(next_config, '#'); |
| 2356 | if (next_config) |
| 2357 | *next_config++ = '\0'; |
| 2358 | uname = NULL; |
Peter Ujfalusi | 35c7527 | 2019-03-06 15:52:27 +0200 | [diff] [blame] | 2359 | |
| 2360 | /* |
| 2361 | * fit_image_load() would load the first FDT from the |
| 2362 | * extra config only when uconfig is specified. |
| 2363 | * Check if the extra config contains multiple FDTs and |
| 2364 | * if so, load them. |
| 2365 | */ |
| 2366 | cfg_noffset = fit_conf_get_node(fit, uconfig); |
| 2367 | |
| 2368 | i = 0; |
| 2369 | count = fit_conf_get_prop_node_count(fit, cfg_noffset, |
| 2370 | FIT_FDT_PROP); |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2371 | } |
| 2372 | |
| 2373 | debug("%d: using uname=%s uconfig=%s\n", i, uname, uconfig); |
| 2374 | |
| 2375 | ov_noffset = fit_image_load(images, |
| 2376 | addr, &uname, &uconfig, |
| 2377 | arch, IH_TYPE_FLATDT, |
| 2378 | BOOTSTAGE_ID_FIT_FDT_START, |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 2379 | FIT_LOAD_IGNORED, &ovload, &ovlen); |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2380 | if (ov_noffset < 0) { |
| 2381 | printf("load of %s failed\n", uname); |
| 2382 | continue; |
| 2383 | } |
| 2384 | debug("%s loaded at 0x%08lx len=0x%08lx\n", |
| 2385 | uname, ovload, ovlen); |
| 2386 | ov = map_sysmem(ovload, ovlen); |
| 2387 | |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 2388 | ovcopylen = ALIGN(fdt_totalsize(ov), SZ_4K); |
| 2389 | ovcopy = malloc(ovcopylen); |
| 2390 | if (!ovcopy) { |
| 2391 | printf("failed to duplicate DTO before application\n"); |
| 2392 | fdt_noffset = -ENOMEM; |
| 2393 | goto out; |
| 2394 | } |
| 2395 | |
| 2396 | err = fdt_open_into(ov, ovcopy, ovcopylen); |
| 2397 | if (err < 0) { |
| 2398 | printf("failed on fdt_open_into for DTO\n"); |
| 2399 | fdt_noffset = err; |
| 2400 | goto out; |
| 2401 | } |
| 2402 | |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2403 | base = map_sysmem(load, len + ovlen); |
| 2404 | err = fdt_open_into(base, base, len + ovlen); |
| 2405 | if (err < 0) { |
| 2406 | printf("failed on fdt_open_into\n"); |
| 2407 | fdt_noffset = err; |
| 2408 | goto out; |
| 2409 | } |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 2410 | |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2411 | /* the verbose method prints out messages on error */ |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 2412 | err = fdt_overlay_apply_verbose(base, ovcopy); |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2413 | if (err < 0) { |
| 2414 | fdt_noffset = err; |
| 2415 | goto out; |
| 2416 | } |
| 2417 | fdt_pack(base); |
| 2418 | len = fdt_totalsize(base); |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 2419 | |
| 2420 | free(ovcopy); |
| 2421 | ovcopy = NULL; |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2422 | } |
| 2423 | #else |
| 2424 | printf("config with overlays but CONFIG_OF_LIBFDT_OVERLAY not set\n"); |
| 2425 | fdt_noffset = -EBADF; |
| 2426 | #endif |
| 2427 | |
| 2428 | out: |
| 2429 | if (datap) |
| 2430 | *datap = load; |
| 2431 | if (lenp) |
| 2432 | *lenp = len; |
| 2433 | if (fit_unamep) |
| 2434 | *fit_unamep = fit_uname; |
| 2435 | if (fit_uname_configp) |
| 2436 | *fit_uname_configp = fit_uname_config; |
| 2437 | |
Marek Vasut | 4c531d9 | 2021-06-11 04:09:56 +0200 | [diff] [blame] | 2438 | #ifdef CONFIG_OF_LIBFDT_OVERLAY |
| 2439 | if (ovcopy) |
| 2440 | free(ovcopy); |
| 2441 | #endif |
Pantelis Antoniou | 169043d | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 2442 | if (fit_uname_config_copy) |
| 2443 | free(fit_uname_config_copy); |
| 2444 | return fdt_noffset; |
| 2445 | } |
| 2446 | #endif |