blob: f32ee49575b0a82d3bcf01cc8d86b56db0c959a2 [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>
Simon Glass8e35bb02016-02-22 22:55:51 -070020#include <stdarg.h>
21#include <version.h>
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053022#include <u-boot/crc.h>
23
24static image_header_t header;
25
Simon Glassa9468112014-06-02 22:04:53 -060026static int fit_add_file_data(struct image_tool_params *params, size_t size_inc,
27 const char *tmpfile)
28{
29 int tfd, destfd = 0;
30 void *dest_blob = NULL;
31 off_t destfd_size = 0;
32 struct stat sbuf;
33 void *ptr;
34 int ret = 0;
35
Luca Boccassi7d574852019-05-14 19:35:02 +010036 tfd = mmap_fdt(params->cmdname, tmpfile, size_inc, &ptr, &sbuf, true,
37 false);
Simon Glassa9468112014-06-02 22:04:53 -060038 if (tfd < 0)
39 return -EIO;
40
41 if (params->keydest) {
42 struct stat dest_sbuf;
43
44 destfd = mmap_fdt(params->cmdname, params->keydest, size_inc,
Luca Boccassi7d574852019-05-14 19:35:02 +010045 &dest_blob, &dest_sbuf, false,
46 false);
Simon Glassa9468112014-06-02 22:04:53 -060047 if (destfd < 0) {
48 ret = -EIO;
49 goto err_keydest;
50 }
51 destfd_size = dest_sbuf.st_size;
52 }
53
54 /* for first image creation, add a timestamp at offset 0 i.e., root */
Vagrant Cascadian58470842016-06-16 12:28:40 -070055 if (params->datafile) {
Alex Kiernan87925df2018-06-20 20:10:51 +000056 time_t time = imagetool_get_source_date(params->cmdname,
57 sbuf.st_mtime);
Vagrant Cascadian58470842016-06-16 12:28:40 -070058 ret = fit_set_timestamp(ptr, 0, time);
59 }
Simon Glassa9468112014-06-02 22:04:53 -060060
61 if (!ret) {
Philippe Reynes7298e422019-12-18 18:25:41 +010062 ret = fit_cipher_data(params->keydir, dest_blob, ptr,
63 params->comment,
64 params->require_keys,
65 params->engine_id,
66 params->cmdname);
67 }
68
69 if (!ret) {
Simon Glassa9468112014-06-02 22:04:53 -060070 ret = fit_add_verification_data(params->keydir, dest_blob, ptr,
71 params->comment,
George McCollisterf1ca1fd2017-01-06 13:14:17 -060072 params->require_keys,
Alex Kiernan795f4522018-06-20 20:10:52 +000073 params->engine_id,
74 params->cmdname);
Simon Glassa9468112014-06-02 22:04:53 -060075 }
76
77 if (dest_blob) {
78 munmap(dest_blob, destfd_size);
79 close(destfd);
80 }
81
82err_keydest:
83 munmap(ptr, sbuf.st_size);
84 close(tfd);
Simon Glassa9468112014-06-02 22:04:53 -060085 return ret;
86}
87
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053088/**
Simon Glass8e35bb02016-02-22 22:55:51 -070089 * fit_calc_size() - Calculate the approximate size of the FIT we will generate
90 */
91static int fit_calc_size(struct image_tool_params *params)
92{
Simon Glassfb4cce02016-02-22 22:55:52 -070093 struct content_info *cont;
Simon Glass8e35bb02016-02-22 22:55:51 -070094 int size, total_size;
95
96 size = imagetool_get_filesize(params, params->datafile);
97 if (size < 0)
98 return -1;
Simon Glass8e35bb02016-02-22 22:55:51 -070099 total_size = size;
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100100
101 if (params->fit_ramdisk) {
102 size = imagetool_get_filesize(params, params->fit_ramdisk);
103 if (size < 0)
104 return -1;
105 total_size += size;
106 }
107
Simon Glassfb4cce02016-02-22 22:55:52 -0700108 for (cont = params->content_head; cont; cont = cont->next) {
109 size = imagetool_get_filesize(params, cont->fname);
110 if (size < 0)
111 return -1;
Simon Glass8e35bb02016-02-22 22:55:51 -0700112
Simon Glassfb4cce02016-02-22 22:55:52 -0700113 /* Add space for properties */
114 total_size += size + 300;
115 }
Simon Glass8e35bb02016-02-22 22:55:51 -0700116
117 /* Add plenty of space for headers, properties, nodes, etc. */
118 total_size += 4096;
119
120 return total_size;
121}
122
123static int fdt_property_file(struct image_tool_params *params,
124 void *fdt, const char *name, const char *fname)
125{
126 struct stat sbuf;
127 void *ptr;
128 int ret;
129 int fd;
130
131 fd = open(fname, O_RDWR | O_BINARY);
132 if (fd < 0) {
133 fprintf(stderr, "%s: Can't open %s: %s\n",
134 params->cmdname, fname, strerror(errno));
135 return -1;
136 }
137
138 if (fstat(fd, &sbuf) < 0) {
139 fprintf(stderr, "%s: Can't stat %s: %s\n",
140 params->cmdname, fname, strerror(errno));
141 goto err;
142 }
143
144 ret = fdt_property_placeholder(fdt, "data", sbuf.st_size, &ptr);
145 if (ret)
Simon Glass3bd3a542016-03-16 07:45:42 -0600146 goto err;
Simon Glass8e35bb02016-02-22 22:55:51 -0700147 ret = read(fd, ptr, sbuf.st_size);
148 if (ret != sbuf.st_size) {
149 fprintf(stderr, "%s: Can't read %s: %s\n",
150 params->cmdname, fname, strerror(errno));
151 goto err;
152 }
Simon Glass3bd3a542016-03-16 07:45:42 -0600153 close(fd);
Simon Glass8e35bb02016-02-22 22:55:51 -0700154
155 return 0;
156err:
157 close(fd);
158 return -1;
159}
160
161static int fdt_property_strf(void *fdt, const char *name, const char *fmt, ...)
162{
163 char str[100];
164 va_list ptr;
165
166 va_start(ptr, fmt);
167 vsnprintf(str, sizeof(str), fmt, ptr);
168 va_end(ptr);
169 return fdt_property_string(fdt, name, str);
170}
171
Simon Glassfb4cce02016-02-22 22:55:52 -0700172static void get_basename(char *str, int size, const char *fname)
173{
174 const char *p, *start, *end;
175 int len;
176
177 /*
178 * Use the base name as the 'name' field. So for example:
179 *
180 * "arch/arm/dts/sun7i-a20-bananapro.dtb"
181 * becomes "sun7i-a20-bananapro"
182 */
183 p = strrchr(fname, '/');
184 start = p ? p + 1 : fname;
185 p = strrchr(fname, '.');
186 end = p ? p : fname + strlen(fname);
187 len = end - start;
188 if (len >= size)
189 len = size - 1;
190 memcpy(str, start, len);
191 str[len] = '\0';
192}
193
Simon Glass8e35bb02016-02-22 22:55:51 -0700194/**
195 * fit_write_images() - Write out a list of images to the FIT
196 *
Simon Glassfb4cce02016-02-22 22:55:52 -0700197 * We always include the main image (params->datafile). If there are device
Andre Przywara2eda8e92017-12-04 02:05:12 +0000198 * tree files, we include an fdt- node for each of those too.
Simon Glass8e35bb02016-02-22 22:55:51 -0700199 */
200static int fit_write_images(struct image_tool_params *params, char *fdt)
201{
Simon Glassfb4cce02016-02-22 22:55:52 -0700202 struct content_info *cont;
Simon Glass8e35bb02016-02-22 22:55:51 -0700203 const char *typename;
204 char str[100];
Simon Glassfb4cce02016-02-22 22:55:52 -0700205 int upto;
Simon Glass8e35bb02016-02-22 22:55:51 -0700206 int ret;
207
208 fdt_begin_node(fdt, "images");
209
210 /* First the main image */
211 typename = genimg_get_type_short_name(params->fit_image_type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000212 snprintf(str, sizeof(str), "%s-1", typename);
Simon Glass8e35bb02016-02-22 22:55:51 -0700213 fdt_begin_node(fdt, str);
Michal Simek4a8b6e02018-07-20 12:31:02 +0200214 fdt_property_string(fdt, FIT_DESC_PROP, params->imagename);
215 fdt_property_string(fdt, FIT_TYPE_PROP, typename);
216 fdt_property_string(fdt, FIT_ARCH_PROP,
Simon Glass3a45f382016-06-30 10:52:12 -0600217 genimg_get_arch_short_name(params->arch));
Michal Simek4a8b6e02018-07-20 12:31:02 +0200218 fdt_property_string(fdt, FIT_OS_PROP,
219 genimg_get_os_short_name(params->os));
220 fdt_property_string(fdt, FIT_COMP_PROP,
Simon Glass8e35bb02016-02-22 22:55:51 -0700221 genimg_get_comp_short_name(params->comp));
Michal Simek4a8b6e02018-07-20 12:31:02 +0200222 fdt_property_u32(fdt, FIT_LOAD_PROP, params->addr);
223 fdt_property_u32(fdt, FIT_ENTRY_PROP, params->ep);
Simon Glass8e35bb02016-02-22 22:55:51 -0700224
225 /*
226 * Put data last since it is large. SPL may only load the first part
227 * of the DT, so this way it can access all the above fields.
228 */
Michal Simek4a8b6e02018-07-20 12:31:02 +0200229 ret = fdt_property_file(params, fdt, FIT_DATA_PROP, params->datafile);
Simon Glass8e35bb02016-02-22 22:55:51 -0700230 if (ret)
231 return ret;
232 fdt_end_node(fdt);
233
Simon Glassfb4cce02016-02-22 22:55:52 -0700234 /* Now the device tree files if available */
235 upto = 0;
236 for (cont = params->content_head; cont; cont = cont->next) {
237 if (cont->type != IH_TYPE_FLATDT)
238 continue;
Michal Sojka12e288a2019-09-13 12:43:12 +0200239 typename = genimg_get_type_short_name(cont->type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000240 snprintf(str, sizeof(str), "%s-%d", FIT_FDT_PROP, ++upto);
Simon Glassfb4cce02016-02-22 22:55:52 -0700241 fdt_begin_node(fdt, str);
242
243 get_basename(str, sizeof(str), cont->fname);
Michal Simek4a8b6e02018-07-20 12:31:02 +0200244 fdt_property_string(fdt, FIT_DESC_PROP, str);
245 ret = fdt_property_file(params, fdt, FIT_DATA_PROP,
246 cont->fname);
Simon Glassfb4cce02016-02-22 22:55:52 -0700247 if (ret)
248 return ret;
Michal Simek4a8b6e02018-07-20 12:31:02 +0200249 fdt_property_string(fdt, FIT_TYPE_PROP, typename);
250 fdt_property_string(fdt, FIT_ARCH_PROP,
Simon Glassfb4cce02016-02-22 22:55:52 -0700251 genimg_get_arch_short_name(params->arch));
Michal Simek4a8b6e02018-07-20 12:31:02 +0200252 fdt_property_string(fdt, FIT_COMP_PROP,
Simon Glassfb4cce02016-02-22 22:55:52 -0700253 genimg_get_comp_short_name(IH_COMP_NONE));
254 fdt_end_node(fdt);
255 }
256
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100257 /* And a ramdisk file if available */
258 if (params->fit_ramdisk) {
Andre Przywara2eda8e92017-12-04 02:05:12 +0000259 fdt_begin_node(fdt, FIT_RAMDISK_PROP "-1");
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100260
Michal Simek4a8b6e02018-07-20 12:31:02 +0200261 fdt_property_string(fdt, FIT_TYPE_PROP, FIT_RAMDISK_PROP);
262 fdt_property_string(fdt, FIT_OS_PROP,
263 genimg_get_os_short_name(params->os));
Michal Sojka12e288a2019-09-13 12:43:12 +0200264 fdt_property_string(fdt, FIT_ARCH_PROP,
265 genimg_get_arch_short_name(params->arch));
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100266
Michal Simek4a8b6e02018-07-20 12:31:02 +0200267 ret = fdt_property_file(params, fdt, FIT_DATA_PROP,
268 params->fit_ramdisk);
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100269 if (ret)
270 return ret;
271
272 fdt_end_node(fdt);
273 }
274
Simon Glass8e35bb02016-02-22 22:55:51 -0700275 fdt_end_node(fdt);
276
277 return 0;
278}
279
280/**
281 * fit_write_configs() - Write out a list of configurations to the FIT
282 *
Simon Glassfb4cce02016-02-22 22:55:52 -0700283 * If there are device tree files, we include a configuration for each, which
284 * selects the main image (params->datafile) and its corresponding device
285 * tree file.
286 *
287 * Otherwise we just create a configuration with the main image in it.
Simon Glass8e35bb02016-02-22 22:55:51 -0700288 */
289static void fit_write_configs(struct image_tool_params *params, char *fdt)
290{
Simon Glassfb4cce02016-02-22 22:55:52 -0700291 struct content_info *cont;
Simon Glass8e35bb02016-02-22 22:55:51 -0700292 const char *typename;
293 char str[100];
Simon Glassfb4cce02016-02-22 22:55:52 -0700294 int upto;
Simon Glass8e35bb02016-02-22 22:55:51 -0700295
296 fdt_begin_node(fdt, "configurations");
Michal Simek4a8b6e02018-07-20 12:31:02 +0200297 fdt_property_string(fdt, FIT_DEFAULT_PROP, "conf-1");
Simon Glass8e35bb02016-02-22 22:55:51 -0700298
Simon Glassfb4cce02016-02-22 22:55:52 -0700299 upto = 0;
300 for (cont = params->content_head; cont; cont = cont->next) {
301 if (cont->type != IH_TYPE_FLATDT)
302 continue;
303 typename = genimg_get_type_short_name(cont->type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000304 snprintf(str, sizeof(str), "conf-%d", ++upto);
Simon Glassfb4cce02016-02-22 22:55:52 -0700305 fdt_begin_node(fdt, str);
306
307 get_basename(str, sizeof(str), cont->fname);
Michal Simek4a8b6e02018-07-20 12:31:02 +0200308 fdt_property_string(fdt, FIT_DESC_PROP, str);
Simon Glassfb4cce02016-02-22 22:55:52 -0700309
310 typename = genimg_get_type_short_name(params->fit_image_type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000311 snprintf(str, sizeof(str), "%s-1", typename);
Simon Glassfb4cce02016-02-22 22:55:52 -0700312 fdt_property_string(fdt, typename, str);
Abel Vesacabde442019-03-12 08:34:32 +0000313 fdt_property_string(fdt, FIT_LOADABLE_PROP, str);
Simon Glassfb4cce02016-02-22 22:55:52 -0700314
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100315 if (params->fit_ramdisk)
316 fdt_property_string(fdt, FIT_RAMDISK_PROP,
Andre Przywara2eda8e92017-12-04 02:05:12 +0000317 FIT_RAMDISK_PROP "-1");
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100318
Andre Przywara2eda8e92017-12-04 02:05:12 +0000319 snprintf(str, sizeof(str), FIT_FDT_PROP "-%d", upto);
Simon Glassfb4cce02016-02-22 22:55:52 -0700320 fdt_property_string(fdt, FIT_FDT_PROP, str);
321 fdt_end_node(fdt);
322 }
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100323
Simon Glassfb4cce02016-02-22 22:55:52 -0700324 if (!upto) {
Andre Przywara2eda8e92017-12-04 02:05:12 +0000325 fdt_begin_node(fdt, "conf-1");
Simon Glassfb4cce02016-02-22 22:55:52 -0700326 typename = genimg_get_type_short_name(params->fit_image_type);
Andre Przywara2eda8e92017-12-04 02:05:12 +0000327 snprintf(str, sizeof(str), "%s-1", typename);
Simon Glassfb4cce02016-02-22 22:55:52 -0700328 fdt_property_string(fdt, typename, str);
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100329
330 if (params->fit_ramdisk)
331 fdt_property_string(fdt, FIT_RAMDISK_PROP,
Andre Przywara2eda8e92017-12-04 02:05:12 +0000332 FIT_RAMDISK_PROP "-1");
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100333
Simon Glassfb4cce02016-02-22 22:55:52 -0700334 fdt_end_node(fdt);
335 }
Simon Glass8e35bb02016-02-22 22:55:51 -0700336
337 fdt_end_node(fdt);
338}
339
340static int fit_build_fdt(struct image_tool_params *params, char *fdt, int size)
341{
342 int ret;
343
344 ret = fdt_create(fdt, size);
345 if (ret)
346 return ret;
347 fdt_finish_reservemap(fdt);
348 fdt_begin_node(fdt, "");
Michal Simek4a8b6e02018-07-20 12:31:02 +0200349 fdt_property_strf(fdt, FIT_DESC_PROP,
Simon Glass8e35bb02016-02-22 22:55:51 -0700350 "%s image with one or more FDT blobs",
351 genimg_get_type_name(params->fit_image_type));
352 fdt_property_strf(fdt, "creator", "U-Boot mkimage %s", PLAIN_VERSION);
353 fdt_property_u32(fdt, "#address-cells", 1);
354 ret = fit_write_images(params, fdt);
355 if (ret)
356 return ret;
357 fit_write_configs(params, fdt);
358 fdt_end_node(fdt);
359 ret = fdt_finish(fdt);
360 if (ret)
361 return ret;
362
363 return fdt_totalsize(fdt);
364}
365
366static int fit_build(struct image_tool_params *params, const char *fname)
367{
368 char *buf;
369 int size;
370 int ret;
371 int fd;
372
373 size = fit_calc_size(params);
374 if (size < 0)
375 return -1;
376 buf = malloc(size);
377 if (!buf) {
378 fprintf(stderr, "%s: Out of memory (%d bytes)\n",
379 params->cmdname, size);
380 return -1;
381 }
382 ret = fit_build_fdt(params, buf, size);
383 if (ret < 0) {
384 fprintf(stderr, "%s: Failed to build FIT image\n",
385 params->cmdname);
Simon Glass7b0bbd82016-03-16 07:45:41 -0600386 goto err_buf;
Simon Glass8e35bb02016-02-22 22:55:51 -0700387 }
388 size = ret;
389 fd = open(fname, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0666);
390 if (fd < 0) {
391 fprintf(stderr, "%s: Can't open %s: %s\n",
392 params->cmdname, fname, strerror(errno));
Tom Rini3c2dff52017-09-26 22:14:44 -0400393 goto err_buf;
Simon Glass8e35bb02016-02-22 22:55:51 -0700394 }
395 ret = write(fd, buf, size);
396 if (ret != size) {
397 fprintf(stderr, "%s: Can't write %s: %s\n",
398 params->cmdname, fname, strerror(errno));
Simon Glass8e35bb02016-02-22 22:55:51 -0700399 goto err;
400 }
401 close(fd);
Simon Glass7b0bbd82016-03-16 07:45:41 -0600402 free(buf);
Simon Glass8e35bb02016-02-22 22:55:51 -0700403
404 return 0;
405err:
Simon Glass7b0bbd82016-03-16 07:45:41 -0600406 close(fd);
407err_buf:
Simon Glass8e35bb02016-02-22 22:55:51 -0700408 free(buf);
409 return -1;
410}
411
412/**
Simon Glass722ebc82016-02-22 22:55:53 -0700413 * fit_extract_data() - Move all data outside the FIT
414 *
415 * This takes a normal FIT file and removes all the 'data' properties from it.
416 * The data is placed in an area after the FIT so that it can be accessed
417 * using an offset into that area. The 'data' properties turn into
418 * 'data-offset' properties.
419 *
420 * This function cannot cope with FITs with 'data-offset' properties. All
421 * data must be in 'data' properties on entry.
422 */
423static int fit_extract_data(struct image_tool_params *params, const char *fname)
424{
Kever Yangebfe6112020-03-30 11:56:24 +0800425 void *buf = NULL;
Simon Glass722ebc82016-02-22 22:55:53 -0700426 int buf_ptr;
427 int fit_size, new_size;
428 int fd;
429 struct stat sbuf;
430 void *fdt;
431 int ret;
432 int images;
433 int node;
Kever Yangebfe6112020-03-30 11:56:24 +0800434 int image_number;
435 int align_size;
Simon Glass722ebc82016-02-22 22:55:53 -0700436
Kever Yangebfe6112020-03-30 11:56:24 +0800437 align_size = params->bl_len ? params->bl_len : 4;
Luca Boccassi7d574852019-05-14 19:35:02 +0100438 fd = mmap_fdt(params->cmdname, fname, 0, &fdt, &sbuf, false, false);
Simon Glass722ebc82016-02-22 22:55:53 -0700439 if (fd < 0)
440 return -EIO;
441 fit_size = fdt_totalsize(fdt);
442
Simon Glass722ebc82016-02-22 22:55:53 -0700443 images = fdt_path_offset(fdt, FIT_IMAGES_PATH);
444 if (images < 0) {
445 debug("%s: Cannot find /images node: %d\n", __func__, images);
446 ret = -EINVAL;
Simon Glassb97d71e2016-03-16 07:45:39 -0600447 goto err_munmap;
Simon Glass722ebc82016-02-22 22:55:53 -0700448 }
Kever Yangebfe6112020-03-30 11:56:24 +0800449 image_number = fdtdec_get_child_count(fdt, images);
450
451 /*
452 * Allocate space to hold the image data we will extract,
453 * extral space allocate for image alignment to prevent overflow.
454 */
455 buf = malloc(fit_size + (align_size * image_number));
456 if (!buf) {
457 ret = -ENOMEM;
458 goto err_munmap;
459 }
460 buf_ptr = 0;
Simon Glass722ebc82016-02-22 22:55:53 -0700461
462 for (node = fdt_first_subnode(fdt, images);
463 node >= 0;
464 node = fdt_next_subnode(fdt, node)) {
465 const char *data;
466 int len;
467
Michal Simek4a8b6e02018-07-20 12:31:02 +0200468 data = fdt_getprop(fdt, node, FIT_DATA_PROP, &len);
Simon Glass722ebc82016-02-22 22:55:53 -0700469 if (!data)
470 continue;
471 memcpy(buf + buf_ptr, data, len);
472 debug("Extracting data size %x\n", len);
473
Michal Simek4a8b6e02018-07-20 12:31:02 +0200474 ret = fdt_delprop(fdt, node, FIT_DATA_PROP);
Simon Glass722ebc82016-02-22 22:55:53 -0700475 if (ret) {
476 ret = -EPERM;
Simon Glassb97d71e2016-03-16 07:45:39 -0600477 goto err_munmap;
Simon Glass722ebc82016-02-22 22:55:53 -0700478 }
Teddy Reedf8f91072016-06-09 19:38:02 -0700479 if (params->external_offset > 0) {
480 /* An external offset positions the data absolutely. */
Michal Simek4a8b6e02018-07-20 12:31:02 +0200481 fdt_setprop_u32(fdt, node, FIT_DATA_POSITION_PROP,
Teddy Reedf8f91072016-06-09 19:38:02 -0700482 params->external_offset + buf_ptr);
483 } else {
Michal Simek4a8b6e02018-07-20 12:31:02 +0200484 fdt_setprop_u32(fdt, node, FIT_DATA_OFFSET_PROP,
485 buf_ptr);
Teddy Reedf8f91072016-06-09 19:38:02 -0700486 }
Michal Simek4a8b6e02018-07-20 12:31:02 +0200487 fdt_setprop_u32(fdt, node, FIT_DATA_SIZE_PROP, len);
Kever Yangebfe6112020-03-30 11:56:24 +0800488 buf_ptr += ALIGN(len, align_size);
Simon Glass722ebc82016-02-22 22:55:53 -0700489 }
490
491 /* Pack the FDT and place the data after it */
492 fdt_pack(fdt);
493
Kever Yangebfe6112020-03-30 11:56:24 +0800494 new_size = fdt_totalsize(fdt);
495 new_size = ALIGN(new_size, align_size);
496 fdt_set_totalsize(fdt, new_size);
Simon Glass722ebc82016-02-22 22:55:53 -0700497 debug("Size reduced from %x to %x\n", fit_size, fdt_totalsize(fdt));
498 debug("External data size %x\n", buf_ptr);
Simon Glass722ebc82016-02-22 22:55:53 -0700499 munmap(fdt, sbuf.st_size);
500
501 if (ftruncate(fd, new_size)) {
502 debug("%s: Failed to truncate file: %s\n", __func__,
503 strerror(errno));
504 ret = -EIO;
505 goto err;
506 }
Teddy Reedf8f91072016-06-09 19:38:02 -0700507
508 /* Check if an offset for the external data was set. */
509 if (params->external_offset > 0) {
510 if (params->external_offset < new_size) {
511 debug("External offset %x overlaps FIT length %x",
512 params->external_offset, new_size);
513 ret = -EINVAL;
514 goto err;
515 }
516 new_size = params->external_offset;
517 }
Simon Glass722ebc82016-02-22 22:55:53 -0700518 if (lseek(fd, new_size, SEEK_SET) < 0) {
519 debug("%s: Failed to seek to end of file: %s\n", __func__,
520 strerror(errno));
521 ret = -EIO;
522 goto err;
523 }
524 if (write(fd, buf, buf_ptr) != buf_ptr) {
525 debug("%s: Failed to write external data to file %s\n",
526 __func__, strerror(errno));
527 ret = -EIO;
528 goto err;
529 }
Tom Rini3c2dff52017-09-26 22:14:44 -0400530 free(buf);
Simon Glassb97d71e2016-03-16 07:45:39 -0600531 close(fd);
532 return 0;
Simon Glass722ebc82016-02-22 22:55:53 -0700533
Simon Glassb97d71e2016-03-16 07:45:39 -0600534err_munmap:
535 munmap(fdt, sbuf.st_size);
Simon Glass722ebc82016-02-22 22:55:53 -0700536err:
Simon Glass21c29752016-03-16 07:45:40 -0600537 if (buf)
538 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;
Tom Rinibf52fcd2017-10-07 11:27:59 -0400566 goto err_has_fd;
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;
Tom Rinibf52fcd2017-10-07 11:27:59 -0400573 goto err_has_fd;
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;
Tom Rinibf52fcd2017-10-07 11:27:59 -0400580 goto err_has_fd;
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;
Tom Rinibf52fcd2017-10-07 11:27:59 -0400601 goto err_has_fd;
Simon Glass529fd182016-02-22 22:55:54 -0700602 }
603 }
604
Tom Rinibf52fcd2017-10-07 11:27:59 -0400605 /* Close the old fd so we can re-use it. */
Simon Glass529fd182016-02-22 22:55:54 -0700606 close(fd);
607
608 /* Pack the FDT and place the data after it */
609 fdt_pack(fdt);
610
611 new_size = fdt_totalsize(fdt);
612 debug("Size expanded from %x to %x\n", fit_size, new_size);
613
614 fd = open(fname, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0666);
615 if (fd < 0) {
616 fprintf(stderr, "%s: Can't open %s: %s\n",
617 params->cmdname, fname, strerror(errno));
Tom Rinibf52fcd2017-10-07 11:27:59 -0400618 ret = -EIO;
619 goto err_no_fd;
Simon Glass529fd182016-02-22 22:55:54 -0700620 }
621 if (write(fd, fdt, new_size) != new_size) {
622 debug("%s: Failed to write external data to file %s\n",
623 __func__, strerror(errno));
624 ret = -EIO;
Tom Rinibf52fcd2017-10-07 11:27:59 -0400625 goto err_has_fd;
Simon Glass529fd182016-02-22 22:55:54 -0700626 }
Simon Glass529fd182016-02-22 22:55:54 -0700627
628 ret = 0;
629
Tom Rinibf52fcd2017-10-07 11:27:59 -0400630err_has_fd:
631 close(fd);
632err_no_fd:
Tom Rini3c2dff52017-09-26 22:14:44 -0400633 munmap(old_fdt, sbuf.st_size);
Simon Glass6e0ffce2016-03-16 07:45:38 -0600634 free(fdt);
Simon Glass529fd182016-02-22 22:55:54 -0700635 return ret;
636}
637
Philippe Reynes7298e422019-12-18 18:25:41 +0100638static int copyfile(const char *src, const char *dst)
639{
640 int fd_src = -1, fd_dst = -1;
641 void *buf = NULL;
642 ssize_t size;
643 size_t count;
644 int ret = -1;
645
646 fd_src = open(src, O_RDONLY);
647 if (fd_src < 0) {
648 printf("Can't open file %s (%s)\n", src, strerror(errno));
649 goto out;
650 }
651
Thomas Hebbab5a2b02020-03-01 10:47:53 -0800652 fd_dst = open(dst, O_WRONLY | O_CREAT, 0666);
Philippe Reynes7298e422019-12-18 18:25:41 +0100653 if (fd_dst < 0) {
654 printf("Can't open file %s (%s)\n", dst, strerror(errno));
655 goto out;
656 }
657
658 buf = malloc(512);
659 if (!buf) {
660 printf("Can't allocate buffer to copy file\n");
661 goto out;
662 }
663
664 while (1) {
665 size = read(fd_src, buf, 512);
666 if (size < 0) {
667 printf("Can't read file %s\n", src);
668 goto out;
669 }
670 if (!size)
671 break;
672
673 count = size;
674 size = write(fd_dst, buf, count);
675 if (size < 0) {
676 printf("Can't write file %s\n", dst);
677 goto out;
678 }
679 }
680
681 ret = 0;
682
683 out:
684 if (fd_src >= 0)
685 close(fd_src);
686 if (fd_dst >= 0)
687 close(fd_dst);
688 if (buf)
689 free(buf);
690
691 return ret;
692}
693
Simon Glass722ebc82016-02-22 22:55:53 -0700694/**
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530695 * fit_handle_file - main FIT file processing function
696 *
697 * fit_handle_file() runs dtc to convert .its to .itb, includes
698 * binary data, updates timestamp property and calculates hashes.
699 *
700 * datafile - .its file
701 * imagefile - .itb file
702 *
703 * returns:
704 * only on success, otherwise calls exit (EXIT_FAILURE);
705 */
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -0700706static int fit_handle_file(struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530707{
708 char tmpfile[MKIMAGE_MAX_TMPFILE_LEN];
Philippe Reynes7298e422019-12-18 18:25:41 +0100709 char bakfile[MKIMAGE_MAX_TMPFILE_LEN + 4] = {0};
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530710 char cmd[MKIMAGE_MAX_DTC_CMDLINE_LEN];
Simon Glassa9468112014-06-02 22:04:53 -0600711 size_t size_inc;
712 int ret;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530713
714 /* Flattened Image Tree (FIT) format handling */
715 debug ("FIT format handling\n");
716
717 /* call dtc to include binary properties into the tmp file */
718 if (strlen (params->imagefile) +
719 strlen (MKIMAGE_TMPFILE_SUFFIX) + 1 > sizeof (tmpfile)) {
720 fprintf (stderr, "%s: Image file name (%s) too long, "
721 "can't create tmpfile",
722 params->imagefile, params->cmdname);
723 return (EXIT_FAILURE);
724 }
725 sprintf (tmpfile, "%s%s", params->imagefile, MKIMAGE_TMPFILE_SUFFIX);
726
Simon Glass95d77b42013-06-13 15:10:05 -0700727 /* We either compile the source file, or use the existing FIT image */
Simon Glass8e35bb02016-02-22 22:55:51 -0700728 if (params->auto_its) {
729 if (fit_build(params, tmpfile)) {
730 fprintf(stderr, "%s: failed to build FIT\n",
731 params->cmdname);
732 return EXIT_FAILURE;
733 }
734 *cmd = '\0';
735 } else if (params->datafile) {
Stefan Theil63f881d2018-03-08 09:00:13 +0100736 /* dtc -I dts -O dtb -p 500 -o tmpfile datafile */
737 snprintf(cmd, sizeof(cmd), "%s %s -o \"%s\" \"%s\"",
738 MKIMAGE_DTC, params->dtc, tmpfile, params->datafile);
Simon Glass95d77b42013-06-13 15:10:05 -0700739 debug("Trying to execute \"%s\"\n", cmd);
740 } else {
Mirza, Taimoora6e98102017-10-04 20:28:03 +0500741 snprintf(cmd, sizeof(cmd), "cp \"%s\" \"%s\"",
Simon Glass95d77b42013-06-13 15:10:05 -0700742 params->imagefile, tmpfile);
743 }
Philippe Reynes7298e422019-12-18 18:25:41 +0100744
Simon Glass8e35bb02016-02-22 22:55:51 -0700745 if (*cmd && system(cmd) == -1) {
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530746 fprintf (stderr, "%s: system(%s) failed: %s\n",
747 params->cmdname, cmd, strerror(errno));
Simon Glassaa6d6db2013-05-08 08:05:57 +0000748 goto err_system;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530749 }
750
Simon Glass529fd182016-02-22 22:55:54 -0700751 /* Move the data so it is internal to the FIT, if needed */
752 ret = fit_import_data(params, tmpfile);
753 if (ret)
754 goto err_system;
755
Simon Glassa9468112014-06-02 22:04:53 -0600756 /*
Philippe Reynes7298e422019-12-18 18:25:41 +0100757 * Copy the tmpfile to bakfile, then in the following loop
758 * we copy bakfile to tmpfile. So we always start from the
759 * beginning.
760 */
761 sprintf(bakfile, "%s%s", tmpfile, ".bak");
762 rename(tmpfile, bakfile);
763
764 /*
Simon Glassa9468112014-06-02 22:04:53 -0600765 * Set hashes for images in the blob. Unfortunately we may need more
766 * space in either FDT, so keep trying until we succeed.
767 *
768 * Note: this is pretty inefficient for signing, since we must
769 * calculate the signature every time. It would be better to calculate
770 * all the data and then store it in a separate step. However, this
771 * would be considerably more complex to implement. Generally a few
772 * steps of this loop is enough to sign with several keys.
773 */
774 for (size_inc = 0; size_inc < 64 * 1024; size_inc += 1024) {
Philippe Reynes7298e422019-12-18 18:25:41 +0100775 if (copyfile(bakfile, tmpfile) < 0) {
776 printf("Can't copy %s to %s\n", bakfile, tmpfile);
777 ret = -EIO;
778 break;
779 }
Simon Glassa9468112014-06-02 22:04:53 -0600780 ret = fit_add_file_data(params, size_inc, tmpfile);
781 if (!ret || ret != -ENOSPC)
782 break;
Simon Glasse29495d2013-06-13 15:10:04 -0700783 }
784
Simon Glassa9468112014-06-02 22:04:53 -0600785 if (ret) {
Simon Glass655cc692016-07-03 09:40:43 -0600786 fprintf(stderr, "%s Can't add hashes to FIT blob: %d\n",
787 params->cmdname, ret);
Simon Glassa9468112014-06-02 22:04:53 -0600788 goto err_system;
Simon Glasse29495d2013-06-13 15:10:04 -0700789 }
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530790
Simon Glass722ebc82016-02-22 22:55:53 -0700791 /* Move the data so it is external to the FIT, if requested */
792 if (params->external_data) {
793 ret = fit_extract_data(params, tmpfile);
794 if (ret)
795 goto err_system;
796 }
797
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530798 if (rename (tmpfile, params->imagefile) == -1) {
799 fprintf (stderr, "%s: Can't rename %s to %s: %s\n",
800 params->cmdname, tmpfile, params->imagefile,
801 strerror (errno));
802 unlink (tmpfile);
Philippe Reynes7298e422019-12-18 18:25:41 +0100803 unlink(bakfile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530804 unlink (params->imagefile);
Simon Glassa9468112014-06-02 22:04:53 -0600805 return EXIT_FAILURE;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530806 }
Philippe Reynes7298e422019-12-18 18:25:41 +0100807 unlink(bakfile);
Simon Glassa9468112014-06-02 22:04:53 -0600808 return EXIT_SUCCESS;
Simon Glassaa6d6db2013-05-08 08:05:57 +0000809
Simon Glassaa6d6db2013-05-08 08:05:57 +0000810err_system:
811 unlink(tmpfile);
Philippe Reynes7298e422019-12-18 18:25:41 +0100812 unlink(bakfile);
Simon Glassaa6d6db2013-05-08 08:05:57 +0000813 return -1;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530814}
815
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200816/**
817 * fit_image_extract - extract a FIT component image
818 * @fit: pointer to the FIT format image header
819 * @image_noffset: offset of the component image node
820 * @file_name: name of the file to store the FIT sub-image
821 *
822 * returns:
823 * zero in case of success or a negative value if fail.
824 */
825static int fit_image_extract(
826 const void *fit,
827 int image_noffset,
828 const char *file_name)
829{
830 const void *file_data;
831 size_t file_size = 0;
Andrew F. Davise5b56282019-09-17 17:09:34 -0400832 int ret;
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200833
Andrew F. Davise5b56282019-09-17 17:09:34 -0400834 /* get the data address and size of component at offset "image_noffset" */
835 ret = fit_image_get_data_and_size(fit, image_noffset, &file_data, &file_size);
836 if (ret) {
837 fprintf(stderr, "Could not get component information\n");
838 return ret;
839 }
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200840
841 /* save the "file_data" into the file specified by "file_name" */
842 return imagetool_save_subimage(file_name, (ulong) file_data, file_size);
843}
844
845/**
846 * fit_extract_contents - retrieve a sub-image component from the FIT image
847 * @ptr: pointer to the FIT format image header
848 * @params: command line parameters
849 *
850 * returns:
851 * zero in case of success or a negative value if fail.
852 */
853static int fit_extract_contents(void *ptr, struct image_tool_params *params)
854{
855 int images_noffset;
856 int noffset;
857 int ndepth;
858 const void *fit = ptr;
859 int count = 0;
860 const char *p;
861
862 /* Indent string is defined in header image.h */
863 p = IMAGE_INDENT_STRING;
864
865 if (!fit_check_format(fit)) {
866 printf("Bad FIT image format\n");
867 return -1;
868 }
869
870 /* Find images parent node offset */
871 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
872 if (images_noffset < 0) {
873 printf("Can't find images parent node '%s' (%s)\n",
874 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
875 return -1;
876 }
877
878 /* Avoid any overrun */
879 count = fit_get_subimage_count(fit, images_noffset);
880 if ((params->pflag < 0) || (count <= params->pflag)) {
881 printf("No such component at '%d'\n", params->pflag);
882 return -1;
883 }
884
885 /* Process its subnodes, extract the desired component from image */
886 for (ndepth = 0, count = 0,
887 noffset = fdt_next_node(fit, images_noffset, &ndepth);
888 (noffset >= 0) && (ndepth > 0);
889 noffset = fdt_next_node(fit, noffset, &ndepth)) {
890 if (ndepth == 1) {
891 /*
892 * Direct child node of the images parent node,
893 * i.e. component image node.
894 */
895 if (params->pflag == count) {
896 printf("Extracted:\n%s Image %u (%s)\n", p,
897 count, fit_get_name(fit, noffset, NULL));
898
899 fit_image_print(fit, noffset, p);
900
901 return fit_image_extract(fit, noffset,
902 params->outfile);
903 }
904
905 count++;
906 }
907 }
908
909 return 0;
910}
911
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -0700912static int fit_check_params(struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530913{
Simon Glass8e35bb02016-02-22 22:55:51 -0700914 if (params->auto_its)
915 return 0;
Heinrich Schuchardt58194662019-12-11 13:51:38 +0100916 return ((params->dflag && params->fflag) ||
917 (params->fflag && params->lflag) ||
918 (params->lflag && params->dflag));
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530919}
920
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200921U_BOOT_IMAGE_TYPE(
922 fitimage,
923 "FIT Image support",
924 sizeof(image_header_t),
925 (void *)&header,
926 fit_check_params,
927 fit_verify_header,
928 fit_print_contents,
929 NULL,
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200930 fit_extract_contents,
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200931 fit_check_image_types,
932 fit_handle_file,
933 NULL /* FIT images use DTB header */
934);