blob: be58e5654631fa7648585abc85566b57a525d543 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk5b1d7132002-11-03 00:07:02 +00002/*
Bartlomiej Sieka9d254382008-03-11 12:34:47 +01003 * (C) Copyright 2008 Semihalf
4 *
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +05305 * (C) Copyright 2000-2009
wdenk5b1d7132002-11-03 00:07:02 +00006 * DENX Software Engineering
7 * Wolfgang Denk, wd@denx.de
wdenk5b1d7132002-11-03 00:07:02 +00008 */
9
Kever Yang29e7ab02020-03-30 11:56:19 +080010#include "imagetool.h"
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010011#include "mkimage.h"
Sven Ebenfeldd21bd692016-11-06 16:37:56 +010012#include "imximage.h"
Simon Glass2d2384b2021-11-12 12:28:13 -070013#include <fit_common.h>
wdenk5b1d7132002-11-03 00:07:02 +000014#include <image.h>
Wolfgang Denk976b38c2011-02-12 10:37:11 +010015#include <version.h>
Yann Dirson331f0802021-05-18 10:59:04 +020016#ifdef __linux__
17#include <sys/ioctl.h>
18#endif
wdenk5b1d7132002-11-03 00:07:02 +000019
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053020static void copy_file(int, const char *, int);
wdenk5b1d7132002-11-03 00:07:02 +000021
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053022/* parameters initialized by core will be used by the image type code */
Simon Glasscc7a6442016-02-22 22:55:38 -070023static struct image_tool_params params = {
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053024 .os = IH_OS_LINUX,
25 .arch = IH_ARCH_PPC,
26 .type = IH_TYPE_KERNEL,
27 .comp = IH_COMP_GZIP,
28 .dtc = MKIMAGE_DEFAULT_DTC_OPTIONS,
Wolfgang Denk04387d22010-03-27 23:37:46 +010029 .imagename = "",
Shaohui Xie5d898a02012-08-10 02:49:35 +000030 .imagename2 = "",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053031};
wdenk5b1d7132002-11-03 00:07:02 +000032
Simon Glass30664222016-06-30 10:52:17 -060033static enum ih_category cur_category;
34
35static int h_compare_category_name(const void *vtype1, const void *vtype2)
36{
37 const int *type1 = vtype1;
38 const int *type2 = vtype2;
39 const char *name1 = genimg_get_cat_short_name(cur_category, *type1);
40 const char *name2 = genimg_get_cat_short_name(cur_category, *type2);
41
42 return strcmp(name1, name2);
43}
44
Simon Glassf24e1052016-06-30 10:52:18 -060045static int show_valid_options(enum ih_category category)
Simon Glass30664222016-06-30 10:52:17 -060046{
47 int *order;
48 int count;
49 int item;
50 int i;
51
52 count = genimg_get_cat_count(category);
53 order = calloc(count, sizeof(*order));
54 if (!order)
55 return -ENOMEM;
56
57 /* Sort the names in order of short name for easier reading */
Naoki Hayamaad5fb9f2020-10-07 11:21:55 +090058 for (i = 0, item = 0; i < count; i++, item++) {
59 while (!genimg_cat_has_id(category, item) && i < count) {
60 item++;
61 count--;
62 }
63 order[i] = item;
64 }
Simon Glass30664222016-06-30 10:52:17 -060065 cur_category = category;
66 qsort(order, count, sizeof(int), h_compare_category_name);
67
68 fprintf(stderr, "\nInvalid %s, supported are:\n",
69 genimg_get_cat_desc(category));
70 for (i = 0; i < count; i++) {
71 item = order[i];
72 fprintf(stderr, "\t%-15s %s\n",
73 genimg_get_cat_short_name(category, item),
74 genimg_get_cat_name(category, item));
75 }
76 fprintf(stderr, "\n");
Simon Glass0cd82e22016-10-27 17:54:03 -060077 free(order);
Simon Glass30664222016-06-30 10:52:17 -060078
79 return 0;
80}
81
Simon Glass15310342016-02-22 22:55:37 -070082static void usage(const char *msg)
Simon Glassb0a487a2016-02-22 22:55:36 -070083{
Simon Glass15310342016-02-22 22:55:37 -070084 fprintf(stderr, "Error: %s\n", msg);
Pali Rohár11f29d42022-02-13 01:09:46 +010085 fprintf(stderr, "Usage: %s [-T type] -l image\n"
86 " -l ==> list image header information\n"
87 " -T ==> parse image file as 'type'\n",
Simon Glassb0a487a2016-02-22 22:55:36 -070088 params.cmdname);
89 fprintf(stderr,
90 " %s [-x] -A arch -O os -T type -C comp -a addr -e ep -n name -d data_file[:data_file...] image\n"
91 " -A ==> set architecture to 'arch'\n"
92 " -O ==> set operating system to 'os'\n"
93 " -T ==> set image type to 'type'\n"
94 " -C ==> set compression type 'comp'\n"
95 " -a ==> set load address to 'addr' (hex)\n"
96 " -e ==> set entry point to 'ep' (hex)\n"
97 " -n ==> set image name to 'name'\n"
98 " -d ==> use image data from 'datafile'\n"
99 " -x ==> set XIP (execute in place)\n",
100 params.cmdname);
101 fprintf(stderr,
Joel Stanley603e26f2020-12-08 14:42:15 +1030102 " %s [-D dtc_options] [-f fit-image.its|-f auto|-F] [-b <dtb> [-b <dtb>]] [-E] [-B size] [-i <ramdisk.cpio.gz>] fit-image\n"
Vagrant Cascadian82bd2f22016-10-23 20:45:17 -0700103 " <dtb> file is used with -f auto, it may occur multiple times.\n",
Simon Glassb0a487a2016-02-22 22:55:36 -0700104 params.cmdname);
105 fprintf(stderr,
106 " -D => set all options for device tree compiler\n"
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100107 " -f => input filename for FIT source\n"
Joel Stanley603e26f2020-12-08 14:42:15 +1030108 " -i => input filename for ramdisk file\n"
109 " -E => place data outside of the FIT structure\n"
110 " -B => align size in hex for FIT structure and header\n");
Simon Glassb0a487a2016-02-22 22:55:36 -0700111#ifdef CONFIG_FIT_SIGNATURE
112 fprintf(stderr,
Joel Stanley603e26f2020-12-08 14:42:15 +1030113 "Signing / verified boot options: [-k keydir] [-K dtb] [ -c <comment>] [-p addr] [-r] [-N engine]\n"
Simon Glassb0a487a2016-02-22 22:55:36 -0700114 " -k => set directory containing private keys\n"
115 " -K => write public keys to this .dtb file\n"
Alexandru Gagniuc36bfcb62021-02-19 12:45:17 -0600116 " -G => use this signing key (in lieu of -k)\n"
Simon Glassb0a487a2016-02-22 22:55:36 -0700117 " -c => add comment in signature node\n"
118 " -F => re-sign existing FIT image\n"
Teddy Reedf8f91072016-06-09 19:38:02 -0700119 " -p => place external data at a static position\n"
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600120 " -r => mark keys used as 'required' in dtb\n"
Vesa Jääskeläinen5b123e02019-06-16 20:53:38 +0300121 " -N => openssl engine to use for signing\n");
Simon Glassb0a487a2016-02-22 22:55:36 -0700122#else
123 fprintf(stderr,
124 "Signing / verified boot not supported (CONFIG_FIT_SIGNATURE undefined)\n");
125#endif
126 fprintf(stderr, " %s -V ==> print version information and exit\n",
127 params.cmdname);
Baruch Siach79aa33c2017-06-29 20:37:08 +0300128 fprintf(stderr, "Use '-T list' to see a list of available image types\n");
Simon Glassb0a487a2016-02-22 22:55:36 -0700129
130 exit(EXIT_FAILURE);
131}
132
Simon Glassfb4cce02016-02-22 22:55:52 -0700133static int add_content(int type, const char *fname)
134{
135 struct content_info *cont;
136
137 cont = calloc(1, sizeof(*cont));
138 if (!cont)
139 return -1;
140 cont->type = type;
141 cont->fname = fname;
142 if (params.content_tail)
143 params.content_tail->next = cont;
144 else
145 params.content_head = cont;
146 params.content_tail = cont;
147
148 return 0;
149}
150
Simon Glass0b443de2016-02-22 22:55:33 -0700151static void process_args(int argc, char **argv)
wdenk5b1d7132002-11-03 00:07:02 +0000152{
Peter Tysera2513e22010-04-04 22:36:03 -0500153 char *ptr;
Simon Glassd505a092016-02-22 22:55:48 -0700154 int type = IH_TYPE_INVALID;
155 char *datafile = NULL;
Simon Glassa02221f2016-02-22 22:55:34 -0700156 int opt;
wdenk5b1d7132002-11-03 00:07:02 +0000157
Simon Glassa02221f2016-02-22 22:55:34 -0700158 while ((opt = getopt(argc, argv,
Jan Kiszka5902a392022-01-14 10:21:19 +0100159 "a:A:b:B:c:C:d:D:e:Ef:FG:k:i:K:ln:N:p:o:O:rR:qstT:vVx")) != -1) {
Simon Glassa02221f2016-02-22 22:55:34 -0700160 switch (opt) {
Simon Glass07450082016-02-22 22:55:35 -0700161 case 'a':
162 params.addr = strtoull(optarg, &ptr, 16);
163 if (*ptr) {
164 fprintf(stderr, "%s: invalid load address %s\n",
165 params.cmdname, optarg);
166 exit(EXIT_FAILURE);
167 }
Simon Glassa02221f2016-02-22 22:55:34 -0700168 break;
169 case 'A':
170 params.arch = genimg_get_arch_id(optarg);
Simon Glass51f03e62016-06-30 10:52:19 -0600171 if (params.arch < 0) {
172 show_valid_options(IH_ARCH);
Simon Glass15310342016-02-22 22:55:37 -0700173 usage("Invalid architecture");
Simon Glass51f03e62016-06-30 10:52:19 -0600174 }
Icenowy Zhengc2d08f02021-10-14 20:53:04 -0500175 params.Aflag = 1;
Simon Glassa02221f2016-02-22 22:55:34 -0700176 break;
Simon Glassfb4cce02016-02-22 22:55:52 -0700177 case 'b':
Andreas Bießmann8edeac82016-05-03 15:17:03 +0200178 if (add_content(IH_TYPE_FLATDT, optarg)) {
Andreas Bießmann7a439ca2016-05-01 03:01:27 +0200179 fprintf(stderr,
180 "%s: Out of memory adding content '%s'",
181 params.cmdname, optarg);
182 exit(EXIT_FAILURE);
183 }
Simon Glassfb4cce02016-02-22 22:55:52 -0700184 break;
Kever Yangebfe6112020-03-30 11:56:24 +0800185 case 'B':
186 params.bl_len = strtoull(optarg, &ptr, 16);
187 if (*ptr) {
188 fprintf(stderr, "%s: invalid block length %s\n",
189 params.cmdname, optarg);
190 exit(EXIT_FAILURE);
191 }
192
193 break;
Simon Glassa02221f2016-02-22 22:55:34 -0700194 case 'c':
195 params.comment = optarg;
196 break;
197 case 'C':
198 params.comp = genimg_get_comp_id(optarg);
Simon Glass51f03e62016-06-30 10:52:19 -0600199 if (params.comp < 0) {
200 show_valid_options(IH_COMP);
Simon Glass15310342016-02-22 22:55:37 -0700201 usage("Invalid compression type");
Simon Glass51f03e62016-06-30 10:52:19 -0600202 }
Simon Glassa02221f2016-02-22 22:55:34 -0700203 break;
Simon Glassa02221f2016-02-22 22:55:34 -0700204 case 'd':
205 params.datafile = optarg;
206 params.dflag = 1;
207 break;
Simon Glass07450082016-02-22 22:55:35 -0700208 case 'D':
209 params.dtc = optarg;
210 break;
Simon Glassa02221f2016-02-22 22:55:34 -0700211 case 'e':
212 params.ep = strtoull(optarg, &ptr, 16);
213 if (*ptr) {
214 fprintf(stderr, "%s: invalid entry point %s\n",
215 params.cmdname, optarg);
216 exit(EXIT_FAILURE);
217 }
218 params.eflag = 1;
219 break;
Simon Glass722ebc82016-02-22 22:55:53 -0700220 case 'E':
221 params.external_data = true;
222 break;
Simon Glassa02221f2016-02-22 22:55:34 -0700223 case 'f':
Simon Glass8e35bb02016-02-22 22:55:51 -0700224 datafile = optarg;
225 params.auto_its = !strcmp(datafile, "auto");
Heinrich Schuchardta29162a2020-05-09 17:10:41 +0200226 /* fallthrough */
Simon Glassa02221f2016-02-22 22:55:34 -0700227 case 'F':
228 /*
229 * The flattened image tree (FIT) format
230 * requires a flattened device tree image type
231 */
232 params.type = IH_TYPE_FLATDT;
233 params.fflag = 1;
234 break;
Alexandru Gagniuc36bfcb62021-02-19 12:45:17 -0600235 case 'G':
236 params.keyfile = optarg;
237 break;
Tomeu Vizoso0f7c6cd2016-11-04 14:22:15 +0100238 case 'i':
239 params.fit_ramdisk = optarg;
240 break;
Simon Glassa02221f2016-02-22 22:55:34 -0700241 case 'k':
242 params.keydir = optarg;
243 break;
244 case 'K':
245 params.keydest = optarg;
246 break;
Simon Glass07450082016-02-22 22:55:35 -0700247 case 'l':
248 params.lflag = 1;
249 break;
Simon Glassa02221f2016-02-22 22:55:34 -0700250 case 'n':
251 params.imagename = optarg;
252 break;
George McCollisterf1ca1fd2017-01-06 13:14:17 -0600253 case 'N':
254 params.engine_id = optarg;
255 break;
Jan Kiszka5902a392022-01-14 10:21:19 +0100256 case 'o':
257 params.algo_name = optarg;
258 break;
Simon Glass07450082016-02-22 22:55:35 -0700259 case 'O':
260 params.os = genimg_get_os_id(optarg);
Simon Glass51f03e62016-06-30 10:52:19 -0600261 if (params.os < 0) {
262 show_valid_options(IH_OS);
Simon Glass15310342016-02-22 22:55:37 -0700263 usage("Invalid operating system");
Simon Glass51f03e62016-06-30 10:52:19 -0600264 }
Simon Glass07450082016-02-22 22:55:35 -0700265 break;
Teddy Reedf8f91072016-06-09 19:38:02 -0700266 case 'p':
267 params.external_offset = strtoull(optarg, &ptr, 16);
268 if (*ptr) {
269 fprintf(stderr, "%s: invalid offset size %s\n",
270 params.cmdname, optarg);
271 exit(EXIT_FAILURE);
272 }
Teddy Reedb6fefa72016-07-11 22:54:26 -0700273 break;
Simon Glassbd6e1422016-05-01 13:55:38 -0600274 case 'q':
275 params.quiet = 1;
276 break;
Simon Glassa02221f2016-02-22 22:55:34 -0700277 case 'r':
278 params.require_keys = 1;
279 break;
280 case 'R':
281 /*
282 * This entry is for the second configuration
283 * file, if only one is not enough.
284 */
285 params.imagename2 = optarg;
286 break;
287 case 's':
288 params.skipcpy = 1;
289 break;
Simon Glass152b2462020-07-09 18:39:43 -0600290 case 't':
291 params.reset_timestamp = 1;
292 break;
Simon Glass07450082016-02-22 22:55:35 -0700293 case 'T':
Baruch Siach79aa33c2017-06-29 20:37:08 +0300294 if (strcmp(optarg, "list") == 0) {
295 show_valid_options(IH_TYPE);
296 exit(EXIT_SUCCESS);
297 }
Simon Glassd505a092016-02-22 22:55:48 -0700298 type = genimg_get_type_id(optarg);
299 if (type < 0) {
Simon Glassf24e1052016-06-30 10:52:18 -0600300 show_valid_options(IH_TYPE);
Simon Glass15310342016-02-22 22:55:37 -0700301 usage("Invalid image type");
Simon Glass07450082016-02-22 22:55:35 -0700302 }
303 break;
Simon Glassa02221f2016-02-22 22:55:34 -0700304 case 'v':
305 params.vflag++;
306 break;
307 case 'V':
308 printf("mkimage version %s\n", PLAIN_VERSION);
309 exit(EXIT_SUCCESS);
310 case 'x':
311 params.xflag++;
312 break;
313 default:
Simon Glass15310342016-02-22 22:55:37 -0700314 usage("Invalid option");
wdenk5b1d7132002-11-03 00:07:02 +0000315 }
wdenk5b1d7132002-11-03 00:07:02 +0000316 }
317
Andreas Bießmann8edeac82016-05-03 15:17:03 +0200318 /* The last parameter is expected to be the imagefile */
319 if (optind < argc)
Andreas Bießmann7a439ca2016-05-01 03:01:27 +0200320 params.imagefile = argv[optind];
321
Simon Glassd505a092016-02-22 22:55:48 -0700322 /*
323 * For auto-generated FIT images we need to know the image type to put
324 * in the FIT, which is separate from the file's image type (which
325 * will always be IH_TYPE_FLATDT in this case).
326 */
327 if (params.type == IH_TYPE_FLATDT) {
Simon Glass20deadd2016-06-30 10:52:07 -0600328 params.fit_image_type = type ? type : IH_TYPE_KERNEL;
Simon Glass3c23c0f2016-06-30 10:52:08 -0600329 /* For auto_its, datafile is always 'auto' */
Simon Glass8e35bb02016-02-22 22:55:51 -0700330 if (!params.auto_its)
331 params.datafile = datafile;
Simon Glasse324a922016-06-30 10:52:09 -0600332 else if (!params.datafile)
333 usage("Missing data file for auto-FIT (use -d)");
Pali Rohár11f29d42022-02-13 01:09:46 +0100334 } else if (params.lflag || type != IH_TYPE_INVALID) {
Alex Kiernan8c842872018-04-22 05:11:17 +0000335 if (type == IH_TYPE_SCRIPT && !params.datafile)
336 usage("Missing data file for script (use -d)");
Simon Glassd505a092016-02-22 22:55:48 -0700337 params.type = type;
338 }
339
340 if (!params.imagefile)
Simon Glass15310342016-02-22 22:55:37 -0700341 usage("Missing output filename");
Simon Glass0b443de2016-02-22 22:55:33 -0700342}
343
Pali Rohárd3b1ca22022-01-14 18:34:43 +0100344static void verify_image(const struct image_type_params *tparams)
345{
346 struct stat sbuf;
347 void *ptr;
348 int ifd;
349
350 ifd = open(params.imagefile, O_RDONLY | O_BINARY);
351 if (ifd < 0) {
352 fprintf(stderr, "%s: Can't open %s: %s\n",
353 params.cmdname, params.imagefile,
354 strerror(errno));
355 exit(EXIT_FAILURE);
356 }
357
358 if (fstat(ifd, &sbuf) < 0) {
359 fprintf(stderr, "%s: Can't stat %s: %s\n",
360 params.cmdname, params.imagefile, strerror(errno));
361 exit(EXIT_FAILURE);
362 }
363 params.file_size = sbuf.st_size;
364
365 ptr = mmap(0, params.file_size, PROT_READ, MAP_SHARED, ifd, 0);
366 if (ptr == MAP_FAILED) {
367 fprintf(stderr, "%s: Can't map %s: %s\n",
368 params.cmdname, params.imagefile, strerror(errno));
369 exit(EXIT_FAILURE);
370 }
371
372 if (tparams->verify_header((unsigned char *)ptr, params.file_size, &params) != 0) {
373 fprintf(stderr, "%s: Failed to verify header of %s\n",
374 params.cmdname, params.imagefile);
375 exit(EXIT_FAILURE);
376 }
377
378 (void)munmap(ptr, params.file_size);
379 (void)close(ifd);
380}
381
Simon Glass0b443de2016-02-22 22:55:33 -0700382int main(int argc, char **argv)
383{
384 int ifd = -1;
385 struct stat sbuf;
386 char *ptr;
387 int retval = 0;
388 struct image_type_params *tparams = NULL;
389 int pad_len = 0;
390 int dfd;
Mark Tomlinson8961c8a2018-08-29 10:51:14 +1200391 size_t map_len;
Simon Glass0b443de2016-02-22 22:55:33 -0700392
393 params.cmdname = *argv;
394 params.addr = 0;
395 params.ep = 0;
396
397 process_args(argc, argv);
wdenk5b1d7132002-11-03 00:07:02 +0000398
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530399 /* set tparams as per input type_id */
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200400 tparams = imagetool_get_type(params.type);
Pali Rohár11f29d42022-02-13 01:09:46 +0100401 if (tparams == NULL && !params.lflag) {
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530402 fprintf (stderr, "%s: unsupported type %s\n",
403 params.cmdname, genimg_get_type_name(params.type));
404 exit (EXIT_FAILURE);
405 }
406
407 /*
408 * check the passed arguments parameters meets the requirements
409 * as per image type to be generated/listed
410 */
Pali Rohár11f29d42022-02-13 01:09:46 +0100411 if (tparams && tparams->check_params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530412 if (tparams->check_params (&params))
Simon Glass15310342016-02-22 22:55:37 -0700413 usage("Bad parameters for image type");
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530414
415 if (!params.eflag) {
416 params.ep = params.addr;
wdenk5b1d7132002-11-03 00:07:02 +0000417 /* If XIP, entry point must be after the U-Boot header */
Pali Rohár11f29d42022-02-13 01:09:46 +0100418 if (params.xflag && tparams)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530419 params.ep += tparams->header_size;
wdenk5b1d7132002-11-03 00:07:02 +0000420 }
421
Peter Tyserc81296c2009-11-24 16:42:10 -0600422 if (params.fflag){
Heinrich Schuchardt5017f9b2022-03-01 08:53:56 +0100423 if (!tparams) {
424 fprintf(stderr, "%s: Missing FIT support\n",
425 params.cmdname);
426 exit (EXIT_FAILURE);
427 }
Peter Tyserc81296c2009-11-24 16:42:10 -0600428 if (tparams->fflag_handle)
429 /*
430 * in some cases, some additional processing needs
431 * to be done if fflag is defined
432 *
433 * For ex. fit_handle_file for Fit file support
434 */
435 retval = tparams->fflag_handle(&params);
wdenk5b1d7132002-11-03 00:07:02 +0000436
Peter Tyserc81296c2009-11-24 16:42:10 -0600437 if (retval != EXIT_SUCCESS)
Heinrich Schuchardt5017f9b2022-03-01 08:53:56 +0100438 usage("Bad parameters for FIT image type");
wdenk5b1d7132002-11-03 00:07:02 +0000439 }
440
Peter Tyserc81296c2009-11-24 16:42:10 -0600441 if (params.lflag || params.fflag) {
442 ifd = open (params.imagefile, O_RDONLY|O_BINARY);
443 } else {
444 ifd = open (params.imagefile,
445 O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666);
446 }
447
448 if (ifd < 0) {
449 fprintf (stderr, "%s: Can't open %s: %s\n",
450 params.cmdname, params.imagefile,
451 strerror(errno));
452 exit (EXIT_FAILURE);
453 }
454
455 if (params.lflag || params.fflag) {
Yann Dirson331f0802021-05-18 10:59:04 +0200456 uint64_t size;
wdenk5b1d7132002-11-03 00:07:02 +0000457 /*
458 * list header information of existing image
459 */
460 if (fstat(ifd, &sbuf) < 0) {
461 fprintf (stderr, "%s: Can't stat %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530462 params.cmdname, params.imagefile,
463 strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000464 exit (EXIT_FAILURE);
465 }
466
Yann Dirson331f0802021-05-18 10:59:04 +0200467 if ((sbuf.st_mode & S_IFMT) == S_IFBLK) {
468#ifdef __linux__
469#if defined(__linux__) && defined(_IOR) && !defined(BLKGETSIZE64)
470#define BLKGETSIZE64 _IOR(0x12,114,size_t) /* return device size in bytes (u64 *arg) */
471#endif
472 if (ioctl(ifd, BLKGETSIZE64, &size) < 0) {
473 fprintf (stderr,
474 "%s: failed to get size of block device \"%s\"\n",
475 params.cmdname, params.imagefile);
476 exit (EXIT_FAILURE);
477 }
478#else
wdenk5b1d7132002-11-03 00:07:02 +0000479 fprintf (stderr,
Yann Dirson331f0802021-05-18 10:59:04 +0200480 "%s: \"%s\" is block device, don't know how to get its size\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530481 params.cmdname, params.imagefile);
wdenk5b1d7132002-11-03 00:07:02 +0000482 exit (EXIT_FAILURE);
Yann Dirson331f0802021-05-18 10:59:04 +0200483#endif
Pali Rohár11f29d42022-02-13 01:09:46 +0100484 } else if (tparams && sbuf.st_size < (off_t)tparams->header_size) {
Yann Dirson331f0802021-05-18 10:59:04 +0200485 fprintf (stderr,
Heinrich Schuchardtc28f2492022-01-15 20:12:56 +0100486 "%s: Bad size: \"%s\" is not valid image: size %llu < %u\n",
Yann Dirson331f0802021-05-18 10:59:04 +0200487 params.cmdname, params.imagefile,
Heinrich Schuchardtc28f2492022-01-15 20:12:56 +0100488 (unsigned long long) sbuf.st_size,
489 tparams->header_size);
Yann Dirson331f0802021-05-18 10:59:04 +0200490 exit (EXIT_FAILURE);
491 } else {
492 size = sbuf.st_size;
wdenk5b1d7132002-11-03 00:07:02 +0000493 }
494
Yann Dirson331f0802021-05-18 10:59:04 +0200495 ptr = mmap(0, size, PROT_READ, MAP_SHARED, ifd, 0);
Mike Frysingerfa956fd2008-05-01 04:13:05 -0400496 if (ptr == MAP_FAILED) {
wdenk5b1d7132002-11-03 00:07:02 +0000497 fprintf (stderr, "%s: Can't read %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530498 params.cmdname, params.imagefile,
499 strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000500 exit (EXIT_FAILURE);
501 }
502
Pali Rohár11f29d42022-02-13 01:09:46 +0100503 /*
504 * Verifies the header format based on the expected header for image
505 * type in tparams. If tparams is NULL simply check all image types
506 * to find one that matches our header.
507 */
508 retval = imagetool_verify_print_header(ptr, &sbuf, tparams, &params);
wdenk5b1d7132002-11-03 00:07:02 +0000509
wdenk5b1d7132002-11-03 00:07:02 +0000510 (void) munmap((void *)ptr, sbuf.st_size);
511 (void) close (ifd);
Simon Glass2d2384b2021-11-12 12:28:13 -0700512 if (!retval)
513 summary_show(&params.summary, params.imagefile,
514 params.keydest);
wdenk5b1d7132002-11-03 00:07:02 +0000515
Prafulla Wadaskarf7644c02009-08-10 18:49:37 +0530516 exit (retval);
wdenk5b1d7132002-11-03 00:07:02 +0000517 }
518
Marek Vasut34633142015-12-07 18:01:54 +0100519 if ((params.type != IH_TYPE_MULTI) && (params.type != IH_TYPE_SCRIPT)) {
Philippe De Swert6ae6e162015-12-04 00:11:23 +0200520 dfd = open(params.datafile, O_RDONLY | O_BINARY);
521 if (dfd < 0) {
522 fprintf(stderr, "%s: Can't open %s: %s\n",
523 params.cmdname, params.datafile,
524 strerror(errno));
525 exit(EXIT_FAILURE);
526 }
Simon Glass92a655c2015-06-23 15:39:12 -0600527
Philippe De Swert6ae6e162015-12-04 00:11:23 +0200528 if (fstat(dfd, &sbuf) < 0) {
529 fprintf(stderr, "%s: Can't stat %s: %s\n",
530 params.cmdname, params.datafile,
531 strerror(errno));
532 exit(EXIT_FAILURE);
533 }
Simon Glass92a655c2015-06-23 15:39:12 -0600534
Philippe De Swert6ae6e162015-12-04 00:11:23 +0200535 params.file_size = sbuf.st_size + tparams->header_size;
536 close(dfd);
537 }
Simon Glass92a655c2015-06-23 15:39:12 -0600538
wdenk5b1d7132002-11-03 00:07:02 +0000539 /*
Stefano Babicf0662102011-09-15 23:50:16 +0000540 * In case there an header with a variable
541 * length will be added, the corresponding
542 * function is called. This is responsible to
543 * allocate memory for the header itself.
wdenk5b1d7132002-11-03 00:07:02 +0000544 */
Stefano Babicf0662102011-09-15 23:50:16 +0000545 if (tparams->vrec_header)
Stefano Babic9bac0bb2013-08-19 19:03:19 +0200546 pad_len = tparams->vrec_header(&params, tparams);
Stefano Babicf0662102011-09-15 23:50:16 +0000547 else
548 memset(tparams->hdr, 0, tparams->header_size);
wdenk5b1d7132002-11-03 00:07:02 +0000549
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530550 if (write(ifd, tparams->hdr, tparams->header_size)
551 != tparams->header_size) {
wdenk5b1d7132002-11-03 00:07:02 +0000552 fprintf (stderr, "%s: Write error on %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530553 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000554 exit (EXIT_FAILURE);
555 }
556
Christian Rieschd1be8f92011-12-09 09:47:38 +0000557 if (!params.skipcpy) {
558 if (params.type == IH_TYPE_MULTI ||
559 params.type == IH_TYPE_SCRIPT) {
560 char *file = params.datafile;
561 uint32_t size;
wdenk5b1d7132002-11-03 00:07:02 +0000562
Christian Rieschd1be8f92011-12-09 09:47:38 +0000563 for (;;) {
564 char *sep = NULL;
wdenk5b1d7132002-11-03 00:07:02 +0000565
Christian Rieschd1be8f92011-12-09 09:47:38 +0000566 if (file) {
567 if ((sep = strchr(file, ':')) != NULL) {
568 *sep = '\0';
569 }
570
571 if (stat (file, &sbuf) < 0) {
572 fprintf (stderr, "%s: Can't stat %s: %s\n",
573 params.cmdname, file, strerror(errno));
574 exit (EXIT_FAILURE);
575 }
576 size = cpu_to_uimage (sbuf.st_size);
577 } else {
578 size = 0;
wdenk5b1d7132002-11-03 00:07:02 +0000579 }
580
Christian Rieschd1be8f92011-12-09 09:47:38 +0000581 if (write(ifd, (char *)&size, sizeof(size)) != sizeof(size)) {
582 fprintf (stderr, "%s: Write error on %s: %s\n",
583 params.cmdname, params.imagefile,
584 strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000585 exit (EXIT_FAILURE);
586 }
Christian Rieschd1be8f92011-12-09 09:47:38 +0000587
588 if (!file) {
589 break;
590 }
591
592 if (sep) {
593 *sep = ':';
594 file = sep + 1;
595 } else {
596 file = NULL;
597 }
wdenk5b1d7132002-11-03 00:07:02 +0000598 }
599
Christian Rieschd1be8f92011-12-09 09:47:38 +0000600 file = params.datafile;
wdenk5b1d7132002-11-03 00:07:02 +0000601
Christian Rieschd1be8f92011-12-09 09:47:38 +0000602 for (;;) {
603 char *sep = strchr(file, ':');
604 if (sep) {
605 *sep = '\0';
606 copy_file (ifd, file, 1);
607 *sep++ = ':';
608 file = sep;
609 } else {
610 copy_file (ifd, file, 0);
611 break;
612 }
wdenk5b1d7132002-11-03 00:07:02 +0000613 }
Shaohui Xie5d898a02012-08-10 02:49:35 +0000614 } else if (params.type == IH_TYPE_PBLIMAGE) {
615 /* PBL has special Image format, implements its' own */
616 pbl_load_uboot(ifd, &params);
Alexander Graf6915dcf2018-04-13 14:18:52 +0200617 } else if (params.type == IH_TYPE_ZYNQMPBIF) {
618 /* Image file is meta, walk through actual targets */
619 int ret;
620
621 ret = zynqmpbif_copy_image(ifd, &params);
622 if (ret)
623 return ret;
Peng Fana2b96ec2018-10-16 04:50:30 +0000624 } else if (params.type == IH_TYPE_IMX8IMAGE) {
625 /* i.MX8/8X has special Image format */
626 int ret;
627
628 ret = imx8image_copy_image(ifd, &params);
629 if (ret)
630 return ret;
Peng Fan6609c262018-11-20 10:19:36 +0000631 } else if (params.type == IH_TYPE_IMX8MIMAGE) {
632 /* i.MX8M has special Image format */
633 int ret;
634
635 ret = imx8mimage_copy_image(ifd, &params);
636 if (ret)
637 return ret;
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800638 } else if ((params.type == IH_TYPE_RKSD) ||
639 (params.type == IH_TYPE_RKSPI)) {
640 /* Rockchip has special Image format */
641 int ret;
642
643 ret = rockchip_copy_image(ifd, &params);
644 if (ret)
645 return ret;
Christian Rieschd1be8f92011-12-09 09:47:38 +0000646 } else {
Stefano Babic9bac0bb2013-08-19 19:03:19 +0200647 copy_file(ifd, params.datafile, pad_len);
wdenk5b1d7132002-11-03 00:07:02 +0000648 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100649 if (params.type == IH_TYPE_FIRMWARE_IVT) {
650 /* Add alignment and IVT */
Kever Yang29e7ab02020-03-30 11:56:19 +0800651 uint32_t aligned_filesize = ALIGN(params.file_size,
652 0x1000);
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100653 flash_header_v2_t ivt_header = { { 0xd1, 0x2000, 0x40 },
654 params.addr, 0, 0, 0, params.addr
655 + aligned_filesize
656 - tparams->header_size,
657 params.addr + aligned_filesize
658 - tparams->header_size
659 + 0x20, 0 };
660 int i = params.file_size;
661 for (; i < aligned_filesize; i++) {
Sven Ebenfeldb4e923a2017-01-17 19:36:51 +0100662 if (write(ifd, (char *) &i, 1) != 1) {
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100663 fprintf(stderr,
664 "%s: Write error on %s: %s\n",
665 params.cmdname,
666 params.imagefile,
667 strerror(errno));
668 exit(EXIT_FAILURE);
669 }
670 }
671 if (write(ifd, &ivt_header, sizeof(flash_header_v2_t))
672 != sizeof(flash_header_v2_t)) {
673 fprintf(stderr, "%s: Write error on %s: %s\n",
674 params.cmdname,
675 params.imagefile,
676 strerror(errno));
677 exit(EXIT_FAILURE);
678 }
679 }
wdenk5b1d7132002-11-03 00:07:02 +0000680 }
681
682 /* We're a bit of paranoid */
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530683#if defined(_POSIX_SYNCHRONIZED_IO) && \
684 !defined(__sun__) && \
685 !defined(__FreeBSD__) && \
Luka Perkov31cbe802014-08-09 18:17:47 +0200686 !defined(__OpenBSD__) && \
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530687 !defined(__APPLE__)
wdenk5b1d7132002-11-03 00:07:02 +0000688 (void) fdatasync (ifd);
689#else
690 (void) fsync (ifd);
691#endif
692
693 if (fstat(ifd, &sbuf) < 0) {
694 fprintf (stderr, "%s: Can't stat %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530695 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000696 exit (EXIT_FAILURE);
697 }
Simon Glass92a655c2015-06-23 15:39:12 -0600698 params.file_size = sbuf.st_size;
wdenk5b1d7132002-11-03 00:07:02 +0000699
Mark Tomlinson8961c8a2018-08-29 10:51:14 +1200700 map_len = sbuf.st_size;
701 ptr = mmap(0, map_len, PROT_READ | PROT_WRITE, MAP_SHARED, ifd, 0);
Mike Frysingerfa956fd2008-05-01 04:13:05 -0400702 if (ptr == MAP_FAILED) {
wdenk5b1d7132002-11-03 00:07:02 +0000703 fprintf (stderr, "%s: Can't map %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530704 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000705 exit (EXIT_FAILURE);
706 }
707
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530708 /* Setup the image header as per input image type*/
709 if (tparams->set_header)
710 tparams->set_header (ptr, &sbuf, ifd, &params);
711 else {
712 fprintf (stderr, "%s: Can't set header for %s: %s\n",
713 params.cmdname, tparams->name, strerror(errno));
714 exit (EXIT_FAILURE);
715 }
wdenk5b1d7132002-11-03 00:07:02 +0000716
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530717 /* Print the image information by processing image header */
718 if (tparams->print_header)
719 tparams->print_header (ptr);
720 else {
Guillaume GARDET004d0092018-03-30 10:28:19 +0200721 fprintf (stderr, "%s: Can't print header for %s\n",
722 params.cmdname, tparams->name);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530723 }
wdenk5b1d7132002-11-03 00:07:02 +0000724
Mark Tomlinson8961c8a2018-08-29 10:51:14 +1200725 (void)munmap((void *)ptr, map_len);
wdenk5b1d7132002-11-03 00:07:02 +0000726
727 /* We're a bit of paranoid */
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530728#if defined(_POSIX_SYNCHRONIZED_IO) && \
729 !defined(__sun__) && \
730 !defined(__FreeBSD__) && \
Luka Perkov31cbe802014-08-09 18:17:47 +0200731 !defined(__OpenBSD__) && \
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530732 !defined(__APPLE__)
wdenk5b1d7132002-11-03 00:07:02 +0000733 (void) fdatasync (ifd);
734#else
735 (void) fsync (ifd);
736#endif
737
738 if (close(ifd)) {
739 fprintf (stderr, "%s: Write error on %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530740 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000741 exit (EXIT_FAILURE);
742 }
743
Pali Rohárd3b1ca22022-01-14 18:34:43 +0100744 if (tparams->verify_header)
745 verify_image(tparams);
746
wdenk5b1d7132002-11-03 00:07:02 +0000747 exit (EXIT_SUCCESS);
748}
749
750static void
751copy_file (int ifd, const char *datafile, int pad)
752{
753 int dfd;
754 struct stat sbuf;
755 unsigned char *ptr;
756 int tail;
757 int zero = 0;
Stefano Babic9bac0bb2013-08-19 19:03:19 +0200758 uint8_t zeros[4096];
wdenk5b1d7132002-11-03 00:07:02 +0000759 int offset = 0;
Mylène Josseranddd85dc52020-07-08 11:52:50 +0200760 int size, ret;
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200761 struct image_type_params *tparams = imagetool_get_type(params.type);
wdenk5b1d7132002-11-03 00:07:02 +0000762
Stefano Babic9bac0bb2013-08-19 19:03:19 +0200763 memset(zeros, 0, sizeof(zeros));
764
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530765 if (params.vflag) {
wdenk5b1d7132002-11-03 00:07:02 +0000766 fprintf (stderr, "Adding Image %s\n", datafile);
767 }
768
wdenkef1464c2003-10-08 22:14:02 +0000769 if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) {
wdenk5b1d7132002-11-03 00:07:02 +0000770 fprintf (stderr, "%s: Can't open %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530771 params.cmdname, datafile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000772 exit (EXIT_FAILURE);
773 }
774
775 if (fstat(dfd, &sbuf) < 0) {
776 fprintf (stderr, "%s: Can't stat %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530777 params.cmdname, datafile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000778 exit (EXIT_FAILURE);
779 }
780
Thomas Hebbeaa64422021-08-01 15:23:13 -0700781 if (sbuf.st_size == 0) {
782 fprintf (stderr, "%s: Input file %s is empty, bailing out\n",
783 params.cmdname, datafile);
784 exit (EXIT_FAILURE);
785 }
786
Mike Frysingerfa956fd2008-05-01 04:13:05 -0400787 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
788 if (ptr == MAP_FAILED) {
wdenk5b1d7132002-11-03 00:07:02 +0000789 fprintf (stderr, "%s: Can't read %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530790 params.cmdname, datafile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000791 exit (EXIT_FAILURE);
792 }
793
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530794 if (params.xflag) {
wdenk5b1d7132002-11-03 00:07:02 +0000795 unsigned char *p = NULL;
796 /*
797 * XIP: do not append the image_header_t at the
798 * beginning of the file, but consume the space
799 * reserved for it.
800 */
801
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530802 if ((unsigned)sbuf.st_size < tparams->header_size) {
wdenk5b1d7132002-11-03 00:07:02 +0000803 fprintf (stderr,
804 "%s: Bad size: \"%s\" is too small for XIP\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530805 params.cmdname, datafile);
wdenk5b1d7132002-11-03 00:07:02 +0000806 exit (EXIT_FAILURE);
807 }
808
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530809 for (p = ptr; p < ptr + tparams->header_size; p++) {
wdenk5b1d7132002-11-03 00:07:02 +0000810 if ( *p != 0xff ) {
811 fprintf (stderr,
812 "%s: Bad file: \"%s\" has invalid buffer for XIP\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530813 params.cmdname, datafile);
wdenk5b1d7132002-11-03 00:07:02 +0000814 exit (EXIT_FAILURE);
815 }
816 }
817
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530818 offset = tparams->header_size;
wdenk5b1d7132002-11-03 00:07:02 +0000819 }
820
821 size = sbuf.st_size - offset;
Mylène Josseranddd85dc52020-07-08 11:52:50 +0200822
823 ret = write(ifd, ptr + offset, size);
824 if (ret != size) {
825 if (ret < 0)
826 fprintf (stderr, "%s: Write error on %s: %s\n",
827 params.cmdname, params.imagefile, strerror(errno));
828 else if (ret < size)
829 fprintf (stderr, "%s: Write only %d/%d bytes, "\
830 "probably no space left on the device\n",
831 params.cmdname, ret, size);
wdenk5b1d7132002-11-03 00:07:02 +0000832 exit (EXIT_FAILURE);
833 }
834
Stefano Babic9bac0bb2013-08-19 19:03:19 +0200835 tail = size % 4;
836 if ((pad == 1) && (tail != 0)) {
wdenk5b1d7132002-11-03 00:07:02 +0000837
838 if (write(ifd, (char *)&zero, 4-tail) != 4-tail) {
839 fprintf (stderr, "%s: Write error on %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530840 params.cmdname, params.imagefile,
841 strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000842 exit (EXIT_FAILURE);
843 }
Stefano Babic9bac0bb2013-08-19 19:03:19 +0200844 } else if (pad > 1) {
Simon Glass424b86a2015-08-30 16:55:22 -0600845 while (pad > 0) {
846 int todo = sizeof(zeros);
847
848 if (todo > pad)
849 todo = pad;
850 if (write(ifd, (char *)&zeros, todo) != todo) {
851 fprintf(stderr, "%s: Write error on %s: %s\n",
852 params.cmdname, params.imagefile,
853 strerror(errno));
854 exit(EXIT_FAILURE);
855 }
856 pad -= todo;
Stefano Babic9bac0bb2013-08-19 19:03:19 +0200857 }
wdenk5b1d7132002-11-03 00:07:02 +0000858 }
859
860 (void) munmap((void *)ptr, sbuf.st_size);
861 (void) close (dfd);
862}