blob: e268e9c4b823eb678f9ac37b2bfdb8e79f606ec5 [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>
14#include <efi_loader.h>
AKASHI Takahirobd237742018-11-05 18:06:41 +090015#include <asm/unaligned.h>
Rob Clarkc84c1102017-09-13 18:05:38 -040016
17static const struct efi_boot_services *bs;
18static const struct efi_runtime_services *rs;
19
Rob Clarkc84c1102017-09-13 18:05:38 -040020/*
21 * bootmgr implements the logic of trying to find a payload to boot
22 * based on the BootOrder + BootXXXX variables, and then loading it.
23 *
24 * TODO detecting a special key held (f9?) and displaying a boot menu
25 * like you would get on a PC would be clever.
26 *
27 * TODO if we had a way to write and persist variables after the OS
28 * has started, we'd also want to check OsIndications to see if we
29 * should do normal or recovery boot.
30 */
31
32
Heinrich Schuchardte612ba62019-07-14 13:20:28 +020033/**
34 * efi_deserialize_load_option() - parse serialized data
35 *
36 * Parse serialized data describing a load option and transform it to the
37 * efi_load_option structure.
38 *
39 * @lo: pointer to target
40 * @data: serialized data
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020041 * @size: size of the load option, on return size of the optional data
42 * Return: status code
Heinrich Schuchardte612ba62019-07-14 13:20:28 +020043 */
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020044efi_status_t efi_deserialize_load_option(struct efi_load_option *lo, u8 *data,
45 efi_uintn_t *size)
AKASHI Takahirobd237742018-11-05 18:06:41 +090046{
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020047 efi_uintn_t len;
48
49 len = sizeof(u32);
50 if (*size < len + 2 * sizeof(u16))
51 return EFI_INVALID_PARAMETER;
AKASHI Takahirobd237742018-11-05 18:06:41 +090052 lo->attributes = get_unaligned_le32(data);
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020053 data += len;
54 *size -= len;
AKASHI Takahirobd237742018-11-05 18:06:41 +090055
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020056 len = sizeof(u16);
AKASHI Takahirobd237742018-11-05 18:06:41 +090057 lo->file_path_length = get_unaligned_le16(data);
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020058 data += len;
59 *size -= len;
AKASHI Takahirobd237742018-11-05 18:06:41 +090060
AKASHI Takahirobd237742018-11-05 18:06:41 +090061 lo->label = (u16 *)data;
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020062 len = u16_strnlen(lo->label, *size / sizeof(u16) - 1);
63 if (lo->label[len])
64 return EFI_INVALID_PARAMETER;
65 len = (len + 1) * sizeof(u16);
66 if (*size < len)
67 return EFI_INVALID_PARAMETER;
68 data += len;
69 *size -= len;
AKASHI Takahirobd237742018-11-05 18:06:41 +090070
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020071 len = lo->file_path_length;
72 if (*size < len)
73 return EFI_INVALID_PARAMETER;
AKASHI Takahirobd237742018-11-05 18:06:41 +090074 lo->file_path = (struct efi_device_path *)data;
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020075 /*
76 * TODO: validate device path. There should be an end node within
77 * the indicated file_path_length.
78 */
79 data += len;
80 *size -= len;
AKASHI Takahirobd237742018-11-05 18:06:41 +090081
82 lo->optional_data = data;
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +020083
84 return EFI_SUCCESS;
AKASHI Takahirobd237742018-11-05 18:06:41 +090085}
86
Heinrich Schuchardte612ba62019-07-14 13:20:28 +020087/**
88 * efi_serialize_load_option() - serialize load option
89 *
AKASHI Takahirobd237742018-11-05 18:06:41 +090090 * Serialize efi_load_option structure into byte stream for BootXXXX.
Heinrich Schuchardte612ba62019-07-14 13:20:28 +020091 *
92 * @data: buffer for serialized data
93 * @lo: load option
94 * Return: size of allocated buffer
Rob Clarkc84c1102017-09-13 18:05:38 -040095 */
AKASHI Takahirobd237742018-11-05 18:06:41 +090096unsigned long efi_serialize_load_option(struct efi_load_option *lo, u8 **data)
Rob Clarkc84c1102017-09-13 18:05:38 -040097{
Heinrich Schuchardt9df002e2019-04-29 13:51:45 +020098 unsigned long label_len;
AKASHI Takahirobd237742018-11-05 18:06:41 +090099 unsigned long size;
100 u8 *p;
101
102 label_len = (u16_strlen(lo->label) + 1) * sizeof(u16);
Rob Clarkc84c1102017-09-13 18:05:38 -0400103
AKASHI Takahirobd237742018-11-05 18:06:41 +0900104 /* total size */
105 size = sizeof(lo->attributes);
106 size += sizeof(lo->file_path_length);
107 size += label_len;
108 size += lo->file_path_length;
Heinrich Schuchardt9df002e2019-04-29 13:51:45 +0200109 if (lo->optional_data)
110 size += (utf8_utf16_strlen((const char *)lo->optional_data)
111 + 1) * sizeof(u16);
AKASHI Takahirobd237742018-11-05 18:06:41 +0900112 p = malloc(size);
113 if (!p)
114 return 0;
Rob Clarkc84c1102017-09-13 18:05:38 -0400115
AKASHI Takahirobd237742018-11-05 18:06:41 +0900116 /* copy data */
117 *data = p;
118 memcpy(p, &lo->attributes, sizeof(lo->attributes));
119 p += sizeof(lo->attributes);
Rob Clarkc84c1102017-09-13 18:05:38 -0400120
AKASHI Takahirobd237742018-11-05 18:06:41 +0900121 memcpy(p, &lo->file_path_length, sizeof(lo->file_path_length));
122 p += sizeof(lo->file_path_length);
Rob Clarkc84c1102017-09-13 18:05:38 -0400123
AKASHI Takahirobd237742018-11-05 18:06:41 +0900124 memcpy(p, lo->label, label_len);
125 p += label_len;
126
127 memcpy(p, lo->file_path, lo->file_path_length);
128 p += lo->file_path_length;
129
Heinrich Schuchardt9df002e2019-04-29 13:51:45 +0200130 if (lo->optional_data) {
131 utf8_utf16_strcpy((u16 **)&p, (const char *)lo->optional_data);
132 p += sizeof(u16); /* size of trailing \0 */
133 }
AKASHI Takahirobd237742018-11-05 18:06:41 +0900134 return size;
Rob Clarkc84c1102017-09-13 18:05:38 -0400135}
136
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200137/**
138 * get_var() - get UEFI variable
139 *
140 * It is the caller's duty to free the returned buffer.
141 *
142 * @name: name of variable
143 * @vendor: vendor GUID of variable
144 * @size: size of allocated buffer
145 * Return: buffer with variable data or NULL
146 */
Rob Clarkc84c1102017-09-13 18:05:38 -0400147static void *get_var(u16 *name, const efi_guid_t *vendor,
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200148 efi_uintn_t *size)
Rob Clarkc84c1102017-09-13 18:05:38 -0400149{
150 efi_guid_t *v = (efi_guid_t *)vendor;
151 efi_status_t ret;
152 void *buf = NULL;
153
154 *size = 0;
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200155 EFI_CALL(ret = rs->get_variable(name, v, NULL, size, buf));
Rob Clarkc84c1102017-09-13 18:05:38 -0400156 if (ret == EFI_BUFFER_TOO_SMALL) {
157 buf = malloc(*size);
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200158 EFI_CALL(ret = rs->get_variable(name, v, NULL, size, buf));
Rob Clarkc84c1102017-09-13 18:05:38 -0400159 }
160
161 if (ret != EFI_SUCCESS) {
162 free(buf);
163 *size = 0;
164 return NULL;
165 }
166
167 return buf;
168}
169
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200170/**
171 * try_load_entry() - try to load image for boot option
172 *
Rob Clarkc84c1102017-09-13 18:05:38 -0400173 * Attempt to load load-option number 'n', returning device_path and file_path
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200174 * if successful. This checks that the EFI_LOAD_OPTION is active (enabled)
Rob Clarkc84c1102017-09-13 18:05:38 -0400175 * and that the specified file to boot exists.
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200176 *
177 * @n: number of the boot option, e.g. 0x0a13 for Boot0A13
178 * @handle: on return handle for the newly installed image
179 * Return: status code
Rob Clarkc84c1102017-09-13 18:05:38 -0400180 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900181static efi_status_t try_load_entry(u16 n, efi_handle_t *handle)
Rob Clarkc84c1102017-09-13 18:05:38 -0400182{
AKASHI Takahirobd237742018-11-05 18:06:41 +0900183 struct efi_load_option lo;
Rob Clarkc84c1102017-09-13 18:05:38 -0400184 u16 varname[] = L"Boot0000";
185 u16 hexmap[] = L"0123456789ABCDEF";
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900186 void *load_option;
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200187 efi_uintn_t size;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900188 efi_status_t ret;
Rob Clarkc84c1102017-09-13 18:05:38 -0400189
190 varname[4] = hexmap[(n & 0xf000) >> 12];
191 varname[5] = hexmap[(n & 0x0f00) >> 8];
192 varname[6] = hexmap[(n & 0x00f0) >> 4];
193 varname[7] = hexmap[(n & 0x000f) >> 0];
194
195 load_option = get_var(varname, &efi_global_variable_guid, &size);
196 if (!load_option)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900197 return EFI_LOAD_ERROR;
Rob Clarkc84c1102017-09-13 18:05:38 -0400198
Heinrich Schuchardt7ca84f82020-05-31 22:46:09 +0200199 ret = efi_deserialize_load_option(&lo, load_option, &size);
200 if (ret != EFI_SUCCESS) {
201 log_warning("Invalid load option for %ls\n", varname);
202 goto error;
203 }
Rob Clarkc84c1102017-09-13 18:05:38 -0400204
205 if (lo.attributes & LOAD_OPTION_ACTIVE) {
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900206 u32 attributes;
Rob Clarkc84c1102017-09-13 18:05:38 -0400207
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200208 log_debug("%s: trying to load \"%ls\" from %pD\n",
209 __func__, lo.label, lo.file_path);
Rob Clarkc84c1102017-09-13 18:05:38 -0400210
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900211 ret = EFI_CALL(efi_load_image(true, efi_root, lo.file_path,
212 NULL, 0, handle));
AKASHI Takahiro15db9ce2019-05-29 20:54:25 +0200213 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200214 log_warning("Loading %ls '%ls' failed\n",
215 varname, lo.label);
Rob Clarkc84c1102017-09-13 18:05:38 -0400216 goto error;
AKASHI Takahiro15db9ce2019-05-29 20:54:25 +0200217 }
Rob Clarkc84c1102017-09-13 18:05:38 -0400218
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900219 attributes = EFI_VARIABLE_BOOTSERVICE_ACCESS |
220 EFI_VARIABLE_RUNTIME_ACCESS;
221 size = sizeof(n);
222 ret = EFI_CALL(efi_set_variable(
223 L"BootCurrent",
224 (efi_guid_t *)&efi_global_variable_guid,
225 attributes, size, &n));
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900226 if (ret != EFI_SUCCESS) {
227 if (EFI_CALL(efi_unload_image(*handle))
228 != EFI_SUCCESS)
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200229 log_err("Unloading image failed\n");
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900230 goto error;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900231 }
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900232
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200233 log_info("Booting: %ls\n", lo.label);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900234 } else {
235 ret = EFI_LOAD_ERROR;
Rob Clarkc84c1102017-09-13 18:05:38 -0400236 }
237
238error:
239 free(load_option);
240
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900241 return ret;
Rob Clarkc84c1102017-09-13 18:05:38 -0400242}
243
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200244/**
245 * efi_bootmgr_load() - try to load from BootNext or BootOrder
246 *
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900247 * Attempt to load from BootNext or in the order specified by BootOrder
248 * EFI variable, the available load-options, finding and returning
249 * the first one that can be loaded successfully.
Heinrich Schuchardte612ba62019-07-14 13:20:28 +0200250 *
251 * @handle: on return handle for the newly installed image
252 * Return: status code
Rob Clarkc84c1102017-09-13 18:05:38 -0400253 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900254efi_status_t efi_bootmgr_load(efi_handle_t *handle)
Rob Clarkc84c1102017-09-13 18:05:38 -0400255{
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900256 u16 bootnext, *bootorder;
Heinrich Schuchardtd6a6baa2018-05-17 07:57:05 +0200257 efi_uintn_t size;
Rob Clarkc84c1102017-09-13 18:05:38 -0400258 int i, num;
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900259 efi_status_t ret;
Rob Clarkc84c1102017-09-13 18:05:38 -0400260
Rob Clarkc84c1102017-09-13 18:05:38 -0400261 bs = systab.boottime;
262 rs = systab.runtime;
263
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900264 /* BootNext */
265 bootnext = 0;
266 size = sizeof(bootnext);
267 ret = EFI_CALL(efi_get_variable(L"BootNext",
268 (efi_guid_t *)&efi_global_variable_guid,
269 NULL, &size, &bootnext));
270 if (ret == EFI_SUCCESS || ret == EFI_BUFFER_TOO_SMALL) {
271 /* BootNext does exist here */
272 if (ret == EFI_BUFFER_TOO_SMALL || size != sizeof(u16))
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200273 log_err("BootNext must be 16-bit integer\n");
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900274
275 /* delete BootNext */
276 ret = EFI_CALL(efi_set_variable(
277 L"BootNext",
278 (efi_guid_t *)&efi_global_variable_guid,
AKASHI Takahirofd93b312019-06-04 15:52:09 +0900279 EFI_VARIABLE_NON_VOLATILE, 0,
280 &bootnext));
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900281
282 /* load BootNext */
283 if (ret == EFI_SUCCESS) {
284 if (size == sizeof(u16)) {
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900285 ret = try_load_entry(bootnext, handle);
286 if (ret == EFI_SUCCESS)
287 return ret;
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200288 log_warning(
289 "Loading from BootNext failed, falling back to BootOrder\n");
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900290 }
291 } else {
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200292 log_err("Deleting BootNext failed\n");
AKASHI Takahiroe6577f92019-03-20 09:07:55 +0900293 }
294 }
295
296 /* BootOrder */
Rob Clarkc84c1102017-09-13 18:05:38 -0400297 bootorder = get_var(L"BootOrder", &efi_global_variable_guid, &size);
Heinrich Schuchardt3d2257f2019-02-24 04:44:48 +0100298 if (!bootorder) {
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200299 log_info("BootOrder not defined\n");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900300 ret = EFI_NOT_FOUND;
Rob Clarkc84c1102017-09-13 18:05:38 -0400301 goto error;
Heinrich Schuchardt3d2257f2019-02-24 04:44:48 +0100302 }
Rob Clarkc84c1102017-09-13 18:05:38 -0400303
304 num = size / sizeof(uint16_t);
305 for (i = 0; i < num; i++) {
Heinrich Schuchardt273df962020-05-31 10:07:31 +0200306 log_debug("%s trying to load Boot%04X\n", __func__,
307 bootorder[i]);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900308 ret = try_load_entry(bootorder[i], handle);
309 if (ret == EFI_SUCCESS)
Rob Clarkc84c1102017-09-13 18:05:38 -0400310 break;
311 }
312
313 free(bootorder);
314
315error:
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900316 return ret;
Rob Clarkc84c1102017-09-13 18:05:38 -0400317}