blob: 09c7a44e058aff7ffa2ae36575aab8fea3015df0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05002/*
3 * Copyright (c) 2011 Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05004 */
5
Simon Glass9fb625c2019-08-01 09:46:51 -06006#include <env.h>
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05007#include <image.h>
Sam Protsenkoc3bfad82020-01-24 17:53:40 +02008#include <image-android-dt.h>
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05009#include <android_image.h>
Ahmad Draidi86f46952014-10-23 20:50:07 +030010#include <malloc.h>
11#include <errno.h>
Eugeniu Rosca829ceb22019-04-08 17:35:27 +020012#include <asm/unaligned.h>
Sam Protsenkoc3bfad82020-01-24 17:53:40 +020013#include <mapmem.h>
Simon Glass401d1c42020-10-30 21:38:53 -060014#include <linux/libfdt.h>
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -050015
Maxime Ripard87f02d52015-04-24 12:53:12 +020016#define ANDROID_IMAGE_DEFAULT_KERNEL_ADDR 0x10008000
17
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -050018static char andr_tmp_str[ANDR_BOOT_ARGS_SIZE + 1];
19
Safae Ouajih57e405e2023-02-06 00:50:18 +010020static ulong checksum(const unsigned char *buffer, ulong size)
21{
22 ulong sum = 0;
23
24 for (ulong i = 0; i < size; i++)
25 sum += buffer[i];
26 return sum;
27}
28
29static bool is_trailer_present(ulong bootconfig_end_addr)
30{
31 return !strncmp((char *)(bootconfig_end_addr - BOOTCONFIG_MAGIC_SIZE),
32 BOOTCONFIG_MAGIC, BOOTCONFIG_MAGIC_SIZE);
33}
34
35static ulong add_trailer(ulong bootconfig_start_addr, ulong bootconfig_size)
36{
37 ulong end;
38 ulong sum;
39
40 if (!bootconfig_start_addr)
41 return -1;
42 if (!bootconfig_size)
43 return 0;
44
45 end = bootconfig_start_addr + bootconfig_size;
46 if (is_trailer_present(end))
47 return 0;
48
49 memcpy((void *)(end), &bootconfig_size, BOOTCONFIG_SIZE_SIZE);
50 sum = checksum((unsigned char *)bootconfig_start_addr, bootconfig_size);
51 memcpy((void *)(end + BOOTCONFIG_SIZE_SIZE), &sum,
52 BOOTCONFIG_CHECKSUM_SIZE);
53 memcpy((void *)(end + BOOTCONFIG_SIZE_SIZE + BOOTCONFIG_CHECKSUM_SIZE),
54 BOOTCONFIG_MAGIC, BOOTCONFIG_MAGIC_SIZE);
55
56 return BOOTCONFIG_TRAILER_SIZE;
57}
58
Mattijs Korpershoek58fed992024-07-10 10:40:02 +020059__weak ulong get_avendor_bootimg_addr(void)
60{
61 return -1;
62}
63
Safae Ouajih11150272023-02-06 00:50:12 +010064static void android_boot_image_v3_v4_parse_hdr(const struct andr_boot_img_hdr_v3 *hdr,
65 struct andr_image_data *data)
66{
67 ulong end;
68
69 data->kcmdline = hdr->cmdline;
70 data->header_version = hdr->header_version;
71
72 /*
73 * The header takes a full page, the remaining components are aligned
74 * on page boundary.
75 */
76 end = (ulong)hdr;
77 end += ANDR_GKI_PAGE_SIZE;
78 data->kernel_ptr = end;
79 data->kernel_size = hdr->kernel_size;
80 end += ALIGN(hdr->kernel_size, ANDR_GKI_PAGE_SIZE);
Roman Stratiienkoda3447d2024-05-19 13:09:51 +000081 data->ramdisk_ptr = end;
Safae Ouajih11150272023-02-06 00:50:12 +010082 data->ramdisk_size = hdr->ramdisk_size;
83 data->boot_ramdisk_size = hdr->ramdisk_size;
84 end += ALIGN(hdr->ramdisk_size, ANDR_GKI_PAGE_SIZE);
85
86 if (hdr->header_version > 3)
87 end += ALIGN(hdr->signature_size, ANDR_GKI_PAGE_SIZE);
88
89 data->boot_img_total_size = end - (ulong)hdr;
90}
91
92static void android_vendor_boot_image_v3_v4_parse_hdr(const struct andr_vnd_boot_img_hdr
93 *hdr, struct andr_image_data *data)
94{
95 ulong end;
96
97 /*
98 * The header takes a full page, the remaining components are aligned
99 * on page boundary.
100 */
Safae Ouajihb36b2272023-02-06 00:50:14 +0100101 data->kcmdline_extra = hdr->cmdline;
Safae Ouajih11150272023-02-06 00:50:12 +0100102 data->tags_addr = hdr->tags_addr;
103 data->image_name = hdr->name;
104 data->kernel_addr = hdr->kernel_addr;
105 data->ramdisk_addr = hdr->ramdisk_addr;
106 data->dtb_load_addr = hdr->dtb_addr;
Safae Ouajih57e405e2023-02-06 00:50:18 +0100107 data->bootconfig_size = hdr->bootconfig_size;
Safae Ouajih11150272023-02-06 00:50:12 +0100108 end = (ulong)hdr;
109 end += hdr->page_size;
110 if (hdr->vendor_ramdisk_size) {
111 data->vendor_ramdisk_ptr = end;
112 data->vendor_ramdisk_size = hdr->vendor_ramdisk_size;
113 data->ramdisk_size += hdr->vendor_ramdisk_size;
114 end += ALIGN(hdr->vendor_ramdisk_size, hdr->page_size);
115 }
116
117 data->dtb_ptr = end;
118 data->dtb_size = hdr->dtb_size;
119
120 end += ALIGN(hdr->dtb_size, hdr->page_size);
121 end += ALIGN(hdr->vendor_ramdisk_table_size, hdr->page_size);
Safae Ouajih57e405e2023-02-06 00:50:18 +0100122 data->bootconfig_addr = end;
123 if (hdr->bootconfig_size) {
124 data->bootconfig_size += add_trailer(data->bootconfig_addr,
125 data->bootconfig_size);
126 data->ramdisk_size += data->bootconfig_size;
127 }
128 end += ALIGN(data->bootconfig_size, hdr->page_size);
Safae Ouajih11150272023-02-06 00:50:12 +0100129 data->vendor_boot_img_total_size = end - (ulong)hdr;
130}
131
Safae Ouajihf48efa02023-02-06 00:50:07 +0100132static void android_boot_image_v0_v1_v2_parse_hdr(const struct andr_boot_img_hdr_v0 *hdr,
133 struct andr_image_data *data)
134{
135 ulong end;
136
137 data->image_name = hdr->name;
138 data->kcmdline = hdr->cmdline;
139 data->kernel_addr = hdr->kernel_addr;
140 data->ramdisk_addr = hdr->ramdisk_addr;
141 data->header_version = hdr->header_version;
142 data->dtb_load_addr = hdr->dtb_addr;
143
144 end = (ulong)hdr;
145
146 /*
147 * The header takes a full page, the remaining components are aligned
148 * on page boundary
149 */
150
151 end += hdr->page_size;
152
153 data->kernel_ptr = end;
154 data->kernel_size = hdr->kernel_size;
155 end += ALIGN(hdr->kernel_size, hdr->page_size);
156
157 data->ramdisk_ptr = end;
158 data->ramdisk_size = hdr->ramdisk_size;
159 end += ALIGN(hdr->ramdisk_size, hdr->page_size);
160
161 data->second_ptr = end;
162 data->second_size = hdr->second_size;
163 end += ALIGN(hdr->second_size, hdr->page_size);
164
165 if (hdr->header_version >= 1) {
166 data->recovery_dtbo_ptr = end;
167 data->recovery_dtbo_size = hdr->recovery_dtbo_size;
168 end += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
169 }
170
171 if (hdr->header_version >= 2) {
172 data->dtb_ptr = end;
173 data->dtb_size = hdr->dtb_size;
174 end += ALIGN(hdr->dtb_size, hdr->page_size);
175 }
176
177 data->boot_img_total_size = end - (ulong)hdr;
178}
179
Safae Ouajihe0581762023-02-06 00:50:11 +0100180bool android_image_get_data(const void *boot_hdr, const void *vendor_boot_hdr,
181 struct andr_image_data *data)
Safae Ouajihf48efa02023-02-06 00:50:07 +0100182{
183 if (!boot_hdr || !data) {
184 printf("boot_hdr or data params can't be NULL\n");
185 return false;
186 }
187
188 if (!is_android_boot_image_header(boot_hdr)) {
189 printf("Incorrect boot image header\n");
190 return false;
191 }
192
Safae Ouajih11150272023-02-06 00:50:12 +0100193 if (((struct andr_boot_img_hdr_v0 *)boot_hdr)->header_version > 2) {
194 if (!vendor_boot_hdr) {
195 printf("For boot header v3+ vendor boot image has to be provided\n");
196 return false;
197 }
198 if (!is_android_vendor_boot_image_header(vendor_boot_hdr)) {
199 printf("Incorrect vendor boot image header\n");
200 return false;
201 }
202 android_boot_image_v3_v4_parse_hdr(boot_hdr, data);
203 android_vendor_boot_image_v3_v4_parse_hdr(vendor_boot_hdr, data);
204 } else {
Safae Ouajihf48efa02023-02-06 00:50:07 +0100205 android_boot_image_v0_v1_v2_parse_hdr(boot_hdr, data);
Safae Ouajih11150272023-02-06 00:50:12 +0100206 }
Safae Ouajihf48efa02023-02-06 00:50:07 +0100207
208 return true;
209}
210
Safae Ouajih607b0752023-02-06 00:50:08 +0100211static ulong android_image_get_kernel_addr(struct andr_image_data *img_data)
Maxime Ripard87f02d52015-04-24 12:53:12 +0200212{
213 /*
214 * All the Android tools that generate a boot.img use this
215 * address as the default.
216 *
217 * Even though it doesn't really make a lot of sense, and it
218 * might be valid on some platforms, we treat that adress as
219 * the default value for this field, and try to execute the
220 * kernel in place in such a case.
221 *
222 * Otherwise, we will return the actual value set by the user.
223 */
Safae Ouajih607b0752023-02-06 00:50:08 +0100224 if (img_data->kernel_addr == ANDROID_IMAGE_DEFAULT_KERNEL_ADDR)
225 return img_data->kernel_ptr;
Maxime Ripard87f02d52015-04-24 12:53:12 +0200226
Christian Gmeiner95712af2020-05-29 17:53:45 +0200227 /*
228 * abootimg creates images where all load addresses are 0
229 * and we need to fix them.
230 */
Safae Ouajih607b0752023-02-06 00:50:08 +0100231 if (img_data->kernel_addr == 0 && img_data->ramdisk_addr == 0)
Christian Gmeiner95712af2020-05-29 17:53:45 +0200232 return env_get_ulong("kernel_addr_r", 16, 0);
233
Safae Ouajih607b0752023-02-06 00:50:08 +0100234 return img_data->kernel_addr;
Maxime Ripard87f02d52015-04-24 12:53:12 +0200235}
236
Ahmad Draidi86f46952014-10-23 20:50:07 +0300237/**
238 * android_image_get_kernel() - processes kernel part of Android boot images
Safae Ouajihe0581762023-02-06 00:50:11 +0100239 * @hdr: Pointer to boot image header, which is at the start
Ahmad Draidi86f46952014-10-23 20:50:07 +0300240 * of the image.
Safae Ouajihe0581762023-02-06 00:50:11 +0100241 * @vendor_boot_img: Pointer to vendor boot image header, which is at the
242 * start of the image.
Ahmad Draidi86f46952014-10-23 20:50:07 +0300243 * @verify: Checksum verification flag. Currently unimplemented.
244 * @os_data: Pointer to a ulong variable, will hold os data start
245 * address.
246 * @os_len: Pointer to a ulong variable, will hold os data length.
247 *
248 * This function returns the os image's start address and length. Also,
249 * it appends the kernel command line to the bootargs env variable.
250 *
251 * Return: Zero, os start address and length on success,
252 * otherwise on failure.
253 */
Safae Ouajih636da202023-02-06 00:50:17 +0100254int android_image_get_kernel(const void *hdr,
Safae Ouajihe0581762023-02-06 00:50:11 +0100255 const void *vendor_boot_img, int verify,
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500256 ulong *os_data, ulong *os_len)
257{
Safae Ouajih607b0752023-02-06 00:50:08 +0100258 struct andr_image_data img_data = {0};
259 u32 kernel_addr;
260 const struct legacy_img_hdr *ihdr;
261
Safae Ouajihe0581762023-02-06 00:50:11 +0100262 if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
Safae Ouajih607b0752023-02-06 00:50:08 +0100263 return -EINVAL;
264
265 kernel_addr = android_image_get_kernel_addr(&img_data);
266 ihdr = (const struct legacy_img_hdr *)img_data.kernel_ptr;
Maxime Ripard87f02d52015-04-24 12:53:12 +0200267
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500268 /*
269 * Not all Android tools use the id field for signing the image with
270 * sha1 (or anything) so we don't check it. It is not obvious that the
271 * string is null terminated so we take care of this.
272 */
Safae Ouajih607b0752023-02-06 00:50:08 +0100273 strlcpy(andr_tmp_str, img_data.image_name, ANDR_BOOT_NAME_SIZE);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500274 andr_tmp_str[ANDR_BOOT_NAME_SIZE] = '\0';
275 if (strlen(andr_tmp_str))
276 printf("Android's image name: %s\n", andr_tmp_str);
277
278 printf("Kernel load addr 0x%08x size %u KiB\n",
Safae Ouajih607b0752023-02-06 00:50:08 +0100279 kernel_addr, DIV_ROUND_UP(img_data.kernel_size, 1024));
Ahmad Draidi86f46952014-10-23 20:50:07 +0300280
281 int len = 0;
Safae Ouajih607b0752023-02-06 00:50:08 +0100282 if (*img_data.kcmdline) {
283 printf("Kernel command line: %s\n", img_data.kcmdline);
284 len += strlen(img_data.kcmdline);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500285 }
Ahmad Draidi86f46952014-10-23 20:50:07 +0300286
Safae Ouajihb36b2272023-02-06 00:50:14 +0100287 if (img_data.kcmdline_extra) {
288 printf("Kernel extra command line: %s\n", img_data.kcmdline_extra);
289 len += strlen(img_data.kcmdline_extra);
290 }
291
Simon Glass00caae62017-08-03 12:22:12 -0600292 char *bootargs = env_get("bootargs");
Ahmad Draidi86f46952014-10-23 20:50:07 +0300293 if (bootargs)
294 len += strlen(bootargs);
295
296 char *newbootargs = malloc(len + 2);
297 if (!newbootargs) {
298 puts("Error: malloc in android_image_get_kernel failed!\n");
299 return -ENOMEM;
300 }
301 *newbootargs = '\0';
302
303 if (bootargs) {
304 strcpy(newbootargs, bootargs);
305 strcat(newbootargs, " ");
306 }
Safae Ouajih607b0752023-02-06 00:50:08 +0100307
308 if (*img_data.kcmdline)
309 strcat(newbootargs, img_data.kcmdline);
Ahmad Draidi86f46952014-10-23 20:50:07 +0300310
Safae Ouajihb36b2272023-02-06 00:50:14 +0100311 if (img_data.kcmdline_extra) {
312 strcat(newbootargs, " ");
313 strcat(newbootargs, img_data.kcmdline_extra);
314 }
315
Simon Glass382bee52017-08-03 12:22:09 -0600316 env_set("bootargs", newbootargs);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500317
318 if (os_data) {
Roman Stratiienko39f790b2019-06-03 15:38:13 +0300319 if (image_get_magic(ihdr) == IH_MAGIC) {
320 *os_data = image_get_data(ihdr);
321 } else {
Safae Ouajih607b0752023-02-06 00:50:08 +0100322 *os_data = img_data.kernel_ptr;
Roman Stratiienko39f790b2019-06-03 15:38:13 +0300323 }
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500324 }
Roman Stratiienko39f790b2019-06-03 15:38:13 +0300325 if (os_len) {
326 if (image_get_magic(ihdr) == IH_MAGIC)
327 *os_len = image_get_data_size(ihdr);
328 else
Safae Ouajih607b0752023-02-06 00:50:08 +0100329 *os_len = img_data.kernel_size;
Roman Stratiienko39f790b2019-06-03 15:38:13 +0300330 }
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500331 return 0;
332}
333
Safae Ouajih11150272023-02-06 00:50:12 +0100334bool is_android_vendor_boot_image_header(const void *vendor_boot_img)
335{
336 return !memcmp(VENDOR_BOOT_MAGIC, vendor_boot_img, ANDR_VENDOR_BOOT_MAGIC_SIZE);
337}
338
Safae Ouajih636da202023-02-06 00:50:17 +0100339bool is_android_boot_image_header(const void *hdr)
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500340{
Safae Ouajih734cb472023-02-06 00:50:05 +0100341 return !memcmp(ANDR_BOOT_MAGIC, hdr, ANDR_BOOT_MAGIC_SIZE);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500342}
343
Safae Ouajihe0581762023-02-06 00:50:11 +0100344ulong android_image_get_end(const struct andr_boot_img_hdr_v0 *hdr,
345 const void *vendor_boot_img)
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500346{
Safae Ouajih607b0752023-02-06 00:50:08 +0100347 struct andr_image_data img_data;
Sam Protsenkobb633632019-08-15 20:25:07 +0300348
Safae Ouajihe0581762023-02-06 00:50:11 +0100349 if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
Safae Ouajih607b0752023-02-06 00:50:08 +0100350 return -EINVAL;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500351
Safae Ouajih607b0752023-02-06 00:50:08 +0100352 if (img_data.header_version > 2)
353 return 0;
Sam Protsenkobb633632019-08-15 20:25:07 +0300354
Safae Ouajih607b0752023-02-06 00:50:08 +0100355 return img_data.boot_img_total_size;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500356}
357
Safae Ouajih636da202023-02-06 00:50:17 +0100358ulong android_image_get_kload(const void *hdr,
Safae Ouajihe0581762023-02-06 00:50:11 +0100359 const void *vendor_boot_img)
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500360{
Safae Ouajih607b0752023-02-06 00:50:08 +0100361 struct andr_image_data img_data;
362
Safae Ouajihe0581762023-02-06 00:50:11 +0100363 if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
Safae Ouajih607b0752023-02-06 00:50:08 +0100364 return -EINVAL;
365
366 return android_image_get_kernel_addr(&img_data);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500367}
368
Safae Ouajih636da202023-02-06 00:50:17 +0100369ulong android_image_get_kcomp(const void *hdr,
Safae Ouajihe0581762023-02-06 00:50:11 +0100370 const void *vendor_boot_img)
Eugeniu Rosca829ceb22019-04-08 17:35:27 +0200371{
Safae Ouajihf48efa02023-02-06 00:50:07 +0100372 struct andr_image_data img_data;
373 const void *p;
Eugeniu Rosca829ceb22019-04-08 17:35:27 +0200374
Safae Ouajihe0581762023-02-06 00:50:11 +0100375 if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
Safae Ouajihf48efa02023-02-06 00:50:07 +0100376 return -EINVAL;
377
378 p = (const void *)img_data.kernel_ptr;
Simon Glassf3543e62022-09-06 20:26:52 -0600379 if (image_get_magic((struct legacy_img_hdr *)p) == IH_MAGIC)
380 return image_get_comp((struct legacy_img_hdr *)p);
Roman Stratiienko39f790b2019-06-03 15:38:13 +0300381 else if (get_unaligned_le32(p) == LZ4F_MAGIC)
Eugeniu Rosca829ceb22019-04-08 17:35:27 +0200382 return IH_COMP_LZ4;
383 else
Stephan Gerholdbc599042021-07-01 20:33:16 +0200384 return image_decomp_type(p, sizeof(u32));
Eugeniu Rosca829ceb22019-04-08 17:35:27 +0200385}
386
Safae Ouajihc79a2e62023-02-06 00:50:13 +0100387int android_image_get_ramdisk(const void *hdr, const void *vendor_boot_img,
388 ulong *rd_data, ulong *rd_len)
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500389{
Safae Ouajih607b0752023-02-06 00:50:08 +0100390 struct andr_image_data img_data = {0};
Safae Ouajihc79a2e62023-02-06 00:50:13 +0100391 ulong ramdisk_ptr;
Safae Ouajih607b0752023-02-06 00:50:08 +0100392
Safae Ouajihe0581762023-02-06 00:50:11 +0100393 if (!android_image_get_data(hdr, vendor_boot_img, &img_data))
Safae Ouajih607b0752023-02-06 00:50:08 +0100394 return -EINVAL;
395
396 if (!img_data.ramdisk_size) {
Rob Herring99500982015-10-05 14:37:07 -0500397 *rd_data = *rd_len = 0;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500398 return -1;
Rob Herring99500982015-10-05 14:37:07 -0500399 }
Safae Ouajihc79a2e62023-02-06 00:50:13 +0100400 if (img_data.header_version > 2) {
Roman Stratiienkoda3447d2024-05-19 13:09:51 +0000401 ramdisk_ptr = img_data.ramdisk_addr;
Safae Ouajihc79a2e62023-02-06 00:50:13 +0100402 memcpy((void *)(ramdisk_ptr), (void *)img_data.vendor_ramdisk_ptr,
403 img_data.vendor_ramdisk_size);
Roman Stratiienkoda3447d2024-05-19 13:09:51 +0000404 ramdisk_ptr += img_data.vendor_ramdisk_size;
405 memcpy((void *)(ramdisk_ptr), (void *)img_data.ramdisk_ptr,
Safae Ouajih57e405e2023-02-06 00:50:18 +0100406 img_data.boot_ramdisk_size);
Roman Stratiienkoda3447d2024-05-19 13:09:51 +0000407 ramdisk_ptr += img_data.boot_ramdisk_size;
Safae Ouajih57e405e2023-02-06 00:50:18 +0100408 if (img_data.bootconfig_size) {
409 memcpy((void *)
Roman Stratiienkoda3447d2024-05-19 13:09:51 +0000410 (ramdisk_ptr), (void *)img_data.bootconfig_addr,
Safae Ouajih57e405e2023-02-06 00:50:18 +0100411 img_data.bootconfig_size);
412 }
Safae Ouajihc79a2e62023-02-06 00:50:13 +0100413 }
Ahmad Draidi86f46952014-10-23 20:50:07 +0300414
Safae Ouajih607b0752023-02-06 00:50:08 +0100415 printf("RAM disk load addr 0x%08lx size %u KiB\n",
Roman Stratiienkoda3447d2024-05-19 13:09:51 +0000416 img_data.ramdisk_addr, DIV_ROUND_UP(img_data.ramdisk_size, 1024));
Ahmad Draidi86f46952014-10-23 20:50:07 +0300417
Roman Stratiienkoda3447d2024-05-19 13:09:51 +0000418 *rd_data = img_data.ramdisk_addr;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500419
Safae Ouajih607b0752023-02-06 00:50:08 +0100420 *rd_len = img_data.ramdisk_size;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500421 return 0;
422}
Michael Trimarchi4f1318b2016-06-10 19:54:37 +0200423
Safae Ouajih636da202023-02-06 00:50:17 +0100424int android_image_get_second(const void *hdr, ulong *second_data, ulong *second_len)
Bin Chen10481612018-01-27 16:59:08 +1100425{
Safae Ouajih607b0752023-02-06 00:50:08 +0100426 struct andr_image_data img_data;
427
Safae Ouajihe0581762023-02-06 00:50:11 +0100428 if (!android_image_get_data(hdr, NULL, &img_data))
Safae Ouajih607b0752023-02-06 00:50:08 +0100429 return -EINVAL;
430
Safae Ouajih636da202023-02-06 00:50:17 +0100431 if (img_data.header_version > 2) {
432 printf("Second stage bootloader is only supported for boot image version <= 2\n");
433 return -EOPNOTSUPP;
434 }
435
Safae Ouajih607b0752023-02-06 00:50:08 +0100436 if (!img_data.second_size) {
Bin Chen10481612018-01-27 16:59:08 +1100437 *second_data = *second_len = 0;
438 return -1;
439 }
440
Safae Ouajih607b0752023-02-06 00:50:08 +0100441 *second_data = img_data.second_ptr;
Bin Chen10481612018-01-27 16:59:08 +1100442
443 printf("second address is 0x%lx\n",*second_data);
444
Safae Ouajih607b0752023-02-06 00:50:08 +0100445 *second_len = img_data.second_size;
Bin Chen10481612018-01-27 16:59:08 +1100446 return 0;
447}
448
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200449/**
Sam Protsenko7f253152020-01-24 17:53:41 +0200450 * android_image_get_dtbo() - Get address and size of recovery DTBO image.
451 * @hdr_addr: Boot image header address
452 * @addr: If not NULL, will contain address of recovery DTBO image
453 * @size: If not NULL, will contain size of recovery DTBO image
454 *
455 * Get the address and size of DTBO image in "Recovery DTBO" area of Android
456 * Boot Image in RAM. The format of this image is Android DTBO (see
457 * corresponding "DTB/DTBO Partitions" AOSP documentation for details). Once
458 * the address is obtained from this function, one can use 'adtimg' U-Boot
459 * command or android_dt_*() functions to extract desired DTBO blob.
460 *
461 * This DTBO (included in boot image) is only needed for non-A/B devices, and it
462 * only can be found in recovery image. On A/B devices we can always rely on
463 * "dtbo" partition. See "Including DTBO in Recovery for Non-A/B Devices" in
464 * AOSP documentation for details.
465 *
466 * Return: true on success or false on error.
467 */
468bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size)
469{
Safae Ouajihd71a7322023-02-06 00:50:03 +0100470 const struct andr_boot_img_hdr_v0 *hdr;
Sam Protsenko7f253152020-01-24 17:53:41 +0200471 ulong dtbo_img_addr;
472 bool ret = true;
473
474 hdr = map_sysmem(hdr_addr, sizeof(*hdr));
Safae Ouajih734cb472023-02-06 00:50:05 +0100475 if (!is_android_boot_image_header(hdr)) {
Sam Protsenko7f253152020-01-24 17:53:41 +0200476 printf("Error: Boot Image header is incorrect\n");
477 ret = false;
478 goto exit;
479 }
480
Safae Ouajih447240e2023-02-06 00:50:10 +0100481 if (hdr->header_version != 1 && hdr->header_version != 2) {
482 printf("Error: header version must be >= 1 and <= 2 to get dtbo\n");
Sam Protsenko7f253152020-01-24 17:53:41 +0200483 ret = false;
484 goto exit;
485 }
486
487 if (hdr->recovery_dtbo_size == 0) {
488 printf("Error: recovery_dtbo_size is 0\n");
489 ret = false;
490 goto exit;
491 }
492
493 /* Calculate the address of DTB area in boot image */
494 dtbo_img_addr = hdr_addr;
495 dtbo_img_addr += hdr->page_size;
496 dtbo_img_addr += ALIGN(hdr->kernel_size, hdr->page_size);
497 dtbo_img_addr += ALIGN(hdr->ramdisk_size, hdr->page_size);
498 dtbo_img_addr += ALIGN(hdr->second_size, hdr->page_size);
499
500 if (addr)
501 *addr = dtbo_img_addr;
502 if (size)
503 *size = hdr->recovery_dtbo_size;
504
505exit:
506 unmap_sysmem(hdr);
507 return ret;
508}
509
510/**
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200511 * android_image_get_dtb_img_addr() - Get the address of DTB area in boot image.
512 * @hdr_addr: Boot image header address
Safae Ouajihe0581762023-02-06 00:50:11 +0100513 * @vhdr_addr: Vendor Boot image header address
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200514 * @addr: Will contain the address of DTB area in boot image
515 *
516 * Return: true on success or false on fail.
517 */
Safae Ouajihe0581762023-02-06 00:50:11 +0100518static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong vhdr_addr, ulong *addr)
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200519{
Safae Ouajihd71a7322023-02-06 00:50:03 +0100520 const struct andr_boot_img_hdr_v0 *hdr;
Safae Ouajih2d0da192023-02-06 00:50:15 +0100521 const struct andr_vnd_boot_img_hdr *v_hdr;
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200522 ulong dtb_img_addr;
523 bool ret = true;
524
525 hdr = map_sysmem(hdr_addr, sizeof(*hdr));
Safae Ouajih734cb472023-02-06 00:50:05 +0100526 if (!is_android_boot_image_header(hdr)) {
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200527 printf("Error: Boot Image header is incorrect\n");
528 ret = false;
529 goto exit;
530 }
531
532 if (hdr->header_version < 2) {
533 printf("Error: header_version must be >= 2 to get dtb\n");
534 ret = false;
535 goto exit;
536 }
537
Safae Ouajih2d0da192023-02-06 00:50:15 +0100538 if (hdr->header_version == 2) {
539 if (!hdr->dtb_size) {
540 printf("Error: dtb_size is 0\n");
541 ret = false;
542 goto exit;
543 }
544 /* Calculate the address of DTB area in boot image */
545 dtb_img_addr = hdr_addr;
546 dtb_img_addr += hdr->page_size;
547 dtb_img_addr += ALIGN(hdr->kernel_size, hdr->page_size);
548 dtb_img_addr += ALIGN(hdr->ramdisk_size, hdr->page_size);
549 dtb_img_addr += ALIGN(hdr->second_size, hdr->page_size);
550 dtb_img_addr += ALIGN(hdr->recovery_dtbo_size, hdr->page_size);
551
552 *addr = dtb_img_addr;
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200553 }
554
Safae Ouajih2d0da192023-02-06 00:50:15 +0100555 if (hdr->header_version > 2) {
556 v_hdr = map_sysmem(vhdr_addr, sizeof(*v_hdr));
557 if (!v_hdr->dtb_size) {
558 printf("Error: dtb_size is 0\n");
559 ret = false;
560 unmap_sysmem(v_hdr);
561 goto exit;
562 }
563 /* Calculate the address of DTB area in boot image */
564 dtb_img_addr = vhdr_addr;
565 dtb_img_addr += v_hdr->page_size;
566 if (v_hdr->vendor_ramdisk_size)
567 dtb_img_addr += ALIGN(v_hdr->vendor_ramdisk_size, v_hdr->page_size);
568 *addr = dtb_img_addr;
569 unmap_sysmem(v_hdr);
570 goto exit;
571 }
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200572exit:
573 unmap_sysmem(hdr);
574 return ret;
575}
576
577/**
578 * android_image_get_dtb_by_index() - Get address and size of blob in DTB area.
579 * @hdr_addr: Boot image header address
Safae Ouajihe0581762023-02-06 00:50:11 +0100580 * @vendor_boot_img: Pointer to vendor boot image header, which is at the start of the image.
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200581 * @index: Index of desired DTB in DTB area (starting from 0)
582 * @addr: If not NULL, will contain address to specified DTB
583 * @size: If not NULL, will contain size of specified DTB
584 *
585 * Get the address and size of DTB blob by its index in DTB area of Android
586 * Boot Image in RAM.
587 *
588 * Return: true on success or false on error.
589 */
Safae Ouajihe0581762023-02-06 00:50:11 +0100590bool android_image_get_dtb_by_index(ulong hdr_addr, ulong vendor_boot_img,
591 u32 index, ulong *addr, u32 *size)
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200592{
Safae Ouajih607b0752023-02-06 00:50:08 +0100593 struct andr_image_data img_data;
Safae Ouajihd71a7322023-02-06 00:50:03 +0100594 const struct andr_boot_img_hdr_v0 *hdr;
Safae Ouajihe0581762023-02-06 00:50:11 +0100595 const struct andr_vnd_boot_img_hdr *vhdr;
Safae Ouajih607b0752023-02-06 00:50:08 +0100596
597 hdr = map_sysmem(hdr_addr, sizeof(*hdr));
Safae Ouajihe0581762023-02-06 00:50:11 +0100598 if (vendor_boot_img != -1)
599 vhdr = map_sysmem(vendor_boot_img, sizeof(*vhdr));
600 if (!android_image_get_data(hdr, vhdr, &img_data)) {
601 if (vendor_boot_img != -1)
602 unmap_sysmem(vhdr);
Safae Ouajih607b0752023-02-06 00:50:08 +0100603 unmap_sysmem(hdr);
604 return false;
605 }
Safae Ouajihe0581762023-02-06 00:50:11 +0100606 if (vendor_boot_img != -1)
607 unmap_sysmem(vhdr);
Safae Ouajih607b0752023-02-06 00:50:08 +0100608 unmap_sysmem(hdr);
609
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200610 ulong dtb_img_addr; /* address of DTB part in boot image */
611 u32 dtb_img_size; /* size of DTB payload in boot image */
612 ulong dtb_addr; /* address of DTB blob with specified index */
613 u32 i; /* index iterator */
614
Safae Ouajihe0581762023-02-06 00:50:11 +0100615 android_image_get_dtb_img_addr(hdr_addr, vendor_boot_img, &dtb_img_addr);
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200616 /* Check if DTB area of boot image is in DTBO format */
617 if (android_dt_check_header(dtb_img_addr)) {
618 return android_dt_get_fdt_by_index(dtb_img_addr, index, addr,
619 size);
620 }
621
622 /* Find out the address of DTB with specified index in concat blobs */
Safae Ouajih607b0752023-02-06 00:50:08 +0100623 dtb_img_size = img_data.dtb_size;
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200624 i = 0;
625 dtb_addr = dtb_img_addr;
626 while (dtb_addr < dtb_img_addr + dtb_img_size) {
627 const struct fdt_header *fdt;
628 u32 dtb_size;
629
630 fdt = map_sysmem(dtb_addr, sizeof(*fdt));
631 if (fdt_check_header(fdt) != 0) {
632 unmap_sysmem(fdt);
633 printf("Error: Invalid FDT header for index %u\n", i);
634 return false;
635 }
636
637 dtb_size = fdt_totalsize(fdt);
638 unmap_sysmem(fdt);
639
640 if (i == index) {
641 if (size)
642 *size = dtb_size;
643 if (addr)
644 *addr = dtb_addr;
645 return true;
646 }
647
648 dtb_addr += dtb_size;
649 ++i;
650 }
651
652 printf("Error: Index is out of bounds (%u/%u)\n", index, i);
653 return false;
654}
655
Michael Trimarchi4f1318b2016-06-10 19:54:37 +0200656#if !defined(CONFIG_SPL_BUILD)
657/**
658 * android_print_contents - prints out the contents of the Android format image
659 * @hdr: pointer to the Android format image header
660 *
661 * android_print_contents() formats a multi line Android image contents
662 * description.
663 * The routine prints out Android image properties
664 *
665 * returns:
666 * no returned results
667 */
Safae Ouajihd71a7322023-02-06 00:50:03 +0100668void android_print_contents(const struct andr_boot_img_hdr_v0 *hdr)
Michael Trimarchi4f1318b2016-06-10 19:54:37 +0200669{
Safae Ouajihbb5d6922023-02-06 00:50:09 +0100670 if (hdr->header_version >= 3) {
671 printf("Content print is not supported for boot image header version > 2");
672 return;
673 }
Michael Trimarchi4f1318b2016-06-10 19:54:37 +0200674 const char * const p = IMAGE_INDENT_STRING;
Alex Deymo210a7172017-04-02 01:49:47 -0700675 /* os_version = ver << 11 | lvl */
676 u32 os_ver = hdr->os_version >> 11;
677 u32 os_lvl = hdr->os_version & ((1U << 11) - 1);
Michael Trimarchi4f1318b2016-06-10 19:54:37 +0200678
Sam Protsenkobb633632019-08-15 20:25:07 +0300679 printf("%skernel size: %x\n", p, hdr->kernel_size);
680 printf("%skernel address: %x\n", p, hdr->kernel_addr);
681 printf("%sramdisk size: %x\n", p, hdr->ramdisk_size);
682 printf("%sramdisk address: %x\n", p, hdr->ramdisk_addr);
683 printf("%ssecond size: %x\n", p, hdr->second_size);
684 printf("%ssecond address: %x\n", p, hdr->second_addr);
685 printf("%stags address: %x\n", p, hdr->tags_addr);
686 printf("%spage size: %x\n", p, hdr->page_size);
Alex Deymo210a7172017-04-02 01:49:47 -0700687 /* ver = A << 14 | B << 7 | C (7 bits for each of A, B, C)
688 * lvl = ((Y - 2000) & 127) << 4 | M (7 bits for Y, 4 bits for M) */
Sam Protsenkobb633632019-08-15 20:25:07 +0300689 printf("%sos_version: %x (ver: %u.%u.%u, level: %u.%u)\n",
Alex Deymo210a7172017-04-02 01:49:47 -0700690 p, hdr->os_version,
691 (os_ver >> 7) & 0x7F, (os_ver >> 14) & 0x7F, os_ver & 0x7F,
692 (os_lvl >> 4) + 2000, os_lvl & 0x0F);
Sam Protsenkobb633632019-08-15 20:25:07 +0300693 printf("%sname: %s\n", p, hdr->name);
694 printf("%scmdline: %s\n", p, hdr->cmdline);
695 printf("%sheader_version: %d\n", p, hdr->header_version);
696
697 if (hdr->header_version >= 1) {
698 printf("%srecovery dtbo size: %x\n", p,
699 hdr->recovery_dtbo_size);
700 printf("%srecovery dtbo offset: %llx\n", p,
701 hdr->recovery_dtbo_offset);
702 printf("%sheader size: %x\n", p,
703 hdr->header_size);
704 }
705
Safae Ouajihbb5d6922023-02-06 00:50:09 +0100706 if (hdr->header_version == 2) {
Sam Protsenkobb633632019-08-15 20:25:07 +0300707 printf("%sdtb size: %x\n", p, hdr->dtb_size);
708 printf("%sdtb addr: %llx\n", p, hdr->dtb_addr);
709 }
Michael Trimarchi4f1318b2016-06-10 19:54:37 +0200710}
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200711
712/**
713 * android_image_print_dtb_info - Print info for one DTB blob in DTB area.
714 * @fdt: DTB header
715 * @index: Number of DTB blob in DTB area.
716 *
717 * Return: true on success or false on error.
718 */
719static bool android_image_print_dtb_info(const struct fdt_header *fdt,
720 u32 index)
721{
722 int root_node_off;
723 u32 fdt_size;
724 const char *model;
725 const char *compatible;
726
727 root_node_off = fdt_path_offset(fdt, "/");
728 if (root_node_off < 0) {
729 printf("Error: Root node not found\n");
730 return false;
731 }
732
733 fdt_size = fdt_totalsize(fdt);
734 compatible = fdt_getprop(fdt, root_node_off, "compatible",
735 NULL);
736 model = fdt_getprop(fdt, root_node_off, "model", NULL);
737
738 printf(" - DTB #%u:\n", index);
739 printf(" (DTB)size = %d\n", fdt_size);
740 printf(" (DTB)model = %s\n", model ? model : "(unknown)");
741 printf(" (DTB)compatible = %s\n",
742 compatible ? compatible : "(unknown)");
743
744 return true;
745}
746
747/**
748 * android_image_print_dtb_contents() - Print info for DTB blobs in DTB area.
749 * @hdr_addr: Boot image header address
750 *
751 * DTB payload in Android Boot Image v2+ can be in one of following formats:
752 * 1. Concatenated DTB blobs
753 * 2. Android DTBO format (see CONFIG_CMD_ADTIMG for details)
754 *
755 * This function does next:
756 * 1. Prints out the format used in DTB area
757 * 2. Iterates over all DTB blobs in DTB area and prints out the info for
758 * each blob.
759 *
760 * Return: true on success or false on error.
761 */
762bool android_image_print_dtb_contents(ulong hdr_addr)
763{
Safae Ouajihd71a7322023-02-06 00:50:03 +0100764 const struct andr_boot_img_hdr_v0 *hdr;
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200765 bool res;
766 ulong dtb_img_addr; /* address of DTB part in boot image */
767 u32 dtb_img_size; /* size of DTB payload in boot image */
768 ulong dtb_addr; /* address of DTB blob with specified index */
769 u32 i; /* index iterator */
770
Safae Ouajihe0581762023-02-06 00:50:11 +0100771 res = android_image_get_dtb_img_addr(hdr_addr, 0, &dtb_img_addr);
Sam Protsenkoc3bfad82020-01-24 17:53:40 +0200772 if (!res)
773 return false;
774
775 /* Check if DTB area of boot image is in DTBO format */
776 if (android_dt_check_header(dtb_img_addr)) {
777 printf("## DTB area contents (DTBO format):\n");
778 android_dt_print_contents(dtb_img_addr);
779 return true;
780 }
781
782 printf("## DTB area contents (concat format):\n");
783
784 /* Iterate over concatenated DTB blobs */
785 hdr = map_sysmem(hdr_addr, sizeof(*hdr));
786 dtb_img_size = hdr->dtb_size;
787 unmap_sysmem(hdr);
788 i = 0;
789 dtb_addr = dtb_img_addr;
790 while (dtb_addr < dtb_img_addr + dtb_img_size) {
791 const struct fdt_header *fdt;
792 u32 dtb_size;
793
794 fdt = map_sysmem(dtb_addr, sizeof(*fdt));
795 if (fdt_check_header(fdt) != 0) {
796 unmap_sysmem(fdt);
797 printf("Error: Invalid FDT header for index %u\n", i);
798 return false;
799 }
800
801 res = android_image_print_dtb_info(fdt, i);
802 if (!res) {
803 unmap_sysmem(fdt);
804 return false;
805 }
806
807 dtb_size = fdt_totalsize(fdt);
808 unmap_sysmem(fdt);
809 dtb_addr += dtb_size;
810 ++i;
811 }
812
813 return true;
814}
Michael Trimarchi4f1318b2016-06-10 19:54:37 +0200815#endif