blob: 993bb1139cd525e5c056685c6d86c47ac90d0241 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Rob Clarkc84c1102017-09-13 18:05:38 -04002/*
Heinrich Schuchardt5e96f422018-10-18 21:51:38 +02003 * EFI boot manager
Rob Clarkc84c1102017-09-13 18:05:38 -04004 *
5 * Copyright (c) 2017 Rob Clark
Rob Clarkc84c1102017-09-13 18:05:38 -04006 */
7
Heinrich Schuchardt273df962020-05-31 10:07:31 +02008#define LOG_CATEGORY LOGC_EFI
9
Rob Clarkc84c1102017-09-13 18:05:38 -040010#include <common.h>
11#include <charset.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Rob Clarkc84c1102017-09-13 18:05:38 -040013#include <malloc.h>
AKASHI Takahirofd972f52022-04-28 17:09:39 +090014#include <efi_default_filename.h>
Rob Clarkc84c1102017-09-13 18:05:38 -040015#include <efi_loader.h>
Heinrich Schuchardtf625fed2020-06-24 19:09:18 +020016#include <efi_variable.h>
AKASHI Takahirobd237742018-11-05 18:06:41 +090017#include <asm/unaligned.h>
Rob Clarkc84c1102017-09-13 18:05:38 -040018
19static const struct efi_boot_services *bs;
20static const struct efi_runtime_services *rs;
21
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +090022const efi_guid_t efi_guid_bootmenu_auto_generated =
23 EFICONFIG_AUTO_GENERATED_ENTRY_GUID;
24
Rob Clarkc84c1102017-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 Schuchardt25c6be52020-08-07 17:47:13 +020037/**
AKASHI Takahirofd972f52022-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 Schuchardtff08eac2023-05-13 10:36:21 +020050 struct efi_device_path *rem, *full_path;
AKASHI Takahirofd972f52022-04-28 17:09:39 +090051 efi_handle_t handle;
AKASHI Takahirofd972f52022-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 Schuchardtff08eac2023-05-13 10:36:21 +020061 handle = efi_dp_find_obj(device_path,
62 &efi_simple_file_system_protocol_guid, &rem);
Heinrich Schuchardtf57eacb2022-06-11 05:22:08 +000063 if (handle) {
Heinrich Schuchardt0628e1c2022-06-11 05:22:07 +000064 if (rem->type == DEVICE_PATH_TYPE_END) {
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +020065 full_path = efi_dp_from_file(device_path,
66 "/EFI/BOOT/" BOOTEFI_NAME);
AKASHI Takahirofd972f52022-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 Takahirodac4d092022-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 Schuchardte612ba62019-07-14 13:20:28 +0200172 * try_load_entry() - try to load image for boot option
173 *
Rob Clarkc84c1102017-09-13 18:05:38 -0400174 * Attempt to load load-option number 'n', returning device_path and file_path
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200175 * if successful. This checks that the EFI_LOAD_OPTION is active (enabled)
Rob Clarkc84c1102017-09-13 18:05:38 -0400176 * and that the specified file to boot exists.
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200177 *
Heinrich Schuchardta7647a72020-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 Clarkc84c1102017-09-13 18:05:38 -0400182 */
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200183static efi_status_t try_load_entry(u16 n, efi_handle_t *handle,
184 void **load_options)
Rob Clarkc84c1102017-09-13 18:05:38 -0400185{
AKASHI Takahirobd237742018-11-05 18:06:41 +0900186 struct efi_load_option lo;
Heinrich Schuchardtc79cebe2022-04-25 23:35:01 +0200187 u16 varname[9];
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900188 void *load_option;
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200189 efi_uintn_t size;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900190 efi_status_t ret;
Rob Clarkc84c1102017-09-13 18:05:38 -0400191
Heinrich Schuchardtc79cebe2022-04-25 23:35:01 +0200192 efi_create_indexed_name(varname, sizeof(varname), "Boot", n);
Rob Clarkc84c1102017-09-13 18:05:38 -0400193
Ilias Apalodimasfc4ca6b2021-03-27 10:56:07 +0200194 load_option = efi_get_var(varname, &efi_global_variable_guid, &size);
Rob Clarkc84c1102017-09-13 18:05:38 -0400195 if (!load_option)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900196 return EFI_LOAD_ERROR;
Rob Clarkc84c1102017-09-13 18:05:38 -0400197
Heinrich Schuchardt7ca84f82020-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 Clarkc84c1102017-09-13 18:05:38 -0400203
204 if (lo.attributes & LOAD_OPTION_ACTIVE) {
AKASHI Takahirofd972f52022-04-28 17:09:39 +0900205 struct efi_device_path *file_path;
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900206 u32 attributes;
Rob Clarkc84c1102017-09-13 18:05:38 -0400207
Heinrich Schuchardte07fe5c2022-04-29 07:15:04 +0200208 log_debug("trying to load \"%ls\" from %pD\n", lo.label,
209 lo.file_path);
Rob Clarkc84c1102017-09-13 18:05:38 -0400210
AKASHI Takahirodac4d092022-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 Takahiro15db9ce2019-05-29 20:54:25 +0200220 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200221 log_warning("Loading %ls '%ls' failed\n",
222 varname, lo.label);
Rob Clarkc84c1102017-09-13 18:05:38 -0400223 goto error;
AKASHI Takahiro15db9ce2019-05-29 20:54:25 +0200224 }
Rob Clarkc84c1102017-09-13 18:05:38 -0400225
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900226 attributes = EFI_VARIABLE_BOOTSERVICE_ACCESS |
227 EFI_VARIABLE_RUNTIME_ACCESS;
Simon Glass90975372022-01-23 12:55:12 -0700228 ret = efi_set_variable_int(u"BootCurrent",
Heinrich Schuchardtf625fed2020-06-24 19:09:18 +0200229 &efi_global_variable_guid,
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200230 attributes, sizeof(n), &n, false);
Ilias Apalodimasb307e3d2021-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 Takahiro14ff23b2019-04-19 12:22:35 +0900238 }
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900239
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200240 log_info("Booting: %ls\n", lo.label);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900241 } else {
242 ret = EFI_LOAD_ERROR;
Rob Clarkc84c1102017-09-13 18:05:38 -0400243 }
244
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200245 /* Set load options */
Masahisa Kojima767a9e62022-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 Schuchardta7647a72020-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 Schuchardt7c2a8592020-12-27 15:46:00 +0100259 *load_options = NULL;
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200260 }
261
Rob Clarkc84c1102017-09-13 18:05:38 -0400262error:
263 free(load_option);
264
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900265 return ret;
Ilias Apalodimasb307e3d2021-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 Clarkc84c1102017-09-13 18:05:38 -0400273}
274
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200275/**
276 * efi_bootmgr_load() - try to load from BootNext or BootOrder
277 *
AKASHI Takahiroe6577f92019-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 Schuchardte612ba62019-07-14 13:20:28 +0200281 *
Heinrich Schuchardta7647a72020-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 Clarkc84c1102017-09-13 18:05:38 -0400285 */
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200286efi_status_t efi_bootmgr_load(efi_handle_t *handle, void **load_options)
Rob Clarkc84c1102017-09-13 18:05:38 -0400287{
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900288 u16 bootnext, *bootorder;
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200289 efi_uintn_t size;
Rob Clarkc84c1102017-09-13 18:05:38 -0400290 int i, num;
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900291 efi_status_t ret;
Rob Clarkc84c1102017-09-13 18:05:38 -0400292
Rob Clarkc84c1102017-09-13 18:05:38 -0400293 bs = systab.boottime;
294 rs = systab.runtime;
295
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900296 /* BootNext */
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900297 size = sizeof(bootnext);
Simon Glass90975372022-01-23 12:55:12 -0700298 ret = efi_get_variable_int(u"BootNext",
Heinrich Schuchardtf625fed2020-06-24 19:09:18 +0200299 &efi_global_variable_guid,
300 NULL, &size, &bootnext, NULL);
AKASHI Takahiroe6577f92019-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 Schuchardt273df962020-05-31 10:07:31 +0200304 log_err("BootNext must be 16-bit integer\n");
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900305
306 /* delete BootNext */
Simon Glass90975372022-01-23 12:55:12 -0700307 ret = efi_set_variable_int(u"BootNext",
Heinrich Schuchardtf625fed2020-06-24 19:09:18 +0200308 &efi_global_variable_guid,
309 0, 0, NULL, false);
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900310
311 /* load BootNext */
312 if (ret == EFI_SUCCESS) {
313 if (size == sizeof(u16)) {
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200314 ret = try_load_entry(bootnext, handle,
315 load_options);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900316 if (ret == EFI_SUCCESS)
317 return ret;
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200318 log_warning(
319 "Loading from BootNext failed, falling back to BootOrder\n");
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900320 }
321 } else {
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200322 log_err("Deleting BootNext failed\n");
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900323 }
324 }
325
326 /* BootOrder */
Simon Glass90975372022-01-23 12:55:12 -0700327 bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size);
Heinrich Schuchardt3d2257f2019-02-24 04:44:48 +0100328 if (!bootorder) {
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200329 log_info("BootOrder not defined\n");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900330 ret = EFI_NOT_FOUND;
Rob Clarkc84c1102017-09-13 18:05:38 -0400331 goto error;
Heinrich Schuchardt3d2257f2019-02-24 04:44:48 +0100332 }
Rob Clarkc84c1102017-09-13 18:05:38 -0400333
334 num = size / sizeof(uint16_t);
335 for (i = 0; i < num; i++) {
Heinrich Schuchardte07fe5c2022-04-29 07:15:04 +0200336 log_debug("trying to load Boot%04X\n", bootorder[i]);
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200337 ret = try_load_entry(bootorder[i], handle, load_options);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900338 if (ret == EFI_SUCCESS)
Rob Clarkc84c1102017-09-13 18:05:38 -0400339 break;
340 }
341
342 free(bootorder);
343
344error:
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900345 return ret;
Rob Clarkc84c1102017-09-13 18:05:38 -0400346}
Raymond Mao70a76c52023-06-19 14:22:58 -0700347
348/**
349 * efi_bootmgr_enumerate_boot_option() - enumerate the possible bootable media
350 *
351 * @opt: pointer to the media boot option structure
352 * @volume_handles: pointer to the efi handles
353 * @count: number of efi handle
354 * Return: status code
355 */
356static efi_status_t efi_bootmgr_enumerate_boot_option(struct eficonfig_media_boot_option *opt,
357 efi_handle_t *volume_handles,
358 efi_status_t count)
359{
360 u32 i;
361 struct efi_handler *handler;
362 efi_status_t ret = EFI_SUCCESS;
363
364 for (i = 0; i < count; i++) {
365 u16 *p;
366 u16 dev_name[BOOTMENU_DEVICE_NAME_MAX];
367 char *optional_data;
368 struct efi_load_option lo;
369 char buf[BOOTMENU_DEVICE_NAME_MAX];
370 struct efi_device_path *device_path;
371
372 ret = efi_search_protocol(volume_handles[i], &efi_guid_device_path, &handler);
373 if (ret != EFI_SUCCESS)
374 continue;
375 ret = efi_protocol_open(handler, (void **)&device_path,
376 efi_root, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL);
377 if (ret != EFI_SUCCESS)
378 continue;
379
380 ret = efi_disk_get_device_name(volume_handles[i], buf, BOOTMENU_DEVICE_NAME_MAX);
381 if (ret != EFI_SUCCESS)
382 continue;
383
384 p = dev_name;
385 utf8_utf16_strncpy(&p, buf, strlen(buf));
386
387 lo.label = dev_name;
388 lo.attributes = LOAD_OPTION_ACTIVE;
389 lo.file_path = device_path;
390 lo.file_path_length = efi_dp_size(device_path) + sizeof(END);
391 /*
392 * Set the dedicated guid to optional_data, it is used to identify
393 * the boot option that automatically generated by the bootmenu.
394 * efi_serialize_load_option() expects optional_data is null-terminated
395 * utf8 string, so set the "1234567" string to allocate enough space
396 * to store guid, instead of realloc the load_option.
397 */
398 lo.optional_data = "1234567";
399 opt[i].size = efi_serialize_load_option(&lo, (u8 **)&opt[i].lo);
400 if (!opt[i].size) {
401 ret = EFI_OUT_OF_RESOURCES;
402 goto out;
403 }
404 /* set the guid */
405 optional_data = (char *)opt[i].lo + (opt[i].size - u16_strsize(u"1234567"));
406 memcpy(optional_data, &efi_guid_bootmenu_auto_generated, sizeof(efi_guid_t));
407 }
408
409out:
410 return ret;
411}
412
413/**
414 * efi_bootmgr_delete_invalid_boot_option() - delete non-existing boot option
415 *
416 * @opt: pointer to the media boot option structure
417 * @count: number of media boot option structure
418 * Return: status code
419 */
420static efi_status_t efi_bootmgr_delete_invalid_boot_option(struct eficonfig_media_boot_option *opt,
421 efi_status_t count)
422{
423 efi_uintn_t size;
424 void *load_option;
425 u32 i, list_size = 0;
426 struct efi_load_option lo;
427 u16 *var_name16 = NULL;
428 u16 varname[] = u"Boot####";
429 efi_status_t ret = EFI_SUCCESS;
430 u16 *delete_index_list = NULL, *p;
431 efi_uintn_t buf_size;
432
433 buf_size = 128;
434 var_name16 = malloc(buf_size);
435 if (!var_name16)
436 return EFI_OUT_OF_RESOURCES;
437
438 var_name16[0] = 0;
439 for (;;) {
440 int index;
441 efi_guid_t guid;
442 efi_uintn_t tmp;
443
444 ret = efi_next_variable_name(&buf_size, &var_name16, &guid);
445 if (ret == EFI_NOT_FOUND) {
446 /*
447 * EFI_NOT_FOUND indicates we retrieved all EFI variables.
448 * This should be treated as success.
449 */
450 ret = EFI_SUCCESS;
451 break;
452 }
453
454 if (ret != EFI_SUCCESS)
455 goto out;
456
457 if (!efi_varname_is_load_option(var_name16, &index))
458 continue;
459
460 efi_create_indexed_name(varname, sizeof(varname), "Boot", index);
461 load_option = efi_get_var(varname, &efi_global_variable_guid, &size);
462 if (!load_option)
463 continue;
464
465 tmp = size;
466 ret = efi_deserialize_load_option(&lo, load_option, &size);
467 if (ret != EFI_SUCCESS)
468 goto next;
469
470 if (size >= sizeof(efi_guid_bootmenu_auto_generated) &&
471 !guidcmp(lo.optional_data, &efi_guid_bootmenu_auto_generated)) {
472 for (i = 0; i < count; i++) {
473 if (opt[i].size == tmp &&
474 memcmp(opt[i].lo, load_option, tmp) == 0) {
475 opt[i].exist = true;
476 break;
477 }
478 }
479
480 /*
481 * The entire list of variables must be retrieved by
482 * efi_get_next_variable_name_int() before deleting the invalid
483 * boot option, just save the index here.
484 */
485 if (i == count) {
486 p = realloc(delete_index_list, sizeof(u32) *
487 (list_size + 1));
488 if (!p) {
489 ret = EFI_OUT_OF_RESOURCES;
490 goto out;
491 }
492 delete_index_list = p;
493 delete_index_list[list_size++] = index;
494 }
495 }
496next:
497 free(load_option);
498 }
499
500 /* delete all invalid boot options */
501 for (i = 0; i < list_size; i++) {
502 ret = efi_bootmgr_delete_boot_option(delete_index_list[i]);
503 if (ret != EFI_SUCCESS)
504 goto out;
505 }
506
507out:
508 free(var_name16);
509 free(delete_index_list);
510
511 return ret;
512}
513
514/**
515 * efi_bootmgr_get_unused_bootoption() - get unused "Boot####" index
516 *
517 * @buf: pointer to the buffer to store boot option variable name
518 * @buf_size: buffer size
519 * @index: pointer to store the index in the BootOrder variable
520 * Return: status code
521 */
522efi_status_t efi_bootmgr_get_unused_bootoption(u16 *buf, efi_uintn_t buf_size,
523 unsigned int *index)
524{
525 u32 i;
526 efi_status_t ret;
527 efi_uintn_t size;
528
529 if (buf_size < u16_strsize(u"Boot####"))
530 return EFI_BUFFER_TOO_SMALL;
531
532 for (i = 0; i <= 0xFFFF; i++) {
533 size = 0;
534 efi_create_indexed_name(buf, buf_size, "Boot", i);
535 ret = efi_get_variable_int(buf, &efi_global_variable_guid,
536 NULL, &size, NULL, NULL);
537 if (ret == EFI_BUFFER_TOO_SMALL)
538 continue;
539 else
540 break;
541 }
542
543 if (i > 0xFFFF)
544 return EFI_OUT_OF_RESOURCES;
545
546 *index = i;
547
548 return EFI_SUCCESS;
549}
550
551/**
552 * efi_bootmgr_append_bootorder() - append new boot option in BootOrder variable
553 *
554 * @index: "Boot####" index to append to BootOrder variable
555 * Return: status code
556 */
557efi_status_t efi_bootmgr_append_bootorder(u16 index)
558{
559 u16 *bootorder;
560 efi_status_t ret;
561 u16 *new_bootorder = NULL;
562 efi_uintn_t last, size, new_size;
563
564 /* append new boot option */
565 bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size);
566 last = size / sizeof(u16);
567 new_size = size + sizeof(u16);
568 new_bootorder = calloc(1, new_size);
569 if (!new_bootorder) {
570 ret = EFI_OUT_OF_RESOURCES;
571 goto out;
572 }
573 memcpy(new_bootorder, bootorder, size);
574 new_bootorder[last] = index;
575
576 ret = efi_set_variable_int(u"BootOrder", &efi_global_variable_guid,
577 EFI_VARIABLE_NON_VOLATILE |
578 EFI_VARIABLE_BOOTSERVICE_ACCESS |
579 EFI_VARIABLE_RUNTIME_ACCESS,
580 new_size, new_bootorder, false);
581 if (ret != EFI_SUCCESS)
582 goto out;
583
584out:
585 free(bootorder);
586 free(new_bootorder);
587
588 return ret;
589}
590
591/**
592 * efi_bootmgr_delete_boot_option() - delete selected boot option
593 *
594 * @boot_index: boot option index to delete
595 * Return: status code
596 */
597efi_status_t efi_bootmgr_delete_boot_option(u16 boot_index)
598{
599 u16 *bootorder;
600 u16 varname[9];
601 efi_status_t ret;
602 unsigned int index;
603 efi_uintn_t num, size;
604
605 efi_create_indexed_name(varname, sizeof(varname),
606 "Boot", boot_index);
607 ret = efi_set_variable_int(varname, &efi_global_variable_guid,
608 0, 0, NULL, false);
609 if (ret != EFI_SUCCESS) {
610 log_err("delete boot option(%ls) failed\n", varname);
611 return ret;
612 }
613
614 /* update BootOrder if necessary */
615 bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size);
616 if (!bootorder)
617 return EFI_SUCCESS;
618
619 num = size / sizeof(u16);
620 if (!efi_search_bootorder(bootorder, num, boot_index, &index))
621 return EFI_SUCCESS;
622
623 memmove(&bootorder[index], &bootorder[index + 1],
624 (num - index - 1) * sizeof(u16));
625 size -= sizeof(u16);
626 ret = efi_set_variable_int(u"BootOrder", &efi_global_variable_guid,
627 EFI_VARIABLE_NON_VOLATILE |
628 EFI_VARIABLE_BOOTSERVICE_ACCESS |
629 EFI_VARIABLE_RUNTIME_ACCESS,
630 size, bootorder, false);
631
632 return ret;
633}
634
635/**
636 * efi_bootmgr_update_media_device_boot_option() - generate the media device boot option
637 *
638 * This function enumerates all devices supporting EFI_SIMPLE_FILE_SYSTEM_PROTOCOL
639 * and generate the bootmenu entries.
640 * This function also provide the BOOT#### variable maintenance for
641 * the media device entries.
642 * - Automatically create the BOOT#### variable for the newly detected device,
643 * this BOOT#### variable is distinguished by the special GUID
644 * stored in the EFI_LOAD_OPTION.optional_data
645 * - If the device is not attached to the system, the associated BOOT#### variable
646 * is automatically deleted.
647 *
648 * Return: status code
649 */
650efi_status_t efi_bootmgr_update_media_device_boot_option(void)
651{
652 u32 i;
653 efi_status_t ret;
654 efi_uintn_t count;
655 efi_handle_t *volume_handles = NULL;
656 struct eficonfig_media_boot_option *opt = NULL;
657
658 ret = efi_locate_handle_buffer_int(BY_PROTOCOL,
659 &efi_simple_file_system_protocol_guid,
660 NULL, &count,
661 (efi_handle_t **)&volume_handles);
662 if (ret != EFI_SUCCESS)
Raymond Maoa35784d2023-06-19 14:22:59 -0700663 goto out;
Raymond Mao70a76c52023-06-19 14:22:58 -0700664
665 opt = calloc(count, sizeof(struct eficonfig_media_boot_option));
Raymond Maoa35784d2023-06-19 14:22:59 -0700666 if (!opt) {
667 ret = EFI_OUT_OF_RESOURCES;
Raymond Mao70a76c52023-06-19 14:22:58 -0700668 goto out;
Raymond Maoa35784d2023-06-19 14:22:59 -0700669 }
Raymond Mao70a76c52023-06-19 14:22:58 -0700670
671 /* enumerate all devices supporting EFI_SIMPLE_FILE_SYSTEM_PROTOCOL */
672 ret = efi_bootmgr_enumerate_boot_option(opt, volume_handles, count);
673 if (ret != EFI_SUCCESS)
674 goto out;
675
676 /*
677 * System hardware configuration may vary depending on the user setup.
678 * The boot option is automatically added by the bootmenu.
679 * If the device is not attached to the system, the boot option needs
680 * to be deleted.
681 */
682 ret = efi_bootmgr_delete_invalid_boot_option(opt, count);
683 if (ret != EFI_SUCCESS)
684 goto out;
685
686 /* add non-existent boot option */
687 for (i = 0; i < count; i++) {
688 u32 boot_index;
689 u16 var_name[9];
690
691 if (!opt[i].exist) {
692 ret = efi_bootmgr_get_unused_bootoption(var_name, sizeof(var_name),
693 &boot_index);
694 if (ret != EFI_SUCCESS)
695 goto out;
696
697 ret = efi_set_variable_int(var_name, &efi_global_variable_guid,
698 EFI_VARIABLE_NON_VOLATILE |
699 EFI_VARIABLE_BOOTSERVICE_ACCESS |
700 EFI_VARIABLE_RUNTIME_ACCESS,
701 opt[i].size, opt[i].lo, false);
702 if (ret != EFI_SUCCESS)
703 goto out;
704
705 ret = efi_bootmgr_append_bootorder(boot_index);
706 if (ret != EFI_SUCCESS) {
707 efi_set_variable_int(var_name, &efi_global_variable_guid,
708 0, 0, NULL, false);
709 goto out;
710 }
711 }
712 }
713
714out:
715 if (opt) {
716 for (i = 0; i < count; i++)
717 free(opt[i].lo);
718 }
719 free(opt);
720 efi_free_pool(volume_handles);
721
Raymond Maoa35784d2023-06-19 14:22:59 -0700722 if (ret == EFI_NOT_FOUND)
723 return EFI_SUCCESS;
Raymond Mao70a76c52023-06-19 14:22:58 -0700724 return ret;
725}