blob: 2bf9a5b5eb500336b838c11ead83307082d699db [file] [log] [blame]
wdenk5b1d7132002-11-03 00:07:02 +00001/*
Bartlomiej Sieka9d254382008-03-11 12:34:47 +01002 * (C) Copyright 2008 Semihalf
3 *
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +05304 * (C) Copyright 2000-2009
wdenk5b1d7132002-11-03 00:07:02 +00005 * DENX Software Engineering
6 * Wolfgang Denk, wd@denx.de
wdenk0c852a22004-02-26 23:01:04 +00007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
wdenk5b1d7132002-11-03 00:07:02 +000022 */
23
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010024#include "mkimage.h"
wdenk5b1d7132002-11-03 00:07:02 +000025#include <image.h>
26
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053027static void copy_file(int, const char *, int);
28static void usage(void);
wdenk5b1d7132002-11-03 00:07:02 +000029
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053030/* image_type_params link list to maintain registered image type supports */
31struct image_type_params *mkimage_tparams = NULL;
wdenk5b1d7132002-11-03 00:07:02 +000032
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053033/* parameters initialized by core will be used by the image type code */
34struct mkimage_params params = {
35 .os = IH_OS_LINUX,
36 .arch = IH_ARCH_PPC,
37 .type = IH_TYPE_KERNEL,
38 .comp = IH_COMP_GZIP,
39 .dtc = MKIMAGE_DEFAULT_DTC_OPTIONS,
40};
wdenk5b1d7132002-11-03 00:07:02 +000041
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053042/*
43 * mkimage_register -
44 *
45 * It is used to register respective image generation/list support to the
46 * mkimage core
47 *
48 * the input struct image_type_params is checked and appended to the link
49 * list, if the input structure is already registered, error
50 */
51void mkimage_register (struct image_type_params *tparams)
52{
53 struct image_type_params **tp;
54
55 if (!tparams) {
56 fprintf (stderr, "%s: %s: Null input\n",
57 params.cmdname, __FUNCTION__);
58 exit (EXIT_FAILURE);
59 }
60
61 /* scan the linked list, check for registry and point the last one */
62 for (tp = &mkimage_tparams; *tp != NULL; tp = &(*tp)->next) {
63 if (!strcmp((*tp)->name, tparams->name)) {
64 fprintf (stderr, "%s: %s already registered\n",
65 params.cmdname, tparams->name);
66 return;
67 }
68 }
69
70 /* add input struct entry at the end of link list */
71 *tp = tparams;
72 /* mark input entry as last entry in the link list */
73 tparams->next = NULL;
74
75 debug ("Registered %s\n", tparams->name);
76}
77
78/*
79 * mkimage_get_type -
80 *
81 * It scans all registers image type supports
82 * checks the input type_id for each supported image type
83 *
84 * if successful,
85 * returns respective image_type_params pointer if success
86 * if input type_id is not supported by any of image_type_support
87 * returns NULL
88 */
89struct image_type_params *mkimage_get_type(int type)
90{
91 struct image_type_params *curr;
92
93 for (curr = mkimage_tparams; curr != NULL; curr = curr->next) {
94 if (curr->check_image_type) {
95 if (!curr->check_image_type (type))
96 return curr;
97 }
98 }
99 return NULL;
100}
101
102/*
103 * mkimage_verify_print_header -
104 *
105 * It scans mkimage_tparams link list,
106 * verifies image_header for each supported image type
107 * if verification is successful, prints respective header
108 *
109 * returns negative if input image format does not match with any of
110 * supported image types
111 */
112int mkimage_verify_print_header (void *ptr, struct stat *sbuf)
113{
114 int retval = -1;
115 struct image_type_params *curr;
116
117 for (curr = mkimage_tparams; curr != NULL; curr = curr->next ) {
118 if (curr->verify_header) {
119 retval = curr->verify_header (
120 (unsigned char *)ptr, sbuf->st_size,
121 &params);
122
123 if (retval == 0) {
124 /*
125 * Print the image information
126 * if verify is successful
127 */
128 if (curr->print_header)
129 curr->print_header (ptr);
130 else {
131 fprintf (stderr,
132 "%s: print_header undefined for %s\n",
133 params.cmdname, curr->name);
134 }
135 break;
136 }
137 }
138 }
139 return retval;
140}
wdenk5b1d7132002-11-03 00:07:02 +0000141
142int
143main (int argc, char **argv)
144{
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100145 int ifd = -1;
wdenk5b1d7132002-11-03 00:07:02 +0000146 struct stat sbuf;
147 unsigned char *ptr;
Prafulla Wadaskar449609f2009-08-16 05:28:19 +0530148 int retval = 0;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530149 struct image_type_params *tparams = NULL;
wdenk5b1d7132002-11-03 00:07:02 +0000150
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530151 /* Init Kirkwood Boot image generation/list support */
152 init_kwb_image_type ();
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530153 /* Init FIT image generation/list support */
154 init_fit_image_type ();
155 /* Init Default image generation/list support */
156 init_default_image_type ();
wdenk5b1d7132002-11-03 00:07:02 +0000157
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530158 params.cmdname = *argv;
159 params.addr = params.ep = 0;
wdenk5b1d7132002-11-03 00:07:02 +0000160
161 while (--argc > 0 && **++argv == '-') {
162 while (*++*argv) {
163 switch (**argv) {
164 case 'l':
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530165 params.lflag = 1;
wdenk5b1d7132002-11-03 00:07:02 +0000166 break;
167 case 'A':
168 if ((--argc <= 0) ||
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530169 (params.arch =
170 genimg_get_arch_id (*++argv)) < 0)
wdenk5b1d7132002-11-03 00:07:02 +0000171 usage ();
172 goto NXTARG;
173 case 'C':
174 if ((--argc <= 0) ||
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530175 (params.comp =
176 genimg_get_comp_id (*++argv)) < 0)
wdenk5b1d7132002-11-03 00:07:02 +0000177 usage ();
178 goto NXTARG;
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100179 case 'D':
180 if (--argc <= 0)
181 usage ();
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530182 params.dtc = *++argv;
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100183 goto NXTARG;
184
wdenk5b1d7132002-11-03 00:07:02 +0000185 case 'O':
186 if ((--argc <= 0) ||
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530187 (params.os =
188 genimg_get_os_id (*++argv)) < 0)
wdenk5b1d7132002-11-03 00:07:02 +0000189 usage ();
190 goto NXTARG;
191 case 'T':
192 if ((--argc <= 0) ||
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530193 (params.type =
194 genimg_get_type_id (*++argv)) < 0)
wdenk5b1d7132002-11-03 00:07:02 +0000195 usage ();
196 goto NXTARG;
197
198 case 'a':
199 if (--argc <= 0)
200 usage ();
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530201 params.addr = strtoul (*++argv,
202 (char **)&ptr, 16);
wdenk5b1d7132002-11-03 00:07:02 +0000203 if (*ptr) {
204 fprintf (stderr,
205 "%s: invalid load address %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530206 params.cmdname, *argv);
wdenk5b1d7132002-11-03 00:07:02 +0000207 exit (EXIT_FAILURE);
208 }
209 goto NXTARG;
210 case 'd':
211 if (--argc <= 0)
212 usage ();
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530213 params.datafile = *++argv;
214 params.dflag = 1;
wdenk5b1d7132002-11-03 00:07:02 +0000215 goto NXTARG;
216 case 'e':
217 if (--argc <= 0)
218 usage ();
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530219 params.ep = strtoul (*++argv,
220 (char **)&ptr, 16);
wdenk5b1d7132002-11-03 00:07:02 +0000221 if (*ptr) {
222 fprintf (stderr,
223 "%s: invalid entry point %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530224 params.cmdname, *argv);
wdenk5b1d7132002-11-03 00:07:02 +0000225 exit (EXIT_FAILURE);
226 }
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530227 params.eflag = 1;
wdenk5b1d7132002-11-03 00:07:02 +0000228 goto NXTARG;
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100229 case 'f':
230 if (--argc <= 0)
231 usage ();
Remy Bohmer6a590c52009-10-28 22:13:35 +0100232 params.type = IH_TYPE_FLATDT;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530233 params.datafile = *++argv;
234 params.fflag = 1;
Peter Tyser1a99de22009-11-24 16:42:08 -0600235
236 /*
237 * The flattened image tree (FIT) format
238 * requires a flattened device tree image type
239 */
240 params.type = IH_TYPE_FLATDT;
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100241 goto NXTARG;
wdenk5b1d7132002-11-03 00:07:02 +0000242 case 'n':
243 if (--argc <= 0)
244 usage ();
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530245 params.imagename = *++argv;
wdenk5b1d7132002-11-03 00:07:02 +0000246 goto NXTARG;
247 case 'v':
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530248 params.vflag++;
wdenk5b1d7132002-11-03 00:07:02 +0000249 break;
250 case 'x':
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530251 params.xflag++;
wdenk5b1d7132002-11-03 00:07:02 +0000252 break;
253 default:
254 usage ();
255 }
256 }
257NXTARG: ;
258 }
259
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530260 if (argc != 1)
261 usage ();
wdenk5b1d7132002-11-03 00:07:02 +0000262
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530263 /* set tparams as per input type_id */
264 tparams = mkimage_get_type(params.type);
265 if (tparams == NULL) {
266 fprintf (stderr, "%s: unsupported type %s\n",
267 params.cmdname, genimg_get_type_name(params.type));
268 exit (EXIT_FAILURE);
269 }
270
271 /*
272 * check the passed arguments parameters meets the requirements
273 * as per image type to be generated/listed
274 */
275 if (tparams->check_params)
276 if (tparams->check_params (&params))
277 usage ();
278
279 if (!params.eflag) {
280 params.ep = params.addr;
wdenk5b1d7132002-11-03 00:07:02 +0000281 /* If XIP, entry point must be after the U-Boot header */
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530282 if (params.xflag)
283 params.ep += tparams->header_size;
wdenk5b1d7132002-11-03 00:07:02 +0000284 }
285
286 /*
287 * If XIP, ensure the entry point is equal to the load address plus
288 * the size of the U-Boot header.
289 */
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530290 if (params.xflag) {
291 if (params.ep != params.addr + tparams->header_size) {
Wolfgang Denk3577d3a2006-04-28 21:24:32 +0200292 fprintf (stderr,
293 "%s: For XIP, the entry point must be the load addr + %lu\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530294 params.cmdname,
295 (unsigned long)tparams->header_size);
wdenk5b1d7132002-11-03 00:07:02 +0000296 exit (EXIT_FAILURE);
297 }
298 }
299
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530300 params.imagefile = *argv;
wdenk5b1d7132002-11-03 00:07:02 +0000301
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530302 if (!params.fflag){
303 if (params.lflag) {
304 ifd = open (params.imagefile, O_RDONLY|O_BINARY);
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100305 } else {
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530306 ifd = open (params.imagefile,
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100307 O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666);
308 }
wdenk5b1d7132002-11-03 00:07:02 +0000309
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100310 if (ifd < 0) {
311 fprintf (stderr, "%s: Can't open %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530312 params.cmdname, params.imagefile,
313 strerror(errno));
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100314 exit (EXIT_FAILURE);
315 }
wdenk5b1d7132002-11-03 00:07:02 +0000316 }
317
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530318 if (params.lflag) {
wdenk5b1d7132002-11-03 00:07:02 +0000319 /*
320 * list header information of existing image
321 */
322 if (fstat(ifd, &sbuf) < 0) {
323 fprintf (stderr, "%s: Can't stat %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530324 params.cmdname, params.imagefile,
325 strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000326 exit (EXIT_FAILURE);
327 }
328
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530329 if ((unsigned)sbuf.st_size < tparams->header_size) {
wdenk5b1d7132002-11-03 00:07:02 +0000330 fprintf (stderr,
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530331 "%s: Bad size: \"%s\" is not valid image\n",
332 params.cmdname, params.imagefile);
wdenk5b1d7132002-11-03 00:07:02 +0000333 exit (EXIT_FAILURE);
334 }
335
Mike Frysingerfa956fd2008-05-01 04:13:05 -0400336 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0);
337 if (ptr == MAP_FAILED) {
wdenk5b1d7132002-11-03 00:07:02 +0000338 fprintf (stderr, "%s: Can't read %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530339 params.cmdname, params.imagefile,
340 strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000341 exit (EXIT_FAILURE);
342 }
343
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530344 /*
345 * scan through mkimage registry for all supported image types
346 * and verify the input image file header for match
347 * Print the image information for matched image type
348 * Returns the error code if not matched
349 */
350 retval = mkimage_verify_print_header (ptr, &sbuf);
wdenk5b1d7132002-11-03 00:07:02 +0000351
wdenk5b1d7132002-11-03 00:07:02 +0000352 (void) munmap((void *)ptr, sbuf.st_size);
353 (void) close (ifd);
354
Prafulla Wadaskarf7644c02009-08-10 18:49:37 +0530355 exit (retval);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530356 } else if (params.fflag) {
357 if (tparams->fflag_handle)
358 /*
359 * in some cases, some additional processing needs
360 * to be done if fflag is defined
361 *
362 * For ex. fit_handle_file for Fit file support
363 */
364 retval = tparams->fflag_handle(&params);
365
Prafulla Wadaskarf7644c02009-08-10 18:49:37 +0530366 exit (retval);
wdenk5b1d7132002-11-03 00:07:02 +0000367 }
368
369 /*
370 * Must be -w then:
371 *
372 * write dummy header, to be fixed later
373 */
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530374 memset (tparams->hdr, 0, tparams->header_size);
wdenk5b1d7132002-11-03 00:07:02 +0000375
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530376 if (write(ifd, tparams->hdr, tparams->header_size)
377 != tparams->header_size) {
wdenk5b1d7132002-11-03 00:07:02 +0000378 fprintf (stderr, "%s: Write error on %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530379 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000380 exit (EXIT_FAILURE);
381 }
382
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530383 if (params.type == IH_TYPE_MULTI || params.type == IH_TYPE_SCRIPT) {
384 char *file = params.datafile;
Wolfgang Denk3bb66802006-01-11 13:03:54 +0100385 uint32_t size;
wdenk5b1d7132002-11-03 00:07:02 +0000386
387 for (;;) {
388 char *sep = NULL;
389
390 if (file) {
391 if ((sep = strchr(file, ':')) != NULL) {
392 *sep = '\0';
393 }
394
395 if (stat (file, &sbuf) < 0) {
396 fprintf (stderr, "%s: Can't stat %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530397 params.cmdname, file, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000398 exit (EXIT_FAILURE);
399 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100400 size = cpu_to_uimage (sbuf.st_size);
wdenk5b1d7132002-11-03 00:07:02 +0000401 } else {
402 size = 0;
403 }
404
405 if (write(ifd, (char *)&size, sizeof(size)) != sizeof(size)) {
406 fprintf (stderr, "%s: Write error on %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530407 params.cmdname, params.imagefile,
408 strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000409 exit (EXIT_FAILURE);
410 }
411
412 if (!file) {
413 break;
414 }
415
416 if (sep) {
417 *sep = ':';
418 file = sep + 1;
419 } else {
420 file = NULL;
421 }
422 }
423
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530424 file = params.datafile;
wdenk5b1d7132002-11-03 00:07:02 +0000425
426 for (;;) {
427 char *sep = strchr(file, ':');
428 if (sep) {
429 *sep = '\0';
430 copy_file (ifd, file, 1);
431 *sep++ = ':';
432 file = sep;
433 } else {
434 copy_file (ifd, file, 0);
435 break;
436 }
437 }
438 } else {
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530439 copy_file (ifd, params.datafile, 0);
wdenk5b1d7132002-11-03 00:07:02 +0000440 }
441
442 /* We're a bit of paranoid */
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530443#if defined(_POSIX_SYNCHRONIZED_IO) && \
444 !defined(__sun__) && \
445 !defined(__FreeBSD__) && \
446 !defined(__APPLE__)
wdenk5b1d7132002-11-03 00:07:02 +0000447 (void) fdatasync (ifd);
448#else
449 (void) fsync (ifd);
450#endif
451
452 if (fstat(ifd, &sbuf) < 0) {
453 fprintf (stderr, "%s: Can't stat %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530454 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000455 exit (EXIT_FAILURE);
456 }
457
Mike Frysingerfa956fd2008-05-01 04:13:05 -0400458 ptr = mmap(0, sbuf.st_size, PROT_READ|PROT_WRITE, MAP_SHARED, ifd, 0);
459 if (ptr == MAP_FAILED) {
wdenk5b1d7132002-11-03 00:07:02 +0000460 fprintf (stderr, "%s: Can't map %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530461 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000462 exit (EXIT_FAILURE);
463 }
464
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530465 /* Setup the image header as per input image type*/
466 if (tparams->set_header)
467 tparams->set_header (ptr, &sbuf, ifd, &params);
468 else {
469 fprintf (stderr, "%s: Can't set header for %s: %s\n",
470 params.cmdname, tparams->name, strerror(errno));
471 exit (EXIT_FAILURE);
472 }
wdenk5b1d7132002-11-03 00:07:02 +0000473
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530474 /* Print the image information by processing image header */
475 if (tparams->print_header)
476 tparams->print_header (ptr);
477 else {
478 fprintf (stderr, "%s: Can't print header for %s: %s\n",
479 params.cmdname, tparams->name, strerror(errno));
480 exit (EXIT_FAILURE);
481 }
wdenk5b1d7132002-11-03 00:07:02 +0000482
483 (void) munmap((void *)ptr, sbuf.st_size);
484
485 /* We're a bit of paranoid */
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530486#if defined(_POSIX_SYNCHRONIZED_IO) && \
487 !defined(__sun__) && \
488 !defined(__FreeBSD__) && \
489 !defined(__APPLE__)
wdenk5b1d7132002-11-03 00:07:02 +0000490 (void) fdatasync (ifd);
491#else
492 (void) fsync (ifd);
493#endif
494
495 if (close(ifd)) {
496 fprintf (stderr, "%s: Write error on %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530497 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000498 exit (EXIT_FAILURE);
499 }
500
501 exit (EXIT_SUCCESS);
502}
503
504static void
505copy_file (int ifd, const char *datafile, int pad)
506{
507 int dfd;
508 struct stat sbuf;
509 unsigned char *ptr;
510 int tail;
511 int zero = 0;
512 int offset = 0;
513 int size;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530514 struct image_type_params *tparams = mkimage_get_type (params.type);
wdenk5b1d7132002-11-03 00:07:02 +0000515
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530516 if (params.vflag) {
wdenk5b1d7132002-11-03 00:07:02 +0000517 fprintf (stderr, "Adding Image %s\n", datafile);
518 }
519
wdenkef1464c2003-10-08 22:14:02 +0000520 if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) {
wdenk5b1d7132002-11-03 00:07:02 +0000521 fprintf (stderr, "%s: Can't open %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530522 params.cmdname, datafile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000523 exit (EXIT_FAILURE);
524 }
525
526 if (fstat(dfd, &sbuf) < 0) {
527 fprintf (stderr, "%s: Can't stat %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530528 params.cmdname, datafile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000529 exit (EXIT_FAILURE);
530 }
531
Mike Frysingerfa956fd2008-05-01 04:13:05 -0400532 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
533 if (ptr == MAP_FAILED) {
wdenk5b1d7132002-11-03 00:07:02 +0000534 fprintf (stderr, "%s: Can't read %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530535 params.cmdname, datafile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000536 exit (EXIT_FAILURE);
537 }
538
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530539 if (params.xflag) {
wdenk5b1d7132002-11-03 00:07:02 +0000540 unsigned char *p = NULL;
541 /*
542 * XIP: do not append the image_header_t at the
543 * beginning of the file, but consume the space
544 * reserved for it.
545 */
546
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530547 if ((unsigned)sbuf.st_size < tparams->header_size) {
wdenk5b1d7132002-11-03 00:07:02 +0000548 fprintf (stderr,
549 "%s: Bad size: \"%s\" is too small for XIP\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530550 params.cmdname, datafile);
wdenk5b1d7132002-11-03 00:07:02 +0000551 exit (EXIT_FAILURE);
552 }
553
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530554 for (p = ptr; p < ptr + tparams->header_size; p++) {
wdenk5b1d7132002-11-03 00:07:02 +0000555 if ( *p != 0xff ) {
556 fprintf (stderr,
557 "%s: Bad file: \"%s\" has invalid buffer for XIP\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530558 params.cmdname, datafile);
wdenk5b1d7132002-11-03 00:07:02 +0000559 exit (EXIT_FAILURE);
560 }
561 }
562
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530563 offset = tparams->header_size;
wdenk5b1d7132002-11-03 00:07:02 +0000564 }
565
566 size = sbuf.st_size - offset;
567 if (write(ifd, ptr + offset, size) != size) {
568 fprintf (stderr, "%s: Write error on %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530569 params.cmdname, params.imagefile, strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000570 exit (EXIT_FAILURE);
571 }
572
573 if (pad && ((tail = size % 4) != 0)) {
574
575 if (write(ifd, (char *)&zero, 4-tail) != 4-tail) {
576 fprintf (stderr, "%s: Write error on %s: %s\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530577 params.cmdname, params.imagefile,
578 strerror(errno));
wdenk5b1d7132002-11-03 00:07:02 +0000579 exit (EXIT_FAILURE);
580 }
581 }
582
583 (void) munmap((void *)ptr, sbuf.st_size);
584 (void) close (dfd);
585}
586
587void
588usage ()
589{
590 fprintf (stderr, "Usage: %s -l image\n"
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100591 " -l ==> list image header information\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530592 params.cmdname);
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100593 fprintf (stderr, " %s [-x] -A arch -O os -T type -C comp "
594 "-a addr -e ep -n name -d data_file[:data_file...] image\n"
595 " -A ==> set architecture to 'arch'\n"
wdenk5b1d7132002-11-03 00:07:02 +0000596 " -O ==> set operating system to 'os'\n"
597 " -T ==> set image type to 'type'\n"
598 " -C ==> set compression type 'comp'\n"
599 " -a ==> set load address to 'addr' (hex)\n"
600 " -e ==> set entry point to 'ep' (hex)\n"
601 " -n ==> set image name to 'name'\n"
602 " -d ==> use image data from 'datafile'\n"
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100603 " -x ==> set XIP (execute in place)\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530604 params.cmdname);
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100605 fprintf (stderr, " %s [-D dtc_options] -f fit-image.its fit-image\n",
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530606 params.cmdname);
Bartlomiej Sieka9d254382008-03-11 12:34:47 +0100607
wdenk5b1d7132002-11-03 00:07:02 +0000608 exit (EXIT_FAILURE);
609}