blob: ba1f64aa377a7f048a987e952a3721f81c240b11 [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
29int imagetool_verify_print_header(
30 void *ptr,
31 struct stat *sbuf,
32 struct image_type_params *tparams,
33 struct image_tool_params *params)
34{
35 int retval = -1;
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010036 struct image_type_params **curr;
37 INIT_SECTION(image_type);
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020038
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010039 struct image_type_params **start = __start_image_type;
40 struct image_type_params **end = __stop_image_type;
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -020041
42 for (curr = start; curr != end; curr++) {
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010043 if ((*curr)->verify_header) {
44 retval = (*curr)->verify_header((unsigned char *)ptr,
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020045 sbuf->st_size, params);
46
47 if (retval == 0) {
48 /*
Jordan Handd32aa3c2019-03-05 14:47:56 -080049 * Print the image information if verify is
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020050 * successful
51 */
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010052 if ((*curr)->print_header) {
Simon Glassbd6e1422016-05-01 13:55:38 -060053 if (!params->quiet)
54 (*curr)->print_header(ptr);
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020055 } else {
56 fprintf(stderr,
57 "%s: print_header undefined for %s\n",
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +010058 params->cmdname, (*curr)->name);
Guilherme Maciel Ferreira0ca66912015-01-15 02:48:05 -020059 }
60 break;
61 }
62 }
63 }
64
65 return retval;
66}
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -020067
Jordan Handd32aa3c2019-03-05 14:47:56 -080068int imagetool_verify_print_header_by_type(
69 void *ptr,
70 struct stat *sbuf,
71 struct image_type_params *tparams,
72 struct image_tool_params *params)
73{
74 int retval;
75
76 retval = tparams->verify_header((unsigned char *)ptr, sbuf->st_size,
77 params);
78
79 if (retval == 0) {
80 /*
81 * Print the image information if verify is successful
82 */
83 if (tparams->print_header) {
84 if (!params->quiet)
85 tparams->print_header(ptr);
86 } else {
87 fprintf(stderr,
88 "%s: print_header undefined for %s\n",
89 params->cmdname, tparams->name);
90 }
91 } else {
92 fprintf(stderr,
93 "%s: verify_header failed for %s with exit code %d\n",
94 params->cmdname, tparams->name, retval);
95 }
96
97 return retval;
98}
99
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200100int imagetool_save_subimage(
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200101 const char *file_name,
102 ulong file_data,
103 ulong file_len)
104{
105 int dfd;
106
107 dfd = open(file_name, O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
108 S_IRUSR | S_IWUSR);
109 if (dfd < 0) {
110 fprintf(stderr, "Can't open \"%s\": %s\n",
111 file_name, strerror(errno));
112 return -1;
113 }
114
115 if (write(dfd, (void *)file_data, file_len) != (ssize_t)file_len) {
116 fprintf(stderr, "Write error on \"%s\": %s\n",
117 file_name, strerror(errno));
118 close(dfd);
119 return -1;
120 }
121
122 close(dfd);
123
124 return 0;
125}
Simon Glass3837ce62016-02-22 22:55:49 -0700126
127int imagetool_get_filesize(struct image_tool_params *params, const char *fname)
128{
129 struct stat sbuf;
130 int fd;
131
132 fd = open(fname, O_RDONLY | O_BINARY);
133 if (fd < 0) {
134 fprintf(stderr, "%s: Can't open %s: %s\n",
135 params->cmdname, fname, strerror(errno));
136 return -1;
137 }
138
139 if (fstat(fd, &sbuf) < 0) {
140 fprintf(stderr, "%s: Can't stat %s: %s\n",
141 params->cmdname, fname, strerror(errno));
Simon Glassb12a81c2016-03-16 07:45:37 -0600142 close(fd);
Simon Glass3837ce62016-02-22 22:55:49 -0700143 return -1;
144 }
145 close(fd);
146
147 return sbuf.st_size;
148}
Vagrant Cascadian58470842016-06-16 12:28:40 -0700149
150time_t imagetool_get_source_date(
Alex Kiernan87925df2018-06-20 20:10:51 +0000151 const char *cmdname,
Vagrant Cascadian58470842016-06-16 12:28:40 -0700152 time_t fallback)
153{
154 char *source_date_epoch = getenv("SOURCE_DATE_EPOCH");
155
156 if (source_date_epoch == NULL)
157 return fallback;
158
159 time_t time = (time_t) strtol(source_date_epoch, NULL, 10);
160
161 if (gmtime(&time) == NULL) {
162 fprintf(stderr, "%s: SOURCE_DATE_EPOCH is not valid\n",
Alex Kiernan87925df2018-06-20 20:10:51 +0000163 cmdname);
Vagrant Cascadian58470842016-06-16 12:28:40 -0700164 time = 0;
165 }
166
167 return time;
168}