blob: c1454ffb9488343175c6693684d23ed3a1db0182 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafb9939332016-03-10 00:27:20 +01002/*
3 * EFI application loader
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafb9939332016-03-10 00:27:20 +01006 */
7
Heinrich Schuchardtc0018372020-07-17 20:21:00 +02008#define LOG_CATEGORY LOGC_EFI
9
Alexander Grafb9939332016-03-10 00:27:20 +010010#include <command.h>
AKASHI Takahiro0bef4b02023-11-21 10:29:44 +090011#include <efi.h>
Alexander Grafb9939332016-03-10 00:27:20 +010012#include <efi_loader.h>
AKASHI Takahiro0bef4b02023-11-21 10:29:44 +090013#include <exports.h>
Heinrich Schuchardtc0018372020-07-17 20:21:00 +020014#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070015#include <malloc.h>
Alexander Graf354264b2018-06-18 17:22:58 +020016#include <mapmem.h>
AKASHI Takahiro0bef4b02023-11-21 10:29:44 +090017#include <vsprintf.h>
Simon Glasse2754582016-09-25 15:27:32 -060018#include <asm-generic/sections.h>
AKASHI Takahiro0bef4b02023-11-21 10:29:44 +090019#include <asm/global_data.h>
20#include <linux/string.h>
Alexander Graf0d9d5012016-04-11 16:55:26 +020021
22DECLARE_GLOBAL_DATA_PTR;
Alexander Grafb9939332016-03-10 00:27:20 +010023
AKASHI Takahirod07e7be2023-11-21 10:29:43 +090024static struct efi_device_path *test_image_path;
25static struct efi_device_path *test_device_path;
AKASHI Takahiro5c129fe2023-11-21 10:29:42 +090026
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +090027static efi_status_t bootefi_run_prepare(const char *load_options_path,
28 struct efi_device_path *device_path,
29 struct efi_device_path *image_path,
30 struct efi_loaded_image_obj **image_objp,
31 struct efi_loaded_image **loaded_image_infop)
32{
33 efi_status_t ret;
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010034 u16 *load_options;
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +090035
36 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
37 loaded_image_infop);
38 if (ret != EFI_SUCCESS)
39 return ret;
40
41 /* Transfer environment variable as load options */
Heinrich Schuchardt1064d042020-08-07 17:47:13 +020042 return efi_env_set_load_options((efi_handle_t)*image_objp,
43 load_options_path,
44 &load_options);
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +090045}
46
Simon Glassd9717ea2018-11-25 20:14:37 -070047/**
48 * bootefi_test_prepare() - prepare to run an EFI test
49 *
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +010050 * Prepare to run a test as if it were provided by a loaded image.
Simon Glassd9717ea2018-11-25 20:14:37 -070051 *
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +010052 * @image_objp: pointer to be set to the loaded image handle
53 * @loaded_image_infop: pointer to be set to the loaded image protocol
54 * @path: dummy file path used to construct the device path
55 * set in the loaded image protocol
56 * @load_options_path: name of a U-Boot environment variable. Its value is
57 * set as load options in the loaded image protocol.
58 * Return: status code
Simon Glassd9717ea2018-11-25 20:14:37 -070059 */
60static efi_status_t bootefi_test_prepare
61 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +010062 struct efi_loaded_image **loaded_image_infop, const char *path,
63 const char *load_options_path)
Simon Glassd9717ea2018-11-25 20:14:37 -070064{
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +010065 efi_status_t ret;
66
Simon Glassd9717ea2018-11-25 20:14:37 -070067 /* Construct a dummy device path */
AKASHI Takahirod07e7be2023-11-21 10:29:43 +090068 test_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
69 if (!test_device_path)
Simon Glassd9717ea2018-11-25 20:14:37 -070070 return EFI_OUT_OF_RESOURCES;
Simon Glassd9717ea2018-11-25 20:14:37 -070071
AKASHI Takahirod07e7be2023-11-21 10:29:43 +090072 test_image_path = efi_dp_from_file(NULL, path);
73 if (!test_image_path) {
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +010074 ret = EFI_OUT_OF_RESOURCES;
75 goto failure;
76 }
77
AKASHI Takahirod07e7be2023-11-21 10:29:43 +090078 ret = bootefi_run_prepare(load_options_path, test_device_path,
79 test_image_path, image_objp,
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +010080 loaded_image_infop);
81 if (ret == EFI_SUCCESS)
82 return ret;
83
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +010084failure:
AKASHI Takahirod07e7be2023-11-21 10:29:43 +090085 efi_free_pool(test_device_path);
86 efi_free_pool(test_image_path);
87 /* TODO: not sure calling clear function is necessary */
Heinrich Schuchardt5f595182021-01-12 12:46:24 +010088 efi_clear_bootdev();
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +010089 return ret;
Simon Glassd9717ea2018-11-25 20:14:37 -070090}
91
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +090092/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +020093 * do_efi_selftest() - execute EFI selftest
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +090094 *
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +090095 * Return: status code
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +090096 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +020097static int do_efi_selftest(void)
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +090098{
99 struct efi_loaded_image_obj *image_obj;
100 struct efi_loaded_image *loaded_image_info;
101 efi_status_t ret;
102
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900103 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
104 "\\selftest", "efi_selftest");
105 if (ret != EFI_SUCCESS)
106 return CMD_RET_FAILURE;
107
108 /* Execute the test */
109 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
Ilias Apalodimas54edc372023-07-24 13:17:36 +0300110 free(loaded_image_info->load_options);
AKASHI Takahirod07e7be2023-11-21 10:29:43 +0900111 efi_free_pool(test_device_path);
112 efi_free_pool(test_image_path);
Ilias Apalodimas54edc372023-07-24 13:17:36 +0300113 if (ret != EFI_SUCCESS)
114 efi_delete_handle(&image_obj->header);
115 else
116 ret = efi_delete_handle(&image_obj->header);
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900117
118 return ret != EFI_SUCCESS;
119}
Simon Glassd9717ea2018-11-25 20:14:37 -0700120
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200121/**
122 * do_bootefi() - execute `bootefi` command
123 *
124 * @cmdtp: table entry describing command
125 * @flag: bitmap indicating how the command was invoked
126 * @argc: number of arguments
127 * @argv: command line arguments
128 * Return: status code
129 */
Simon Glass09140112020-05-10 11:40:03 -0600130static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc,
131 char *const argv[])
Alexander Grafb9939332016-03-10 00:27:20 +0100132{
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200133 efi_status_t ret;
AKASHI Takahiro05e2cad2023-11-21 10:29:39 +0900134 char *p;
135 void *fdt, *image_buf;
136 unsigned long addr, size;
AKASHI Takahiro0bef4b02023-11-21 10:29:44 +0900137 void *image_addr;
138 size_t image_size;
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200139
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900140 if (argc < 2)
141 return CMD_RET_USAGE;
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900142
Heinrich Schuchardt8131c852022-05-19 08:00:56 +0200143 if (argc > 2) {
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100144 uintptr_t fdt_addr;
145
Simon Glass7e5f4602021-07-24 09:03:29 -0600146 fdt_addr = hextoul(argv[2], NULL);
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100147 fdt = map_sysmem(fdt_addr, 0);
148 } else {
149 fdt = EFI_FDT_USE_INTERNAL;
150 }
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200151
AKASHI Takahiro296faf42023-11-21 10:29:40 +0900152 if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR) &&
153 !strcmp(argv[1], "bootmgr")) {
AKASHI Takahiroc3530ae2023-11-21 10:29:41 +0900154 ret = efi_bootmgr_run(fdt);
AKASHI Takahiro296faf42023-11-21 10:29:40 +0900155
Heinrich Schuchardt46e5dd62024-03-16 10:36:43 +0100156 if (ret != EFI_SUCCESS)
AKASHI Takahiro296faf42023-11-21 10:29:40 +0900157 return CMD_RET_FAILURE;
158
AKASHI Takahiroc3530ae2023-11-21 10:29:41 +0900159 return CMD_RET_SUCCESS;
Heinrich Schuchardtff2f5322021-01-15 19:02:50 +0100160 }
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900161
AKASHI Takahiro296faf42023-11-21 10:29:40 +0900162 if (IS_ENABLED(CONFIG_CMD_BOOTEFI_SELFTEST) &&
163 !strcmp(argv[1], "selftest")) {
164 /* Initialize EFI drivers */
165 ret = efi_init_obj_list();
166 if (ret != EFI_SUCCESS) {
167 log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n",
168 ret & ~EFI_ERROR_MASK);
169 return CMD_RET_FAILURE;
170 }
171
172 ret = efi_install_fdt(fdt);
Heinrich Schuchardt68fc0b82024-03-16 10:36:44 +0100173 if (ret != EFI_SUCCESS)
AKASHI Takahiro296faf42023-11-21 10:29:40 +0900174 return CMD_RET_FAILURE;
175
176 return do_efi_selftest();
177 }
178
179 if (!IS_ENABLED(CONFIG_CMD_BOOTEFI_BINARY))
180 return CMD_RET_SUCCESS;
181
182 if (IS_ENABLED(CONFIG_CMD_BOOTEFI_HELLO) &&
183 !strcmp(argv[1], "hello")) {
AKASHI Takahiro05e2cad2023-11-21 10:29:39 +0900184 image_buf = __efi_helloworld_begin;
185 size = __efi_helloworld_end - __efi_helloworld_begin;
AKASHI Takahiro0bef4b02023-11-21 10:29:44 +0900186 /* TODO: not sure calling clear function is necessary */
AKASHI Takahiro05e2cad2023-11-21 10:29:39 +0900187 efi_clear_bootdev();
AKASHI Takahiro296faf42023-11-21 10:29:40 +0900188 } else {
AKASHI Takahiro05e2cad2023-11-21 10:29:39 +0900189 addr = strtoul(argv[1], NULL, 16);
190 /* Check that a numeric value was passed */
191 if (!addr)
192 return CMD_RET_USAGE;
193 image_buf = map_sysmem(addr, 0);
194
195 p = strchr(argv[1], ':');
196 if (p) {
197 size = strtoul(++p, NULL, 16);
198 if (!size)
199 return CMD_RET_USAGE;
200 efi_clear_bootdev();
201 } else {
AKASHI Takahiro0bef4b02023-11-21 10:29:44 +0900202 /* Image should be already loaded */
203 efi_get_image_parameters(&image_addr, &image_size);
204
AKASHI Takahiro05e2cad2023-11-21 10:29:39 +0900205 if (image_buf != image_addr) {
206 log_err("No UEFI binary known at %s\n",
207 argv[1]);
208 return CMD_RET_FAILURE;
209 }
210 size = image_size;
211 }
212 }
AKASHI Takahiro296faf42023-11-21 10:29:40 +0900213
AKASHI Takahiro5c129fe2023-11-21 10:29:42 +0900214 ret = efi_binary_run(image_buf, size, fdt);
AKASHI Takahiro296faf42023-11-21 10:29:40 +0900215
Heinrich Schuchardt46e5dd62024-03-16 10:36:43 +0100216 if (ret != EFI_SUCCESS)
AKASHI Takahiro05e2cad2023-11-21 10:29:39 +0900217 return CMD_RET_FAILURE;
218
219 return CMD_RET_SUCCESS;
Alexander Grafb9939332016-03-10 00:27:20 +0100220}
221
Tom Rini36162182023-10-07 15:13:08 -0400222U_BOOT_LONGHELP(bootefi,
Heinrich Schuchardt8131c852022-05-19 08:00:56 +0200223 "<image address>[:<image size>] [<fdt address>]\n"
224 " - boot EFI payload\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700225#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200226 "bootefi hello\n"
227 " - boot a sample Hello World application stored within U-Boot\n"
228#endif
229#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100230 "bootefi selftest [fdt address]\n"
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200231 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200232 " Use environment variable efi_selftest to select a single test.\n"
233 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700234#endif
Heinrich Schuchardtff2f5322021-01-15 19:02:50 +0100235#ifdef CONFIG_CMD_BOOTEFI_BOOTMGR
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900236 "bootefi bootmgr [fdt address]\n"
Rob Clark9975fe92017-09-13 18:05:38 -0400237 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
238 "\n"
239 " If specified, the device tree located at <fdt address> gets\n"
Heinrich Schuchardtff2f5322021-01-15 19:02:50 +0100240 " exposed as EFI configuration table.\n"
241#endif
Tom Rini36162182023-10-07 15:13:08 -0400242 );
Alexander Grafb9939332016-03-10 00:27:20 +0100243
244U_BOOT_CMD(
Kyle Evans20589832022-04-10 16:05:55 -0500245 bootefi, 4, 0, do_bootefi,
Sergey Kubushyn92dfd922016-06-07 11:14:31 -0700246 "Boots an EFI payload from memory",
Alexander Grafb9939332016-03-10 00:27:20 +0100247 bootefi_help_text
248);