Tom Rini | 70df9d6 | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 2 | /* |
| 3 | * EFI application loader |
| 4 | * |
| 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Heinrich Schuchardt | bb38a1f | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 8 | #define LOG_CATEGORY LOGC_EFI |
| 9 | |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 10 | #include <command.h> |
AKASHI Takahiro | 7b06192 | 2023-11-21 10:29:44 +0900 | [diff] [blame] | 11 | #include <efi.h> |
Simon Glass | 37972f4 | 2025-05-24 11:28:21 -0600 | [diff] [blame^] | 12 | #include <efi_device_path.h> |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 13 | #include <efi_loader.h> |
AKASHI Takahiro | 7b06192 | 2023-11-21 10:29:44 +0900 | [diff] [blame] | 14 | #include <exports.h> |
Heinrich Schuchardt | bb38a1f | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 15 | #include <log.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 16 | #include <malloc.h> |
Alexander Graf | a241451 | 2018-06-18 17:22:58 +0200 | [diff] [blame] | 17 | #include <mapmem.h> |
AKASHI Takahiro | 7b06192 | 2023-11-21 10:29:44 +0900 | [diff] [blame] | 18 | #include <vsprintf.h> |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 19 | #include <asm-generic/sections.h> |
AKASHI Takahiro | 7b06192 | 2023-11-21 10:29:44 +0900 | [diff] [blame] | 20 | #include <asm/global_data.h> |
| 21 | #include <linux/string.h> |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 22 | |
| 23 | DECLARE_GLOBAL_DATA_PTR; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 24 | |
AKASHI Takahiro | 203d196 | 2023-11-21 10:29:43 +0900 | [diff] [blame] | 25 | static struct efi_device_path *test_image_path; |
| 26 | static struct efi_device_path *test_device_path; |
AKASHI Takahiro | d52dacb | 2023-11-21 10:29:42 +0900 | [diff] [blame] | 27 | |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 28 | static efi_status_t bootefi_run_prepare(const char *load_options_path, |
| 29 | struct efi_device_path *device_path, |
| 30 | struct efi_device_path *image_path, |
| 31 | struct efi_loaded_image_obj **image_objp, |
| 32 | struct efi_loaded_image **loaded_image_infop) |
| 33 | { |
| 34 | efi_status_t ret; |
Heinrich Schuchardt | e626395 | 2020-01-03 22:53:42 +0100 | [diff] [blame] | 35 | u16 *load_options; |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 36 | |
| 37 | ret = efi_setup_loaded_image(device_path, image_path, image_objp, |
| 38 | loaded_image_infop); |
| 39 | if (ret != EFI_SUCCESS) |
| 40 | return ret; |
| 41 | |
Heinrich Schuchardt | f0b4423 | 2025-04-11 07:36:45 +0200 | [diff] [blame] | 42 | (*image_objp)->auth_status = EFI_IMAGE_AUTH_PASSED; |
| 43 | (*image_objp)->entry = efi_selftest; |
| 44 | |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 45 | /* Transfer environment variable as load options */ |
Heinrich Schuchardt | 25c6be5 | 2020-08-07 17:47:13 +0200 | [diff] [blame] | 46 | return efi_env_set_load_options((efi_handle_t)*image_objp, |
| 47 | load_options_path, |
| 48 | &load_options); |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 49 | } |
| 50 | |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 51 | /** |
| 52 | * bootefi_test_prepare() - prepare to run an EFI test |
| 53 | * |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 54 | * Prepare to run a test as if it were provided by a loaded image. |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 55 | * |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 56 | * @image_objp: pointer to be set to the loaded image handle |
| 57 | * @loaded_image_infop: pointer to be set to the loaded image protocol |
| 58 | * @path: dummy file path used to construct the device path |
| 59 | * set in the loaded image protocol |
| 60 | * @load_options_path: name of a U-Boot environment variable. Its value is |
| 61 | * set as load options in the loaded image protocol. |
| 62 | * Return: status code |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 63 | */ |
| 64 | static efi_status_t bootefi_test_prepare |
| 65 | (struct efi_loaded_image_obj **image_objp, |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 66 | struct efi_loaded_image **loaded_image_infop, const char *path, |
| 67 | const char *load_options_path) |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 68 | { |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 69 | efi_status_t ret; |
| 70 | |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 71 | /* Construct a dummy device path */ |
AKASHI Takahiro | 203d196 | 2023-11-21 10:29:43 +0900 | [diff] [blame] | 72 | test_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0); |
| 73 | if (!test_device_path) |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 74 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 75 | |
AKASHI Takahiro | 203d196 | 2023-11-21 10:29:43 +0900 | [diff] [blame] | 76 | test_image_path = efi_dp_from_file(NULL, path); |
| 77 | if (!test_image_path) { |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 78 | ret = EFI_OUT_OF_RESOURCES; |
| 79 | goto failure; |
| 80 | } |
| 81 | |
AKASHI Takahiro | 203d196 | 2023-11-21 10:29:43 +0900 | [diff] [blame] | 82 | ret = bootefi_run_prepare(load_options_path, test_device_path, |
| 83 | test_image_path, image_objp, |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 84 | loaded_image_infop); |
| 85 | if (ret == EFI_SUCCESS) |
| 86 | return ret; |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 87 | |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 88 | failure: |
AKASHI Takahiro | 203d196 | 2023-11-21 10:29:43 +0900 | [diff] [blame] | 89 | efi_free_pool(test_device_path); |
| 90 | efi_free_pool(test_image_path); |
| 91 | /* TODO: not sure calling clear function is necessary */ |
Heinrich Schuchardt | 6b82159 | 2021-01-12 12:46:24 +0100 | [diff] [blame] | 92 | efi_clear_bootdev(); |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 93 | return ret; |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 94 | } |
| 95 | |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 96 | /** |
Heinrich Schuchardt | 8fc56c6 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 97 | * do_efi_selftest() - execute EFI selftest |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 98 | * |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 99 | * Return: status code |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 100 | */ |
Heinrich Schuchardt | 8fc56c6 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 101 | static int do_efi_selftest(void) |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 102 | { |
| 103 | struct efi_loaded_image_obj *image_obj; |
| 104 | struct efi_loaded_image *loaded_image_info; |
| 105 | efi_status_t ret; |
| 106 | |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 107 | ret = bootefi_test_prepare(&image_obj, &loaded_image_info, |
| 108 | "\\selftest", "efi_selftest"); |
| 109 | if (ret != EFI_SUCCESS) |
| 110 | return CMD_RET_FAILURE; |
| 111 | |
| 112 | /* Execute the test */ |
Heinrich Schuchardt | f0b4423 | 2025-04-11 07:36:45 +0200 | [diff] [blame] | 113 | ret = do_bootefi_exec(&image_obj->header, |
| 114 | loaded_image_info->load_options); |
AKASHI Takahiro | 203d196 | 2023-11-21 10:29:43 +0900 | [diff] [blame] | 115 | efi_free_pool(test_device_path); |
| 116 | efi_free_pool(test_image_path); |
Ilias Apalodimas | b09ecf1 | 2023-07-24 13:17:36 +0300 | [diff] [blame] | 117 | if (ret != EFI_SUCCESS) |
| 118 | efi_delete_handle(&image_obj->header); |
| 119 | else |
| 120 | ret = efi_delete_handle(&image_obj->header); |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 121 | |
| 122 | return ret != EFI_SUCCESS; |
| 123 | } |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 124 | |
Heinrich Schuchardt | 8fc56c6 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 125 | /** |
| 126 | * do_bootefi() - execute `bootefi` command |
| 127 | * |
| 128 | * @cmdtp: table entry describing command |
| 129 | * @flag: bitmap indicating how the command was invoked |
| 130 | * @argc: number of arguments |
| 131 | * @argv: command line arguments |
| 132 | * Return: status code |
| 133 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 134 | static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc, |
| 135 | char *const argv[]) |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 136 | { |
Heinrich Schuchardt | 8fc56c6 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 137 | efi_status_t ret; |
AKASHI Takahiro | 28cb4a8 | 2023-11-21 10:29:39 +0900 | [diff] [blame] | 138 | char *p; |
| 139 | void *fdt, *image_buf; |
| 140 | unsigned long addr, size; |
AKASHI Takahiro | 7b06192 | 2023-11-21 10:29:44 +0900 | [diff] [blame] | 141 | void *image_addr; |
| 142 | size_t image_size; |
Heinrich Schuchardt | 8fc56c6 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 143 | |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 144 | if (argc < 2) |
| 145 | return CMD_RET_USAGE; |
AKASHI Takahiro | cf81983 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 146 | |
Heinrich Schuchardt | 3ea20e7 | 2022-05-19 08:00:56 +0200 | [diff] [blame] | 147 | if (argc > 2) { |
Heinrich Schuchardt | 6246741 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 148 | uintptr_t fdt_addr; |
| 149 | |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 150 | fdt_addr = hextoul(argv[2], NULL); |
Heinrich Schuchardt | 6246741 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 151 | fdt = map_sysmem(fdt_addr, 0); |
| 152 | } else { |
| 153 | fdt = EFI_FDT_USE_INTERNAL; |
| 154 | } |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 155 | |
| 156 | if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR) && |
| 157 | !strcmp(argv[1], "bootmgr")) { |
AKASHI Takahiro | 4ab6c5b | 2023-11-21 10:29:41 +0900 | [diff] [blame] | 158 | ret = efi_bootmgr_run(fdt); |
Heinrich Schuchardt | 8fc56c6 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 159 | |
Heinrich Schuchardt | 985482d | 2024-03-16 10:36:43 +0100 | [diff] [blame] | 160 | if (ret != EFI_SUCCESS) |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 161 | return CMD_RET_FAILURE; |
| 162 | |
AKASHI Takahiro | 4ab6c5b | 2023-11-21 10:29:41 +0900 | [diff] [blame] | 163 | return CMD_RET_SUCCESS; |
Heinrich Schuchardt | b2625e8 | 2021-01-15 19:02:50 +0100 | [diff] [blame] | 164 | } |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 165 | |
| 166 | if (IS_ENABLED(CONFIG_CMD_BOOTEFI_SELFTEST) && |
| 167 | !strcmp(argv[1], "selftest")) { |
| 168 | /* Initialize EFI drivers */ |
| 169 | ret = efi_init_obj_list(); |
| 170 | if (ret != EFI_SUCCESS) { |
| 171 | log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n", |
| 172 | ret & ~EFI_ERROR_MASK); |
| 173 | return CMD_RET_FAILURE; |
| 174 | } |
| 175 | |
| 176 | ret = efi_install_fdt(fdt); |
Heinrich Schuchardt | 42f9979 | 2024-03-16 10:36:44 +0100 | [diff] [blame] | 177 | if (ret != EFI_SUCCESS) |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 178 | return CMD_RET_FAILURE; |
| 179 | |
Heinrich Schuchardt | 8fc56c6 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 180 | return do_efi_selftest(); |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 181 | } |
AKASHI Takahiro | 28cb4a8 | 2023-11-21 10:29:39 +0900 | [diff] [blame] | 182 | |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 183 | if (!IS_ENABLED(CONFIG_CMD_BOOTEFI_BINARY)) |
| 184 | return CMD_RET_SUCCESS; |
| 185 | |
| 186 | if (IS_ENABLED(CONFIG_CMD_BOOTEFI_HELLO) && |
| 187 | !strcmp(argv[1], "hello")) { |
AKASHI Takahiro | 28cb4a8 | 2023-11-21 10:29:39 +0900 | [diff] [blame] | 188 | image_buf = __efi_helloworld_begin; |
| 189 | size = __efi_helloworld_end - __efi_helloworld_begin; |
AKASHI Takahiro | 7b06192 | 2023-11-21 10:29:44 +0900 | [diff] [blame] | 190 | /* TODO: not sure calling clear function is necessary */ |
AKASHI Takahiro | 28cb4a8 | 2023-11-21 10:29:39 +0900 | [diff] [blame] | 191 | efi_clear_bootdev(); |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 192 | } else { |
AKASHI Takahiro | 28cb4a8 | 2023-11-21 10:29:39 +0900 | [diff] [blame] | 193 | addr = strtoul(argv[1], NULL, 16); |
| 194 | /* Check that a numeric value was passed */ |
| 195 | if (!addr) |
| 196 | return CMD_RET_USAGE; |
| 197 | image_buf = map_sysmem(addr, 0); |
| 198 | |
| 199 | p = strchr(argv[1], ':'); |
| 200 | if (p) { |
| 201 | size = strtoul(++p, NULL, 16); |
| 202 | if (!size) |
| 203 | return CMD_RET_USAGE; |
| 204 | efi_clear_bootdev(); |
| 205 | } else { |
AKASHI Takahiro | 7b06192 | 2023-11-21 10:29:44 +0900 | [diff] [blame] | 206 | /* Image should be already loaded */ |
| 207 | efi_get_image_parameters(&image_addr, &image_size); |
| 208 | |
AKASHI Takahiro | 28cb4a8 | 2023-11-21 10:29:39 +0900 | [diff] [blame] | 209 | if (image_buf != image_addr) { |
| 210 | log_err("No UEFI binary known at %s\n", |
| 211 | argv[1]); |
| 212 | return CMD_RET_FAILURE; |
| 213 | } |
| 214 | size = image_size; |
| 215 | } |
Heinrich Schuchardt | 3ea20e7 | 2022-05-19 08:00:56 +0200 | [diff] [blame] | 216 | } |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 217 | |
Adriano Cordova | cea09ba | 2025-03-19 11:45:00 -0300 | [diff] [blame] | 218 | ret = efi_binary_run(image_buf, size, fdt, NULL, 0); |
AKASHI Takahiro | 6a6858e | 2023-11-21 10:29:40 +0900 | [diff] [blame] | 219 | |
Heinrich Schuchardt | 985482d | 2024-03-16 10:36:43 +0100 | [diff] [blame] | 220 | if (ret != EFI_SUCCESS) |
AKASHI Takahiro | 28cb4a8 | 2023-11-21 10:29:39 +0900 | [diff] [blame] | 221 | return CMD_RET_FAILURE; |
| 222 | |
| 223 | return CMD_RET_SUCCESS; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 224 | } |
| 225 | |
Tom Rini | 03f146c | 2023-10-07 15:13:08 -0400 | [diff] [blame] | 226 | U_BOOT_LONGHELP(bootefi, |
Heinrich Schuchardt | 3ea20e7 | 2022-05-19 08:00:56 +0200 | [diff] [blame] | 227 | "<image address>[:<image size>] [<fdt address>]\n" |
| 228 | " - boot EFI payload\n" |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 229 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 230 | "bootefi hello\n" |
| 231 | " - boot a sample Hello World application stored within U-Boot\n" |
| 232 | #endif |
| 233 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 234 | "bootefi selftest [fdt address]\n" |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 235 | " - boot an EFI selftest application stored within U-Boot\n" |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 236 | " Use environment variable efi_selftest to select a single test.\n" |
| 237 | " Use 'setenv efi_selftest list' to enumerate all tests.\n" |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 238 | #endif |
Heinrich Schuchardt | b2625e8 | 2021-01-15 19:02:50 +0100 | [diff] [blame] | 239 | #ifdef CONFIG_CMD_BOOTEFI_BOOTMGR |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 240 | "bootefi bootmgr [fdt address]\n" |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 241 | " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n" |
| 242 | "\n" |
| 243 | " If specified, the device tree located at <fdt address> gets\n" |
Heinrich Schuchardt | b2625e8 | 2021-01-15 19:02:50 +0100 | [diff] [blame] | 244 | " exposed as EFI configuration table.\n" |
| 245 | #endif |
Tom Rini | 03f146c | 2023-10-07 15:13:08 -0400 | [diff] [blame] | 246 | ); |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 247 | |
| 248 | U_BOOT_CMD( |
Kyle Evans | 2c3bf4e | 2022-04-10 16:05:55 -0500 | [diff] [blame] | 249 | bootefi, 4, 0, do_bootefi, |
Sergey Kubushyn | 268f19e | 2016-06-07 11:14:31 -0700 | [diff] [blame] | 250 | "Boots an EFI payload from memory", |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 251 | bootefi_help_text |
| 252 | ); |