blob: 58bed0bb0b57419e56a8f7f1e39328fd558701d5 [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;
399
400 spin_lock(&efivars->lock);
401 status = get_var_data_locked(efivars, var);
Mike Waychison29422692011-03-11 17:43:00 -0800402 spin_unlock(&efivars->lock);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (status != EFI_SUCCESS) {
405 printk(KERN_WARNING "efivars: get_variable() failed 0x%lx!\n",
406 status);
407 }
408 return status;
409}
410
411static ssize_t
412efivar_guid_read(struct efivar_entry *entry, char *buf)
413{
414 struct efi_variable *var = &entry->var;
415 char *str = buf;
416
417 if (!entry || !buf)
418 return 0;
419
420 efi_guid_unparse(&var->VendorGuid, str);
421 str += strlen(str);
422 str += sprintf(str, "\n");
423
424 return str - buf;
425}
426
427static ssize_t
428efivar_attr_read(struct efivar_entry *entry, char *buf)
429{
430 struct efi_variable *var = &entry->var;
431 char *str = buf;
432 efi_status_t status;
433
434 if (!entry || !buf)
435 return -EINVAL;
436
Mike Waychison4142ef12011-03-11 17:43:11 -0800437 status = get_var_data(entry->efivars, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (status != EFI_SUCCESS)
439 return -EIO;
440
Khalid Azized020042012-09-10 12:52:42 -0600441 if (var->Attributes & EFI_VARIABLE_NON_VOLATILE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 str += sprintf(str, "EFI_VARIABLE_NON_VOLATILE\n");
Khalid Azized020042012-09-10 12:52:42 -0600443 if (var->Attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 str += sprintf(str, "EFI_VARIABLE_BOOTSERVICE_ACCESS\n");
Khalid Azized020042012-09-10 12:52:42 -0600445 if (var->Attributes & EFI_VARIABLE_RUNTIME_ACCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 str += sprintf(str, "EFI_VARIABLE_RUNTIME_ACCESS\n");
Khalid Azized020042012-09-10 12:52:42 -0600447 if (var->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD)
448 str += sprintf(str, "EFI_VARIABLE_HARDWARE_ERROR_RECORD\n");
449 if (var->Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS)
450 str += sprintf(str,
451 "EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS\n");
452 if (var->Attributes &
453 EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS)
454 str += sprintf(str,
455 "EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS\n");
456 if (var->Attributes & EFI_VARIABLE_APPEND_WRITE)
457 str += sprintf(str, "EFI_VARIABLE_APPEND_WRITE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return str - buf;
459}
460
461static ssize_t
462efivar_size_read(struct efivar_entry *entry, char *buf)
463{
464 struct efi_variable *var = &entry->var;
465 char *str = buf;
466 efi_status_t status;
467
468 if (!entry || !buf)
469 return -EINVAL;
470
Mike Waychison4142ef12011-03-11 17:43:11 -0800471 status = get_var_data(entry->efivars, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (status != EFI_SUCCESS)
473 return -EIO;
474
475 str += sprintf(str, "0x%lx\n", var->DataSize);
476 return str - buf;
477}
478
479static ssize_t
480efivar_data_read(struct efivar_entry *entry, char *buf)
481{
482 struct efi_variable *var = &entry->var;
483 efi_status_t status;
484
485 if (!entry || !buf)
486 return -EINVAL;
487
Mike Waychison4142ef12011-03-11 17:43:11 -0800488 status = get_var_data(entry->efivars, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (status != EFI_SUCCESS)
490 return -EIO;
491
492 memcpy(buf, var->Data, var->DataSize);
493 return var->DataSize;
494}
495/*
496 * We allow each variable to be edited via rewriting the
497 * entire efi variable structure.
498 */
499static ssize_t
500efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count)
501{
502 struct efi_variable *new_var, *var = &entry->var;
Mike Waychison4142ef12011-03-11 17:43:11 -0800503 struct efivars *efivars = entry->efivars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 efi_status_t status = EFI_NOT_FOUND;
505
506 if (count != sizeof(struct efi_variable))
507 return -EINVAL;
508
509 new_var = (struct efi_variable *)buf;
510 /*
511 * If only updating the variable data, then the name
512 * and guid should remain the same
513 */
514 if (memcmp(new_var->VariableName, var->VariableName, sizeof(var->VariableName)) ||
515 efi_guidcmp(new_var->VendorGuid, var->VendorGuid)) {
516 printk(KERN_ERR "efivars: Cannot edit the wrong variable!\n");
517 return -EINVAL;
518 }
519
520 if ((new_var->DataSize <= 0) || (new_var->Attributes == 0)){
521 printk(KERN_ERR "efivars: DataSize & Attributes must be valid!\n");
522 return -EINVAL;
523 }
524
Matthew Garrettfec6c202012-04-30 16:11:30 -0400525 if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 ||
526 validate_var(new_var, new_var->Data, new_var->DataSize) == false) {
527 printk(KERN_ERR "efivars: Malformed variable content\n");
528 return -EINVAL;
529 }
530
Mike Waychison29422692011-03-11 17:43:00 -0800531 spin_lock(&efivars->lock);
Mike Waychison32958142011-03-11 17:43:21 -0800532 status = efivars->ops->set_variable(new_var->VariableName,
533 &new_var->VendorGuid,
534 new_var->Attributes,
535 new_var->DataSize,
536 new_var->Data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Mike Waychison29422692011-03-11 17:43:00 -0800538 spin_unlock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (status != EFI_SUCCESS) {
541 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
542 status);
543 return -EIO;
544 }
545
546 memcpy(&entry->var, new_var, count);
547 return count;
548}
549
550static ssize_t
551efivar_show_raw(struct efivar_entry *entry, char *buf)
552{
553 struct efi_variable *var = &entry->var;
554 efi_status_t status;
555
556 if (!entry || !buf)
557 return 0;
558
Mike Waychison4142ef12011-03-11 17:43:11 -0800559 status = get_var_data(entry->efivars, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (status != EFI_SUCCESS)
561 return -EIO;
562
563 memcpy(buf, var, sizeof(*var));
564 return sizeof(*var);
565}
566
567/*
568 * Generic read/write functions that call the specific functions of
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200569 * the attributes...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 */
571static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr,
572 char *buf)
573{
574 struct efivar_entry *var = to_efivar_entry(kobj);
575 struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
Dmitry Torokhov70f28172005-04-29 01:27:34 -0500576 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (!capable(CAP_SYS_ADMIN))
579 return -EACCES;
580
581 if (efivar_attr->show) {
582 ret = efivar_attr->show(var, buf);
583 }
584 return ret;
585}
586
587static ssize_t efivar_attr_store(struct kobject *kobj, struct attribute *attr,
588 const char *buf, size_t count)
589{
590 struct efivar_entry *var = to_efivar_entry(kobj);
591 struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
Dmitry Torokhov70f28172005-04-29 01:27:34 -0500592 ssize_t ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (!capable(CAP_SYS_ADMIN))
595 return -EACCES;
596
597 if (efivar_attr->store)
598 ret = efivar_attr->store(var, buf, count);
599
600 return ret;
601}
602
Emese Revfy52cf25d2010-01-19 02:58:23 +0100603static const struct sysfs_ops efivar_attr_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 .show = efivar_attr_show,
605 .store = efivar_attr_store,
606};
607
608static void efivar_release(struct kobject *kobj)
609{
610 struct efivar_entry *var = container_of(kobj, struct efivar_entry, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 kfree(var);
612}
613
614static EFIVAR_ATTR(guid, 0400, efivar_guid_read, NULL);
615static EFIVAR_ATTR(attributes, 0400, efivar_attr_read, NULL);
616static EFIVAR_ATTR(size, 0400, efivar_size_read, NULL);
617static EFIVAR_ATTR(data, 0400, efivar_data_read, NULL);
618static EFIVAR_ATTR(raw_var, 0600, efivar_show_raw, efivar_store_raw);
619
620static struct attribute *def_attrs[] = {
621 &efivar_attr_guid.attr,
622 &efivar_attr_size.attr,
623 &efivar_attr_attributes.attr,
624 &efivar_attr_data.attr,
625 &efivar_attr_raw_var.attr,
626 NULL,
627};
628
Greg Kroah-Hartmane89a4112007-10-11 10:47:49 -0600629static struct kobj_type efivar_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 .release = efivar_release,
631 .sysfs_ops = &efivar_attr_ops,
632 .default_attrs = def_attrs,
633};
634
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400635static struct pstore_info efi_pstore_info;
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637static inline void
638efivar_unregister(struct efivar_entry *var)
639{
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -0800640 kobject_put(&var->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400643#ifdef CONFIG_PSTORE
644
645static int efi_pstore_open(struct pstore_info *psi)
646{
647 struct efivars *efivars = psi->data;
648
649 spin_lock(&efivars->lock);
650 efivars->walk_entry = list_first_entry(&efivars->list,
651 struct efivar_entry, list);
652 return 0;
653}
654
655static int efi_pstore_close(struct pstore_info *psi)
656{
657 struct efivars *efivars = psi->data;
658
659 spin_unlock(&efivars->lock);
660 return 0;
661}
662
663static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
Kees Cookf6f82852011-11-17 12:58:07 -0800664 struct timespec *timespec,
665 char **buf, struct pstore_info *psi)
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400666{
667 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
668 struct efivars *efivars = psi->data;
669 char name[DUMP_NAME_LEN];
670 int i;
671 unsigned int part, size;
672 unsigned long time;
673
674 while (&efivars->walk_entry->list != &efivars->list) {
675 if (!efi_guidcmp(efivars->walk_entry->var.VendorGuid,
676 vendor)) {
677 for (i = 0; i < DUMP_NAME_LEN; i++) {
678 name[i] = efivars->walk_entry->var.VariableName[i];
679 }
680 if (sscanf(name, "dump-type%u-%u-%lu", type, &part, &time) == 3) {
681 *id = part;
682 timespec->tv_sec = time;
683 timespec->tv_nsec = 0;
684 get_var_data_locked(efivars, &efivars->walk_entry->var);
685 size = efivars->walk_entry->var.DataSize;
Kees Cookf6f82852011-11-17 12:58:07 -0800686 *buf = kmalloc(size, GFP_KERNEL);
687 if (*buf == NULL)
688 return -ENOMEM;
689 memcpy(*buf, efivars->walk_entry->var.Data,
690 size);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400691 efivars->walk_entry = list_entry(efivars->walk_entry->list.next,
692 struct efivar_entry, list);
693 return size;
694 }
695 }
696 efivars->walk_entry = list_entry(efivars->walk_entry->list.next,
697 struct efivar_entry, list);
698 }
699 return 0;
700}
701
Kees Cook3d6d8d22011-11-17 13:13:29 -0800702static int efi_pstore_write(enum pstore_type_id type,
703 enum kmsg_dump_reason reason, u64 *id,
Chen Gongb238b8f2011-10-12 09:17:24 -0700704 unsigned int part, size_t size, struct pstore_info *psi)
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400705{
706 char name[DUMP_NAME_LEN];
707 char stub_name[DUMP_NAME_LEN];
708 efi_char16_t efi_name[DUMP_NAME_LEN];
709 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
710 struct efivars *efivars = psi->data;
711 struct efivar_entry *entry, *found = NULL;
Chen Gongb238b8f2011-10-12 09:17:24 -0700712 int i, ret = 0;
Seiji Aguchi8e74ecf2012-11-14 20:25:37 +0000713 u64 storage_space, remaining_space, max_variable_size;
714 efi_status_t status = EFI_NOT_FOUND;
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400715
716 sprintf(stub_name, "dump-type%u-%u-", type, part);
717 sprintf(name, "%s%lu", stub_name, get_seconds());
718
719 spin_lock(&efivars->lock);
720
Seiji Aguchi8e74ecf2012-11-14 20:25:37 +0000721 /*
722 * Check if there is a space enough to log.
723 * size: a size of logging data
724 * DUMP_NAME_LEN * 2: a maximum size of variable name
725 */
726 status = efivars->ops->query_variable_info(PSTORE_EFI_ATTRIBUTES,
727 &storage_space,
728 &remaining_space,
729 &max_variable_size);
730 if (status || remaining_space < size + DUMP_NAME_LEN * 2) {
731 spin_unlock(&efivars->lock);
732 *id = part;
733 return -ENOSPC;
734 }
735
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400736 for (i = 0; i < DUMP_NAME_LEN; i++)
737 efi_name[i] = stub_name[i];
738
739 /*
740 * Clean up any entries with the same name
741 */
742
743 list_for_each_entry(entry, &efivars->list, list) {
744 get_var_data_locked(efivars, &entry->var);
745
Mike Waychisonc4755942011-07-21 16:57:59 -0400746 if (efi_guidcmp(entry->var.VendorGuid, vendor))
747 continue;
748 if (utf16_strncmp(entry->var.VariableName, efi_name,
749 utf16_strlen(efi_name)))
750 continue;
751 /* Needs to be a prefix */
752 if (entry->var.VariableName[utf16_strlen(efi_name)] == 0)
753 continue;
754
755 /* found */
756 found = entry;
Mike Waychison7644c162011-07-21 16:58:00 -0400757 efivars->ops->set_variable(entry->var.VariableName,
758 &entry->var.VendorGuid,
759 PSTORE_EFI_ATTRIBUTES,
Mike Waychisonc4755942011-07-21 16:57:59 -0400760 0, NULL);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400761 }
762
763 if (found)
764 list_del(&found->list);
765
766 for (i = 0; i < DUMP_NAME_LEN; i++)
767 efi_name[i] = name[i];
768
Mike Waychison7644c162011-07-21 16:58:00 -0400769 efivars->ops->set_variable(efi_name, &vendor, PSTORE_EFI_ATTRIBUTES,
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400770 size, psi->buf);
771
772 spin_unlock(&efivars->lock);
773
774 if (found)
775 efivar_unregister(found);
776
777 if (size)
Chen Gongb238b8f2011-10-12 09:17:24 -0700778 ret = efivar_create_sysfs_entry(efivars,
Mike Waychisona2940902011-07-21 16:57:57 -0400779 utf16_strsize(efi_name,
780 DUMP_NAME_LEN * 2),
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400781 efi_name, &vendor);
782
Chen Gongb238b8f2011-10-12 09:17:24 -0700783 *id = part;
784 return ret;
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400785};
786
787static int efi_pstore_erase(enum pstore_type_id type, u64 id,
788 struct pstore_info *psi)
789{
Kees Cook3d6d8d22011-11-17 13:13:29 -0800790 efi_pstore_write(type, 0, &id, (unsigned int)id, 0, psi);
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400791
792 return 0;
793}
794#else
795static int efi_pstore_open(struct pstore_info *psi)
796{
797 return 0;
798}
799
800static int efi_pstore_close(struct pstore_info *psi)
801{
802 return 0;
803}
804
805static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
Christoph Fritzeee628d2011-11-28 23:49:33 +0100806 struct timespec *timespec,
807 char **buf, struct pstore_info *psi)
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400808{
809 return -1;
810}
811
Kees Cook3d6d8d22011-11-17 13:13:29 -0800812static int efi_pstore_write(enum pstore_type_id type,
813 enum kmsg_dump_reason reason, u64 *id,
Chen Gongb238b8f2011-10-12 09:17:24 -0700814 unsigned int part, size_t size, struct pstore_info *psi)
Matthew Garrett5ee9c192011-07-21 16:57:56 -0400815{
816 return 0;
817}
818
819static int efi_pstore_erase(enum pstore_type_id type, u64 id,
820 struct pstore_info *psi)
821{
822 return 0;
823}
824#endif
825
826static struct pstore_info efi_pstore_info = {
827 .owner = THIS_MODULE,
828 .name = "efi",
829 .open = efi_pstore_open,
830 .close = efi_pstore_close,
831 .read = efi_pstore_read,
832 .write = efi_pstore_write,
833 .erase = efi_pstore_erase,
834};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Chris Wright2c3c8be2010-05-12 18:28:57 -0700836static ssize_t efivar_create(struct file *filp, struct kobject *kobj,
Greg Kroah-Hartman97fa5bb2007-11-07 13:56:19 -0800837 struct bin_attribute *bin_attr,
838 char *buf, loff_t pos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 struct efi_variable *new_var = (struct efi_variable *)buf;
Mike Waychison4142ef12011-03-11 17:43:11 -0800841 struct efivars *efivars = bin_attr->private;
Matt Domsch496a0fc2007-01-26 00:57:18 -0800842 struct efivar_entry *search_efivar, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 unsigned long strsize1, strsize2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 efi_status_t status = EFI_NOT_FOUND;
845 int found = 0;
846
847 if (!capable(CAP_SYS_ADMIN))
848 return -EACCES;
849
Matthew Garrettfec6c202012-04-30 16:11:30 -0400850 if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 ||
851 validate_var(new_var, new_var->Data, new_var->DataSize) == false) {
852 printk(KERN_ERR "efivars: Malformed variable content\n");
853 return -EINVAL;
854 }
855
Mike Waychison29422692011-03-11 17:43:00 -0800856 spin_lock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /*
859 * Does this variable already exist?
860 */
Mike Waychison29422692011-03-11 17:43:00 -0800861 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
Mike Waychisona2940902011-07-21 16:57:57 -0400862 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
863 strsize2 = utf16_strsize(new_var->VariableName, 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (strsize1 == strsize2 &&
865 !memcmp(&(search_efivar->var.VariableName),
866 new_var->VariableName, strsize1) &&
867 !efi_guidcmp(search_efivar->var.VendorGuid,
868 new_var->VendorGuid)) {
869 found = 1;
870 break;
871 }
872 }
873 if (found) {
Mike Waychison29422692011-03-11 17:43:00 -0800874 spin_unlock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return -EINVAL;
876 }
877
878 /* now *really* create the variable via EFI */
Mike Waychison32958142011-03-11 17:43:21 -0800879 status = efivars->ops->set_variable(new_var->VariableName,
880 &new_var->VendorGuid,
881 new_var->Attributes,
882 new_var->DataSize,
883 new_var->Data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 if (status != EFI_SUCCESS) {
886 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
887 status);
Mike Waychison29422692011-03-11 17:43:00 -0800888 spin_unlock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -EIO;
890 }
Mike Waychison29422692011-03-11 17:43:00 -0800891 spin_unlock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 /* Create the entry in sysfs. Locking is not required here */
Mike Waychison4142ef12011-03-11 17:43:11 -0800894 status = efivar_create_sysfs_entry(efivars,
Mike Waychisona2940902011-07-21 16:57:57 -0400895 utf16_strsize(new_var->VariableName,
896 1024),
Mike Waychison4142ef12011-03-11 17:43:11 -0800897 new_var->VariableName,
898 &new_var->VendorGuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (status) {
900 printk(KERN_WARNING "efivars: variable created, but sysfs entry wasn't.\n");
901 }
902 return count;
903}
904
Chris Wright2c3c8be2010-05-12 18:28:57 -0700905static ssize_t efivar_delete(struct file *filp, struct kobject *kobj,
Greg Kroah-Hartman97fa5bb2007-11-07 13:56:19 -0800906 struct bin_attribute *bin_attr,
907 char *buf, loff_t pos, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 struct efi_variable *del_var = (struct efi_variable *)buf;
Mike Waychison4142ef12011-03-11 17:43:11 -0800910 struct efivars *efivars = bin_attr->private;
Matt Domsch496a0fc2007-01-26 00:57:18 -0800911 struct efivar_entry *search_efivar, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 unsigned long strsize1, strsize2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 efi_status_t status = EFI_NOT_FOUND;
914 int found = 0;
915
916 if (!capable(CAP_SYS_ADMIN))
917 return -EACCES;
918
Mike Waychison29422692011-03-11 17:43:00 -0800919 spin_lock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 /*
922 * Does this variable already exist?
923 */
Mike Waychison29422692011-03-11 17:43:00 -0800924 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
Mike Waychisona2940902011-07-21 16:57:57 -0400925 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
926 strsize2 = utf16_strsize(del_var->VariableName, 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (strsize1 == strsize2 &&
928 !memcmp(&(search_efivar->var.VariableName),
929 del_var->VariableName, strsize1) &&
930 !efi_guidcmp(search_efivar->var.VendorGuid,
931 del_var->VendorGuid)) {
932 found = 1;
933 break;
934 }
935 }
936 if (!found) {
Mike Waychison29422692011-03-11 17:43:00 -0800937 spin_unlock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return -EINVAL;
939 }
940 /* force the Attributes/DataSize to 0 to ensure deletion */
941 del_var->Attributes = 0;
942 del_var->DataSize = 0;
943
Mike Waychison32958142011-03-11 17:43:21 -0800944 status = efivars->ops->set_variable(del_var->VariableName,
945 &del_var->VendorGuid,
946 del_var->Attributes,
947 del_var->DataSize,
948 del_var->Data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 if (status != EFI_SUCCESS) {
951 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
952 status);
Mike Waychison29422692011-03-11 17:43:00 -0800953 spin_unlock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return -EIO;
955 }
Matt Domsch496a0fc2007-01-26 00:57:18 -0800956 list_del(&search_efivar->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 /* We need to release this lock before unregistering. */
Mike Waychison29422692011-03-11 17:43:00 -0800958 spin_unlock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 efivar_unregister(search_efivar);
960
961 /* It's dead Jim.... */
962 return count;
963}
964
Matt Fleming4025b052013-03-07 11:59:14 +0000965static bool variable_is_present(efi_char16_t *variable_name, efi_guid_t *vendor)
966{
967 struct efivar_entry *entry, *n;
968 struct efivars *efivars = &__efivars;
969 unsigned long strsize1, strsize2;
970 bool found = false;
971
972 strsize1 = utf16_strsize(variable_name, 1024);
973 list_for_each_entry_safe(entry, n, &efivars->list, list) {
974 strsize2 = utf16_strsize(entry->var.VariableName, 1024);
975 if (strsize1 == strsize2 &&
976 !memcmp(variable_name, &(entry->var.VariableName),
977 strsize2) &&
978 !efi_guidcmp(entry->var.VendorGuid,
979 *vendor)) {
980 found = true;
981 break;
982 }
983 }
984 return found;
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/*
Matt Fleming5c44ddd2013-03-01 14:49:12 +0000988 * Returns the size of variable_name, in bytes, including the
989 * terminating NULL character, or variable_name_size if no NULL
990 * character is found among the first variable_name_size bytes.
991 */
992static unsigned long var_name_strnsize(efi_char16_t *variable_name,
993 unsigned long variable_name_size)
994{
995 unsigned long len;
996 efi_char16_t c;
997
998 /*
999 * The variable name is, by definition, a NULL-terminated
1000 * string, so make absolutely sure that variable_name_size is
1001 * the value we expect it to be. If not, return the real size.
1002 */
1003 for (len = 2; len <= variable_name_size; len += sizeof(c)) {
1004 c = variable_name[(len / sizeof(c)) - 1];
1005 if (!c)
1006 break;
1007 }
1008
1009 return min(len, variable_name_size);
1010}
1011
1012/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 * Let's not leave out systab information that snuck into
1014 * the efivars driver
1015 */
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001016static ssize_t systab_show(struct kobject *kobj,
1017 struct kobj_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 char *str = buf;
1020
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001021 if (!kobj || !buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return -EINVAL;
1023
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -08001024 if (efi.mps != EFI_INVALID_TABLE_ADDR)
1025 str += sprintf(str, "MPS=0x%lx\n", efi.mps);
1026 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
1027 str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20);
1028 if (efi.acpi != EFI_INVALID_TABLE_ADDR)
1029 str += sprintf(str, "ACPI=0x%lx\n", efi.acpi);
1030 if (efi.smbios != EFI_INVALID_TABLE_ADDR)
1031 str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios);
1032 if (efi.hcdp != EFI_INVALID_TABLE_ADDR)
1033 str += sprintf(str, "HCDP=0x%lx\n", efi.hcdp);
1034 if (efi.boot_info != EFI_INVALID_TABLE_ADDR)
1035 str += sprintf(str, "BOOTINFO=0x%lx\n", efi.boot_info);
1036 if (efi.uga != EFI_INVALID_TABLE_ADDR)
1037 str += sprintf(str, "UGA=0x%lx\n", efi.uga);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 return str - buf;
1040}
1041
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001042static struct kobj_attribute efi_attr_systab =
1043 __ATTR(systab, 0400, systab_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001045static struct attribute *efi_subsys_attrs[] = {
1046 &efi_attr_systab.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 NULL, /* maybe more in the future? */
1048};
1049
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001050static struct attribute_group efi_subsys_attr_group = {
1051 .attrs = efi_subsys_attrs,
1052};
1053
Greg Kroah-Hartmanbc87d2f2007-11-07 13:56:19 -08001054static struct kobject *efi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056/*
1057 * efivar_create_sysfs_entry()
1058 * Requires:
1059 * variable_name_size = number of bytes required to hold
1060 * variable_name (not counting the NULL
1061 * character at the end.
Mike Waychison29422692011-03-11 17:43:00 -08001062 * efivars->lock is not held on entry or exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 * Returns 1 on failure, 0 on success
1064 */
1065static int
Mike Waychison4142ef12011-03-11 17:43:11 -08001066efivar_create_sysfs_entry(struct efivars *efivars,
1067 unsigned long variable_name_size,
1068 efi_char16_t *variable_name,
1069 efi_guid_t *vendor_guid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
1071 int i, short_name_size = variable_name_size / sizeof(efi_char16_t) + 38;
1072 char *short_name;
1073 struct efivar_entry *new_efivar;
1074
Deepak Saxena9c215382005-11-07 01:01:24 -08001075 short_name = kzalloc(short_name_size + 1, GFP_KERNEL);
1076 new_efivar = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 if (!short_name || !new_efivar) {
Jesper Juhl0933ad92005-06-25 14:59:15 -07001079 kfree(short_name);
1080 kfree(new_efivar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 1;
1082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Mike Waychison4142ef12011-03-11 17:43:11 -08001084 new_efivar->efivars = efivars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 memcpy(new_efivar->var.VariableName, variable_name,
1086 variable_name_size);
1087 memcpy(&(new_efivar->var.VendorGuid), vendor_guid, sizeof(efi_guid_t));
1088
1089 /* Convert Unicode to normal chars (assume top bits are 0),
1090 ala UTF-8 */
1091 for (i=0; i < (int)(variable_name_size / sizeof(efi_char16_t)); i++) {
1092 short_name[i] = variable_name[i] & 0xFF;
1093 }
1094 /* This is ugly, but necessary to separate one vendor's
1095 private variables from another's. */
1096
1097 *(short_name + strlen(short_name)) = '-';
1098 efi_guid_unparse(vendor_guid, short_name + strlen(short_name));
1099
Mike Waychison29422692011-03-11 17:43:00 -08001100 new_efivar->kobj.kset = efivars->kset;
Greg Kroah-Hartmand6d292c2007-12-17 15:54:39 -04001101 i = kobject_init_and_add(&new_efivar->kobj, &efivar_ktype, NULL,
1102 "%s", short_name);
Jeff Garzik69b21862006-10-11 01:22:23 -07001103 if (i) {
1104 kfree(short_name);
1105 kfree(new_efivar);
1106 return 1;
1107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Greg Kroah-Hartmand6d292c2007-12-17 15:54:39 -04001109 kobject_uevent(&new_efivar->kobj, KOBJ_ADD);
Jesper Juhl0933ad92005-06-25 14:59:15 -07001110 kfree(short_name);
1111 short_name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Mike Waychison29422692011-03-11 17:43:00 -08001113 spin_lock(&efivars->lock);
1114 list_add(&new_efivar->list, &efivars->list);
1115 spin_unlock(&efivars->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 return 0;
1118}
Mike Waychisond502fbb2011-03-11 17:43:06 -08001119
1120static int
1121create_efivars_bin_attributes(struct efivars *efivars)
1122{
1123 struct bin_attribute *attr;
1124 int error;
1125
1126 /* new_var */
1127 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1128 if (!attr)
1129 return -ENOMEM;
1130
1131 attr->attr.name = "new_var";
1132 attr->attr.mode = 0200;
1133 attr->write = efivar_create;
1134 attr->private = efivars;
1135 efivars->new_var = attr;
1136
1137 /* del_var */
1138 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1139 if (!attr) {
1140 error = -ENOMEM;
1141 goto out_free;
1142 }
1143 attr->attr.name = "del_var";
1144 attr->attr.mode = 0200;
1145 attr->write = efivar_delete;
1146 attr->private = efivars;
1147 efivars->del_var = attr;
1148
1149 sysfs_bin_attr_init(efivars->new_var);
1150 sysfs_bin_attr_init(efivars->del_var);
1151
1152 /* Register */
1153 error = sysfs_create_bin_file(&efivars->kset->kobj,
1154 efivars->new_var);
1155 if (error) {
1156 printk(KERN_ERR "efivars: unable to create new_var sysfs file"
1157 " due to error %d\n", error);
1158 goto out_free;
1159 }
1160 error = sysfs_create_bin_file(&efivars->kset->kobj,
1161 efivars->del_var);
1162 if (error) {
1163 printk(KERN_ERR "efivars: unable to create del_var sysfs file"
1164 " due to error %d\n", error);
1165 sysfs_remove_bin_file(&efivars->kset->kobj,
1166 efivars->new_var);
1167 goto out_free;
1168 }
1169
1170 return 0;
1171out_free:
Dan Carpenter051d51b2011-03-18 10:12:14 +03001172 kfree(efivars->del_var);
1173 efivars->del_var = NULL;
Mike Waychisond502fbb2011-03-11 17:43:06 -08001174 kfree(efivars->new_var);
1175 efivars->new_var = NULL;
1176 return error;
1177}
1178
Mike Waychison4fc756b2011-03-11 17:43:27 -08001179void unregister_efivars(struct efivars *efivars)
Mike Waychison76b53f72011-03-11 17:43:16 -08001180{
1181 struct efivar_entry *entry, *n;
Mike Waychison4142ef12011-03-11 17:43:11 -08001182
Mike Waychison76b53f72011-03-11 17:43:16 -08001183 list_for_each_entry_safe(entry, n, &efivars->list, list) {
1184 spin_lock(&efivars->lock);
1185 list_del(&entry->list);
1186 spin_unlock(&efivars->lock);
1187 efivar_unregister(entry);
1188 }
1189 if (efivars->new_var)
1190 sysfs_remove_bin_file(&efivars->kset->kobj, efivars->new_var);
1191 if (efivars->del_var)
1192 sysfs_remove_bin_file(&efivars->kset->kobj, efivars->del_var);
1193 kfree(efivars->new_var);
1194 kfree(efivars->del_var);
1195 kset_unregister(efivars->kset);
1196}
Mike Waychison4fc756b2011-03-11 17:43:27 -08001197EXPORT_SYMBOL_GPL(unregister_efivars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Matt Fleming4025b052013-03-07 11:59:14 +00001199/*
1200 * Print a warning when duplicate EFI variables are encountered and
1201 * disable the sysfs workqueue since the firmware is buggy.
1202 */
1203static void dup_variable_bug(efi_char16_t *s16, efi_guid_t *vendor_guid,
1204 unsigned long len16)
1205{
1206 size_t i, len8 = len16 / sizeof(efi_char16_t);
1207 char *s8;
1208
1209 s8 = kzalloc(len8, GFP_KERNEL);
1210 if (!s8)
1211 return;
1212
1213 for (i = 0; i < len8; i++)
1214 s8[i] = s16[i];
1215
1216 printk(KERN_WARNING "efivars: duplicate variable: %s-%pUl\n",
1217 s8, vendor_guid);
1218 kfree(s8);
1219}
1220
Mike Waychison4fc756b2011-03-11 17:43:27 -08001221int register_efivars(struct efivars *efivars,
1222 const struct efivar_operations *ops,
1223 struct kobject *parent_kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 efi_status_t status = EFI_NOT_FOUND;
1226 efi_guid_t vendor_guid;
1227 efi_char16_t *variable_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 unsigned long variable_name_size = 1024;
Greg Kroah-Hartman334c6302007-11-02 13:20:40 -07001229 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Deepak Saxena9c215382005-11-07 01:01:24 -08001231 variable_name = kzalloc(variable_name_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (!variable_name) {
1233 printk(KERN_ERR "efivars: Memory allocation failed.\n");
1234 return -ENOMEM;
1235 }
1236
Mike Waychison29422692011-03-11 17:43:00 -08001237 spin_lock_init(&efivars->lock);
1238 INIT_LIST_HEAD(&efivars->list);
Mike Waychison32958142011-03-11 17:43:21 -08001239 efivars->ops = ops;
Mike Waychison29422692011-03-11 17:43:00 -08001240
Mike Waychison76b53f72011-03-11 17:43:16 -08001241 efivars->kset = kset_create_and_add("vars", NULL, parent_kobj);
Mike Waychison29422692011-03-11 17:43:00 -08001242 if (!efivars->kset) {
Greg Kroah-Hartman66ac8312007-11-02 13:20:40 -07001243 printk(KERN_ERR "efivars: Subsystem registration failed.\n");
1244 error = -ENOMEM;
Mike Waychison76b53f72011-03-11 17:43:16 -08001245 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
1247
1248 /*
1249 * Per EFI spec, the maximum storage allocated for both
1250 * the variable name and variable data is 1024 bytes.
1251 */
1252
1253 do {
1254 variable_name_size = 1024;
1255
Mike Waychison32958142011-03-11 17:43:21 -08001256 status = ops->get_next_variable(&variable_name_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 variable_name,
1258 &vendor_guid);
1259 switch (status) {
1260 case EFI_SUCCESS:
Matt Fleming5c44ddd2013-03-01 14:49:12 +00001261 variable_name_size = var_name_strnsize(variable_name,
1262 variable_name_size);
Matt Fleming4025b052013-03-07 11:59:14 +00001263
1264 /*
1265 * Some firmware implementations return the
1266 * same variable name on multiple calls to
1267 * get_next_variable(). Terminate the loop
1268 * immediately as there is no guarantee that
1269 * we'll ever see a different variable name,
1270 * and may end up looping here forever.
1271 */
1272 if (variable_is_present(variable_name, &vendor_guid)) {
1273 dup_variable_bug(variable_name, &vendor_guid,
1274 variable_name_size);
1275 status = EFI_NOT_FOUND;
1276 break;
1277 }
1278
Mike Waychison4142ef12011-03-11 17:43:11 -08001279 efivar_create_sysfs_entry(efivars,
1280 variable_name_size,
1281 variable_name,
1282 &vendor_guid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 break;
1284 case EFI_NOT_FOUND:
1285 break;
1286 default:
1287 printk(KERN_WARNING "efivars: get_next_variable: status=%lx\n",
1288 status);
1289 status = EFI_NOT_FOUND;
1290 break;
1291 }
1292 } while (status != EFI_NOT_FOUND);
1293
Mike Waychisond502fbb2011-03-11 17:43:06 -08001294 error = create_efivars_bin_attributes(efivars);
Mike Waychison76b53f72011-03-11 17:43:16 -08001295 if (error)
1296 unregister_efivars(efivars);
1297
Matthew Garrett5ee9c192011-07-21 16:57:56 -04001298 efivars->efi_pstore_info = efi_pstore_info;
1299
1300 efivars->efi_pstore_info.buf = kmalloc(4096, GFP_KERNEL);
1301 if (efivars->efi_pstore_info.buf) {
1302 efivars->efi_pstore_info.bufsize = 1024;
1303 efivars->efi_pstore_info.data = efivars;
Don Zickusabd4d552011-08-12 10:54:51 -07001304 spin_lock_init(&efivars->efi_pstore_info.buf_lock);
Matthew Garrett5ee9c192011-07-21 16:57:56 -04001305 pstore_register(&efivars->efi_pstore_info);
1306 }
1307
Mike Waychison76b53f72011-03-11 17:43:16 -08001308out:
1309 kfree(variable_name);
1310
1311 return error;
1312}
Mike Waychison4fc756b2011-03-11 17:43:27 -08001313EXPORT_SYMBOL_GPL(register_efivars);
Mike Waychison76b53f72011-03-11 17:43:16 -08001314
Mike Waychison76b53f72011-03-11 17:43:16 -08001315/*
1316 * For now we register the efi subsystem with the firmware subsystem
1317 * and the vars subsystem with the efi subsystem. In the future, it
1318 * might make sense to split off the efi subsystem into its own
1319 * driver, but for now only efivars will register with it, so just
1320 * include it here.
1321 */
1322
1323static int __init
1324efivars_init(void)
1325{
1326 int error = 0;
1327
1328 printk(KERN_INFO "EFI Variables Facility v%s %s\n", EFIVARS_VERSION,
1329 EFIVARS_DATE);
1330
Matt Fleming73923012012-11-14 09:42:35 +00001331 if (!efi_enabled(EFI_RUNTIME_SERVICES))
Mike Waychison4fc756b2011-03-11 17:43:27 -08001332 return 0;
Mike Waychison76b53f72011-03-11 17:43:16 -08001333
1334 /* For now we'll register the efi directory at /sys/firmware/efi */
1335 efi_kobj = kobject_create_and_add("efi", firmware_kobj);
1336 if (!efi_kobj) {
1337 printk(KERN_ERR "efivars: Firmware registration failed.\n");
1338 return -ENOMEM;
1339 }
1340
Mike Waychison32958142011-03-11 17:43:21 -08001341 ops.get_variable = efi.get_variable;
1342 ops.set_variable = efi.set_variable;
1343 ops.get_next_variable = efi.get_next_variable;
Seiji Aguchi8e74ecf2012-11-14 20:25:37 +00001344 ops.query_variable_info = efi.query_variable_info;
Mike Waychison32958142011-03-11 17:43:21 -08001345 error = register_efivars(&__efivars, &ops, efi_kobj);
Dan Carpenter3116aab2011-03-18 10:12:38 +03001346 if (error)
1347 goto err_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 /* Don't forget the systab entry */
Greg Kroah-Hartmanbc87d2f2007-11-07 13:56:19 -08001350 error = sysfs_create_group(efi_kobj, &efi_subsys_attr_group);
Mike Waychison76b53f72011-03-11 17:43:16 -08001351 if (error) {
1352 printk(KERN_ERR
1353 "efivars: Sysfs attribute export failed with error %d.\n",
1354 error);
Dan Carpenter3116aab2011-03-18 10:12:38 +03001355 goto err_unregister;
Mike Waychison76b53f72011-03-11 17:43:16 -08001356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Dan Carpenter3116aab2011-03-18 10:12:38 +03001358 return 0;
1359
1360err_unregister:
1361 unregister_efivars(&__efivars);
1362err_put:
1363 kobject_put(efi_kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return error;
1365}
1366
1367static void __exit
1368efivars_exit(void)
1369{
Matt Fleming73923012012-11-14 09:42:35 +00001370 if (efi_enabled(EFI_RUNTIME_SERVICES)) {
Randy Dunlapaabb6e12011-05-06 13:27:41 -07001371 unregister_efivars(&__efivars);
1372 kobject_put(efi_kobj);
1373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
1376module_init(efivars_init);
1377module_exit(efivars_exit);
1378