2 * (C) Copyright 2008 Semihalf
4 * (C) Copyright 2000-2004
5 * DENX Software Engineering
6 * Wolfgang Denk, wd@denx.de
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 extern unsigned long crc32 (unsigned long crc, const char *buf, unsigned int len);
29 static void copy_file (int, const char *, int);
30 static void usage (void);
31 static void image_verify_header (char *, int);
32 static void fit_handle_file (void);
44 int opt_os = IH_OS_LINUX;
45 int opt_arch = IH_ARCH_PPC;
46 int opt_type = IH_TYPE_KERNEL;
47 int opt_comp = IH_COMP_GZIP;
48 char *opt_dtc = MKIMAGE_DEFAULT_DTC_OPTIONS;
50 image_header_t header;
51 image_header_t *hdr = &header;
54 main (int argc, char **argv)
68 while (--argc > 0 && **++argv == '-') {
76 (opt_arch = genimg_get_arch_id (*++argv)) < 0)
81 (opt_comp = genimg_get_comp_id (*++argv)) < 0)
92 (opt_os = genimg_get_os_id (*++argv)) < 0)
97 (opt_type = genimg_get_type_id (*++argv)) < 0)
104 addr = strtoul (*++argv, (char **)&ptr, 16);
107 "%s: invalid load address %s\n",
121 ep = strtoul (*++argv, (char **)&ptr, 16);
124 "%s: invalid entry point %s\n",
155 (dflag && (fflag || lflag)) ||
156 (fflag && (dflag || lflag)) ||
157 (lflag && (dflag || fflag)))
162 /* If XIP, entry point must be after the U-Boot header */
164 ep += image_get_header_size ();
168 * If XIP, ensure the entry point is equal to the load address plus
169 * the size of the U-Boot header.
172 if (ep != addr + image_get_header_size ()) {
174 "%s: For XIP, the entry point must be the load addr + %lu\n",
176 (unsigned long)image_get_header_size ());
185 ifd = open (imagefile, O_RDONLY|O_BINARY);
187 ifd = open (imagefile,
188 O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666);
192 fprintf (stderr, "%s: Can't open %s: %s\n",
193 cmdname, imagefile, strerror(errno));
200 * list header information of existing image
202 if (fstat(ifd, &sbuf) < 0) {
203 fprintf (stderr, "%s: Can't stat %s: %s\n",
204 cmdname, imagefile, strerror(errno));
208 if ((unsigned)sbuf.st_size < image_get_header_size ()) {
210 "%s: Bad size: \"%s\" is no valid image\n",
215 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0);
216 if (ptr == MAP_FAILED) {
217 fprintf (stderr, "%s: Can't read %s: %s\n",
218 cmdname, imagefile, strerror(errno));
222 if (fdt_check_header (ptr)) {
223 /* old-style image */
224 image_verify_header ((char *)ptr, sbuf.st_size);
225 image_print_contents ((image_header_t *)ptr);
228 fit_print_contents (ptr);
231 (void) munmap((void *)ptr, sbuf.st_size);
236 /* Flattened Image Tree (FIT) format handling */
237 debug ("FIT format handling\n");
245 * write dummy header, to be fixed later
247 memset (hdr, 0, image_get_header_size ());
249 if (write(ifd, hdr, image_get_header_size ()) != image_get_header_size ()) {
250 fprintf (stderr, "%s: Write error on %s: %s\n",
251 cmdname, imagefile, strerror(errno));
255 if (opt_type == IH_TYPE_MULTI || opt_type == IH_TYPE_SCRIPT) {
256 char *file = datafile;
263 if ((sep = strchr(file, ':')) != NULL) {
267 if (stat (file, &sbuf) < 0) {
268 fprintf (stderr, "%s: Can't stat %s: %s\n",
269 cmdname, file, strerror(errno));
272 size = cpu_to_uimage (sbuf.st_size);
277 if (write(ifd, (char *)&size, sizeof(size)) != sizeof(size)) {
278 fprintf (stderr, "%s: Write error on %s: %s\n",
279 cmdname, imagefile, strerror(errno));
298 char *sep = strchr(file, ':');
301 copy_file (ifd, file, 1);
305 copy_file (ifd, file, 0);
310 copy_file (ifd, datafile, 0);
313 /* We're a bit of paranoid */
314 #if defined(_POSIX_SYNCHRONIZED_IO) && !defined(__sun__) && !defined(__FreeBSD__) && !defined(__APPLE__)
315 (void) fdatasync (ifd);
320 if (fstat(ifd, &sbuf) < 0) {
321 fprintf (stderr, "%s: Can't stat %s: %s\n",
322 cmdname, imagefile, strerror(errno));
326 ptr = mmap(0, sbuf.st_size, PROT_READ|PROT_WRITE, MAP_SHARED, ifd, 0);
327 if (ptr == MAP_FAILED) {
328 fprintf (stderr, "%s: Can't map %s: %s\n",
329 cmdname, imagefile, strerror(errno));
333 hdr = (image_header_t *)ptr;
336 (const char *)(ptr + image_get_header_size ()),
337 sbuf.st_size - image_get_header_size ()
340 /* Build new header */
341 image_set_magic (hdr, IH_MAGIC);
342 image_set_time (hdr, sbuf.st_mtime);
343 image_set_size (hdr, sbuf.st_size - image_get_header_size ());
344 image_set_load (hdr, addr);
345 image_set_ep (hdr, ep);
346 image_set_dcrc (hdr, checksum);
347 image_set_os (hdr, opt_os);
348 image_set_arch (hdr, opt_arch);
349 image_set_type (hdr, opt_type);
350 image_set_comp (hdr, opt_comp);
352 image_set_name (hdr, name);
354 checksum = crc32 (0, (const char *)hdr, image_get_header_size ());
356 image_set_hcrc (hdr, checksum);
358 image_print_contents (hdr);
360 (void) munmap((void *)ptr, sbuf.st_size);
362 /* We're a bit of paranoid */
363 #if defined(_POSIX_SYNCHRONIZED_IO) && !defined(__sun__) && !defined(__FreeBSD__) && !defined(__APPLE__)
364 (void) fdatasync (ifd);
370 fprintf (stderr, "%s: Write error on %s: %s\n",
371 cmdname, imagefile, strerror(errno));
379 copy_file (int ifd, const char *datafile, int pad)
390 fprintf (stderr, "Adding Image %s\n", datafile);
393 if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) {
394 fprintf (stderr, "%s: Can't open %s: %s\n",
395 cmdname, datafile, strerror(errno));
399 if (fstat(dfd, &sbuf) < 0) {
400 fprintf (stderr, "%s: Can't stat %s: %s\n",
401 cmdname, datafile, strerror(errno));
405 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
406 if (ptr == MAP_FAILED) {
407 fprintf (stderr, "%s: Can't read %s: %s\n",
408 cmdname, datafile, strerror(errno));
413 unsigned char *p = NULL;
415 * XIP: do not append the image_header_t at the
416 * beginning of the file, but consume the space
420 if ((unsigned)sbuf.st_size < image_get_header_size ()) {
422 "%s: Bad size: \"%s\" is too small for XIP\n",
427 for (p = ptr; p < ptr + image_get_header_size (); p++) {
430 "%s: Bad file: \"%s\" has invalid buffer for XIP\n",
436 offset = image_get_header_size ();
439 size = sbuf.st_size - offset;
440 if (write(ifd, ptr + offset, size) != size) {
441 fprintf (stderr, "%s: Write error on %s: %s\n",
442 cmdname, imagefile, strerror(errno));
446 if (pad && ((tail = size % 4) != 0)) {
448 if (write(ifd, (char *)&zero, 4-tail) != 4-tail) {
449 fprintf (stderr, "%s: Write error on %s: %s\n",
450 cmdname, imagefile, strerror(errno));
455 (void) munmap((void *)ptr, sbuf.st_size);
462 fprintf (stderr, "Usage: %s -l image\n"
463 " -l ==> list image header information\n",
465 fprintf (stderr, " %s [-x] -A arch -O os -T type -C comp "
466 "-a addr -e ep -n name -d data_file[:data_file...] image\n"
467 " -A ==> set architecture to 'arch'\n"
468 " -O ==> set operating system to 'os'\n"
469 " -T ==> set image type to 'type'\n"
470 " -C ==> set compression type 'comp'\n"
471 " -a ==> set load address to 'addr' (hex)\n"
472 " -e ==> set entry point to 'ep' (hex)\n"
473 " -n ==> set image name to 'name'\n"
474 " -d ==> use image data from 'datafile'\n"
475 " -x ==> set XIP (execute in place)\n",
477 fprintf (stderr, " %s [-D dtc_options] -f fit-image.its fit-image\n",
484 image_verify_header (char *ptr, int image_size)
489 image_header_t header;
490 image_header_t *hdr = &header;
493 * create copy of header so that we can blank out the
494 * checksum field for checking - this can't be done
495 * on the PROT_READ mapped data.
497 memcpy (hdr, ptr, sizeof(image_header_t));
499 if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) {
501 "%s: Bad Magic Number: \"%s\" is no valid image\n",
507 len = sizeof(image_header_t);
509 checksum = be32_to_cpu(hdr->ih_hcrc);
510 hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */
512 if (crc32 (0, data, len) != checksum) {
514 "%s: ERROR: \"%s\" has bad header checksum!\n",
519 data = ptr + sizeof(image_header_t);
520 len = image_size - sizeof(image_header_t) ;
522 if (crc32 (0, data, len) != be32_to_cpu(hdr->ih_dcrc)) {
524 "%s: ERROR: \"%s\" has corrupted data!\n",
531 * fit_handle_file - main FIT file processing function
533 * fit_handle_file() runs dtc to convert .its to .itb, includes
534 * binary data, updates timestamp property and calculates hashes.
536 * datafile - .its file
537 * imagefile - .itb file
540 * only on success, otherwise calls exit (EXIT_FAILURE);
542 static void fit_handle_file (void)
544 char tmpfile[MKIMAGE_MAX_TMPFILE_LEN];
545 char cmd[MKIMAGE_MAX_DTC_CMDLINE_LEN];
550 /* call dtc to include binary properties into the tmp file */
551 if (strlen (imagefile) + strlen (MKIMAGE_TMPFILE_SUFFIX) + 1 >
553 fprintf (stderr, "%s: Image file name (%s) too long, "
554 "can't create tmpfile",
558 sprintf (tmpfile, "%s%s", imagefile, MKIMAGE_TMPFILE_SUFFIX);
560 /* dtc -I dts -O -p 200 datafile > tmpfile */
561 sprintf (cmd, "%s %s %s > %s",
562 MKIMAGE_DTC, opt_dtc, datafile, tmpfile);
563 debug ("Trying to execute \"%s\"\n", cmd);
564 if (system (cmd) == -1) {
565 fprintf (stderr, "%s: system(%s) failed: %s\n",
566 cmdname, cmd, strerror(errno));
571 /* load FIT blob into memory */
572 tfd = open (tmpfile, O_RDWR|O_BINARY);
575 fprintf (stderr, "%s: Can't open %s: %s\n",
576 cmdname, tmpfile, strerror(errno));
581 if (fstat (tfd, &sbuf) < 0) {
582 fprintf (stderr, "%s: Can't stat %s: %s\n",
583 cmdname, tmpfile, strerror(errno));
588 ptr = mmap (0, sbuf.st_size, PROT_READ|PROT_WRITE, MAP_SHARED, tfd, 0);
589 if (ptr == MAP_FAILED) {
590 fprintf (stderr, "%s: Can't read %s: %s\n",
591 cmdname, tmpfile, strerror(errno));
596 /* check if ptr has a valid blob */
597 if (fdt_check_header (ptr)) {
598 fprintf (stderr, "%s: Invalid FIT blob\n", cmdname);
603 /* set hashes for images in the blob */
604 if (fit_set_hashes (ptr)) {
605 fprintf (stderr, "%s Can't add hashes to FIT blob", cmdname);
610 /* add a timestamp at offset 0 i.e., root */
611 if (fit_set_timestamp (ptr, 0, sbuf.st_mtime)) {
612 fprintf (stderr, "%s: Can't add image timestamp\n", cmdname);
616 debug ("Added timestamp successfully\n");
618 munmap ((void *)ptr, sbuf.st_size);
621 if (rename (tmpfile, imagefile) == -1) {
622 fprintf (stderr, "%s: Can't rename %s to %s: %s\n",
623 cmdname, tmpfile, imagefile, strerror (errno));