blob: 88ff093d05bed6f5da152dbbad8428eec219e4d7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +05302/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * (C) Copyright 2000-2004
6 * DENX Software Engineering
7 * Wolfgang Denk, wd@denx.de
8 *
9 * Updated-by: Prafulla Wadaskar <prafulla@marvell.com>
10 * FIT image specific code abstracted from mkimage.c
11 * some functions added to address abstraction
12 *
13 * All rights reserved.
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053014 */
15
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070016#include "imagetool.h"
Heiko Schocher6bf4ca02014-03-03 12:19:29 +010017#include "fit_common.h"
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053018#include "mkimage.h"
19#include <image.h>
Sven Roedererea5d3732020-04-27 02:08:39 +020020#include <string.h>
Simon Glass8e35bb02016-02-22 22:55:51 -070021#include <stdarg.h>
22#include <version.h>
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053023#include <u-boot/crc.h>
24
25static image_header_t header;
26
Simon Glassa9468112014-06-02 22:04:53 -060027static int fit_add_file_data(struct image_tool_params *params, size_t size_inc,
28 const char *tmpfile)
29{
30 int tfd, destfd = 0;
31 void *dest_blob = NULL;
32 off_t destfd_size = 0;
33 struct stat sbuf;
34 void *ptr;
35 int ret = 0;
36
Luca Boccassi7d574852019-05-14 19:35:02 +010037 tfd = mmap_fdt(params->cmdname, tmpfile, size_inc, &ptr, &sbuf, true,
38 false);
Simon Glassa9468112014-06-02 22:04:53 -060039 if (tfd < 0)
40 return -EIO;
41
42 if (params->keydest) {
43 struct stat dest_sbuf;
44
45 destfd = mmap_fdt(params->cmdname, params->keydest, size_inc,
Luca Boccassi7d574852019-05-14 19:35:02 +010046 &dest_blob, &dest_sbuf, false,
47 false);
Simon Glassa9468112014-06-02 22:04:53 -060048 if (destfd < 0) {
49 ret = -EIO;
50 goto err_keydest;
51 }
52 destfd_size = dest_sbuf.st_size;
53 }
54
55 /* for first image creation, add a timestamp at offset 0 i.e., root */
Vagrant Cascadian58470842016-06-16 12:28:40 -070056 if (params->datafile) {
Alex Kiernan87925df2018-06-20 20:10:51 +000057 time_t time = imagetool_get_source_date(params->cmdname,
58 sbuf.st_mtime);
Vagrant Cascadian58470842016-06-16 12:28:40 -070059 ret = fit_set_timestamp(ptr, 0, time);
60 }
Simon Glassa9468112014-06-02 22:04:53 -060061
62 if (!ret) {
Philippe Reynes7298e422019-12-18 18:25:41 +010063 ret = fit_cipher_data(params->keydir, dest_blob, ptr,
64 params->comment,
65 params->require_keys,
66 params->engine_id,
67 params->cmdname);
68 }
69
70 if (!ret) {
Simon Glassa9468112014-06-02 22:04:53 -060071 ret = fit_add_verification_data(params->keydir, dest_blob, ptr,
72 params->comment,
George McCollisterf1ca1fd2017-01-06 13:14:17 -060073 params->require_keys,
Alex Kiernan795f4522018-06-20 20:10:52 +000074 params->engine_id,
75 params->cmdname);
Simon Glassa9468112014-06-02 22:04:53 -060076 }
77
78 if (dest_blob) {
79 munmap(dest_blob, destfd_size);
80 close(destfd);
81 }
82
83err_keydest:
84 munmap(ptr, sbuf.st_size);
85 close(tfd);
Simon Glassa9468112014-06-02 22:04:53 -060086 return ret;
87}
88
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053089/**
Simon Glass8e35bb02016-02-22 22:55:51 -070090 * fit_calc_size() - Calculate the approximate size of the FIT we will generate
91 */
92static int fit_calc_size(struct image_tool_params *params)
93{
Simon Glassfb4cce02016-02-22 22:55:52 -070094 struct content_info *cont;
Simon Glass8e35bb02016-02-22 22:55:51 -070095 int size, total_size;
96
97 size = imagetool_get_filesize(params, params->datafile);
98 if (size < 0)
99 return -1;
Simon Glass8e35bb02016-02-22 22:55:51 -0700100 total_size = size;
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100101
102 if (params->fit_ramdisk) {
103 size = imagetool_get_filesize(params, params->fit_ramdisk);
104 if (size < 0)
105 return -1;
106 total_size += size;
107 }
108
Simon Glassfb4cce02016-02-22 22:55:52 -0700109 for (cont = params->content_head; cont; cont = cont->next) {
110 size = imagetool_get_filesize(params, cont->fname);
111 if (size < 0)
112 return -1;
Simon Glass8e35bb02016-02-22 22:55:51 -0700113
Simon Glassfb4cce02016-02-22 22:55:52 -0700114 /* Add space for properties */
115 total_size += size + 300;
116 }
Simon Glass8e35bb02016-02-22 22:55:51 -0700117
118 /* Add plenty of space for headers, properties, nodes, etc. */
119 total_size += 4096;
120
121 return total_size;
122}
123
124static int fdt_property_file(struct image_tool_params *params,
125 void *fdt, const char *name, const char *fname)
126{
127 struct stat sbuf;
128 void *ptr;
129 int ret;
130 int fd;
131
132 fd = open(fname, O_RDWR | O_BINARY);
133 if (fd < 0) {
134 fprintf(stderr, "%s: Can't open %s: %s\n",
135 params->cmdname, fname, strerror(errno));
136 return -1;
137 }
138
139 if (fstat(fd, &sbuf) < 0) {
140 fprintf(stderr, "%s: Can't stat %s: %s\n",
141 params->cmdname, fname, strerror(errno));
142 goto err;
143 }
144
145 ret = fdt_property_placeholder(fdt, "data", sbuf.st_size, &ptr);
146 if (ret)
Simon Glass3bd3a542016-03-16 07:45:42 -0600147 goto err;
Simon Glass8e35bb02016-02-22 22:55:51 -0700148 ret = read(fd, ptr, sbuf.st_size);
149 if (ret != sbuf.st_size) {
150 fprintf(stderr, "%s: Can't read %s: %s\n",
151 params->cmdname, fname, strerror(errno));
152 goto err;
153 }
Simon Glass3bd3a542016-03-16 07:45:42 -0600154 close(fd);
Simon Glass8e35bb02016-02-22 22:55:51 -0700155
156 return 0;
157err:
158 close(fd);
159 return -1;
160}
161
162static int fdt_property_strf(void *fdt, const char *name, const char *fmt, ...)
163{
164 char str[100];
165 va_list ptr;
166
167 va_start(ptr, fmt);
168 vsnprintf(str, sizeof(str), fmt, ptr);
169 va_end(ptr);
170 return fdt_property_string(fdt, name, str);
171}
172
Simon Glassfb4cce02016-02-22 22:55:52 -0700173static void get_basename(char *str, int size, const char *fname)
174{
175 const char *p, *start, *end;
176 int len;
177
178 /*
179 * Use the base name as the 'name' field. So for example:
180 *
181 * "arch/arm/dts/sun7i-a20-bananapro.dtb"
182 * becomes "sun7i-a20-bananapro"
183 */
184 p = strrchr(fname, '/');
185 start = p ? p + 1 : fname;
186 p = strrchr(fname, '.');
187 end = p ? p : fname + strlen(fname);
188 len = end - start;
189 if (len >= size)
190 len = size - 1;
191 memcpy(str, start, len);
192 str[len] = '\0';
193}
194
Simon Glass8e35bb02016-02-22 22:55:51 -0700195/**
196 * fit_write_images() - Write out a list of images to the FIT
197 *
Simon Glassfb4cce02016-02-22 22:55:52 -0700198 * We always include the main image (params->datafile). If there are device
Andre Przywara2eda8e92017-12-04 02:05:12 +0000199 * tree files, we include an fdt- node for each of those too.
Simon Glass8e35bb02016-02-22 22:55:51 -0700200 */
201static int fit_write_images(struct image_tool_params *params, char *fdt)
202{
Simon Glassfb4cce02016-02-22 22:55:52 -0700203 struct content_info *cont;
Simon Glass8e35bb02016-02-22 22:55:51 -0700204 const char *typename;
205 char str[100];
Simon Glassfb4cce02016-02-22 22:55:52 -0700206 int upto;
Simon Glass8e35bb02016-02-22 22:55:51 -0700207 int ret;
208
209 fdt_begin_node(fdt, "images");
210
211 /* First the main image */
212 typename = genimg_get_type_short_name(params->fit_image_type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000213 snprintf(str, sizeof(str), "%s-1", typename);
Simon Glass8e35bb02016-02-22 22:55:51 -0700214 fdt_begin_node(fdt, str);
Michal Simek4a8b6e02018-07-20 12:31:02 +0200215 fdt_property_string(fdt, FIT_DESC_PROP, params->imagename);
216 fdt_property_string(fdt, FIT_TYPE_PROP, typename);
217 fdt_property_string(fdt, FIT_ARCH_PROP,
Simon Glass3a45f382016-06-30 10:52:12 -0600218 genimg_get_arch_short_name(params->arch));
Michal Simek4a8b6e02018-07-20 12:31:02 +0200219 fdt_property_string(fdt, FIT_OS_PROP,
220 genimg_get_os_short_name(params->os));
221 fdt_property_string(fdt, FIT_COMP_PROP,
Simon Glass8e35bb02016-02-22 22:55:51 -0700222 genimg_get_comp_short_name(params->comp));
Michal Simek4a8b6e02018-07-20 12:31:02 +0200223 fdt_property_u32(fdt, FIT_LOAD_PROP, params->addr);
224 fdt_property_u32(fdt, FIT_ENTRY_PROP, params->ep);
Simon Glass8e35bb02016-02-22 22:55:51 -0700225
226 /*
227 * Put data last since it is large. SPL may only load the first part
228 * of the DT, so this way it can access all the above fields.
229 */
Michal Simek4a8b6e02018-07-20 12:31:02 +0200230 ret = fdt_property_file(params, fdt, FIT_DATA_PROP, params->datafile);
Simon Glass8e35bb02016-02-22 22:55:51 -0700231 if (ret)
232 return ret;
233 fdt_end_node(fdt);
234
Simon Glassfb4cce02016-02-22 22:55:52 -0700235 /* Now the device tree files if available */
236 upto = 0;
237 for (cont = params->content_head; cont; cont = cont->next) {
238 if (cont->type != IH_TYPE_FLATDT)
239 continue;
Michal Sojka12e288a2019-09-13 12:43:12 +0200240 typename = genimg_get_type_short_name(cont->type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000241 snprintf(str, sizeof(str), "%s-%d", FIT_FDT_PROP, ++upto);
Simon Glassfb4cce02016-02-22 22:55:52 -0700242 fdt_begin_node(fdt, str);
243
244 get_basename(str, sizeof(str), cont->fname);
Michal Simek4a8b6e02018-07-20 12:31:02 +0200245 fdt_property_string(fdt, FIT_DESC_PROP, str);
246 ret = fdt_property_file(params, fdt, FIT_DATA_PROP,
247 cont->fname);
Simon Glassfb4cce02016-02-22 22:55:52 -0700248 if (ret)
249 return ret;
Michal Simek4a8b6e02018-07-20 12:31:02 +0200250 fdt_property_string(fdt, FIT_TYPE_PROP, typename);
251 fdt_property_string(fdt, FIT_ARCH_PROP,
Simon Glassfb4cce02016-02-22 22:55:52 -0700252 genimg_get_arch_short_name(params->arch));
Michal Simek4a8b6e02018-07-20 12:31:02 +0200253 fdt_property_string(fdt, FIT_COMP_PROP,
Simon Glassfb4cce02016-02-22 22:55:52 -0700254 genimg_get_comp_short_name(IH_COMP_NONE));
255 fdt_end_node(fdt);
256 }
257
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100258 /* And a ramdisk file if available */
259 if (params->fit_ramdisk) {
Andre Przywara2eda8e92017-12-04 02:05:12 +0000260 fdt_begin_node(fdt, FIT_RAMDISK_PROP "-1");
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100261
Michal Simek4a8b6e02018-07-20 12:31:02 +0200262 fdt_property_string(fdt, FIT_TYPE_PROP, FIT_RAMDISK_PROP);
263 fdt_property_string(fdt, FIT_OS_PROP,
264 genimg_get_os_short_name(params->os));
Michal Sojka12e288a2019-09-13 12:43:12 +0200265 fdt_property_string(fdt, FIT_ARCH_PROP,
266 genimg_get_arch_short_name(params->arch));
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100267
Michal Simek4a8b6e02018-07-20 12:31:02 +0200268 ret = fdt_property_file(params, fdt, FIT_DATA_PROP,
269 params->fit_ramdisk);
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100270 if (ret)
271 return ret;
272
273 fdt_end_node(fdt);
274 }
275
Simon Glass8e35bb02016-02-22 22:55:51 -0700276 fdt_end_node(fdt);
277
278 return 0;
279}
280
281/**
282 * fit_write_configs() - Write out a list of configurations to the FIT
283 *
Simon Glassfb4cce02016-02-22 22:55:52 -0700284 * If there are device tree files, we include a configuration for each, which
285 * selects the main image (params->datafile) and its corresponding device
286 * tree file.
287 *
288 * Otherwise we just create a configuration with the main image in it.
Simon Glass8e35bb02016-02-22 22:55:51 -0700289 */
290static void fit_write_configs(struct image_tool_params *params, char *fdt)
291{
Simon Glassfb4cce02016-02-22 22:55:52 -0700292 struct content_info *cont;
Simon Glass8e35bb02016-02-22 22:55:51 -0700293 const char *typename;
294 char str[100];
Simon Glassfb4cce02016-02-22 22:55:52 -0700295 int upto;
Simon Glass8e35bb02016-02-22 22:55:51 -0700296
297 fdt_begin_node(fdt, "configurations");
Michal Simek4a8b6e02018-07-20 12:31:02 +0200298 fdt_property_string(fdt, FIT_DEFAULT_PROP, "conf-1");
Simon Glass8e35bb02016-02-22 22:55:51 -0700299
Simon Glassfb4cce02016-02-22 22:55:52 -0700300 upto = 0;
301 for (cont = params->content_head; cont; cont = cont->next) {
302 if (cont->type != IH_TYPE_FLATDT)
303 continue;
304 typename = genimg_get_type_short_name(cont->type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000305 snprintf(str, sizeof(str), "conf-%d", ++upto);
Simon Glassfb4cce02016-02-22 22:55:52 -0700306 fdt_begin_node(fdt, str);
307
308 get_basename(str, sizeof(str), cont->fname);
Michal Simek4a8b6e02018-07-20 12:31:02 +0200309 fdt_property_string(fdt, FIT_DESC_PROP, str);
Simon Glassfb4cce02016-02-22 22:55:52 -0700310
311 typename = genimg_get_type_short_name(params->fit_image_type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000312 snprintf(str, sizeof(str), "%s-1", typename);
Simon Glassfb4cce02016-02-22 22:55:52 -0700313 fdt_property_string(fdt, typename, str);
Abel Vesacabde442019-03-12 08:34:32 +0000314 fdt_property_string(fdt, FIT_LOADABLE_PROP, str);
Simon Glassfb4cce02016-02-22 22:55:52 -0700315
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100316 if (params->fit_ramdisk)
317 fdt_property_string(fdt, FIT_RAMDISK_PROP,
Andre Przywara2eda8e92017-12-04 02:05:12 +0000318 FIT_RAMDISK_PROP "-1");
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100319
Andre Przywara2eda8e92017-12-04 02:05:12 +0000320 snprintf(str, sizeof(str), FIT_FDT_PROP "-%d", upto);
Simon Glassfb4cce02016-02-22 22:55:52 -0700321 fdt_property_string(fdt, FIT_FDT_PROP, str);
322 fdt_end_node(fdt);
323 }
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100324
Simon Glassfb4cce02016-02-22 22:55:52 -0700325 if (!upto) {
Andre Przywara2eda8e92017-12-04 02:05:12 +0000326 fdt_begin_node(fdt, "conf-1");
Simon Glassfb4cce02016-02-22 22:55:52 -0700327 typename = genimg_get_type_short_name(params->fit_image_type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000328 snprintf(str, sizeof(str), "%s-1", typename);
Simon Glassfb4cce02016-02-22 22:55:52 -0700329 fdt_property_string(fdt, typename, str);
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100330
331 if (params->fit_ramdisk)
332 fdt_property_string(fdt, FIT_RAMDISK_PROP,
Andre Przywara2eda8e92017-12-04 02:05:12 +0000333 FIT_RAMDISK_PROP "-1");
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100334
Simon Glassfb4cce02016-02-22 22:55:52 -0700335 fdt_end_node(fdt);
336 }
Simon Glass8e35bb02016-02-22 22:55:51 -0700337
338 fdt_end_node(fdt);
339}
340
341static int fit_build_fdt(struct image_tool_params *params, char *fdt, int size)
342{
343 int ret;
344
345 ret = fdt_create(fdt, size);
346 if (ret)
347 return ret;
348 fdt_finish_reservemap(fdt);
349 fdt_begin_node(fdt, "");
Michal Simek4a8b6e02018-07-20 12:31:02 +0200350 fdt_property_strf(fdt, FIT_DESC_PROP,
Simon Glass8e35bb02016-02-22 22:55:51 -0700351 "%s image with one or more FDT blobs",
352 genimg_get_type_name(params->fit_image_type));
353 fdt_property_strf(fdt, "creator", "U-Boot mkimage %s", PLAIN_VERSION);
354 fdt_property_u32(fdt, "#address-cells", 1);
355 ret = fit_write_images(params, fdt);
356 if (ret)
357 return ret;
358 fit_write_configs(params, fdt);
359 fdt_end_node(fdt);
360 ret = fdt_finish(fdt);
361 if (ret)
362 return ret;
363
364 return fdt_totalsize(fdt);
365}
366
367static int fit_build(struct image_tool_params *params, const char *fname)
368{
369 char *buf;
370 int size;
371 int ret;
372 int fd;
373
374 size = fit_calc_size(params);
375 if (size < 0)
376 return -1;
377 buf = malloc(size);
378 if (!buf) {
379 fprintf(stderr, "%s: Out of memory (%d bytes)\n",
380 params->cmdname, size);
381 return -1;
382 }
383 ret = fit_build_fdt(params, buf, size);
384 if (ret < 0) {
385 fprintf(stderr, "%s: Failed to build FIT image\n",
386 params->cmdname);
Simon Glass7b0bbd82016-03-16 07:45:41 -0600387 goto err_buf;
Simon Glass8e35bb02016-02-22 22:55:51 -0700388 }
389 size = ret;
390 fd = open(fname, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0666);
391 if (fd < 0) {
392 fprintf(stderr, "%s: Can't open %s: %s\n",
393 params->cmdname, fname, strerror(errno));
Tom Rini3c2dff52017-09-26 22:14:44 -0400394 goto err_buf;
Simon Glass8e35bb02016-02-22 22:55:51 -0700395 }
396 ret = write(fd, buf, size);
397 if (ret != size) {
398 fprintf(stderr, "%s: Can't write %s: %s\n",
399 params->cmdname, fname, strerror(errno));
Simon Glass8e35bb02016-02-22 22:55:51 -0700400 goto err;
401 }
402 close(fd);
Simon Glass7b0bbd82016-03-16 07:45:41 -0600403 free(buf);
Simon Glass8e35bb02016-02-22 22:55:51 -0700404
405 return 0;
406err:
Simon Glass7b0bbd82016-03-16 07:45:41 -0600407 close(fd);
408err_buf:
Simon Glass8e35bb02016-02-22 22:55:51 -0700409 free(buf);
410 return -1;
411}
412
413/**
Simon Glass722ebc82016-02-22 22:55:53 -0700414 * fit_extract_data() - Move all data outside the FIT
415 *
416 * This takes a normal FIT file and removes all the 'data' properties from it.
417 * The data is placed in an area after the FIT so that it can be accessed
418 * using an offset into that area. The 'data' properties turn into
419 * 'data-offset' properties.
420 *
421 * This function cannot cope with FITs with 'data-offset' properties. All
422 * data must be in 'data' properties on entry.
423 */
424static int fit_extract_data(struct image_tool_params *params, const char *fname)
425{
Kever Yangebfe6112020-03-30 11:56:24 +0800426 void *buf = NULL;
Simon Glass722ebc82016-02-22 22:55:53 -0700427 int buf_ptr;
428 int fit_size, new_size;
429 int fd;
430 struct stat sbuf;
431 void *fdt;
432 int ret;
433 int images;
434 int node;
Kever Yangebfe6112020-03-30 11:56:24 +0800435 int image_number;
436 int align_size;
Simon Glass722ebc82016-02-22 22:55:53 -0700437
Tom Rini7946a812020-05-06 11:05:17 -0400438 align_size = params->bl_len ? params->bl_len : 4;
Luca Boccassi7d574852019-05-14 19:35:02 +0100439 fd = mmap_fdt(params->cmdname, fname, 0, &fdt, &sbuf, false, false);
Simon Glass722ebc82016-02-22 22:55:53 -0700440 if (fd < 0)
441 return -EIO;
442 fit_size = fdt_totalsize(fdt);
443
Simon Glass722ebc82016-02-22 22:55:53 -0700444 images = fdt_path_offset(fdt, FIT_IMAGES_PATH);
445 if (images < 0) {
446 debug("%s: Cannot find /images node: %d\n", __func__, images);
447 ret = -EINVAL;
Simon Glassb97d71e2016-03-16 07:45:39 -0600448 goto err_munmap;
Simon Glass722ebc82016-02-22 22:55:53 -0700449 }
Kever Yangebfe6112020-03-30 11:56:24 +0800450 image_number = fdtdec_get_child_count(fdt, images);
451
452 /*
453 * Allocate space to hold the image data we will extract,
454 * extral space allocate for image alignment to prevent overflow.
455 */
456 buf = malloc(fit_size + (align_size * image_number));
457 if (!buf) {
458 ret = -ENOMEM;
459 goto err_munmap;
460 }
461 buf_ptr = 0;
Simon Glass722ebc82016-02-22 22:55:53 -0700462
463 for (node = fdt_first_subnode(fdt, images);
464 node >= 0;
465 node = fdt_next_subnode(fdt, node)) {
466 const char *data;
467 int len;
468
Michal Simek4a8b6e02018-07-20 12:31:02 +0200469 data = fdt_getprop(fdt, node, FIT_DATA_PROP, &len);
Simon Glass722ebc82016-02-22 22:55:53 -0700470 if (!data)
471 continue;
472 memcpy(buf + buf_ptr, data, len);
473 debug("Extracting data size %x\n", len);
474
Michal Simek4a8b6e02018-07-20 12:31:02 +0200475 ret = fdt_delprop(fdt, node, FIT_DATA_PROP);
Simon Glass722ebc82016-02-22 22:55:53 -0700476 if (ret) {
477 ret = -EPERM;
Simon Glassb97d71e2016-03-16 07:45:39 -0600478 goto err_munmap;
Simon Glass722ebc82016-02-22 22:55:53 -0700479 }
Teddy Reedf8f91072016-06-09 19:38:02 -0700480 if (params->external_offset > 0) {
481 /* An external offset positions the data absolutely. */
Michal Simek4a8b6e02018-07-20 12:31:02 +0200482 fdt_setprop_u32(fdt, node, FIT_DATA_POSITION_PROP,
Teddy Reedf8f91072016-06-09 19:38:02 -0700483 params->external_offset + buf_ptr);
484 } else {
Michal Simek4a8b6e02018-07-20 12:31:02 +0200485 fdt_setprop_u32(fdt, node, FIT_DATA_OFFSET_PROP,
486 buf_ptr);
Teddy Reedf8f91072016-06-09 19:38:02 -0700487 }
Michal Simek4a8b6e02018-07-20 12:31:02 +0200488 fdt_setprop_u32(fdt, node, FIT_DATA_SIZE_PROP, len);
Kever Yangebfe6112020-03-30 11:56:24 +0800489 buf_ptr += ALIGN(len, align_size);
Simon Glass722ebc82016-02-22 22:55:53 -0700490 }
491
492 /* Pack the FDT and place the data after it */
493 fdt_pack(fdt);
494
Kever Yangebfe6112020-03-30 11:56:24 +0800495 new_size = fdt_totalsize(fdt);
Tom Rini7946a812020-05-06 11:05:17 -0400496 new_size = ALIGN(new_size, align_size);
Kever Yangebfe6112020-03-30 11:56:24 +0800497 fdt_set_totalsize(fdt, new_size);
Simon Glass722ebc82016-02-22 22:55:53 -0700498 debug("Size reduced from %x to %x\n", fit_size, fdt_totalsize(fdt));
499 debug("External data size %x\n", buf_ptr);
Simon Glass722ebc82016-02-22 22:55:53 -0700500 munmap(fdt, sbuf.st_size);
501
502 if (ftruncate(fd, new_size)) {
503 debug("%s: Failed to truncate file: %s\n", __func__,
504 strerror(errno));
505 ret = -EIO;
506 goto err;
507 }
Teddy Reedf8f91072016-06-09 19:38:02 -0700508
509 /* Check if an offset for the external data was set. */
510 if (params->external_offset > 0) {
511 if (params->external_offset < new_size) {
512 debug("External offset %x overlaps FIT length %x",
513 params->external_offset, new_size);
514 ret = -EINVAL;
515 goto err;
516 }
517 new_size = params->external_offset;
518 }
Simon Glass722ebc82016-02-22 22:55:53 -0700519 if (lseek(fd, new_size, SEEK_SET) < 0) {
520 debug("%s: Failed to seek to end of file: %s\n", __func__,
521 strerror(errno));
522 ret = -EIO;
523 goto err;
524 }
525 if (write(fd, buf, buf_ptr) != buf_ptr) {
526 debug("%s: Failed to write external data to file %s\n",
527 __func__, strerror(errno));
528 ret = -EIO;
529 goto err;
530 }
Tom Rini3c2dff52017-09-26 22:14:44 -0400531 free(buf);
Simon Glassb97d71e2016-03-16 07:45:39 -0600532 close(fd);
533 return 0;
Simon Glass722ebc82016-02-22 22:55:53 -0700534
Simon Glassb97d71e2016-03-16 07:45:39 -0600535err_munmap:
536 munmap(fdt, sbuf.st_size);
Simon Glass722ebc82016-02-22 22:55:53 -0700537err:
Bin Meng0dbd6e32020-04-18 01:59:11 -0700538 free(buf);
Simon Glass722ebc82016-02-22 22:55:53 -0700539 close(fd);
540 return ret;
541}
542
Simon Glass529fd182016-02-22 22:55:54 -0700543static int fit_import_data(struct image_tool_params *params, const char *fname)
544{
545 void *fdt, *old_fdt;
546 int fit_size, new_size, size, data_base;
547 int fd;
548 struct stat sbuf;
549 int ret;
550 int images;
551 int node;
552
Luca Boccassi7d574852019-05-14 19:35:02 +0100553 fd = mmap_fdt(params->cmdname, fname, 0, &old_fdt, &sbuf, false, false);
Simon Glass529fd182016-02-22 22:55:54 -0700554 if (fd < 0)
555 return -EIO;
556 fit_size = fdt_totalsize(old_fdt);
Kever Yang02560b12020-03-30 11:56:22 +0800557 data_base = ALIGN(fit_size, 4);
Simon Glass529fd182016-02-22 22:55:54 -0700558
559 /* Allocate space to hold the new FIT */
560 size = sbuf.st_size + 16384;
561 fdt = malloc(size);
562 if (!fdt) {
563 fprintf(stderr, "%s: Failed to allocate memory (%d bytes)\n",
564 __func__, size);
565 ret = -ENOMEM;
Lihua Zhao3fc85a72020-04-18 01:59:10 -0700566 goto err_munmap;
Simon Glass529fd182016-02-22 22:55:54 -0700567 }
568 ret = fdt_open_into(old_fdt, fdt, size);
569 if (ret) {
570 debug("%s: Failed to expand FIT: %s\n", __func__,
571 fdt_strerror(errno));
572 ret = -EINVAL;
Lihua Zhao3fc85a72020-04-18 01:59:10 -0700573 goto err_munmap;
Simon Glass529fd182016-02-22 22:55:54 -0700574 }
575
576 images = fdt_path_offset(fdt, FIT_IMAGES_PATH);
577 if (images < 0) {
578 debug("%s: Cannot find /images node: %d\n", __func__, images);
579 ret = -EINVAL;
Lihua Zhao3fc85a72020-04-18 01:59:10 -0700580 goto err_munmap;
Simon Glass529fd182016-02-22 22:55:54 -0700581 }
582
583 for (node = fdt_first_subnode(fdt, images);
584 node >= 0;
585 node = fdt_next_subnode(fdt, node)) {
586 int buf_ptr;
587 int len;
588
589 buf_ptr = fdtdec_get_int(fdt, node, "data-offset", -1);
590 len = fdtdec_get_int(fdt, node, "data-size", -1);
591 if (buf_ptr == -1 || len == -1)
592 continue;
593 debug("Importing data size %x\n", len);
594
595 ret = fdt_setprop(fdt, node, "data", fdt + data_base + buf_ptr,
596 len);
597 if (ret) {
598 debug("%s: Failed to write property: %s\n", __func__,
599 fdt_strerror(ret));
600 ret = -EINVAL;
Lihua Zhao3fc85a72020-04-18 01:59:10 -0700601 goto err_munmap;
Simon Glass529fd182016-02-22 22:55:54 -0700602 }
603 }
604
Lihua Zhao3fc85a72020-04-18 01:59:10 -0700605 munmap(old_fdt, sbuf.st_size);
606
Tom Rinibf52fcd2017-10-07 11:27:59 -0400607 /* Close the old fd so we can re-use it. */
Simon Glass529fd182016-02-22 22:55:54 -0700608 close(fd);
609
610 /* Pack the FDT and place the data after it */
611 fdt_pack(fdt);
612
613 new_size = fdt_totalsize(fdt);
614 debug("Size expanded from %x to %x\n", fit_size, new_size);
615
616 fd = open(fname, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0666);
617 if (fd < 0) {
618 fprintf(stderr, "%s: Can't open %s: %s\n",
619 params->cmdname, fname, strerror(errno));
Tom Rinibf52fcd2017-10-07 11:27:59 -0400620 ret = -EIO;
Lihua Zhao3fc85a72020-04-18 01:59:10 -0700621 goto err;
Simon Glass529fd182016-02-22 22:55:54 -0700622 }
623 if (write(fd, fdt, new_size) != new_size) {
624 debug("%s: Failed to write external data to file %s\n",
625 __func__, strerror(errno));
626 ret = -EIO;
Lihua Zhao3fc85a72020-04-18 01:59:10 -0700627 goto err;
Simon Glass529fd182016-02-22 22:55:54 -0700628 }
Simon Glass529fd182016-02-22 22:55:54 -0700629
Simon Glass6e0ffce2016-03-16 07:45:38 -0600630 free(fdt);
Lihua Zhao3fc85a72020-04-18 01:59:10 -0700631 close(fd);
632 return 0;
633
634err_munmap:
635 munmap(old_fdt, sbuf.st_size);
636err:
637 free(fdt);
638 close(fd);
Simon Glass529fd182016-02-22 22:55:54 -0700639 return ret;
640}
641
Philippe Reynes7298e422019-12-18 18:25:41 +0100642static int copyfile(const char *src, const char *dst)
643{
644 int fd_src = -1, fd_dst = -1;
645 void *buf = NULL;
646 ssize_t size;
647 size_t count;
648 int ret = -1;
649
650 fd_src = open(src, O_RDONLY);
651 if (fd_src < 0) {
652 printf("Can't open file %s (%s)\n", src, strerror(errno));
653 goto out;
654 }
655
Thomas Hebbab5a2b02020-03-01 10:47:53 -0800656 fd_dst = open(dst, O_WRONLY | O_CREAT, 0666);
Philippe Reynes7298e422019-12-18 18:25:41 +0100657 if (fd_dst < 0) {
658 printf("Can't open file %s (%s)\n", dst, strerror(errno));
659 goto out;
660 }
661
662 buf = malloc(512);
663 if (!buf) {
664 printf("Can't allocate buffer to copy file\n");
665 goto out;
666 }
667
668 while (1) {
669 size = read(fd_src, buf, 512);
670 if (size < 0) {
671 printf("Can't read file %s\n", src);
672 goto out;
673 }
674 if (!size)
675 break;
676
677 count = size;
678 size = write(fd_dst, buf, count);
679 if (size < 0) {
680 printf("Can't write file %s\n", dst);
681 goto out;
682 }
683 }
684
685 ret = 0;
686
687 out:
688 if (fd_src >= 0)
689 close(fd_src);
690 if (fd_dst >= 0)
691 close(fd_dst);
692 if (buf)
693 free(buf);
694
695 return ret;
696}
697
Simon Glass722ebc82016-02-22 22:55:53 -0700698/**
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530699 * fit_handle_file - main FIT file processing function
700 *
701 * fit_handle_file() runs dtc to convert .its to .itb, includes
702 * binary data, updates timestamp property and calculates hashes.
703 *
704 * datafile - .its file
705 * imagefile - .itb file
706 *
707 * returns:
708 * only on success, otherwise calls exit (EXIT_FAILURE);
709 */
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -0700710static int fit_handle_file(struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530711{
712 char tmpfile[MKIMAGE_MAX_TMPFILE_LEN];
Philippe Reynes7298e422019-12-18 18:25:41 +0100713 char bakfile[MKIMAGE_MAX_TMPFILE_LEN + 4] = {0};
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530714 char cmd[MKIMAGE_MAX_DTC_CMDLINE_LEN];
Simon Glassa9468112014-06-02 22:04:53 -0600715 size_t size_inc;
716 int ret;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530717
718 /* Flattened Image Tree (FIT) format handling */
719 debug ("FIT format handling\n");
720
721 /* call dtc to include binary properties into the tmp file */
722 if (strlen (params->imagefile) +
723 strlen (MKIMAGE_TMPFILE_SUFFIX) + 1 > sizeof (tmpfile)) {
724 fprintf (stderr, "%s: Image file name (%s) too long, "
725 "can't create tmpfile",
726 params->imagefile, params->cmdname);
727 return (EXIT_FAILURE);
728 }
729 sprintf (tmpfile, "%s%s", params->imagefile, MKIMAGE_TMPFILE_SUFFIX);
730
Simon Glass95d77b42013-06-13 15:10:05 -0700731 /* We either compile the source file, or use the existing FIT image */
Simon Glass8e35bb02016-02-22 22:55:51 -0700732 if (params->auto_its) {
733 if (fit_build(params, tmpfile)) {
734 fprintf(stderr, "%s: failed to build FIT\n",
735 params->cmdname);
736 return EXIT_FAILURE;
737 }
738 *cmd = '\0';
739 } else if (params->datafile) {
Stefan Theil63f881d2018-03-08 09:00:13 +0100740 /* dtc -I dts -O dtb -p 500 -o tmpfile datafile */
741 snprintf(cmd, sizeof(cmd), "%s %s -o \"%s\" \"%s\"",
742 MKIMAGE_DTC, params->dtc, tmpfile, params->datafile);
Simon Glass95d77b42013-06-13 15:10:05 -0700743 debug("Trying to execute \"%s\"\n", cmd);
744 } else {
Mirza, Taimoora6e98102017-10-04 20:28:03 +0500745 snprintf(cmd, sizeof(cmd), "cp \"%s\" \"%s\"",
Simon Glass95d77b42013-06-13 15:10:05 -0700746 params->imagefile, tmpfile);
747 }
Sven Roedererea5d3732020-04-27 02:08:39 +0200748 if (strlen(cmd) >= MKIMAGE_MAX_DTC_CMDLINE_LEN - 1) {
749 fprintf(stderr, "WARNING: command-line for FIT creation might be truncated and will probably fail.\n");
750 }
Philippe Reynes7298e422019-12-18 18:25:41 +0100751
Simon Glass8e35bb02016-02-22 22:55:51 -0700752 if (*cmd && system(cmd) == -1) {
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530753 fprintf (stderr, "%s: system(%s) failed: %s\n",
754 params->cmdname, cmd, strerror(errno));
Simon Glassaa6d6db2013-05-08 08:05:57 +0000755 goto err_system;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530756 }
757
Simon Glass529fd182016-02-22 22:55:54 -0700758 /* Move the data so it is internal to the FIT, if needed */
759 ret = fit_import_data(params, tmpfile);
760 if (ret)
761 goto err_system;
762
Simon Glassa9468112014-06-02 22:04:53 -0600763 /*
Philippe Reynes7298e422019-12-18 18:25:41 +0100764 * Copy the tmpfile to bakfile, then in the following loop
765 * we copy bakfile to tmpfile. So we always start from the
766 * beginning.
767 */
768 sprintf(bakfile, "%s%s", tmpfile, ".bak");
769 rename(tmpfile, bakfile);
770
771 /*
Simon Glassa9468112014-06-02 22:04:53 -0600772 * Set hashes for images in the blob. Unfortunately we may need more
773 * space in either FDT, so keep trying until we succeed.
774 *
775 * Note: this is pretty inefficient for signing, since we must
776 * calculate the signature every time. It would be better to calculate
777 * all the data and then store it in a separate step. However, this
778 * would be considerably more complex to implement. Generally a few
779 * steps of this loop is enough to sign with several keys.
780 */
781 for (size_inc = 0; size_inc < 64 * 1024; size_inc += 1024) {
Philippe Reynes7298e422019-12-18 18:25:41 +0100782 if (copyfile(bakfile, tmpfile) < 0) {
783 printf("Can't copy %s to %s\n", bakfile, tmpfile);
784 ret = -EIO;
785 break;
786 }
Simon Glassa9468112014-06-02 22:04:53 -0600787 ret = fit_add_file_data(params, size_inc, tmpfile);
788 if (!ret || ret != -ENOSPC)
789 break;
Simon Glasse29495d2013-06-13 15:10:04 -0700790 }
791
Simon Glassa9468112014-06-02 22:04:53 -0600792 if (ret) {
Simon Glass655cc692016-07-03 09:40:43 -0600793 fprintf(stderr, "%s Can't add hashes to FIT blob: %d\n",
794 params->cmdname, ret);
Simon Glassa9468112014-06-02 22:04:53 -0600795 goto err_system;
Simon Glasse29495d2013-06-13 15:10:04 -0700796 }
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530797
Simon Glass722ebc82016-02-22 22:55:53 -0700798 /* Move the data so it is external to the FIT, if requested */
799 if (params->external_data) {
800 ret = fit_extract_data(params, tmpfile);
801 if (ret)
802 goto err_system;
803 }
804
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530805 if (rename (tmpfile, params->imagefile) == -1) {
806 fprintf (stderr, "%s: Can't rename %s to %s: %s\n",
807 params->cmdname, tmpfile, params->imagefile,
808 strerror (errno));
809 unlink (tmpfile);
Philippe Reynes7298e422019-12-18 18:25:41 +0100810 unlink(bakfile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530811 unlink (params->imagefile);
Simon Glassa9468112014-06-02 22:04:53 -0600812 return EXIT_FAILURE;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530813 }
Philippe Reynes7298e422019-12-18 18:25:41 +0100814 unlink(bakfile);
Simon Glassa9468112014-06-02 22:04:53 -0600815 return EXIT_SUCCESS;
Simon Glassaa6d6db2013-05-08 08:05:57 +0000816
Simon Glassaa6d6db2013-05-08 08:05:57 +0000817err_system:
818 unlink(tmpfile);
Philippe Reynes7298e422019-12-18 18:25:41 +0100819 unlink(bakfile);
Simon Glassaa6d6db2013-05-08 08:05:57 +0000820 return -1;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530821}
822
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200823/**
824 * fit_image_extract - extract a FIT component image
825 * @fit: pointer to the FIT format image header
826 * @image_noffset: offset of the component image node
827 * @file_name: name of the file to store the FIT sub-image
828 *
829 * returns:
830 * zero in case of success or a negative value if fail.
831 */
832static int fit_image_extract(
833 const void *fit,
834 int image_noffset,
835 const char *file_name)
836{
837 const void *file_data;
838 size_t file_size = 0;
Andrew F. Davise5b56282019-09-17 17:09:34 -0400839 int ret;
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200840
Andrew F. Davise5b56282019-09-17 17:09:34 -0400841 /* get the data address and size of component at offset "image_noffset" */
842 ret = fit_image_get_data_and_size(fit, image_noffset, &file_data, &file_size);
843 if (ret) {
844 fprintf(stderr, "Could not get component information\n");
845 return ret;
846 }
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200847
848 /* save the "file_data" into the file specified by "file_name" */
849 return imagetool_save_subimage(file_name, (ulong) file_data, file_size);
850}
851
852/**
853 * fit_extract_contents - retrieve a sub-image component from the FIT image
854 * @ptr: pointer to the FIT format image header
855 * @params: command line parameters
856 *
857 * returns:
858 * zero in case of success or a negative value if fail.
859 */
860static int fit_extract_contents(void *ptr, struct image_tool_params *params)
861{
862 int images_noffset;
863 int noffset;
864 int ndepth;
865 const void *fit = ptr;
866 int count = 0;
867 const char *p;
868
869 /* Indent string is defined in header image.h */
870 p = IMAGE_INDENT_STRING;
871
872 if (!fit_check_format(fit)) {
873 printf("Bad FIT image format\n");
874 return -1;
875 }
876
877 /* Find images parent node offset */
878 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
879 if (images_noffset < 0) {
880 printf("Can't find images parent node '%s' (%s)\n",
881 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
882 return -1;
883 }
884
885 /* Avoid any overrun */
886 count = fit_get_subimage_count(fit, images_noffset);
887 if ((params->pflag < 0) || (count <= params->pflag)) {
888 printf("No such component at '%d'\n", params->pflag);
889 return -1;
890 }
891
892 /* Process its subnodes, extract the desired component from image */
893 for (ndepth = 0, count = 0,
894 noffset = fdt_next_node(fit, images_noffset, &ndepth);
895 (noffset >= 0) && (ndepth > 0);
896 noffset = fdt_next_node(fit, noffset, &ndepth)) {
897 if (ndepth == 1) {
898 /*
899 * Direct child node of the images parent node,
900 * i.e. component image node.
901 */
902 if (params->pflag == count) {
903 printf("Extracted:\n%s Image %u (%s)\n", p,
904 count, fit_get_name(fit, noffset, NULL));
905
906 fit_image_print(fit, noffset, p);
907
908 return fit_image_extract(fit, noffset,
909 params->outfile);
910 }
911
912 count++;
913 }
914 }
915
916 return 0;
917}
918
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -0700919static int fit_check_params(struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530920{
Simon Glass8e35bb02016-02-22 22:55:51 -0700921 if (params->auto_its)
922 return 0;
Heinrich Schuchardt58194662019-12-11 13:51:38 +0100923 return ((params->dflag && params->fflag) ||
924 (params->fflag && params->lflag) ||
925 (params->lflag && params->dflag));
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530926}
927
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200928U_BOOT_IMAGE_TYPE(
929 fitimage,
930 "FIT Image support",
931 sizeof(image_header_t),
932 (void *)&header,
933 fit_check_params,
934 fit_verify_header,
935 fit_print_contents,
936 NULL,
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200937 fit_extract_contents,
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200938 fit_check_image_types,
939 fit_handle_file,
940 NULL /* FIT images use DTB header */
941);