blob: 7ac5f89f76d64b524e30a55831ae340088126d0c [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Rob Clark9975fe92017-09-13 18:05:38 -04002/*
Heinrich Schuchardte1fec152018-10-18 21:51:38 +02003 * EFI boot manager
Rob Clark9975fe92017-09-13 18:05:38 -04004 *
5 * Copyright (c) 2017 Rob Clark
Rob Clark9975fe92017-09-13 18:05:38 -04006 */
7
Heinrich Schuchardt7a373e52020-05-31 10:07:31 +02008#define LOG_CATEGORY LOGC_EFI
9
Rob Clark9975fe92017-09-13 18:05:38 -040010#include <common.h>
11#include <charset.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Rob Clark9975fe92017-09-13 18:05:38 -040013#include <malloc.h>
AKASHI Takahiro4e65ca02022-04-28 17:09:39 +090014#include <efi_default_filename.h>
Rob Clark9975fe92017-09-13 18:05:38 -040015#include <efi_loader.h>
Heinrich Schuchardtdda8c712020-06-24 19:09:18 +020016#include <efi_variable.h>
AKASHI Takahiro1a82b342018-11-05 18:06:41 +090017#include <asm/unaligned.h>
Rob Clark9975fe92017-09-13 18:05:38 -040018
19static const struct efi_boot_services *bs;
20static const struct efi_runtime_services *rs;
21
Masahisa Kojima87d79142022-09-12 17:33:50 +090022const efi_guid_t efi_guid_bootmenu_auto_generated =
23 EFICONFIG_AUTO_GENERATED_ENTRY_GUID;
24
Rob Clark9975fe92017-09-13 18:05:38 -040025/*
26 * bootmgr implements the logic of trying to find a payload to boot
27 * based on the BootOrder + BootXXXX variables, and then loading it.
28 *
29 * TODO detecting a special key held (f9?) and displaying a boot menu
30 * like you would get on a PC would be clever.
31 *
32 * TODO if we had a way to write and persist variables after the OS
33 * has started, we'd also want to check OsIndications to see if we
34 * should do normal or recovery boot.
35 */
36
Heinrich Schuchardt1064d042020-08-07 17:47:13 +020037/**
AKASHI Takahiro4e65ca02022-04-28 17:09:39 +090038 * expand_media_path() - expand a device path for default file name
39 * @device_path: device path to check against
40 *
41 * If @device_path is a media or disk partition which houses a file
42 * system, this function returns a full device path which contains
43 * an architecture-specific default file name for removable media.
44 *
45 * Return: a newly allocated device path
46 */
47static
48struct efi_device_path *expand_media_path(struct efi_device_path *device_path)
49{
Heinrich Schuchardtc7c0ca32023-05-13 10:36:21 +020050 struct efi_device_path *rem, *full_path;
AKASHI Takahiro4e65ca02022-04-28 17:09:39 +090051 efi_handle_t handle;
AKASHI Takahiro4e65ca02022-04-28 17:09:39 +090052
53 if (!device_path)
54 return NULL;
55
56 /*
57 * If device_path is a (removable) media or partition which provides
58 * simple file system protocol, append a default file name to support
59 * booting from removable media.
60 */
Heinrich Schuchardtc7c0ca32023-05-13 10:36:21 +020061 handle = efi_dp_find_obj(device_path,
62 &efi_simple_file_system_protocol_guid, &rem);
Heinrich Schuchardt72fa9cd2022-06-11 05:22:08 +000063 if (handle) {
Heinrich Schuchardt178667b2022-06-11 05:22:07 +000064 if (rem->type == DEVICE_PATH_TYPE_END) {
Heinrich Schuchardtc7c0ca32023-05-13 10:36:21 +020065 full_path = efi_dp_from_file(device_path,
66 "/EFI/BOOT/" BOOTEFI_NAME);
AKASHI Takahiro4e65ca02022-04-28 17:09:39 +090067 } else {
68 full_path = efi_dp_dup(device_path);
69 }
70 } else {
71 full_path = efi_dp_dup(device_path);
72 }
73
74 return full_path;
75}
76
77/**
AKASHI Takahiro57ad6242022-05-12 11:29:02 +090078 * try_load_from_file_path() - try to load a file
79 *
80 * Given a file media path iterate through a list of handles and try to
81 * to load the file from each of them until the first success.
82 *
83 * @fs_handles: array of handles with the simple file protocol
84 * @num: number of handles in fs_handles
85 * @fp: file path to open
86 * @handle: on return pointer to handle for loaded image
87 * @removable: if true only consider removable media, else only non-removable
88 */
89static efi_status_t try_load_from_file_path(efi_handle_t *fs_handles,
90 efi_uintn_t num,
91 struct efi_device_path *fp,
92 efi_handle_t *handle,
93 bool removable)
94{
95 struct efi_handler *handler;
96 struct efi_device_path *dp;
97 int i;
98 efi_status_t ret;
99
100 for (i = 0; i < num; i++) {
101 if (removable != efi_disk_is_removable(fs_handles[i]))
102 continue;
103
104 ret = efi_search_protocol(fs_handles[i], &efi_guid_device_path,
105 &handler);
106 if (ret != EFI_SUCCESS)
107 continue;
108
109 dp = handler->protocol_interface;
110 if (!dp)
111 continue;
112
113 dp = efi_dp_append(dp, fp);
114 if (!dp)
115 continue;
116
117 ret = EFI_CALL(efi_load_image(true, efi_root, dp, NULL, 0,
118 handle));
119 efi_free_pool(dp);
120 if (ret == EFI_SUCCESS)
121 return ret;
122 }
123
124 return EFI_NOT_FOUND;
125}
126
127/**
128 * try_load_from_short_path
129 * @fp: file path
130 * @handle: pointer to handle for newly installed image
131 *
132 * Enumerate all the devices which support file system operations,
133 * prepend its media device path to the file path, @fp, and
134 * try to load the file.
135 * This function should be called when handling a short-form path
136 * which is starting with a file device path.
137 *
138 * Return: status code
139 */
140static efi_status_t try_load_from_short_path(struct efi_device_path *fp,
141 efi_handle_t *handle)
142{
143 efi_handle_t *fs_handles;
144 efi_uintn_t num;
145 efi_status_t ret;
146
147 ret = EFI_CALL(efi_locate_handle_buffer(
148 BY_PROTOCOL,
149 &efi_simple_file_system_protocol_guid,
150 NULL,
151 &num, &fs_handles));
152 if (ret != EFI_SUCCESS)
153 return ret;
154 if (!num)
155 return EFI_NOT_FOUND;
156
157 /* removable media first */
158 ret = try_load_from_file_path(fs_handles, num, fp, handle, true);
159 if (ret == EFI_SUCCESS)
160 goto out;
161
162 /* fixed media */
163 ret = try_load_from_file_path(fs_handles, num, fp, handle, false);
164 if (ret == EFI_SUCCESS)
165 goto out;
166
167out:
168 return ret;
169}
170
171/**
Heinrich Schuchardt15621aa2019-07-14 13:20:28 +0200172 * try_load_entry() - try to load image for boot option
173 *
Rob Clark9975fe92017-09-13 18:05:38 -0400174 * Attempt to load load-option number 'n', returning device_path and file_path
Heinrich Schuchardt15621aa2019-07-14 13:20:28 +0200175 * if successful. This checks that the EFI_LOAD_OPTION is active (enabled)
Rob Clark9975fe92017-09-13 18:05:38 -0400176 * and that the specified file to boot exists.
Heinrich Schuchardt15621aa2019-07-14 13:20:28 +0200177 *
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200178 * @n: number of the boot option, e.g. 0x0a13 for Boot0A13
179 * @handle: on return handle for the newly installed image
180 * @load_options: load options set on the loaded image protocol
181 * Return: status code
Rob Clark9975fe92017-09-13 18:05:38 -0400182 */
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200183static efi_status_t try_load_entry(u16 n, efi_handle_t *handle,
184 void **load_options)
Rob Clark9975fe92017-09-13 18:05:38 -0400185{
AKASHI Takahiro1a82b342018-11-05 18:06:41 +0900186 struct efi_load_option lo;
Heinrich Schuchardt4f419962022-04-25 23:35:01 +0200187 u16 varname[9];
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900188 void *load_option;
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200189 efi_uintn_t size;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900190 efi_status_t ret;
Rob Clark9975fe92017-09-13 18:05:38 -0400191
Heinrich Schuchardt4f419962022-04-25 23:35:01 +0200192 efi_create_indexed_name(varname, sizeof(varname), "Boot", n);
Rob Clark9975fe92017-09-13 18:05:38 -0400193
Ilias Apalodimasf4dc1bc2021-03-27 10:56:07 +0200194 load_option = efi_get_var(varname, &efi_global_variable_guid, &size);
Rob Clark9975fe92017-09-13 18:05:38 -0400195 if (!load_option)
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900196 return EFI_LOAD_ERROR;
Rob Clark9975fe92017-09-13 18:05:38 -0400197
Heinrich Schuchardt0e69bcf2020-05-31 22:46:09 +0200198 ret = efi_deserialize_load_option(&lo, load_option, &size);
199 if (ret != EFI_SUCCESS) {
200 log_warning("Invalid load option for %ls\n", varname);
201 goto error;
202 }
Rob Clark9975fe92017-09-13 18:05:38 -0400203
204 if (lo.attributes & LOAD_OPTION_ACTIVE) {
AKASHI Takahiro4e65ca02022-04-28 17:09:39 +0900205 struct efi_device_path *file_path;
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900206 u32 attributes;
Rob Clark9975fe92017-09-13 18:05:38 -0400207
Heinrich Schuchardt7ea79e52022-04-29 07:15:04 +0200208 log_debug("trying to load \"%ls\" from %pD\n", lo.label,
209 lo.file_path);
Rob Clark9975fe92017-09-13 18:05:38 -0400210
AKASHI Takahiro57ad6242022-05-12 11:29:02 +0900211 if (EFI_DP_TYPE(lo.file_path, MEDIA_DEVICE, FILE_PATH)) {
212 /* file_path doesn't contain a device path */
213 ret = try_load_from_short_path(lo.file_path, handle);
214 } else {
215 file_path = expand_media_path(lo.file_path);
216 ret = EFI_CALL(efi_load_image(true, efi_root, file_path,
217 NULL, 0, handle));
218 efi_free_pool(file_path);
219 }
AKASHI Takahiro94e6e552019-05-29 20:54:25 +0200220 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt7a373e52020-05-31 10:07:31 +0200221 log_warning("Loading %ls '%ls' failed\n",
222 varname, lo.label);
Rob Clark9975fe92017-09-13 18:05:38 -0400223 goto error;
AKASHI Takahiro94e6e552019-05-29 20:54:25 +0200224 }
Rob Clark9975fe92017-09-13 18:05:38 -0400225
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900226 attributes = EFI_VARIABLE_BOOTSERVICE_ACCESS |
227 EFI_VARIABLE_RUNTIME_ACCESS;
Simon Glass156ccbc2022-01-23 12:55:12 -0700228 ret = efi_set_variable_int(u"BootCurrent",
Heinrich Schuchardtdda8c712020-06-24 19:09:18 +0200229 &efi_global_variable_guid,
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200230 attributes, sizeof(n), &n, false);
Ilias Apalodimas53f6a5a2021-03-17 21:55:00 +0200231 if (ret != EFI_SUCCESS)
232 goto unload;
233 /* try to register load file2 for initrd's */
234 if (IS_ENABLED(CONFIG_EFI_LOAD_FILE2_INITRD)) {
235 ret = efi_initrd_register();
236 if (ret != EFI_SUCCESS)
237 goto unload;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900238 }
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900239
Heinrich Schuchardt7a373e52020-05-31 10:07:31 +0200240 log_info("Booting: %ls\n", lo.label);
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900241 } else {
242 ret = EFI_LOAD_ERROR;
Rob Clark9975fe92017-09-13 18:05:38 -0400243 }
244
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200245 /* Set load options */
Masahisa Kojimac416f1c2022-09-12 17:33:54 +0900246 if (size >= sizeof(efi_guid_t) &&
247 !guidcmp(lo.optional_data, &efi_guid_bootmenu_auto_generated))
248 size = 0;
249
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200250 if (size) {
251 *load_options = malloc(size);
252 if (!*load_options) {
253 ret = EFI_OUT_OF_RESOURCES;
254 goto error;
255 }
256 memcpy(*load_options, lo.optional_data, size);
257 ret = efi_set_load_options(*handle, size, *load_options);
258 } else {
Heinrich Schuchardte4343112020-12-27 15:46:00 +0100259 *load_options = NULL;
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200260 }
261
Rob Clark9975fe92017-09-13 18:05:38 -0400262error:
263 free(load_option);
264
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900265 return ret;
Ilias Apalodimas53f6a5a2021-03-17 21:55:00 +0200266
267unload:
268 if (EFI_CALL(efi_unload_image(*handle)) != EFI_SUCCESS)
269 log_err("Unloading image failed\n");
270 free(load_option);
271
272 return ret;
Rob Clark9975fe92017-09-13 18:05:38 -0400273}
274
Heinrich Schuchardt15621aa2019-07-14 13:20:28 +0200275/**
276 * efi_bootmgr_load() - try to load from BootNext or BootOrder
277 *
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900278 * Attempt to load from BootNext or in the order specified by BootOrder
279 * EFI variable, the available load-options, finding and returning
280 * the first one that can be loaded successfully.
Heinrich Schuchardt15621aa2019-07-14 13:20:28 +0200281 *
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200282 * @handle: on return handle for the newly installed image
283 * @load_options: load options set on the loaded image protocol
284 * Return: status code
Rob Clark9975fe92017-09-13 18:05:38 -0400285 */
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200286efi_status_t efi_bootmgr_load(efi_handle_t *handle, void **load_options)
Rob Clark9975fe92017-09-13 18:05:38 -0400287{
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900288 u16 bootnext, *bootorder;
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200289 efi_uintn_t size;
Rob Clark9975fe92017-09-13 18:05:38 -0400290 int i, num;
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900291 efi_status_t ret;
Rob Clark9975fe92017-09-13 18:05:38 -0400292
Rob Clark9975fe92017-09-13 18:05:38 -0400293 bs = systab.boottime;
294 rs = systab.runtime;
295
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900296 /* BootNext */
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900297 size = sizeof(bootnext);
Simon Glass156ccbc2022-01-23 12:55:12 -0700298 ret = efi_get_variable_int(u"BootNext",
Heinrich Schuchardtdda8c712020-06-24 19:09:18 +0200299 &efi_global_variable_guid,
300 NULL, &size, &bootnext, NULL);
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900301 if (ret == EFI_SUCCESS || ret == EFI_BUFFER_TOO_SMALL) {
302 /* BootNext does exist here */
303 if (ret == EFI_BUFFER_TOO_SMALL || size != sizeof(u16))
Heinrich Schuchardt7a373e52020-05-31 10:07:31 +0200304 log_err("BootNext must be 16-bit integer\n");
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900305
306 /* delete BootNext */
Simon Glass156ccbc2022-01-23 12:55:12 -0700307 ret = efi_set_variable_int(u"BootNext",
Heinrich Schuchardtdda8c712020-06-24 19:09:18 +0200308 &efi_global_variable_guid,
309 0, 0, NULL, false);
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900310
311 /* load BootNext */
312 if (ret == EFI_SUCCESS) {
313 if (size == sizeof(u16)) {
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200314 ret = try_load_entry(bootnext, handle,
315 load_options);
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900316 if (ret == EFI_SUCCESS)
317 return ret;
Heinrich Schuchardt7a373e52020-05-31 10:07:31 +0200318 log_warning(
319 "Loading from BootNext failed, falling back to BootOrder\n");
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900320 }
321 } else {
Heinrich Schuchardt7a373e52020-05-31 10:07:31 +0200322 log_err("Deleting BootNext failed\n");
AKASHI Takahiro37279ad2019-03-20 09:07:55 +0900323 }
324 }
325
326 /* BootOrder */
Simon Glass156ccbc2022-01-23 12:55:12 -0700327 bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size);
Heinrich Schuchardt33e44972019-02-24 04:44:48 +0100328 if (!bootorder) {
Heinrich Schuchardt7a373e52020-05-31 10:07:31 +0200329 log_info("BootOrder not defined\n");
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900330 ret = EFI_NOT_FOUND;
Rob Clark9975fe92017-09-13 18:05:38 -0400331 goto error;
Heinrich Schuchardt33e44972019-02-24 04:44:48 +0100332 }
Rob Clark9975fe92017-09-13 18:05:38 -0400333
334 num = size / sizeof(uint16_t);
335 for (i = 0; i < num; i++) {
Heinrich Schuchardt7ea79e52022-04-29 07:15:04 +0200336 log_debug("trying to load Boot%04X\n", bootorder[i]);
Heinrich Schuchardt0ad64002020-08-07 17:49:39 +0200337 ret = try_load_entry(bootorder[i], handle, load_options);
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900338 if (ret == EFI_SUCCESS)
Rob Clark9975fe92017-09-13 18:05:38 -0400339 break;
340 }
341
342 free(bootorder);
343
344error:
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900345 return ret;
Rob Clark9975fe92017-09-13 18:05:38 -0400346}