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