]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
89a4d6b1 PW |
2 | /* |
3 | * (C) Copyright 2008 Semihalf | |
4 | * | |
5 | * (C) Copyright 2000-2004 | |
6 | * DENX Software Engineering | |
7 | * Wolfgang Denk, [email protected] | |
8 | * | |
9 | * Updated-by: Prafulla Wadaskar <[email protected]> | |
10 | * default_image specific code abstracted from mkimage.c | |
11 | * some functions added to address abstraction | |
12 | * | |
13 | * All rights reserved. | |
89a4d6b1 PW |
14 | */ |
15 | ||
f86ed6a8 | 16 | #include "imagetool.h" |
26621799 GMF |
17 | #include "mkimage.h" |
18 | ||
89a4d6b1 | 19 | #include <image.h> |
45b55712 | 20 | #include <tee/optee.h> |
89a4d6b1 PW |
21 | #include <u-boot/crc.h> |
22 | ||
23 | static image_header_t header; | |
24 | ||
712fbcf3 | 25 | static int image_check_image_types(uint8_t type) |
89a4d6b1 | 26 | { |
b9b50e89 | 27 | if (((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT)) || |
d21bd69b | 28 | (type == IH_TYPE_KERNEL_NOLOAD) || (type == IH_TYPE_FIRMWARE_IVT)) |
89a4d6b1 PW |
29 | return EXIT_SUCCESS; |
30 | else | |
31 | return EXIT_FAILURE; | |
32 | } | |
33 | ||
f86ed6a8 | 34 | static int image_check_params(struct image_tool_params *params) |
89a4d6b1 PW |
35 | { |
36 | return ((params->dflag && (params->fflag || params->lflag)) || | |
37 | (params->fflag && (params->dflag || params->lflag)) || | |
38 | (params->lflag && (params->dflag || params->fflag))); | |
39 | } | |
40 | ||
712fbcf3 | 41 | static int image_verify_header(unsigned char *ptr, int image_size, |
f86ed6a8 | 42 | struct image_tool_params *params) |
89a4d6b1 PW |
43 | { |
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 | */ | |
712fbcf3 | 55 | memcpy(hdr, ptr, sizeof(image_header_t)); |
89a4d6b1 PW |
56 | |
57 | if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) { | |
26621799 GMF |
58 | debug("%s: Bad Magic Number: \"%s\" is no valid image\n", |
59 | params->cmdname, params->imagefile); | |
89a4d6b1 PW |
60 | 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 | ||
712fbcf3 | 69 | if (crc32(0, data, len) != checksum) { |
26621799 GMF |
70 | debug("%s: ERROR: \"%s\" has bad header checksum!\n", |
71 | params->cmdname, params->imagefile); | |
89a4d6b1 PW |
72 | 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); | |
712fbcf3 | 79 | if (crc32(0, data, len) != checksum) { |
26621799 GMF |
80 | debug("%s: ERROR: \"%s\" has corrupted data!\n", |
81 | params->cmdname, params->imagefile); | |
89a4d6b1 PW |
82 | return -FDT_ERR_BADSTRUCTURE; |
83 | } | |
84 | return 0; | |
85 | } | |
86 | ||
712fbcf3 | 87 | static void image_set_header(void *ptr, struct stat *sbuf, int ifd, |
f86ed6a8 | 88 | struct image_tool_params *params) |
89a4d6b1 PW |
89 | { |
90 | uint32_t checksum; | |
f3f431a7 | 91 | time_t time; |
d21bd69b | 92 | uint32_t imagesize; |
45b55712 BD |
93 | uint32_t ep; |
94 | uint32_t addr; | |
89a4d6b1 PW |
95 | |
96 | image_header_t * hdr = (image_header_t *)ptr; | |
97 | ||
712fbcf3 | 98 | checksum = crc32(0, |
89a4d6b1 PW |
99 | (const unsigned char *)(ptr + |
100 | sizeof(image_header_t)), | |
101 | sbuf->st_size - sizeof(image_header_t)); | |
102 | ||
87925df2 | 103 | time = imagetool_get_source_date(params->cmdname, sbuf->st_mtime); |
45b55712 BD |
104 | ep = params->ep; |
105 | addr = params->addr; | |
106 | ||
d21bd69b SE |
107 | 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); | |
f3f431a7 | 112 | |
45b55712 BD |
113 | if (params->os == IH_OS_TEE) { |
114 | addr = optee_image_get_load_addr(hdr); | |
115 | ep = optee_image_get_entry_point(hdr); | |
116 | } | |
117 | ||
89a4d6b1 | 118 | /* Build new header */ |
712fbcf3 | 119 | image_set_magic(hdr, IH_MAGIC); |
f3f431a7 | 120 | image_set_time(hdr, time); |
d21bd69b | 121 | image_set_size(hdr, imagesize); |
45b55712 BD |
122 | image_set_load(hdr, addr); |
123 | image_set_ep(hdr, ep); | |
712fbcf3 SW |
124 | 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); | |
129 | ||
130 | image_set_name(hdr, params->imagename); | |
131 | ||
132 | checksum = crc32(0, (const unsigned char *)hdr, | |
89a4d6b1 PW |
133 | sizeof(image_header_t)); |
134 | ||
712fbcf3 | 135 | image_set_hcrc(hdr, checksum); |
89a4d6b1 PW |
136 | } |
137 | ||
67f946cd | 138 | static int image_extract_subimage(void *ptr, struct image_tool_params *params) |
a804b5ce GMF |
139 | { |
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 */ | |
67f946cd | 165 | return imagetool_save_subimage(params->outfile, file_data, file_len); |
a804b5ce GMF |
166 | } |
167 | ||
89a4d6b1 PW |
168 | /* |
169 | * Default image type parameters definition | |
170 | */ | |
a93648d1 GMF |
171 | U_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, | |
67f946cd | 180 | image_extract_subimage, |
a93648d1 GMF |
181 | image_check_image_types, |
182 | NULL, | |
183 | NULL | |
184 | ); |