blob: 3cc556b727f5a01af255f733725abe45a2dd247e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass53fbb7e2013-05-07 06:11:53 +00002/*
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 Glass53fbb7e2013-05-07 06:11:53 +00009 */
10
Simon Glassc5819702021-02-15 17:08:09 -070011#define LOG_CATEGORY LOGC_BOOT
12
Simon Glass53fbb7e2013-05-07 06:11:53 +000013#ifdef USE_HOSTCC
14#include "mkimage.h"
Simon Glass53fbb7e2013-05-07 06:11:53 +000015#include <time.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060016#include <linux/libfdt.h>
Simon Glass3db71102019-11-14 12:57:16 -070017#include <u-boot/crc.h>
Simon Glass53fbb7e2013-05-07 06:11:53 +000018#else
Andreas Dannenbergeba3fbd2016-07-27 12:12:39 -050019#include <linux/compiler.h>
Marek Vasut4c531d92021-06-11 04:09:56 +020020#include <linux/sizes.h>
Simon Glass53fbb7e2013-05-07 06:11:53 +000021#include <common.h>
Simon Glass782cfbb2013-05-16 13:53:21 +000022#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060023#include <log.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050024#include <mapmem.h>
Simon Glass782cfbb2013-05-16 13:53:21 +000025#include <asm/io.h>
Pantelis Antoniou169043d2017-09-04 23:12:16 +030026#include <malloc.h>
Sean Andersonb5833482022-03-24 11:26:11 -040027#include <memalign.h>
Simon Glass401d1c42020-10-30 21:38:53 -060028#include <asm/global_data.h>
Chia-Wei Wangca479552021-07-30 09:08:05 +080029#ifdef CONFIG_DM_HASH
30#include <dm.h>
31#include <u-boot/hash.h>
32#endif
Simon Glass782cfbb2013-05-16 13:53:21 +000033DECLARE_GLOBAL_DATA_PTR;
Simon Glass53fbb7e2013-05-07 06:11:53 +000034#endif /* !USE_HOSTCC*/
35
Julius Wernerb1307f82019-07-24 19:37:55 -070036#include <bootm.h>
Andreas Dannenbergeba3fbd2016-07-27 12:12:39 -050037#include <image.h>
Simon Glass53fbb7e2013-05-07 06:11:53 +000038#include <bootstage.h>
Sebastian Reichelf14e6ee2021-01-04 20:48:03 +010039#include <linux/kconfig.h>
Simon Glass53fbb7e2013-05-07 06:11:53 +000040#include <u-boot/crc.h>
41#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020042#include <u-boot/sha1.h>
43#include <u-boot/sha256.h>
Reuben Dowled16b38f2020-04-16 17:36:52 +120044#include <u-boot/sha512.h>
Simon Glass53fbb7e2013-05-07 06:11:53 +000045
46/*****************************************************************************/
47/* New uImage format routines */
48/*****************************************************************************/
49#ifndef USE_HOSTCC
50static int fit_parse_spec(const char *spec, char sepc, ulong addr_curr,
51 ulong *addr, const char **name)
52{
53 const char *sep;
54
55 *addr = addr_curr;
56 *name = NULL;
57
58 sep = strchr(spec, sepc);
59 if (sep) {
60 if (sep - spec > 0)
Simon Glass7e5f4602021-07-24 09:03:29 -060061 *addr = hextoul(spec, NULL);
Simon Glass53fbb7e2013-05-07 06:11:53 +000062
63 *name = sep + 1;
64 return 1;
65 }
66
67 return 0;
68}
69
70/**
71 * fit_parse_conf - parse FIT configuration spec
72 * @spec: input string, containing configuration spec
73 * @add_curr: current image address (to be used as a possible default)
74 * @addr: pointer to a ulong variable, will hold FIT image address of a given
75 * configuration
76 * @conf_name double pointer to a char, will hold pointer to a configuration
77 * unit name
78 *
Masahiro Yamada069d5942013-09-18 09:36:38 +090079 * fit_parse_conf() expects configuration spec in the form of [<addr>]#<conf>,
Simon Glass53fbb7e2013-05-07 06:11:53 +000080 * where <addr> is a FIT image address that contains configuration
81 * with a <conf> unit name.
82 *
83 * Address part is optional, and if omitted default add_curr will
84 * be used instead.
85 *
86 * returns:
87 * 1 if spec is a valid configuration string,
88 * addr and conf_name are set accordingly
89 * 0 otherwise
90 */
91int fit_parse_conf(const char *spec, ulong addr_curr,
92 ulong *addr, const char **conf_name)
93{
94 return fit_parse_spec(spec, '#', addr_curr, addr, conf_name);
95}
96
97/**
98 * fit_parse_subimage - parse FIT subimage spec
99 * @spec: input string, containing subimage spec
100 * @add_curr: current image address (to be used as a possible default)
101 * @addr: pointer to a ulong variable, will hold FIT image address of a given
102 * subimage
103 * @image_name: double pointer to a char, will hold pointer to a subimage name
104 *
Masahiro Yamada069d5942013-09-18 09:36:38 +0900105 * fit_parse_subimage() expects subimage spec in the form of
Simon Glass53fbb7e2013-05-07 06:11:53 +0000106 * [<addr>]:<subimage>, where <addr> is a FIT image address that contains
107 * subimage with a <subimg> unit name.
108 *
109 * Address part is optional, and if omitted default add_curr will
110 * be used instead.
111 *
112 * returns:
113 * 1 if spec is a valid subimage string,
114 * addr and image_name are set accordingly
115 * 0 otherwise
116 */
117int fit_parse_subimage(const char *spec, ulong addr_curr,
118 ulong *addr, const char **image_name)
119{
120 return fit_parse_spec(spec, ':', addr_curr, addr, image_name);
121}
122#endif /* !USE_HOSTCC */
123
Joel Stanley93af80f2020-12-08 14:42:14 +1030124#ifdef USE_HOSTCC
125/* Host tools use these implementations for Cipher and Signature support */
126static void *host_blob;
127
128void image_set_host_blob(void *blob)
129{
130 host_blob = blob;
131}
132
133void *image_get_host_blob(void)
134{
135 return host_blob;
136}
137#endif /* USE_HOSTCC */
138
Simon Glass53fbb7e2013-05-07 06:11:53 +0000139static void fit_get_debug(const void *fit, int noffset,
140 char *prop_name, int err)
141{
142 debug("Can't get '%s' property from FIT 0x%08lx, node: offset %d, name %s (%s)\n",
143 prop_name, (ulong)fit, noffset, fit_get_name(fit, noffset, NULL),
144 fdt_strerror(err));
145}
146
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200147/**
148 * fit_get_subimage_count - get component (sub-image) count
149 * @fit: pointer to the FIT format image header
150 * @images_noffset: offset of images node
151 *
152 * returns:
153 * number of image components
154 */
155int fit_get_subimage_count(const void *fit, int images_noffset)
156{
157 int noffset;
158 int ndepth;
159 int count = 0;
160
161 /* Process its subnodes, print out component images details */
162 for (ndepth = 0, count = 0,
163 noffset = fdt_next_node(fit, images_noffset, &ndepth);
164 (noffset >= 0) && (ndepth > 0);
165 noffset = fdt_next_node(fit, noffset, &ndepth)) {
166 if (ndepth == 1) {
167 count++;
168 }
169 }
170
171 return count;
172}
173
Simon Glass53fbb7e2013-05-07 06:11:53 +0000174/**
Tom Rini16c4b162018-05-08 14:34:05 -0400175 * 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 */
189static 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;
Jan Kiszka4550ce92022-01-14 10:21:17 +0100195 const char *algo;
Philippe Reynes20031562018-11-14 13:51:00 +0100196 const char *padding;
Simon Glass72188f52020-03-18 11:44:06 -0600197 bool required;
Tom Rini16c4b162018-05-08 14:34:05 -0400198 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 Glass72188f52020-03-18 11:44:06 -0600208 keyname = fdt_getprop(fit, noffset, FIT_KEY_HINT, NULL);
209 required = fdt_getprop(fit, noffset, FIT_KEY_REQUIRED, NULL) != NULL;
Tom Rini16c4b162018-05-08 14:34:05 -0400210 if (keyname)
211 printf(":%s", keyname);
212 if (required)
213 printf(" (required)");
214 printf("\n");
215
Philippe Reynes20031562018-11-14 13:51:00 +0100216 padding = fdt_getprop(fit, noffset, "padding", NULL);
217 if (padding)
218 printf("%s %s padding: %s\n", p, type, padding);
219
Tom Rini16c4b162018-05-08 14:34:05 -0400220 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, &timestamp))
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 */
256static 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 */
287static 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 Glass53fbb7e2013-05-07 06:11:53 +0000359 * 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 Dannenberge17adbb2016-06-15 17:00:19 -0500364 * The routine prints out FIT image properties (root node level) followed by
Simon Glass53fbb7e2013-05-07 06:11:53 +0000365 * the details of each component image.
366 *
367 * returns:
368 * no returned results
369 */
370void 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 Glass78740bc2021-09-25 19:43:34 -0600383 if (!CONFIG_IS_ENABLED(FIT_PRINT))
384 return;
385
Simon Glass1fe7d932013-05-08 08:05:58 +0000386 /* Indent string is defined in header image.h */
387 p = IMAGE_INDENT_STRING;
Simon Glass53fbb7e2013-05-07 06:11:53 +0000388
389 /* Root node properties */
390 ret = fit_get_desc(fit, 0, &desc);
391 printf("%sFIT description: ", p);
392 if (ret)
393 printf("unavailable\n");
394 else
395 printf("%s\n", desc);
396
397 if (IMAGE_ENABLE_TIMESTAMP) {
398 ret = fit_get_timestamp(fit, 0, &timestamp);
399 printf("%sCreated: ", p);
400 if (ret)
401 printf("unavailable\n");
402 else
403 genimg_print_time(timestamp);
404 }
405
406 /* Find images parent node offset */
407 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
408 if (images_noffset < 0) {
409 printf("Can't find images parent node '%s' (%s)\n",
410 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
411 return;
412 }
413
414 /* Process its subnodes, print out component images details */
415 for (ndepth = 0, count = 0,
416 noffset = fdt_next_node(fit, images_noffset, &ndepth);
417 (noffset >= 0) && (ndepth > 0);
418 noffset = fdt_next_node(fit, noffset, &ndepth)) {
419 if (ndepth == 1) {
420 /*
421 * Direct child node of the images parent node,
422 * i.e. component image node.
423 */
424 printf("%s Image %u (%s)\n", p, count++,
425 fit_get_name(fit, noffset, NULL));
426
427 fit_image_print(fit, noffset, p);
428 }
429 }
430
431 /* Find configurations parent node offset */
432 confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
433 if (confs_noffset < 0) {
434 debug("Can't get configurations parent node '%s' (%s)\n",
435 FIT_CONFS_PATH, fdt_strerror(confs_noffset));
436 return;
437 }
438
439 /* get default configuration unit name from default property */
440 uname = (char *)fdt_getprop(fit, noffset, FIT_DEFAULT_PROP, NULL);
441 if (uname)
442 printf("%s Default Configuration: '%s'\n", p, uname);
443
444 /* Process its subnodes, print out configurations details */
445 for (ndepth = 0, count = 0,
446 noffset = fdt_next_node(fit, confs_noffset, &ndepth);
447 (noffset >= 0) && (ndepth > 0);
448 noffset = fdt_next_node(fit, noffset, &ndepth)) {
449 if (ndepth == 1) {
450 /*
451 * Direct child node of the configurations parent node,
452 * i.e. configuration node.
453 */
454 printf("%s Configuration %u (%s)\n", p, count++,
455 fit_get_name(fit, noffset, NULL));
456
457 fit_conf_print(fit, noffset, p);
458 }
459 }
460}
461
462/**
463 * fit_image_print - prints out the FIT component image details
464 * @fit: pointer to the FIT format image header
465 * @image_noffset: offset of the component image node
466 * @p: pointer to prefix string
467 *
Andreas Dannenberge17adbb2016-06-15 17:00:19 -0500468 * fit_image_print() lists all mandatory properties for the processed component
Simon Glass53fbb7e2013-05-07 06:11:53 +0000469 * image. If present, hash nodes are printed out as well. Load
470 * address for images of type firmware is also printed out. Since the load
471 * address is not mandatory for firmware images, it will be output as
472 * "unavailable" when not present.
473 *
474 * returns:
475 * no returned results
476 */
477void fit_image_print(const void *fit, int image_noffset, const char *p)
478{
479 char *desc;
Daniel Golle88de6c52022-08-27 04:17:28 +0100480 uint8_t type, arch, os, comp = IH_COMP_NONE;
Simon Glass53fbb7e2013-05-07 06:11:53 +0000481 size_t size;
482 ulong load, entry;
483 const void *data;
484 int noffset;
485 int ndepth;
486 int ret;
487
Simon Glass78740bc2021-09-25 19:43:34 -0600488 if (!CONFIG_IS_ENABLED(FIT_PRINT))
489 return;
490
Simon Glass53fbb7e2013-05-07 06:11:53 +0000491 /* Mandatory properties */
492 ret = fit_get_desc(fit, image_noffset, &desc);
493 printf("%s Description: ", p);
494 if (ret)
495 printf("unavailable\n");
496 else
497 printf("%s\n", desc);
498
Simon Glass1fd1e2f2013-07-16 20:10:01 -0700499 if (IMAGE_ENABLE_TIMESTAMP) {
500 time_t timestamp;
501
502 ret = fit_get_timestamp(fit, 0, &timestamp);
503 printf("%s Created: ", p);
504 if (ret)
505 printf("unavailable\n");
506 else
507 genimg_print_time(timestamp);
508 }
509
Simon Glass53fbb7e2013-05-07 06:11:53 +0000510 fit_image_get_type(fit, image_noffset, &type);
511 printf("%s Type: %s\n", p, genimg_get_type_name(type));
512
513 fit_image_get_comp(fit, image_noffset, &comp);
514 printf("%s Compression: %s\n", p, genimg_get_comp_name(comp));
515
Kelvin Cheungc3c86382018-05-19 18:21:37 +0800516 ret = fit_image_get_data_and_size(fit, image_noffset, &data, &size);
Simon Glass53fbb7e2013-05-07 06:11:53 +0000517
Simon Glassc9d6b5b2021-09-25 19:43:14 -0600518 if (!tools_build()) {
Sebastian Reichelf14e6ee2021-01-04 20:48:03 +0100519 printf("%s Data Start: ", p);
520 if (ret) {
521 printf("unavailable\n");
522 } else {
523 void *vdata = (void *)data;
Simon Glassc6ac13b2013-05-16 13:53:26 +0000524
Sebastian Reichelf14e6ee2021-01-04 20:48:03 +0100525 printf("0x%08lx\n", (ulong)map_to_sysmem(vdata));
526 }
Simon Glassc6ac13b2013-05-16 13:53:26 +0000527 }
Simon Glass53fbb7e2013-05-07 06:11:53 +0000528
529 printf("%s Data Size: ", p);
530 if (ret)
531 printf("unavailable\n");
532 else
533 genimg_print_size(size);
534
535 /* Remaining, type dependent properties */
536 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
537 (type == IH_TYPE_RAMDISK) || (type == IH_TYPE_FIRMWARE) ||
538 (type == IH_TYPE_FLATDT)) {
539 fit_image_get_arch(fit, image_noffset, &arch);
540 printf("%s Architecture: %s\n", p, genimg_get_arch_name(arch));
541 }
542
Michal Simek6faf4622018-03-26 16:31:27 +0200543 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_RAMDISK) ||
544 (type == IH_TYPE_FIRMWARE)) {
Simon Glass53fbb7e2013-05-07 06:11:53 +0000545 fit_image_get_os(fit, image_noffset, &os);
546 printf("%s OS: %s\n", p, genimg_get_os_name(os));
547 }
548
549 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
Michal Simek62afc602016-05-17 14:03:50 +0200550 (type == IH_TYPE_FIRMWARE) || (type == IH_TYPE_RAMDISK) ||
551 (type == IH_TYPE_FPGA)) {
Simon Glass53fbb7e2013-05-07 06:11:53 +0000552 ret = fit_image_get_load(fit, image_noffset, &load);
553 printf("%s Load Address: ", p);
554 if (ret)
555 printf("unavailable\n");
556 else
557 printf("0x%08lx\n", load);
558 }
559
Pantelis Antoniou169043d2017-09-04 23:12:16 +0300560 /* optional load address for FDT */
561 if (type == IH_TYPE_FLATDT && !fit_image_get_load(fit, image_noffset, &load))
562 printf("%s Load Address: 0x%08lx\n", p, load);
563
Simon Glass53fbb7e2013-05-07 06:11:53 +0000564 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
565 (type == IH_TYPE_RAMDISK)) {
York Sun60047652016-02-29 15:48:40 -0800566 ret = fit_image_get_entry(fit, image_noffset, &entry);
Simon Glass53fbb7e2013-05-07 06:11:53 +0000567 printf("%s Entry Point: ", p);
568 if (ret)
569 printf("unavailable\n");
570 else
571 printf("0x%08lx\n", entry);
572 }
573
574 /* Process all hash subnodes of the component image node */
575 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth);
576 (noffset >= 0) && (ndepth > 0);
577 noffset = fdt_next_node(fit, noffset, &ndepth)) {
578 if (ndepth == 1) {
579 /* Direct child node of the component image node */
Simon Glassd8b75362013-05-07 06:12:02 +0000580 fit_image_print_verification_data(fit, noffset, p);
Simon Glass53fbb7e2013-05-07 06:11:53 +0000581 }
582 }
583}
584
585/**
Simon Glass53fbb7e2013-05-07 06:11:53 +0000586 * fit_get_desc - get node description property
587 * @fit: pointer to the FIT format image header
588 * @noffset: node offset
Andreas Dannenberge17adbb2016-06-15 17:00:19 -0500589 * @desc: double pointer to the char, will hold pointer to the description
Simon Glass53fbb7e2013-05-07 06:11:53 +0000590 *
591 * fit_get_desc() reads description property from a given node, if
Andreas Dannenberge17adbb2016-06-15 17:00:19 -0500592 * description is found pointer to it is returned in third call argument.
Simon Glass53fbb7e2013-05-07 06:11:53 +0000593 *
594 * returns:
595 * 0, on success
596 * -1, on failure
597 */
598int fit_get_desc(const void *fit, int noffset, char **desc)
599{
600 int len;
601
602 *desc = (char *)fdt_getprop(fit, noffset, FIT_DESC_PROP, &len);
603 if (*desc == NULL) {
604 fit_get_debug(fit, noffset, FIT_DESC_PROP, len);
605 return -1;
606 }
607
608 return 0;
609}
610
611/**
612 * fit_get_timestamp - get node timestamp property
613 * @fit: pointer to the FIT format image header
614 * @noffset: node offset
615 * @timestamp: pointer to the time_t, will hold read timestamp
616 *
Andreas Dannenberge17adbb2016-06-15 17:00:19 -0500617 * fit_get_timestamp() reads timestamp property from given node, if timestamp
618 * is found and has a correct size its value is returned in third call
Simon Glass53fbb7e2013-05-07 06:11:53 +0000619 * argument.
620 *
621 * returns:
622 * 0, on success
623 * -1, on property read failure
624 * -2, on wrong timestamp size
625 */
626int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp)
627{
628 int len;
629 const void *data;
630
631 data = fdt_getprop(fit, noffset, FIT_TIMESTAMP_PROP, &len);
632 if (data == NULL) {
633 fit_get_debug(fit, noffset, FIT_TIMESTAMP_PROP, len);
634 return -1;
635 }
636 if (len != sizeof(uint32_t)) {
637 debug("FIT timestamp with incorrect size of (%u)\n", len);
638 return -2;
639 }
640
641 *timestamp = uimage_to_cpu(*((uint32_t *)data));
642 return 0;
643}
644
645/**
646 * fit_image_get_node - get node offset for component image of a given unit name
647 * @fit: pointer to the FIT format image header
648 * @image_uname: component image node unit name
649 *
Andreas Dannenberge17adbb2016-06-15 17:00:19 -0500650 * fit_image_get_node() finds a component image (within the '/images'
Simon Glass53fbb7e2013-05-07 06:11:53 +0000651 * node) of a provided unit name. If image is found its node offset is
652 * returned to the caller.
653 *
654 * returns:
655 * image node offset when found (>=0)
656 * negative number on failure (FDT_ERR_* code)
657 */
658int fit_image_get_node(const void *fit, const char *image_uname)
659{
660 int noffset, images_noffset;
661
662 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
663 if (images_noffset < 0) {
664 debug("Can't find images parent node '%s' (%s)\n",
665 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
666 return images_noffset;
667 }
668
669 noffset = fdt_subnode_offset(fit, images_noffset, image_uname);
670 if (noffset < 0) {
671 debug("Can't get node offset for image unit name: '%s' (%s)\n",
672 image_uname, fdt_strerror(noffset));
673 }
674
675 return noffset;
676}
677
678/**
679 * fit_image_get_os - get os id for a given component image node
680 * @fit: pointer to the FIT format image header
681 * @noffset: component image node offset
682 * @os: pointer to the uint8_t, will hold os numeric id
683 *
684 * fit_image_get_os() finds os property in a given component image node.
685 * If the property is found, its (string) value is translated to the numeric
686 * id which is returned to the caller.
687 *
688 * returns:
689 * 0, on success
690 * -1, on failure
691 */
692int fit_image_get_os(const void *fit, int noffset, uint8_t *os)
693{
694 int len;
695 const void *data;
696
697 /* Get OS name from property data */
698 data = fdt_getprop(fit, noffset, FIT_OS_PROP, &len);
699 if (data == NULL) {
700 fit_get_debug(fit, noffset, FIT_OS_PROP, len);
701 *os = -1;
702 return -1;
703 }
704
705 /* Translate OS name to id */
706 *os = genimg_get_os_id(data);
707 return 0;
708}
709
710/**
711 * fit_image_get_arch - get arch id for a given component image node
712 * @fit: pointer to the FIT format image header
713 * @noffset: component image node offset
714 * @arch: pointer to the uint8_t, will hold arch numeric id
715 *
716 * fit_image_get_arch() finds arch property in a given component image node.
717 * If the property is found, its (string) value is translated to the numeric
718 * id which is returned to the caller.
719 *
720 * returns:
721 * 0, on success
722 * -1, on failure
723 */
724int fit_image_get_arch(const void *fit, int noffset, uint8_t *arch)
725{
726 int len;
727 const void *data;
728
729 /* Get architecture name from property data */
730 data = fdt_getprop(fit, noffset, FIT_ARCH_PROP, &len);
731 if (data == NULL) {
732 fit_get_debug(fit, noffset, FIT_ARCH_PROP, len);
733 *arch = -1;
734 return -1;
735 }
736
737 /* Translate architecture name to id */
738 *arch = genimg_get_arch_id(data);
739 return 0;
740}
741
742/**
743 * fit_image_get_type - get type id for a given component image node
744 * @fit: pointer to the FIT format image header
745 * @noffset: component image node offset
746 * @type: pointer to the uint8_t, will hold type numeric id
747 *
748 * fit_image_get_type() finds type property in a given component image node.
749 * If the property is found, its (string) value is translated to the numeric
750 * id which is returned to the caller.
751 *
752 * returns:
753 * 0, on success
754 * -1, on failure
755 */
756int fit_image_get_type(const void *fit, int noffset, uint8_t *type)
757{
758 int len;
759 const void *data;
760
761 /* Get image type name from property data */
762 data = fdt_getprop(fit, noffset, FIT_TYPE_PROP, &len);
763 if (data == NULL) {
764 fit_get_debug(fit, noffset, FIT_TYPE_PROP, len);
765 *type = -1;
766 return -1;
767 }
768
769 /* Translate image type name to id */
770 *type = genimg_get_type_id(data);
771 return 0;
772}
773
774/**
775 * fit_image_get_comp - get comp id for a given component image node
776 * @fit: pointer to the FIT format image header
777 * @noffset: component image node offset
778 * @comp: pointer to the uint8_t, will hold comp numeric id
779 *
780 * fit_image_get_comp() finds comp property in a given component image node.
781 * If the property is found, its (string) value is translated to the numeric
782 * id which is returned to the caller.
783 *
784 * returns:
785 * 0, on success
786 * -1, on failure
787 */
788int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp)
789{
790 int len;
791 const void *data;
792
793 /* Get compression name from property data */
794 data = fdt_getprop(fit, noffset, FIT_COMP_PROP, &len);
795 if (data == NULL) {
796 fit_get_debug(fit, noffset, FIT_COMP_PROP, len);
Simon Glass53fbb7e2013-05-07 06:11:53 +0000797 return -1;
798 }
799
800 /* Translate compression name to id */
801 *comp = genimg_get_comp_id(data);
802 return 0;
803}
804
Simon Glassbbe285c2022-10-20 18:23:04 -0600805/**
806 * fit_image_get_phase() - get the phase for a configuration node
807 * @fit: pointer to the FIT format image header
808 * @offset: configuration-node offset
809 * @phasep: returns the phase
810 *
811 * Finds the phase property in a given configuration node. If the property is
812 * found, its (string) value is translated to the numeric id which is returned
813 * to the caller.
814 *
815 * Returns: 0 on success, -ENOENT if missing, -EINVAL for invalid value
816 */
817int fit_image_get_phase(const void *fit, int offset, enum image_phase_t *phasep)
818{
819 const void *data;
820 int len, ret;
821
822 /* Get phase name from property data */
823 data = fdt_getprop(fit, offset, FIT_PHASE_PROP, &len);
824 if (!data) {
825 fit_get_debug(fit, offset, FIT_PHASE_PROP, len);
826 *phasep = 0;
827 return -ENOENT;
828 }
829
830 /* Translate phase name to id */
831 ret = genimg_get_phase_id(data);
832 if (ret < 0)
833 return ret;
834 *phasep = ret;
835
836 return 0;
837}
838
York Sun60047652016-02-29 15:48:40 -0800839static int fit_image_get_address(const void *fit, int noffset, char *name,
840 ulong *load)
841{
York Sunc1913cb2016-02-29 15:48:41 -0800842 int len, cell_len;
843 const fdt32_t *cell;
844 uint64_t load64 = 0;
York Sun60047652016-02-29 15:48:40 -0800845
York Sunc1913cb2016-02-29 15:48:41 -0800846 cell = fdt_getprop(fit, noffset, name, &len);
847 if (cell == NULL) {
York Sun60047652016-02-29 15:48:40 -0800848 fit_get_debug(fit, noffset, name, len);
849 return -1;
850 }
851
York Sunc1913cb2016-02-29 15:48:41 -0800852 cell_len = len >> 2;
853 /* Use load64 to avoid compiling warning for 32-bit target */
854 while (cell_len--) {
855 load64 = (load64 << 32) | uimage_to_cpu(*cell);
856 cell++;
857 }
Michal Simek13d1ca82020-09-03 12:44:51 +0200858
859 if (len > sizeof(ulong) && (uint32_t)(load64 >> 32)) {
860 printf("Unsupported %s address size\n", name);
861 return -1;
862 }
863
York Sunc1913cb2016-02-29 15:48:41 -0800864 *load = (ulong)load64;
York Sun60047652016-02-29 15:48:40 -0800865
866 return 0;
867}
Simon Glass53fbb7e2013-05-07 06:11:53 +0000868/**
869 * fit_image_get_load() - get load addr property for given component image node
870 * @fit: pointer to the FIT format image header
871 * @noffset: component image node offset
872 * @load: pointer to the uint32_t, will hold load address
873 *
874 * fit_image_get_load() finds load address property in a given component
875 * image node. If the property is found, its value is returned to the caller.
876 *
877 * returns:
878 * 0, on success
879 * -1, on failure
880 */
881int fit_image_get_load(const void *fit, int noffset, ulong *load)
882{
York Sun60047652016-02-29 15:48:40 -0800883 return fit_image_get_address(fit, noffset, FIT_LOAD_PROP, load);
Simon Glass53fbb7e2013-05-07 06:11:53 +0000884}
885
886/**
887 * fit_image_get_entry() - get entry point address property
888 * @fit: pointer to the FIT format image header
889 * @noffset: component image node offset
890 * @entry: pointer to the uint32_t, will hold entry point address
891 *
892 * This gets the entry point address property for a given component image
893 * node.
894 *
895 * fit_image_get_entry() finds entry point address property in a given
896 * component image node. If the property is found, its value is returned
897 * to the caller.
898 *
899 * returns:
900 * 0, on success
901 * -1, on failure
902 */
903int fit_image_get_entry(const void *fit, int noffset, ulong *entry)
904{
York Sun60047652016-02-29 15:48:40 -0800905 return fit_image_get_address(fit, noffset, FIT_ENTRY_PROP, entry);
Simon Glass53fbb7e2013-05-07 06:11:53 +0000906}
907
908/**
909 * fit_image_get_data - get data property and its size for a given component image node
910 * @fit: pointer to the FIT format image header
911 * @noffset: component image node offset
912 * @data: double pointer to void, will hold data property's data address
913 * @size: pointer to size_t, will hold data property's data size
914 *
915 * fit_image_get_data() finds data property in a given component image node.
916 * If the property is found its data start address and size are returned to
917 * the caller.
918 *
919 * returns:
920 * 0, on success
921 * -1, on failure
922 */
923int fit_image_get_data(const void *fit, int noffset,
924 const void **data, size_t *size)
925{
926 int len;
927
928 *data = fdt_getprop(fit, noffset, FIT_DATA_PROP, &len);
929 if (*data == NULL) {
930 fit_get_debug(fit, noffset, FIT_DATA_PROP, len);
931 *size = 0;
932 return -1;
933 }
934
935 *size = len;
936 return 0;
937}
938
939/**
tomas.melin@vaisala.comdb1b79b2017-01-13 13:20:14 +0200940 * Get 'data-offset' property from a given image node.
941 *
942 * @fit: pointer to the FIT image header
943 * @noffset: component image node offset
944 * @data_offset: holds the data-offset property
945 *
946 * returns:
947 * 0, on success
948 * -ENOENT if the property could not be found
949 */
950int fit_image_get_data_offset(const void *fit, int noffset, int *data_offset)
951{
952 const fdt32_t *val;
953
954 val = fdt_getprop(fit, noffset, FIT_DATA_OFFSET_PROP, NULL);
955 if (!val)
956 return -ENOENT;
957
958 *data_offset = fdt32_to_cpu(*val);
959
960 return 0;
961}
962
963/**
Peng Fana1be94b2017-12-05 13:20:59 +0800964 * Get 'data-position' property from a given image node.
965 *
966 * @fit: pointer to the FIT image header
967 * @noffset: component image node offset
968 * @data_position: holds the data-position property
969 *
970 * returns:
971 * 0, on success
972 * -ENOENT if the property could not be found
973 */
974int fit_image_get_data_position(const void *fit, int noffset,
975 int *data_position)
976{
977 const fdt32_t *val;
978
979 val = fdt_getprop(fit, noffset, FIT_DATA_POSITION_PROP, NULL);
980 if (!val)
981 return -ENOENT;
982
983 *data_position = fdt32_to_cpu(*val);
984
985 return 0;
986}
987
988/**
tomas.melin@vaisala.comdb1b79b2017-01-13 13:20:14 +0200989 * Get 'data-size' property from a given image node.
990 *
991 * @fit: pointer to the FIT image header
992 * @noffset: component image node offset
993 * @data_size: holds the data-size property
994 *
995 * returns:
996 * 0, on success
997 * -ENOENT if the property could not be found
998 */
999int fit_image_get_data_size(const void *fit, int noffset, int *data_size)
1000{
1001 const fdt32_t *val;
1002
1003 val = fdt_getprop(fit, noffset, FIT_DATA_SIZE_PROP, NULL);
1004 if (!val)
1005 return -ENOENT;
1006
1007 *data_size = fdt32_to_cpu(*val);
1008
1009 return 0;
1010}
1011
1012/**
Philippe Reynes4df35782019-12-18 18:25:42 +01001013 * Get 'data-size-unciphered' property from a given image node.
1014 *
1015 * @fit: pointer to the FIT image header
1016 * @noffset: component image node offset
1017 * @data_size: holds the data-size property
1018 *
1019 * returns:
1020 * 0, on success
1021 * -ENOENT if the property could not be found
1022 */
1023int fit_image_get_data_size_unciphered(const void *fit, int noffset,
1024 size_t *data_size)
1025{
1026 const fdt32_t *val;
1027
1028 val = fdt_getprop(fit, noffset, "data-size-unciphered", NULL);
1029 if (!val)
1030 return -ENOENT;
1031
1032 *data_size = (size_t)fdt32_to_cpu(*val);
1033
1034 return 0;
1035}
1036
1037/**
Kelvin Cheungc3c86382018-05-19 18:21:37 +08001038 * fit_image_get_data_and_size - get data and its size including
1039 * both embedded and external data
1040 * @fit: pointer to the FIT format image header
1041 * @noffset: component image node offset
1042 * @data: double pointer to void, will hold data property's data address
1043 * @size: pointer to size_t, will hold data property's data size
1044 *
1045 * fit_image_get_data_and_size() finds data and its size including
1046 * both embedded and external data. If the property is found
1047 * its data start address and size are returned to the caller.
1048 *
1049 * returns:
1050 * 0, on success
1051 * otherwise, on failure
1052 */
1053int fit_image_get_data_and_size(const void *fit, int noffset,
1054 const void **data, size_t *size)
1055{
1056 bool external_data = false;
1057 int offset;
1058 int len;
1059 int ret;
1060
1061 if (!fit_image_get_data_position(fit, noffset, &offset)) {
1062 external_data = true;
1063 } else if (!fit_image_get_data_offset(fit, noffset, &offset)) {
1064 external_data = true;
1065 /*
1066 * For FIT with external data, figure out where
1067 * the external images start. This is the base
1068 * for the data-offset properties in each image.
1069 */
1070 offset += ((fdt_totalsize(fit) + 3) & ~3);
1071 }
1072
1073 if (external_data) {
1074 debug("External Data\n");
1075 ret = fit_image_get_data_size(fit, noffset, &len);
Heinrich Schuchardt18378042020-03-11 21:51:08 +01001076 if (!ret) {
1077 *data = fit + offset;
1078 *size = len;
1079 }
Kelvin Cheungc3c86382018-05-19 18:21:37 +08001080 } else {
1081 ret = fit_image_get_data(fit, noffset, data, size);
1082 }
1083
1084 return ret;
1085}
1086
1087/**
Simon Glass53fbb7e2013-05-07 06:11:53 +00001088 * fit_image_hash_get_algo - get hash algorithm name
1089 * @fit: pointer to the FIT format image header
1090 * @noffset: hash node offset
1091 * @algo: double pointer to char, will hold pointer to the algorithm name
1092 *
1093 * fit_image_hash_get_algo() finds hash algorithm property in a given hash node.
1094 * If the property is found its data start address is returned to the caller.
1095 *
1096 * returns:
1097 * 0, on success
1098 * -1, on failure
1099 */
Jan Kiszka4550ce92022-01-14 10:21:17 +01001100int fit_image_hash_get_algo(const void *fit, int noffset, const char **algo)
Simon Glass53fbb7e2013-05-07 06:11:53 +00001101{
1102 int len;
1103
Jan Kiszka4550ce92022-01-14 10:21:17 +01001104 *algo = (const char *)fdt_getprop(fit, noffset, FIT_ALGO_PROP, &len);
Simon Glass53fbb7e2013-05-07 06:11:53 +00001105 if (*algo == NULL) {
1106 fit_get_debug(fit, noffset, FIT_ALGO_PROP, len);
1107 return -1;
1108 }
1109
1110 return 0;
1111}
1112
1113/**
1114 * fit_image_hash_get_value - get hash value and length
1115 * @fit: pointer to the FIT format image header
1116 * @noffset: hash node offset
1117 * @value: double pointer to uint8_t, will hold address of a hash value data
1118 * @value_len: pointer to an int, will hold hash data length
1119 *
1120 * fit_image_hash_get_value() finds hash value property in a given hash node.
1121 * If the property is found its data start address and size are returned to
1122 * the caller.
1123 *
1124 * returns:
1125 * 0, on success
1126 * -1, on failure
1127 */
1128int fit_image_hash_get_value(const void *fit, int noffset, uint8_t **value,
1129 int *value_len)
1130{
1131 int len;
1132
1133 *value = (uint8_t *)fdt_getprop(fit, noffset, FIT_VALUE_PROP, &len);
1134 if (*value == NULL) {
1135 fit_get_debug(fit, noffset, FIT_VALUE_PROP, len);
1136 *value_len = 0;
1137 return -1;
1138 }
1139
1140 *value_len = len;
1141 return 0;
1142}
1143
Simon Glass53fbb7e2013-05-07 06:11:53 +00001144/**
1145 * fit_image_hash_get_ignore - get hash ignore flag
1146 * @fit: pointer to the FIT format image header
1147 * @noffset: hash node offset
1148 * @ignore: pointer to an int, will hold hash ignore flag
1149 *
1150 * fit_image_hash_get_ignore() finds hash ignore property in a given hash node.
1151 * If the property is found and non-zero, the hash algorithm is not verified by
1152 * u-boot automatically.
1153 *
1154 * returns:
1155 * 0, on ignore not found
1156 * value, on ignore found
1157 */
Simon Glassab9efc62013-05-07 06:11:58 +00001158static int fit_image_hash_get_ignore(const void *fit, int noffset, int *ignore)
Simon Glass53fbb7e2013-05-07 06:11:53 +00001159{
1160 int len;
1161 int *value;
1162
1163 value = (int *)fdt_getprop(fit, noffset, FIT_IGNORE_PROP, &len);
1164 if (value == NULL || len != sizeof(int))
1165 *ignore = 0;
1166 else
1167 *ignore = *value;
1168
1169 return 0;
1170}
Simon Glass53fbb7e2013-05-07 06:11:53 +00001171
Philippe Reynes7298e422019-12-18 18:25:41 +01001172/**
1173 * fit_image_cipher_get_algo - get cipher algorithm name
1174 * @fit: pointer to the FIT format image header
1175 * @noffset: cipher node offset
1176 * @algo: double pointer to char, will hold pointer to the algorithm name
1177 *
1178 * fit_image_cipher_get_algo() finds cipher algorithm property in a given
1179 * cipher node. If the property is found its data start address is returned
1180 * to the caller.
1181 *
1182 * returns:
1183 * 0, on success
1184 * -1, on failure
1185 */
1186int fit_image_cipher_get_algo(const void *fit, int noffset, char **algo)
1187{
1188 int len;
1189
1190 *algo = (char *)fdt_getprop(fit, noffset, FIT_ALGO_PROP, &len);
1191 if (!*algo) {
1192 fit_get_debug(fit, noffset, FIT_ALGO_PROP, len);
1193 return -1;
1194 }
1195
1196 return 0;
1197}
1198
Simon Glass7a80de42016-02-24 09:14:42 -07001199ulong fit_get_end(const void *fit)
1200{
1201 return map_to_sysmem((void *)(fit + fdt_totalsize(fit)));
1202}
1203
Simon Glass53fbb7e2013-05-07 06:11:53 +00001204/**
1205 * fit_set_timestamp - set node timestamp property
1206 * @fit: pointer to the FIT format image header
1207 * @noffset: node offset
1208 * @timestamp: timestamp value to be set
1209 *
1210 * fit_set_timestamp() attempts to set timestamp property in the requested
1211 * node and returns operation status to the caller.
1212 *
1213 * returns:
1214 * 0, on success
Simon Glass4f427a42014-06-02 22:04:51 -06001215 * -ENOSPC if no space in device tree, -1 for other error
Simon Glass53fbb7e2013-05-07 06:11:53 +00001216 */
1217int fit_set_timestamp(void *fit, int noffset, time_t timestamp)
1218{
1219 uint32_t t;
1220 int ret;
1221
1222 t = cpu_to_uimage(timestamp);
1223 ret = fdt_setprop(fit, noffset, FIT_TIMESTAMP_PROP, &t,
1224 sizeof(uint32_t));
1225 if (ret) {
Simon Glass8df81e12016-05-01 13:55:37 -06001226 debug("Can't set '%s' property for '%s' node (%s)\n",
1227 FIT_TIMESTAMP_PROP, fit_get_name(fit, noffset, NULL),
1228 fdt_strerror(ret));
Simon Glass4f427a42014-06-02 22:04:51 -06001229 return ret == -FDT_ERR_NOSPACE ? -ENOSPC : -1;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001230 }
1231
1232 return 0;
1233}
1234
1235/**
1236 * calculate_hash - calculate and return hash for provided input data
1237 * @data: pointer to the input data
1238 * @data_len: data length
Chia-Wei Wangdeea0892021-10-27 14:17:24 +08001239 * @name: requested hash algorithm name
Simon Glass53fbb7e2013-05-07 06:11:53 +00001240 * @value: pointer to the char, will hold hash value data (caller must
1241 * allocate enough free space)
1242 * value_len: length of the calculated hash
1243 *
1244 * calculate_hash() computes input data hash according to the requested
1245 * algorithm.
1246 * Resulting hash value is placed in caller provided 'value' buffer, length
1247 * of the calculated hash is returned via value_len pointer argument.
1248 *
1249 * returns:
1250 * 0, on success
1251 * -1, when algo is unsupported
1252 */
Alexandru Gagniuc92055e12021-09-02 19:54:21 -05001253int calculate_hash(const void *data, int data_len, const char *name,
Simon Glass53fbb7e2013-05-07 06:11:53 +00001254 uint8_t *value, int *value_len)
1255{
Chia-Wei Wangca479552021-07-30 09:08:05 +08001256#if !defined(USE_HOSTCC) && defined(CONFIG_DM_HASH)
1257 int rc;
1258 enum HASH_ALGO hash_algo;
1259 struct udevice *dev;
1260
1261 rc = uclass_get_device(UCLASS_HASH, 0, &dev);
1262 if (rc) {
1263 debug("failed to get hash device, rc=%d\n", rc);
1264 return -1;
1265 }
1266
Chia-Wei Wangdeea0892021-10-27 14:17:24 +08001267 hash_algo = hash_algo_lookup_by_name(name);
Chia-Wei Wangca479552021-07-30 09:08:05 +08001268 if (hash_algo == HASH_ALGO_INVALID) {
1269 debug("Unsupported hash algorithm\n");
1270 return -1;
1271 };
1272
1273 rc = hash_digest_wd(dev, hash_algo, data, data_len, value, CHUNKSZ);
1274 if (rc) {
1275 debug("failed to get hash value, rc=%d\n", rc);
1276 return -1;
1277 }
1278
1279 *value_len = hash_algo_digest_size(hash_algo);
1280#else
Alexandru Gagniuc92055e12021-09-02 19:54:21 -05001281 struct hash_algo *algo;
1282 int ret;
1283
1284 ret = hash_lookup_algo(name, &algo);
1285 if (ret < 0) {
Simon Glass53fbb7e2013-05-07 06:11:53 +00001286 debug("Unsupported hash alogrithm\n");
1287 return -1;
1288 }
Alexandru Gagniuc92055e12021-09-02 19:54:21 -05001289
1290 algo->hash_func_ws(data, data_len, value, algo->chunk_size);
1291 *value_len = algo->digest_size;
Chia-Wei Wangca479552021-07-30 09:08:05 +08001292#endif
Alexandru Gagniuc92055e12021-09-02 19:54:21 -05001293
Simon Glass53fbb7e2013-05-07 06:11:53 +00001294 return 0;
1295}
1296
Simon Glassab9efc62013-05-07 06:11:58 +00001297static int fit_image_check_hash(const void *fit, int noffset, const void *data,
1298 size_t size, char **err_msgp)
1299{
Joel Stanleyc5e24422022-06-20 16:31:17 +09301300 ALLOC_CACHE_ALIGN_BUFFER(uint8_t, value, FIT_MAX_HASH_LEN);
Simon Glassab9efc62013-05-07 06:11:58 +00001301 int value_len;
Jan Kiszka4550ce92022-01-14 10:21:17 +01001302 const char *algo;
Simon Glassab9efc62013-05-07 06:11:58 +00001303 uint8_t *fit_value;
1304 int fit_value_len;
1305 int ignore;
1306
1307 *err_msgp = NULL;
1308
1309 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
Simon Glasse754da22013-05-07 06:11:59 +00001310 *err_msgp = "Can't get hash algo property";
Simon Glassab9efc62013-05-07 06:11:58 +00001311 return -1;
1312 }
1313 printf("%s", algo);
1314
Simon Glassfa139402021-09-25 19:43:28 -06001315 if (!tools_build()) {
Simon Glassab9efc62013-05-07 06:11:58 +00001316 fit_image_hash_get_ignore(fit, noffset, &ignore);
1317 if (ignore) {
1318 printf("-skipped ");
1319 return 0;
1320 }
1321 }
1322
1323 if (fit_image_hash_get_value(fit, noffset, &fit_value,
1324 &fit_value_len)) {
Simon Glasse754da22013-05-07 06:11:59 +00001325 *err_msgp = "Can't get hash value property";
Simon Glassab9efc62013-05-07 06:11:58 +00001326 return -1;
1327 }
1328
1329 if (calculate_hash(data, size, algo, value, &value_len)) {
Simon Glasse754da22013-05-07 06:11:59 +00001330 *err_msgp = "Unsupported hash algorithm";
Simon Glassab9efc62013-05-07 06:11:58 +00001331 return -1;
1332 }
1333
1334 if (value_len != fit_value_len) {
Simon Glasse754da22013-05-07 06:11:59 +00001335 *err_msgp = "Bad hash value len";
Simon Glassab9efc62013-05-07 06:11:58 +00001336 return -1;
1337 } else if (memcmp(value, fit_value, value_len) != 0) {
Simon Glasse754da22013-05-07 06:11:59 +00001338 *err_msgp = "Bad hash value";
Simon Glassab9efc62013-05-07 06:11:58 +00001339 return -1;
1340 }
1341
1342 return 0;
1343}
1344
Jun Nie5c643db2018-02-27 16:55:58 +08001345int fit_image_verify_with_data(const void *fit, int image_noffset,
Simon Glass99f844b2021-11-12 12:28:10 -07001346 const void *key_blob, const void *data,
1347 size_t size)
Simon Glass53fbb7e2013-05-07 06:11:53 +00001348{
Simon Glass56518e72013-06-13 15:10:01 -07001349 int noffset = 0;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001350 char *err_msg = "";
Simon Glass56518e72013-06-13 15:10:01 -07001351 int verify_all = 1;
1352 int ret;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001353
Simon Glass56518e72013-06-13 15:10:01 -07001354 /* Verify all required signatures */
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001355 if (FIT_IMAGE_ENABLE_VERIFY &&
Simon Glass56518e72013-06-13 15:10:01 -07001356 fit_image_verify_required_sigs(fit, image_noffset, data, size,
Simon Glass99f844b2021-11-12 12:28:10 -07001357 key_blob, &verify_all)) {
Simon Glass56518e72013-06-13 15:10:01 -07001358 err_msg = "Unable to verify required signature";
1359 goto error;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001360 }
1361
1362 /* Process all hash subnodes of the component image node */
Simon Glassdf87e6b2016-10-02 17:59:29 -06001363 fdt_for_each_subnode(noffset, fit, image_noffset) {
Simon Glassab9efc62013-05-07 06:11:58 +00001364 const char *name = fit_get_name(fit, noffset, NULL);
Simon Glass53fbb7e2013-05-07 06:11:53 +00001365
Simon Glassab9efc62013-05-07 06:11:58 +00001366 /*
1367 * Check subnode name, must be equal to "hash".
1368 * Multiple hash nodes require unique unit node
Andre Przywarab2267e82017-12-04 02:05:10 +00001369 * names, e.g. hash-1, hash-2, etc.
Simon Glassab9efc62013-05-07 06:11:58 +00001370 */
1371 if (!strncmp(name, FIT_HASH_NODENAME,
1372 strlen(FIT_HASH_NODENAME))) {
1373 if (fit_image_check_hash(fit, noffset, data, size,
1374 &err_msg))
Simon Glass53fbb7e2013-05-07 06:11:53 +00001375 goto error;
Simon Glassab9efc62013-05-07 06:11:58 +00001376 puts("+ ");
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001377 } else if (FIT_IMAGE_ENABLE_VERIFY && verify_all &&
Simon Glass56518e72013-06-13 15:10:01 -07001378 !strncmp(name, FIT_SIG_NODENAME,
1379 strlen(FIT_SIG_NODENAME))) {
Simon Glass99f844b2021-11-12 12:28:10 -07001380 ret = fit_image_check_sig(fit, noffset, data, size,
1381 gd_fdt_blob(), -1, &err_msg);
Simon Glass2e33e762016-02-24 09:14:43 -07001382
1383 /*
1384 * Show an indication on failure, but do not return
1385 * an error. Only keys marked 'required' can cause
1386 * an image validation failure. See the call to
1387 * fit_image_verify_required_sigs() above.
1388 */
1389 if (ret)
Simon Glass56518e72013-06-13 15:10:01 -07001390 puts("- ");
1391 else
1392 puts("+ ");
Simon Glass53fbb7e2013-05-07 06:11:53 +00001393 }
1394 }
1395
1396 if (noffset == -FDT_ERR_TRUNCATED || noffset == -FDT_ERR_BADSTRUCTURE) {
Simon Glasse754da22013-05-07 06:11:59 +00001397 err_msg = "Corrupted or truncated tree";
Simon Glass53fbb7e2013-05-07 06:11:53 +00001398 goto error;
1399 }
1400
1401 return 1;
1402
1403error:
Simon Glasse754da22013-05-07 06:11:59 +00001404 printf(" error!\n%s for '%s' hash node in '%s' image node\n",
Simon Glass53fbb7e2013-05-07 06:11:53 +00001405 err_msg, fit_get_name(fit, noffset, NULL),
1406 fit_get_name(fit, image_noffset, NULL));
1407 return 0;
1408}
1409
1410/**
Jun Nie5c643db2018-02-27 16:55:58 +08001411 * fit_image_verify - verify data integrity
1412 * @fit: pointer to the FIT format image header
1413 * @image_noffset: component image node offset
1414 *
1415 * fit_image_verify() goes over component image hash nodes,
1416 * re-calculates each data hash and compares with the value stored in hash
1417 * node.
1418 *
1419 * returns:
1420 * 1, if all hashes are valid
1421 * 0, otherwise (or on error)
1422 */
1423int fit_image_verify(const void *fit, int image_noffset)
1424{
Simon Glass79af75f2021-02-15 17:08:06 -07001425 const char *name = fit_get_name(fit, image_noffset, NULL);
Jun Nie5c643db2018-02-27 16:55:58 +08001426 const void *data;
1427 size_t size;
Jun Nie5c643db2018-02-27 16:55:58 +08001428 char *err_msg = "";
1429
Simon Glass1ac9c4c2021-07-05 16:32:56 -06001430 if (IS_ENABLED(CONFIG_FIT_SIGNATURE) && strchr(name, '@')) {
Simon Glass79af75f2021-02-15 17:08:06 -07001431 /*
1432 * We don't support this since libfdt considers names with the
1433 * name root but different @ suffix to be equal
1434 */
1435 err_msg = "Node name contains @";
1436 goto err;
1437 }
Jun Nie5c643db2018-02-27 16:55:58 +08001438 /* Get image data and data length */
Kelvin Cheungc3c86382018-05-19 18:21:37 +08001439 if (fit_image_get_data_and_size(fit, image_noffset, &data, &size)) {
Jun Nie5c643db2018-02-27 16:55:58 +08001440 err_msg = "Can't get image data/size";
Simon Glass79af75f2021-02-15 17:08:06 -07001441 goto err;
Jun Nie5c643db2018-02-27 16:55:58 +08001442 }
1443
Simon Glass99f844b2021-11-12 12:28:10 -07001444 return fit_image_verify_with_data(fit, image_noffset, gd_fdt_blob(),
1445 data, size);
Simon Glass79af75f2021-02-15 17:08:06 -07001446
1447err:
1448 printf("error!\n%s in '%s' image node\n", err_msg,
1449 fit_get_name(fit, image_noffset, NULL));
1450 return 0;
Jun Nie5c643db2018-02-27 16:55:58 +08001451}
1452
1453/**
Andreas Dannenberge17adbb2016-06-15 17:00:19 -05001454 * fit_all_image_verify - verify data integrity for all images
Simon Glass53fbb7e2013-05-07 06:11:53 +00001455 * @fit: pointer to the FIT format image header
1456 *
Simon Glassb8da8362013-05-07 06:11:57 +00001457 * fit_all_image_verify() goes over all images in the FIT and
Simon Glass53fbb7e2013-05-07 06:11:53 +00001458 * for every images checks if all it's hashes are valid.
1459 *
1460 * returns:
1461 * 1, if all hashes of all images are valid
1462 * 0, otherwise (or on error)
1463 */
Simon Glassb8da8362013-05-07 06:11:57 +00001464int fit_all_image_verify(const void *fit)
Simon Glass53fbb7e2013-05-07 06:11:53 +00001465{
1466 int images_noffset;
1467 int noffset;
1468 int ndepth;
1469 int count;
1470
1471 /* Find images parent node offset */
1472 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
1473 if (images_noffset < 0) {
1474 printf("Can't find images parent node '%s' (%s)\n",
1475 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
1476 return 0;
1477 }
1478
1479 /* Process all image subnodes, check hashes for each */
1480 printf("## Checking hash(es) for FIT Image at %08lx ...\n",
1481 (ulong)fit);
1482 for (ndepth = 0, count = 0,
1483 noffset = fdt_next_node(fit, images_noffset, &ndepth);
1484 (noffset >= 0) && (ndepth > 0);
1485 noffset = fdt_next_node(fit, noffset, &ndepth)) {
1486 if (ndepth == 1) {
1487 /*
1488 * Direct child node of the images parent node,
1489 * i.e. component image node.
1490 */
Simon Glass73223f02016-02-22 22:55:43 -07001491 printf(" Hash(es) for Image %u (%s): ", count,
Simon Glass53fbb7e2013-05-07 06:11:53 +00001492 fit_get_name(fit, noffset, NULL));
Simon Glass73223f02016-02-22 22:55:43 -07001493 count++;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001494
Simon Glassb8da8362013-05-07 06:11:57 +00001495 if (!fit_image_verify(fit, noffset))
Simon Glass53fbb7e2013-05-07 06:11:53 +00001496 return 0;
1497 printf("\n");
1498 }
1499 }
1500 return 1;
1501}
1502
Philippe Reynes4df35782019-12-18 18:25:42 +01001503static int fit_image_uncipher(const void *fit, int image_noffset,
1504 void **data, size_t *size)
1505{
1506 int cipher_noffset, ret;
1507 void *dst;
1508 size_t size_dst;
1509
1510 cipher_noffset = fdt_subnode_offset(fit, image_noffset,
1511 FIT_CIPHER_NODENAME);
1512 if (cipher_noffset < 0)
1513 return 0;
1514
1515 ret = fit_image_decrypt_data(fit, image_noffset, cipher_noffset,
1516 *data, *size, &dst, &size_dst);
1517 if (ret)
1518 goto out;
1519
1520 *data = dst;
1521 *size = size_dst;
1522
1523 out:
1524 return ret;
1525}
Philippe Reynes4df35782019-12-18 18:25:42 +01001526
Simon Glass53fbb7e2013-05-07 06:11:53 +00001527/**
1528 * fit_image_check_os - check whether image node is of a given os type
1529 * @fit: pointer to the FIT format image header
1530 * @noffset: component image node offset
1531 * @os: requested image os
1532 *
1533 * fit_image_check_os() reads image os property and compares its numeric
1534 * id with the requested os. Comparison result is returned to the caller.
1535 *
1536 * returns:
1537 * 1 if image is of given os type
1538 * 0 otherwise (or on error)
1539 */
1540int fit_image_check_os(const void *fit, int noffset, uint8_t os)
1541{
1542 uint8_t image_os;
1543
1544 if (fit_image_get_os(fit, noffset, &image_os))
1545 return 0;
1546 return (os == image_os);
1547}
1548
1549/**
1550 * fit_image_check_arch - check whether image node is of a given arch
1551 * @fit: pointer to the FIT format image header
1552 * @noffset: component image node offset
1553 * @arch: requested imagearch
1554 *
1555 * fit_image_check_arch() reads image arch property and compares its numeric
1556 * id with the requested arch. Comparison result is returned to the caller.
1557 *
1558 * returns:
1559 * 1 if image is of given arch
1560 * 0 otherwise (or on error)
1561 */
1562int fit_image_check_arch(const void *fit, int noffset, uint8_t arch)
1563{
1564 uint8_t image_arch;
Alison Wangec6617c2016-11-10 10:49:03 +08001565 int aarch32_support = 0;
1566
Simon Glasse2734d62021-03-15 18:11:12 +13001567 /* Let's assume that sandbox can load any architecture */
1568 if (IS_ENABLED(CONFIG_SANDBOX))
1569 return true;
1570
Sebastian Reichelf14e6ee2021-01-04 20:48:03 +01001571 if (IS_ENABLED(CONFIG_ARM64_SUPPORT_AARCH32))
1572 aarch32_support = 1;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001573
1574 if (fit_image_get_arch(fit, noffset, &image_arch))
1575 return 0;
Simon Glass5bda35c2014-10-10 08:21:57 -06001576 return (arch == image_arch) ||
Alison Wangec6617c2016-11-10 10:49:03 +08001577 (arch == IH_ARCH_I386 && image_arch == IH_ARCH_X86_64) ||
1578 (arch == IH_ARCH_ARM64 && image_arch == IH_ARCH_ARM &&
1579 aarch32_support);
Simon Glass53fbb7e2013-05-07 06:11:53 +00001580}
1581
1582/**
1583 * fit_image_check_type - check whether image node is of a given type
1584 * @fit: pointer to the FIT format image header
1585 * @noffset: component image node offset
1586 * @type: requested image type
1587 *
1588 * fit_image_check_type() reads image type property and compares its numeric
1589 * id with the requested type. Comparison result is returned to the caller.
1590 *
1591 * returns:
1592 * 1 if image is of given type
1593 * 0 otherwise (or on error)
1594 */
1595int fit_image_check_type(const void *fit, int noffset, uint8_t type)
1596{
1597 uint8_t image_type;
1598
1599 if (fit_image_get_type(fit, noffset, &image_type))
1600 return 0;
1601 return (type == image_type);
1602}
1603
1604/**
1605 * fit_image_check_comp - check whether image node uses given compression
1606 * @fit: pointer to the FIT format image header
1607 * @noffset: component image node offset
1608 * @comp: requested image compression type
1609 *
1610 * fit_image_check_comp() reads image compression property and compares its
1611 * numeric id with the requested compression type. Comparison result is
1612 * returned to the caller.
1613 *
1614 * returns:
1615 * 1 if image uses requested compression
1616 * 0 otherwise (or on error)
1617 */
1618int fit_image_check_comp(const void *fit, int noffset, uint8_t comp)
1619{
1620 uint8_t image_comp;
1621
1622 if (fit_image_get_comp(fit, noffset, &image_comp))
1623 return 0;
1624 return (comp == image_comp);
1625}
1626
Simon Glass3f04db82021-02-15 17:08:12 -07001627/**
1628 * fdt_check_no_at() - Check for nodes whose names contain '@'
1629 *
1630 * This checks the parent node and all subnodes recursively
1631 *
1632 * @fit: FIT to check
1633 * @parent: Parent node to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001634 * Return: 0 if OK, -EADDRNOTAVAIL is a node has a name containing '@'
Simon Glass3f04db82021-02-15 17:08:12 -07001635 */
1636static int fdt_check_no_at(const void *fit, int parent)
1637{
1638 const char *name;
1639 int node;
1640 int ret;
1641
1642 name = fdt_get_name(fit, parent, NULL);
1643 if (!name || strchr(name, '@'))
1644 return -EADDRNOTAVAIL;
1645
1646 fdt_for_each_subnode(node, fit, parent) {
1647 ret = fdt_check_no_at(fit, node);
1648 if (ret)
1649 return ret;
1650 }
1651
1652 return 0;
1653}
1654
Simon Glassc5819702021-02-15 17:08:09 -07001655int fit_check_format(const void *fit, ulong size)
Simon Glass53fbb7e2013-05-07 06:11:53 +00001656{
Simon Glassc5819702021-02-15 17:08:09 -07001657 int ret;
1658
Heinrich Schuchardtea1a9ec2021-01-13 02:09:12 +01001659 /* A FIT image must be a valid FDT */
Simon Glassc5819702021-02-15 17:08:09 -07001660 ret = fdt_check_header(fit);
1661 if (ret) {
1662 log_debug("Wrong FIT format: not a flattened device tree (err=%d)\n",
1663 ret);
1664 return -ENOEXEC;
Heinrich Schuchardtea1a9ec2021-01-13 02:09:12 +01001665 }
1666
Simon Glass6f3c2d82021-02-15 17:08:10 -07001667 if (CONFIG_IS_ENABLED(FIT_FULL_CHECK)) {
1668 /*
1669 * If we are not given the size, make do wtih calculating it.
1670 * This is not as secure, so we should consider a flag to
1671 * control this.
1672 */
1673 if (size == IMAGE_SIZE_INVAL)
1674 size = fdt_totalsize(fit);
1675 ret = fdt_check_full(fit, size);
Simon Glass3f04db82021-02-15 17:08:12 -07001676 if (ret)
1677 ret = -EINVAL;
Simon Glass6f3c2d82021-02-15 17:08:10 -07001678
Simon Glass3f04db82021-02-15 17:08:12 -07001679 /*
1680 * U-Boot stopped using unit addressed in 2017. Since libfdt
1681 * can match nodes ignoring any unit address, signature
1682 * verification can see the wrong node if one is inserted with
1683 * the same name as a valid node but with a unit address
1684 * attached. Protect against this by disallowing unit addresses.
1685 */
1686 if (!ret && CONFIG_IS_ENABLED(FIT_SIGNATURE)) {
1687 ret = fdt_check_no_at(fit, 0);
1688
1689 if (ret) {
1690 log_debug("FIT check error %d\n", ret);
1691 return ret;
1692 }
1693 }
Simon Glass6f3c2d82021-02-15 17:08:10 -07001694 if (ret) {
1695 log_debug("FIT check error %d\n", ret);
Simon Glass3f04db82021-02-15 17:08:12 -07001696 return ret;
Simon Glass6f3c2d82021-02-15 17:08:10 -07001697 }
1698 }
1699
Simon Glass53fbb7e2013-05-07 06:11:53 +00001700 /* mandatory / node 'description' property */
Simon Glassc5819702021-02-15 17:08:09 -07001701 if (!fdt_getprop(fit, 0, FIT_DESC_PROP, NULL)) {
1702 log_debug("Wrong FIT format: no description\n");
1703 return -ENOMSG;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001704 }
1705
1706 if (IMAGE_ENABLE_TIMESTAMP) {
1707 /* mandatory / node 'timestamp' property */
Simon Glassc5819702021-02-15 17:08:09 -07001708 if (!fdt_getprop(fit, 0, FIT_TIMESTAMP_PROP, NULL)) {
1709 log_debug("Wrong FIT format: no timestamp\n");
Simon Glass29cbc4b2021-02-24 08:50:32 -05001710 return -EBADMSG;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001711 }
1712 }
1713
1714 /* mandatory subimages parent '/images' node */
1715 if (fdt_path_offset(fit, FIT_IMAGES_PATH) < 0) {
Simon Glassc5819702021-02-15 17:08:09 -07001716 log_debug("Wrong FIT format: no images parent node\n");
1717 return -ENOENT;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001718 }
1719
Simon Glassc5819702021-02-15 17:08:09 -07001720 return 0;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001721}
1722
Simon Glass53fbb7e2013-05-07 06:11:53 +00001723int fit_conf_find_compat(const void *fit, const void *fdt)
1724{
1725 int ndepth = 0;
1726 int noffset, confs_noffset, images_noffset;
1727 const void *fdt_compat;
1728 int fdt_compat_len;
1729 int best_match_offset = 0;
1730 int best_match_pos = 0;
1731
1732 confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
1733 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
1734 if (confs_noffset < 0 || images_noffset < 0) {
1735 debug("Can't find configurations or images nodes.\n");
1736 return -1;
1737 }
1738
1739 fdt_compat = fdt_getprop(fdt, 0, "compatible", &fdt_compat_len);
1740 if (!fdt_compat) {
1741 debug("Fdt for comparison has no \"compatible\" property.\n");
1742 return -1;
1743 }
1744
1745 /*
1746 * Loop over the configurations in the FIT image.
1747 */
1748 for (noffset = fdt_next_node(fit, confs_noffset, &ndepth);
1749 (noffset >= 0) && (ndepth > 0);
1750 noffset = fdt_next_node(fit, noffset, &ndepth)) {
Julius Werner18cfa612019-07-24 19:37:56 -07001751 const void *fdt;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001752 const char *kfdt_name;
Julius Werner18cfa612019-07-24 19:37:56 -07001753 int kfdt_noffset, compat_noffset;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001754 const char *cur_fdt_compat;
1755 int len;
Julius Werner18cfa612019-07-24 19:37:56 -07001756 size_t sz;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001757 int i;
1758
1759 if (ndepth > 1)
1760 continue;
1761
Julius Werner18cfa612019-07-24 19:37:56 -07001762 /* If there's a compat property in the config node, use that. */
1763 if (fdt_getprop(fit, noffset, "compatible", NULL)) {
1764 fdt = fit; /* search in FIT image */
1765 compat_noffset = noffset; /* search under config node */
1766 } else { /* Otherwise extract it from the kernel FDT. */
1767 kfdt_name = fdt_getprop(fit, noffset, "fdt", &len);
1768 if (!kfdt_name) {
1769 debug("No fdt property found.\n");
1770 continue;
1771 }
1772 kfdt_noffset = fdt_subnode_offset(fit, images_noffset,
1773 kfdt_name);
1774 if (kfdt_noffset < 0) {
1775 debug("No image node named \"%s\" found.\n",
1776 kfdt_name);
1777 continue;
1778 }
Julius Wernerb1307f82019-07-24 19:37:55 -07001779
Julius Werner18cfa612019-07-24 19:37:56 -07001780 if (!fit_image_check_comp(fit, kfdt_noffset,
1781 IH_COMP_NONE)) {
1782 debug("Can't extract compat from \"%s\" "
1783 "(compressed)\n", kfdt_name);
1784 continue;
1785 }
Julius Wernerb1307f82019-07-24 19:37:55 -07001786
Julius Werner18cfa612019-07-24 19:37:56 -07001787 /* search in this config's kernel FDT */
John Keeping650bf002021-06-25 17:58:04 +01001788 if (fit_image_get_data_and_size(fit, kfdt_noffset,
1789 &fdt, &sz)) {
Julius Werner18cfa612019-07-24 19:37:56 -07001790 debug("Failed to get fdt \"%s\".\n", kfdt_name);
1791 continue;
1792 }
1793
1794 compat_noffset = 0; /* search kFDT under root node */
Simon Glass53fbb7e2013-05-07 06:11:53 +00001795 }
1796
1797 len = fdt_compat_len;
1798 cur_fdt_compat = fdt_compat;
1799 /*
1800 * Look for a match for each U-Boot compatibility string in
Julius Werner18cfa612019-07-24 19:37:56 -07001801 * turn in the compat string property.
Simon Glass53fbb7e2013-05-07 06:11:53 +00001802 */
1803 for (i = 0; len > 0 &&
1804 (!best_match_offset || best_match_pos > i); i++) {
1805 int cur_len = strlen(cur_fdt_compat) + 1;
1806
Julius Werner18cfa612019-07-24 19:37:56 -07001807 if (!fdt_node_check_compatible(fdt, compat_noffset,
Simon Glass53fbb7e2013-05-07 06:11:53 +00001808 cur_fdt_compat)) {
1809 best_match_offset = noffset;
1810 best_match_pos = i;
1811 break;
1812 }
1813 len -= cur_len;
1814 cur_fdt_compat += cur_len;
1815 }
1816 }
1817 if (!best_match_offset) {
1818 debug("No match found.\n");
1819 return -1;
1820 }
1821
1822 return best_match_offset;
1823}
1824
Simon Glass53fbb7e2013-05-07 06:11:53 +00001825int fit_conf_get_node(const void *fit, const char *conf_uname)
1826{
1827 int noffset, confs_noffset;
1828 int len;
Pantelis Antoniou169043d2017-09-04 23:12:16 +03001829 const char *s;
1830 char *conf_uname_copy = NULL;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001831
1832 confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
1833 if (confs_noffset < 0) {
1834 debug("Can't find configurations parent node '%s' (%s)\n",
1835 FIT_CONFS_PATH, fdt_strerror(confs_noffset));
1836 return confs_noffset;
1837 }
1838
1839 if (conf_uname == NULL) {
1840 /* get configuration unit name from the default property */
1841 debug("No configuration specified, trying default...\n");
Simon Glassc9d6b5b2021-09-25 19:43:14 -06001842 if (!tools_build() && IS_ENABLED(CONFIG_MULTI_DTB_FIT)) {
Sebastian Reicheld8ab0fe2021-01-04 20:48:04 +01001843 noffset = fit_find_config_node(fit);
1844 if (noffset < 0)
1845 return noffset;
1846 conf_uname = fdt_get_name(fit, noffset, NULL);
1847 } else {
1848 conf_uname = (char *)fdt_getprop(fit, confs_noffset,
1849 FIT_DEFAULT_PROP, &len);
1850 if (conf_uname == NULL) {
1851 fit_get_debug(fit, confs_noffset, FIT_DEFAULT_PROP,
1852 len);
1853 return len;
1854 }
Simon Glass53fbb7e2013-05-07 06:11:53 +00001855 }
1856 debug("Found default configuration: '%s'\n", conf_uname);
1857 }
1858
Pantelis Antoniou169043d2017-09-04 23:12:16 +03001859 s = strchr(conf_uname, '#');
1860 if (s) {
1861 len = s - conf_uname;
1862 conf_uname_copy = malloc(len + 1);
1863 if (!conf_uname_copy) {
1864 debug("Can't allocate uname copy: '%s'\n",
1865 conf_uname);
1866 return -ENOMEM;
1867 }
1868 memcpy(conf_uname_copy, conf_uname, len);
1869 conf_uname_copy[len] = '\0';
1870 conf_uname = conf_uname_copy;
1871 }
1872
Simon Glass53fbb7e2013-05-07 06:11:53 +00001873 noffset = fdt_subnode_offset(fit, confs_noffset, conf_uname);
1874 if (noffset < 0) {
1875 debug("Can't get node offset for configuration unit name: '%s' (%s)\n",
1876 conf_uname, fdt_strerror(noffset));
1877 }
1878
Heinrich Schuchardt7ffc66e2022-04-11 20:08:03 +02001879 free(conf_uname_copy);
Pantelis Antoniou169043d2017-09-04 23:12:16 +03001880
Simon Glass53fbb7e2013-05-07 06:11:53 +00001881 return noffset;
1882}
1883
Pantelis Antoniouad026ad2017-09-04 23:12:14 +03001884int fit_conf_get_prop_node_count(const void *fit, int noffset,
Simon Glass53fbb7e2013-05-07 06:11:53 +00001885 const char *prop_name)
1886{
Pantelis Antoniouad026ad2017-09-04 23:12:14 +03001887 return fdt_stringlist_count(fit, noffset, prop_name);
1888}
1889
1890int fit_conf_get_prop_node_index(const void *fit, int noffset,
1891 const char *prop_name, int index)
1892{
1893 const char *uname;
Simon Glass53fbb7e2013-05-07 06:11:53 +00001894 int len;
1895
1896 /* get kernel image unit name from configuration kernel property */
Pantelis Antoniouad026ad2017-09-04 23:12:14 +03001897 uname = fdt_stringlist_get(fit, noffset, prop_name, index, &len);
Simon Glass53fbb7e2013-05-07 06:11:53 +00001898 if (uname == NULL)
1899 return len;
1900
1901 return fit_image_get_node(fit, uname);
1902}
1903
Simon Glassbbe285c2022-10-20 18:23:04 -06001904int fit_conf_get_prop_node(const void *fit, int noffset, const char *prop_name,
1905 enum image_phase_t sel_phase)
Pantelis Antoniouad026ad2017-09-04 23:12:14 +03001906{
Simon Glassbbe285c2022-10-20 18:23:04 -06001907 int i, count;
1908
1909 if (sel_phase == IH_PHASE_NONE)
1910 return fit_conf_get_prop_node_index(fit, noffset, prop_name, 0);
1911
1912 count = fit_conf_get_prop_node_count(fit, noffset, prop_name);
1913 if (count < 0)
1914 return count;
1915
1916 /* check each image in the list */
1917 for (i = 0; i < count; i++) {
1918 enum image_phase_t phase;
1919 int ret, node;
1920
1921 node = fit_conf_get_prop_node_index(fit, noffset, prop_name, i);
1922 ret = fit_image_get_phase(fit, node, &phase);
1923
1924 /* if the image is for any phase, let's use it */
1925 if (ret == -ENOENT)
1926 return node;
1927 else if (ret < 0)
1928 return ret;
1929
1930 if (phase == sel_phase)
1931 return node;
1932 }
1933
1934 return -ENOENT;
Pantelis Antoniouad026ad2017-09-04 23:12:14 +03001935}
1936
Sean Anderson37feaf22022-08-16 11:16:03 -04001937static int fit_get_data_tail(const void *fit, int noffset,
1938 const void **data, size_t *size)
1939{
1940 char *desc;
1941
1942 if (noffset < 0)
1943 return noffset;
1944
1945 if (!fit_image_verify(fit, noffset))
1946 return -EINVAL;
1947
1948 if (fit_image_get_data_and_size(fit, noffset, data, size))
1949 return -ENOENT;
1950
1951 if (!fit_get_desc(fit, noffset, &desc))
1952 printf("%s\n", desc);
1953
1954 return 0;
1955}
1956
1957int fit_get_data_node(const void *fit, const char *image_uname,
1958 const void **data, size_t *size)
1959{
1960 int noffset = fit_image_get_node(fit, image_uname);
1961
1962 return fit_get_data_tail(fit, noffset, data, size);
1963}
1964
1965int fit_get_data_conf_prop(const void *fit, const char *prop_name,
1966 const void **data, size_t *size)
1967{
1968 int noffset = fit_conf_get_node(fit, NULL);
1969
Simon Glassbbe285c2022-10-20 18:23:04 -06001970 noffset = fit_conf_get_prop_node(fit, noffset, prop_name,
1971 IH_PHASE_NONE);
Sean Anderson37feaf22022-08-16 11:16:03 -04001972 return fit_get_data_tail(fit, noffset, data, size);
1973}
1974
Jeroen Hofstee718feca2014-10-08 22:57:38 +02001975static int fit_image_select(const void *fit, int rd_noffset, int verify)
Simon Glass782cfbb2013-05-16 13:53:21 +00001976{
1977 fit_image_print(fit, rd_noffset, " ");
1978
1979 if (verify) {
1980 puts(" Verifying Hash Integrity ... ");
1981 if (!fit_image_verify(fit, rd_noffset)) {
1982 puts("Bad Data Hash\n");
1983 return -EACCES;
1984 }
1985 puts("OK\n");
1986 }
1987
1988 return 0;
1989}
1990
Simon Glassd9d7c202022-09-06 20:26:50 -06001991int fit_get_node_from_config(struct bootm_headers *images,
1992 const char *prop_name, ulong addr)
Simon Glass782cfbb2013-05-16 13:53:21 +00001993{
1994 int cfg_noffset;
1995 void *fit_hdr;
1996 int noffset;
1997
1998 debug("* %s: using config '%s' from image at 0x%08lx\n",
1999 prop_name, images->fit_uname_cfg, addr);
2000
2001 /* Check whether configuration has this property defined */
2002 fit_hdr = map_sysmem(addr, 0);
2003 cfg_noffset = fit_conf_get_node(fit_hdr, images->fit_uname_cfg);
2004 if (cfg_noffset < 0) {
2005 debug("* %s: no such config\n", prop_name);
Paul Burtonbd86ef12016-09-20 18:17:12 +01002006 return -EINVAL;
Simon Glass782cfbb2013-05-16 13:53:21 +00002007 }
2008
Simon Glassbbe285c2022-10-20 18:23:04 -06002009 noffset = fit_conf_get_prop_node(fit_hdr, cfg_noffset, prop_name,
2010 IH_PHASE_NONE);
Simon Glass782cfbb2013-05-16 13:53:21 +00002011 if (noffset < 0) {
2012 debug("* %s: no '%s' in config\n", prop_name, prop_name);
Jonathan Graybac17b72016-09-03 08:30:14 +10002013 return -ENOENT;
Simon Glass782cfbb2013-05-16 13:53:21 +00002014 }
2015
2016 return noffset;
2017}
2018
Simon Glass126cc862014-06-12 07:24:47 -06002019/**
2020 * fit_get_image_type_property() - get property name for IH_TYPE_...
2021 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01002022 * Return: the properly name where we expect to find the image in the
Simon Glass126cc862014-06-12 07:24:47 -06002023 * config node
2024 */
2025static const char *fit_get_image_type_property(int type)
2026{
2027 /*
2028 * This is sort-of available in the uimage_type[] table in image.c
Andreas Dannenberge17adbb2016-06-15 17:00:19 -05002029 * but we don't have access to the short name, and "fdt" is different
Simon Glass126cc862014-06-12 07:24:47 -06002030 * anyway. So let's just keep it here.
2031 */
2032 switch (type) {
2033 case IH_TYPE_FLATDT:
2034 return FIT_FDT_PROP;
2035 case IH_TYPE_KERNEL:
2036 return FIT_KERNEL_PROP;
Alexandru Gagniuc47b6f7f2021-04-01 13:25:30 -05002037 case IH_TYPE_FIRMWARE:
2038 return FIT_FIRMWARE_PROP;
Simon Glass126cc862014-06-12 07:24:47 -06002039 case IH_TYPE_RAMDISK:
2040 return FIT_RAMDISK_PROP;
Simon Glass90268b82014-10-19 21:11:24 -06002041 case IH_TYPE_X86_SETUP:
2042 return FIT_SETUP_PROP;
Karl Apsite84a07db2015-05-21 09:52:48 -04002043 case IH_TYPE_LOADABLE:
2044 return FIT_LOADABLE_PROP;
Michal Simek62afc602016-05-17 14:03:50 +02002045 case IH_TYPE_FPGA:
2046 return FIT_FPGA_PROP;
Marek Vasut0298d202018-05-13 00:22:54 +02002047 case IH_TYPE_STANDALONE:
2048 return FIT_STANDALONE_PROP;
Simon Glass126cc862014-06-12 07:24:47 -06002049 }
2050
2051 return "unknown";
2052}
2053
Simon Glassd9d7c202022-09-06 20:26:50 -06002054int fit_image_load(struct bootm_headers *images, ulong addr,
Simon Glassf320a4d2013-07-10 23:08:10 -07002055 const char **fit_unamep, const char **fit_uname_configp,
Simon Glassbbe285c2022-10-20 18:23:04 -06002056 int arch, int ph_type, int bootstage_id,
Simon Glass782cfbb2013-05-16 13:53:21 +00002057 enum fit_load_op load_op, ulong *datap, ulong *lenp)
2058{
Simon Glassbbe285c2022-10-20 18:23:04 -06002059 int image_type = image_ph_type(ph_type);
Simon Glass782cfbb2013-05-16 13:53:21 +00002060 int cfg_noffset, noffset;
2061 const char *fit_uname;
Simon Glassf320a4d2013-07-10 23:08:10 -07002062 const char *fit_uname_config;
Pantelis Antoniou7c3dc772017-09-04 23:12:15 +03002063 const char *fit_base_uname_config;
Simon Glass782cfbb2013-05-16 13:53:21 +00002064 const void *fit;
Julius Wernerb1307f82019-07-24 19:37:55 -07002065 void *buf;
2066 void *loadbuf;
Simon Glass782cfbb2013-05-16 13:53:21 +00002067 size_t size;
2068 int type_ok, os_ok;
Julius Wernerb1307f82019-07-24 19:37:55 -07002069 ulong load, load_end, data, len;
2070 uint8_t os, comp;
Simon Glass126cc862014-06-12 07:24:47 -06002071 const char *prop_name;
Simon Glass782cfbb2013-05-16 13:53:21 +00002072 int ret;
2073
2074 fit = map_sysmem(addr, 0);
2075 fit_uname = fit_unamep ? *fit_unamep : NULL;
Simon Glassf320a4d2013-07-10 23:08:10 -07002076 fit_uname_config = fit_uname_configp ? *fit_uname_configp : NULL;
Pantelis Antoniou7c3dc772017-09-04 23:12:15 +03002077 fit_base_uname_config = NULL;
Simon Glass126cc862014-06-12 07:24:47 -06002078 prop_name = fit_get_image_type_property(image_type);
Simon Glass782cfbb2013-05-16 13:53:21 +00002079 printf("## Loading %s from FIT Image at %08lx ...\n", prop_name, addr);
2080
2081 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_FORMAT);
Simon Glass3f04db82021-02-15 17:08:12 -07002082 ret = fit_check_format(fit, IMAGE_SIZE_INVAL);
2083 if (ret) {
2084 printf("Bad FIT %s image format! (err=%d)\n", prop_name, ret);
2085 if (CONFIG_IS_ENABLED(FIT_SIGNATURE) && ret == -EADDRNOTAVAIL)
2086 printf("Signature checking prevents use of unit addresses (@) in nodes\n");
Simon Glass782cfbb2013-05-16 13:53:21 +00002087 bootstage_error(bootstage_id + BOOTSTAGE_SUB_FORMAT);
Simon Glass3f04db82021-02-15 17:08:12 -07002088 return ret;
Simon Glass782cfbb2013-05-16 13:53:21 +00002089 }
2090 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_FORMAT_OK);
2091 if (fit_uname) {
Masahiro Yamadaf150c832014-02-18 15:39:21 +09002092 /* get FIT component image node offset */
Simon Glass782cfbb2013-05-16 13:53:21 +00002093 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_UNIT_NAME);
2094 noffset = fit_image_get_node(fit, fit_uname);
2095 } else {
2096 /*
2097 * no image node unit name, try to get config
2098 * node first. If config unit node name is NULL
2099 * fit_conf_get_node() will try to find default config node
2100 */
2101 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_NO_UNIT_NAME);
Simon Glass70c1c892021-07-14 17:05:36 -05002102 if (IS_ENABLED(CONFIG_FIT_BEST_MATCH) && !fit_uname_config) {
Simon Glass782cfbb2013-05-16 13:53:21 +00002103 cfg_noffset = fit_conf_find_compat(fit, gd_fdt_blob());
2104 } else {
Simon Glassbbe285c2022-10-20 18:23:04 -06002105 cfg_noffset = fit_conf_get_node(fit, fit_uname_config);
Simon Glass782cfbb2013-05-16 13:53:21 +00002106 }
2107 if (cfg_noffset < 0) {
2108 puts("Could not find configuration node\n");
2109 bootstage_error(bootstage_id +
2110 BOOTSTAGE_SUB_NO_UNIT_NAME);
2111 return -ENOENT;
2112 }
Marek Vasut078e5582018-05-31 17:59:07 +02002113
Pantelis Antoniou7c3dc772017-09-04 23:12:15 +03002114 fit_base_uname_config = fdt_get_name(fit, cfg_noffset, NULL);
2115 printf(" Using '%s' configuration\n", fit_base_uname_config);
Marek Vasut078e5582018-05-31 17:59:07 +02002116 /* Remember this config */
2117 if (image_type == IH_TYPE_KERNEL)
Pantelis Antoniou7c3dc772017-09-04 23:12:15 +03002118 images->fit_uname_cfg = fit_base_uname_config;
Marek Vasut078e5582018-05-31 17:59:07 +02002119
AKASHI Takahirob983cc22020-02-21 15:12:55 +09002120 if (FIT_IMAGE_ENABLE_VERIFY && images->verify) {
Marek Vasut078e5582018-05-31 17:59:07 +02002121 puts(" Verifying Hash Integrity ... ");
2122 if (fit_config_verify(fit, cfg_noffset)) {
2123 puts("Bad Data Hash\n");
2124 bootstage_error(bootstage_id +
2125 BOOTSTAGE_SUB_HASH);
2126 return -EACCES;
Simon Glass782cfbb2013-05-16 13:53:21 +00002127 }
Marek Vasut078e5582018-05-31 17:59:07 +02002128 puts("OK\n");
Simon Glass782cfbb2013-05-16 13:53:21 +00002129 }
2130
Marek Vasut078e5582018-05-31 17:59:07 +02002131 bootstage_mark(BOOTSTAGE_ID_FIT_CONFIG);
2132
Simon Glassbbe285c2022-10-20 18:23:04 -06002133 noffset = fit_conf_get_prop_node(fit, cfg_noffset, prop_name,
2134 image_ph_phase(ph_type));
Simon Glass782cfbb2013-05-16 13:53:21 +00002135 fit_uname = fit_get_name(fit, noffset, NULL);
2136 }
2137 if (noffset < 0) {
Simon Glass382cf622020-03-18 11:43:56 -06002138 printf("Could not find subimage node type '%s'\n", prop_name);
Simon Glass782cfbb2013-05-16 13:53:21 +00002139 bootstage_error(bootstage_id + BOOTSTAGE_SUB_SUBNODE);
2140 return -ENOENT;
2141 }
2142
2143 printf(" Trying '%s' %s subimage\n", fit_uname, prop_name);
2144
2145 ret = fit_image_select(fit, noffset, images->verify);
2146 if (ret) {
2147 bootstage_error(bootstage_id + BOOTSTAGE_SUB_HASH);
2148 return ret;
2149 }
2150
2151 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_CHECK_ARCH);
Simon Glassc9d6b5b2021-09-25 19:43:14 -06002152 if (!tools_build() && IS_ENABLED(CONFIG_SANDBOX)) {
Sebastian Reichelf14e6ee2021-01-04 20:48:03 +01002153 if (!fit_image_check_target_arch(fit, noffset)) {
2154 puts("Unsupported Architecture\n");
2155 bootstage_error(bootstage_id + BOOTSTAGE_SUB_CHECK_ARCH);
2156 return -ENOEXEC;
2157 }
Simon Glass782cfbb2013-05-16 13:53:21 +00002158 }
Alison Wangec6617c2016-11-10 10:49:03 +08002159
2160#ifndef USE_HOSTCC
Simon Glassb53541f2021-09-25 19:43:39 -06002161 {
2162 uint8_t os_arch;
2163
Alison Wangec6617c2016-11-10 10:49:03 +08002164 fit_image_get_arch(fit, noffset, &os_arch);
2165 images->os.arch = os_arch;
Simon Glassb53541f2021-09-25 19:43:39 -06002166 }
Alison Wangec6617c2016-11-10 10:49:03 +08002167#endif
2168
Simon Glass782cfbb2013-05-16 13:53:21 +00002169 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_CHECK_ALL);
2170 type_ok = fit_image_check_type(fit, noffset, image_type) ||
mario.six@gdsys.cce8fb4352016-07-20 08:32:50 +02002171 fit_image_check_type(fit, noffset, IH_TYPE_FIRMWARE) ||
Alexandru Gagniuc033ac4e2021-04-01 13:25:31 -05002172 fit_image_check_type(fit, noffset, IH_TYPE_TEE) ||
mario.six@gdsys.cce8fb4352016-07-20 08:32:50 +02002173 (image_type == IH_TYPE_KERNEL &&
2174 fit_image_check_type(fit, noffset, IH_TYPE_KERNEL_NOLOAD));
Marek Vasut38117232014-12-16 14:07:22 +01002175
Andreas Bießmann950fe262016-08-14 20:31:24 +02002176 os_ok = image_type == IH_TYPE_FLATDT ||
2177 image_type == IH_TYPE_FPGA ||
Marek Vasut38117232014-12-16 14:07:22 +01002178 fit_image_check_os(fit, noffset, IH_OS_LINUX) ||
mario.six@gdsys.cce8fb4352016-07-20 08:32:50 +02002179 fit_image_check_os(fit, noffset, IH_OS_U_BOOT) ||
Alexandru Gagniuc033ac4e2021-04-01 13:25:31 -05002180 fit_image_check_os(fit, noffset, IH_OS_TEE) ||
Cristian Ciocalteaa031b032019-12-24 18:05:38 +02002181 fit_image_check_os(fit, noffset, IH_OS_OPENRTOS) ||
Lihua Zhao0df27d62020-03-18 07:32:07 -07002182 fit_image_check_os(fit, noffset, IH_OS_EFI) ||
2183 fit_image_check_os(fit, noffset, IH_OS_VXWORKS);
Karl Apsite84a07db2015-05-21 09:52:48 -04002184
2185 /*
2186 * If either of the checks fail, we should report an error, but
2187 * if the image type is coming from the "loadables" field, we
2188 * don't care what it is
2189 */
2190 if ((!type_ok || !os_ok) && image_type != IH_TYPE_LOADABLE) {
Marek Vasut38117232014-12-16 14:07:22 +01002191 fit_image_get_os(fit, noffset, &os);
2192 printf("No %s %s %s Image\n",
2193 genimg_get_os_name(os),
2194 genimg_get_arch_name(arch),
Simon Glass782cfbb2013-05-16 13:53:21 +00002195 genimg_get_type_name(image_type));
2196 bootstage_error(bootstage_id + BOOTSTAGE_SUB_CHECK_ALL);
2197 return -EIO;
2198 }
2199
2200 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_CHECK_ALL_OK);
2201
2202 /* get image data address and length */
Julius Wernerb1307f82019-07-24 19:37:55 -07002203 if (fit_image_get_data_and_size(fit, noffset,
2204 (const void **)&buf, &size)) {
Simon Glass782cfbb2013-05-16 13:53:21 +00002205 printf("Could not find %s subimage data!\n", prop_name);
2206 bootstage_error(bootstage_id + BOOTSTAGE_SUB_GET_DATA);
Simon Glass2f998072013-06-16 07:46:49 -07002207 return -ENOENT;
Simon Glass782cfbb2013-05-16 13:53:21 +00002208 }
Andrew F. Davis44402fe2016-11-21 14:37:09 -06002209
Philippe Reynes4df35782019-12-18 18:25:42 +01002210 /* Decrypt data before uncompress/move */
Sebastian Reichelf14e6ee2021-01-04 20:48:03 +01002211 if (IS_ENABLED(CONFIG_FIT_CIPHER) && IMAGE_ENABLE_DECRYPT) {
Philippe Reynes4df35782019-12-18 18:25:42 +01002212 puts(" Decrypting Data ... ");
2213 if (fit_image_uncipher(fit, noffset, &buf, &size)) {
2214 puts("Error\n");
2215 return -EACCES;
2216 }
2217 puts("OK\n");
2218 }
Philippe Reynes4df35782019-12-18 18:25:42 +01002219
Andrew F. Davis44402fe2016-11-21 14:37:09 -06002220 /* perform any post-processing on the image data */
Simon Glassc9d6b5b2021-09-25 19:43:14 -06002221 if (!tools_build() && IS_ENABLED(CONFIG_FIT_IMAGE_POST_PROCESS))
Lokesh Vutla481d3942021-06-11 11:45:05 +03002222 board_fit_image_post_process(fit, noffset, &buf, &size);
Andrew F. Davis44402fe2016-11-21 14:37:09 -06002223
Simon Glass782cfbb2013-05-16 13:53:21 +00002224 len = (ulong)size;
2225
Simon Glass782cfbb2013-05-16 13:53:21 +00002226 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_GET_DATA_OK);
2227
Julius Wernerb1307f82019-07-24 19:37:55 -07002228 data = map_to_sysmem(buf);
2229 load = data;
Simon Glass782cfbb2013-05-16 13:53:21 +00002230 if (load_op == FIT_LOAD_IGNORED) {
2231 /* Don't load */
2232 } else if (fit_image_get_load(fit, noffset, &load)) {
2233 if (load_op == FIT_LOAD_REQUIRED) {
2234 printf("Can't get %s subimage load address!\n",
2235 prop_name);
2236 bootstage_error(bootstage_id + BOOTSTAGE_SUB_LOAD);
2237 return -EBADF;
2238 }
Simon Glassfe20a812014-08-22 14:26:43 -06002239 } else if (load_op != FIT_LOAD_OPTIONAL_NON_ZERO || load) {
Simon Glass782cfbb2013-05-16 13:53:21 +00002240 ulong image_start, image_end;
Simon Glass782cfbb2013-05-16 13:53:21 +00002241
2242 /*
2243 * move image data to the load address,
2244 * make sure we don't overwrite initial image
2245 */
2246 image_start = addr;
2247 image_end = addr + fit_get_size(fit);
2248
2249 load_end = load + len;
2250 if (image_type != IH_TYPE_KERNEL &&
2251 load < image_end && load_end > image_start) {
2252 printf("Error: %s overwritten\n", prop_name);
2253 return -EXDEV;
2254 }
2255
2256 printf(" Loading %s from 0x%08lx to 0x%08lx\n",
2257 prop_name, data, load);
Julius Wernerb1307f82019-07-24 19:37:55 -07002258 } else {
2259 load = data; /* No load address specified */
Simon Glass782cfbb2013-05-16 13:53:21 +00002260 }
Julius Wernerb1307f82019-07-24 19:37:55 -07002261
2262 comp = IH_COMP_NONE;
2263 loadbuf = buf;
2264 /* Kernel images get decompressed later in bootm_load_os(). */
Julius Wernerbddd9852019-08-02 15:52:28 -07002265 if (!fit_image_get_comp(fit, noffset, &comp) &&
2266 comp != IH_COMP_NONE &&
2267 !(image_type == IH_TYPE_KERNEL ||
2268 image_type == IH_TYPE_KERNEL_NOLOAD ||
2269 image_type == IH_TYPE_RAMDISK)) {
Julius Wernerb1307f82019-07-24 19:37:55 -07002270 ulong max_decomp_len = len * 20;
2271 if (load == data) {
2272 loadbuf = malloc(max_decomp_len);
2273 load = map_to_sysmem(loadbuf);
2274 } else {
2275 loadbuf = map_sysmem(load, max_decomp_len);
2276 }
2277 if (image_decomp(comp, load, data, image_type,
2278 loadbuf, buf, len, max_decomp_len, &load_end)) {
2279 printf("Error decompressing %s\n", prop_name);
2280
2281 return -ENOEXEC;
2282 }
2283 len = load_end - load;
2284 } else if (load != data) {
2285 loadbuf = map_sysmem(load, len);
2286 memcpy(loadbuf, buf, len);
2287 }
2288
Julius Wernerbddd9852019-08-02 15:52:28 -07002289 if (image_type == IH_TYPE_RAMDISK && comp != IH_COMP_NONE)
2290 puts("WARNING: 'compression' nodes for ramdisks are deprecated,"
2291 " please fix your .its file!\n");
2292
Julius Wernerb1307f82019-07-24 19:37:55 -07002293 /* verify that image data is a proper FDT blob */
2294 if (image_type == IH_TYPE_FLATDT && fdt_check_header(loadbuf)) {
2295 puts("Subimage data is not a FDT");
2296 return -ENOEXEC;
2297 }
2298
Simon Glass782cfbb2013-05-16 13:53:21 +00002299 bootstage_mark(bootstage_id + BOOTSTAGE_SUB_LOAD);
2300
Julius Wernerb1307f82019-07-24 19:37:55 -07002301 *datap = load;
Simon Glass782cfbb2013-05-16 13:53:21 +00002302 *lenp = len;
2303 if (fit_unamep)
2304 *fit_unamep = (char *)fit_uname;
Simon Glassf320a4d2013-07-10 23:08:10 -07002305 if (fit_uname_configp)
Pantelis Antoniou7c3dc772017-09-04 23:12:15 +03002306 *fit_uname_configp = (char *)(fit_uname_config ? :
2307 fit_base_uname_config);
Simon Glass782cfbb2013-05-16 13:53:21 +00002308
2309 return noffset;
2310}
Simon Glass90268b82014-10-19 21:11:24 -06002311
Simon Glassd9d7c202022-09-06 20:26:50 -06002312int boot_get_setup_fit(struct bootm_headers *images, uint8_t arch,
2313 ulong *setup_start, ulong *setup_len)
Simon Glass90268b82014-10-19 21:11:24 -06002314{
2315 int noffset;
2316 ulong addr;
2317 ulong len;
2318 int ret;
2319
2320 addr = map_to_sysmem(images->fit_hdr_os);
2321 noffset = fit_get_node_from_config(images, FIT_SETUP_PROP, addr);
2322 if (noffset < 0)
2323 return noffset;
2324
2325 ret = fit_image_load(images, addr, NULL, NULL, arch,
2326 IH_TYPE_X86_SETUP, BOOTSTAGE_ID_FIT_SETUP_START,
2327 FIT_LOAD_REQUIRED, setup_start, &len);
2328
2329 return ret;
2330}
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002331
2332#ifndef USE_HOSTCC
Simon Glassd9d7c202022-09-06 20:26:50 -06002333int boot_get_fdt_fit(struct bootm_headers *images, ulong addr,
2334 const char **fit_unamep, const char **fit_uname_configp,
2335 int arch, ulong *datap, ulong *lenp)
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002336{
2337 int fdt_noffset, cfg_noffset, count;
2338 const void *fit;
2339 const char *fit_uname = NULL;
2340 const char *fit_uname_config = NULL;
2341 char *fit_uname_config_copy = NULL;
2342 char *next_config = NULL;
2343 ulong load, len;
2344#ifdef CONFIG_OF_LIBFDT_OVERLAY
2345 ulong image_start, image_end;
Marek Vasut4c531d92021-06-11 04:09:56 +02002346 ulong ovload, ovlen, ovcopylen;
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002347 const char *uconfig;
2348 const char *uname;
Marek Vasut4c531d92021-06-11 04:09:56 +02002349 void *base, *ov, *ovcopy = NULL;
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002350 int i, err, noffset, ov_noffset;
2351#endif
2352
2353 fit_uname = fit_unamep ? *fit_unamep : NULL;
2354
2355 if (fit_uname_configp && *fit_uname_configp) {
2356 fit_uname_config_copy = strdup(*fit_uname_configp);
2357 if (!fit_uname_config_copy)
2358 return -ENOMEM;
2359
2360 next_config = strchr(fit_uname_config_copy, '#');
2361 if (next_config)
2362 *next_config++ = '\0';
2363 if (next_config - 1 > fit_uname_config_copy)
2364 fit_uname_config = fit_uname_config_copy;
2365 }
2366
2367 fdt_noffset = fit_image_load(images,
2368 addr, &fit_uname, &fit_uname_config,
2369 arch, IH_TYPE_FLATDT,
2370 BOOTSTAGE_ID_FIT_FDT_START,
2371 FIT_LOAD_OPTIONAL, &load, &len);
2372
2373 if (fdt_noffset < 0)
2374 goto out;
2375
2376 debug("fit_uname=%s, fit_uname_config=%s\n",
2377 fit_uname ? fit_uname : "<NULL>",
2378 fit_uname_config ? fit_uname_config : "<NULL>");
2379
2380 fit = map_sysmem(addr, 0);
2381
2382 cfg_noffset = fit_conf_get_node(fit, fit_uname_config);
2383
2384 /* single blob, or error just return as well */
2385 count = fit_conf_get_prop_node_count(fit, cfg_noffset, FIT_FDT_PROP);
2386 if (count <= 1 && !next_config)
2387 goto out;
2388
2389 /* we need to apply overlays */
2390
2391#ifdef CONFIG_OF_LIBFDT_OVERLAY
2392 image_start = addr;
2393 image_end = addr + fit_get_size(fit);
2394 /* verify that relocation took place by load address not being in fit */
2395 if (load >= image_start && load < image_end) {
2396 /* check is simplified; fit load checks for overlaps */
2397 printf("Overlayed FDT requires relocation\n");
2398 fdt_noffset = -EBADF;
2399 goto out;
2400 }
2401
2402 base = map_sysmem(load, len);
2403
2404 /* apply extra configs in FIT first, followed by args */
2405 for (i = 1; ; i++) {
2406 if (i < count) {
2407 noffset = fit_conf_get_prop_node_index(fit, cfg_noffset,
2408 FIT_FDT_PROP, i);
2409 uname = fit_get_name(fit, noffset, NULL);
2410 uconfig = NULL;
2411 } else {
2412 if (!next_config)
2413 break;
2414 uconfig = next_config;
2415 next_config = strchr(next_config, '#');
2416 if (next_config)
2417 *next_config++ = '\0';
2418 uname = NULL;
Peter Ujfalusi35c75272019-03-06 15:52:27 +02002419
2420 /*
2421 * fit_image_load() would load the first FDT from the
2422 * extra config only when uconfig is specified.
2423 * Check if the extra config contains multiple FDTs and
2424 * if so, load them.
2425 */
2426 cfg_noffset = fit_conf_get_node(fit, uconfig);
2427
2428 i = 0;
2429 count = fit_conf_get_prop_node_count(fit, cfg_noffset,
2430 FIT_FDT_PROP);
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002431 }
2432
2433 debug("%d: using uname=%s uconfig=%s\n", i, uname, uconfig);
2434
2435 ov_noffset = fit_image_load(images,
2436 addr, &uname, &uconfig,
2437 arch, IH_TYPE_FLATDT,
2438 BOOTSTAGE_ID_FIT_FDT_START,
Marek Vasut4c531d92021-06-11 04:09:56 +02002439 FIT_LOAD_IGNORED, &ovload, &ovlen);
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002440 if (ov_noffset < 0) {
2441 printf("load of %s failed\n", uname);
2442 continue;
2443 }
2444 debug("%s loaded at 0x%08lx len=0x%08lx\n",
2445 uname, ovload, ovlen);
2446 ov = map_sysmem(ovload, ovlen);
2447
Marek Vasut4c531d92021-06-11 04:09:56 +02002448 ovcopylen = ALIGN(fdt_totalsize(ov), SZ_4K);
2449 ovcopy = malloc(ovcopylen);
2450 if (!ovcopy) {
2451 printf("failed to duplicate DTO before application\n");
2452 fdt_noffset = -ENOMEM;
2453 goto out;
2454 }
2455
2456 err = fdt_open_into(ov, ovcopy, ovcopylen);
2457 if (err < 0) {
2458 printf("failed on fdt_open_into for DTO\n");
2459 fdt_noffset = err;
2460 goto out;
2461 }
2462
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002463 base = map_sysmem(load, len + ovlen);
2464 err = fdt_open_into(base, base, len + ovlen);
2465 if (err < 0) {
2466 printf("failed on fdt_open_into\n");
2467 fdt_noffset = err;
2468 goto out;
2469 }
Marek Vasut4c531d92021-06-11 04:09:56 +02002470
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002471 /* the verbose method prints out messages on error */
Marek Vasut4c531d92021-06-11 04:09:56 +02002472 err = fdt_overlay_apply_verbose(base, ovcopy);
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002473 if (err < 0) {
2474 fdt_noffset = err;
2475 goto out;
2476 }
2477 fdt_pack(base);
2478 len = fdt_totalsize(base);
2479 }
2480#else
2481 printf("config with overlays but CONFIG_OF_LIBFDT_OVERLAY not set\n");
2482 fdt_noffset = -EBADF;
2483#endif
2484
2485out:
2486 if (datap)
2487 *datap = load;
2488 if (lenp)
2489 *lenp = len;
2490 if (fit_unamep)
2491 *fit_unamep = fit_uname;
2492 if (fit_uname_configp)
2493 *fit_uname_configp = fit_uname_config;
2494
Marek Vasut4c531d92021-06-11 04:09:56 +02002495#ifdef CONFIG_OF_LIBFDT_OVERLAY
Heinrich Schuchardt7ffc66e2022-04-11 20:08:03 +02002496 free(ovcopy);
Marek Vasut4c531d92021-06-11 04:09:56 +02002497#endif
Heinrich Schuchardt7ffc66e2022-04-11 20:08:03 +02002498 free(fit_uname_config_copy);
Pantelis Antoniou169043d2017-09-04 23:12:16 +03002499 return fdt_noffset;
2500}
2501#endif