blob: e164c0c27d1a757e32e0c877d2abbfed787f3ca4 [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
25static image_header_t header;
26
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)) ||
Sven Ebenfeldd21bd692016-11-06 16:37:56 +010030 (type == IH_TYPE_KERNEL_NOLOAD) || (type == IH_TYPE_FIRMWARE_IVT))
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053031 return EXIT_SUCCESS;
32 else
33 return EXIT_FAILURE;
34}
35
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070036static int image_check_params(struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053037{
38 return ((params->dflag && (params->fflag || params->lflag)) ||
39 (params->fflag && (params->dflag || params->lflag)) ||
40 (params->lflag && (params->dflag || params->fflag)));
41}
42
Stephen Warren712fbcf2011-10-18 11:11:49 +000043static int image_verify_header(unsigned char *ptr, int image_size,
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070044 struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053045{
46 uint32_t len;
47 const unsigned char *data;
48 uint32_t checksum;
49 image_header_t header;
50 image_header_t *hdr = &header;
51
52 /*
53 * create copy of header so that we can blank out the
54 * checksum field for checking - this can't be done
55 * on the PROT_READ mapped data.
56 */
Stephen Warren712fbcf2011-10-18 11:11:49 +000057 memcpy(hdr, ptr, sizeof(image_header_t));
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053058
59 if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020060 debug("%s: Bad Magic Number: \"%s\" is no valid image\n",
61 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053062 return -FDT_ERR_BADMAGIC;
63 }
64
65 data = (const unsigned char *)hdr;
66 len = sizeof(image_header_t);
67
68 checksum = be32_to_cpu(hdr->ih_hcrc);
69 hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */
70
Stephen Warren712fbcf2011-10-18 11:11:49 +000071 if (crc32(0, data, len) != checksum) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020072 debug("%s: ERROR: \"%s\" has bad header checksum!\n",
73 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053074 return -FDT_ERR_BADSTATE;
75 }
76
77 data = (const unsigned char *)ptr + sizeof(image_header_t);
78 len = image_size - sizeof(image_header_t) ;
79
80 checksum = be32_to_cpu(hdr->ih_dcrc);
Stephen Warren712fbcf2011-10-18 11:11:49 +000081 if (crc32(0, data, len) != checksum) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020082 debug("%s: ERROR: \"%s\" has corrupted data!\n",
83 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053084 return -FDT_ERR_BADSTRUCTURE;
85 }
86 return 0;
87}
88
Stephen Warren712fbcf2011-10-18 11:11:49 +000089static void image_set_header(void *ptr, struct stat *sbuf, int ifd,
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070090 struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053091{
92 uint32_t checksum;
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +020093 time_t time;
Sven Ebenfeldd21bd692016-11-06 16:37:56 +010094 uint32_t imagesize;
Bryan O'Donoghue45b55712018-03-13 16:50:35 +000095 uint32_t ep;
96 uint32_t addr;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053097
98 image_header_t * hdr = (image_header_t *)ptr;
99
Stephen Warren712fbcf2011-10-18 11:11:49 +0000100 checksum = crc32(0,
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530101 (const unsigned char *)(ptr +
102 sizeof(image_header_t)),
103 sbuf->st_size - sizeof(image_header_t));
104
Alex Kiernan87925df2018-06-20 20:10:51 +0000105 time = imagetool_get_source_date(params->cmdname, sbuf->st_mtime);
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000106 ep = params->ep;
107 addr = params->addr;
108
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100109 if (params->type == IH_TYPE_FIRMWARE_IVT)
110 /* Add size of CSF minus IVT */
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000111 imagesize = sbuf->st_size - sizeof(image_header_t)
112 + 0x2060 - sizeof(flash_header_v2_t);
113
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100114 else
115 imagesize = sbuf->st_size - sizeof(image_header_t);
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200116
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000117 if (params->os == IH_OS_TEE) {
118 addr = optee_image_get_load_addr(hdr);
119 ep = optee_image_get_entry_point(hdr);
120 }
121
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530122 /* Build new header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000123 image_set_magic(hdr, IH_MAGIC);
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200124 image_set_time(hdr, time);
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100125 image_set_size(hdr, imagesize);
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000126 image_set_load(hdr, addr);
127 image_set_ep(hdr, ep);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000128 image_set_dcrc(hdr, checksum);
129 image_set_os(hdr, params->os);
130 image_set_arch(hdr, params->arch);
131 image_set_type(hdr, params->type);
132 image_set_comp(hdr, params->comp);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530133
Stephen Warren712fbcf2011-10-18 11:11:49 +0000134 image_set_name(hdr, params->imagename);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530135
Stephen Warren712fbcf2011-10-18 11:11:49 +0000136 checksum = crc32(0, (const unsigned char *)hdr,
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530137 sizeof(image_header_t));
138
Stephen Warren712fbcf2011-10-18 11:11:49 +0000139 image_set_hcrc(hdr, checksum);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530140}
141
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200142static int image_extract_subimage(void *ptr, struct image_tool_params *params)
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700143{
144 const image_header_t *hdr = (const image_header_t *)ptr;
145 ulong file_data;
146 ulong file_len;
147
148 if (image_check_type(hdr, IH_TYPE_MULTI)) {
149 ulong idx = params->pflag;
150 ulong count;
151
152 /* get the number of data files present in the image */
153 count = image_multi_count(hdr);
154
155 /* retrieve the "data file" at the idx position */
156 image_multi_getimg(hdr, idx, &file_data, &file_len);
157
158 if ((file_len == 0) || (idx >= count)) {
159 fprintf(stderr, "%s: No such data file %ld in \"%s\"\n",
160 params->cmdname, idx, params->imagefile);
161 return -1;
162 }
163 } else {
164 file_data = image_get_data(hdr);
165 file_len = image_get_size(hdr);
166 }
167
168 /* save the "data file" into the file system */
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200169 return imagetool_save_subimage(params->outfile, file_data, file_len);
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700170}
171
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530172/*
173 * Default image type parameters definition
174 */
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200175U_BOOT_IMAGE_TYPE(
176 defimage,
177 "Default Image support",
178 sizeof(image_header_t),
179 (void *)&header,
180 image_check_params,
181 image_verify_header,
182 image_print_contents,
183 image_set_header,
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200184 image_extract_subimage,
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200185 image_check_image_types,
186 NULL,
187 NULL
188);