blob: b293211cf88298432a13c66b4d11b4c8baf1f71f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -07002/*
3 * (C) Copyright 2013
4 *
5 * Written by Guilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com>
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -07006 */
7
8#include "imagetool.h"
9
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020010#include <image.h>
11
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -020012struct image_type_params *imagetool_get_type(int type)
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020013{
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010014 struct image_type_params **curr;
15 INIT_SECTION(image_type);
16
17 struct image_type_params **start = __start_image_type;
18 struct image_type_params **end = __stop_image_type;
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020019
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -020020 for (curr = start; curr != end; curr++) {
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010021 if ((*curr)->check_image_type) {
22 if (!(*curr)->check_image_type(type))
23 return *curr;
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020024 }
25 }
26 return NULL;
27}
28
Pali Rohár11f29d42022-02-13 01:09:46 +010029static int imagetool_verify_print_header_by_type(
30 void *ptr,
31 struct stat *sbuf,
32 struct image_type_params *tparams,
33 struct image_tool_params *params);
34
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020035int imagetool_verify_print_header(
36 void *ptr,
37 struct stat *sbuf,
38 struct image_type_params *tparams,
39 struct image_tool_params *params)
40{
41 int retval = -1;
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010042 struct image_type_params **curr;
43 INIT_SECTION(image_type);
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020044
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010045 struct image_type_params **start = __start_image_type;
46 struct image_type_params **end = __stop_image_type;
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -020047
Pali Rohár11f29d42022-02-13 01:09:46 +010048 if (tparams)
49 return imagetool_verify_print_header_by_type(ptr, sbuf, tparams, params);
50
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -020051 for (curr = start; curr != end; curr++) {
Pali Rohárafd82182023-01-29 17:45:55 +010052 /*
53 * Basically every data file can be guessed / verified as gpimage,
54 * so skip autodetection of data file as gpimage as it does not work.
55 */
56 if ((*curr)->check_image_type && (*curr)->check_image_type(IH_TYPE_GPIMAGE) == 0)
57 continue;
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010058 if ((*curr)->verify_header) {
59 retval = (*curr)->verify_header((unsigned char *)ptr,
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020060 sbuf->st_size, params);
61
62 if (retval == 0) {
63 /*
Jordan Handd32aa3c2019-03-05 14:47:56 -080064 * Print the image information if verify is
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020065 * successful
66 */
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010067 if ((*curr)->print_header) {
Simon Glassbd6e1422016-05-01 13:55:38 -060068 if (!params->quiet)
Pali Rohár2972d7d2023-03-29 21:25:54 +020069 (*curr)->print_header(ptr, params);
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020070 } else {
71 fprintf(stderr,
72 "%s: print_header undefined for %s\n",
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010073 params->cmdname, (*curr)->name);
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020074 }
75 break;
76 }
77 }
78 }
79
Pali Rohár6c58aa12023-01-29 17:45:54 +010080 if (retval != 0) {
81 fprintf(stderr, "%s: cannot detect image type\n",
82 params->cmdname);
83 }
84
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020085 return retval;
86}
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -020087
Pali Rohár11f29d42022-02-13 01:09:46 +010088static int imagetool_verify_print_header_by_type(
Jordan Handd32aa3c2019-03-05 14:47:56 -080089 void *ptr,
90 struct stat *sbuf,
91 struct image_type_params *tparams,
92 struct image_tool_params *params)
93{
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +020094 int retval = -1;
Jordan Handd32aa3c2019-03-05 14:47:56 -080095
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +020096 if (tparams->verify_header) {
97 retval = tparams->verify_header((unsigned char *)ptr,
98 sbuf->st_size, params);
Jordan Handd32aa3c2019-03-05 14:47:56 -080099
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +0200100 if (retval == 0) {
101 /*
102 * Print the image information if verify is successful
103 */
104 if (tparams->print_header) {
105 if (!params->quiet)
Pali Rohár2972d7d2023-03-29 21:25:54 +0200106 tparams->print_header(ptr, params);
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +0200107 } else {
108 fprintf(stderr,
109 "%s: print_header undefined for %s\n",
110 params->cmdname, tparams->name);
111 }
Jordan Handd32aa3c2019-03-05 14:47:56 -0800112 } else {
113 fprintf(stderr,
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +0200114 "%s: verify_header failed for %s with exit code %d\n",
115 params->cmdname, tparams->name, retval);
Jordan Handd32aa3c2019-03-05 14:47:56 -0800116 }
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +0200117
Jordan Handd32aa3c2019-03-05 14:47:56 -0800118 } else {
Pali Rohár27e46a92023-01-29 17:45:53 +0100119 fprintf(stderr, "%s: verify_header undefined for %s\n",
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +0200120 params->cmdname, tparams->name);
Jordan Handd32aa3c2019-03-05 14:47:56 -0800121 }
122
123 return retval;
124}
125
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200126int imagetool_save_subimage(
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200127 const char *file_name,
128 ulong file_data,
129 ulong file_len)
130{
131 int dfd;
132
133 dfd = open(file_name, O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
134 S_IRUSR | S_IWUSR);
135 if (dfd < 0) {
136 fprintf(stderr, "Can't open \"%s\": %s\n",
137 file_name, strerror(errno));
138 return -1;
139 }
140
141 if (write(dfd, (void *)file_data, file_len) != (ssize_t)file_len) {
142 fprintf(stderr, "Write error on \"%s\": %s\n",
143 file_name, strerror(errno));
144 close(dfd);
145 return -1;
146 }
147
148 close(dfd);
149
150 return 0;
151}
Simon Glass3837ce62016-02-22 22:55:49 -0700152
153int imagetool_get_filesize(struct image_tool_params *params, const char *fname)
154{
155 struct stat sbuf;
156 int fd;
157
158 fd = open(fname, O_RDONLY | O_BINARY);
159 if (fd < 0) {
160 fprintf(stderr, "%s: Can't open %s: %s\n",
161 params->cmdname, fname, strerror(errno));
162 return -1;
163 }
164
165 if (fstat(fd, &sbuf) < 0) {
166 fprintf(stderr, "%s: Can't stat %s: %s\n",
167 params->cmdname, fname, strerror(errno));
Simon Glassb12a81c2016-03-16 07:45:37 -0600168 close(fd);
Simon Glass3837ce62016-02-22 22:55:49 -0700169 return -1;
170 }
171 close(fd);
172
173 return sbuf.st_size;
174}
Vagrant Cascadian58470842016-06-16 12:28:40 -0700175
176time_t imagetool_get_source_date(
Alex Kiernan87925df2018-06-20 20:10:51 +0000177 const char *cmdname,
Vagrant Cascadian58470842016-06-16 12:28:40 -0700178 time_t fallback)
179{
180 char *source_date_epoch = getenv("SOURCE_DATE_EPOCH");
181
182 if (source_date_epoch == NULL)
183 return fallback;
184
185 time_t time = (time_t) strtol(source_date_epoch, NULL, 10);
186
187 if (gmtime(&time) == NULL) {
188 fprintf(stderr, "%s: SOURCE_DATE_EPOCH is not valid\n",
Alex Kiernan87925df2018-06-20 20:10:51 +0000189 cmdname);
Vagrant Cascadian58470842016-06-16 12:28:40 -0700190 time = 0;
191 }
192
193 return time;
194}