1 // SPDX-License-Identifier: GPL-2.0+
3 * EFI application loader
5 * Copyright (c) 2016 Alexander Graf
8 #define LOG_CATEGORY LOGC_EFI
15 #include <efi_loader.h>
16 #include <efi_selftest.h>
22 #include <asm/global_data.h>
23 #include <linux/libfdt.h>
24 #include <linux/libfdt_env.h>
27 #include <asm-generic/sections.h>
28 #include <linux/linkage.h>
30 DECLARE_GLOBAL_DATA_PTR;
32 static struct efi_device_path *bootefi_image_path;
33 static struct efi_device_path *bootefi_device_path;
34 static void *image_addr;
35 static size_t image_size;
38 * efi_clear_bootdev() - clear boot device
40 static void efi_clear_bootdev(void)
42 efi_free_pool(bootefi_device_path);
43 efi_free_pool(bootefi_image_path);
44 bootefi_device_path = NULL;
45 bootefi_image_path = NULL;
51 * efi_set_bootdev() - set boot device
53 * This function is called when a file is loaded, e.g. via the 'load' command.
54 * We use the path to this file to inform the UEFI binary about the boot device.
56 * @dev: device, e.g. "MMC"
57 * @devnr: number of the device, e.g. "1:2"
58 * @path: path to file loaded
59 * @buffer: buffer with file loaded
60 * @buffer_size: size of file loaded
62 void efi_set_bootdev(const char *dev, const char *devnr, const char *path,
63 void *buffer, size_t buffer_size)
65 struct efi_device_path *device, *image;
68 /* Forget overwritten image */
69 if (buffer + buffer_size >= image_addr &&
70 image_addr + image_size >= buffer)
73 /* Remember only PE-COFF and FIT images */
74 if (efi_check_pe(buffer, buffer_size, NULL) != EFI_SUCCESS) {
76 if (fit_check_format(buffer, IMAGE_SIZE_INVAL))
79 * FIT images of type EFI_OS are started via command bootm.
80 * We should not use their boot device with the bootefi command.
89 /* efi_set_bootdev() is typically called repeatedly, recover memory */
93 image_size = buffer_size;
95 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
96 if (ret == EFI_SUCCESS) {
97 bootefi_device_path = device;
99 /* FIXME: image should not contain device */
100 struct efi_device_path *image_tmp = image;
102 efi_dp_split_file_path(image, &device, &image);
103 efi_free_pool(image_tmp);
105 bootefi_image_path = image;
112 * efi_env_set_load_options() - set load options from environment variable
114 * @handle: the image handle
115 * @env_var: name of the environment variable
116 * @load_options: pointer to load options (output)
117 * Return: status code
119 static efi_status_t efi_env_set_load_options(efi_handle_t handle,
123 const char *env = env_get(env_var);
128 *load_options = NULL;
131 size = sizeof(u16) * (utf8_utf16_strlen(env) + 1);
132 pos = calloc(size, 1);
134 return EFI_OUT_OF_RESOURCES;
136 utf8_utf16_strcpy(&pos, env);
137 ret = efi_set_load_options(handle, size, *load_options);
138 if (ret != EFI_SUCCESS) {
140 *load_options = NULL;
145 #if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
148 * copy_fdt() - Copy the device tree to a new location available to EFI
150 * The FDT is copied to a suitable location within the EFI memory map.
151 * Additional 12 KiB are added to the space in case the device tree needs to be
152 * expanded later with fdt_open_into().
154 * @fdtp: On entry a pointer to the flattened device tree.
155 * On exit a pointer to the copy of the flattened device tree.
157 * Return: status code
159 static efi_status_t copy_fdt(void **fdtp)
161 unsigned long fdt_ram_start = -1L, fdt_pages;
162 efi_status_t ret = 0;
168 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
169 u64 ram_start = gd->bd->bi_dram[i].start;
170 u64 ram_size = gd->bd->bi_dram[i].size;
175 if (ram_start < fdt_ram_start)
176 fdt_ram_start = ram_start;
180 * Give us at least 12 KiB of breathing room in case the device tree
181 * needs to be expanded later.
184 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
185 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
188 * Safe fdt location is at 127 MiB.
189 * On the sandbox convert from the sandbox address space.
191 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
193 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
194 EFI_ACPI_RECLAIM_MEMORY, fdt_pages,
196 if (ret != EFI_SUCCESS) {
197 /* If we can't put it there, put it somewhere */
198 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
199 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
200 EFI_ACPI_RECLAIM_MEMORY, fdt_pages,
202 if (ret != EFI_SUCCESS) {
203 log_err("ERROR: Failed to reserve space for FDT\n");
207 new_fdt = (void *)(uintptr_t)new_fdt_addr;
208 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
209 fdt_set_totalsize(new_fdt, fdt_size);
211 *fdtp = (void *)(uintptr_t)new_fdt_addr;
217 * get_config_table() - get configuration table
219 * @guid: GUID of the configuration table
220 * Return: pointer to configuration table or NULL
222 static void *get_config_table(const efi_guid_t *guid)
226 for (i = 0; i < systab.nr_tables; i++) {
227 if (!guidcmp(guid, &systab.tables[i].guid))
228 return systab.tables[i].table;
233 #endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */
236 * efi_install_fdt() - install device tree
238 * If fdt is not EFI_FDT_USE_INTERNAL, the device tree located at that memory
239 * address will will be installed as configuration table, otherwise the device
240 * tree located at the address indicated by environment variable fdt_addr or as
241 * fallback fdtcontroladdr will be used.
243 * On architectures using ACPI tables device trees shall not be installed as
244 * configuration table.
246 * @fdt: address of device tree or EFI_FDT_USE_INTERNAL to use the
247 * the hardware device tree as indicated by environment variable
248 * fdt_addr or as fallback the internal device tree as indicated by
249 * the environment variable fdtcontroladdr
250 * Return: status code
252 efi_status_t efi_install_fdt(void *fdt)
255 * The EBBR spec requires that we have either an FDT or an ACPI table
258 #if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
260 log_err("ERROR: can't have ACPI table and device tree.\n");
261 return EFI_LOAD_ERROR;
264 bootm_headers_t img = { 0 };
267 if (fdt == EFI_FDT_USE_INTERNAL) {
271 /* Look for device tree that is already installed */
272 if (get_config_table(&efi_guid_fdt))
274 /* Check if there is a hardware device tree */
275 fdt_opt = env_get("fdt_addr");
276 /* Use our own device tree as fallback */
278 fdt_opt = env_get("fdtcontroladdr");
280 log_err("ERROR: need device tree\n");
281 return EFI_NOT_FOUND;
284 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
286 log_err("ERROR: invalid $fdt_addr or $fdtcontroladdr\n");
287 return EFI_LOAD_ERROR;
289 fdt = map_sysmem(fdt_addr, 0);
292 /* Install device tree */
293 if (fdt_check_header(fdt)) {
294 log_err("ERROR: invalid device tree\n");
295 return EFI_LOAD_ERROR;
298 /* Prepare device tree for payload */
299 ret = copy_fdt(&fdt);
301 log_err("ERROR: out of memory\n");
302 return EFI_OUT_OF_RESOURCES;
305 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
306 log_err("ERROR: failed to process device tree\n");
307 return EFI_LOAD_ERROR;
310 /* Create memory reservations as indicated by the device tree */
311 efi_carve_out_dt_rsv(fdt);
313 /* Install device tree as UEFI table */
314 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
315 if (ret != EFI_SUCCESS) {
316 log_err("ERROR: failed to install device tree\n");
319 #endif /* GENERATE_ACPI_TABLE */
325 * do_bootefi_exec() - execute EFI binary
327 * The image indicated by @handle is started. When it returns the allocated
328 * memory for the @load_options is freed.
330 * @handle: handle of loaded image
331 * @load_options: load options
332 * Return: status code
334 * Load the EFI binary into a newly assigned memory unwinding the relocation
335 * information, install the loaded image protocol, and call the binary.
337 static efi_status_t do_bootefi_exec(efi_handle_t handle, void *load_options)
340 efi_uintn_t exit_data_size = 0;
341 u16 *exit_data = NULL;
343 /* On ARM switch from EL3 or secure mode to EL2 or non-secure mode */
344 switch_to_non_secure_mode();
346 /* Call our payload! */
347 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data));
348 if (ret != EFI_SUCCESS) {
349 log_err("## Application failed, r = %lu\n",
350 ret & ~EFI_ERROR_MASK);
352 log_err("## %ls\n", exit_data);
353 efi_free_pool(exit_data);
365 * do_efibootmgr() - execute EFI boot manager
367 * Return: status code
369 static int do_efibootmgr(void)
375 ret = efi_bootmgr_load(&handle, &load_options);
376 if (ret != EFI_SUCCESS) {
377 log_notice("EFI boot manager: Cannot load any image\n");
378 return CMD_RET_FAILURE;
381 ret = do_bootefi_exec(handle, load_options);
383 if (ret != EFI_SUCCESS)
384 return CMD_RET_FAILURE;
386 return CMD_RET_SUCCESS;
390 * do_bootefi_image() - execute EFI binary
392 * Set up memory image for the binary to be loaded, prepare device path, and
393 * then call do_bootefi_exec() to execute it.
395 * @image_opt: string of image start address
396 * Return: status code
398 static int do_bootefi_image(const char *image_opt)
401 unsigned long addr, size;
404 #ifdef CONFIG_CMD_BOOTEFI_HELLO
405 if (!strcmp(image_opt, "hello")) {
406 image_buf = __efi_helloworld_begin;
407 size = __efi_helloworld_end - __efi_helloworld_begin;
412 addr = strtoul(image_opt, NULL, 16);
413 /* Check that a numeric value was passed */
415 return CMD_RET_USAGE;
417 image_buf = map_sysmem(addr, 0);
419 if (image_buf != image_addr) {
420 log_err("No UEFI binary known at %s\n", image_opt);
421 return CMD_RET_FAILURE;
425 ret = efi_run_image(image_buf, size);
427 if (ret != EFI_SUCCESS)
428 return CMD_RET_FAILURE;
430 return CMD_RET_SUCCESS;
434 * efi_run_image() - run loaded UEFI image
436 * @source_buffer: memory address of the UEFI image
437 * @source_size: size of the UEFI image
438 * Return: status code
440 efi_status_t efi_run_image(void *source_buffer, efi_uintn_t source_size)
442 efi_handle_t mem_handle = NULL, handle;
443 struct efi_device_path *file_path = NULL;
444 struct efi_device_path *msg_path;
448 if (!bootefi_device_path || !bootefi_image_path) {
450 * Special case for efi payload not loaded from disk,
451 * such as 'bootefi hello' or for example payload
452 * loaded directly into memory via JTAG, etc:
454 file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
455 (uintptr_t)source_buffer,
458 * Make sure that device for device_path exist
459 * in load_image(). Otherwise, shell and grub will fail.
461 ret = efi_create_handle(&mem_handle);
462 if (ret != EFI_SUCCESS)
465 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
467 if (ret != EFI_SUCCESS)
469 msg_path = file_path;
471 file_path = efi_dp_append(bootefi_device_path,
473 msg_path = bootefi_image_path;
476 log_info("Booting %pD\n", msg_path);
478 ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer,
479 source_size, &handle));
480 if (ret != EFI_SUCCESS) {
481 log_err("Loading image failed\n");
485 /* Transfer environment variable as load options */
486 ret = efi_env_set_load_options(handle, "bootargs", &load_options);
487 if (ret != EFI_SUCCESS)
490 ret = do_bootefi_exec(handle, load_options);
493 efi_delete_handle(mem_handle);
494 efi_free_pool(file_path);
498 #ifdef CONFIG_CMD_BOOTEFI_SELFTEST
499 static efi_status_t bootefi_run_prepare(const char *load_options_path,
500 struct efi_device_path *device_path,
501 struct efi_device_path *image_path,
502 struct efi_loaded_image_obj **image_objp,
503 struct efi_loaded_image **loaded_image_infop)
508 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
510 if (ret != EFI_SUCCESS)
513 /* Transfer environment variable as load options */
514 return efi_env_set_load_options((efi_handle_t)*image_objp,
520 * bootefi_test_prepare() - prepare to run an EFI test
522 * Prepare to run a test as if it were provided by a loaded image.
524 * @image_objp: pointer to be set to the loaded image handle
525 * @loaded_image_infop: pointer to be set to the loaded image protocol
526 * @path: dummy file path used to construct the device path
527 * set in the loaded image protocol
528 * @load_options_path: name of a U-Boot environment variable. Its value is
529 * set as load options in the loaded image protocol.
530 * Return: status code
532 static efi_status_t bootefi_test_prepare
533 (struct efi_loaded_image_obj **image_objp,
534 struct efi_loaded_image **loaded_image_infop, const char *path,
535 const char *load_options_path)
539 /* Construct a dummy device path */
540 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
541 if (!bootefi_device_path)
542 return EFI_OUT_OF_RESOURCES;
544 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
545 if (!bootefi_image_path) {
546 ret = EFI_OUT_OF_RESOURCES;
550 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
551 bootefi_image_path, image_objp,
553 if (ret == EFI_SUCCESS)
562 * bootefi_run_finish() - finish up after running an EFI test
564 * @loaded_image_info: Pointer to a struct which holds the loaded image info
565 * @image_obj: Pointer to a struct which holds the loaded image object
567 static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
568 struct efi_loaded_image *loaded_image_info)
571 free(loaded_image_info->load_options);
572 efi_delete_handle(&image_obj->header);
576 * do_efi_selftest() - execute EFI selftest
578 * Return: status code
580 static int do_efi_selftest(void)
582 struct efi_loaded_image_obj *image_obj;
583 struct efi_loaded_image *loaded_image_info;
586 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
587 "\\selftest", "efi_selftest");
588 if (ret != EFI_SUCCESS)
589 return CMD_RET_FAILURE;
591 /* Execute the test */
592 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
593 bootefi_run_finish(image_obj, loaded_image_info);
595 return ret != EFI_SUCCESS;
597 #endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
600 * do_bootefi() - execute `bootefi` command
602 * @cmdtp: table entry describing command
603 * @flag: bitmap indicating how the command was invoked
604 * @argc: number of arguments
605 * @argv: command line arguments
606 * Return: status code
608 static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc,
615 return CMD_RET_USAGE;
617 /* Initialize EFI drivers */
618 ret = efi_init_obj_list();
619 if (ret != EFI_SUCCESS) {
620 log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n",
621 ret & ~EFI_ERROR_MASK);
622 return CMD_RET_FAILURE;
628 fdt_addr = simple_strtoul(argv[2], NULL, 16);
629 fdt = map_sysmem(fdt_addr, 0);
631 fdt = EFI_FDT_USE_INTERNAL;
633 ret = efi_install_fdt(fdt);
634 if (ret == EFI_INVALID_PARAMETER)
635 return CMD_RET_USAGE;
636 else if (ret != EFI_SUCCESS)
637 return CMD_RET_FAILURE;
639 if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR)) {
640 if (!strcmp(argv[1], "bootmgr"))
641 return do_efibootmgr();
643 #ifdef CONFIG_CMD_BOOTEFI_SELFTEST
644 if (!strcmp(argv[1], "selftest"))
645 return do_efi_selftest();
648 return do_bootefi_image(argv[1]);
651 #ifdef CONFIG_SYS_LONGHELP
652 static char bootefi_help_text[] =
653 "<image address> [fdt address]\n"
654 " - boot EFI payload stored at address <image address>.\n"
655 " If specified, the device tree located at <fdt address> gets\n"
656 " exposed as EFI configuration table.\n"
657 #ifdef CONFIG_CMD_BOOTEFI_HELLO
659 " - boot a sample Hello World application stored within U-Boot\n"
661 #ifdef CONFIG_CMD_BOOTEFI_SELFTEST
662 "bootefi selftest [fdt address]\n"
663 " - boot an EFI selftest application stored within U-Boot\n"
664 " Use environment variable efi_selftest to select a single test.\n"
665 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
667 #ifdef CONFIG_CMD_BOOTEFI_BOOTMGR
668 "bootefi bootmgr [fdt address]\n"
669 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
671 " If specified, the device tree located at <fdt address> gets\n"
672 " exposed as EFI configuration table.\n"
678 bootefi, 3, 0, do_bootefi,
679 "Boots an EFI payload from memory",