Tom Rini | 70df9d6 | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 2 | /* |
Heinrich Schuchardt | 5e96f42 | 2018-10-18 21:51:38 +0200 | [diff] [blame] | 3 | * EFI boot manager |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2017 Rob Clark |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 6 | */ |
| 7 | |
Heinrich Schuchardt | 273df96 | 2020-05-31 10:07:31 +0200 | [diff] [blame] | 8 | #define LOG_CATEGORY LOGC_EFI |
| 9 | |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 10 | #include <common.h> |
| 11 | #include <charset.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 13 | #include <malloc.h> |
AKASHI Takahiro | fd972f5 | 2022-04-28 17:09:39 +0900 | [diff] [blame] | 14 | #include <efi_default_filename.h> |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 15 | #include <efi_loader.h> |
Heinrich Schuchardt | f625fed | 2020-06-24 19:09:18 +0200 | [diff] [blame] | 16 | #include <efi_variable.h> |
AKASHI Takahiro | bd23774 | 2018-11-05 18:06:41 +0900 | [diff] [blame] | 17 | #include <asm/unaligned.h> |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 18 | |
| 19 | static const struct efi_boot_services *bs; |
| 20 | static const struct efi_runtime_services *rs; |
| 21 | |
Masahisa Kojima | c5ff0a0 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 22 | const efi_guid_t efi_guid_bootmenu_auto_generated = |
| 23 | EFICONFIG_AUTO_GENERATED_ENTRY_GUID; |
| 24 | |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 25 | /* |
| 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 Schuchardt | 25c6be5 | 2020-08-07 17:47:13 +0200 | [diff] [blame] | 37 | /** |
AKASHI Takahiro | fd972f5 | 2022-04-28 17:09:39 +0900 | [diff] [blame] | 38 | * 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 | */ |
| 47 | static |
| 48 | struct efi_device_path *expand_media_path(struct efi_device_path *device_path) |
| 49 | { |
Heinrich Schuchardt | ff08eac | 2023-05-13 10:36:21 +0200 | [diff] [blame] | 50 | struct efi_device_path *rem, *full_path; |
AKASHI Takahiro | fd972f5 | 2022-04-28 17:09:39 +0900 | [diff] [blame] | 51 | efi_handle_t handle; |
AKASHI Takahiro | fd972f5 | 2022-04-28 17:09:39 +0900 | [diff] [blame] | 52 | |
| 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 Schuchardt | ff08eac | 2023-05-13 10:36:21 +0200 | [diff] [blame] | 61 | handle = efi_dp_find_obj(device_path, |
| 62 | &efi_simple_file_system_protocol_guid, &rem); |
Heinrich Schuchardt | f57eacb | 2022-06-11 05:22:08 +0000 | [diff] [blame] | 63 | if (handle) { |
Heinrich Schuchardt | 0628e1c | 2022-06-11 05:22:07 +0000 | [diff] [blame] | 64 | if (rem->type == DEVICE_PATH_TYPE_END) { |
Heinrich Schuchardt | ff08eac | 2023-05-13 10:36:21 +0200 | [diff] [blame] | 65 | full_path = efi_dp_from_file(device_path, |
| 66 | "/EFI/BOOT/" BOOTEFI_NAME); |
AKASHI Takahiro | fd972f5 | 2022-04-28 17:09:39 +0900 | [diff] [blame] | 67 | } 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 Takahiro | dac4d09 | 2022-05-12 11:29:02 +0900 | [diff] [blame] | 78 | * 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 | */ |
| 89 | static 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 | */ |
| 140 | static 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 | |
| 167 | out: |
| 168 | return ret; |
| 169 | } |
| 170 | |
| 171 | /** |
Heinrich Schuchardt | e612ba6 | 2019-07-14 13:20:28 +0200 | [diff] [blame] | 172 | * try_load_entry() - try to load image for boot option |
| 173 | * |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 174 | * Attempt to load load-option number 'n', returning device_path and file_path |
Heinrich Schuchardt | e612ba6 | 2019-07-14 13:20:28 +0200 | [diff] [blame] | 175 | * if successful. This checks that the EFI_LOAD_OPTION is active (enabled) |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 176 | * and that the specified file to boot exists. |
Heinrich Schuchardt | e612ba6 | 2019-07-14 13:20:28 +0200 | [diff] [blame] | 177 | * |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 178 | * @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 Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 182 | */ |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 183 | static efi_status_t try_load_entry(u16 n, efi_handle_t *handle, |
| 184 | void **load_options) |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 185 | { |
AKASHI Takahiro | bd23774 | 2018-11-05 18:06:41 +0900 | [diff] [blame] | 186 | struct efi_load_option lo; |
Heinrich Schuchardt | c79cebe | 2022-04-25 23:35:01 +0200 | [diff] [blame] | 187 | u16 varname[9]; |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 188 | void *load_option; |
Heinrich Schuchardt | d6a6baa | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 189 | efi_uintn_t size; |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 190 | efi_status_t ret; |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 191 | |
Heinrich Schuchardt | c79cebe | 2022-04-25 23:35:01 +0200 | [diff] [blame] | 192 | efi_create_indexed_name(varname, sizeof(varname), "Boot", n); |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 193 | |
Ilias Apalodimas | fc4ca6b | 2021-03-27 10:56:07 +0200 | [diff] [blame] | 194 | load_option = efi_get_var(varname, &efi_global_variable_guid, &size); |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 195 | if (!load_option) |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 196 | return EFI_LOAD_ERROR; |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 197 | |
Heinrich Schuchardt | 7ca84f8 | 2020-05-31 22:46:09 +0200 | [diff] [blame] | 198 | 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 Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 203 | |
| 204 | if (lo.attributes & LOAD_OPTION_ACTIVE) { |
AKASHI Takahiro | fd972f5 | 2022-04-28 17:09:39 +0900 | [diff] [blame] | 205 | struct efi_device_path *file_path; |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 206 | u32 attributes; |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 207 | |
Heinrich Schuchardt | e07fe5c | 2022-04-29 07:15:04 +0200 | [diff] [blame] | 208 | log_debug("trying to load \"%ls\" from %pD\n", lo.label, |
| 209 | lo.file_path); |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 210 | |
AKASHI Takahiro | dac4d09 | 2022-05-12 11:29:02 +0900 | [diff] [blame] | 211 | 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 Takahiro | 15db9ce | 2019-05-29 20:54:25 +0200 | [diff] [blame] | 220 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | 273df96 | 2020-05-31 10:07:31 +0200 | [diff] [blame] | 221 | log_warning("Loading %ls '%ls' failed\n", |
| 222 | varname, lo.label); |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 223 | goto error; |
AKASHI Takahiro | 15db9ce | 2019-05-29 20:54:25 +0200 | [diff] [blame] | 224 | } |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 225 | |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 226 | attributes = EFI_VARIABLE_BOOTSERVICE_ACCESS | |
| 227 | EFI_VARIABLE_RUNTIME_ACCESS; |
Simon Glass | 9097537 | 2022-01-23 12:55:12 -0700 | [diff] [blame] | 228 | ret = efi_set_variable_int(u"BootCurrent", |
Heinrich Schuchardt | f625fed | 2020-06-24 19:09:18 +0200 | [diff] [blame] | 229 | &efi_global_variable_guid, |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 230 | attributes, sizeof(n), &n, false); |
Ilias Apalodimas | b307e3d | 2021-03-17 21:55:00 +0200 | [diff] [blame] | 231 | 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 Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 238 | } |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 239 | |
Heinrich Schuchardt | 273df96 | 2020-05-31 10:07:31 +0200 | [diff] [blame] | 240 | log_info("Booting: %ls\n", lo.label); |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 241 | } else { |
| 242 | ret = EFI_LOAD_ERROR; |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 243 | } |
| 244 | |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 245 | /* Set load options */ |
Masahisa Kojima | 767a9e6 | 2022-09-12 17:33:54 +0900 | [diff] [blame] | 246 | if (size >= sizeof(efi_guid_t) && |
| 247 | !guidcmp(lo.optional_data, &efi_guid_bootmenu_auto_generated)) |
| 248 | size = 0; |
| 249 | |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 250 | 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 Schuchardt | 7c2a859 | 2020-12-27 15:46:00 +0100 | [diff] [blame] | 259 | *load_options = NULL; |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 260 | } |
| 261 | |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 262 | error: |
| 263 | free(load_option); |
| 264 | |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 265 | return ret; |
Ilias Apalodimas | b307e3d | 2021-03-17 21:55:00 +0200 | [diff] [blame] | 266 | |
| 267 | unload: |
| 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 Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 273 | } |
| 274 | |
Heinrich Schuchardt | e612ba6 | 2019-07-14 13:20:28 +0200 | [diff] [blame] | 275 | /** |
| 276 | * efi_bootmgr_load() - try to load from BootNext or BootOrder |
| 277 | * |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 278 | * 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 Schuchardt | e612ba6 | 2019-07-14 13:20:28 +0200 | [diff] [blame] | 281 | * |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 282 | * @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 Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 285 | */ |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 286 | efi_status_t efi_bootmgr_load(efi_handle_t *handle, void **load_options) |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 287 | { |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 288 | u16 bootnext, *bootorder; |
Heinrich Schuchardt | d6a6baa | 2018-05-17 07:57:05 +0200 | [diff] [blame] | 289 | efi_uintn_t size; |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 290 | int i, num; |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 291 | efi_status_t ret; |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 292 | |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 293 | bs = systab.boottime; |
| 294 | rs = systab.runtime; |
| 295 | |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 296 | /* BootNext */ |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 297 | size = sizeof(bootnext); |
Simon Glass | 9097537 | 2022-01-23 12:55:12 -0700 | [diff] [blame] | 298 | ret = efi_get_variable_int(u"BootNext", |
Heinrich Schuchardt | f625fed | 2020-06-24 19:09:18 +0200 | [diff] [blame] | 299 | &efi_global_variable_guid, |
| 300 | NULL, &size, &bootnext, NULL); |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 301 | 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 Schuchardt | 273df96 | 2020-05-31 10:07:31 +0200 | [diff] [blame] | 304 | log_err("BootNext must be 16-bit integer\n"); |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 305 | |
| 306 | /* delete BootNext */ |
Simon Glass | 9097537 | 2022-01-23 12:55:12 -0700 | [diff] [blame] | 307 | ret = efi_set_variable_int(u"BootNext", |
Heinrich Schuchardt | f625fed | 2020-06-24 19:09:18 +0200 | [diff] [blame] | 308 | &efi_global_variable_guid, |
| 309 | 0, 0, NULL, false); |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 310 | |
| 311 | /* load BootNext */ |
| 312 | if (ret == EFI_SUCCESS) { |
| 313 | if (size == sizeof(u16)) { |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 314 | ret = try_load_entry(bootnext, handle, |
| 315 | load_options); |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 316 | if (ret == EFI_SUCCESS) |
| 317 | return ret; |
Heinrich Schuchardt | 273df96 | 2020-05-31 10:07:31 +0200 | [diff] [blame] | 318 | log_warning( |
| 319 | "Loading from BootNext failed, falling back to BootOrder\n"); |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 320 | } |
| 321 | } else { |
Heinrich Schuchardt | 273df96 | 2020-05-31 10:07:31 +0200 | [diff] [blame] | 322 | log_err("Deleting BootNext failed\n"); |
AKASHI Takahiro | e6577f9 | 2019-03-20 09:07:55 +0900 | [diff] [blame] | 323 | } |
| 324 | } |
| 325 | |
| 326 | /* BootOrder */ |
Simon Glass | 9097537 | 2022-01-23 12:55:12 -0700 | [diff] [blame] | 327 | bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size); |
Heinrich Schuchardt | 3d2257f | 2019-02-24 04:44:48 +0100 | [diff] [blame] | 328 | if (!bootorder) { |
Heinrich Schuchardt | 273df96 | 2020-05-31 10:07:31 +0200 | [diff] [blame] | 329 | log_info("BootOrder not defined\n"); |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 330 | ret = EFI_NOT_FOUND; |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 331 | goto error; |
Heinrich Schuchardt | 3d2257f | 2019-02-24 04:44:48 +0100 | [diff] [blame] | 332 | } |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 333 | |
| 334 | num = size / sizeof(uint16_t); |
| 335 | for (i = 0; i < num; i++) { |
Heinrich Schuchardt | e07fe5c | 2022-04-29 07:15:04 +0200 | [diff] [blame] | 336 | log_debug("trying to load Boot%04X\n", bootorder[i]); |
Heinrich Schuchardt | a7647a7 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 337 | ret = try_load_entry(bootorder[i], handle, load_options); |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 338 | if (ret == EFI_SUCCESS) |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 339 | break; |
| 340 | } |
| 341 | |
| 342 | free(bootorder); |
| 343 | |
| 344 | error: |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 345 | return ret; |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 346 | } |
Raymond Mao | 70a76c5 | 2023-06-19 14:22:58 -0700 | [diff] [blame] | 347 | |
| 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 | */ |
| 356 | static 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 | |
| 409 | out: |
| 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 | */ |
| 420 | static 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 | } |
| 496 | next: |
| 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 | |
| 507 | out: |
| 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 | */ |
| 522 | efi_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 | */ |
| 557 | efi_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 | |
| 584 | out: |
| 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 | */ |
| 597 | efi_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 | */ |
| 650 | efi_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 Mao | a35784d | 2023-06-19 14:22:59 -0700 | [diff] [blame^] | 663 | goto out; |
Raymond Mao | 70a76c5 | 2023-06-19 14:22:58 -0700 | [diff] [blame] | 664 | |
| 665 | opt = calloc(count, sizeof(struct eficonfig_media_boot_option)); |
Raymond Mao | a35784d | 2023-06-19 14:22:59 -0700 | [diff] [blame^] | 666 | if (!opt) { |
| 667 | ret = EFI_OUT_OF_RESOURCES; |
Raymond Mao | 70a76c5 | 2023-06-19 14:22:58 -0700 | [diff] [blame] | 668 | goto out; |
Raymond Mao | a35784d | 2023-06-19 14:22:59 -0700 | [diff] [blame^] | 669 | } |
Raymond Mao | 70a76c5 | 2023-06-19 14:22:58 -0700 | [diff] [blame] | 670 | |
| 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 | |
| 714 | out: |
| 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 Mao | a35784d | 2023-06-19 14:22:59 -0700 | [diff] [blame^] | 722 | if (ret == EFI_NOT_FOUND) |
| 723 | return EFI_SUCCESS; |
Raymond Mao | 70a76c5 | 2023-06-19 14:22:58 -0700 | [diff] [blame] | 724 | return ret; |
| 725 | } |