blob: c67f66b2552eadf6dd6692a029884aeb7682f823 [file] [log] [blame]
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +05301/*
2 * (C) Copyright 2008 Semihalf
3 *
4 * (C) Copyright 2000-2004
5 * DENX Software Engineering
6 * Wolfgang Denk, wd@denx.de
7 *
8 * Updated-by: Prafulla Wadaskar <prafulla@marvell.com>
9 * default_image specific code abstracted from mkimage.c
10 * some functions added to address abstraction
11 *
12 * All rights reserved.
13 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020014 * SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053015 */
16
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070017#include "imagetool.h"
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020018#include "mkimage.h"
19
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>
23
24static image_header_t header;
25
Stephen Warren712fbcf2011-10-18 11:11:49 +000026static int image_check_image_types(uint8_t type)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053027{
Stephen Warrenb9b50e892011-11-10 13:17:53 -070028 if (((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT)) ||
Sven Ebenfeldd21bd692016-11-06 16:37:56 +010029 (type == IH_TYPE_KERNEL_NOLOAD) || (type == IH_TYPE_FIRMWARE_IVT))
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053030 return EXIT_SUCCESS;
31 else
32 return EXIT_FAILURE;
33}
34
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070035static int image_check_params(struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053036{
37 return ((params->dflag && (params->fflag || params->lflag)) ||
38 (params->fflag && (params->dflag || params->lflag)) ||
39 (params->lflag && (params->dflag || params->fflag)));
40}
41
Stephen Warren712fbcf2011-10-18 11:11:49 +000042static int image_verify_header(unsigned char *ptr, int image_size,
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070043 struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053044{
45 uint32_t len;
46 const unsigned char *data;
47 uint32_t checksum;
48 image_header_t header;
49 image_header_t *hdr = &header;
50
51 /*
52 * create copy of header so that we can blank out the
53 * checksum field for checking - this can't be done
54 * on the PROT_READ mapped data.
55 */
Stephen Warren712fbcf2011-10-18 11:11:49 +000056 memcpy(hdr, ptr, sizeof(image_header_t));
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053057
58 if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020059 debug("%s: Bad Magic Number: \"%s\" is no valid image\n",
60 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053061 return -FDT_ERR_BADMAGIC;
62 }
63
64 data = (const unsigned char *)hdr;
65 len = sizeof(image_header_t);
66
67 checksum = be32_to_cpu(hdr->ih_hcrc);
68 hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */
69
Stephen Warren712fbcf2011-10-18 11:11:49 +000070 if (crc32(0, data, len) != checksum) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020071 debug("%s: ERROR: \"%s\" has bad header checksum!\n",
72 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053073 return -FDT_ERR_BADSTATE;
74 }
75
76 data = (const unsigned char *)ptr + sizeof(image_header_t);
77 len = image_size - sizeof(image_header_t) ;
78
79 checksum = be32_to_cpu(hdr->ih_dcrc);
Stephen Warren712fbcf2011-10-18 11:11:49 +000080 if (crc32(0, data, len) != checksum) {
Guilherme Maciel Ferreira26621792015-01-15 02:54:43 -020081 debug("%s: ERROR: \"%s\" has corrupted data!\n",
82 params->cmdname, params->imagefile);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053083 return -FDT_ERR_BADSTRUCTURE;
84 }
85 return 0;
86}
87
Stephen Warren712fbcf2011-10-18 11:11:49 +000088static void image_set_header(void *ptr, struct stat *sbuf, int ifd,
Guilherme Maciel Ferreiraf86ed6a2013-12-01 12:43:10 -070089 struct image_tool_params *params)
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053090{
91 uint32_t checksum;
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +020092 time_t time;
Sven Ebenfeldd21bd692016-11-06 16:37:56 +010093 uint32_t imagesize;
Bryan O'Donoghue45b55712018-03-13 16:50:35 +000094 uint32_t ep;
95 uint32_t addr;
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +053096
97 image_header_t * hdr = (image_header_t *)ptr;
98
Stephen Warren712fbcf2011-10-18 11:11:49 +000099 checksum = crc32(0,
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530100 (const unsigned char *)(ptr +
101 sizeof(image_header_t)),
102 sbuf->st_size - sizeof(image_header_t));
103
Vagrant Cascadian58470842016-06-16 12:28:40 -0700104 time = imagetool_get_source_date(params, sbuf->st_mtime);
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000105 ep = params->ep;
106 addr = params->addr;
107
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100108 if (params->type == IH_TYPE_FIRMWARE_IVT)
109 /* Add size of CSF minus IVT */
110 imagesize = sbuf->st_size - sizeof(image_header_t) + 0x1FE0;
111 else
112 imagesize = sbuf->st_size - sizeof(image_header_t);
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200113
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000114 if (params->os == IH_OS_TEE) {
115 addr = optee_image_get_load_addr(hdr);
116 ep = optee_image_get_entry_point(hdr);
117 }
118
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530119 /* Build new header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000120 image_set_magic(hdr, IH_MAGIC);
Paul Kocialkowskif3f431a2015-07-26 18:48:15 +0200121 image_set_time(hdr, time);
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100122 image_set_size(hdr, imagesize);
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000123 image_set_load(hdr, addr);
124 image_set_ep(hdr, ep);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000125 image_set_dcrc(hdr, checksum);
126 image_set_os(hdr, params->os);
127 image_set_arch(hdr, params->arch);
128 image_set_type(hdr, params->type);
129 image_set_comp(hdr, params->comp);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530130
Stephen Warren712fbcf2011-10-18 11:11:49 +0000131 image_set_name(hdr, params->imagename);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530132
Stephen Warren712fbcf2011-10-18 11:11:49 +0000133 checksum = crc32(0, (const unsigned char *)hdr,
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530134 sizeof(image_header_t));
135
Stephen Warren712fbcf2011-10-18 11:11:49 +0000136 image_set_hcrc(hdr, checksum);
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530137}
138
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200139static int image_extract_subimage(void *ptr, struct image_tool_params *params)
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700140{
141 const image_header_t *hdr = (const image_header_t *)ptr;
142 ulong file_data;
143 ulong file_len;
144
145 if (image_check_type(hdr, IH_TYPE_MULTI)) {
146 ulong idx = params->pflag;
147 ulong count;
148
149 /* get the number of data files present in the image */
150 count = image_multi_count(hdr);
151
152 /* retrieve the "data file" at the idx position */
153 image_multi_getimg(hdr, idx, &file_data, &file_len);
154
155 if ((file_len == 0) || (idx >= count)) {
156 fprintf(stderr, "%s: No such data file %ld in \"%s\"\n",
157 params->cmdname, idx, params->imagefile);
158 return -1;
159 }
160 } else {
161 file_data = image_get_data(hdr);
162 file_len = image_get_size(hdr);
163 }
164
165 /* save the "data file" into the file system */
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200166 return imagetool_save_subimage(params->outfile, file_data, file_len);
Guilherme Maciel Ferreiraa804b5c2013-12-01 12:43:11 -0700167}
168
Prafulla Wadaskar89a4d6b2009-08-19 17:36:46 +0530169/*
170 * Default image type parameters definition
171 */
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200172U_BOOT_IMAGE_TYPE(
173 defimage,
174 "Default Image support",
175 sizeof(image_header_t),
176 (void *)&header,
177 image_check_params,
178 image_verify_header,
179 image_print_contents,
180 image_set_header,
Guilherme Maciel Ferreira67f946c2015-01-15 02:54:41 -0200181 image_extract_subimage,
Guilherme Maciel Ferreiraa93648d2015-01-15 02:48:07 -0200182 image_check_image_types,
183 NULL,
184 NULL
185);