Merge tag 'tag/upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarz...
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / drivers / firmware / efivars.c
CommitLineData
1da177e4
LT
1/*
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
c59ede7b 68#include <linux/capability.h>
1da177e4
LT
69#include <linux/types.h>
70#include <linux/errno.h>
71#include <linux/init.h>
1da177e4
LT
72#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>
5a0e3ad6 80#include <linux/slab.h>
5ee9c198 81#include <linux/pstore.h>
1da177e4
LT
82
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
5ee9c198
MG
93#define DUMP_NAME_LEN 52
94
1da177e4
LT
95/*
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 {
4142ef14 113 struct efivars *efivars;
1da177e4
LT
114 struct efi_variable var;
115 struct list_head list;
116 struct kobject kobj;
117};
118
1da177e4
LT
119struct 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
7644c16c
MW
125#define PSTORE_EFI_ATTRIBUTES \
126 (EFI_VARIABLE_NON_VOLATILE | \
127 EFI_VARIABLE_BOOTSERVICE_ACCESS | \
128 EFI_VARIABLE_RUNTIME_ACCESS)
1da177e4 129
1da177e4
LT
130#define EFIVAR_ATTR(_name, _mode, _show, _store) \
131struct efivar_attribute efivar_attr_##_name = { \
7b595756 132 .attr = {.name = __stringify(_name), .mode = _mode}, \
1da177e4
LT
133 .show = _show, \
134 .store = _store, \
135};
136
1da177e4
LT
137#define to_efivar_attr(_attr) container_of(_attr, struct efivar_attribute, attr)
138#define to_efivar_entry(obj) container_of(obj, struct efivar_entry, kobj)
139
140/*
141 * Prototype for sysfs creation function
142 */
143static int
4142ef14
MW
144efivar_create_sysfs_entry(struct efivars *efivars,
145 unsigned long variable_name_size,
146 efi_char16_t *variable_name,
147 efi_guid_t *vendor_guid);
1da177e4
LT
148
149/* Return the number of unicode characters in data */
150static unsigned long
a2940908 151utf16_strnlen(efi_char16_t *s, size_t maxlength)
1da177e4
LT
152{
153 unsigned long length = 0;
154
a2940908 155 while (*s++ != 0 && length < maxlength)
1da177e4
LT
156 length++;
157 return length;
158}
159
b728a5c8 160static inline unsigned long
a2940908
MW
161utf16_strlen(efi_char16_t *s)
162{
163 return utf16_strnlen(s, ~0UL);
164}
165
1da177e4
LT
166/*
167 * Return the number of bytes is the length of this string
168 * Note: this is NOT the same as the number of unicode characters
169 */
170static inline unsigned long
a2940908 171utf16_strsize(efi_char16_t *data, unsigned long maxlength)
1da177e4 172{
a2940908 173 return utf16_strnlen(data, maxlength/sizeof(efi_char16_t)) * sizeof(efi_char16_t);
1da177e4
LT
174}
175
828aa1f0
MW
176static inline int
177utf16_strncmp(const efi_char16_t *a, const efi_char16_t *b, size_t len)
178{
179 while (1) {
180 if (len == 0)
181 return 0;
182 if (*a < *b)
183 return -1;
184 if (*a > *b)
185 return 1;
186 if (*a == 0) /* implies *b == 0 */
187 return 0;
188 a++;
189 b++;
190 len--;
191 }
192}
193
fec6c20b
MG
194static bool
195validate_device_path(struct efi_variable *var, int match, u8 *buffer, int len)
196{
197 struct efi_generic_dev_path *node;
198 int offset = 0;
199
200 node = (struct efi_generic_dev_path *)buffer;
201
202 while (offset < len) {
203 offset += node->length;
204
205 if (offset > len)
206 return false;
207
208 if ((node->type == EFI_DEV_END_PATH ||
209 node->type == EFI_DEV_END_PATH2) &&
210 node->sub_type == EFI_DEV_END_ENTIRE)
211 return true;
212
213 node = (struct efi_generic_dev_path *)(buffer + offset);
214 }
215
216 /*
217 * If we're here then either node->length pointed past the end
218 * of the buffer or we reached the end of the buffer without
219 * finding a device path end node.
220 */
221 return false;
222}
223
224static bool
225validate_boot_order(struct efi_variable *var, int match, u8 *buffer, int len)
226{
227 /* An array of 16-bit integers */
228 if ((len % 2) != 0)
229 return false;
230
231 return true;
232}
233
234static bool
235validate_load_option(struct efi_variable *var, int match, u8 *buffer, int len)
236{
237 u16 filepathlength;
238 int i, desclength = 0;
239
240 /* Either "Boot" or "Driver" followed by four digits of hex */
241 for (i = match; i < match+4; i++) {
242 if (hex_to_bin(var->VariableName[i] & 0xff) < 0)
243 return true;
244 }
245
246 /* A valid entry must be at least 6 bytes */
247 if (len < 6)
248 return false;
249
250 filepathlength = buffer[4] | buffer[5] << 8;
251
252 /*
253 * There's no stored length for the description, so it has to be
254 * found by hand
255 */
256 desclength = utf16_strsize((efi_char16_t *)(buffer + 6), len) + 2;
257
258 /* Each boot entry must have a descriptor */
259 if (!desclength)
260 return false;
261
262 /*
263 * If the sum of the length of the description, the claimed filepath
264 * length and the original header are greater than the length of the
265 * variable, it's malformed
266 */
267 if ((desclength + filepathlength + 6) > len)
268 return false;
269
270 /*
271 * And, finally, check the filepath
272 */
273 return validate_device_path(var, match, buffer + desclength + 6,
274 filepathlength);
275}
276
277static bool
278validate_uint16(struct efi_variable *var, int match, u8 *buffer, int len)
279{
280 /* A single 16-bit integer */
281 if (len != 2)
282 return false;
283
284 return true;
285}
286
287static bool
288validate_ascii_string(struct efi_variable *var, int match, u8 *buffer, int len)
289{
290 int i;
291
292 for (i = 0; i < len; i++) {
293 if (buffer[i] > 127)
294 return false;
295
296 if (buffer[i] == 0)
297 return true;
298 }
299
300 return false;
301}
302
303struct variable_validate {
304 char *name;
305 bool (*validate)(struct efi_variable *var, int match, u8 *data,
306 int len);
307};
308
309static const struct variable_validate variable_validate[] = {
310 { "BootNext", validate_uint16 },
311 { "BootOrder", validate_boot_order },
312 { "DriverOrder", validate_boot_order },
313 { "Boot*", validate_load_option },
314 { "Driver*", validate_load_option },
315 { "ConIn", validate_device_path },
316 { "ConInDev", validate_device_path },
317 { "ConOut", validate_device_path },
318 { "ConOutDev", validate_device_path },
319 { "ErrOut", validate_device_path },
320 { "ErrOutDev", validate_device_path },
321 { "Timeout", validate_uint16 },
322 { "Lang", validate_ascii_string },
323 { "PlatformLang", validate_ascii_string },
324 { "", NULL },
325};
326
327static bool
328validate_var(struct efi_variable *var, u8 *data, int len)
329{
330 int i;
331 u16 *unicode_name = var->VariableName;
332
333 for (i = 0; variable_validate[i].validate != NULL; i++) {
334 const char *name = variable_validate[i].name;
335 int match;
336
337 for (match = 0; ; match++) {
338 char c = name[match];
339 u16 u = unicode_name[match];
340
341 /* All special variables are plain ascii */
342 if (u > 127)
343 return true;
344
345 /* Wildcard in the matching name means we've matched */
346 if (c == '*')
347 return variable_validate[i].validate(var,
348 match, data, len);
349
350 /* Case sensitive match */
351 if (c != u)
352 break;
353
354 /* Reached the end of the string while matching */
355 if (!c)
356 return variable_validate[i].validate(var,
357 match, data, len);
358 }
359 }
360
361 return true;
362}
363
1da177e4 364static efi_status_t
5ee9c198 365get_var_data_locked(struct efivars *efivars, struct efi_variable *var)
1da177e4
LT
366{
367 efi_status_t status;
368
1da177e4 369 var->DataSize = 1024;
3295814d
MW
370 status = efivars->ops->get_variable(var->VariableName,
371 &var->VendorGuid,
372 &var->Attributes,
373 &var->DataSize,
374 var->Data);
5ee9c198
MG
375 return status;
376}
377
378static efi_status_t
379get_var_data(struct efivars *efivars, struct efi_variable *var)
380{
381 efi_status_t status;
382
383 spin_lock(&efivars->lock);
384 status = get_var_data_locked(efivars, var);
29422693 385 spin_unlock(&efivars->lock);
5ee9c198 386
1da177e4
LT
387 if (status != EFI_SUCCESS) {
388 printk(KERN_WARNING "efivars: get_variable() failed 0x%lx!\n",
389 status);
390 }
391 return status;
392}
393
394static ssize_t
395efivar_guid_read(struct efivar_entry *entry, char *buf)
396{
397 struct efi_variable *var = &entry->var;
398 char *str = buf;
399
400 if (!entry || !buf)
401 return 0;
402
403 efi_guid_unparse(&var->VendorGuid, str);
404 str += strlen(str);
405 str += sprintf(str, "\n");
406
407 return str - buf;
408}
409
410static ssize_t
411efivar_attr_read(struct efivar_entry *entry, char *buf)
412{
413 struct efi_variable *var = &entry->var;
414 char *str = buf;
415 efi_status_t status;
416
417 if (!entry || !buf)
418 return -EINVAL;
419
4142ef14 420 status = get_var_data(entry->efivars, var);
1da177e4
LT
421 if (status != EFI_SUCCESS)
422 return -EIO;
423
424 if (var->Attributes & 0x1)
425 str += sprintf(str, "EFI_VARIABLE_NON_VOLATILE\n");
426 if (var->Attributes & 0x2)
427 str += sprintf(str, "EFI_VARIABLE_BOOTSERVICE_ACCESS\n");
428 if (var->Attributes & 0x4)
429 str += sprintf(str, "EFI_VARIABLE_RUNTIME_ACCESS\n");
430 return str - buf;
431}
432
433static ssize_t
434efivar_size_read(struct efivar_entry *entry, char *buf)
435{
436 struct efi_variable *var = &entry->var;
437 char *str = buf;
438 efi_status_t status;
439
440 if (!entry || !buf)
441 return -EINVAL;
442
4142ef14 443 status = get_var_data(entry->efivars, var);
1da177e4
LT
444 if (status != EFI_SUCCESS)
445 return -EIO;
446
447 str += sprintf(str, "0x%lx\n", var->DataSize);
448 return str - buf;
449}
450
451static ssize_t
452efivar_data_read(struct efivar_entry *entry, char *buf)
453{
454 struct efi_variable *var = &entry->var;
455 efi_status_t status;
456
457 if (!entry || !buf)
458 return -EINVAL;
459
4142ef14 460 status = get_var_data(entry->efivars, var);
1da177e4
LT
461 if (status != EFI_SUCCESS)
462 return -EIO;
463
464 memcpy(buf, var->Data, var->DataSize);
465 return var->DataSize;
466}
467/*
468 * We allow each variable to be edited via rewriting the
469 * entire efi variable structure.
470 */
471static ssize_t
472efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count)
473{
474 struct efi_variable *new_var, *var = &entry->var;
4142ef14 475 struct efivars *efivars = entry->efivars;
1da177e4
LT
476 efi_status_t status = EFI_NOT_FOUND;
477
478 if (count != sizeof(struct efi_variable))
479 return -EINVAL;
480
481 new_var = (struct efi_variable *)buf;
482 /*
483 * If only updating the variable data, then the name
484 * and guid should remain the same
485 */
486 if (memcmp(new_var->VariableName, var->VariableName, sizeof(var->VariableName)) ||
487 efi_guidcmp(new_var->VendorGuid, var->VendorGuid)) {
488 printk(KERN_ERR "efivars: Cannot edit the wrong variable!\n");
489 return -EINVAL;
490 }
491
492 if ((new_var->DataSize <= 0) || (new_var->Attributes == 0)){
493 printk(KERN_ERR "efivars: DataSize & Attributes must be valid!\n");
494 return -EINVAL;
495 }
496
fec6c20b
MG
497 if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 ||
498 validate_var(new_var, new_var->Data, new_var->DataSize) == false) {
499 printk(KERN_ERR "efivars: Malformed variable content\n");
500 return -EINVAL;
501 }
502
29422693 503 spin_lock(&efivars->lock);
3295814d
MW
504 status = efivars->ops->set_variable(new_var->VariableName,
505 &new_var->VendorGuid,
506 new_var->Attributes,
507 new_var->DataSize,
508 new_var->Data);
1da177e4 509
29422693 510 spin_unlock(&efivars->lock);
1da177e4
LT
511
512 if (status != EFI_SUCCESS) {
513 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
514 status);
515 return -EIO;
516 }
517
518 memcpy(&entry->var, new_var, count);
519 return count;
520}
521
522static ssize_t
523efivar_show_raw(struct efivar_entry *entry, char *buf)
524{
525 struct efi_variable *var = &entry->var;
526 efi_status_t status;
527
528 if (!entry || !buf)
529 return 0;
530
4142ef14 531 status = get_var_data(entry->efivars, var);
1da177e4
LT
532 if (status != EFI_SUCCESS)
533 return -EIO;
534
535 memcpy(buf, var, sizeof(*var));
536 return sizeof(*var);
537}
538
539/*
540 * Generic read/write functions that call the specific functions of
70f23fd6 541 * the attributes...
1da177e4
LT
542 */
543static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr,
544 char *buf)
545{
546 struct efivar_entry *var = to_efivar_entry(kobj);
547 struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
70f2817a 548 ssize_t ret = -EIO;
1da177e4
LT
549
550 if (!capable(CAP_SYS_ADMIN))
551 return -EACCES;
552
553 if (efivar_attr->show) {
554 ret = efivar_attr->show(var, buf);
555 }
556 return ret;
557}
558
559static ssize_t efivar_attr_store(struct kobject *kobj, struct attribute *attr,
560 const char *buf, size_t count)
561{
562 struct efivar_entry *var = to_efivar_entry(kobj);
563 struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
70f2817a 564 ssize_t ret = -EIO;
1da177e4
LT
565
566 if (!capable(CAP_SYS_ADMIN))
567 return -EACCES;
568
569 if (efivar_attr->store)
570 ret = efivar_attr->store(var, buf, count);
571
572 return ret;
573}
574
52cf25d0 575static const struct sysfs_ops efivar_attr_ops = {
1da177e4
LT
576 .show = efivar_attr_show,
577 .store = efivar_attr_store,
578};
579
580static void efivar_release(struct kobject *kobj)
581{
582 struct efivar_entry *var = container_of(kobj, struct efivar_entry, kobj);
1da177e4
LT
583 kfree(var);
584}
585
586static EFIVAR_ATTR(guid, 0400, efivar_guid_read, NULL);
587static EFIVAR_ATTR(attributes, 0400, efivar_attr_read, NULL);
588static EFIVAR_ATTR(size, 0400, efivar_size_read, NULL);
589static EFIVAR_ATTR(data, 0400, efivar_data_read, NULL);
590static EFIVAR_ATTR(raw_var, 0600, efivar_show_raw, efivar_store_raw);
591
592static struct attribute *def_attrs[] = {
593 &efivar_attr_guid.attr,
594 &efivar_attr_size.attr,
595 &efivar_attr_attributes.attr,
596 &efivar_attr_data.attr,
597 &efivar_attr_raw_var.attr,
598 NULL,
599};
600
e89a4116 601static struct kobj_type efivar_ktype = {
1da177e4
LT
602 .release = efivar_release,
603 .sysfs_ops = &efivar_attr_ops,
604 .default_attrs = def_attrs,
605};
606
5ee9c198
MG
607static struct pstore_info efi_pstore_info;
608
1da177e4
LT
609static inline void
610efivar_unregister(struct efivar_entry *var)
611{
c10997f6 612 kobject_put(&var->kobj);
1da177e4
LT
613}
614
5ee9c198
MG
615#ifdef CONFIG_PSTORE
616
617static int efi_pstore_open(struct pstore_info *psi)
618{
619 struct efivars *efivars = psi->data;
620
621 spin_lock(&efivars->lock);
622 efivars->walk_entry = list_first_entry(&efivars->list,
623 struct efivar_entry, list);
624 return 0;
625}
626
627static int efi_pstore_close(struct pstore_info *psi)
628{
629 struct efivars *efivars = psi->data;
630
631 spin_unlock(&efivars->lock);
632 return 0;
633}
634
635static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
f6f82851
KC
636 struct timespec *timespec,
637 char **buf, struct pstore_info *psi)
5ee9c198
MG
638{
639 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
640 struct efivars *efivars = psi->data;
641 char name[DUMP_NAME_LEN];
642 int i;
643 unsigned int part, size;
644 unsigned long time;
645
646 while (&efivars->walk_entry->list != &efivars->list) {
647 if (!efi_guidcmp(efivars->walk_entry->var.VendorGuid,
648 vendor)) {
649 for (i = 0; i < DUMP_NAME_LEN; i++) {
650 name[i] = efivars->walk_entry->var.VariableName[i];
651 }
652 if (sscanf(name, "dump-type%u-%u-%lu", type, &part, &time) == 3) {
653 *id = part;
654 timespec->tv_sec = time;
655 timespec->tv_nsec = 0;
656 get_var_data_locked(efivars, &efivars->walk_entry->var);
657 size = efivars->walk_entry->var.DataSize;
f6f82851
KC
658 *buf = kmalloc(size, GFP_KERNEL);
659 if (*buf == NULL)
660 return -ENOMEM;
661 memcpy(*buf, efivars->walk_entry->var.Data,
662 size);
5ee9c198
MG
663 efivars->walk_entry = list_entry(efivars->walk_entry->list.next,
664 struct efivar_entry, list);
665 return size;
666 }
667 }
668 efivars->walk_entry = list_entry(efivars->walk_entry->list.next,
669 struct efivar_entry, list);
670 }
671 return 0;
672}
673
3d6d8d20
KC
674static int efi_pstore_write(enum pstore_type_id type,
675 enum kmsg_dump_reason reason, u64 *id,
b238b8fa 676 unsigned int part, size_t size, struct pstore_info *psi)
5ee9c198
MG
677{
678 char name[DUMP_NAME_LEN];
679 char stub_name[DUMP_NAME_LEN];
680 efi_char16_t efi_name[DUMP_NAME_LEN];
681 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
682 struct efivars *efivars = psi->data;
683 struct efivar_entry *entry, *found = NULL;
b238b8fa 684 int i, ret = 0;
5ee9c198
MG
685
686 sprintf(stub_name, "dump-type%u-%u-", type, part);
687 sprintf(name, "%s%lu", stub_name, get_seconds());
688
689 spin_lock(&efivars->lock);
690
691 for (i = 0; i < DUMP_NAME_LEN; i++)
692 efi_name[i] = stub_name[i];
693
694 /*
695 * Clean up any entries with the same name
696 */
697
698 list_for_each_entry(entry, &efivars->list, list) {
699 get_var_data_locked(efivars, &entry->var);
700
c475594d
MW
701 if (efi_guidcmp(entry->var.VendorGuid, vendor))
702 continue;
703 if (utf16_strncmp(entry->var.VariableName, efi_name,
704 utf16_strlen(efi_name)))
705 continue;
706 /* Needs to be a prefix */
707 if (entry->var.VariableName[utf16_strlen(efi_name)] == 0)
708 continue;
709
710 /* found */
711 found = entry;
7644c16c
MW
712 efivars->ops->set_variable(entry->var.VariableName,
713 &entry->var.VendorGuid,
714 PSTORE_EFI_ATTRIBUTES,
c475594d 715 0, NULL);
5ee9c198
MG
716 }
717
718 if (found)
719 list_del(&found->list);
720
721 for (i = 0; i < DUMP_NAME_LEN; i++)
722 efi_name[i] = name[i];
723
7644c16c 724 efivars->ops->set_variable(efi_name, &vendor, PSTORE_EFI_ATTRIBUTES,
5ee9c198
MG
725 size, psi->buf);
726
727 spin_unlock(&efivars->lock);
728
729 if (found)
730 efivar_unregister(found);
731
732 if (size)
b238b8fa 733 ret = efivar_create_sysfs_entry(efivars,
a2940908
MW
734 utf16_strsize(efi_name,
735 DUMP_NAME_LEN * 2),
5ee9c198
MG
736 efi_name, &vendor);
737
b238b8fa
CG
738 *id = part;
739 return ret;
5ee9c198
MG
740};
741
742static int efi_pstore_erase(enum pstore_type_id type, u64 id,
743 struct pstore_info *psi)
744{
3d6d8d20 745 efi_pstore_write(type, 0, &id, (unsigned int)id, 0, psi);
5ee9c198
MG
746
747 return 0;
748}
749#else
750static int efi_pstore_open(struct pstore_info *psi)
751{
752 return 0;
753}
754
755static int efi_pstore_close(struct pstore_info *psi)
756{
757 return 0;
758}
759
760static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
eee628da
CF
761 struct timespec *timespec,
762 char **buf, struct pstore_info *psi)
5ee9c198
MG
763{
764 return -1;
765}
766
3d6d8d20
KC
767static int efi_pstore_write(enum pstore_type_id type,
768 enum kmsg_dump_reason reason, u64 *id,
b238b8fa 769 unsigned int part, size_t size, struct pstore_info *psi)
5ee9c198
MG
770{
771 return 0;
772}
773
774static int efi_pstore_erase(enum pstore_type_id type, u64 id,
775 struct pstore_info *psi)
776{
777 return 0;
778}
779#endif
780
781static struct pstore_info efi_pstore_info = {
782 .owner = THIS_MODULE,
783 .name = "efi",
784 .open = efi_pstore_open,
785 .close = efi_pstore_close,
786 .read = efi_pstore_read,
787 .write = efi_pstore_write,
788 .erase = efi_pstore_erase,
789};
1da177e4 790
2c3c8bea 791static ssize_t efivar_create(struct file *filp, struct kobject *kobj,
97fa5bb7
GKH
792 struct bin_attribute *bin_attr,
793 char *buf, loff_t pos, size_t count)
1da177e4
LT
794{
795 struct efi_variable *new_var = (struct efi_variable *)buf;
4142ef14 796 struct efivars *efivars = bin_attr->private;
496a0fc8 797 struct efivar_entry *search_efivar, *n;
1da177e4 798 unsigned long strsize1, strsize2;
1da177e4
LT
799 efi_status_t status = EFI_NOT_FOUND;
800 int found = 0;
801
802 if (!capable(CAP_SYS_ADMIN))
803 return -EACCES;
804
fec6c20b
MG
805 if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 ||
806 validate_var(new_var, new_var->Data, new_var->DataSize) == false) {
807 printk(KERN_ERR "efivars: Malformed variable content\n");
808 return -EINVAL;
809 }
810
29422693 811 spin_lock(&efivars->lock);
1da177e4
LT
812
813 /*
814 * Does this variable already exist?
815 */
29422693 816 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
a2940908
MW
817 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
818 strsize2 = utf16_strsize(new_var->VariableName, 1024);
1da177e4
LT
819 if (strsize1 == strsize2 &&
820 !memcmp(&(search_efivar->var.VariableName),
821 new_var->VariableName, strsize1) &&
822 !efi_guidcmp(search_efivar->var.VendorGuid,
823 new_var->VendorGuid)) {
824 found = 1;
825 break;
826 }
827 }
828 if (found) {
29422693 829 spin_unlock(&efivars->lock);
1da177e4
LT
830 return -EINVAL;
831 }
832
833 /* now *really* create the variable via EFI */
3295814d
MW
834 status = efivars->ops->set_variable(new_var->VariableName,
835 &new_var->VendorGuid,
836 new_var->Attributes,
837 new_var->DataSize,
838 new_var->Data);
1da177e4
LT
839
840 if (status != EFI_SUCCESS) {
841 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
842 status);
29422693 843 spin_unlock(&efivars->lock);
1da177e4
LT
844 return -EIO;
845 }
29422693 846 spin_unlock(&efivars->lock);
1da177e4
LT
847
848 /* Create the entry in sysfs. Locking is not required here */
4142ef14 849 status = efivar_create_sysfs_entry(efivars,
a2940908
MW
850 utf16_strsize(new_var->VariableName,
851 1024),
4142ef14
MW
852 new_var->VariableName,
853 &new_var->VendorGuid);
1da177e4
LT
854 if (status) {
855 printk(KERN_WARNING "efivars: variable created, but sysfs entry wasn't.\n");
856 }
857 return count;
858}
859
2c3c8bea 860static ssize_t efivar_delete(struct file *filp, struct kobject *kobj,
97fa5bb7
GKH
861 struct bin_attribute *bin_attr,
862 char *buf, loff_t pos, size_t count)
1da177e4
LT
863{
864 struct efi_variable *del_var = (struct efi_variable *)buf;
4142ef14 865 struct efivars *efivars = bin_attr->private;
496a0fc8 866 struct efivar_entry *search_efivar, *n;
1da177e4 867 unsigned long strsize1, strsize2;
1da177e4
LT
868 efi_status_t status = EFI_NOT_FOUND;
869 int found = 0;
870
871 if (!capable(CAP_SYS_ADMIN))
872 return -EACCES;
873
29422693 874 spin_lock(&efivars->lock);
1da177e4
LT
875
876 /*
877 * Does this variable already exist?
878 */
29422693 879 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
a2940908
MW
880 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
881 strsize2 = utf16_strsize(del_var->VariableName, 1024);
1da177e4
LT
882 if (strsize1 == strsize2 &&
883 !memcmp(&(search_efivar->var.VariableName),
884 del_var->VariableName, strsize1) &&
885 !efi_guidcmp(search_efivar->var.VendorGuid,
886 del_var->VendorGuid)) {
887 found = 1;
888 break;
889 }
890 }
891 if (!found) {
29422693 892 spin_unlock(&efivars->lock);
1da177e4
LT
893 return -EINVAL;
894 }
895 /* force the Attributes/DataSize to 0 to ensure deletion */
896 del_var->Attributes = 0;
897 del_var->DataSize = 0;
898
3295814d
MW
899 status = efivars->ops->set_variable(del_var->VariableName,
900 &del_var->VendorGuid,
901 del_var->Attributes,
902 del_var->DataSize,
903 del_var->Data);
1da177e4
LT
904
905 if (status != EFI_SUCCESS) {
906 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
907 status);
29422693 908 spin_unlock(&efivars->lock);
1da177e4
LT
909 return -EIO;
910 }
496a0fc8 911 list_del(&search_efivar->list);
1da177e4 912 /* We need to release this lock before unregistering. */
29422693 913 spin_unlock(&efivars->lock);
1da177e4
LT
914 efivar_unregister(search_efivar);
915
916 /* It's dead Jim.... */
917 return count;
918}
919
1da177e4
LT
920/*
921 * Let's not leave out systab information that snuck into
922 * the efivars driver
923 */
334c6307
GKH
924static ssize_t systab_show(struct kobject *kobj,
925 struct kobj_attribute *attr, char *buf)
1da177e4
LT
926{
927 char *str = buf;
928
334c6307 929 if (!kobj || !buf)
1da177e4
LT
930 return -EINVAL;
931
b2c99e3c
BH
932 if (efi.mps != EFI_INVALID_TABLE_ADDR)
933 str += sprintf(str, "MPS=0x%lx\n", efi.mps);
934 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
935 str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20);
936 if (efi.acpi != EFI_INVALID_TABLE_ADDR)
937 str += sprintf(str, "ACPI=0x%lx\n", efi.acpi);
938 if (efi.smbios != EFI_INVALID_TABLE_ADDR)
939 str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios);
940 if (efi.hcdp != EFI_INVALID_TABLE_ADDR)
941 str += sprintf(str, "HCDP=0x%lx\n", efi.hcdp);
942 if (efi.boot_info != EFI_INVALID_TABLE_ADDR)
943 str += sprintf(str, "BOOTINFO=0x%lx\n", efi.boot_info);
944 if (efi.uga != EFI_INVALID_TABLE_ADDR)
945 str += sprintf(str, "UGA=0x%lx\n", efi.uga);
1da177e4
LT
946
947 return str - buf;
948}
949
334c6307
GKH
950static struct kobj_attribute efi_attr_systab =
951 __ATTR(systab, 0400, systab_show, NULL);
1da177e4 952
334c6307
GKH
953static struct attribute *efi_subsys_attrs[] = {
954 &efi_attr_systab.attr,
1da177e4
LT
955 NULL, /* maybe more in the future? */
956};
957
334c6307
GKH
958static struct attribute_group efi_subsys_attr_group = {
959 .attrs = efi_subsys_attrs,
960};
961
bc87d2fe 962static struct kobject *efi_kobj;
1da177e4
LT
963
964/*
965 * efivar_create_sysfs_entry()
966 * Requires:
967 * variable_name_size = number of bytes required to hold
968 * variable_name (not counting the NULL
969 * character at the end.
29422693 970 * efivars->lock is not held on entry or exit.
1da177e4
LT
971 * Returns 1 on failure, 0 on success
972 */
973static int
4142ef14
MW
974efivar_create_sysfs_entry(struct efivars *efivars,
975 unsigned long variable_name_size,
976 efi_char16_t *variable_name,
977 efi_guid_t *vendor_guid)
1da177e4
LT
978{
979 int i, short_name_size = variable_name_size / sizeof(efi_char16_t) + 38;
980 char *short_name;
981 struct efivar_entry *new_efivar;
982
9c215384
DS
983 short_name = kzalloc(short_name_size + 1, GFP_KERNEL);
984 new_efivar = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL);
1da177e4
LT
985
986 if (!short_name || !new_efivar) {
0933ad9c
JJ
987 kfree(short_name);
988 kfree(new_efivar);
1da177e4
LT
989 return 1;
990 }
1da177e4 991
4142ef14 992 new_efivar->efivars = efivars;
1da177e4
LT
993 memcpy(new_efivar->var.VariableName, variable_name,
994 variable_name_size);
995 memcpy(&(new_efivar->var.VendorGuid), vendor_guid, sizeof(efi_guid_t));
996
997 /* Convert Unicode to normal chars (assume top bits are 0),
998 ala UTF-8 */
999 for (i=0; i < (int)(variable_name_size / sizeof(efi_char16_t)); i++) {
1000 short_name[i] = variable_name[i] & 0xFF;
1001 }
1002 /* This is ugly, but necessary to separate one vendor's
1003 private variables from another's. */
1004
1005 *(short_name + strlen(short_name)) = '-';
1006 efi_guid_unparse(vendor_guid, short_name + strlen(short_name));
1007
29422693 1008 new_efivar->kobj.kset = efivars->kset;
d6d292c4
GKH
1009 i = kobject_init_and_add(&new_efivar->kobj, &efivar_ktype, NULL,
1010 "%s", short_name);
69b2186c
JG
1011 if (i) {
1012 kfree(short_name);
1013 kfree(new_efivar);
1014 return 1;
1015 }
1da177e4 1016
d6d292c4 1017 kobject_uevent(&new_efivar->kobj, KOBJ_ADD);
0933ad9c
JJ
1018 kfree(short_name);
1019 short_name = NULL;
1da177e4 1020
29422693
MW
1021 spin_lock(&efivars->lock);
1022 list_add(&new_efivar->list, &efivars->list);
1023 spin_unlock(&efivars->lock);
1da177e4
LT
1024
1025 return 0;
1026}
d502fbb0
MW
1027
1028static int
1029create_efivars_bin_attributes(struct efivars *efivars)
1030{
1031 struct bin_attribute *attr;
1032 int error;
1033
1034 /* new_var */
1035 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1036 if (!attr)
1037 return -ENOMEM;
1038
1039 attr->attr.name = "new_var";
1040 attr->attr.mode = 0200;
1041 attr->write = efivar_create;
1042 attr->private = efivars;
1043 efivars->new_var = attr;
1044
1045 /* del_var */
1046 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1047 if (!attr) {
1048 error = -ENOMEM;
1049 goto out_free;
1050 }
1051 attr->attr.name = "del_var";
1052 attr->attr.mode = 0200;
1053 attr->write = efivar_delete;
1054 attr->private = efivars;
1055 efivars->del_var = attr;
1056
1057 sysfs_bin_attr_init(efivars->new_var);
1058 sysfs_bin_attr_init(efivars->del_var);
1059
1060 /* Register */
1061 error = sysfs_create_bin_file(&efivars->kset->kobj,
1062 efivars->new_var);
1063 if (error) {
1064 printk(KERN_ERR "efivars: unable to create new_var sysfs file"
1065 " due to error %d\n", error);
1066 goto out_free;
1067 }
1068 error = sysfs_create_bin_file(&efivars->kset->kobj,
1069 efivars->del_var);
1070 if (error) {
1071 printk(KERN_ERR "efivars: unable to create del_var sysfs file"
1072 " due to error %d\n", error);
1073 sysfs_remove_bin_file(&efivars->kset->kobj,
1074 efivars->new_var);
1075 goto out_free;
1076 }
1077
1078 return 0;
1079out_free:
051d51bc
DC
1080 kfree(efivars->del_var);
1081 efivars->del_var = NULL;
d502fbb0
MW
1082 kfree(efivars->new_var);
1083 efivars->new_var = NULL;
1084 return error;
1085}
1086
4fc756bd 1087void unregister_efivars(struct efivars *efivars)
76b53f7c
MW
1088{
1089 struct efivar_entry *entry, *n;
4142ef14 1090
76b53f7c
MW
1091 list_for_each_entry_safe(entry, n, &efivars->list, list) {
1092 spin_lock(&efivars->lock);
1093 list_del(&entry->list);
1094 spin_unlock(&efivars->lock);
1095 efivar_unregister(entry);
1096 }
1097 if (efivars->new_var)
1098 sysfs_remove_bin_file(&efivars->kset->kobj, efivars->new_var);
1099 if (efivars->del_var)
1100 sysfs_remove_bin_file(&efivars->kset->kobj, efivars->del_var);
1101 kfree(efivars->new_var);
1102 kfree(efivars->del_var);
1103 kset_unregister(efivars->kset);
1104}
4fc756bd 1105EXPORT_SYMBOL_GPL(unregister_efivars);
1da177e4 1106
4fc756bd
MW
1107int register_efivars(struct efivars *efivars,
1108 const struct efivar_operations *ops,
1109 struct kobject *parent_kobj)
1da177e4
LT
1110{
1111 efi_status_t status = EFI_NOT_FOUND;
1112 efi_guid_t vendor_guid;
1113 efi_char16_t *variable_name;
1da177e4 1114 unsigned long variable_name_size = 1024;
334c6307 1115 int error = 0;
1da177e4 1116
9c215384 1117 variable_name = kzalloc(variable_name_size, GFP_KERNEL);
1da177e4
LT
1118 if (!variable_name) {
1119 printk(KERN_ERR "efivars: Memory allocation failed.\n");
1120 return -ENOMEM;
1121 }
1122
29422693
MW
1123 spin_lock_init(&efivars->lock);
1124 INIT_LIST_HEAD(&efivars->list);
3295814d 1125 efivars->ops = ops;
29422693 1126
76b53f7c 1127 efivars->kset = kset_create_and_add("vars", NULL, parent_kobj);
29422693 1128 if (!efivars->kset) {
66ac831e
GKH
1129 printk(KERN_ERR "efivars: Subsystem registration failed.\n");
1130 error = -ENOMEM;
76b53f7c 1131 goto out;
1da177e4
LT
1132 }
1133
1134 /*
1135 * Per EFI spec, the maximum storage allocated for both
1136 * the variable name and variable data is 1024 bytes.
1137 */
1138
1139 do {
1140 variable_name_size = 1024;
1141
3295814d 1142 status = ops->get_next_variable(&variable_name_size,
1da177e4
LT
1143 variable_name,
1144 &vendor_guid);
1145 switch (status) {
1146 case EFI_SUCCESS:
4142ef14
MW
1147 efivar_create_sysfs_entry(efivars,
1148 variable_name_size,
1149 variable_name,
1150 &vendor_guid);
1da177e4
LT
1151 break;
1152 case EFI_NOT_FOUND:
1153 break;
1154 default:
1155 printk(KERN_WARNING "efivars: get_next_variable: status=%lx\n",
1156 status);
1157 status = EFI_NOT_FOUND;
1158 break;
1159 }
1160 } while (status != EFI_NOT_FOUND);
1161
d502fbb0 1162 error = create_efivars_bin_attributes(efivars);
1da177e4 1163 if (error)
76b53f7c 1164 unregister_efivars(efivars);
1da177e4 1165
5ee9c198
MG
1166 efivars->efi_pstore_info = efi_pstore_info;
1167
1168 efivars->efi_pstore_info.buf = kmalloc(4096, GFP_KERNEL);
1169 if (efivars->efi_pstore_info.buf) {
1170 efivars->efi_pstore_info.bufsize = 1024;
1171 efivars->efi_pstore_info.data = efivars;
abd4d558 1172 spin_lock_init(&efivars->efi_pstore_info.buf_lock);
5ee9c198
MG
1173 pstore_register(&efivars->efi_pstore_info);
1174 }
1175
76b53f7c
MW
1176out:
1177 kfree(variable_name);
1da177e4 1178
76b53f7c
MW
1179 return error;
1180}
4fc756bd 1181EXPORT_SYMBOL_GPL(register_efivars);
1da177e4 1182
76b53f7c 1183static struct efivars __efivars;
3295814d 1184static struct efivar_operations ops;
76b53f7c
MW
1185
1186/*
1187 * For now we register the efi subsystem with the firmware subsystem
1188 * and the vars subsystem with the efi subsystem. In the future, it
1189 * might make sense to split off the efi subsystem into its own
1190 * driver, but for now only efivars will register with it, so just
1191 * include it here.
1192 */
1193
1194static int __init
1195efivars_init(void)
1196{
1197 int error = 0;
1198
1199 printk(KERN_INFO "EFI Variables Facility v%s %s\n", EFIVARS_VERSION,
1200 EFIVARS_DATE);
1201
1202 if (!efi_enabled)
4fc756bd 1203 return 0;
76b53f7c
MW
1204
1205 /* For now we'll register the efi directory at /sys/firmware/efi */
1206 efi_kobj = kobject_create_and_add("efi", firmware_kobj);
1207 if (!efi_kobj) {
1208 printk(KERN_ERR "efivars: Firmware registration failed.\n");
1209 return -ENOMEM;
1210 }
1211
3295814d
MW
1212 ops.get_variable = efi.get_variable;
1213 ops.set_variable = efi.set_variable;
1214 ops.get_next_variable = efi.get_next_variable;
1215 error = register_efivars(&__efivars, &ops, efi_kobj);
3116aabc
DC
1216 if (error)
1217 goto err_put;
76b53f7c
MW
1218
1219 /* Don't forget the systab entry */
1220 error = sysfs_create_group(efi_kobj, &efi_subsys_attr_group);
1221 if (error) {
1222 printk(KERN_ERR
1223 "efivars: Sysfs attribute export failed with error %d.\n",
1224 error);
3116aabc 1225 goto err_unregister;
76b53f7c 1226 }
1da177e4 1227
3116aabc
DC
1228 return 0;
1229
1230err_unregister:
1231 unregister_efivars(&__efivars);
1232err_put:
1233 kobject_put(efi_kobj);
1da177e4
LT
1234 return error;
1235}
1236
1237static void __exit
1238efivars_exit(void)
1239{
aabb6e15
RD
1240 if (efi_enabled) {
1241 unregister_efivars(&__efivars);
1242 kobject_put(efi_kobj);
1243 }
1da177e4
LT
1244}
1245
1246module_init(efivars_init);
1247module_exit(efivars_exit);
1248