blob: 5520f0e4f1251a5e93e39d2b6d64b55965d714e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * EFI Variables - efivars.c
3 *
4 * Copyright (C) 2001,2003,2004 Dell <Matt_Domsch@dell.com>
5 * Copyright (C) 2004 Intel Corporation <matthew.e.tolentino@intel.com>
6 *
7 * This code takes all variables accessible from EFI runtime and
8 * exports them via sysfs
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 * Changelog:
25 *
26 * 17 May 2004 - Matt Domsch <Matt_Domsch@dell.com>
27 * remove check for efi_enabled in exit
28 * add MODULE_VERSION
29 *
30 * 26 Apr 2004 - Matt Domsch <Matt_Domsch@dell.com>
31 * minor bug fixes
32 *
33 * 21 Apr 2004 - Matt Tolentino <matthew.e.tolentino@intel.com)
34 * converted driver to export variable information via sysfs
35 * and moved to drivers/firmware directory
36 * bumped revision number to v0.07 to reflect conversion & move
37 *
38 * 10 Dec 2002 - Matt Domsch <Matt_Domsch@dell.com>
39 * fix locking per Peter Chubb's findings
40 *
41 * 25 Mar 2002 - Matt Domsch <Matt_Domsch@dell.com>
42 * move uuid_unparse() to include/asm-ia64/efi.h:efi_guid_unparse()
43 *
44 * 12 Feb 2002 - Matt Domsch <Matt_Domsch@dell.com>
45 * use list_for_each_safe when deleting vars.
46 * remove ifdef CONFIG_SMP around include <linux/smp.h>
47 * v0.04 release to linux-ia64@linuxia64.org
48 *
49 * 20 April 2001 - Matt Domsch <Matt_Domsch@dell.com>
50 * Moved vars from /proc/efi to /proc/efi/vars, and made
51 * efi.c own the /proc/efi directory.
52 * v0.03 release to linux-ia64@linuxia64.org
53 *
54 * 26 March 2001 - Matt Domsch <Matt_Domsch@dell.com>
55 * At the request of Stephane, moved ownership of /proc/efi
56 * to efi.c, and now efivars lives under /proc/efi/vars.
57 *
58 * 12 March 2001 - Matt Domsch <Matt_Domsch@dell.com>
59 * Feedback received from Stephane Eranian incorporated.
60 * efivar_write() checks copy_from_user() return value.
61 * efivar_read/write() returns proper errno.
62 * v0.02 release to linux-ia64@linuxia64.org
63 *
64 * 26 February 2001 - Matt Domsch <Matt_Domsch@dell.com>
65 * v0.01 release to linux-ia64@linuxia64.org
66 */
67
Randy.Dunlapc59ede72006-01-11 12:17:46 -080068#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <linux/types.h>
70#include <linux/errno.h>
71#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/mm.h>
73#include <linux/module.h>
74#include <linux/string.h>
75#include <linux/smp.h>
76#include <linux/efi.h>
77#include <linux/sysfs.h>
78#include <linux/kobject.h>
79#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090080#include <linux/slab.h>
Matthew Garrett5ee9c192011-07-21 16:57:56 -040081#include <linux/pstore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#include <asm/uaccess.h>
84
85#define EFIVARS_VERSION "0.08"
86#define EFIVARS_DATE "2004-May-17"
87
88MODULE_AUTHOR("Matt Domsch <Matt_Domsch@Dell.com>");
89MODULE_DESCRIPTION("sysfs interface to EFI Variables");
90MODULE_LICENSE("GPL");
91MODULE_VERSION(EFIVARS_VERSION);
92
Matthew Garrett5ee9c192011-07-21 16:57:56 -040093#define DUMP_NAME_LEN 52
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095/*
96 * The maximum size of VariableName + Data = 1024
97 * Therefore, it's reasonable to save that much
98 * space in each part of the structure,
99 * and we use a page for reading/writing.
100 */
101
102struct efi_variable {
103 efi_char16_t VariableName[1024/sizeof(efi_char16_t)];
104 efi_guid_t VendorGuid;
105 unsigned long DataSize;
106 __u8 Data[1024];
107 efi_status_t Status;
108 __u32 Attributes;
109} __attribute__((packed));
110
111
112struct efivar_entry {
Mike Waychison4142ef12011-03-11 17:43:11 -0800113 struct efivars *efivars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct efi_variable var;
115 struct list_head list;
116 struct kobject kobj;
117};
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119struct efivar_attribute {
120 struct attribute attr;
121 ssize_t (*show) (struct efivar_entry *entry, char *buf);
122 ssize_t (*store)(struct efivar_entry *entry, const char *buf, size_t count);
123};
124
Matt Fleming4025b052013-03-07 11:59:14 +0000125static struct efivars __efivars;
126static struct efivar_operations ops;
127
Mike Waychison7644c162011-07-21 16:58:00 -0400128#define PSTORE_EFI_ATTRIBUTES \
129 (EFI_VARIABLE_NON_VOLATILE | \
130 EFI_VARIABLE_BOOTSERVICE_ACCESS | \
131 EFI_VARIABLE_RUNTIME_ACCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define EFIVAR_ATTR(_name, _mode, _show, _store) \
134struct efivar_attribute efivar_attr_##_name = { \
Tejun Heo7b595752007-06-14 03:45:17 +0900135 .attr = {.name = __stringify(_name), .mode = _mode}, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .show = _show, \
137 .store = _store, \
138};
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#define to_efivar_attr(_attr) container_of(_attr, struct efivar_attribute, attr)
141#define to_efivar_entry(obj) container_of(obj, struct efivar_entry, kobj)
142
143/*
144 * Prototype for sysfs creation function
145 */
146static int
Mike Waychison4142ef12011-03-11 17:43:11 -0800147efivar_create_sysfs_entry(struct efivars *efivars,
148 unsigned long variable_name_size,
149 efi_char16_t *variable_name,
150 efi_guid_t *vendor_guid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152/* Return the number of unicode characters in data */
153static unsigned long
Mike Waychisona2940902011-07-21 16:57:57 -0400154utf16_strnlen(efi_char16_t *s, size_t maxlength)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 unsigned long length = 0;
157
Mike Waychisona2940902011-07-21 16:57:57 -0400158 while (*s++ != 0 && length < maxlength)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 length++;
160 return length;
161}
162
Tony Luckb728a5c2011-08-02 15:08:30 -0700163static inline unsigned long
Mike Waychisona2940902011-07-21 16:57:57 -0400164utf16_strlen(efi_char16_t *s)
165{
166 return utf16_strnlen(s, ~0UL);
167}
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/*
170 * Return the number of bytes is the length of this string
171 * Note: this is NOT the same as the number of unicode characters
172 */
173static inline unsigned long
Mike Waychisona2940902011-07-21 16:57:57 -0400174utf16_strsize(efi_char16_t *data, unsigned long maxlength)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Mike Waychisona2940902011-07-21 16:57:57 -0400176 return utf16_strnlen(data, maxlength/sizeof(efi_char16_t)) * sizeof(efi_char16_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Mike Waychison828aa1f2011-07-21 16:57:58 -0400179static inline int
180utf16_strncmp(const efi_char16_t *a, const efi_char16_t *b, size_t len)
181{
182 while (1) {
183 if (len == 0)
184 return 0;
185 if (*a < *b)
186 return -1;
187 if (*a > *b)
188 return 1;
189 if (*a == 0) /* implies *b == 0 */
190 return 0;
191 a++;
192 b++;
193 len--;
194 }
195}
196
Matthew Garrettfec6c202012-04-30 16:11:30 -0400197static bool
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400198validate_device_path(struct efi_variable *var, int match, u8 *buffer,
199 unsigned long len)
Matthew Garrettfec6c202012-04-30 16:11:30 -0400200{
201 struct efi_generic_dev_path *node;
202 int offset = 0;
203
204 node = (struct efi_generic_dev_path *)buffer;
205
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400206 if (len < sizeof(*node))
207 return false;
Matthew Garrettfec6c202012-04-30 16:11:30 -0400208
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400209 while (offset <= len - sizeof(*node) &&
210 node->length >= sizeof(*node) &&
211 node->length <= len - offset) {
212 offset += node->length;
Matthew Garrettfec6c202012-04-30 16:11:30 -0400213
214 if ((node->type == EFI_DEV_END_PATH ||
215 node->type == EFI_DEV_END_PATH2) &&
216 node->sub_type == EFI_DEV_END_ENTIRE)
217 return true;
218
219 node = (struct efi_generic_dev_path *)(buffer + offset);
220 }
221
222 /*
223 * If we're here then either node->length pointed past the end
224 * of the buffer or we reached the end of the buffer without
225 * finding a device path end node.
226 */
227 return false;
228}
229
230static bool
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400231validate_boot_order(struct efi_variable *var, int match, u8 *buffer,
232 unsigned long len)
Matthew Garrettfec6c202012-04-30 16:11:30 -0400233{
234 /* An array of 16-bit integers */
235 if ((len % 2) != 0)
236 return false;
237
238 return true;
239}
240
241static bool
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400242validate_load_option(struct efi_variable *var, int match, u8 *buffer,
243 unsigned long len)
Matthew Garrettfec6c202012-04-30 16:11:30 -0400244{
245 u16 filepathlength;
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400246 int i, desclength = 0, namelen;
247
248 namelen = utf16_strnlen(var->VariableName, sizeof(var->VariableName));
Matthew Garrettfec6c202012-04-30 16:11:30 -0400249
250 /* Either "Boot" or "Driver" followed by four digits of hex */
251 for (i = match; i < match+4; i++) {
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400252 if (var->VariableName[i] > 127 ||
253 hex_to_bin(var->VariableName[i] & 0xff) < 0)
Matthew Garrettfec6c202012-04-30 16:11:30 -0400254 return true;
255 }
256
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400257 /* Reject it if there's 4 digits of hex and then further content */
258 if (namelen > match + 4)
259 return false;
260
261 /* A valid entry must be at least 8 bytes */
262 if (len < 8)
Matthew Garrettfec6c202012-04-30 16:11:30 -0400263 return false;
264
265 filepathlength = buffer[4] | buffer[5] << 8;
266
267 /*
268 * There's no stored length for the description, so it has to be
269 * found by hand
270 */
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400271 desclength = utf16_strsize((efi_char16_t *)(buffer + 6), len - 6) + 2;
Matthew Garrettfec6c202012-04-30 16:11:30 -0400272
273 /* Each boot entry must have a descriptor */
274 if (!desclength)
275 return false;
276
277 /*
278 * If the sum of the length of the description, the claimed filepath
279 * length and the original header are greater than the length of the
280 * variable, it's malformed
281 */
282 if ((desclength + filepathlength + 6) > len)
283 return false;
284
285 /*
286 * And, finally, check the filepath
287 */
288 return validate_device_path(var, match, buffer + desclength + 6,
289 filepathlength);
290}
291
292static bool
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400293validate_uint16(struct efi_variable *var, int match, u8 *buffer,
294 unsigned long len)
Matthew Garrettfec6c202012-04-30 16:11:30 -0400295{
296 /* A single 16-bit integer */
297 if (len != 2)
298 return false;
299
300 return true;
301}
302
303static bool
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400304validate_ascii_string(struct efi_variable *var, int match, u8 *buffer,
305 unsigned long len)
Matthew Garrettfec6c202012-04-30 16:11:30 -0400306{
307 int i;
308
309 for (i = 0; i < len; i++) {
310 if (buffer[i] > 127)
311 return false;
312
313 if (buffer[i] == 0)
314 return true;
315 }
316
317 return false;
318}
319
320struct variable_validate {
321 char *name;
322 bool (*validate)(struct efi_variable *var, int match, u8 *data,
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400323 unsigned long len);
Matthew Garrettfec6c202012-04-30 16:11:30 -0400324};
325
326static const struct variable_validate variable_validate[] = {
327 { "BootNext", validate_uint16 },
328 { "BootOrder", validate_boot_order },
329 { "DriverOrder", validate_boot_order },
330 { "Boot*", validate_load_option },
331 { "Driver*", validate_load_option },
332 { "ConIn", validate_device_path },
333 { "ConInDev", validate_device_path },
334 { "ConOut", validate_device_path },
335 { "ConOutDev", validate_device_path },
336 { "ErrOut", validate_device_path },
337 { "ErrOutDev", validate_device_path },
338 { "Timeout", validate_uint16 },
339 { "Lang", validate_ascii_string },
340 { "PlatformLang", validate_ascii_string },
341 { "", NULL },
342};
343
344static bool
Matthew Garrett54b3a4d2012-05-03 16:50:46 -0400345validate_var(struct efi_variable *var, u8 *data, unsigned long len)
Matthew Garrettfec6c202012-04-30 16:11:30 -0400346{
347 int i;
348 u16 *unicode_name = var->VariableName;
349
350 for (i = 0; variable_validate[i].validate != NULL; i++) {
351 const char *name = variable_validate[i].name;
352 int match;
353
354 for (match = 0; ; match++) {
355 char c = name[match];
356 u16 u = unicode_name[match];
357
358 /* All special variables are plain ascii */
359 if (u > 127)
360 return true;
361
362 /* Wildcard in the matching name means we've matched */
363 if (c == '*')
364 return variable_validate[i].validate(var,
365 match, data, len);
366
367 /* Case sensitive match */
368 if (c != u)
369 break;
370
371 /* Reached the end of the string while matching */
372 if (!c)
373 return variable_validate[i].validate(var,
374 match, data, len);
375 }
376 }
377
378 return true;
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381static efi_status_t
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400382get_var_data_locked(struct efivars *efivars, struct efi_variable *var)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 efi_status_t status;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 var->DataSize = 1024;
Mike Waychison32958142011-03-11 17:43:21 -0800387 status = efivars->ops->get_variable(var->VariableName,
388 &var->VendorGuid,
389 &var->Attributes,
390 &var->DataSize,
391 var->Data);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400392 return status;
393}
394
395static efi_status_t
396get_var_data(struct efivars *efivars, struct efi_variable *var)
397{
398 efi_status_t status;
Josh Boyerff534f02013-03-11 17:47:42 -0400399 unsigned long flags;
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400400
Josh Boyerff534f02013-03-11 17:47:42 -0400401 spin_lock_irqsave(&efivars->lock, flags);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400402 status = get_var_data_locked(efivars, var);
Josh Boyerff534f02013-03-11 17:47:42 -0400403 spin_unlock_irqrestore(&efivars->lock, flags);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (status != EFI_SUCCESS) {
406 printk(KERN_WARNING "efivars: get_variable() failed 0x%lx!\n",
407 status);
408 }
409 return status;
410}
411
Josh Boyere887bb42013-03-11 17:48:53 -0400412static efi_status_t
413check_var_size_locked(struct efivars *efivars, u32 attributes,
414 unsigned long size)
415{
416 u64 storage_size, remaining_size, max_size;
417 efi_status_t status;
418 const struct efivar_operations *fops = efivars->ops;
419
420 if (!efivars->ops->query_variable_info)
421 return EFI_UNSUPPORTED;
422
423 status = fops->query_variable_info(attributes, &storage_size,
424 &remaining_size, &max_size);
425
426 if (status != EFI_SUCCESS)
427 return status;
428
429 if (!storage_size || size > remaining_size || size > max_size ||
430 (remaining_size - size) < (storage_size / 2))
431 return EFI_OUT_OF_RESOURCES;
432
433 return status;
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static ssize_t
437efivar_guid_read(struct efivar_entry *entry, char *buf)
438{
439 struct efi_variable *var = &entry->var;
440 char *str = buf;
441
442 if (!entry || !buf)
443 return 0;
444
445 efi_guid_unparse(&var->VendorGuid, str);
446 str += strlen(str);
447 str += sprintf(str, "\n");
448
449 return str - buf;
450}
451
452static ssize_t
453efivar_attr_read(struct efivar_entry *entry, char *buf)
454{
455 struct efi_variable *var = &entry->var;
456 char *str = buf;
457 efi_status_t status;
458
459 if (!entry || !buf)
460 return -EINVAL;
461
Mike Waychison4142ef12011-03-11 17:43:11 -0800462 status = get_var_data(entry->efivars, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (status != EFI_SUCCESS)
464 return -EIO;
465
Khalid Azized020042012-09-10 12:52:42 -0600466 if (var->Attributes & EFI_VARIABLE_NON_VOLATILE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 str += sprintf(str, "EFI_VARIABLE_NON_VOLATILE\n");
Khalid Azized020042012-09-10 12:52:42 -0600468 if (var->Attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 str += sprintf(str, "EFI_VARIABLE_BOOTSERVICE_ACCESS\n");
Khalid Azized020042012-09-10 12:52:42 -0600470 if (var->Attributes & EFI_VARIABLE_RUNTIME_ACCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 str += sprintf(str, "EFI_VARIABLE_RUNTIME_ACCESS\n");
Khalid Azized020042012-09-10 12:52:42 -0600472 if (var->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD)
473 str += sprintf(str, "EFI_VARIABLE_HARDWARE_ERROR_RECORD\n");
474 if (var->Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS)
475 str += sprintf(str,
476 "EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS\n");
477 if (var->Attributes &
478 EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS)
479 str += sprintf(str,
480 "EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS\n");
481 if (var->Attributes & EFI_VARIABLE_APPEND_WRITE)
482 str += sprintf(str, "EFI_VARIABLE_APPEND_WRITE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return str - buf;
484}
485
486static ssize_t
487efivar_size_read(struct efivar_entry *entry, char *buf)
488{
489 struct efi_variable *var = &entry->var;
490 char *str = buf;
491 efi_status_t status;
492
493 if (!entry || !buf)
494 return -EINVAL;
495
Mike Waychison4142ef12011-03-11 17:43:11 -0800496 status = get_var_data(entry->efivars, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (status != EFI_SUCCESS)
498 return -EIO;
499
500 str += sprintf(str, "0x%lx\n", var->DataSize);
501 return str - buf;
502}
503
504static ssize_t
505efivar_data_read(struct efivar_entry *entry, char *buf)
506{
507 struct efi_variable *var = &entry->var;
508 efi_status_t status;
509
510 if (!entry || !buf)
511 return -EINVAL;
512
Mike Waychison4142ef12011-03-11 17:43:11 -0800513 status = get_var_data(entry->efivars, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (status != EFI_SUCCESS)
515 return -EIO;
516
517 memcpy(buf, var->Data, var->DataSize);
518 return var->DataSize;
519}
520/*
521 * We allow each variable to be edited via rewriting the
522 * entire efi variable structure.
523 */
524static ssize_t
525efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count)
526{
527 struct efi_variable *new_var, *var = &entry->var;
Mike Waychison4142ef12011-03-11 17:43:11 -0800528 struct efivars *efivars = entry->efivars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 efi_status_t status = EFI_NOT_FOUND;
530
531 if (count != sizeof(struct efi_variable))
532 return -EINVAL;
533
534 new_var = (struct efi_variable *)buf;
535 /*
536 * If only updating the variable data, then the name
537 * and guid should remain the same
538 */
539 if (memcmp(new_var->VariableName, var->VariableName, sizeof(var->VariableName)) ||
540 efi_guidcmp(new_var->VendorGuid, var->VendorGuid)) {
541 printk(KERN_ERR "efivars: Cannot edit the wrong variable!\n");
542 return -EINVAL;
543 }
544
545 if ((new_var->DataSize <= 0) || (new_var->Attributes == 0)){
546 printk(KERN_ERR "efivars: DataSize & Attributes must be valid!\n");
547 return -EINVAL;
548 }
549
Matthew Garrettfec6c202012-04-30 16:11:30 -0400550 if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 ||
551 validate_var(new_var, new_var->Data, new_var->DataSize) == false) {
552 printk(KERN_ERR "efivars: Malformed variable content\n");
553 return -EINVAL;
554 }
555
Josh Boyerff534f02013-03-11 17:47:42 -0400556 spin_lock_irq(&efivars->lock);
Josh Boyere887bb42013-03-11 17:48:53 -0400557
558 status = check_var_size_locked(efivars, new_var->Attributes,
559 new_var->DataSize + utf16_strsize(new_var->VariableName, 1024));
560
561 if (status == EFI_SUCCESS || status == EFI_UNSUPPORTED)
562 status = efivars->ops->set_variable(new_var->VariableName,
563 &new_var->VendorGuid,
564 new_var->Attributes,
565 new_var->DataSize,
566 new_var->Data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Josh Boyerff534f02013-03-11 17:47:42 -0400568 spin_unlock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 if (status != EFI_SUCCESS) {
571 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
572 status);
573 return -EIO;
574 }
575
576 memcpy(&entry->var, new_var, count);
577 return count;
578}
579
580static ssize_t
581efivar_show_raw(struct efivar_entry *entry, char *buf)
582{
583 struct efi_variable *var = &entry->var;
584 efi_status_t status;
585
586 if (!entry || !buf)
587 return 0;
588
Mike Waychison4142ef12011-03-11 17:43:11 -0800589 status = get_var_data(entry->efivars, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (status != EFI_SUCCESS)
591 return -EIO;
592
593 memcpy(buf, var, sizeof(*var));
594 return sizeof(*var);
595}
596
597/*
598 * Generic read/write functions that call the specific functions of
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200599 * the attributes...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
601static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr,
602 char *buf)
603{
604 struct efivar_entry *var = to_efivar_entry(kobj);
605 struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
Dmitry Torokhov70f28172005-04-29 01:27:34 -0500606 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 if (!capable(CAP_SYS_ADMIN))
609 return -EACCES;
610
611 if (efivar_attr->show) {
612 ret = efivar_attr->show(var, buf);
613 }
614 return ret;
615}
616
617static ssize_t efivar_attr_store(struct kobject *kobj, struct attribute *attr,
618 const char *buf, size_t count)
619{
620 struct efivar_entry *var = to_efivar_entry(kobj);
621 struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
Dmitry Torokhov70f28172005-04-29 01:27:34 -0500622 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 if (!capable(CAP_SYS_ADMIN))
625 return -EACCES;
626
627 if (efivar_attr->store)
628 ret = efivar_attr->store(var, buf, count);
629
630 return ret;
631}
632
Emese Revfy52cf25d2010-01-19 02:58:23 +0100633static const struct sysfs_ops efivar_attr_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 .show = efivar_attr_show,
635 .store = efivar_attr_store,
636};
637
638static void efivar_release(struct kobject *kobj)
639{
640 struct efivar_entry *var = container_of(kobj, struct efivar_entry, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 kfree(var);
642}
643
644static EFIVAR_ATTR(guid, 0400, efivar_guid_read, NULL);
645static EFIVAR_ATTR(attributes, 0400, efivar_attr_read, NULL);
646static EFIVAR_ATTR(size, 0400, efivar_size_read, NULL);
647static EFIVAR_ATTR(data, 0400, efivar_data_read, NULL);
648static EFIVAR_ATTR(raw_var, 0600, efivar_show_raw, efivar_store_raw);
649
650static struct attribute *def_attrs[] = {
651 &efivar_attr_guid.attr,
652 &efivar_attr_size.attr,
653 &efivar_attr_attributes.attr,
654 &efivar_attr_data.attr,
655 &efivar_attr_raw_var.attr,
656 NULL,
657};
658
Greg Kroah-Hartmane89a4112007-10-11 10:47:49 -0600659static struct kobj_type efivar_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 .release = efivar_release,
661 .sysfs_ops = &efivar_attr_ops,
662 .default_attrs = def_attrs,
663};
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665static inline void
666efivar_unregister(struct efivar_entry *var)
667{
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800668 kobject_put(&var->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Josh Boyere887bb42013-03-11 17:48:53 -0400671static int efi_status_to_err(efi_status_t status)
672{
673 int err;
674
675 switch (status) {
676 case EFI_INVALID_PARAMETER:
677 err = -EINVAL;
678 break;
679 case EFI_OUT_OF_RESOURCES:
680 err = -ENOSPC;
681 break;
682 case EFI_DEVICE_ERROR:
683 err = -EIO;
684 break;
685 case EFI_WRITE_PROTECTED:
686 err = -EROFS;
687 break;
688 case EFI_SECURITY_VIOLATION:
689 err = -EACCES;
690 break;
691 case EFI_NOT_FOUND:
692 err = -ENOENT;
693 break;
694 default:
695 err = -EINVAL;
696 }
697
698 return err;
699}
700
Seth Forsheef6a087a2013-03-07 11:40:17 -0600701#ifdef CONFIG_EFI_VARS_PSTORE
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400702
703static int efi_pstore_open(struct pstore_info *psi)
704{
705 struct efivars *efivars = psi->data;
706
Josh Boyerff534f02013-03-11 17:47:42 -0400707 spin_lock_irq(&efivars->lock);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400708 efivars->walk_entry = list_first_entry(&efivars->list,
709 struct efivar_entry, list);
710 return 0;
711}
712
713static int efi_pstore_close(struct pstore_info *psi)
714{
715 struct efivars *efivars = psi->data;
716
Josh Boyerff534f02013-03-11 17:47:42 -0400717 spin_unlock_irq(&efivars->lock);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400718 return 0;
719}
720
721static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
Kees Cookf6f82852011-11-17 12:58:07 -0800722 struct timespec *timespec,
723 char **buf, struct pstore_info *psi)
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400724{
725 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
726 struct efivars *efivars = psi->data;
727 char name[DUMP_NAME_LEN];
728 int i;
729 unsigned int part, size;
730 unsigned long time;
731
732 while (&efivars->walk_entry->list != &efivars->list) {
733 if (!efi_guidcmp(efivars->walk_entry->var.VendorGuid,
734 vendor)) {
735 for (i = 0; i < DUMP_NAME_LEN; i++) {
736 name[i] = efivars->walk_entry->var.VariableName[i];
737 }
738 if (sscanf(name, "dump-type%u-%u-%lu", type, &part, &time) == 3) {
739 *id = part;
740 timespec->tv_sec = time;
741 timespec->tv_nsec = 0;
742 get_var_data_locked(efivars, &efivars->walk_entry->var);
743 size = efivars->walk_entry->var.DataSize;
Kees Cookf6f82852011-11-17 12:58:07 -0800744 *buf = kmalloc(size, GFP_KERNEL);
745 if (*buf == NULL)
746 return -ENOMEM;
747 memcpy(*buf, efivars->walk_entry->var.Data,
748 size);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400749 efivars->walk_entry = list_entry(efivars->walk_entry->list.next,
750 struct efivar_entry, list);
751 return size;
752 }
753 }
754 efivars->walk_entry = list_entry(efivars->walk_entry->list.next,
755 struct efivar_entry, list);
756 }
757 return 0;
758}
759
Kees Cook3d6d8d22011-11-17 13:13:29 -0800760static int efi_pstore_write(enum pstore_type_id type,
761 enum kmsg_dump_reason reason, u64 *id,
Chen Gongb238b8f2011-10-12 09:17:24 -0700762 unsigned int part, size_t size, struct pstore_info *psi)
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400763{
764 char name[DUMP_NAME_LEN];
765 char stub_name[DUMP_NAME_LEN];
766 efi_char16_t efi_name[DUMP_NAME_LEN];
767 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
768 struct efivars *efivars = psi->data;
769 struct efivar_entry *entry, *found = NULL;
Chen Gongb238b8f2011-10-12 09:17:24 -0700770 int i, ret = 0;
Seiji Aguchi8e74ecf2012-11-14 20:25:37 +0000771 efi_status_t status = EFI_NOT_FOUND;
Josh Boyerff534f02013-03-11 17:47:42 -0400772 unsigned long flags;
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400773
774 sprintf(stub_name, "dump-type%u-%u-", type, part);
775 sprintf(name, "%s%lu", stub_name, get_seconds());
776
Josh Boyerff534f02013-03-11 17:47:42 -0400777 spin_lock_irqsave(&efivars->lock, flags);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400778
Ben Hutchings1c4e6e92013-03-23 03:49:53 +0000779 if (size) {
780 /*
781 * Check if there is a space enough to log.
782 * size: a size of logging data
783 * DUMP_NAME_LEN * 2: a maximum size of variable name
784 */
Josh Boyere887bb42013-03-11 17:48:53 -0400785
Ben Hutchings1c4e6e92013-03-23 03:49:53 +0000786 status = check_var_size_locked(efivars, PSTORE_EFI_ATTRIBUTES,
787 size + DUMP_NAME_LEN * 2);
Josh Boyere887bb42013-03-11 17:48:53 -0400788
Ben Hutchings1c4e6e92013-03-23 03:49:53 +0000789 if (status) {
790 spin_unlock_irqrestore(&efivars->lock, flags);
791 *id = part;
792 return -ENOSPC;
793 }
Seiji Aguchi8e74ecf2012-11-14 20:25:37 +0000794 }
795
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400796 for (i = 0; i < DUMP_NAME_LEN; i++)
797 efi_name[i] = stub_name[i];
798
799 /*
800 * Clean up any entries with the same name
801 */
802
803 list_for_each_entry(entry, &efivars->list, list) {
804 get_var_data_locked(efivars, &entry->var);
805
Mike Waychisonc4755942011-07-21 16:57:59 -0400806 if (efi_guidcmp(entry->var.VendorGuid, vendor))
807 continue;
808 if (utf16_strncmp(entry->var.VariableName, efi_name,
809 utf16_strlen(efi_name)))
810 continue;
811 /* Needs to be a prefix */
812 if (entry->var.VariableName[utf16_strlen(efi_name)] == 0)
813 continue;
814
815 /* found */
816 found = entry;
Mike Waychison7644c162011-07-21 16:58:00 -0400817 efivars->ops->set_variable(entry->var.VariableName,
818 &entry->var.VendorGuid,
819 PSTORE_EFI_ATTRIBUTES,
Mike Waychisonc4755942011-07-21 16:57:59 -0400820 0, NULL);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400821 }
822
823 if (found)
824 list_del(&found->list);
825
826 for (i = 0; i < DUMP_NAME_LEN; i++)
827 efi_name[i] = name[i];
828
Mike Waychison7644c162011-07-21 16:58:00 -0400829 efivars->ops->set_variable(efi_name, &vendor, PSTORE_EFI_ATTRIBUTES,
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400830 size, psi->buf);
831
Josh Boyerff534f02013-03-11 17:47:42 -0400832 spin_unlock_irqrestore(&efivars->lock, flags);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400833
834 if (found)
835 efivar_unregister(found);
836
837 if (size)
Chen Gongb238b8f2011-10-12 09:17:24 -0700838 ret = efivar_create_sysfs_entry(efivars,
Mike Waychisona2940902011-07-21 16:57:57 -0400839 utf16_strsize(efi_name,
840 DUMP_NAME_LEN * 2),
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400841 efi_name, &vendor);
842
Chen Gongb238b8f2011-10-12 09:17:24 -0700843 *id = part;
844 return ret;
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400845};
846
847static int efi_pstore_erase(enum pstore_type_id type, u64 id,
848 struct pstore_info *psi)
849{
Kees Cook3d6d8d22011-11-17 13:13:29 -0800850 efi_pstore_write(type, 0, &id, (unsigned int)id, 0, psi);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400851
852 return 0;
853}
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400854
855static struct pstore_info efi_pstore_info = {
856 .owner = THIS_MODULE,
857 .name = "efi",
858 .open = efi_pstore_open,
859 .close = efi_pstore_close,
860 .read = efi_pstore_read,
861 .write = efi_pstore_write,
862 .erase = efi_pstore_erase,
863};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Seth Forsheef6a087a2013-03-07 11:40:17 -0600865static void efivar_pstore_register(struct efivars *efivars)
866{
867 efivars->efi_pstore_info = efi_pstore_info;
868 efivars->efi_pstore_info.buf = kmalloc(4096, GFP_KERNEL);
869 if (efivars->efi_pstore_info.buf) {
870 efivars->efi_pstore_info.bufsize = 1024;
871 efivars->efi_pstore_info.data = efivars;
872 spin_lock_init(&efivars->efi_pstore_info.buf_lock);
873 pstore_register(&efivars->efi_pstore_info);
874 }
875}
876#else
877static void efivar_pstore_register(struct efivars *efivars)
878{
879 return;
880}
881#endif
882
Chris Wright2c3c8be2010-05-12 18:28:57 -0700883static ssize_t efivar_create(struct file *filp, struct kobject *kobj,
Greg Kroah-Hartman97fa5bb2007-11-07 13:56:19 -0800884 struct bin_attribute *bin_attr,
885 char *buf, loff_t pos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 struct efi_variable *new_var = (struct efi_variable *)buf;
Mike Waychison4142ef12011-03-11 17:43:11 -0800888 struct efivars *efivars = bin_attr->private;
Matt Domsch496a0fc2007-01-26 00:57:18 -0800889 struct efivar_entry *search_efivar, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 unsigned long strsize1, strsize2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 efi_status_t status = EFI_NOT_FOUND;
892 int found = 0;
893
894 if (!capable(CAP_SYS_ADMIN))
895 return -EACCES;
896
Matthew Garrettfec6c202012-04-30 16:11:30 -0400897 if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 ||
898 validate_var(new_var, new_var->Data, new_var->DataSize) == false) {
899 printk(KERN_ERR "efivars: Malformed variable content\n");
900 return -EINVAL;
901 }
902
Josh Boyerff534f02013-03-11 17:47:42 -0400903 spin_lock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 /*
906 * Does this variable already exist?
907 */
Mike Waychison29422692011-03-11 17:43:00 -0800908 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
Mike Waychisona2940902011-07-21 16:57:57 -0400909 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
910 strsize2 = utf16_strsize(new_var->VariableName, 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (strsize1 == strsize2 &&
912 !memcmp(&(search_efivar->var.VariableName),
913 new_var->VariableName, strsize1) &&
914 !efi_guidcmp(search_efivar->var.VendorGuid,
915 new_var->VendorGuid)) {
916 found = 1;
917 break;
918 }
919 }
920 if (found) {
Josh Boyerff534f02013-03-11 17:47:42 -0400921 spin_unlock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return -EINVAL;
923 }
924
Josh Boyere887bb42013-03-11 17:48:53 -0400925 status = check_var_size_locked(efivars, new_var->Attributes,
926 new_var->DataSize + utf16_strsize(new_var->VariableName, 1024));
927
928 if (status && status != EFI_UNSUPPORTED) {
929 spin_unlock_irq(&efivars->lock);
930 return efi_status_to_err(status);
931 }
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /* now *really* create the variable via EFI */
Mike Waychison32958142011-03-11 17:43:21 -0800934 status = efivars->ops->set_variable(new_var->VariableName,
935 &new_var->VendorGuid,
936 new_var->Attributes,
937 new_var->DataSize,
938 new_var->Data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 if (status != EFI_SUCCESS) {
941 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
942 status);
Josh Boyerff534f02013-03-11 17:47:42 -0400943 spin_unlock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return -EIO;
945 }
Josh Boyerff534f02013-03-11 17:47:42 -0400946 spin_unlock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 /* Create the entry in sysfs. Locking is not required here */
Mike Waychison4142ef12011-03-11 17:43:11 -0800949 status = efivar_create_sysfs_entry(efivars,
Mike Waychisona2940902011-07-21 16:57:57 -0400950 utf16_strsize(new_var->VariableName,
951 1024),
Mike Waychison4142ef12011-03-11 17:43:11 -0800952 new_var->VariableName,
953 &new_var->VendorGuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (status) {
955 printk(KERN_WARNING "efivars: variable created, but sysfs entry wasn't.\n");
956 }
957 return count;
958}
959
Chris Wright2c3c8be2010-05-12 18:28:57 -0700960static ssize_t efivar_delete(struct file *filp, struct kobject *kobj,
Greg Kroah-Hartman97fa5bb2007-11-07 13:56:19 -0800961 struct bin_attribute *bin_attr,
962 char *buf, loff_t pos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 struct efi_variable *del_var = (struct efi_variable *)buf;
Mike Waychison4142ef12011-03-11 17:43:11 -0800965 struct efivars *efivars = bin_attr->private;
Matt Domsch496a0fc2007-01-26 00:57:18 -0800966 struct efivar_entry *search_efivar, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 unsigned long strsize1, strsize2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 efi_status_t status = EFI_NOT_FOUND;
969 int found = 0;
970
971 if (!capable(CAP_SYS_ADMIN))
972 return -EACCES;
973
Josh Boyerff534f02013-03-11 17:47:42 -0400974 spin_lock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 /*
977 * Does this variable already exist?
978 */
Mike Waychison29422692011-03-11 17:43:00 -0800979 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
Mike Waychisona2940902011-07-21 16:57:57 -0400980 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
981 strsize2 = utf16_strsize(del_var->VariableName, 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (strsize1 == strsize2 &&
983 !memcmp(&(search_efivar->var.VariableName),
984 del_var->VariableName, strsize1) &&
985 !efi_guidcmp(search_efivar->var.VendorGuid,
986 del_var->VendorGuid)) {
987 found = 1;
988 break;
989 }
990 }
991 if (!found) {
Josh Boyerff534f02013-03-11 17:47:42 -0400992 spin_unlock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return -EINVAL;
994 }
995 /* force the Attributes/DataSize to 0 to ensure deletion */
996 del_var->Attributes = 0;
997 del_var->DataSize = 0;
998
Mike Waychison32958142011-03-11 17:43:21 -0800999 status = efivars->ops->set_variable(del_var->VariableName,
1000 &del_var->VendorGuid,
1001 del_var->Attributes,
1002 del_var->DataSize,
1003 del_var->Data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 if (status != EFI_SUCCESS) {
1006 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
1007 status);
Josh Boyerff534f02013-03-11 17:47:42 -04001008 spin_unlock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return -EIO;
1010 }
Matt Domsch496a0fc2007-01-26 00:57:18 -08001011 list_del(&search_efivar->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /* We need to release this lock before unregistering. */
Josh Boyerff534f02013-03-11 17:47:42 -04001013 spin_unlock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 efivar_unregister(search_efivar);
1015
1016 /* It's dead Jim.... */
1017 return count;
1018}
1019
Matt Fleming4025b052013-03-07 11:59:14 +00001020static bool variable_is_present(efi_char16_t *variable_name, efi_guid_t *vendor)
1021{
1022 struct efivar_entry *entry, *n;
1023 struct efivars *efivars = &__efivars;
1024 unsigned long strsize1, strsize2;
1025 bool found = false;
1026
1027 strsize1 = utf16_strsize(variable_name, 1024);
1028 list_for_each_entry_safe(entry, n, &efivars->list, list) {
1029 strsize2 = utf16_strsize(entry->var.VariableName, 1024);
1030 if (strsize1 == strsize2 &&
1031 !memcmp(variable_name, &(entry->var.VariableName),
1032 strsize2) &&
1033 !efi_guidcmp(entry->var.VendorGuid,
1034 *vendor)) {
1035 found = true;
1036 break;
1037 }
1038 }
1039 return found;
1040}
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042/*
Matt Fleming5c44ddd2013-03-01 14:49:12 +00001043 * Returns the size of variable_name, in bytes, including the
1044 * terminating NULL character, or variable_name_size if no NULL
1045 * character is found among the first variable_name_size bytes.
1046 */
1047static unsigned long var_name_strnsize(efi_char16_t *variable_name,
1048 unsigned long variable_name_size)
1049{
1050 unsigned long len;
1051 efi_char16_t c;
1052
1053 /*
1054 * The variable name is, by definition, a NULL-terminated
1055 * string, so make absolutely sure that variable_name_size is
1056 * the value we expect it to be. If not, return the real size.
1057 */
1058 for (len = 2; len <= variable_name_size; len += sizeof(c)) {
1059 c = variable_name[(len / sizeof(c)) - 1];
1060 if (!c)
1061 break;
1062 }
1063
1064 return min(len, variable_name_size);
1065}
1066
1067/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 * Let's not leave out systab information that snuck into
1069 * the efivars driver
1070 */
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001071static ssize_t systab_show(struct kobject *kobj,
1072 struct kobj_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
1074 char *str = buf;
1075
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001076 if (!kobj || !buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return -EINVAL;
1078
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -08001079 if (efi.mps != EFI_INVALID_TABLE_ADDR)
1080 str += sprintf(str, "MPS=0x%lx\n", efi.mps);
1081 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
1082 str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20);
1083 if (efi.acpi != EFI_INVALID_TABLE_ADDR)
1084 str += sprintf(str, "ACPI=0x%lx\n", efi.acpi);
1085 if (efi.smbios != EFI_INVALID_TABLE_ADDR)
1086 str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios);
1087 if (efi.hcdp != EFI_INVALID_TABLE_ADDR)
1088 str += sprintf(str, "HCDP=0x%lx\n", efi.hcdp);
1089 if (efi.boot_info != EFI_INVALID_TABLE_ADDR)
1090 str += sprintf(str, "BOOTINFO=0x%lx\n", efi.boot_info);
1091 if (efi.uga != EFI_INVALID_TABLE_ADDR)
1092 str += sprintf(str, "UGA=0x%lx\n", efi.uga);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 return str - buf;
1095}
1096
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001097static struct kobj_attribute efi_attr_systab =
1098 __ATTR(systab, 0400, systab_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001100static struct attribute *efi_subsys_attrs[] = {
1101 &efi_attr_systab.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 NULL, /* maybe more in the future? */
1103};
1104
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001105static struct attribute_group efi_subsys_attr_group = {
1106 .attrs = efi_subsys_attrs,
1107};
1108
Greg Kroah-Hartmanbc87d2f2007-11-07 13:56:19 -08001109static struct kobject *efi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111/*
1112 * efivar_create_sysfs_entry()
1113 * Requires:
1114 * variable_name_size = number of bytes required to hold
1115 * variable_name (not counting the NULL
1116 * character at the end.
Mike Waychison29422692011-03-11 17:43:00 -08001117 * efivars->lock is not held on entry or exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 * Returns 1 on failure, 0 on success
1119 */
1120static int
Mike Waychison4142ef12011-03-11 17:43:11 -08001121efivar_create_sysfs_entry(struct efivars *efivars,
1122 unsigned long variable_name_size,
1123 efi_char16_t *variable_name,
1124 efi_guid_t *vendor_guid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 int i, short_name_size = variable_name_size / sizeof(efi_char16_t) + 38;
1127 char *short_name;
1128 struct efivar_entry *new_efivar;
1129
Deepak Saxena9c215382005-11-07 01:01:24 -08001130 short_name = kzalloc(short_name_size + 1, GFP_KERNEL);
1131 new_efivar = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 if (!short_name || !new_efivar) {
Jesper Juhl0933ad92005-06-25 14:59:15 -07001134 kfree(short_name);
1135 kfree(new_efivar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 return 1;
1137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Mike Waychison4142ef12011-03-11 17:43:11 -08001139 new_efivar->efivars = efivars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 memcpy(new_efivar->var.VariableName, variable_name,
1141 variable_name_size);
1142 memcpy(&(new_efivar->var.VendorGuid), vendor_guid, sizeof(efi_guid_t));
1143
1144 /* Convert Unicode to normal chars (assume top bits are 0),
1145 ala UTF-8 */
1146 for (i=0; i < (int)(variable_name_size / sizeof(efi_char16_t)); i++) {
1147 short_name[i] = variable_name[i] & 0xFF;
1148 }
1149 /* This is ugly, but necessary to separate one vendor's
1150 private variables from another's. */
1151
1152 *(short_name + strlen(short_name)) = '-';
1153 efi_guid_unparse(vendor_guid, short_name + strlen(short_name));
1154
Mike Waychison29422692011-03-11 17:43:00 -08001155 new_efivar->kobj.kset = efivars->kset;
Greg Kroah-Hartmand6d292c2007-12-17 15:54:39 -04001156 i = kobject_init_and_add(&new_efivar->kobj, &efivar_ktype, NULL,
1157 "%s", short_name);
Jeff Garzik69b21862006-10-11 01:22:23 -07001158 if (i) {
1159 kfree(short_name);
1160 kfree(new_efivar);
1161 return 1;
1162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Greg Kroah-Hartmand6d292c2007-12-17 15:54:39 -04001164 kobject_uevent(&new_efivar->kobj, KOBJ_ADD);
Jesper Juhl0933ad92005-06-25 14:59:15 -07001165 kfree(short_name);
1166 short_name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Josh Boyerff534f02013-03-11 17:47:42 -04001168 spin_lock_irq(&efivars->lock);
Mike Waychison29422692011-03-11 17:43:00 -08001169 list_add(&new_efivar->list, &efivars->list);
Josh Boyerff534f02013-03-11 17:47:42 -04001170 spin_unlock_irq(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 return 0;
1173}
Mike Waychisond502fbb2011-03-11 17:43:06 -08001174
1175static int
1176create_efivars_bin_attributes(struct efivars *efivars)
1177{
1178 struct bin_attribute *attr;
1179 int error;
1180
1181 /* new_var */
1182 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1183 if (!attr)
1184 return -ENOMEM;
1185
1186 attr->attr.name = "new_var";
1187 attr->attr.mode = 0200;
1188 attr->write = efivar_create;
1189 attr->private = efivars;
1190 efivars->new_var = attr;
1191
1192 /* del_var */
1193 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1194 if (!attr) {
1195 error = -ENOMEM;
1196 goto out_free;
1197 }
1198 attr->attr.name = "del_var";
1199 attr->attr.mode = 0200;
1200 attr->write = efivar_delete;
1201 attr->private = efivars;
1202 efivars->del_var = attr;
1203
1204 sysfs_bin_attr_init(efivars->new_var);
1205 sysfs_bin_attr_init(efivars->del_var);
1206
1207 /* Register */
1208 error = sysfs_create_bin_file(&efivars->kset->kobj,
1209 efivars->new_var);
1210 if (error) {
1211 printk(KERN_ERR "efivars: unable to create new_var sysfs file"
1212 " due to error %d\n", error);
1213 goto out_free;
1214 }
1215 error = sysfs_create_bin_file(&efivars->kset->kobj,
1216 efivars->del_var);
1217 if (error) {
1218 printk(KERN_ERR "efivars: unable to create del_var sysfs file"
1219 " due to error %d\n", error);
1220 sysfs_remove_bin_file(&efivars->kset->kobj,
1221 efivars->new_var);
1222 goto out_free;
1223 }
1224
1225 return 0;
1226out_free:
Dan Carpenter051d51b2011-03-18 10:12:14 +03001227 kfree(efivars->del_var);
1228 efivars->del_var = NULL;
Mike Waychisond502fbb2011-03-11 17:43:06 -08001229 kfree(efivars->new_var);
1230 efivars->new_var = NULL;
1231 return error;
1232}
1233
Mike Waychison4fc756b2011-03-11 17:43:27 -08001234void unregister_efivars(struct efivars *efivars)
Mike Waychison76b53f72011-03-11 17:43:16 -08001235{
1236 struct efivar_entry *entry, *n;
Mike Waychison4142ef12011-03-11 17:43:11 -08001237
Mike Waychison76b53f72011-03-11 17:43:16 -08001238 list_for_each_entry_safe(entry, n, &efivars->list, list) {
Josh Boyerff534f02013-03-11 17:47:42 -04001239 spin_lock_irq(&efivars->lock);
Mike Waychison76b53f72011-03-11 17:43:16 -08001240 list_del(&entry->list);
Josh Boyerff534f02013-03-11 17:47:42 -04001241 spin_unlock_irq(&efivars->lock);
Mike Waychison76b53f72011-03-11 17:43:16 -08001242 efivar_unregister(entry);
1243 }
1244 if (efivars->new_var)
1245 sysfs_remove_bin_file(&efivars->kset->kobj, efivars->new_var);
1246 if (efivars->del_var)
1247 sysfs_remove_bin_file(&efivars->kset->kobj, efivars->del_var);
1248 kfree(efivars->new_var);
1249 kfree(efivars->del_var);
1250 kset_unregister(efivars->kset);
1251}
Mike Waychison4fc756b2011-03-11 17:43:27 -08001252EXPORT_SYMBOL_GPL(unregister_efivars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Matt Fleming4025b052013-03-07 11:59:14 +00001254/*
1255 * Print a warning when duplicate EFI variables are encountered and
1256 * disable the sysfs workqueue since the firmware is buggy.
1257 */
1258static void dup_variable_bug(efi_char16_t *s16, efi_guid_t *vendor_guid,
1259 unsigned long len16)
1260{
1261 size_t i, len8 = len16 / sizeof(efi_char16_t);
1262 char *s8;
1263
1264 s8 = kzalloc(len8, GFP_KERNEL);
1265 if (!s8)
1266 return;
1267
1268 for (i = 0; i < len8; i++)
1269 s8[i] = s16[i];
1270
1271 printk(KERN_WARNING "efivars: duplicate variable: %s-%pUl\n",
1272 s8, vendor_guid);
1273 kfree(s8);
1274}
1275
Mike Waychison4fc756b2011-03-11 17:43:27 -08001276int register_efivars(struct efivars *efivars,
1277 const struct efivar_operations *ops,
1278 struct kobject *parent_kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 efi_status_t status = EFI_NOT_FOUND;
1281 efi_guid_t vendor_guid;
1282 efi_char16_t *variable_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 unsigned long variable_name_size = 1024;
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001284 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Deepak Saxena9c215382005-11-07 01:01:24 -08001286 variable_name = kzalloc(variable_name_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (!variable_name) {
1288 printk(KERN_ERR "efivars: Memory allocation failed.\n");
1289 return -ENOMEM;
1290 }
1291
Mike Waychison29422692011-03-11 17:43:00 -08001292 spin_lock_init(&efivars->lock);
1293 INIT_LIST_HEAD(&efivars->list);
Mike Waychison32958142011-03-11 17:43:21 -08001294 efivars->ops = ops;
Mike Waychison29422692011-03-11 17:43:00 -08001295
Mike Waychison76b53f72011-03-11 17:43:16 -08001296 efivars->kset = kset_create_and_add("vars", NULL, parent_kobj);
Mike Waychison29422692011-03-11 17:43:00 -08001297 if (!efivars->kset) {
Greg Kroah-Hartman66ac8312007-11-02 13:20:40 -07001298 printk(KERN_ERR "efivars: Subsystem registration failed.\n");
1299 error = -ENOMEM;
Mike Waychison76b53f72011-03-11 17:43:16 -08001300 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302
1303 /*
1304 * Per EFI spec, the maximum storage allocated for both
1305 * the variable name and variable data is 1024 bytes.
1306 */
1307
1308 do {
1309 variable_name_size = 1024;
1310
Mike Waychison32958142011-03-11 17:43:21 -08001311 status = ops->get_next_variable(&variable_name_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 variable_name,
1313 &vendor_guid);
1314 switch (status) {
1315 case EFI_SUCCESS:
Matt Fleming5c44ddd2013-03-01 14:49:12 +00001316 variable_name_size = var_name_strnsize(variable_name,
1317 variable_name_size);
Matt Fleming4025b052013-03-07 11:59:14 +00001318
1319 /*
1320 * Some firmware implementations return the
1321 * same variable name on multiple calls to
1322 * get_next_variable(). Terminate the loop
1323 * immediately as there is no guarantee that
1324 * we'll ever see a different variable name,
1325 * and may end up looping here forever.
1326 */
1327 if (variable_is_present(variable_name, &vendor_guid)) {
1328 dup_variable_bug(variable_name, &vendor_guid,
1329 variable_name_size);
1330 status = EFI_NOT_FOUND;
1331 break;
1332 }
1333
Mike Waychison4142ef12011-03-11 17:43:11 -08001334 efivar_create_sysfs_entry(efivars,
1335 variable_name_size,
1336 variable_name,
1337 &vendor_guid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 break;
1339 case EFI_NOT_FOUND:
1340 break;
1341 default:
1342 printk(KERN_WARNING "efivars: get_next_variable: status=%lx\n",
1343 status);
1344 status = EFI_NOT_FOUND;
1345 break;
1346 }
1347 } while (status != EFI_NOT_FOUND);
1348
Mike Waychisond502fbb2011-03-11 17:43:06 -08001349 error = create_efivars_bin_attributes(efivars);
Mike Waychison76b53f72011-03-11 17:43:16 -08001350 if (error)
1351 unregister_efivars(efivars);
1352
Seth Forsheef6a087a2013-03-07 11:40:17 -06001353 efivar_pstore_register(efivars);
Matthew Garrett5ee9c192011-07-21 16:57:56 -04001354
Mike Waychison76b53f72011-03-11 17:43:16 -08001355out:
1356 kfree(variable_name);
1357
1358 return error;
1359}
Mike Waychison4fc756b2011-03-11 17:43:27 -08001360EXPORT_SYMBOL_GPL(register_efivars);
Mike Waychison76b53f72011-03-11 17:43:16 -08001361
Mike Waychison76b53f72011-03-11 17:43:16 -08001362/*
1363 * For now we register the efi subsystem with the firmware subsystem
1364 * and the vars subsystem with the efi subsystem. In the future, it
1365 * might make sense to split off the efi subsystem into its own
1366 * driver, but for now only efivars will register with it, so just
1367 * include it here.
1368 */
1369
1370static int __init
1371efivars_init(void)
1372{
1373 int error = 0;
1374
1375 printk(KERN_INFO "EFI Variables Facility v%s %s\n", EFIVARS_VERSION,
1376 EFIVARS_DATE);
1377
Matt Fleming73923012012-11-14 09:42:35 +00001378 if (!efi_enabled(EFI_RUNTIME_SERVICES))
Mike Waychison4fc756b2011-03-11 17:43:27 -08001379 return 0;
Mike Waychison76b53f72011-03-11 17:43:16 -08001380
1381 /* For now we'll register the efi directory at /sys/firmware/efi */
1382 efi_kobj = kobject_create_and_add("efi", firmware_kobj);
1383 if (!efi_kobj) {
1384 printk(KERN_ERR "efivars: Firmware registration failed.\n");
1385 return -ENOMEM;
1386 }
1387
Mike Waychison32958142011-03-11 17:43:21 -08001388 ops.get_variable = efi.get_variable;
1389 ops.set_variable = efi.set_variable;
1390 ops.get_next_variable = efi.get_next_variable;
Seiji Aguchi8e74ecf2012-11-14 20:25:37 +00001391 ops.query_variable_info = efi.query_variable_info;
Mike Waychison32958142011-03-11 17:43:21 -08001392 error = register_efivars(&__efivars, &ops, efi_kobj);
Dan Carpenter3116aab2011-03-18 10:12:38 +03001393 if (error)
1394 goto err_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 /* Don't forget the systab entry */
Greg Kroah-Hartmanbc87d2f2007-11-07 13:56:19 -08001397 error = sysfs_create_group(efi_kobj, &efi_subsys_attr_group);
Mike Waychison76b53f72011-03-11 17:43:16 -08001398 if (error) {
1399 printk(KERN_ERR
1400 "efivars: Sysfs attribute export failed with error %d.\n",
1401 error);
Dan Carpenter3116aab2011-03-18 10:12:38 +03001402 goto err_unregister;
Mike Waychison76b53f72011-03-11 17:43:16 -08001403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Dan Carpenter3116aab2011-03-18 10:12:38 +03001405 return 0;
1406
1407err_unregister:
1408 unregister_efivars(&__efivars);
1409err_put:
1410 kobject_put(efi_kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return error;
1412}
1413
1414static void __exit
1415efivars_exit(void)
1416{
Matt Fleming73923012012-11-14 09:42:35 +00001417 if (efi_enabled(EFI_RUNTIME_SERVICES)) {
Randy Dunlapaabb6e12011-05-06 13:27:41 -07001418 unregister_efivars(&__efivars);
1419 kobject_put(efi_kobj);
1420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423module_init(efivars_init);
1424module_exit(efivars_exit);
1425