Merge tag 'u-boot-at91-fixes-2022.04-a' of https://source.denx.de/u-boot/custodians...
[platform/kernel/u-boot.git] / tools / mkimage.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2008 Semihalf
4  *
5  * (C) Copyright 2000-2009
6  * DENX Software Engineering
7  * Wolfgang Denk, wd@denx.de
8  */
9
10 #include "imagetool.h"
11 #include "mkimage.h"
12 #include "imximage.h"
13 #include <fit_common.h>
14 #include <image.h>
15 #include <version.h>
16 #ifdef __linux__
17 #include <sys/ioctl.h>
18 #endif
19
20 static void copy_file(int, const char *, int);
21
22 /* parameters initialized by core will be used by the image type code */
23 static struct image_tool_params params = {
24         .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,
29         .imagename = "",
30         .imagename2 = "",
31 };
32
33 static enum ih_category cur_category;
34
35 static 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
45 static int show_valid_options(enum ih_category category)
46 {
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 */
58         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         }
65         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");
77         free(order);
78
79         return 0;
80 }
81
82 static void usage(const char *msg)
83 {
84         fprintf(stderr, "Error: %s\n", msg);
85         fprintf(stderr, "Usage: %s [-T type] -l image\n"
86                          "          -l ==> list image header information\n"
87                          "          -T ==> parse image file as 'type'\n",
88                 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,
102                 "       %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"
103                 "           <dtb> file is used with -f auto, it may occur multiple times.\n",
104                 params.cmdname);
105         fprintf(stderr,
106                 "          -D => set all options for device tree compiler\n"
107                 "          -f => input filename for FIT source\n"
108                 "          -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");
111 #ifdef CONFIG_FIT_SIGNATURE
112         fprintf(stderr,
113                 "Signing / verified boot options: [-k keydir] [-K dtb] [ -c <comment>] [-p addr] [-r] [-N engine]\n"
114                 "          -k => set directory containing private keys\n"
115                 "          -K => write public keys to this .dtb file\n"
116                 "          -G => use this signing key (in lieu of -k)\n"
117                 "          -c => add comment in signature node\n"
118                 "          -F => re-sign existing FIT image\n"
119                 "          -p => place external data at a static position\n"
120                 "          -r => mark keys used as 'required' in dtb\n"
121                 "          -N => openssl engine to use for signing\n");
122 #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);
128         fprintf(stderr, "Use '-T list' to see a list of available image types\n");
129
130         exit(EXIT_FAILURE);
131 }
132
133 static 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
151 static void process_args(int argc, char **argv)
152 {
153         char *ptr;
154         int type = IH_TYPE_INVALID;
155         char *datafile = NULL;
156         int opt;
157
158         while ((opt = getopt(argc, argv,
159                    "a:A:b:B:c:C:d:D:e:Ef:FG:k:i:K:ln:N:p:o:O:rR:qstT:vVx")) != -1) {
160                 switch (opt) {
161                 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                         }
168                         break;
169                 case 'A':
170                         params.arch = genimg_get_arch_id(optarg);
171                         if (params.arch < 0) {
172                                 show_valid_options(IH_ARCH);
173                                 usage("Invalid architecture");
174                         }
175                         break;
176                 case 'b':
177                         if (add_content(IH_TYPE_FLATDT, optarg)) {
178                                 fprintf(stderr,
179                                         "%s: Out of memory adding content '%s'",
180                                         params.cmdname, optarg);
181                                 exit(EXIT_FAILURE);
182                         }
183                         break;
184                 case 'B':
185                         params.bl_len = strtoull(optarg, &ptr, 16);
186                         if (*ptr) {
187                                 fprintf(stderr, "%s: invalid block length %s\n",
188                                         params.cmdname, optarg);
189                                 exit(EXIT_FAILURE);
190                         }
191
192                         break;
193                 case 'c':
194                         params.comment = optarg;
195                         break;
196                 case 'C':
197                         params.comp = genimg_get_comp_id(optarg);
198                         if (params.comp < 0) {
199                                 show_valid_options(IH_COMP);
200                                 usage("Invalid compression type");
201                         }
202                         break;
203                 case 'd':
204                         params.datafile = optarg;
205                         params.dflag = 1;
206                         break;
207                 case 'D':
208                         params.dtc = optarg;
209                         break;
210                 case 'e':
211                         params.ep = strtoull(optarg, &ptr, 16);
212                         if (*ptr) {
213                                 fprintf(stderr, "%s: invalid entry point %s\n",
214                                         params.cmdname, optarg);
215                                 exit(EXIT_FAILURE);
216                         }
217                         params.eflag = 1;
218                         break;
219                 case 'E':
220                         params.external_data = true;
221                         break;
222                 case 'f':
223                         datafile = optarg;
224                         params.auto_its = !strcmp(datafile, "auto");
225                         /* fallthrough */
226                 case 'F':
227                         /*
228                          * The flattened image tree (FIT) format
229                          * requires a flattened device tree image type
230                          */
231                         params.type = IH_TYPE_FLATDT;
232                         params.fflag = 1;
233                         break;
234                 case 'G':
235                         params.keyfile = optarg;
236                         break;
237                 case 'i':
238                         params.fit_ramdisk = optarg;
239                         break;
240                 case 'k':
241                         params.keydir = optarg;
242                         break;
243                 case 'K':
244                         params.keydest = optarg;
245                         break;
246                 case 'l':
247                         params.lflag = 1;
248                         break;
249                 case 'n':
250                         params.imagename = optarg;
251                         break;
252                 case 'N':
253                         params.engine_id = optarg;
254                         break;
255                 case 'o':
256                         params.algo_name = optarg;
257                         break;
258                 case 'O':
259                         params.os = genimg_get_os_id(optarg);
260                         if (params.os < 0) {
261                                 show_valid_options(IH_OS);
262                                 usage("Invalid operating system");
263                         }
264                         break;
265                 case 'p':
266                         params.external_offset = strtoull(optarg, &ptr, 16);
267                         if (*ptr) {
268                                 fprintf(stderr, "%s: invalid offset size %s\n",
269                                         params.cmdname, optarg);
270                                 exit(EXIT_FAILURE);
271                         }
272                         break;
273                 case 'q':
274                         params.quiet = 1;
275                         break;
276                 case 'r':
277                         params.require_keys = 1;
278                         break;
279                 case 'R':
280                         /*
281                          * This entry is for the second configuration
282                          * file, if only one is not enough.
283                          */
284                         params.imagename2 = optarg;
285                         break;
286                 case 's':
287                         params.skipcpy = 1;
288                         break;
289                 case 't':
290                         params.reset_timestamp = 1;
291                         break;
292                 case 'T':
293                         if (strcmp(optarg, "list") == 0) {
294                                 show_valid_options(IH_TYPE);
295                                 exit(EXIT_SUCCESS);
296                         }
297                         type = genimg_get_type_id(optarg);
298                         if (type < 0) {
299                                 show_valid_options(IH_TYPE);
300                                 usage("Invalid image type");
301                         }
302                         break;
303                 case 'v':
304                         params.vflag++;
305                         break;
306                 case 'V':
307                         printf("mkimage version %s\n", PLAIN_VERSION);
308                         exit(EXIT_SUCCESS);
309                 case 'x':
310                         params.xflag++;
311                         break;
312                 default:
313                         usage("Invalid option");
314                 }
315         }
316
317         /* The last parameter is expected to be the imagefile */
318         if (optind < argc)
319                 params.imagefile = argv[optind];
320
321         /*
322          * For auto-generated FIT images we need to know the image type to put
323          * in the FIT, which is separate from the file's image type (which
324          * will always be IH_TYPE_FLATDT in this case).
325          */
326         if (params.type == IH_TYPE_FLATDT) {
327                 params.fit_image_type = type ? type : IH_TYPE_KERNEL;
328                 /* For auto_its, datafile is always 'auto' */
329                 if (!params.auto_its)
330                         params.datafile = datafile;
331                 else if (!params.datafile)
332                         usage("Missing data file for auto-FIT (use -d)");
333         } else if (params.lflag || type != IH_TYPE_INVALID) {
334                 if (type == IH_TYPE_SCRIPT && !params.datafile)
335                         usage("Missing data file for script (use -d)");
336                 params.type = type;
337         }
338
339         if (!params.imagefile)
340                 usage("Missing output filename");
341 }
342
343 int main(int argc, char **argv)
344 {
345         int ifd = -1;
346         struct stat sbuf;
347         char *ptr;
348         int retval = 0;
349         struct image_type_params *tparams = NULL;
350         int pad_len = 0;
351         int dfd;
352         size_t map_len;
353
354         params.cmdname = *argv;
355         params.addr = 0;
356         params.ep = 0;
357
358         process_args(argc, argv);
359
360         /* set tparams as per input type_id */
361         tparams = imagetool_get_type(params.type);
362         if (tparams == NULL && !params.lflag) {
363                 fprintf (stderr, "%s: unsupported type %s\n",
364                         params.cmdname, genimg_get_type_name(params.type));
365                 exit (EXIT_FAILURE);
366         }
367
368         /*
369          * check the passed arguments parameters meets the requirements
370          * as per image type to be generated/listed
371          */
372         if (tparams && tparams->check_params)
373                 if (tparams->check_params (&params))
374                         usage("Bad parameters for image type");
375
376         if (!params.eflag) {
377                 params.ep = params.addr;
378                 /* If XIP, entry point must be after the U-Boot header */
379                 if (params.xflag && tparams)
380                         params.ep += tparams->header_size;
381         }
382
383         if (params.fflag){
384                 if (tparams->fflag_handle)
385                         /*
386                          * in some cases, some additional processing needs
387                          * to be done if fflag is defined
388                          *
389                          * For ex. fit_handle_file for Fit file support
390                          */
391                         retval = tparams->fflag_handle(&params);
392
393                 if (retval != EXIT_SUCCESS)
394                         exit (retval);
395         }
396
397         if (params.lflag || params.fflag) {
398                 ifd = open (params.imagefile, O_RDONLY|O_BINARY);
399         } else {
400                 ifd = open (params.imagefile,
401                         O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666);
402         }
403
404         if (ifd < 0) {
405                 fprintf (stderr, "%s: Can't open %s: %s\n",
406                         params.cmdname, params.imagefile,
407                         strerror(errno));
408                 exit (EXIT_FAILURE);
409         }
410
411         if (params.lflag || params.fflag) {
412                 uint64_t size;
413                 /*
414                  * list header information of existing image
415                  */
416                 if (fstat(ifd, &sbuf) < 0) {
417                         fprintf (stderr, "%s: Can't stat %s: %s\n",
418                                 params.cmdname, params.imagefile,
419                                 strerror(errno));
420                         exit (EXIT_FAILURE);
421                 }
422
423                 if ((sbuf.st_mode & S_IFMT) == S_IFBLK) {
424 #ifdef __linux__
425 #if defined(__linux__) && defined(_IOR) && !defined(BLKGETSIZE64)
426 #define BLKGETSIZE64 _IOR(0x12,114,size_t)      /* return device size in bytes (u64 *arg) */
427 #endif
428                         if (ioctl(ifd, BLKGETSIZE64, &size) < 0) {
429                                 fprintf (stderr,
430                                         "%s: failed to get size of block device \"%s\"\n",
431                                         params.cmdname, params.imagefile);
432                                 exit (EXIT_FAILURE);
433                         }
434 #else
435                         fprintf (stderr,
436                                 "%s: \"%s\" is block device, don't know how to get its size\n",
437                                 params.cmdname, params.imagefile);
438                         exit (EXIT_FAILURE);
439 #endif
440                 } else if (tparams && sbuf.st_size < (off_t)tparams->header_size) {
441                         fprintf (stderr,
442                                 "%s: Bad size: \"%s\" is not valid image: size %llu < %u\n",
443                                 params.cmdname, params.imagefile,
444                                 (unsigned long long) sbuf.st_size,
445                                 tparams->header_size);
446                         exit (EXIT_FAILURE);
447                 } else {
448                         size = sbuf.st_size;
449                 }
450
451                 ptr = mmap(0, size, PROT_READ, MAP_SHARED, ifd, 0);
452                 if (ptr == MAP_FAILED) {
453                         fprintf (stderr, "%s: Can't read %s: %s\n",
454                                 params.cmdname, params.imagefile,
455                                 strerror(errno));
456                         exit (EXIT_FAILURE);
457                 }
458
459                 /*
460                  * Verifies the header format based on the expected header for image
461                  * type in tparams. If tparams is NULL simply check all image types
462                  * to find one that matches our header.
463                  */
464                 retval = imagetool_verify_print_header(ptr, &sbuf, tparams, &params);
465
466                 (void) munmap((void *)ptr, sbuf.st_size);
467                 (void) close (ifd);
468                 if (!retval)
469                         summary_show(&params.summary, params.imagefile,
470                                      params.keydest);
471
472                 exit (retval);
473         }
474
475         if ((params.type != IH_TYPE_MULTI) && (params.type != IH_TYPE_SCRIPT)) {
476                 dfd = open(params.datafile, O_RDONLY | O_BINARY);
477                 if (dfd < 0) {
478                         fprintf(stderr, "%s: Can't open %s: %s\n",
479                                 params.cmdname, params.datafile,
480                                 strerror(errno));
481                         exit(EXIT_FAILURE);
482                 }
483
484                 if (fstat(dfd, &sbuf) < 0) {
485                         fprintf(stderr, "%s: Can't stat %s: %s\n",
486                                 params.cmdname, params.datafile,
487                                 strerror(errno));
488                         exit(EXIT_FAILURE);
489                 }
490
491                 params.file_size = sbuf.st_size + tparams->header_size;
492                 close(dfd);
493         }
494
495         /*
496          * In case there an header with a variable
497          * length will be added, the corresponding
498          * function is called. This is responsible to
499          * allocate memory for the header itself.
500          */
501         if (tparams->vrec_header)
502                 pad_len = tparams->vrec_header(&params, tparams);
503         else
504                 memset(tparams->hdr, 0, tparams->header_size);
505
506         if (write(ifd, tparams->hdr, tparams->header_size)
507                                         != tparams->header_size) {
508                 fprintf (stderr, "%s: Write error on %s: %s\n",
509                         params.cmdname, params.imagefile, strerror(errno));
510                 exit (EXIT_FAILURE);
511         }
512
513         if (!params.skipcpy) {
514                 if (params.type == IH_TYPE_MULTI ||
515                     params.type == IH_TYPE_SCRIPT) {
516                         char *file = params.datafile;
517                         uint32_t size;
518
519                         for (;;) {
520                                 char *sep = NULL;
521
522                                 if (file) {
523                                         if ((sep = strchr(file, ':')) != NULL) {
524                                                 *sep = '\0';
525                                         }
526
527                                         if (stat (file, &sbuf) < 0) {
528                                                 fprintf (stderr, "%s: Can't stat %s: %s\n",
529                                                          params.cmdname, file, strerror(errno));
530                                                 exit (EXIT_FAILURE);
531                                         }
532                                         size = cpu_to_uimage (sbuf.st_size);
533                                 } else {
534                                         size = 0;
535                                 }
536
537                                 if (write(ifd, (char *)&size, sizeof(size)) != sizeof(size)) {
538                                         fprintf (stderr, "%s: Write error on %s: %s\n",
539                                                  params.cmdname, params.imagefile,
540                                                  strerror(errno));
541                                         exit (EXIT_FAILURE);
542                                 }
543
544                                 if (!file) {
545                                         break;
546                                 }
547
548                                 if (sep) {
549                                         *sep = ':';
550                                         file = sep + 1;
551                                 } else {
552                                         file = NULL;
553                                 }
554                         }
555
556                         file = params.datafile;
557
558                         for (;;) {
559                                 char *sep = strchr(file, ':');
560                                 if (sep) {
561                                         *sep = '\0';
562                                         copy_file (ifd, file, 1);
563                                         *sep++ = ':';
564                                         file = sep;
565                                 } else {
566                                         copy_file (ifd, file, 0);
567                                         break;
568                                 }
569                         }
570                 } else if (params.type == IH_TYPE_PBLIMAGE) {
571                         /* PBL has special Image format, implements its' own */
572                         pbl_load_uboot(ifd, &params);
573                 } else if (params.type == IH_TYPE_ZYNQMPBIF) {
574                         /* Image file is meta, walk through actual targets */
575                         int ret;
576
577                         ret = zynqmpbif_copy_image(ifd, &params);
578                         if (ret)
579                                 return ret;
580                 } else if (params.type == IH_TYPE_IMX8IMAGE) {
581                         /* i.MX8/8X has special Image format */
582                         int ret;
583
584                         ret = imx8image_copy_image(ifd, &params);
585                         if (ret)
586                                 return ret;
587                 } else if (params.type == IH_TYPE_IMX8MIMAGE) {
588                         /* i.MX8M has special Image format */
589                         int ret;
590
591                         ret = imx8mimage_copy_image(ifd, &params);
592                         if (ret)
593                                 return ret;
594                 } else if ((params.type == IH_TYPE_RKSD) ||
595                                 (params.type == IH_TYPE_RKSPI)) {
596                         /* Rockchip has special Image format */
597                         int ret;
598
599                         ret = rockchip_copy_image(ifd, &params);
600                         if (ret)
601                                 return ret;
602                 } else {
603                         copy_file(ifd, params.datafile, pad_len);
604                 }
605                 if (params.type == IH_TYPE_FIRMWARE_IVT) {
606                         /* Add alignment and IVT */
607                         uint32_t aligned_filesize = ALIGN(params.file_size,
608                                                           0x1000);
609                         flash_header_v2_t ivt_header = { { 0xd1, 0x2000, 0x40 },
610                                         params.addr, 0, 0, 0, params.addr
611                                                         + aligned_filesize
612                                                         - tparams->header_size,
613                                         params.addr + aligned_filesize
614                                                         - tparams->header_size
615                                                         + 0x20, 0 };
616                         int i = params.file_size;
617                         for (; i < aligned_filesize; i++) {
618                                 if (write(ifd, (char *) &i, 1) != 1) {
619                                         fprintf(stderr,
620                                                         "%s: Write error on %s: %s\n",
621                                                         params.cmdname,
622                                                         params.imagefile,
623                                                         strerror(errno));
624                                         exit(EXIT_FAILURE);
625                                 }
626                         }
627                         if (write(ifd, &ivt_header, sizeof(flash_header_v2_t))
628                                         != sizeof(flash_header_v2_t)) {
629                                 fprintf(stderr, "%s: Write error on %s: %s\n",
630                                                 params.cmdname,
631                                                 params.imagefile,
632                                                 strerror(errno));
633                                 exit(EXIT_FAILURE);
634                         }
635                 }
636         }
637
638         /* We're a bit of paranoid */
639 #if defined(_POSIX_SYNCHRONIZED_IO) && \
640    !defined(__sun__) && \
641    !defined(__FreeBSD__) && \
642    !defined(__OpenBSD__) && \
643    !defined(__APPLE__)
644         (void) fdatasync (ifd);
645 #else
646         (void) fsync (ifd);
647 #endif
648
649         if (fstat(ifd, &sbuf) < 0) {
650                 fprintf (stderr, "%s: Can't stat %s: %s\n",
651                         params.cmdname, params.imagefile, strerror(errno));
652                 exit (EXIT_FAILURE);
653         }
654         params.file_size = sbuf.st_size;
655
656         map_len = sbuf.st_size;
657         ptr = mmap(0, map_len, PROT_READ | PROT_WRITE, MAP_SHARED, ifd, 0);
658         if (ptr == MAP_FAILED) {
659                 fprintf (stderr, "%s: Can't map %s: %s\n",
660                         params.cmdname, params.imagefile, strerror(errno));
661                 exit (EXIT_FAILURE);
662         }
663
664         /* Setup the image header as per input image type*/
665         if (tparams->set_header)
666                 tparams->set_header (ptr, &sbuf, ifd, &params);
667         else {
668                 fprintf (stderr, "%s: Can't set header for %s: %s\n",
669                         params.cmdname, tparams->name, strerror(errno));
670                 exit (EXIT_FAILURE);
671         }
672
673         /* Print the image information by processing image header */
674         if (tparams->print_header)
675                 tparams->print_header (ptr);
676         else {
677                 fprintf (stderr, "%s: Can't print header for %s\n",
678                         params.cmdname, tparams->name);
679         }
680
681         (void)munmap((void *)ptr, map_len);
682
683         /* We're a bit of paranoid */
684 #if defined(_POSIX_SYNCHRONIZED_IO) && \
685    !defined(__sun__) && \
686    !defined(__FreeBSD__) && \
687    !defined(__OpenBSD__) && \
688    !defined(__APPLE__)
689         (void) fdatasync (ifd);
690 #else
691         (void) fsync (ifd);
692 #endif
693
694         if (close(ifd)) {
695                 fprintf (stderr, "%s: Write error on %s: %s\n",
696                         params.cmdname, params.imagefile, strerror(errno));
697                 exit (EXIT_FAILURE);
698         }
699
700         exit (EXIT_SUCCESS);
701 }
702
703 static void
704 copy_file (int ifd, const char *datafile, int pad)
705 {
706         int dfd;
707         struct stat sbuf;
708         unsigned char *ptr;
709         int tail;
710         int zero = 0;
711         uint8_t zeros[4096];
712         int offset = 0;
713         int size, ret;
714         struct image_type_params *tparams = imagetool_get_type(params.type);
715
716         memset(zeros, 0, sizeof(zeros));
717
718         if (params.vflag) {
719                 fprintf (stderr, "Adding Image %s\n", datafile);
720         }
721
722         if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) {
723                 fprintf (stderr, "%s: Can't open %s: %s\n",
724                         params.cmdname, datafile, strerror(errno));
725                 exit (EXIT_FAILURE);
726         }
727
728         if (fstat(dfd, &sbuf) < 0) {
729                 fprintf (stderr, "%s: Can't stat %s: %s\n",
730                         params.cmdname, datafile, strerror(errno));
731                 exit (EXIT_FAILURE);
732         }
733
734         if (sbuf.st_size == 0) {
735                 fprintf (stderr, "%s: Input file %s is empty, bailing out\n",
736                         params.cmdname, datafile);
737                 exit (EXIT_FAILURE);
738         }
739
740         ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
741         if (ptr == MAP_FAILED) {
742                 fprintf (stderr, "%s: Can't read %s: %s\n",
743                         params.cmdname, datafile, strerror(errno));
744                 exit (EXIT_FAILURE);
745         }
746
747         if (params.xflag) {
748                 unsigned char *p = NULL;
749                 /*
750                  * XIP: do not append the image_header_t at the
751                  * beginning of the file, but consume the space
752                  * reserved for it.
753                  */
754
755                 if ((unsigned)sbuf.st_size < tparams->header_size) {
756                         fprintf (stderr,
757                                 "%s: Bad size: \"%s\" is too small for XIP\n",
758                                 params.cmdname, datafile);
759                         exit (EXIT_FAILURE);
760                 }
761
762                 for (p = ptr; p < ptr + tparams->header_size; p++) {
763                         if ( *p != 0xff ) {
764                                 fprintf (stderr,
765                                         "%s: Bad file: \"%s\" has invalid buffer for XIP\n",
766                                         params.cmdname, datafile);
767                                 exit (EXIT_FAILURE);
768                         }
769                 }
770
771                 offset = tparams->header_size;
772         }
773
774         size = sbuf.st_size - offset;
775
776         ret = write(ifd, ptr + offset, size);
777         if (ret != size) {
778                 if (ret < 0)
779                         fprintf (stderr, "%s: Write error on %s: %s\n",
780                                  params.cmdname, params.imagefile, strerror(errno));
781                 else if (ret < size)
782                         fprintf (stderr, "%s: Write only %d/%d bytes, "\
783                                  "probably no space left on the device\n",
784                                  params.cmdname, ret, size);
785                 exit (EXIT_FAILURE);
786         }
787
788         tail = size % 4;
789         if ((pad == 1) && (tail != 0)) {
790
791                 if (write(ifd, (char *)&zero, 4-tail) != 4-tail) {
792                         fprintf (stderr, "%s: Write error on %s: %s\n",
793                                 params.cmdname, params.imagefile,
794                                 strerror(errno));
795                         exit (EXIT_FAILURE);
796                 }
797         } else if (pad > 1) {
798                 while (pad > 0) {
799                         int todo = sizeof(zeros);
800
801                         if (todo > pad)
802                                 todo = pad;
803                         if (write(ifd, (char *)&zeros, todo) != todo) {
804                                 fprintf(stderr, "%s: Write error on %s: %s\n",
805                                         params.cmdname, params.imagefile,
806                                         strerror(errno));
807                                 exit(EXIT_FAILURE);
808                         }
809                         pad -= todo;
810                 }
811         }
812
813         (void) munmap((void *)ptr, sbuf.st_size);
814         (void) close (dfd);
815 }