1 // SPDX-License-Identifier: GPL-2.0+
5 * Written by Guilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com>
12 static void usage(void);
14 /* parameters initialized by core will be used by the image type code */
15 static struct image_tool_params params = {
16 .type = IH_TYPE_KERNEL,
20 * dumpimage_extract_subimage -
22 * It scans all registered image types,
23 * verifies image_header for each supported image type
24 * if verification is successful, it extracts the desired file,
25 * indexed by pflag, from the image
27 * returns negative if input image format does not match with any of
28 * supported image types
30 static int dumpimage_extract_subimage(struct image_type_params *tparams,
31 void *ptr, struct stat *sbuf)
35 if (tparams->verify_header) {
36 retval = tparams->verify_header((unsigned char *)ptr,
37 sbuf->st_size, ¶ms);
39 fprintf(stderr, "%s: failed to verify header of %s\n",
40 params.cmdname, tparams->name);
45 * Extract the file from the image
46 * if verify is successful
48 if (tparams->extract_subimage) {
49 retval = tparams->extract_subimage(ptr, ¶ms);
51 fprintf(stderr, "%s: extract_subimage failed for %s\n",
52 params.cmdname, tparams->name);
57 "%s: extract_subimage undefined for %s\n",
58 params.cmdname, tparams->name);
66 int main(int argc, char **argv)
72 int retval = EXIT_SUCCESS;
73 struct image_type_params *tparams = NULL;
75 params.cmdname = *argv;
77 while ((opt = getopt(argc, argv, "hlo:T:p:V")) != -1) {
83 params.outfile = optarg;
87 params.type = genimg_get_type_id(optarg);
88 if (params.type < 0) {
89 fprintf(stderr, "%s: Invalid type\n",
95 params.pflag = strtoul(optarg, &ptr, 10);
98 "%s: invalid file position %s\n",
99 params.cmdname, *argv);
104 printf("dumpimage version %s\n", PLAIN_VERSION);
116 if (optind >= argc) {
117 fprintf(stderr, "%s: image file missing\n", params.cmdname);
121 params.imagefile = argv[optind];
123 /* set tparams as per input type_id */
124 tparams = imagetool_get_type(params.type);
125 if (tparams == NULL) {
126 fprintf(stderr, "%s: unsupported type: %s\n",
127 params.cmdname, genimg_get_type_name(params.type));
132 * check the passed arguments parameters meets the requirements
133 * as per image type to be generated/listed
135 if (tparams->check_params) {
136 if (tparams->check_params(¶ms)) {
137 fprintf(stderr, "%s: Parameter check failed\n",
143 if (!params.lflag && !params.outfile) {
144 fprintf(stderr, "%s: No output file provided\n",
149 ifd = open(params.imagefile, O_RDONLY|O_BINARY);
151 fprintf(stderr, "%s: Can't open \"%s\": %s\n", params.cmdname,
152 params.imagefile, strerror(errno));
156 if (fstat(ifd, &sbuf) < 0) {
157 fprintf(stderr, "%s: Can't stat \"%s\": %s\n", params.cmdname,
158 params.imagefile, strerror(errno));
162 if ((uint32_t)sbuf.st_size < tparams->header_size) {
163 fprintf(stderr, "%s: Bad size: \"%s\" is not valid image\n",
164 params.cmdname, params.imagefile);
168 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0);
169 if (ptr == MAP_FAILED) {
170 fprintf(stderr, "%s: Can't read \"%s\": %s\n", params.cmdname,
171 params.imagefile, strerror(errno));
176 * Both calls bellow scan through dumpimage registry for all
177 * supported image types and verify the input image file
182 * Extract the data files from within the matched
183 * image type. Returns the error code if not matched
185 retval = dumpimage_extract_subimage(tparams, ptr, &sbuf);
187 fprintf(stderr, "%s: Can't extract subimage from %s\n",
188 params.cmdname, params.imagefile);
191 * Print the image information for matched image type
192 * Returns the error code if not matched
194 retval = imagetool_verify_print_header(ptr, &sbuf, tparams,
198 (void)munmap((void *)ptr, sbuf.st_size);
204 static void usage(void)
206 fprintf(stderr, "Usage: %s -l image\n"
207 " -l ==> list image header information\n",
210 " %s [-T type] [-p position] [-o outfile] image\n"
211 " -T ==> declare image type as 'type'\n"
212 " -p ==> 'position' (starting at 0) of the component to extract from image\n"
213 " -o ==> extract component to file 'outfile'\n",
216 " %s -h ==> print usage information and exit\n",
219 " %s -V ==> print version information and exit\n",