]>
Commit | Line | Data |
---|---|---|
f739fcd8 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
b9939336 AG |
2 | /* |
3 | * EFI application loader | |
4 | * | |
5 | * Copyright (c) 2016 Alexander Graf | |
b9939336 AG |
6 | */ |
7 | ||
c0018374 HS |
8 | #define LOG_CATEGORY LOGC_EFI |
9 | ||
b9939336 | 10 | #include <common.h> |
82d01f04 | 11 | #include <bootm.h> |
f6c6df7e | 12 | #include <charset.h> |
b9939336 | 13 | #include <command.h> |
9d922450 | 14 | #include <dm.h> |
b9939336 | 15 | #include <efi_loader.h> |
d78e40d6 | 16 | #include <efi_selftest.h> |
7b51b576 | 17 | #include <env.h> |
b9939336 | 18 | #include <errno.h> |
4d72caa5 | 19 | #include <image.h> |
c0018374 | 20 | #include <log.h> |
336d4615 | 21 | #include <malloc.h> |
401d1c4f | 22 | #include <asm/global_data.h> |
b08c8c48 MY |
23 | #include <linux/libfdt.h> |
24 | #include <linux/libfdt_env.h> | |
354264b3 | 25 | #include <mapmem.h> |
ad0c1a3d | 26 | #include <memalign.h> |
e275458c SG |
27 | #include <asm-generic/sections.h> |
28 | #include <linux/linkage.h> | |
0d9d501f AG |
29 | |
30 | DECLARE_GLOBAL_DATA_PTR; | |
b9939336 | 31 | |
95c5553e RC |
32 | static struct efi_device_path *bootefi_image_path; |
33 | static struct efi_device_path *bootefi_device_path; | |
5f59518a HS |
34 | static void *image_addr; |
35 | static size_t image_size; | |
36 | ||
bfef72e4 RMS |
37 | /** |
38 | * efi_get_image_parameters() - return image parameters | |
39 | * | |
40 | * @img_addr: address of loaded image in memory | |
41 | * @img_size: size of loaded image | |
42 | */ | |
43 | void efi_get_image_parameters(void **img_addr, size_t *img_size) | |
44 | { | |
45 | *img_addr = image_addr; | |
46 | *img_size = image_size; | |
47 | } | |
48 | ||
5f59518a HS |
49 | /** |
50 | * efi_clear_bootdev() - clear boot device | |
51 | */ | |
52 | static void efi_clear_bootdev(void) | |
53 | { | |
54 | efi_free_pool(bootefi_device_path); | |
55 | efi_free_pool(bootefi_image_path); | |
56 | bootefi_device_path = NULL; | |
57 | bootefi_image_path = NULL; | |
58 | image_addr = NULL; | |
59 | image_size = 0; | |
60 | } | |
61 | ||
62 | /** | |
63 | * efi_set_bootdev() - set boot device | |
64 | * | |
65 | * This function is called when a file is loaded, e.g. via the 'load' command. | |
66 | * We use the path to this file to inform the UEFI binary about the boot device. | |
67 | * | |
68 | * @dev: device, e.g. "MMC" | |
69 | * @devnr: number of the device, e.g. "1:2" | |
70 | * @path: path to file loaded | |
71 | * @buffer: buffer with file loaded | |
72 | * @buffer_size: size of file loaded | |
73 | */ | |
74 | void efi_set_bootdev(const char *dev, const char *devnr, const char *path, | |
75 | void *buffer, size_t buffer_size) | |
76 | { | |
77 | struct efi_device_path *device, *image; | |
78 | efi_status_t ret; | |
79 | ||
d837cb1e SG |
80 | log_debug("dev=%s, devnr=%s, path=%s, buffer=%p, size=%zx\n", dev, |
81 | devnr, path, buffer, buffer_size); | |
82 | ||
5f59518a HS |
83 | /* Forget overwritten image */ |
84 | if (buffer + buffer_size >= image_addr && | |
85 | image_addr + image_size >= buffer) | |
86 | efi_clear_bootdev(); | |
87 | ||
88 | /* Remember only PE-COFF and FIT images */ | |
89 | if (efi_check_pe(buffer, buffer_size, NULL) != EFI_SUCCESS) { | |
d837cb1e SG |
90 | if (IS_ENABLED(CONFIG_FIT) && |
91 | !fit_check_format(buffer, IMAGE_SIZE_INVAL)) { | |
92 | /* | |
93 | * FIT images of type EFI_OS are started via command | |
94 | * bootm. We should not use their boot device with the | |
95 | * bootefi command. | |
96 | */ | |
97 | buffer = 0; | |
98 | buffer_size = 0; | |
99 | } else { | |
100 | log_debug("- not remembering image\n"); | |
5f59518a | 101 | return; |
d837cb1e | 102 | } |
5f59518a HS |
103 | } |
104 | ||
105 | /* efi_set_bootdev() is typically called repeatedly, recover memory */ | |
106 | efi_clear_bootdev(); | |
107 | ||
108 | image_addr = buffer; | |
109 | image_size = buffer_size; | |
110 | ||
111 | ret = efi_dp_from_name(dev, devnr, path, &device, &image); | |
112 | if (ret == EFI_SUCCESS) { | |
113 | bootefi_device_path = device; | |
114 | if (image) { | |
115 | /* FIXME: image should not contain device */ | |
116 | struct efi_device_path *image_tmp = image; | |
117 | ||
118 | efi_dp_split_file_path(image, &device, &image); | |
119 | efi_free_pool(image_tmp); | |
120 | } | |
121 | bootefi_image_path = image; | |
868353da | 122 | log_debug("- boot device %pD\n", device); |
d837cb1e | 123 | if (image) |
868353da | 124 | log_debug("- image %pD\n", image); |
5f59518a | 125 | } else { |
d837cb1e | 126 | log_debug("- efi_dp_from_name() failed, err=%lx\n", ret); |
5f59518a HS |
127 | efi_clear_bootdev(); |
128 | } | |
129 | } | |
b9939336 | 130 | |
810371a0 | 131 | /** |
1064d049 | 132 | * efi_env_set_load_options() - set load options from environment variable |
d78e40d6 | 133 | * |
a3850e40 HS |
134 | * @handle: the image handle |
135 | * @env_var: name of the environment variable | |
136 | * @load_options: pointer to load options (output) | |
137 | * Return: status code | |
d78e40d6 | 138 | */ |
1064d049 HS |
139 | static efi_status_t efi_env_set_load_options(efi_handle_t handle, |
140 | const char *env_var, | |
141 | u16 **load_options) | |
d78e40d6 | 142 | { |
d78e40d6 | 143 | const char *env = env_get(env_var); |
1064d049 | 144 | size_t size; |
7086a71a | 145 | u16 *pos; |
defa7b8e AT |
146 | efi_status_t ret; |
147 | ||
a3850e40 | 148 | *load_options = NULL; |
d78e40d6 | 149 | if (!env) |
1064d049 HS |
150 | return EFI_SUCCESS; |
151 | size = sizeof(u16) * (utf8_utf16_strlen(env) + 1); | |
152 | pos = calloc(size, 1); | |
153 | if (!pos) | |
defa7b8e | 154 | return EFI_OUT_OF_RESOURCES; |
a3850e40 | 155 | *load_options = pos; |
7086a71a | 156 | utf8_utf16_strcpy(&pos, env); |
1064d049 HS |
157 | ret = efi_set_load_options(handle, size, *load_options); |
158 | if (ret != EFI_SUCCESS) { | |
159 | free(*load_options); | |
160 | *load_options = NULL; | |
161 | } | |
162 | return ret; | |
d78e40d6 HS |
163 | } |
164 | ||
6182495e HS |
165 | #if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) |
166 | ||
9dff4900 SG |
167 | /** |
168 | * copy_fdt() - Copy the device tree to a new location available to EFI | |
169 | * | |
16b615d9 | 170 | * The FDT is copied to a suitable location within the EFI memory map. |
c3772ca1 | 171 | * Additional 12 KiB are added to the space in case the device tree needs to be |
9dff4900 SG |
172 | * expanded later with fdt_open_into(). |
173 | * | |
16b615d9 HS |
174 | * @fdtp: On entry a pointer to the flattened device tree. |
175 | * On exit a pointer to the copy of the flattened device tree. | |
4574d1b3 HS |
176 | * FDT start |
177 | * Return: status code | |
9dff4900 | 178 | */ |
16b615d9 | 179 | static efi_status_t copy_fdt(void **fdtp) |
0d9d501f | 180 | { |
ad0c1a3d | 181 | unsigned long fdt_ram_start = -1L, fdt_pages; |
9dff4900 SG |
182 | efi_status_t ret = 0; |
183 | void *fdt, *new_fdt; | |
ad0c1a3d | 184 | u64 new_fdt_addr; |
9dff4900 | 185 | uint fdt_size; |
ad0c1a3d | 186 | int i; |
0d9d501f | 187 | |
9dff4900 SG |
188 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
189 | u64 ram_start = gd->bd->bi_dram[i].start; | |
190 | u64 ram_size = gd->bd->bi_dram[i].size; | |
0d9d501f | 191 | |
ad0c1a3d AG |
192 | if (!ram_size) |
193 | continue; | |
194 | ||
195 | if (ram_start < fdt_ram_start) | |
196 | fdt_ram_start = ram_start; | |
197 | } | |
198 | ||
bc9a638a | 199 | /* |
c3772ca1 HS |
200 | * Give us at least 12 KiB of breathing room in case the device tree |
201 | * needs to be expanded later. | |
bc9a638a | 202 | */ |
16b615d9 | 203 | fdt = *fdtp; |
c3772ca1 HS |
204 | fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000); |
205 | fdt_size = fdt_pages << EFI_PAGE_SHIFT; | |
ad0c1a3d | 206 | |
16b615d9 HS |
207 | /* |
208 | * Safe fdt location is at 127 MiB. | |
209 | * On the sandbox convert from the sandbox address space. | |
210 | */ | |
211 | new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 + | |
212 | fdt_size, 0); | |
9dff4900 | 213 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
42a426e0 | 214 | EFI_ACPI_RECLAIM_MEMORY, fdt_pages, |
9dff4900 SG |
215 | &new_fdt_addr); |
216 | if (ret != EFI_SUCCESS) { | |
ad0c1a3d | 217 | /* If we can't put it there, put it somewhere */ |
a44bffcc | 218 | new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size); |
9dff4900 | 219 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
42a426e0 | 220 | EFI_ACPI_RECLAIM_MEMORY, fdt_pages, |
9dff4900 SG |
221 | &new_fdt_addr); |
222 | if (ret != EFI_SUCCESS) { | |
c0018374 | 223 | log_err("ERROR: Failed to reserve space for FDT\n"); |
9dff4900 | 224 | goto done; |
85a6e9b3 | 225 | } |
ad0c1a3d | 226 | } |
16b615d9 | 227 | new_fdt = (void *)(uintptr_t)new_fdt_addr; |
0d9d501f AG |
228 | memcpy(new_fdt, fdt, fdt_totalsize(fdt)); |
229 | fdt_set_totalsize(new_fdt, fdt_size); | |
230 | ||
16b615d9 | 231 | *fdtp = (void *)(uintptr_t)new_fdt_addr; |
9dff4900 SG |
232 | done: |
233 | return ret; | |
0d9d501f AG |
234 | } |
235 | ||
6182495e HS |
236 | /** |
237 | * get_config_table() - get configuration table | |
238 | * | |
239 | * @guid: GUID of the configuration table | |
240 | * Return: pointer to configuration table or NULL | |
241 | */ | |
242 | static void *get_config_table(const efi_guid_t *guid) | |
243 | { | |
244 | size_t i; | |
245 | ||
246 | for (i = 0; i < systab.nr_tables; i++) { | |
247 | if (!guidcmp(guid, &systab.tables[i].guid)) | |
248 | return systab.tables[i].table; | |
249 | } | |
250 | return NULL; | |
251 | } | |
252 | ||
253 | #endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */ | |
254 | ||
e878e6a7 | 255 | /** |
7a597259 | 256 | * efi_install_fdt() - install device tree |
e2d82f8b | 257 | * |
7d4d551e HS |
258 | * If fdt is not EFI_FDT_USE_INTERNAL, the device tree located at that memory |
259 | * address will will be installed as configuration table, otherwise the device | |
260 | * tree located at the address indicated by environment variable fdt_addr or as | |
261 | * fallback fdtcontroladdr will be used. | |
e2d82f8b | 262 | * |
7a597259 HS |
263 | * On architectures using ACPI tables device trees shall not be installed as |
264 | * configuration table. | |
e2d82f8b | 265 | * |
7d4d551e | 266 | * @fdt: address of device tree or EFI_FDT_USE_INTERNAL to use the |
753aa18f HS |
267 | * the hardware device tree as indicated by environment variable |
268 | * fdt_addr or as fallback the internal device tree as indicated by | |
269 | * the environment variable fdtcontroladdr | |
e878e6a7 | 270 | * Return: status code |
e878e6a7 | 271 | */ |
f64f2232 | 272 | efi_status_t efi_install_fdt(void *fdt) |
e878e6a7 | 273 | { |
6182495e HS |
274 | /* |
275 | * The EBBR spec requires that we have either an FDT or an ACPI table | |
276 | * but not both. | |
277 | */ | |
278 | #if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) | |
f64f2232 | 279 | if (fdt) { |
0832dd29 AG |
280 | log_warning("WARNING: Can't have ACPI table and device tree - ignoring DT.\n"); |
281 | return EFI_SUCCESS; | |
6182495e HS |
282 | } |
283 | #else | |
d9d7c20b | 284 | struct bootm_headers img = { 0 }; |
e878e6a7 AT |
285 | efi_status_t ret; |
286 | ||
f64f2232 | 287 | if (fdt == EFI_FDT_USE_INTERNAL) { |
7a597259 | 288 | const char *fdt_opt; |
f64f2232 | 289 | uintptr_t fdt_addr; |
7a597259 | 290 | |
6182495e HS |
291 | /* Look for device tree that is already installed */ |
292 | if (get_config_table(&efi_guid_fdt)) | |
293 | return EFI_SUCCESS; | |
753aa18f HS |
294 | /* Check if there is a hardware device tree */ |
295 | fdt_opt = env_get("fdt_addr"); | |
296 | /* Use our own device tree as fallback */ | |
6182495e | 297 | if (!fdt_opt) { |
753aa18f HS |
298 | fdt_opt = env_get("fdtcontroladdr"); |
299 | if (!fdt_opt) { | |
c0018374 | 300 | log_err("ERROR: need device tree\n"); |
753aa18f HS |
301 | return EFI_NOT_FOUND; |
302 | } | |
6182495e | 303 | } |
7e5f460e | 304 | fdt_addr = hextoul(fdt_opt, NULL); |
6182495e | 305 | if (!fdt_addr) { |
c0018374 | 306 | log_err("ERROR: invalid $fdt_addr or $fdtcontroladdr\n"); |
6182495e | 307 | return EFI_LOAD_ERROR; |
3ffc52fd | 308 | } |
f64f2232 | 309 | fdt = map_sysmem(fdt_addr, 0); |
6182495e | 310 | } |
3ffc52fd | 311 | |
6182495e | 312 | /* Install device tree */ |
6182495e | 313 | if (fdt_check_header(fdt)) { |
c0018374 | 314 | log_err("ERROR: invalid device tree\n"); |
6182495e HS |
315 | return EFI_LOAD_ERROR; |
316 | } | |
3ffc52fd | 317 | |
6182495e HS |
318 | /* Prepare device tree for payload */ |
319 | ret = copy_fdt(&fdt); | |
320 | if (ret) { | |
c0018374 | 321 | log_err("ERROR: out of memory\n"); |
6182495e HS |
322 | return EFI_OUT_OF_RESOURCES; |
323 | } | |
3ffc52fd | 324 | |
6182495e | 325 | if (image_setup_libfdt(&img, fdt, 0, NULL)) { |
c0018374 | 326 | log_err("ERROR: failed to process device tree\n"); |
6182495e HS |
327 | return EFI_LOAD_ERROR; |
328 | } | |
329 | ||
fef907b2 HS |
330 | /* Create memory reservations as indicated by the device tree */ |
331 | efi_carve_out_dt_rsv(fdt); | |
332 | ||
a2f1482f IA |
333 | efi_try_purge_kaslr_seed(fdt); |
334 | ||
6182495e HS |
335 | /* Install device tree as UEFI table */ |
336 | ret = efi_install_configuration_table(&efi_guid_fdt, fdt); | |
337 | if (ret != EFI_SUCCESS) { | |
c0018374 | 338 | log_err("ERROR: failed to install device tree\n"); |
6182495e | 339 | return ret; |
e878e6a7 | 340 | } |
6182495e | 341 | #endif /* GENERATE_ACPI_TABLE */ |
e878e6a7 AT |
342 | |
343 | return EFI_SUCCESS; | |
344 | } | |
345 | ||
c982874e HS |
346 | /** |
347 | * do_bootefi_exec() - execute EFI binary | |
348 | * | |
72e1fcac HS |
349 | * The image indicated by @handle is started. When it returns the allocated |
350 | * memory for the @load_options is freed. | |
351 | * | |
6b95b38c | 352 | * @handle: handle of loaded image |
72e1fcac | 353 | * @load_options: load options |
c982874e HS |
354 | * Return: status code |
355 | * | |
356 | * Load the EFI binary into a newly assigned memory unwinding the relocation | |
357 | * information, install the loaded image protocol, and call the binary. | |
b9939336 | 358 | */ |
0ad64007 | 359 | static efi_status_t do_bootefi_exec(efi_handle_t handle, void *load_options) |
b9939336 | 360 | { |
45204b10 | 361 | efi_status_t ret; |
556d8dc9 HS |
362 | efi_uintn_t exit_data_size = 0; |
363 | u16 *exit_data = NULL; | |
bf19273e | 364 | |
82d01f04 HS |
365 | /* On ARM switch from EL3 or secure mode to EL2 or non-secure mode */ |
366 | switch_to_non_secure_mode(); | |
367 | ||
3fa9ed9a MK |
368 | /* |
369 | * The UEFI standard requires that the watchdog timer is set to five | |
370 | * minutes when invoking an EFI boot option. | |
371 | * | |
372 | * Unified Extensible Firmware Interface (UEFI), version 2.7 Errata A | |
373 | * 7.5. Miscellaneous Boot Services - EFI_BOOT_SERVICES.SetWatchdogTimer | |
374 | */ | |
375 | ret = efi_set_watchdog(300); | |
376 | if (ret != EFI_SUCCESS) { | |
377 | log_err("ERROR: Failed to set watchdog timer\n"); | |
378 | goto out; | |
379 | } | |
380 | ||
b9939336 | 381 | /* Call our payload! */ |
556d8dc9 | 382 | ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data)); |
c0018374 HS |
383 | if (ret != EFI_SUCCESS) { |
384 | log_err("## Application failed, r = %lu\n", | |
385 | ret & ~EFI_ERROR_MASK); | |
386 | if (exit_data) { | |
387 | log_err("## %ls\n", exit_data); | |
388 | efi_free_pool(exit_data); | |
389 | } | |
556d8dc9 | 390 | } |
95c5553e | 391 | |
3fc2b163 | 392 | efi_restore_gd(); |
5e2f0391 | 393 | |
3fa9ed9a | 394 | out: |
a3850e40 | 395 | free(load_options); |
95c5553e | 396 | |
70089c13 IA |
397 | if (IS_ENABLED(CONFIG_EFI_LOAD_FILE2_INITRD)) { |
398 | if (efi_initrd_deregister() != EFI_SUCCESS) | |
399 | log_err("Failed to remove loadfile2 for initrd\n"); | |
400 | } | |
53f6a5aa | 401 | |
3fa9ed9a MK |
402 | /* Control is returned to U-Boot, disable EFI watchdog */ |
403 | efi_set_watchdog(0); | |
404 | ||
95c5553e | 405 | return ret; |
b9939336 AG |
406 | } |
407 | ||
d6b21894 | 408 | /** |
7e92db81 | 409 | * do_efibootmgr() - execute EFI boot manager |
d6b21894 | 410 | * |
d6b21894 | 411 | * Return: status code |
d6b21894 | 412 | */ |
7e92db81 | 413 | static int do_efibootmgr(void) |
cc999d58 | 414 | { |
6b95b38c | 415 | efi_handle_t handle; |
d6b21894 | 416 | efi_status_t ret; |
0ad64007 | 417 | void *load_options; |
d6b21894 | 418 | |
0ad64007 | 419 | ret = efi_bootmgr_load(&handle, &load_options); |
6b95b38c | 420 | if (ret != EFI_SUCCESS) { |
c0018374 | 421 | log_notice("EFI boot manager: Cannot load any image\n"); |
6b95b38c AT |
422 | return CMD_RET_FAILURE; |
423 | } | |
cc999d58 | 424 | |
0ad64007 | 425 | ret = do_bootefi_exec(handle, load_options); |
cc999d58 | 426 | |
d6b21894 | 427 | if (ret != EFI_SUCCESS) |
6b95b38c | 428 | return CMD_RET_FAILURE; |
cc999d58 | 429 | |
6b95b38c | 430 | return CMD_RET_SUCCESS; |
cc999d58 AT |
431 | } |
432 | ||
810371a0 | 433 | /** |
7e92db81 HS |
434 | * do_bootefi_image() - execute EFI binary |
435 | * | |
436 | * Set up memory image for the binary to be loaded, prepare device path, and | |
437 | * then call do_bootefi_exec() to execute it. | |
e2e4098e | 438 | * |
20589836 KE |
439 | * @image_opt: string with image start address |
440 | * @size_opt: string with image size or NULL | |
e2e4098e | 441 | * Return: status code |
e2e4098e | 442 | */ |
20589836 | 443 | static int do_bootefi_image(const char *image_opt, const char *size_opt) |
e2e4098e | 444 | { |
6b95b38c | 445 | void *image_buf; |
6b95b38c | 446 | unsigned long addr, size; |
e2e4098e AT |
447 | efi_status_t ret; |
448 | ||
e2e4098e AT |
449 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
450 | if (!strcmp(image_opt, "hello")) { | |
bb33c79e | 451 | image_buf = __efi_helloworld_begin; |
6b95b38c | 452 | size = __efi_helloworld_end - __efi_helloworld_begin; |
5f59518a | 453 | efi_clear_bootdev(); |
e2e4098e AT |
454 | } else |
455 | #endif | |
456 | { | |
5f59518a | 457 | addr = strtoul(image_opt, NULL, 16); |
e2e4098e | 458 | /* Check that a numeric value was passed */ |
5f59518a | 459 | if (!addr) |
e2e4098e | 460 | return CMD_RET_USAGE; |
5f59518a HS |
461 | image_buf = map_sysmem(addr, 0); |
462 | ||
20589836 KE |
463 | if (size_opt) { |
464 | size = strtoul(size_opt, NULL, 16); | |
465 | if (!size) | |
466 | return CMD_RET_USAGE; | |
467 | efi_clear_bootdev(); | |
468 | } else { | |
469 | if (image_buf != image_addr) { | |
470 | log_err("No UEFI binary known at %s\n", | |
471 | image_opt); | |
472 | return CMD_RET_FAILURE; | |
473 | } | |
474 | size = image_size; | |
5f59518a | 475 | } |
e2e4098e | 476 | } |
f9ceb6ac HS |
477 | ret = efi_run_image(image_buf, size); |
478 | ||
479 | if (ret != EFI_SUCCESS) | |
480 | return CMD_RET_FAILURE; | |
481 | ||
482 | return CMD_RET_SUCCESS; | |
483 | } | |
484 | ||
485 | /** | |
486 | * efi_run_image() - run loaded UEFI image | |
487 | * | |
488 | * @source_buffer: memory address of the UEFI image | |
489 | * @source_size: size of the UEFI image | |
490 | * Return: status code | |
491 | */ | |
492 | efi_status_t efi_run_image(void *source_buffer, efi_uintn_t source_size) | |
493 | { | |
494 | efi_handle_t mem_handle = NULL, handle; | |
495 | struct efi_device_path *file_path = NULL; | |
c2f01039 | 496 | struct efi_device_path *msg_path; |
a75e8355 | 497 | efi_status_t ret, ret2; |
c2f01039 | 498 | u16 *load_options; |
e2e4098e | 499 | |
f9ceb6ac | 500 | if (!bootefi_device_path || !bootefi_image_path) { |
d837cb1e | 501 | log_debug("Not loaded from disk\n"); |
6b95b38c AT |
502 | /* |
503 | * Special case for efi payload not loaded from disk, | |
504 | * such as 'bootefi hello' or for example payload | |
505 | * loaded directly into memory via JTAG, etc: | |
506 | */ | |
507 | file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, | |
f9ceb6ac HS |
508 | (uintptr_t)source_buffer, |
509 | source_size); | |
6b95b38c AT |
510 | /* |
511 | * Make sure that device for device_path exist | |
512 | * in load_image(). Otherwise, shell and grub will fail. | |
513 | */ | |
a75e8355 IA |
514 | ret = efi_install_multiple_protocol_interfaces(&mem_handle, |
515 | &efi_guid_device_path, | |
516 | file_path, NULL); | |
6b95b38c AT |
517 | if (ret != EFI_SUCCESS) |
518 | goto out; | |
c2f01039 | 519 | msg_path = file_path; |
6b95b38c | 520 | } else { |
f9ceb6ac HS |
521 | file_path = efi_dp_append(bootefi_device_path, |
522 | bootefi_image_path); | |
c2f01039 | 523 | msg_path = bootefi_image_path; |
d837cb1e | 524 | log_debug("Loaded from disk\n"); |
6b95b38c AT |
525 | } |
526 | ||
c2f01039 HS |
527 | log_info("Booting %pD\n", msg_path); |
528 | ||
f9ceb6ac HS |
529 | ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer, |
530 | source_size, &handle)); | |
c2f01039 HS |
531 | if (ret != EFI_SUCCESS) { |
532 | log_err("Loading image failed\n"); | |
6b95b38c | 533 | goto out; |
c2f01039 | 534 | } |
0ad64007 HS |
535 | |
536 | /* Transfer environment variable as load options */ | |
537 | ret = efi_env_set_load_options(handle, "bootargs", &load_options); | |
538 | if (ret != EFI_SUCCESS) | |
539 | goto out; | |
540 | ||
541 | ret = do_bootefi_exec(handle, load_options); | |
6b95b38c AT |
542 | |
543 | out: | |
a75e8355 IA |
544 | ret2 = efi_uninstall_multiple_protocol_interfaces(mem_handle, |
545 | &efi_guid_device_path, | |
546 | file_path, NULL); | |
4fe050e6 | 547 | efi_free_pool(file_path); |
a75e8355 | 548 | return (ret != EFI_SUCCESS) ? ret : ret2; |
e2e4098e AT |
549 | } |
550 | ||
d9717eae | 551 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
3fc2b163 AT |
552 | static efi_status_t bootefi_run_prepare(const char *load_options_path, |
553 | struct efi_device_path *device_path, | |
554 | struct efi_device_path *image_path, | |
555 | struct efi_loaded_image_obj **image_objp, | |
556 | struct efi_loaded_image **loaded_image_infop) | |
557 | { | |
558 | efi_status_t ret; | |
a3850e40 | 559 | u16 *load_options; |
3fc2b163 AT |
560 | |
561 | ret = efi_setup_loaded_image(device_path, image_path, image_objp, | |
562 | loaded_image_infop); | |
563 | if (ret != EFI_SUCCESS) | |
564 | return ret; | |
565 | ||
566 | /* Transfer environment variable as load options */ | |
1064d049 HS |
567 | return efi_env_set_load_options((efi_handle_t)*image_objp, |
568 | load_options_path, | |
569 | &load_options); | |
3fc2b163 AT |
570 | } |
571 | ||
d9717eae SG |
572 | /** |
573 | * bootefi_test_prepare() - prepare to run an EFI test | |
574 | * | |
1504bb0d | 575 | * Prepare to run a test as if it were provided by a loaded image. |
d9717eae | 576 | * |
1504bb0d HS |
577 | * @image_objp: pointer to be set to the loaded image handle |
578 | * @loaded_image_infop: pointer to be set to the loaded image protocol | |
579 | * @path: dummy file path used to construct the device path | |
580 | * set in the loaded image protocol | |
581 | * @load_options_path: name of a U-Boot environment variable. Its value is | |
582 | * set as load options in the loaded image protocol. | |
583 | * Return: status code | |
d9717eae SG |
584 | */ |
585 | static efi_status_t bootefi_test_prepare | |
586 | (struct efi_loaded_image_obj **image_objp, | |
1504bb0d HS |
587 | struct efi_loaded_image **loaded_image_infop, const char *path, |
588 | const char *load_options_path) | |
d9717eae | 589 | { |
1504bb0d HS |
590 | efi_status_t ret; |
591 | ||
d9717eae | 592 | /* Construct a dummy device path */ |
1504bb0d | 593 | bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0); |
d9717eae SG |
594 | if (!bootefi_device_path) |
595 | return EFI_OUT_OF_RESOURCES; | |
1504bb0d | 596 | |
d9717eae | 597 | bootefi_image_path = efi_dp_from_file(NULL, 0, path); |
1504bb0d HS |
598 | if (!bootefi_image_path) { |
599 | ret = EFI_OUT_OF_RESOURCES; | |
600 | goto failure; | |
601 | } | |
602 | ||
603 | ret = bootefi_run_prepare(load_options_path, bootefi_device_path, | |
604 | bootefi_image_path, image_objp, | |
605 | loaded_image_infop); | |
606 | if (ret == EFI_SUCCESS) | |
607 | return ret; | |
d9717eae | 608 | |
1504bb0d | 609 | failure: |
5f59518a | 610 | efi_clear_bootdev(); |
1504bb0d | 611 | return ret; |
d9717eae SG |
612 | } |
613 | ||
3fc2b163 AT |
614 | /** |
615 | * bootefi_run_finish() - finish up after running an EFI test | |
616 | * | |
617 | * @loaded_image_info: Pointer to a struct which holds the loaded image info | |
618 | * @image_obj: Pointer to a struct which holds the loaded image object | |
619 | */ | |
620 | static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj, | |
621 | struct efi_loaded_image *loaded_image_info) | |
622 | { | |
623 | efi_restore_gd(); | |
624 | free(loaded_image_info->load_options); | |
625 | efi_delete_handle(&image_obj->header); | |
626 | } | |
627 | ||
628 | /** | |
7e92db81 | 629 | * do_efi_selftest() - execute EFI selftest |
3fc2b163 | 630 | * |
3fc2b163 | 631 | * Return: status code |
3fc2b163 | 632 | */ |
7e92db81 | 633 | static int do_efi_selftest(void) |
3fc2b163 AT |
634 | { |
635 | struct efi_loaded_image_obj *image_obj; | |
636 | struct efi_loaded_image *loaded_image_info; | |
637 | efi_status_t ret; | |
638 | ||
3fc2b163 AT |
639 | ret = bootefi_test_prepare(&image_obj, &loaded_image_info, |
640 | "\\selftest", "efi_selftest"); | |
641 | if (ret != EFI_SUCCESS) | |
642 | return CMD_RET_FAILURE; | |
643 | ||
644 | /* Execute the test */ | |
645 | ret = EFI_CALL(efi_selftest(&image_obj->header, &systab)); | |
646 | bootefi_run_finish(image_obj, loaded_image_info); | |
647 | ||
648 | return ret != EFI_SUCCESS; | |
649 | } | |
d9717eae SG |
650 | #endif /* CONFIG_CMD_BOOTEFI_SELFTEST */ |
651 | ||
7e92db81 HS |
652 | /** |
653 | * do_bootefi() - execute `bootefi` command | |
654 | * | |
655 | * @cmdtp: table entry describing command | |
656 | * @flag: bitmap indicating how the command was invoked | |
657 | * @argc: number of arguments | |
658 | * @argv: command line arguments | |
659 | * Return: status code | |
660 | */ | |
09140113 SG |
661 | static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc, |
662 | char *const argv[]) | |
b9939336 | 663 | { |
7e92db81 | 664 | efi_status_t ret; |
8131c85a | 665 | char *img_addr, *img_size, *str_copy, *pos; |
f64f2232 | 666 | void *fdt; |
7e92db81 | 667 | |
3fc2b163 AT |
668 | if (argc < 2) |
669 | return CMD_RET_USAGE; | |
d6b21894 | 670 | |
7e92db81 HS |
671 | /* Initialize EFI drivers */ |
672 | ret = efi_init_obj_list(); | |
673 | if (ret != EFI_SUCCESS) { | |
c0018374 HS |
674 | log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n", |
675 | ret & ~EFI_ERROR_MASK); | |
7e92db81 HS |
676 | return CMD_RET_FAILURE; |
677 | } | |
678 | ||
8131c85a | 679 | if (argc > 2) { |
f64f2232 HS |
680 | uintptr_t fdt_addr; |
681 | ||
7e5f460e | 682 | fdt_addr = hextoul(argv[2], NULL); |
f64f2232 HS |
683 | fdt = map_sysmem(fdt_addr, 0); |
684 | } else { | |
685 | fdt = EFI_FDT_USE_INTERNAL; | |
686 | } | |
687 | ret = efi_install_fdt(fdt); | |
7e92db81 HS |
688 | if (ret == EFI_INVALID_PARAMETER) |
689 | return CMD_RET_USAGE; | |
690 | else if (ret != EFI_SUCCESS) | |
691 | return CMD_RET_FAILURE; | |
692 | ||
ff2f532f HS |
693 | if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR)) { |
694 | if (!strcmp(argv[1], "bootmgr")) | |
695 | return do_efibootmgr(); | |
696 | } | |
3fc2b163 | 697 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
ff2f532f | 698 | if (!strcmp(argv[1], "selftest")) |
7e92db81 | 699 | return do_efi_selftest(); |
3fc2b163 | 700 | #endif |
8131c85a HS |
701 | str_copy = strdup(argv[1]); |
702 | if (!str_copy) { | |
703 | log_err("Out of memory\n"); | |
704 | return CMD_RET_FAILURE; | |
705 | } | |
706 | pos = str_copy; | |
707 | img_addr = strsep(&pos, ":"); | |
708 | img_size = strsep(&pos, ":"); | |
709 | ret = do_bootefi_image(img_addr, img_size); | |
710 | free(str_copy); | |
3fc2b163 | 711 | |
8131c85a | 712 | return ret; |
b9939336 AG |
713 | } |
714 | ||
715 | #ifdef CONFIG_SYS_LONGHELP | |
716 | static char bootefi_help_text[] = | |
8131c85a HS |
717 | "<image address>[:<image size>] [<fdt address>]\n" |
718 | " - boot EFI payload\n" | |
c7ae3dfd | 719 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
623b3a57 HS |
720 | "bootefi hello\n" |
721 | " - boot a sample Hello World application stored within U-Boot\n" | |
722 | #endif | |
723 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST | |
bc4f9133 | 724 | "bootefi selftest [fdt address]\n" |
623b3a57 | 725 | " - boot an EFI selftest application stored within U-Boot\n" |
d78e40d6 HS |
726 | " Use environment variable efi_selftest to select a single test.\n" |
727 | " Use 'setenv efi_selftest list' to enumerate all tests.\n" | |
c7ae3dfd | 728 | #endif |
ff2f532f | 729 | #ifdef CONFIG_CMD_BOOTEFI_BOOTMGR |
6b95b38c | 730 | "bootefi bootmgr [fdt address]\n" |
9975fe96 RC |
731 | " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n" |
732 | "\n" | |
733 | " If specified, the device tree located at <fdt address> gets\n" | |
ff2f532f HS |
734 | " exposed as EFI configuration table.\n" |
735 | #endif | |
736 | ; | |
b9939336 AG |
737 | #endif |
738 | ||
739 | U_BOOT_CMD( | |
20589836 | 740 | bootefi, 4, 0, do_bootefi, |
92dfd922 | 741 | "Boots an EFI payload from memory", |
b9939336 AG |
742 | bootefi_help_text |
743 | ); |