Merge tag 'trace-v6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux...
[linux-2.6-block.git] / fs / efivarfs / vars.c
CommitLineData
2d82e622
AB
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Originally from efivars.c
4 *
5 * Copyright (C) 2001,2003,2004 Dell <Matt_Domsch@dell.com>
6 * Copyright (C) 2004 Intel Corporation <matthew.e.tolentino@intel.com>
7 */
8
9#include <linux/capability.h>
10#include <linux/types.h>
11#include <linux/errno.h>
12#include <linux/init.h>
13#include <linux/mm.h>
14#include <linux/module.h>
15#include <linux/string.h>
16#include <linux/smp.h>
17#include <linux/efi.h>
18#include <linux/device.h>
19#include <linux/slab.h>
20#include <linux/ctype.h>
21#include <linux/ucs2_string.h>
22
23#include "internal.h"
24
25MODULE_IMPORT_NS(EFIVAR);
26
27static bool
28validate_device_path(efi_char16_t *var_name, int match, u8 *buffer,
29 unsigned long len)
30{
31 struct efi_generic_dev_path *node;
32 int offset = 0;
33
34 node = (struct efi_generic_dev_path *)buffer;
35
36 if (len < sizeof(*node))
37 return false;
38
39 while (offset <= len - sizeof(*node) &&
40 node->length >= sizeof(*node) &&
41 node->length <= len - offset) {
42 offset += node->length;
43
44 if ((node->type == EFI_DEV_END_PATH ||
45 node->type == EFI_DEV_END_PATH2) &&
46 node->sub_type == EFI_DEV_END_ENTIRE)
47 return true;
48
49 node = (struct efi_generic_dev_path *)(buffer + offset);
50 }
51
52 /*
53 * If we're here then either node->length pointed past the end
54 * of the buffer or we reached the end of the buffer without
55 * finding a device path end node.
56 */
57 return false;
58}
59
60static bool
61validate_boot_order(efi_char16_t *var_name, int match, u8 *buffer,
62 unsigned long len)
63{
64 /* An array of 16-bit integers */
65 if ((len % 2) != 0)
66 return false;
67
68 return true;
69}
70
71static bool
72validate_load_option(efi_char16_t *var_name, int match, u8 *buffer,
73 unsigned long len)
74{
75 u16 filepathlength;
76 int i, desclength = 0, namelen;
77
78 namelen = ucs2_strnlen(var_name, EFI_VAR_NAME_LEN);
79
80 /* Either "Boot" or "Driver" followed by four digits of hex */
81 for (i = match; i < match+4; i++) {
82 if (var_name[i] > 127 ||
83 hex_to_bin(var_name[i] & 0xff) < 0)
84 return true;
85 }
86
87 /* Reject it if there's 4 digits of hex and then further content */
88 if (namelen > match + 4)
89 return false;
90
91 /* A valid entry must be at least 8 bytes */
92 if (len < 8)
93 return false;
94
95 filepathlength = buffer[4] | buffer[5] << 8;
96
97 /*
98 * There's no stored length for the description, so it has to be
99 * found by hand
100 */
101 desclength = ucs2_strsize((efi_char16_t *)(buffer + 6), len - 6) + 2;
102
103 /* Each boot entry must have a descriptor */
104 if (!desclength)
105 return false;
106
107 /*
108 * If the sum of the length of the description, the claimed filepath
109 * length and the original header are greater than the length of the
110 * variable, it's malformed
111 */
112 if ((desclength + filepathlength + 6) > len)
113 return false;
114
115 /*
116 * And, finally, check the filepath
117 */
118 return validate_device_path(var_name, match, buffer + desclength + 6,
119 filepathlength);
120}
121
122static bool
123validate_uint16(efi_char16_t *var_name, int match, u8 *buffer,
124 unsigned long len)
125{
126 /* A single 16-bit integer */
127 if (len != 2)
128 return false;
129
130 return true;
131}
132
133static bool
134validate_ascii_string(efi_char16_t *var_name, int match, u8 *buffer,
135 unsigned long len)
136{
137 int i;
138
139 for (i = 0; i < len; i++) {
140 if (buffer[i] > 127)
141 return false;
142
143 if (buffer[i] == 0)
144 return true;
145 }
146
147 return false;
148}
149
150struct variable_validate {
151 efi_guid_t vendor;
152 char *name;
153 bool (*validate)(efi_char16_t *var_name, int match, u8 *data,
154 unsigned long len);
155};
156
157/*
158 * This is the list of variables we need to validate, as well as the
159 * whitelist for what we think is safe not to default to immutable.
160 *
161 * If it has a validate() method that's not NULL, it'll go into the
162 * validation routine. If not, it is assumed valid, but still used for
163 * whitelisting.
164 *
165 * Note that it's sorted by {vendor,name}, but globbed names must come after
166 * any other name with the same prefix.
167 */
168static const struct variable_validate variable_validate[] = {
169 { EFI_GLOBAL_VARIABLE_GUID, "BootNext", validate_uint16 },
170 { EFI_GLOBAL_VARIABLE_GUID, "BootOrder", validate_boot_order },
171 { EFI_GLOBAL_VARIABLE_GUID, "Boot*", validate_load_option },
172 { EFI_GLOBAL_VARIABLE_GUID, "DriverOrder", validate_boot_order },
173 { EFI_GLOBAL_VARIABLE_GUID, "Driver*", validate_load_option },
174 { EFI_GLOBAL_VARIABLE_GUID, "ConIn", validate_device_path },
175 { EFI_GLOBAL_VARIABLE_GUID, "ConInDev", validate_device_path },
176 { EFI_GLOBAL_VARIABLE_GUID, "ConOut", validate_device_path },
177 { EFI_GLOBAL_VARIABLE_GUID, "ConOutDev", validate_device_path },
178 { EFI_GLOBAL_VARIABLE_GUID, "ErrOut", validate_device_path },
179 { EFI_GLOBAL_VARIABLE_GUID, "ErrOutDev", validate_device_path },
180 { EFI_GLOBAL_VARIABLE_GUID, "Lang", validate_ascii_string },
181 { EFI_GLOBAL_VARIABLE_GUID, "OsIndications", NULL },
182 { EFI_GLOBAL_VARIABLE_GUID, "PlatformLang", validate_ascii_string },
183 { EFI_GLOBAL_VARIABLE_GUID, "Timeout", validate_uint16 },
184 { LINUX_EFI_CRASH_GUID, "*", NULL },
185 { NULL_GUID, "", NULL },
186};
187
188/*
189 * Check if @var_name matches the pattern given in @match_name.
190 *
191 * @var_name: an array of @len non-NUL characters.
192 * @match_name: a NUL-terminated pattern string, optionally ending in "*". A
193 * final "*" character matches any trailing characters @var_name,
194 * including the case when there are none left in @var_name.
195 * @match: on output, the number of non-wildcard characters in @match_name
196 * that @var_name matches, regardless of the return value.
197 * @return: whether @var_name fully matches @match_name.
198 */
199static bool
200variable_matches(const char *var_name, size_t len, const char *match_name,
201 int *match)
202{
203 for (*match = 0; ; (*match)++) {
204 char c = match_name[*match];
205
206 switch (c) {
207 case '*':
208 /* Wildcard in @match_name means we've matched. */
209 return true;
210
211 case '\0':
212 /* @match_name has ended. Has @var_name too? */
213 return (*match == len);
214
215 default:
216 /*
217 * We've reached a non-wildcard char in @match_name.
218 * Continue only if there's an identical character in
219 * @var_name.
220 */
221 if (*match < len && c == var_name[*match])
222 continue;
223 return false;
224 }
225 }
226}
227
228bool
229efivar_validate(efi_guid_t vendor, efi_char16_t *var_name, u8 *data,
230 unsigned long data_size)
231{
232 int i;
233 unsigned long utf8_size;
234 u8 *utf8_name;
235
236 utf8_size = ucs2_utf8size(var_name);
237 utf8_name = kmalloc(utf8_size + 1, GFP_KERNEL);
238 if (!utf8_name)
239 return false;
240
241 ucs2_as_utf8(utf8_name, var_name, utf8_size);
242 utf8_name[utf8_size] = '\0';
243
244 for (i = 0; variable_validate[i].name[0] != '\0'; i++) {
245 const char *name = variable_validate[i].name;
246 int match = 0;
247
248 if (efi_guidcmp(vendor, variable_validate[i].vendor))
249 continue;
250
251 if (variable_matches(utf8_name, utf8_size+1, name, &match)) {
252 if (variable_validate[i].validate == NULL)
253 break;
254 kfree(utf8_name);
255 return variable_validate[i].validate(var_name, match,
256 data, data_size);
257 }
258 }
259 kfree(utf8_name);
260 return true;
261}
262
263bool
264efivar_variable_is_removable(efi_guid_t vendor, const char *var_name,
265 size_t len)
266{
267 int i;
268 bool found = false;
269 int match = 0;
270
271 /*
272 * Check if our variable is in the validated variables list
273 */
274 for (i = 0; variable_validate[i].name[0] != '\0'; i++) {
275 if (efi_guidcmp(variable_validate[i].vendor, vendor))
276 continue;
277
278 if (variable_matches(var_name, len,
279 variable_validate[i].name, &match)) {
280 found = true;
281 break;
282 }
283 }
284
285 /*
286 * If it's in our list, it is removable.
287 */
288 return found;
289}
290
291static bool variable_is_present(efi_char16_t *variable_name, efi_guid_t *vendor,
292 struct list_head *head)
293{
294 struct efivar_entry *entry, *n;
295 unsigned long strsize1, strsize2;
296 bool found = false;
297
298 strsize1 = ucs2_strsize(variable_name, 1024);
299 list_for_each_entry_safe(entry, n, head, list) {
300 strsize2 = ucs2_strsize(entry->var.VariableName, 1024);
301 if (strsize1 == strsize2 &&
302 !memcmp(variable_name, &(entry->var.VariableName),
303 strsize2) &&
304 !efi_guidcmp(entry->var.VendorGuid,
305 *vendor)) {
306 found = true;
307 break;
308 }
309 }
310 return found;
311}
312
313/*
314 * Returns the size of variable_name, in bytes, including the
315 * terminating NULL character, or variable_name_size if no NULL
316 * character is found among the first variable_name_size bytes.
317 */
318static unsigned long var_name_strnsize(efi_char16_t *variable_name,
319 unsigned long variable_name_size)
320{
321 unsigned long len;
322 efi_char16_t c;
323
324 /*
325 * The variable name is, by definition, a NULL-terminated
326 * string, so make absolutely sure that variable_name_size is
327 * the value we expect it to be. If not, return the real size.
328 */
329 for (len = 2; len <= variable_name_size; len += sizeof(c)) {
330 c = variable_name[(len / sizeof(c)) - 1];
331 if (!c)
332 break;
333 }
334
335 return min(len, variable_name_size);
336}
337
338/*
339 * Print a warning when duplicate EFI variables are encountered and
340 * disable the sysfs workqueue since the firmware is buggy.
341 */
342static void dup_variable_bug(efi_char16_t *str16, efi_guid_t *vendor_guid,
343 unsigned long len16)
344{
345 size_t i, len8 = len16 / sizeof(efi_char16_t);
346 char *str8;
347
348 str8 = kzalloc(len8, GFP_KERNEL);
349 if (!str8)
350 return;
351
352 for (i = 0; i < len8; i++)
353 str8[i] = str16[i];
354
355 printk(KERN_WARNING "efivars: duplicate variable: %s-%pUl\n",
356 str8, vendor_guid);
357 kfree(str8);
358}
359
360/**
361 * efivar_init - build the initial list of EFI variables
362 * @func: callback function to invoke for every variable
363 * @data: function-specific data to pass to @func
364 * @duplicates: error if we encounter duplicates on @head?
365 * @head: initialised head of variable list
366 *
367 * Get every EFI variable from the firmware and invoke @func. @func
368 * should call efivar_entry_add() to build the list of variables.
369 *
370 * Returns 0 on success, or a kernel error code on failure.
371 */
cdb46a8a
AB
372int efivar_init(int (*func)(efi_char16_t *, efi_guid_t, unsigned long, void *,
373 struct list_head *),
2d82e622
AB
374 void *data, bool duplicates, struct list_head *head)
375{
376 unsigned long variable_name_size = 1024;
377 efi_char16_t *variable_name;
378 efi_status_t status;
379 efi_guid_t vendor_guid;
380 int err = 0;
381
382 variable_name = kzalloc(variable_name_size, GFP_KERNEL);
383 if (!variable_name) {
384 printk(KERN_ERR "efivars: Memory allocation failed.\n");
385 return -ENOMEM;
386 }
387
388 err = efivar_lock();
389 if (err)
390 goto free;
391
392 /*
393 * Per EFI spec, the maximum storage allocated for both
394 * the variable name and variable data is 1024 bytes.
395 */
396
397 do {
398 variable_name_size = 1024;
399
400 status = efivar_get_next_variable(&variable_name_size,
401 variable_name,
402 &vendor_guid);
403 switch (status) {
404 case EFI_SUCCESS:
405 variable_name_size = var_name_strnsize(variable_name,
406 variable_name_size);
407
408 /*
409 * Some firmware implementations return the
410 * same variable name on multiple calls to
411 * get_next_variable(). Terminate the loop
412 * immediately as there is no guarantee that
413 * we'll ever see a different variable name,
414 * and may end up looping here forever.
415 */
416 if (duplicates &&
417 variable_is_present(variable_name, &vendor_guid,
418 head)) {
419 dup_variable_bug(variable_name, &vendor_guid,
420 variable_name_size);
421 status = EFI_NOT_FOUND;
422 } else {
423 err = func(variable_name, vendor_guid,
cdb46a8a 424 variable_name_size, data, head);
2d82e622
AB
425 if (err)
426 status = EFI_NOT_FOUND;
427 }
428 break;
429 case EFI_UNSUPPORTED:
430 err = -EOPNOTSUPP;
431 status = EFI_NOT_FOUND;
432 break;
433 case EFI_NOT_FOUND:
434 break;
435 default:
436 printk(KERN_WARNING "efivars: get_next_variable: status=%lx\n",
437 status);
438 status = EFI_NOT_FOUND;
439 break;
440 }
441
442 } while (status != EFI_NOT_FOUND);
443
444 efivar_unlock();
445free:
446 kfree(variable_name);
447
448 return err;
449}
450
451/**
452 * efivar_entry_add - add entry to variable list
453 * @entry: entry to add to list
454 * @head: list head
455 *
456 * Returns 0 on success, or a kernel error code on failure.
457 */
458int efivar_entry_add(struct efivar_entry *entry, struct list_head *head)
459{
460 int err;
461
462 err = efivar_lock();
463 if (err)
464 return err;
465 list_add(&entry->list, head);
466 efivar_unlock();
467
468 return 0;
469}
470
471/**
472 * __efivar_entry_add - add entry to variable list
473 * @entry: entry to add to list
474 * @head: list head
475 */
476void __efivar_entry_add(struct efivar_entry *entry, struct list_head *head)
477{
478 list_add(&entry->list, head);
479}
480
481/**
482 * efivar_entry_remove - remove entry from variable list
483 * @entry: entry to remove from list
484 *
485 * Returns 0 on success, or a kernel error code on failure.
486 */
487void efivar_entry_remove(struct efivar_entry *entry)
488{
489 list_del(&entry->list);
490}
491
492/*
493 * efivar_entry_list_del_unlock - remove entry from variable list
494 * @entry: entry to remove
495 *
496 * Remove @entry from the variable list and release the list lock.
497 *
498 * NOTE: slightly weird locking semantics here - we expect to be
499 * called with the efivars lock already held, and we release it before
500 * returning. This is because this function is usually called after
501 * set_variable() while the lock is still held.
502 */
503static void efivar_entry_list_del_unlock(struct efivar_entry *entry)
504{
505 list_del(&entry->list);
506 efivar_unlock();
507}
508
509/**
510 * efivar_entry_delete - delete variable and remove entry from list
511 * @entry: entry containing variable to delete
512 *
513 * Delete the variable from the firmware and remove @entry from the
514 * variable list. It is the caller's responsibility to free @entry
515 * once we return.
516 *
517 * Returns 0 on success, -EINTR if we can't grab the semaphore,
518 * converted EFI status code if set_variable() fails.
519 */
520int efivar_entry_delete(struct efivar_entry *entry)
521{
522 efi_status_t status;
523 int err;
524
525 err = efivar_lock();
526 if (err)
527 return err;
528
529 status = efivar_set_variable_locked(entry->var.VariableName,
530 &entry->var.VendorGuid,
531 0, 0, NULL, false);
532 if (!(status == EFI_SUCCESS || status == EFI_NOT_FOUND)) {
533 efivar_unlock();
534 return efi_status_to_err(status);
535 }
536
537 efivar_entry_list_del_unlock(entry);
538 return 0;
539}
540
541/**
542 * efivar_entry_size - obtain the size of a variable
543 * @entry: entry for this variable
544 * @size: location to store the variable's size
545 */
546int efivar_entry_size(struct efivar_entry *entry, unsigned long *size)
547{
548 efi_status_t status;
549 int err;
550
551 *size = 0;
552
553 err = efivar_lock();
554 if (err)
555 return err;
556
557 status = efivar_get_variable(entry->var.VariableName,
558 &entry->var.VendorGuid, NULL, size, NULL);
559 efivar_unlock();
560
561 if (status != EFI_BUFFER_TOO_SMALL)
562 return efi_status_to_err(status);
563
564 return 0;
565}
566
567/**
568 * __efivar_entry_get - call get_variable()
569 * @entry: read data for this variable
570 * @attributes: variable attributes
571 * @size: size of @data buffer
572 * @data: buffer to store variable data
573 *
574 * The caller MUST call efivar_entry_iter_begin() and
575 * efivar_entry_iter_end() before and after the invocation of this
576 * function, respectively.
577 */
578int __efivar_entry_get(struct efivar_entry *entry, u32 *attributes,
579 unsigned long *size, void *data)
580{
581 efi_status_t status;
582
583 status = efivar_get_variable(entry->var.VariableName,
584 &entry->var.VendorGuid,
585 attributes, size, data);
586
587 return efi_status_to_err(status);
588}
589
590/**
591 * efivar_entry_get - call get_variable()
592 * @entry: read data for this variable
593 * @attributes: variable attributes
594 * @size: size of @data buffer
595 * @data: buffer to store variable data
596 */
597int efivar_entry_get(struct efivar_entry *entry, u32 *attributes,
598 unsigned long *size, void *data)
599{
600 int err;
601
602 err = efivar_lock();
603 if (err)
604 return err;
605 err = __efivar_entry_get(entry, attributes, size, data);
606 efivar_unlock();
607
608 return 0;
609}
610
611/**
612 * efivar_entry_set_get_size - call set_variable() and get new size (atomic)
613 * @entry: entry containing variable to set and get
614 * @attributes: attributes of variable to be written
615 * @size: size of data buffer
616 * @data: buffer containing data to write
617 * @set: did the set_variable() call succeed?
618 *
619 * This is a pretty special (complex) function. See efivarfs_file_write().
620 *
621 * Atomically call set_variable() for @entry and if the call is
622 * successful, return the new size of the variable from get_variable()
623 * in @size. The success of set_variable() is indicated by @set.
624 *
625 * Returns 0 on success, -EINVAL if the variable data is invalid,
626 * -ENOSPC if the firmware does not have enough available space, or a
627 * converted EFI status code if either of set_variable() or
628 * get_variable() fail.
629 *
630 * If the EFI variable does not exist when calling set_variable()
631 * (EFI_NOT_FOUND), @entry is removed from the variable list.
632 */
633int efivar_entry_set_get_size(struct efivar_entry *entry, u32 attributes,
634 unsigned long *size, void *data, bool *set)
635{
636 efi_char16_t *name = entry->var.VariableName;
637 efi_guid_t *vendor = &entry->var.VendorGuid;
638 efi_status_t status;
639 int err;
640
641 *set = false;
642
643 if (efivar_validate(*vendor, name, data, *size) == false)
644 return -EINVAL;
645
646 /*
647 * The lock here protects the get_variable call, the conditional
648 * set_variable call, and removal of the variable from the efivars
649 * list (in the case of an authenticated delete).
650 */
651 err = efivar_lock();
652 if (err)
653 return err;
654
2d82e622
AB
655 status = efivar_set_variable_locked(name, vendor, attributes, *size,
656 data, false);
657 if (status != EFI_SUCCESS) {
658 err = efi_status_to_err(status);
659 goto out;
660 }
661
662 *set = true;
663
664 /*
665 * Writing to the variable may have caused a change in size (which
666 * could either be an append or an overwrite), or the variable to be
667 * deleted. Perform a GetVariable() so we can tell what actually
668 * happened.
669 */
670 *size = 0;
671 status = efivar_get_variable(entry->var.VariableName,
672 &entry->var.VendorGuid,
673 NULL, size, NULL);
674
675 if (status == EFI_NOT_FOUND)
676 efivar_entry_list_del_unlock(entry);
677 else
678 efivar_unlock();
679
680 if (status && status != EFI_BUFFER_TOO_SMALL)
681 return efi_status_to_err(status);
682
683 return 0;
684
685out:
686 efivar_unlock();
687 return err;
688
689}
690
691/**
692 * efivar_entry_iter - iterate over variable list
693 * @func: callback function
694 * @head: head of variable list
695 * @data: function-specific data to pass to callback
696 *
697 * Iterate over the list of EFI variables and call @func with every
698 * entry on the list. It is safe for @func to remove entries in the
699 * list via efivar_entry_delete() while iterating.
700 *
701 * Some notes for the callback function:
702 * - a non-zero return value indicates an error and terminates the loop
703 * - @func is called from atomic context
704 */
705int efivar_entry_iter(int (*func)(struct efivar_entry *, void *),
706 struct list_head *head, void *data)
707{
708 struct efivar_entry *entry, *n;
709 int err = 0;
710
711 err = efivar_lock();
712 if (err)
713 return err;
714
715 list_for_each_entry_safe(entry, n, head, list) {
716 err = func(entry, data);
717 if (err)
718 break;
719 }
720 efivar_unlock();
721
722 return err;
723}