blob: f14ca2fb979fa73e4ee12162898b78194842eda4 [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++) {
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010052 if ((*curr)->verify_header) {
53 retval = (*curr)->verify_header((unsigned char *)ptr,
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020054 sbuf->st_size, params);
55
56 if (retval == 0) {
57 /*
Jordan Handd32aa3c2019-03-05 14:47:56 -080058 * Print the image information if verify is
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020059 * successful
60 */
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010061 if ((*curr)->print_header) {
Simon Glassbd6e1422016-05-01 13:55:38 -060062 if (!params->quiet)
63 (*curr)->print_header(ptr);
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020064 } else {
65 fprintf(stderr,
66 "%s: print_header undefined for %s\n",
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010067 params->cmdname, (*curr)->name);
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020068 }
69 break;
70 }
71 }
72 }
73
74 return retval;
75}
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -020076
Pali Rohár11f29d42022-02-13 01:09:46 +010077static int imagetool_verify_print_header_by_type(
Jordan Handd32aa3c2019-03-05 14:47:56 -080078 void *ptr,
79 struct stat *sbuf,
80 struct image_type_params *tparams,
81 struct image_tool_params *params)
82{
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +020083 int retval = -1;
Jordan Handd32aa3c2019-03-05 14:47:56 -080084
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +020085 if (tparams->verify_header) {
86 retval = tparams->verify_header((unsigned char *)ptr,
87 sbuf->st_size, params);
Jordan Handd32aa3c2019-03-05 14:47:56 -080088
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +020089 if (retval == 0) {
90 /*
91 * Print the image information if verify is successful
92 */
93 if (tparams->print_header) {
94 if (!params->quiet)
95 tparams->print_header(ptr);
96 } else {
97 fprintf(stderr,
98 "%s: print_header undefined for %s\n",
99 params->cmdname, tparams->name);
100 }
Jordan Handd32aa3c2019-03-05 14:47:56 -0800101 } else {
102 fprintf(stderr,
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +0200103 "%s: verify_header failed for %s with exit code %d\n",
104 params->cmdname, tparams->name, retval);
Jordan Handd32aa3c2019-03-05 14:47:56 -0800105 }
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +0200106
Jordan Handd32aa3c2019-03-05 14:47:56 -0800107 } else {
Nicolas Heemeryck30705cd2022-04-20 23:58:39 +0200108 fprintf(stderr, "%s: print_header undefined for %s\n",
109 params->cmdname, tparams->name);
Jordan Handd32aa3c2019-03-05 14:47:56 -0800110 }
111
112 return retval;
113}
114
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200115int imagetool_save_subimage(
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200116 const char *file_name,
117 ulong file_data,
118 ulong file_len)
119{
120 int dfd;
121
122 dfd = open(file_name, O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
123 S_IRUSR | S_IWUSR);
124 if (dfd < 0) {
125 fprintf(stderr, "Can't open \"%s\": %s\n",
126 file_name, strerror(errno));
127 return -1;
128 }
129
130 if (write(dfd, (void *)file_data, file_len) != (ssize_t)file_len) {
131 fprintf(stderr, "Write error on \"%s\": %s\n",
132 file_name, strerror(errno));
133 close(dfd);
134 return -1;
135 }
136
137 close(dfd);
138
139 return 0;
140}
Simon Glass3837ce62016-02-22 22:55:49 -0700141
142int imagetool_get_filesize(struct image_tool_params *params, const char *fname)
143{
144 struct stat sbuf;
145 int fd;
146
147 fd = open(fname, O_RDONLY | O_BINARY);
148 if (fd < 0) {
149 fprintf(stderr, "%s: Can't open %s: %s\n",
150 params->cmdname, fname, strerror(errno));
151 return -1;
152 }
153
154 if (fstat(fd, &sbuf) < 0) {
155 fprintf(stderr, "%s: Can't stat %s: %s\n",
156 params->cmdname, fname, strerror(errno));
Simon Glassb12a81c2016-03-16 07:45:37 -0600157 close(fd);
Simon Glass3837ce62016-02-22 22:55:49 -0700158 return -1;
159 }
160 close(fd);
161
162 return sbuf.st_size;
163}
Vagrant Cascadian58470842016-06-16 12:28:40 -0700164
165time_t imagetool_get_source_date(
Alex Kiernan87925df2018-06-20 20:10:51 +0000166 const char *cmdname,
Vagrant Cascadian58470842016-06-16 12:28:40 -0700167 time_t fallback)
168{
169 char *source_date_epoch = getenv("SOURCE_DATE_EPOCH");
170
171 if (source_date_epoch == NULL)
172 return fallback;
173
174 time_t time = (time_t) strtol(source_date_epoch, NULL, 10);
175
176 if (gmtime(&time) == NULL) {
177 fprintf(stderr, "%s: SOURCE_DATE_EPOCH is not valid\n",
Alex Kiernan87925df2018-06-20 20:10:51 +0000178 cmdname);
Vagrant Cascadian58470842016-06-16 12:28:40 -0700179 time = 0;
180 }
181
182 return time;
183}