blob: d5f893daf1694b49d48e17b22a9e3f8ffd7c6fbc [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -07002/*
3 * Based on mkimage.c.
4 *
5 * Written by Guilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com>
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -07006 */
7
8#include "dumpimage.h"
9#include <image.h>
10#include <version.h>
11
12static void usage(void);
13
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070014/* parameters initialized by core will be used by the image type code */
15static struct image_tool_params params = {
16 .type = IH_TYPE_KERNEL,
17};
18
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070019/*
Guilherme Maciel Ferreiraf3f4a0a2015-01-15 02:54:41 -020020 * dumpimage_extract_subimage -
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070021 *
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
26 *
27 * returns negative if input image format does not match with any of
28 * supported image types
29 */
Guilherme Maciel Ferreiraf3f4a0a2015-01-15 02:54:41 -020030static int dumpimage_extract_subimage(struct image_type_params *tparams,
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -020031 void *ptr, struct stat *sbuf)
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070032{
33 int retval = -1;
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070034
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -020035 if (tparams->verify_header) {
36 retval = tparams->verify_header((unsigned char *)ptr,
37 sbuf->st_size, &params);
Andrew F. Davis3f2c7da2019-09-17 17:09:33 -040038 if (retval != 0) {
39 fprintf(stderr, "%s: failed to verify header of %s\n",
40 params.cmdname, tparams->name);
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -020041 return -1;
Andrew F. Davis3f2c7da2019-09-17 17:09:33 -040042 }
43
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -020044 /*
45 * Extract the file from the image
46 * if verify is successful
47 */
Guilherme Maciel Ferreiraf3f4a0a2015-01-15 02:54:41 -020048 if (tparams->extract_subimage) {
49 retval = tparams->extract_subimage(ptr, &params);
Andrew F. Davis3f2c7da2019-09-17 17:09:33 -040050 if (retval != 0) {
51 fprintf(stderr, "%s: extract_subimage failed for %s\n",
52 params.cmdname, tparams->name);
53 return -3;
54 }
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -020055 } else {
56 fprintf(stderr,
Guilherme Maciel Ferreiraf3f4a0a2015-01-15 02:54:41 -020057 "%s: extract_subimage undefined for %s\n",
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -020058 params.cmdname, tparams->name);
59 return -2;
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070060 }
61 }
62
63 return retval;
64}
65
66int main(int argc, char **argv)
67{
68 int opt;
69 int ifd = -1;
70 struct stat sbuf;
71 char *ptr;
Martyn Welch387963a2019-01-26 02:31:52 +000072 int retval = EXIT_SUCCESS;
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070073 struct image_type_params *tparams = NULL;
74
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070075 params.cmdname = *argv;
76
Martyn Welchcfd6ade2019-01-26 02:31:53 +000077 while ((opt = getopt(argc, argv, "hlo:T:p:V")) != -1) {
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070078 switch (opt) {
79 case 'l':
80 params.lflag = 1;
81 break;
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070082 case 'o':
83 params.outfile = optarg;
Martyn Welch67a6a372019-01-26 02:31:51 +000084 params.iflag = 1;
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070085 break;
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -020086 case 'T':
87 params.type = genimg_get_type_id(optarg);
88 if (params.type < 0) {
Martyn Welch47d95992019-01-26 02:31:50 +000089 fprintf(stderr, "%s: Invalid type\n",
90 params.cmdname);
Martyn Welchcfd6ade2019-01-26 02:31:53 +000091 exit(EXIT_FAILURE);
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -020092 }
93 break;
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -070094 case 'p':
95 params.pflag = strtoul(optarg, &ptr, 10);
96 if (*ptr) {
97 fprintf(stderr,
98 "%s: invalid file position %s\n",
99 params.cmdname, *argv);
100 exit(EXIT_FAILURE);
101 }
102 break;
103 case 'V':
104 printf("dumpimage version %s\n", PLAIN_VERSION);
105 exit(EXIT_SUCCESS);
Martyn Welchcfd6ade2019-01-26 02:31:53 +0000106 case 'h':
107 usage();
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700108 default:
109 usage();
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -0200110 break;
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700111 }
112 }
113
Martyn Welchcfd6ade2019-01-26 02:31:53 +0000114 if (argc < 2)
115 usage();
116
Martyn Welch47d95992019-01-26 02:31:50 +0000117 if (optind >= argc) {
118 fprintf(stderr, "%s: image file missing\n", params.cmdname);
Martyn Welchcfd6ade2019-01-26 02:31:53 +0000119 exit(EXIT_FAILURE);
Martyn Welch47d95992019-01-26 02:31:50 +0000120 }
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700121
Martyn Welch67a6a372019-01-26 02:31:51 +0000122 params.imagefile = argv[optind];
123
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700124 /* set tparams as per input type_id */
Guilherme Maciel Ferreira28be1cf2015-01-15 02:48:07 -0200125 tparams = imagetool_get_type(params.type);
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700126 if (tparams == NULL) {
Guilherme Maciel Ferreira40bf5632015-01-15 02:54:40 -0200127 fprintf(stderr, "%s: unsupported type: %s\n",
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700128 params.cmdname, genimg_get_type_name(params.type));
129 exit(EXIT_FAILURE);
130 }
131
132 /*
133 * check the passed arguments parameters meets the requirements
134 * as per image type to be generated/listed
135 */
136 if (tparams->check_params) {
Martyn Welch47d95992019-01-26 02:31:50 +0000137 if (tparams->check_params(&params)) {
138 fprintf(stderr, "%s: Parameter check failed\n",
139 params.cmdname);
Martyn Welchcfd6ade2019-01-26 02:31:53 +0000140 exit(EXIT_FAILURE);
Martyn Welch47d95992019-01-26 02:31:50 +0000141 }
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700142 }
143
Martyn Welch67a6a372019-01-26 02:31:51 +0000144 if (!params.lflag && !params.outfile) {
145 fprintf(stderr, "%s: No output file provided\n",
146 params.cmdname);
147 exit(EXIT_FAILURE);
148 }
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700149
150 ifd = open(params.imagefile, O_RDONLY|O_BINARY);
151 if (ifd < 0) {
Martyn Welch387963a2019-01-26 02:31:52 +0000152 fprintf(stderr, "%s: Can't open \"%s\": %s\n", params.cmdname,
153 params.imagefile, strerror(errno));
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700154 exit(EXIT_FAILURE);
155 }
156
Martyn Welch387963a2019-01-26 02:31:52 +0000157 if (fstat(ifd, &sbuf) < 0) {
158 fprintf(stderr, "%s: Can't stat \"%s\": %s\n", params.cmdname,
159 params.imagefile, strerror(errno));
160 exit(EXIT_FAILURE);
161 }
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700162
Martyn Welch387963a2019-01-26 02:31:52 +0000163 if ((uint32_t)sbuf.st_size < tparams->header_size) {
164 fprintf(stderr, "%s: Bad size: \"%s\" is not valid image\n",
165 params.cmdname, params.imagefile);
166 exit(EXIT_FAILURE);
167 }
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700168
Martyn Welch387963a2019-01-26 02:31:52 +0000169 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0);
170 if (ptr == MAP_FAILED) {
171 fprintf(stderr, "%s: Can't read \"%s\": %s\n", params.cmdname,
172 params.imagefile, strerror(errno));
173 exit(EXIT_FAILURE);
174 }
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700175
Martyn Welch387963a2019-01-26 02:31:52 +0000176 /*
177 * Both calls bellow scan through dumpimage registry for all
178 * supported image types and verify the input image file
179 * header for match
180 */
181 if (params.iflag) {
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700182 /*
Martyn Welch387963a2019-01-26 02:31:52 +0000183 * Extract the data files from within the matched
184 * image type. Returns the error code if not matched
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700185 */
Martyn Welch387963a2019-01-26 02:31:52 +0000186 retval = dumpimage_extract_subimage(tparams, ptr, &sbuf);
Andrew F. Davis3f2c7da2019-09-17 17:09:33 -0400187 if (retval)
188 fprintf(stderr, "%s: Can't extract subimage from %s\n",
189 params.cmdname, params.imagefile);
Martyn Welch387963a2019-01-26 02:31:52 +0000190 } else {
191 /*
192 * Print the image information for matched image type
193 * Returns the error code if not matched
194 */
195 retval = imagetool_verify_print_header(ptr, &sbuf, tparams,
196 &params);
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700197 }
198
Martyn Welch387963a2019-01-26 02:31:52 +0000199 (void)munmap((void *)ptr, sbuf.st_size);
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700200 (void)close(ifd);
201
Martyn Welch387963a2019-01-26 02:31:52 +0000202 return retval;
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700203}
204
205static void usage(void)
206{
207 fprintf(stderr, "Usage: %s -l image\n"
208 " -l ==> list image header information\n",
209 params.cmdname);
210 fprintf(stderr,
Martyn Welch8c1957a2019-01-26 02:31:54 +0000211 " %s [-T type] [-p position] [-o outfile] image\n"
212 " -T ==> declare image type as 'type'\n"
213 " -p ==> 'position' (starting at 0) of the component to extract from image\n"
214 " -o ==> extract component to file 'outfile'\n",
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700215 params.cmdname);
216 fprintf(stderr,
Martyn Welchcfd6ade2019-01-26 02:31:53 +0000217 " %s -h ==> print usage information and exit\n",
218 params.cmdname);
219 fprintf(stderr,
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700220 " %s -V ==> print version information and exit\n",
221 params.cmdname);
222
Martyn Welchcfd6ade2019-01-26 02:31:53 +0000223 exit(EXIT_SUCCESS);
Guilherme Maciel Ferreira51553812013-12-01 12:43:11 -0700224}