2 * (C) Copyright 2008 Semihalf
4 * (C) Copyright 2000-2009
5 * DENX Software Engineering
6 * Wolfgang Denk, wd@denx.de
8 * SPDX-License-Identifier: GPL-2.0+
16 static void copy_file(int, const char *, int);
18 /* parameters initialized by core will be used by the image type code */
19 static struct image_tool_params params = {
22 .type = IH_TYPE_KERNEL,
24 .dtc = MKIMAGE_DEFAULT_DTC_OPTIONS,
29 static enum ih_category cur_category;
31 static int h_compare_category_name(const void *vtype1, const void *vtype2)
33 const int *type1 = vtype1;
34 const int *type2 = vtype2;
35 const char *name1 = genimg_get_cat_short_name(cur_category, *type1);
36 const char *name2 = genimg_get_cat_short_name(cur_category, *type2);
38 return strcmp(name1, name2);
41 static int show_valid_options(enum ih_category category)
48 count = genimg_get_cat_count(category);
49 order = calloc(count, sizeof(*order));
53 /* Sort the names in order of short name for easier reading */
54 for (item = 0; item < count; item++)
56 cur_category = category;
57 qsort(order, count, sizeof(int), h_compare_category_name);
59 fprintf(stderr, "\nInvalid %s, supported are:\n",
60 genimg_get_cat_desc(category));
61 for (i = 0; i < count; i++) {
63 fprintf(stderr, "\t%-15s %s\n",
64 genimg_get_cat_short_name(category, item),
65 genimg_get_cat_name(category, item));
67 fprintf(stderr, "\n");
73 static void usage(const char *msg)
75 fprintf(stderr, "Error: %s\n", msg);
76 fprintf(stderr, "Usage: %s -l image\n"
77 " -l ==> list image header information\n",
80 " %s [-x] -A arch -O os -T type -C comp -a addr -e ep -n name -d data_file[:data_file...] image\n"
81 " -A ==> set architecture to 'arch'\n"
82 " -O ==> set operating system to 'os'\n"
83 " -T ==> set image type to 'type'\n"
84 " -C ==> set compression type 'comp'\n"
85 " -a ==> set load address to 'addr' (hex)\n"
86 " -e ==> set entry point to 'ep' (hex)\n"
87 " -n ==> set image name to 'name'\n"
88 " -d ==> use image data from 'datafile'\n"
89 " -x ==> set XIP (execute in place)\n",
92 " %s [-D dtc_options] [-f fit-image.its|-f auto|-F] [-b <dtb> [-b <dtb>]] [-i <ramdisk.cpio.gz>] fit-image\n"
93 " <dtb> file is used with -f auto, it may occur multiple times.\n",
96 " -D => set all options for device tree compiler\n"
97 " -f => input filename for FIT source\n"
98 " -i => input filename for ramdisk file\n");
99 #ifdef CONFIG_FIT_SIGNATURE
101 "Signing / verified boot options: [-E] [-k keydir] [-K dtb] [ -c <comment>] [-p addr] [-r] [-N engine]\n"
102 " -E => place data outside of the FIT structure\n"
103 " -k => set directory containing private keys\n"
104 " -K => write public keys to this .dtb file\n"
105 " -c => add comment in signature node\n"
106 " -F => re-sign existing FIT image\n"
107 " -p => place external data at a static position\n"
108 " -r => mark keys used as 'required' in dtb\n"
109 " -N => engine to use for signing (pkcs11)\n");
112 "Signing / verified boot not supported (CONFIG_FIT_SIGNATURE undefined)\n");
114 fprintf(stderr, " %s -V ==> print version information and exit\n",
116 fprintf(stderr, "Use '-T list' to see a list of available image types\n");
121 static int add_content(int type, const char *fname)
123 struct content_info *cont;
125 cont = calloc(1, sizeof(*cont));
130 if (params.content_tail)
131 params.content_tail->next = cont;
133 params.content_head = cont;
134 params.content_tail = cont;
139 static void process_args(int argc, char **argv)
142 int type = IH_TYPE_INVALID;
143 char *datafile = NULL;
146 while ((opt = getopt(argc, argv,
147 "a:A:b:c:C:d:D:e:Ef:Fk:i:K:ln:N:p:O:rR:qsT:vVx")) != -1) {
150 params.addr = strtoull(optarg, &ptr, 16);
152 fprintf(stderr, "%s: invalid load address %s\n",
153 params.cmdname, optarg);
158 params.arch = genimg_get_arch_id(optarg);
159 if (params.arch < 0) {
160 show_valid_options(IH_ARCH);
161 usage("Invalid architecture");
165 if (add_content(IH_TYPE_FLATDT, optarg)) {
167 "%s: Out of memory adding content '%s'",
168 params.cmdname, optarg);
173 params.comment = optarg;
176 params.comp = genimg_get_comp_id(optarg);
177 if (params.comp < 0) {
178 show_valid_options(IH_COMP);
179 usage("Invalid compression type");
183 params.datafile = optarg;
190 params.ep = strtoull(optarg, &ptr, 16);
192 fprintf(stderr, "%s: invalid entry point %s\n",
193 params.cmdname, optarg);
199 params.external_data = true;
203 params.auto_its = !strcmp(datafile, "auto");
207 * The flattened image tree (FIT) format
208 * requires a flattened device tree image type
210 params.type = IH_TYPE_FLATDT;
214 params.fit_ramdisk = optarg;
217 params.keydir = optarg;
220 params.keydest = optarg;
226 params.imagename = optarg;
229 params.engine_id = optarg;
232 params.os = genimg_get_os_id(optarg);
234 show_valid_options(IH_OS);
235 usage("Invalid operating system");
239 params.external_offset = strtoull(optarg, &ptr, 16);
241 fprintf(stderr, "%s: invalid offset size %s\n",
242 params.cmdname, optarg);
250 params.require_keys = 1;
254 * This entry is for the second configuration
255 * file, if only one is not enough.
257 params.imagename2 = optarg;
263 if (strcmp(optarg, "list") == 0) {
264 show_valid_options(IH_TYPE);
267 type = genimg_get_type_id(optarg);
269 show_valid_options(IH_TYPE);
270 usage("Invalid image type");
277 printf("mkimage version %s\n", PLAIN_VERSION);
283 usage("Invalid option");
287 /* The last parameter is expected to be the imagefile */
289 params.imagefile = argv[optind];
292 * For auto-generated FIT images we need to know the image type to put
293 * in the FIT, which is separate from the file's image type (which
294 * will always be IH_TYPE_FLATDT in this case).
296 if (params.type == IH_TYPE_FLATDT) {
297 params.fit_image_type = type ? type : IH_TYPE_KERNEL;
298 /* For auto_its, datafile is always 'auto' */
299 if (!params.auto_its)
300 params.datafile = datafile;
301 else if (!params.datafile)
302 usage("Missing data file for auto-FIT (use -d)");
303 } else if (type != IH_TYPE_INVALID) {
307 if (!params.imagefile)
308 usage("Missing output filename");
311 int main(int argc, char **argv)
317 struct image_type_params *tparams = NULL;
321 params.cmdname = *argv;
325 process_args(argc, argv);
327 /* set tparams as per input type_id */
328 tparams = imagetool_get_type(params.type);
329 if (tparams == NULL) {
330 fprintf (stderr, "%s: unsupported type %s\n",
331 params.cmdname, genimg_get_type_name(params.type));
336 * check the passed arguments parameters meets the requirements
337 * as per image type to be generated/listed
339 if (tparams->check_params)
340 if (tparams->check_params (¶ms))
341 usage("Bad parameters for image type");
344 params.ep = params.addr;
345 /* If XIP, entry point must be after the U-Boot header */
347 params.ep += tparams->header_size;
351 if (tparams->fflag_handle)
353 * in some cases, some additional processing needs
354 * to be done if fflag is defined
356 * For ex. fit_handle_file for Fit file support
358 retval = tparams->fflag_handle(¶ms);
360 if (retval != EXIT_SUCCESS)
364 if (params.lflag || params.fflag) {
365 ifd = open (params.imagefile, O_RDONLY|O_BINARY);
367 ifd = open (params.imagefile,
368 O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666);
372 fprintf (stderr, "%s: Can't open %s: %s\n",
373 params.cmdname, params.imagefile,
378 if (params.lflag || params.fflag) {
380 * list header information of existing image
382 if (fstat(ifd, &sbuf) < 0) {
383 fprintf (stderr, "%s: Can't stat %s: %s\n",
384 params.cmdname, params.imagefile,
389 if ((unsigned)sbuf.st_size < tparams->header_size) {
391 "%s: Bad size: \"%s\" is not valid image\n",
392 params.cmdname, params.imagefile);
396 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0);
397 if (ptr == MAP_FAILED) {
398 fprintf (stderr, "%s: Can't read %s: %s\n",
399 params.cmdname, params.imagefile,
405 * scan through mkimage registry for all supported image types
406 * and verify the input image file header for match
407 * Print the image information for matched image type
408 * Returns the error code if not matched
410 retval = imagetool_verify_print_header(ptr, &sbuf,
413 (void) munmap((void *)ptr, sbuf.st_size);
419 if ((params.type != IH_TYPE_MULTI) && (params.type != IH_TYPE_SCRIPT)) {
420 dfd = open(params.datafile, O_RDONLY | O_BINARY);
422 fprintf(stderr, "%s: Can't open %s: %s\n",
423 params.cmdname, params.datafile,
428 if (fstat(dfd, &sbuf) < 0) {
429 fprintf(stderr, "%s: Can't stat %s: %s\n",
430 params.cmdname, params.datafile,
435 params.file_size = sbuf.st_size + tparams->header_size;
440 * In case there an header with a variable
441 * length will be added, the corresponding
442 * function is called. This is responsible to
443 * allocate memory for the header itself.
445 if (tparams->vrec_header)
446 pad_len = tparams->vrec_header(¶ms, tparams);
448 memset(tparams->hdr, 0, tparams->header_size);
450 if (write(ifd, tparams->hdr, tparams->header_size)
451 != tparams->header_size) {
452 fprintf (stderr, "%s: Write error on %s: %s\n",
453 params.cmdname, params.imagefile, strerror(errno));
457 if (!params.skipcpy) {
458 if (params.type == IH_TYPE_MULTI ||
459 params.type == IH_TYPE_SCRIPT) {
460 char *file = params.datafile;
467 if ((sep = strchr(file, ':')) != NULL) {
471 if (stat (file, &sbuf) < 0) {
472 fprintf (stderr, "%s: Can't stat %s: %s\n",
473 params.cmdname, file, strerror(errno));
476 size = cpu_to_uimage (sbuf.st_size);
481 if (write(ifd, (char *)&size, sizeof(size)) != sizeof(size)) {
482 fprintf (stderr, "%s: Write error on %s: %s\n",
483 params.cmdname, params.imagefile,
500 file = params.datafile;
503 char *sep = strchr(file, ':');
506 copy_file (ifd, file, 1);
510 copy_file (ifd, file, 0);
514 } else if (params.type == IH_TYPE_PBLIMAGE) {
515 /* PBL has special Image format, implements its' own */
516 pbl_load_uboot(ifd, ¶ms);
518 copy_file(ifd, params.datafile, pad_len);
520 if (params.type == IH_TYPE_FIRMWARE_IVT) {
521 /* Add alignment and IVT */
522 uint32_t aligned_filesize = (params.file_size + 0x1000
523 - 1) & ~(0x1000 - 1);
524 flash_header_v2_t ivt_header = { { 0xd1, 0x2000, 0x40 },
525 params.addr, 0, 0, 0, params.addr
527 - tparams->header_size,
528 params.addr + aligned_filesize
529 - tparams->header_size
531 int i = params.file_size;
532 for (; i < aligned_filesize; i++) {
533 if (write(ifd, (char *) &i, 1) != 1) {
535 "%s: Write error on %s: %s\n",
542 if (write(ifd, &ivt_header, sizeof(flash_header_v2_t))
543 != sizeof(flash_header_v2_t)) {
544 fprintf(stderr, "%s: Write error on %s: %s\n",
553 /* We're a bit of paranoid */
554 #if defined(_POSIX_SYNCHRONIZED_IO) && \
555 !defined(__sun__) && \
556 !defined(__FreeBSD__) && \
557 !defined(__OpenBSD__) && \
559 (void) fdatasync (ifd);
564 if (fstat(ifd, &sbuf) < 0) {
565 fprintf (stderr, "%s: Can't stat %s: %s\n",
566 params.cmdname, params.imagefile, strerror(errno));
569 params.file_size = sbuf.st_size;
571 ptr = mmap(0, sbuf.st_size, PROT_READ|PROT_WRITE, MAP_SHARED, ifd, 0);
572 if (ptr == MAP_FAILED) {
573 fprintf (stderr, "%s: Can't map %s: %s\n",
574 params.cmdname, params.imagefile, strerror(errno));
578 /* Setup the image header as per input image type*/
579 if (tparams->set_header)
580 tparams->set_header (ptr, &sbuf, ifd, ¶ms);
582 fprintf (stderr, "%s: Can't set header for %s: %s\n",
583 params.cmdname, tparams->name, strerror(errno));
587 /* Print the image information by processing image header */
588 if (tparams->print_header)
589 tparams->print_header (ptr);
591 fprintf (stderr, "%s: Can't print header for %s\n",
592 params.cmdname, tparams->name);
595 (void) munmap((void *)ptr, sbuf.st_size);
597 /* We're a bit of paranoid */
598 #if defined(_POSIX_SYNCHRONIZED_IO) && \
599 !defined(__sun__) && \
600 !defined(__FreeBSD__) && \
601 !defined(__OpenBSD__) && \
603 (void) fdatasync (ifd);
609 fprintf (stderr, "%s: Write error on %s: %s\n",
610 params.cmdname, params.imagefile, strerror(errno));
618 copy_file (int ifd, const char *datafile, int pad)
628 struct image_type_params *tparams = imagetool_get_type(params.type);
630 memset(zeros, 0, sizeof(zeros));
633 fprintf (stderr, "Adding Image %s\n", datafile);
636 if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) {
637 fprintf (stderr, "%s: Can't open %s: %s\n",
638 params.cmdname, datafile, strerror(errno));
642 if (fstat(dfd, &sbuf) < 0) {
643 fprintf (stderr, "%s: Can't stat %s: %s\n",
644 params.cmdname, datafile, strerror(errno));
648 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
649 if (ptr == MAP_FAILED) {
650 fprintf (stderr, "%s: Can't read %s: %s\n",
651 params.cmdname, datafile, strerror(errno));
656 unsigned char *p = NULL;
658 * XIP: do not append the image_header_t at the
659 * beginning of the file, but consume the space
663 if ((unsigned)sbuf.st_size < tparams->header_size) {
665 "%s: Bad size: \"%s\" is too small for XIP\n",
666 params.cmdname, datafile);
670 for (p = ptr; p < ptr + tparams->header_size; p++) {
673 "%s: Bad file: \"%s\" has invalid buffer for XIP\n",
674 params.cmdname, datafile);
679 offset = tparams->header_size;
682 size = sbuf.st_size - offset;
683 if (write(ifd, ptr + offset, size) != size) {
684 fprintf (stderr, "%s: Write error on %s: %s\n",
685 params.cmdname, params.imagefile, strerror(errno));
690 if ((pad == 1) && (tail != 0)) {
692 if (write(ifd, (char *)&zero, 4-tail) != 4-tail) {
693 fprintf (stderr, "%s: Write error on %s: %s\n",
694 params.cmdname, params.imagefile,
698 } else if (pad > 1) {
700 int todo = sizeof(zeros);
704 if (write(ifd, (char *)&zeros, todo) != todo) {
705 fprintf(stderr, "%s: Write error on %s: %s\n",
706 params.cmdname, params.imagefile,
714 (void) munmap((void *)ptr, sbuf.st_size);