blob: 4b7d1ed4a1a5247d72a1f73c65466c2daac486e9 [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"
18
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053019#include <image.h>
Bryan O'Donoghue45b55712018-03-13 16:50:35 +000020#include <tee/optee.h>
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053021#include <u-boot/crc.h>
22
23static image_header_t header;
24
Stephen Warren712fbcf2011-10-18 11:11:49 +000025static int image_check_image_types(uint8_t type)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053026{
Stephen Warrenb9b50e892011-11-10 13:17:53 -070027 if (((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT)) ||
Sven Ebenfeldd21bd692016-11-06 16:37:56 +010028 (type == IH_TYPE_KERNEL_NOLOAD) || (type == IH_TYPE_FIRMWARE_IVT))
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053029 return EXIT_SUCCESS;
30 else
31 return EXIT_FAILURE;
32}
33
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070034static int image_check_params(struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053035{
36 return ((params->dflag && (params->fflag || params->lflag)) ||
37 (params->fflag && (params->dflag || params->lflag)) ||
38 (params->lflag && (params->dflag || params->fflag)));
39}
40
Stephen Warren712fbcf2011-10-18 11:11:49 +000041static int image_verify_header(unsigned char *ptr, int image_size,
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070042 struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053043{
44 uint32_t len;
45 const unsigned char *data;
46 uint32_t checksum;
47 image_header_t header;
48 image_header_t *hdr = &header;
49
50 /*
51 * create copy of header so that we can blank out the
52 * checksum field for checking - this can't be done
53 * on the PROT_READ mapped data.
54 */
Stephen Warren712fbcf2011-10-18 11:11:49 +000055 memcpy(hdr, ptr, sizeof(image_header_t));
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053056
57 if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020058 debug("%s: Bad Magic Number: \"%s\" is no valid image\n",
59 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053060 return -FDT_ERR_BADMAGIC;
61 }
62
63 data = (const unsigned char *)hdr;
64 len = sizeof(image_header_t);
65
66 checksum = be32_to_cpu(hdr->ih_hcrc);
67 hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */
68
Stephen Warren712fbcf2011-10-18 11:11:49 +000069 if (crc32(0, data, len) != checksum) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020070 debug("%s: ERROR: \"%s\" has bad header checksum!\n",
71 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053072 return -FDT_ERR_BADSTATE;
73 }
74
75 data = (const unsigned char *)ptr + sizeof(image_header_t);
76 len = image_size - sizeof(image_header_t) ;
77
78 checksum = be32_to_cpu(hdr->ih_dcrc);
Stephen Warren712fbcf2011-10-18 11:11:49 +000079 if (crc32(0, data, len) != checksum) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020080 debug("%s: ERROR: \"%s\" has corrupted data!\n",
81 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053082 return -FDT_ERR_BADSTRUCTURE;
83 }
84 return 0;
85}
86
Stephen Warren712fbcf2011-10-18 11:11:49 +000087static void image_set_header(void *ptr, struct stat *sbuf, int ifd,
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070088 struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053089{
90 uint32_t checksum;
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +020091 time_t time;
Sven Ebenfeldd21bd692016-11-06 16:37:56 +010092 uint32_t imagesize;
Bryan O'Donoghue45b55712018-03-13 16:50:35 +000093 uint32_t ep;
94 uint32_t addr;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053095
96 image_header_t * hdr = (image_header_t *)ptr;
97
Stephen Warren712fbcf2011-10-18 11:11:49 +000098 checksum = crc32(0,
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053099 (const unsigned char *)(ptr +
100 sizeof(image_header_t)),
101 sbuf->st_size - sizeof(image_header_t));
102
Alex Kiernan87925df2018-06-20 20:10:51 +0000103 time = imagetool_get_source_date(params->cmdname, sbuf->st_mtime);
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000104 ep = params->ep;
105 addr = params->addr;
106
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100107 if (params->type == IH_TYPE_FIRMWARE_IVT)
108 /* Add size of CSF minus IVT */
109 imagesize = sbuf->st_size - sizeof(image_header_t) + 0x1FE0;
110 else
111 imagesize = sbuf->st_size - sizeof(image_header_t);
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200112
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000113 if (params->os == IH_OS_TEE) {
114 addr = optee_image_get_load_addr(hdr);
115 ep = optee_image_get_entry_point(hdr);
116 }
117
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530118 /* Build new header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000119 image_set_magic(hdr, IH_MAGIC);
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200120 image_set_time(hdr, time);
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100121 image_set_size(hdr, imagesize);
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000122 image_set_load(hdr, addr);
123 image_set_ep(hdr, ep);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000124 image_set_dcrc(hdr, checksum);
125 image_set_os(hdr, params->os);
126 image_set_arch(hdr, params->arch);
127 image_set_type(hdr, params->type);
128 image_set_comp(hdr, params->comp);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530129
Stephen Warren712fbcf2011-10-18 11:11:49 +0000130 image_set_name(hdr, params->imagename);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530131
Stephen Warren712fbcf2011-10-18 11:11:49 +0000132 checksum = crc32(0, (const unsigned char *)hdr,
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530133 sizeof(image_header_t));
134
Stephen Warren712fbcf2011-10-18 11:11:49 +0000135 image_set_hcrc(hdr, checksum);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530136}
137
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200138static int image_extract_subimage(void *ptr, struct image_tool_params *params)
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700139{
140 const image_header_t *hdr = (const image_header_t *)ptr;
141 ulong file_data;
142 ulong file_len;
143
144 if (image_check_type(hdr, IH_TYPE_MULTI)) {
145 ulong idx = params->pflag;
146 ulong count;
147
148 /* get the number of data files present in the image */
149 count = image_multi_count(hdr);
150
151 /* retrieve the "data file" at the idx position */
152 image_multi_getimg(hdr, idx, &file_data, &file_len);
153
154 if ((file_len == 0) || (idx >= count)) {
155 fprintf(stderr, "%s: No such data file %ld in \"%s\"\n",
156 params->cmdname, idx, params->imagefile);
157 return -1;
158 }
159 } else {
160 file_data = image_get_data(hdr);
161 file_len = image_get_size(hdr);
162 }
163
164 /* save the "data file" into the file system */
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200165 return imagetool_save_subimage(params->outfile, file_data, file_len);
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700166}
167
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530168/*
169 * Default image type parameters definition
170 */
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200171U_BOOT_IMAGE_TYPE(
172 defimage,
173 "Default Image support",
174 sizeof(image_header_t),
175 (void *)&header,
176 image_check_params,
177 image_verify_header,
178 image_print_contents,
179 image_set_header,
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200180 image_extract_subimage,
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200181 image_check_image_types,
182 NULL,
183 NULL
184);