blob: 8a0e0db13e7f39c931d87e03a750a41792ec09ee [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Rob Clarkad644e72017-09-13 18:05:37 -04002/*
3 * EFI utils
4 *
5 * Copyright (c) 2017 Rob Clark
Rob Clarkad644e72017-09-13 18:05:37 -04006 */
7
Simon Glass9fb625c2019-08-01 09:46:51 -06008#include <env.h>
Rob Clarkad644e72017-09-13 18:05:37 -04009#include <malloc.h>
10#include <charset.h>
11#include <efi_loader.h>
Heinrich Schuchardt6e37fa22019-01-18 12:31:54 +010012#include <hexdump.h>
AKASHI Takahirod99a87f2019-01-21 12:43:13 +010013#include <environment.h>
14#include <search.h>
15#include <uuid.h>
Rob Clarkad644e72017-09-13 18:05:37 -040016
17#define READ_ONLY BIT(31)
18
19/*
20 * Mapping between EFI variables and u-boot variables:
21 *
22 * efi_$guid_$varname = {attributes}(type)value
23 *
24 * For example:
25 *
26 * efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported=
27 * "{ro,boot,run}(blob)0000000000000000"
28 * efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_BootOrder=
29 * "(blob)00010000"
30 *
31 * The attributes are a comma separated list of these possible
32 * attributes:
33 *
34 * + ro - read-only
35 * + boot - boot-services access
36 * + run - runtime access
37 *
38 * NOTE: with current implementation, no variables are available after
39 * ExitBootServices, and all are persisted (if possible).
40 *
41 * If not specified, the attributes default to "{boot}".
42 *
43 * The required type is one of:
44 *
45 * + utf8 - raw utf8 string
46 * + blob - arbitrary length hex string
47 *
48 * Maybe a utf16 type would be useful to for a string value to be auto
49 * converted to utf16?
50 */
51
Heinrich Schuchardt506dc522018-09-23 04:08:09 +020052#define PREFIX_LEN (strlen("efi_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx_"))
Rob Clarkad644e72017-09-13 18:05:37 -040053
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +010054/**
55 * efi_to_native() - convert the UEFI variable name and vendor GUID to U-Boot
56 * variable name
57 *
58 * The U-Boot variable name is a concatenation of prefix 'efi', the hexstring
59 * encoded vendor GUID, and the UTF-8 encoded UEFI variable name separated by
60 * underscores, e.g. 'efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_BootOrder'.
61 *
62 * @native: pointer to pointer to U-Boot variable name
63 * @variable_name: UEFI variable name
64 * @vendor: vendor GUID
65 * Return: status code
66 */
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +020067static efi_status_t efi_to_native(char **native, const u16 *variable_name,
Heinrich Schuchardt0bda81b2018-12-30 20:53:51 +010068 const efi_guid_t *vendor)
Rob Clarkad644e72017-09-13 18:05:37 -040069{
70 size_t len;
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +020071 char *pos;
Rob Clarkad644e72017-09-13 18:05:37 -040072
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +020073 len = PREFIX_LEN + utf16_utf8_strlen(variable_name) + 1;
74 *native = malloc(len);
75 if (!*native)
76 return EFI_OUT_OF_RESOURCES;
Rob Clarkad644e72017-09-13 18:05:37 -040077
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +020078 pos = *native;
79 pos += sprintf(pos, "efi_%pUl_", vendor);
80 utf16_utf8_strcpy(&pos, variable_name);
Rob Clarkad644e72017-09-13 18:05:37 -040081
82 return EFI_SUCCESS;
83}
84
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +010085/**
86 * prefix() - skip over prefix
87 *
88 * Skip over a prefix string.
89 *
90 * @str: string with prefix
91 * @prefix: prefix string
92 * Return: string without prefix, or NULL if prefix not found
93 */
Rob Clarkad644e72017-09-13 18:05:37 -040094static const char *prefix(const char *str, const char *prefix)
95{
96 size_t n = strlen(prefix);
97 if (!strncmp(prefix, str, n))
98 return str + n;
99 return NULL;
100}
101
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100102/**
103 * parse_attr() - decode attributes part of variable value
104 *
105 * Convert the string encoded attributes of a UEFI variable to a bit mask.
106 * TODO: Several attributes are not supported.
107 *
108 * @str: value of U-Boot variable
109 * @attrp: pointer to UEFI attributes
110 * Return: pointer to remainder of U-Boot variable value
111 */
Rob Clarkad644e72017-09-13 18:05:37 -0400112static const char *parse_attr(const char *str, u32 *attrp)
113{
114 u32 attr = 0;
115 char sep = '{';
116
117 if (*str != '{') {
118 *attrp = EFI_VARIABLE_BOOTSERVICE_ACCESS;
119 return str;
120 }
121
122 while (*str == sep) {
123 const char *s;
124
125 str++;
126
127 if ((s = prefix(str, "ro"))) {
128 attr |= READ_ONLY;
AKASHI Takahirocee2cbc2019-06-04 15:52:06 +0900129 } else if ((s = prefix(str, "nv"))) {
130 attr |= EFI_VARIABLE_NON_VOLATILE;
Rob Clarkad644e72017-09-13 18:05:37 -0400131 } else if ((s = prefix(str, "boot"))) {
132 attr |= EFI_VARIABLE_BOOTSERVICE_ACCESS;
133 } else if ((s = prefix(str, "run"))) {
134 attr |= EFI_VARIABLE_RUNTIME_ACCESS;
135 } else {
136 printf("invalid attribute: %s\n", str);
137 break;
138 }
139
140 str = s;
141 sep = ',';
142 }
143
144 str++;
145
146 *attrp = attr;
147
148 return str;
149}
150
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100151/**
Heinrich Schuchardt8f89a572019-06-20 12:03:53 +0200152 * efi_get_variable() - retrieve value of a UEFI variable
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100153 *
154 * This function implements the GetVariable runtime service.
155 *
156 * See the Unified Extensible Firmware Interface (UEFI) specification for
157 * details.
158 *
159 * @variable_name: name of the variable
160 * @vendor: vendor GUID
161 * @attributes: attributes of the variable
162 * @data_size: size of the buffer to which the variable value is copied
163 * @data: buffer to which the variable value is copied
164 * Return: status code
165 */
Heinrich Schuchardt0bda81b2018-12-30 20:53:51 +0100166efi_status_t EFIAPI efi_get_variable(u16 *variable_name,
167 const efi_guid_t *vendor, u32 *attributes,
168 efi_uintn_t *data_size, void *data)
Rob Clarkad644e72017-09-13 18:05:37 -0400169{
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200170 char *native_name;
Rob Clarkad644e72017-09-13 18:05:37 -0400171 efi_status_t ret;
172 unsigned long in_size;
173 const char *val, *s;
174 u32 attr;
175
Rob Clark778e6af2017-09-13 18:05:41 -0400176 EFI_ENTRY("\"%ls\" %pUl %p %p %p", variable_name, vendor, attributes,
Rob Clarkad644e72017-09-13 18:05:37 -0400177 data_size, data);
178
179 if (!variable_name || !vendor || !data_size)
180 return EFI_EXIT(EFI_INVALID_PARAMETER);
181
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200182 ret = efi_to_native(&native_name, variable_name, vendor);
Rob Clarkad644e72017-09-13 18:05:37 -0400183 if (ret)
184 return EFI_EXIT(ret);
185
Heinrich Schuchardtcc2ed792019-04-04 21:36:44 +0200186 EFI_PRINT("get '%s'\n", native_name);
Rob Clarkad644e72017-09-13 18:05:37 -0400187
188 val = env_get(native_name);
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200189 free(native_name);
Rob Clarkad644e72017-09-13 18:05:37 -0400190 if (!val)
191 return EFI_EXIT(EFI_NOT_FOUND);
192
193 val = parse_attr(val, &attr);
194
195 in_size = *data_size;
196
197 if ((s = prefix(val, "(blob)"))) {
Heinrich Schuchardt6e37fa22019-01-18 12:31:54 +0100198 size_t len = strlen(s);
Rob Clarkad644e72017-09-13 18:05:37 -0400199
Ivan Gorinovd73c8bc2018-05-11 13:18:25 -0700200 /* number of hexadecimal digits must be even */
201 if (len & 1)
202 return EFI_EXIT(EFI_DEVICE_ERROR);
203
Rob Clarkad644e72017-09-13 18:05:37 -0400204 /* two characters per byte: */
Ivan Gorinovd73c8bc2018-05-11 13:18:25 -0700205 len /= 2;
Rob Clarkad644e72017-09-13 18:05:37 -0400206 *data_size = len;
207
Heinrich Schuchardt487d8c72019-05-15 19:32:43 +0200208 if (in_size < len) {
209 ret = EFI_BUFFER_TOO_SMALL;
210 goto out;
211 }
Rob Clarkad644e72017-09-13 18:05:37 -0400212
213 if (!data)
214 return EFI_EXIT(EFI_INVALID_PARAMETER);
215
Heinrich Schuchardt6e37fa22019-01-18 12:31:54 +0100216 if (hex2bin(data, s, len))
Rob Clarkad644e72017-09-13 18:05:37 -0400217 return EFI_EXIT(EFI_DEVICE_ERROR);
218
Heinrich Schuchardtcc2ed792019-04-04 21:36:44 +0200219 EFI_PRINT("got value: \"%s\"\n", s);
Rob Clarkad644e72017-09-13 18:05:37 -0400220 } else if ((s = prefix(val, "(utf8)"))) {
221 unsigned len = strlen(s) + 1;
222
223 *data_size = len;
224
Heinrich Schuchardt487d8c72019-05-15 19:32:43 +0200225 if (in_size < len) {
226 ret = EFI_BUFFER_TOO_SMALL;
227 goto out;
228 }
Rob Clarkad644e72017-09-13 18:05:37 -0400229
230 if (!data)
231 return EFI_EXIT(EFI_INVALID_PARAMETER);
232
233 memcpy(data, s, len);
234 ((char *)data)[len] = '\0';
235
Heinrich Schuchardtcc2ed792019-04-04 21:36:44 +0200236 EFI_PRINT("got value: \"%s\"\n", (char *)data);
Rob Clarkad644e72017-09-13 18:05:37 -0400237 } else {
Heinrich Schuchardtcc2ed792019-04-04 21:36:44 +0200238 EFI_PRINT("invalid value: '%s'\n", val);
Rob Clarkad644e72017-09-13 18:05:37 -0400239 return EFI_EXIT(EFI_DEVICE_ERROR);
240 }
241
Heinrich Schuchardt487d8c72019-05-15 19:32:43 +0200242out:
Rob Clarkad644e72017-09-13 18:05:37 -0400243 if (attributes)
244 *attributes = attr & EFI_VARIABLE_MASK;
245
Heinrich Schuchardt487d8c72019-05-15 19:32:43 +0200246 return EFI_EXIT(ret);
Rob Clarkad644e72017-09-13 18:05:37 -0400247}
248
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100249static char *efi_variables_list;
250static char *efi_cur_variable;
251
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100252/**
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100253 * parse_uboot_variable() - parse a u-boot variable and get uefi-related
254 * information
255 * @variable: whole data of u-boot variable (ie. name=value)
256 * @variable_name_size: size of variable_name buffer in byte
257 * @variable_name: name of uefi variable in u16, null-terminated
258 * @vendor: vendor's guid
259 * @attributes: attributes
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100260 *
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100261 * A uefi variable is encoded into a u-boot variable as described above.
262 * This function parses such a u-boot variable and retrieve uefi-related
263 * information into respective parameters. In return, variable_name_size
264 * is the size of variable name including NULL.
265 *
266 * Return: EFI_SUCCESS if parsing is OK, EFI_NOT_FOUND when
Heinrich Schuchardte5b44622019-07-14 12:11:16 +0200267 * the entire variable list has been returned,
268 * otherwise non-zero status code
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100269 */
270static efi_status_t parse_uboot_variable(char *variable,
271 efi_uintn_t *variable_name_size,
272 u16 *variable_name,
273 const efi_guid_t *vendor,
274 u32 *attributes)
275{
276 char *guid, *name, *end, c;
277 unsigned long name_len;
278 u16 *p;
279
280 guid = strchr(variable, '_');
281 if (!guid)
282 return EFI_INVALID_PARAMETER;
283 guid++;
284 name = strchr(guid, '_');
285 if (!name)
286 return EFI_INVALID_PARAMETER;
287 name++;
288 end = strchr(name, '=');
289 if (!end)
290 return EFI_INVALID_PARAMETER;
291
292 name_len = end - name;
293 if (*variable_name_size < (name_len + 1)) {
294 *variable_name_size = name_len + 1;
295 return EFI_BUFFER_TOO_SMALL;
296 }
297 end++; /* point to value */
298
299 /* variable name */
300 p = variable_name;
301 utf8_utf16_strncpy(&p, name, name_len);
302 variable_name[name_len] = 0;
303 *variable_name_size = name_len + 1;
304
305 /* guid */
306 c = *(name - 1);
307 *(name - 1) = '\0'; /* guid need be null-terminated here */
308 uuid_str_to_bin(guid, (unsigned char *)vendor, UUID_STR_FORMAT_GUID);
309 *(name - 1) = c;
310
311 /* attributes */
312 parse_attr(end, attributes);
313
314 return EFI_SUCCESS;
315}
316
317/**
318 * efi_get_next_variable_name() - enumerate the current variable names
Heinrich Schuchardte5b44622019-07-14 12:11:16 +0200319 *
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100320 * @variable_name_size: size of variable_name buffer in byte
321 * @variable_name: name of uefi variable's name in u16
322 * @vendor: vendor's guid
323 *
324 * This function implements the GetNextVariableName service.
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100325 *
326 * See the Unified Extensible Firmware Interface (UEFI) specification for
Heinrich Schuchardte5b44622019-07-14 12:11:16 +0200327 * details.
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100328 *
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100329 * Return: status code
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100330 */
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200331efi_status_t EFIAPI efi_get_next_variable_name(efi_uintn_t *variable_name_size,
332 u16 *variable_name,
Heinrich Schuchardt0bda81b2018-12-30 20:53:51 +0100333 const efi_guid_t *vendor)
Rob Clarkad644e72017-09-13 18:05:37 -0400334{
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100335 char *native_name, *variable;
336 ssize_t name_len, list_len;
337 char regex[256];
338 char * const regexlist[] = {regex};
339 u32 attributes;
340 int i;
341 efi_status_t ret;
342
Rob Clark778e6af2017-09-13 18:05:41 -0400343 EFI_ENTRY("%p \"%ls\" %pUl", variable_name_size, variable_name, vendor);
Rob Clarkad644e72017-09-13 18:05:37 -0400344
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100345 if (!variable_name_size || !variable_name || !vendor)
Heinrich Schuchardte7dae582019-03-19 18:36:21 +0100346 return EFI_EXIT(EFI_INVALID_PARAMETER);
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100347
348 if (variable_name[0]) {
349 /* check null-terminated string */
350 for (i = 0; i < *variable_name_size; i++)
351 if (!variable_name[i])
352 break;
353 if (i >= *variable_name_size)
354 return EFI_EXIT(EFI_INVALID_PARAMETER);
355
356 /* search for the last-returned variable */
357 ret = efi_to_native(&native_name, variable_name, vendor);
358 if (ret)
359 return EFI_EXIT(ret);
360
361 name_len = strlen(native_name);
362 for (variable = efi_variables_list; variable && *variable;) {
363 if (!strncmp(variable, native_name, name_len) &&
364 variable[name_len] == '=')
365 break;
366
367 variable = strchr(variable, '\n');
368 if (variable)
369 variable++;
370 }
371
372 free(native_name);
373 if (!(variable && *variable))
374 return EFI_EXIT(EFI_INVALID_PARAMETER);
375
376 /* next variable */
377 variable = strchr(variable, '\n');
378 if (variable)
379 variable++;
380 if (!(variable && *variable))
381 return EFI_EXIT(EFI_NOT_FOUND);
382 } else {
383 /*
384 *new search: free a list used in the previous search
385 */
386 free(efi_variables_list);
387 efi_variables_list = NULL;
388 efi_cur_variable = NULL;
389
390 snprintf(regex, 256, "efi_.*-.*-.*-.*-.*_.*");
391 list_len = hexport_r(&env_htab, '\n',
392 H_MATCH_REGEX | H_MATCH_KEY,
393 &efi_variables_list, 0, 1, regexlist);
Heinrich Schuchardteefb7902019-01-22 20:10:46 +0100394 /* 1 indicates that no match was found */
395 if (list_len <= 1)
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100396 return EFI_EXIT(EFI_NOT_FOUND);
397
398 variable = efi_variables_list;
399 }
400
401 ret = parse_uboot_variable(variable, variable_name_size, variable_name,
402 vendor, &attributes);
403
404 return EFI_EXIT(ret);
Rob Clarkad644e72017-09-13 18:05:37 -0400405}
406
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100407/**
Heinrich Schuchardt8f89a572019-06-20 12:03:53 +0200408 * efi_set_variable() - set value of a UEFI variable
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100409 *
410 * This function implements the SetVariable runtime service.
411 *
412 * See the Unified Extensible Firmware Interface (UEFI) specification for
413 * details.
414 *
415 * @variable_name: name of the variable
416 * @vendor: vendor GUID
417 * @attributes: attributes of the variable
418 * @data_size: size of the buffer with the variable value
419 * @data: buffer with the variable value
420 * Return: status code
421 */
Heinrich Schuchardt0bda81b2018-12-30 20:53:51 +0100422efi_status_t EFIAPI efi_set_variable(u16 *variable_name,
423 const efi_guid_t *vendor, u32 attributes,
Heinrich Schuchardt452257a2018-12-30 21:03:15 +0100424 efi_uintn_t data_size, const void *data)
Rob Clarkad644e72017-09-13 18:05:37 -0400425{
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200426 char *native_name = NULL, *val = NULL, *s;
Rob Clarkad644e72017-09-13 18:05:37 -0400427 efi_status_t ret = EFI_SUCCESS;
Rob Clarkad644e72017-09-13 18:05:37 -0400428 u32 attr;
429
Heinrich Schuchardt45c66f92018-05-17 07:57:05 +0200430 EFI_ENTRY("\"%ls\" %pUl %x %zu %p", variable_name, vendor, attributes,
Rob Clarkad644e72017-09-13 18:05:37 -0400431 data_size, data);
432
AKASHI Takahirodbebae52019-05-24 15:59:02 +0900433 /* TODO: implement APPEND_WRITE */
Heinrich Schuchardtc77d8e92019-06-12 23:28:42 +0200434 if (!variable_name || !*variable_name || !vendor ||
435 ((attributes & EFI_VARIABLE_RUNTIME_ACCESS) &&
436 !(attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS)) ||
AKASHI Takahirodbebae52019-05-24 15:59:02 +0900437 (attributes & EFI_VARIABLE_APPEND_WRITE)) {
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200438 ret = EFI_INVALID_PARAMETER;
439 goto out;
440 }
Rob Clarkad644e72017-09-13 18:05:37 -0400441
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200442 ret = efi_to_native(&native_name, variable_name, vendor);
Rob Clarkad644e72017-09-13 18:05:37 -0400443 if (ret)
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200444 goto out;
Rob Clarkad644e72017-09-13 18:05:37 -0400445
446#define ACCESS_ATTR (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS)
447
448 if ((data_size == 0) || !(attributes & ACCESS_ATTR)) {
449 /* delete the variable: */
450 env_set(native_name, NULL);
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200451 ret = EFI_SUCCESS;
452 goto out;
Rob Clarkad644e72017-09-13 18:05:37 -0400453 }
454
455 val = env_get(native_name);
456 if (val) {
457 parse_attr(val, &attr);
458
AKASHI Takahiroa2c69832019-05-24 15:59:03 +0900459 /* We should not free val */
460 val = NULL;
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200461 if (attr & READ_ONLY) {
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200462 ret = EFI_WRITE_PROTECTED;
463 goto out;
464 }
AKASHI Takahiroa2c69832019-05-24 15:59:03 +0900465
466 /*
467 * attributes won't be changed
468 * TODO: take care of APPEND_WRITE once supported
469 */
470 if (attr != attributes) {
471 ret = EFI_INVALID_PARAMETER;
472 goto out;
473 }
Rob Clarkad644e72017-09-13 18:05:37 -0400474 }
475
AKASHI Takahirocee2cbc2019-06-04 15:52:06 +0900476 val = malloc(2 * data_size + strlen("{ro,run,boot,nv}(blob)") + 1);
Heinrich Schuchardtdadc2bd2018-10-02 05:30:05 +0200477 if (!val) {
478 ret = EFI_OUT_OF_RESOURCES;
479 goto out;
480 }
Rob Clarkad644e72017-09-13 18:05:37 -0400481
482 s = val;
483
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100484 /*
485 * store attributes
486 * TODO: several attributes are not supported
487 */
AKASHI Takahirocee2cbc2019-06-04 15:52:06 +0900488 attributes &= (EFI_VARIABLE_NON_VOLATILE |
489 EFI_VARIABLE_BOOTSERVICE_ACCESS |
490 EFI_VARIABLE_RUNTIME_ACCESS);
Rob Clarkad644e72017-09-13 18:05:37 -0400491 s += sprintf(s, "{");
492 while (attributes) {
493 u32 attr = 1 << (ffs(attributes) - 1);
494
AKASHI Takahirocee2cbc2019-06-04 15:52:06 +0900495 if (attr == EFI_VARIABLE_NON_VOLATILE)
496 s += sprintf(s, "nv");
497 else if (attr == EFI_VARIABLE_BOOTSERVICE_ACCESS)
Rob Clarkad644e72017-09-13 18:05:37 -0400498 s += sprintf(s, "boot");
499 else if (attr == EFI_VARIABLE_RUNTIME_ACCESS)
500 s += sprintf(s, "run");
501
502 attributes &= ~attr;
503 if (attributes)
504 s += sprintf(s, ",");
505 }
506 s += sprintf(s, "}");
507
508 /* store payload: */
509 s += sprintf(s, "(blob)");
Heinrich Schuchardt8377ee32019-01-18 18:54:26 +0100510 s = bin2hex(s, data, data_size);
Rob Clarkad644e72017-09-13 18:05:37 -0400511 *s = '\0';
512
Heinrich Schuchardtcc2ed792019-04-04 21:36:44 +0200513 EFI_PRINT("setting: %s=%s\n", native_name, val);
Rob Clarkad644e72017-09-13 18:05:37 -0400514
515 if (env_set(native_name, val))
516 ret = EFI_DEVICE_ERROR;
517
Heinrich Schuchardtdcdb64f2018-08-31 21:31:31 +0200518out:
519 free(native_name);
Rob Clarkad644e72017-09-13 18:05:37 -0400520 free(val);
521
522 return EFI_EXIT(ret);
523}
Heinrich Schuchardtce435282019-06-20 12:13:05 +0200524
525/**
526 * efi_query_variable_info() - get information about EFI variables
527 *
528 * This function implements the QueryVariableInfo() runtime service.
529 *
530 * See the Unified Extensible Firmware Interface (UEFI) specification for
531 * details.
532 *
533 * @attributes: bitmask to select variables to be
534 * queried
535 * @maximum_variable_storage_size: maximum size of storage area for the
536 * selected variable types
537 * @remaining_variable_storage_size: remaining size of storage are for the
538 * selected variable types
539 * @maximum_variable_size: maximum size of a variable of the
540 * selected type
541 * Returns: status code
542 */
543efi_status_t __efi_runtime EFIAPI efi_query_variable_info(
544 u32 attributes,
545 u64 *maximum_variable_storage_size,
546 u64 *remaining_variable_storage_size,
547 u64 *maximum_variable_size)
548{
549 return EFI_UNSUPPORTED;
550}
Heinrich Schuchardt88192092019-06-20 13:52:16 +0200551
552/**
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200553 * efi_get_variable_runtime() - runtime implementation of GetVariable()
Heinrich Schuchardte5b44622019-07-14 12:11:16 +0200554 *
555 * @variable_name: name of the variable
556 * @vendor: vendor GUID
557 * @attributes: attributes of the variable
558 * @data_size: size of the buffer to which the variable value is copied
559 * @data: buffer to which the variable value is copied
560 * Return: status code
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200561 */
562static efi_status_t __efi_runtime EFIAPI
563efi_get_variable_runtime(u16 *variable_name, const efi_guid_t *vendor,
564 u32 *attributes, efi_uintn_t *data_size, void *data)
565{
566 return EFI_UNSUPPORTED;
567}
568
569/**
570 * efi_get_next_variable_name_runtime() - runtime implementation of
571 * GetNextVariable()
Heinrich Schuchardte5b44622019-07-14 12:11:16 +0200572 *
573 * @variable_name_size: size of variable_name buffer in byte
574 * @variable_name: name of uefi variable's name in u16
575 * @vendor: vendor's guid
576 * Return: status code
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200577 */
578static efi_status_t __efi_runtime EFIAPI
579efi_get_next_variable_name_runtime(efi_uintn_t *variable_name_size,
580 u16 *variable_name, const efi_guid_t *vendor)
581{
582 return EFI_UNSUPPORTED;
583}
584
585/**
586 * efi_set_variable_runtime() - runtime implementation of SetVariable()
Heinrich Schuchardte5b44622019-07-14 12:11:16 +0200587 *
588 * @variable_name: name of the variable
589 * @vendor: vendor GUID
590 * @attributes: attributes of the variable
591 * @data_size: size of the buffer with the variable value
592 * @data: buffer with the variable value
593 * Return: status code
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200594 */
595static efi_status_t __efi_runtime EFIAPI
596efi_set_variable_runtime(u16 *variable_name, const efi_guid_t *vendor,
597 u32 attributes, efi_uintn_t data_size,
598 const void *data)
599{
600 return EFI_UNSUPPORTED;
601}
602
603/**
604 * efi_variables_boot_exit_notify() - notify ExitBootServices() is called
605 */
606void efi_variables_boot_exit_notify(void)
607{
608 efi_runtime_services.get_variable = efi_get_variable_runtime;
609 efi_runtime_services.get_next_variable_name =
610 efi_get_next_variable_name_runtime;
611 efi_runtime_services.set_variable = efi_set_variable_runtime;
612 efi_update_table_header_crc32(&efi_runtime_services.hdr);
613}
614
615/**
Heinrich Schuchardt88192092019-06-20 13:52:16 +0200616 * efi_init_variables() - initialize variable services
617 *
618 * Return: status code
619 */
620efi_status_t efi_init_variables(void)
621{
622 return EFI_SUCCESS;
623}