blob: dc429ce9e462920f8e6c1d6f1758ebf88500a98b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +05302/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * (C) Copyright 2000-2004
6 * DENX Software Engineering
7 * Wolfgang Denk, wd@denx.de
8 *
9 * Updated-by: Prafulla Wadaskar <prafulla@marvell.com>
10 * default_image specific code abstracted from mkimage.c
11 * some functions added to address abstraction
12 *
13 * All rights reserved.
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053014 */
15
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070016#include "imagetool.h"
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020017#include "mkimage.h"
Simon Glass3db71102019-11-14 12:57:16 -070018#include <u-boot/crc.h>
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020019
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053020#include <image.h>
Bryan O'Donoghue45b55712018-03-13 16:50:35 +000021#include <tee/optee.h>
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053022#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000023#include <imximage.h>
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053024
Simon Glassf3543e62022-09-06 20:26:52 -060025static struct legacy_img_hdr header;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053026
Stephen Warren712fbcf2011-10-18 11:11:49 +000027static int image_check_image_types(uint8_t type)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053028{
Stephen Warrenb9b50e892011-11-10 13:17:53 -070029 if (((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT)) ||
Marc Kleine-Budde28f924f2022-11-23 12:55:33 +010030 (type == IH_TYPE_KERNEL_NOLOAD) || (type == IH_TYPE_FIRMWARE_IVT) ||
31 (type == IH_TYPE_FDT_LEGACY))
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053032 return EXIT_SUCCESS;
33 else
34 return EXIT_FAILURE;
35}
36
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070037static int image_check_params(struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053038{
39 return ((params->dflag && (params->fflag || params->lflag)) ||
40 (params->fflag && (params->dflag || params->lflag)) ||
41 (params->lflag && (params->dflag || params->fflag)));
42}
43
Stephen Warren712fbcf2011-10-18 11:11:49 +000044static int image_verify_header(unsigned char *ptr, int image_size,
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070045 struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053046{
47 uint32_t len;
48 const unsigned char *data;
49 uint32_t checksum;
Simon Glassf3543e62022-09-06 20:26:52 -060050 struct legacy_img_hdr header;
51 struct legacy_img_hdr *hdr = &header;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053052
Pali Rohár3f837b02023-01-29 17:44:10 +010053 if (image_size < sizeof(struct legacy_img_hdr)) {
54 debug("%s: Bad image size: \"%s\" is no valid image\n",
55 params->cmdname, params->imagefile);
56 return -FDT_ERR_BADSTRUCTURE;
57 }
58
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053059 /*
60 * create copy of header so that we can blank out the
61 * checksum field for checking - this can't be done
62 * on the PROT_READ mapped data.
63 */
Simon Glassf3543e62022-09-06 20:26:52 -060064 memcpy(hdr, ptr, sizeof(struct legacy_img_hdr));
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053065
66 if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020067 debug("%s: Bad Magic Number: \"%s\" is no valid image\n",
68 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053069 return -FDT_ERR_BADMAGIC;
70 }
71
72 data = (const unsigned char *)hdr;
Simon Glassf3543e62022-09-06 20:26:52 -060073 len = sizeof(struct legacy_img_hdr);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053074
75 checksum = be32_to_cpu(hdr->ih_hcrc);
76 hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */
77
Stephen Warren712fbcf2011-10-18 11:11:49 +000078 if (crc32(0, data, len) != checksum) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020079 debug("%s: ERROR: \"%s\" has bad header checksum!\n",
80 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053081 return -FDT_ERR_BADSTATE;
82 }
83
Simon Glassf3543e62022-09-06 20:26:52 -060084 data = (const unsigned char *)ptr + sizeof(struct legacy_img_hdr);
Pali Rohár598e9112023-01-29 17:44:11 +010085 len = image_get_data_size(hdr);
86
87 if (image_get_type(hdr) == IH_TYPE_FIRMWARE_IVT)
88 /* Add size of CSF minus IVT */
89 len -= 0x2060 - sizeof(flash_header_v2_t);
90
91 if (image_size - sizeof(struct legacy_img_hdr) < len) {
92 debug("%s: Bad image size: \"%s\" is no valid image\n",
93 params->cmdname, params->imagefile);
94 return -FDT_ERR_BADSTRUCTURE;
95 }
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053096
97 checksum = be32_to_cpu(hdr->ih_dcrc);
Stephen Warren712fbcf2011-10-18 11:11:49 +000098 if (crc32(0, data, len) != checksum) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020099 debug("%s: ERROR: \"%s\" has corrupted data!\n",
100 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530101 return -FDT_ERR_BADSTRUCTURE;
102 }
103 return 0;
104}
105
Stephen Warren712fbcf2011-10-18 11:11:49 +0000106static void image_set_header(void *ptr, struct stat *sbuf, int ifd,
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -0700107 struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530108{
109 uint32_t checksum;
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200110 time_t time;
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100111 uint32_t imagesize;
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000112 uint32_t ep;
113 uint32_t addr;
Marc Kleine-Budde28f924f2022-11-23 12:55:33 +0100114 int type;
Simon Glassf3543e62022-09-06 20:26:52 -0600115 struct legacy_img_hdr *hdr = (struct legacy_img_hdr *)ptr;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530116
Stephen Warren712fbcf2011-10-18 11:11:49 +0000117 checksum = crc32(0,
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530118 (const unsigned char *)(ptr +
Simon Glassf3543e62022-09-06 20:26:52 -0600119 sizeof(struct legacy_img_hdr)),
120 sbuf->st_size - sizeof(struct legacy_img_hdr));
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530121
Alex Kiernan87925df2018-06-20 20:10:51 +0000122 time = imagetool_get_source_date(params->cmdname, sbuf->st_mtime);
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000123 ep = params->ep;
124 addr = params->addr;
125
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100126 if (params->type == IH_TYPE_FIRMWARE_IVT)
127 /* Add size of CSF minus IVT */
Simon Glassf3543e62022-09-06 20:26:52 -0600128 imagesize = sbuf->st_size - sizeof(struct legacy_img_hdr)
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000129 + 0x2060 - sizeof(flash_header_v2_t);
130
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100131 else
Simon Glassf3543e62022-09-06 20:26:52 -0600132 imagesize = sbuf->st_size - sizeof(struct legacy_img_hdr);
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200133
Marc Kleine-Budde28f924f2022-11-23 12:55:33 +0100134 if (params->type == IH_TYPE_FDT_LEGACY)
135 type = IH_TYPE_FLATDT;
136 else
137 type = params->type;
138
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000139 if (params->os == IH_OS_TEE) {
140 addr = optee_image_get_load_addr(hdr);
141 ep = optee_image_get_entry_point(hdr);
142 }
143
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530144 /* Build new header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000145 image_set_magic(hdr, IH_MAGIC);
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200146 image_set_time(hdr, time);
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100147 image_set_size(hdr, imagesize);
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000148 image_set_load(hdr, addr);
149 image_set_ep(hdr, ep);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000150 image_set_dcrc(hdr, checksum);
151 image_set_os(hdr, params->os);
152 image_set_arch(hdr, params->arch);
Marc Kleine-Budde28f924f2022-11-23 12:55:33 +0100153 image_set_type(hdr, type);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000154 image_set_comp(hdr, params->comp);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530155
Stephen Warren712fbcf2011-10-18 11:11:49 +0000156 image_set_name(hdr, params->imagename);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530157
Stephen Warren712fbcf2011-10-18 11:11:49 +0000158 checksum = crc32(0, (const unsigned char *)hdr,
Simon Glassf3543e62022-09-06 20:26:52 -0600159 sizeof(struct legacy_img_hdr));
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530160
Stephen Warren712fbcf2011-10-18 11:11:49 +0000161 image_set_hcrc(hdr, checksum);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530162}
163
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200164static int image_extract_subimage(void *ptr, struct image_tool_params *params)
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700165{
Simon Glassf3543e62022-09-06 20:26:52 -0600166 const struct legacy_img_hdr *hdr = (const struct legacy_img_hdr *)ptr;
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700167 ulong file_data;
168 ulong file_len;
169
170 if (image_check_type(hdr, IH_TYPE_MULTI)) {
171 ulong idx = params->pflag;
172 ulong count;
173
174 /* get the number of data files present in the image */
175 count = image_multi_count(hdr);
176
177 /* retrieve the "data file" at the idx position */
178 image_multi_getimg(hdr, idx, &file_data, &file_len);
179
180 if ((file_len == 0) || (idx >= count)) {
181 fprintf(stderr, "%s: No such data file %ld in \"%s\"\n",
182 params->cmdname, idx, params->imagefile);
183 return -1;
184 }
185 } else {
186 file_data = image_get_data(hdr);
187 file_len = image_get_size(hdr);
188 }
189
190 /* save the "data file" into the file system */
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200191 return imagetool_save_subimage(params->outfile, file_data, file_len);
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700192}
193
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530194/*
195 * Default image type parameters definition
196 */
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200197U_BOOT_IMAGE_TYPE(
198 defimage,
199 "Default Image support",
Simon Glassf3543e62022-09-06 20:26:52 -0600200 sizeof(struct legacy_img_hdr),
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200201 (void *)&header,
202 image_check_params,
203 image_verify_header,
204 image_print_contents,
205 image_set_header,
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200206 image_extract_subimage,
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200207 image_check_image_types,
208 NULL,
209 NULL
210);