2 * (C) Copyright 2008 Semihalf
4 * (C) Copyright 2000-2004
5 * DENX Software Engineering
6 * Wolfgang Denk, wd@denx.de
8 * Updated-by: Prafulla Wadaskar <prafulla@marvell.com>
9 * default_image specific code abstracted from mkimage.c
10 * some functions added to address abstraction
12 * All rights reserved.
14 * SPDX-License-Identifier: GPL-2.0+
17 #include "imagetool.h"
21 #include <u-boot/crc.h>
23 static image_header_t header;
25 static int image_check_image_types(uint8_t type)
27 if (((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT)) ||
28 (type == IH_TYPE_KERNEL_NOLOAD))
34 static int image_check_params(struct image_tool_params *params)
36 return ((params->dflag && (params->fflag || params->lflag)) ||
37 (params->fflag && (params->dflag || params->lflag)) ||
38 (params->lflag && (params->dflag || params->fflag)));
41 static int image_verify_header(unsigned char *ptr, int image_size,
42 struct image_tool_params *params)
45 const unsigned char *data;
47 image_header_t header;
48 image_header_t *hdr = &header;
51 * create copy of header so that we can blank out the
52 * checksum field for checking - this can't be done
53 * on the PROT_READ mapped data.
55 memcpy(hdr, ptr, sizeof(image_header_t));
57 if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) {
58 debug("%s: Bad Magic Number: \"%s\" is no valid image\n",
59 params->cmdname, params->imagefile);
60 return -FDT_ERR_BADMAGIC;
63 data = (const unsigned char *)hdr;
64 len = sizeof(image_header_t);
66 checksum = be32_to_cpu(hdr->ih_hcrc);
67 hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */
69 if (crc32(0, data, len) != checksum) {
70 debug("%s: ERROR: \"%s\" has bad header checksum!\n",
71 params->cmdname, params->imagefile);
72 return -FDT_ERR_BADSTATE;
75 data = (const unsigned char *)ptr + sizeof(image_header_t);
76 len = image_size - sizeof(image_header_t) ;
78 checksum = be32_to_cpu(hdr->ih_dcrc);
79 if (crc32(0, data, len) != checksum) {
80 debug("%s: ERROR: \"%s\" has corrupted data!\n",
81 params->cmdname, params->imagefile);
82 return -FDT_ERR_BADSTRUCTURE;
87 static void image_set_header(void *ptr, struct stat *sbuf, int ifd,
88 struct image_tool_params *params)
93 image_header_t * hdr = (image_header_t *)ptr;
96 (const unsigned char *)(ptr +
97 sizeof(image_header_t)),
98 sbuf->st_size - sizeof(image_header_t));
100 time = imagetool_get_source_date(params, sbuf->st_mtime);
102 /* Build new header */
103 image_set_magic(hdr, IH_MAGIC);
104 image_set_time(hdr, time);
105 image_set_size(hdr, sbuf->st_size - sizeof(image_header_t));
106 image_set_load(hdr, params->addr);
107 image_set_ep(hdr, params->ep);
108 image_set_dcrc(hdr, checksum);
109 image_set_os(hdr, params->os);
110 image_set_arch(hdr, params->arch);
111 image_set_type(hdr, params->type);
112 image_set_comp(hdr, params->comp);
114 image_set_name(hdr, params->imagename);
116 checksum = crc32(0, (const unsigned char *)hdr,
117 sizeof(image_header_t));
119 image_set_hcrc(hdr, checksum);
122 static int image_extract_subimage(void *ptr, struct image_tool_params *params)
124 const image_header_t *hdr = (const image_header_t *)ptr;
128 if (image_check_type(hdr, IH_TYPE_MULTI)) {
129 ulong idx = params->pflag;
132 /* get the number of data files present in the image */
133 count = image_multi_count(hdr);
135 /* retrieve the "data file" at the idx position */
136 image_multi_getimg(hdr, idx, &file_data, &file_len);
138 if ((file_len == 0) || (idx >= count)) {
139 fprintf(stderr, "%s: No such data file %ld in \"%s\"\n",
140 params->cmdname, idx, params->imagefile);
144 file_data = image_get_data(hdr);
145 file_len = image_get_size(hdr);
148 /* save the "data file" into the file system */
149 return imagetool_save_subimage(params->outfile, file_data, file_len);
153 * Default image type parameters definition
157 "Default Image support",
158 sizeof(image_header_t),
162 image_print_contents,
164 image_extract_subimage,
165 image_check_image_types,