891e4674d29b7542b0fb6c8c18774bcd00b92855
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / firmware / efivars.c
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
68 #include <linux/capability.h>
69 #include <linux/types.h>
70 #include <linux/errno.h>
71 #include <linux/init.h>
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>
80 #include <linux/slab.h>
81 #include <linux/pstore.h>
82
83 #include <asm/uaccess.h>
84
85 #define EFIVARS_VERSION "0.08"
86 #define EFIVARS_DATE "2004-May-17"
87
88 MODULE_AUTHOR("Matt Domsch <Matt_Domsch@Dell.com>");
89 MODULE_DESCRIPTION("sysfs interface to EFI Variables");
90 MODULE_LICENSE("GPL");
91 MODULE_VERSION(EFIVARS_VERSION);
92
93 #define DUMP_NAME_LEN 52
94
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
102 struct 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
112 struct efivar_entry {
113 struct efivars *efivars;
114 struct efi_variable var;
115 struct list_head list;
116 struct kobject kobj;
117 };
118
119 struct 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
125 #define PSTORE_EFI_ATTRIBUTES \
126 (EFI_VARIABLE_NON_VOLATILE | \
127 EFI_VARIABLE_BOOTSERVICE_ACCESS | \
128 EFI_VARIABLE_RUNTIME_ACCESS)
129
130 #define EFIVAR_ATTR(_name, _mode, _show, _store) \
131 struct efivar_attribute efivar_attr_##_name = { \
132 .attr = {.name = __stringify(_name), .mode = _mode}, \
133 .show = _show, \
134 .store = _store, \
135 };
136
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 */
143 static int
144 efivar_create_sysfs_entry(struct efivars *efivars,
145 unsigned long variable_name_size,
146 efi_char16_t *variable_name,
147 efi_guid_t *vendor_guid);
148
149 /* Return the number of unicode characters in data */
150 static unsigned long
151 utf16_strnlen(efi_char16_t *s, size_t maxlength)
152 {
153 unsigned long length = 0;
154
155 while (*s++ != 0 && length < maxlength)
156 length++;
157 return length;
158 }
159
160 static inline unsigned long
161 utf16_strlen(efi_char16_t *s)
162 {
163 return utf16_strnlen(s, ~0UL);
164 }
165
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 */
170 static inline unsigned long
171 utf16_strsize(efi_char16_t *data, unsigned long maxlength)
172 {
173 return utf16_strnlen(data, maxlength/sizeof(efi_char16_t)) * sizeof(efi_char16_t);
174 }
175
176 static inline int
177 utf16_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
194 static bool
195 validate_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
224 static bool
225 validate_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
234 static bool
235 validate_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
277 static bool
278 validate_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
287 static bool
288 validate_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
303 struct variable_validate {
304 char *name;
305 bool (*validate)(struct efi_variable *var, int match, u8 *data,
306 int len);
307 };
308
309 static 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
327 static bool
328 validate_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
364 static efi_status_t
365 get_var_data_locked(struct efivars *efivars, struct efi_variable *var)
366 {
367 efi_status_t status;
368
369 var->DataSize = 1024;
370 status = efivars->ops->get_variable(var->VariableName,
371 &var->VendorGuid,
372 &var->Attributes,
373 &var->DataSize,
374 var->Data);
375 return status;
376 }
377
378 static efi_status_t
379 get_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);
385 spin_unlock(&efivars->lock);
386
387 if (status != EFI_SUCCESS) {
388 printk(KERN_WARNING "efivars: get_variable() failed 0x%lx!\n",
389 status);
390 }
391 return status;
392 }
393
394 static ssize_t
395 efivar_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
410 static ssize_t
411 efivar_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
420 status = get_var_data(entry->efivars, var);
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
433 static ssize_t
434 efivar_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
443 status = get_var_data(entry->efivars, var);
444 if (status != EFI_SUCCESS)
445 return -EIO;
446
447 str += sprintf(str, "0x%lx\n", var->DataSize);
448 return str - buf;
449 }
450
451 static ssize_t
452 efivar_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
460 status = get_var_data(entry->efivars, var);
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 */
471 static ssize_t
472 efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count)
473 {
474 struct efi_variable *new_var, *var = &entry->var;
475 struct efivars *efivars = entry->efivars;
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
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
503 spin_lock(&efivars->lock);
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);
509
510 spin_unlock(&efivars->lock);
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
522 static ssize_t
523 efivar_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
531 status = get_var_data(entry->efivars, var);
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
541 * the attributes...
542 */
543 static 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);
548 ssize_t ret = -EIO;
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
559 static 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);
564 ssize_t ret = -EIO;
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
575 static const struct sysfs_ops efivar_attr_ops = {
576 .show = efivar_attr_show,
577 .store = efivar_attr_store,
578 };
579
580 static void efivar_release(struct kobject *kobj)
581 {
582 struct efivar_entry *var = container_of(kobj, struct efivar_entry, kobj);
583 kfree(var);
584 }
585
586 static EFIVAR_ATTR(guid, 0400, efivar_guid_read, NULL);
587 static EFIVAR_ATTR(attributes, 0400, efivar_attr_read, NULL);
588 static EFIVAR_ATTR(size, 0400, efivar_size_read, NULL);
589 static EFIVAR_ATTR(data, 0400, efivar_data_read, NULL);
590 static EFIVAR_ATTR(raw_var, 0600, efivar_show_raw, efivar_store_raw);
591
592 static 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
601 static struct kobj_type efivar_ktype = {
602 .release = efivar_release,
603 .sysfs_ops = &efivar_attr_ops,
604 .default_attrs = def_attrs,
605 };
606
607 static struct pstore_info efi_pstore_info;
608
609 static inline void
610 efivar_unregister(struct efivar_entry *var)
611 {
612 kobject_put(&var->kobj);
613 }
614
615 #ifdef CONFIG_PSTORE
616
617 static 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
627 static 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
635 static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
636 struct timespec *timespec,
637 char **buf, struct pstore_info *psi)
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;
658 *buf = kmalloc(size, GFP_KERNEL);
659 if (*buf == NULL)
660 return -ENOMEM;
661 memcpy(*buf, efivars->walk_entry->var.Data,
662 size);
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
674 static int efi_pstore_write(enum pstore_type_id type,
675 enum kmsg_dump_reason reason, u64 *id,
676 unsigned int part, size_t size, struct pstore_info *psi)
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;
684 int i, ret = 0;
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
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;
712 efivars->ops->set_variable(entry->var.VariableName,
713 &entry->var.VendorGuid,
714 PSTORE_EFI_ATTRIBUTES,
715 0, NULL);
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
724 efivars->ops->set_variable(efi_name, &vendor, PSTORE_EFI_ATTRIBUTES,
725 size, psi->buf);
726
727 spin_unlock(&efivars->lock);
728
729 if (found)
730 efivar_unregister(found);
731
732 if (size)
733 ret = efivar_create_sysfs_entry(efivars,
734 utf16_strsize(efi_name,
735 DUMP_NAME_LEN * 2),
736 efi_name, &vendor);
737
738 *id = part;
739 return ret;
740 };
741
742 static int efi_pstore_erase(enum pstore_type_id type, u64 id,
743 struct pstore_info *psi)
744 {
745 efi_pstore_write(type, 0, &id, (unsigned int)id, 0, psi);
746
747 return 0;
748 }
749 #else
750 static int efi_pstore_open(struct pstore_info *psi)
751 {
752 return 0;
753 }
754
755 static int efi_pstore_close(struct pstore_info *psi)
756 {
757 return 0;
758 }
759
760 static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
761 struct timespec *timespec,
762 char **buf, struct pstore_info *psi)
763 {
764 return -1;
765 }
766
767 static int efi_pstore_write(enum pstore_type_id type,
768 enum kmsg_dump_reason reason, u64 *id,
769 unsigned int part, size_t size, struct pstore_info *psi)
770 {
771 return 0;
772 }
773
774 static int efi_pstore_erase(enum pstore_type_id type, u64 id,
775 struct pstore_info *psi)
776 {
777 return 0;
778 }
779 #endif
780
781 static 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 };
790
791 static ssize_t efivar_create(struct file *filp, struct kobject *kobj,
792 struct bin_attribute *bin_attr,
793 char *buf, loff_t pos, size_t count)
794 {
795 struct efi_variable *new_var = (struct efi_variable *)buf;
796 struct efivars *efivars = bin_attr->private;
797 struct efivar_entry *search_efivar, *n;
798 unsigned long strsize1, strsize2;
799 efi_status_t status = EFI_NOT_FOUND;
800 int found = 0;
801
802 if (!capable(CAP_SYS_ADMIN))
803 return -EACCES;
804
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
811 spin_lock(&efivars->lock);
812
813 /*
814 * Does this variable already exist?
815 */
816 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
817 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
818 strsize2 = utf16_strsize(new_var->VariableName, 1024);
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) {
829 spin_unlock(&efivars->lock);
830 return -EINVAL;
831 }
832
833 /* now *really* create the variable via EFI */
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);
839
840 if (status != EFI_SUCCESS) {
841 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
842 status);
843 spin_unlock(&efivars->lock);
844 return -EIO;
845 }
846 spin_unlock(&efivars->lock);
847
848 /* Create the entry in sysfs. Locking is not required here */
849 status = efivar_create_sysfs_entry(efivars,
850 utf16_strsize(new_var->VariableName,
851 1024),
852 new_var->VariableName,
853 &new_var->VendorGuid);
854 if (status) {
855 printk(KERN_WARNING "efivars: variable created, but sysfs entry wasn't.\n");
856 }
857 return count;
858 }
859
860 static ssize_t efivar_delete(struct file *filp, struct kobject *kobj,
861 struct bin_attribute *bin_attr,
862 char *buf, loff_t pos, size_t count)
863 {
864 struct efi_variable *del_var = (struct efi_variable *)buf;
865 struct efivars *efivars = bin_attr->private;
866 struct efivar_entry *search_efivar, *n;
867 unsigned long strsize1, strsize2;
868 efi_status_t status = EFI_NOT_FOUND;
869 int found = 0;
870
871 if (!capable(CAP_SYS_ADMIN))
872 return -EACCES;
873
874 spin_lock(&efivars->lock);
875
876 /*
877 * Does this variable already exist?
878 */
879 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
880 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
881 strsize2 = utf16_strsize(del_var->VariableName, 1024);
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) {
892 spin_unlock(&efivars->lock);
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
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);
904
905 if (status != EFI_SUCCESS) {
906 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
907 status);
908 spin_unlock(&efivars->lock);
909 return -EIO;
910 }
911 list_del(&search_efivar->list);
912 /* We need to release this lock before unregistering. */
913 spin_unlock(&efivars->lock);
914 efivar_unregister(search_efivar);
915
916 /* It's dead Jim.... */
917 return count;
918 }
919
920 /*
921 * Let's not leave out systab information that snuck into
922 * the efivars driver
923 */
924 static ssize_t systab_show(struct kobject *kobj,
925 struct kobj_attribute *attr, char *buf)
926 {
927 char *str = buf;
928
929 if (!kobj || !buf)
930 return -EINVAL;
931
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);
946
947 return str - buf;
948 }
949
950 static struct kobj_attribute efi_attr_systab =
951 __ATTR(systab, 0400, systab_show, NULL);
952
953 static struct attribute *efi_subsys_attrs[] = {
954 &efi_attr_systab.attr,
955 NULL, /* maybe more in the future? */
956 };
957
958 static struct attribute_group efi_subsys_attr_group = {
959 .attrs = efi_subsys_attrs,
960 };
961
962 static struct kobject *efi_kobj;
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.
970 * efivars->lock is not held on entry or exit.
971 * Returns 1 on failure, 0 on success
972 */
973 static int
974 efivar_create_sysfs_entry(struct efivars *efivars,
975 unsigned long variable_name_size,
976 efi_char16_t *variable_name,
977 efi_guid_t *vendor_guid)
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
983 short_name = kzalloc(short_name_size + 1, GFP_KERNEL);
984 new_efivar = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL);
985
986 if (!short_name || !new_efivar) {
987 kfree(short_name);
988 kfree(new_efivar);
989 return 1;
990 }
991
992 new_efivar->efivars = efivars;
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
1008 new_efivar->kobj.kset = efivars->kset;
1009 i = kobject_init_and_add(&new_efivar->kobj, &efivar_ktype, NULL,
1010 "%s", short_name);
1011 if (i) {
1012 kfree(short_name);
1013 kfree(new_efivar);
1014 return 1;
1015 }
1016
1017 kobject_uevent(&new_efivar->kobj, KOBJ_ADD);
1018 kfree(short_name);
1019 short_name = NULL;
1020
1021 spin_lock(&efivars->lock);
1022 list_add(&new_efivar->list, &efivars->list);
1023 spin_unlock(&efivars->lock);
1024
1025 return 0;
1026 }
1027
1028 static int
1029 create_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;
1079 out_free:
1080 kfree(efivars->del_var);
1081 efivars->del_var = NULL;
1082 kfree(efivars->new_var);
1083 efivars->new_var = NULL;
1084 return error;
1085 }
1086
1087 void unregister_efivars(struct efivars *efivars)
1088 {
1089 struct efivar_entry *entry, *n;
1090
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 }
1105 EXPORT_SYMBOL_GPL(unregister_efivars);
1106
1107 int register_efivars(struct efivars *efivars,
1108 const struct efivar_operations *ops,
1109 struct kobject *parent_kobj)
1110 {
1111 efi_status_t status = EFI_NOT_FOUND;
1112 efi_guid_t vendor_guid;
1113 efi_char16_t *variable_name;
1114 unsigned long variable_name_size = 1024;
1115 int error = 0;
1116
1117 variable_name = kzalloc(variable_name_size, GFP_KERNEL);
1118 if (!variable_name) {
1119 printk(KERN_ERR "efivars: Memory allocation failed.\n");
1120 return -ENOMEM;
1121 }
1122
1123 spin_lock_init(&efivars->lock);
1124 INIT_LIST_HEAD(&efivars->list);
1125 efivars->ops = ops;
1126
1127 efivars->kset = kset_create_and_add("vars", NULL, parent_kobj);
1128 if (!efivars->kset) {
1129 printk(KERN_ERR "efivars: Subsystem registration failed.\n");
1130 error = -ENOMEM;
1131 goto out;
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
1142 status = ops->get_next_variable(&variable_name_size,
1143 variable_name,
1144 &vendor_guid);
1145 switch (status) {
1146 case EFI_SUCCESS:
1147 efivar_create_sysfs_entry(efivars,
1148 variable_name_size,
1149 variable_name,
1150 &vendor_guid);
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
1162 error = create_efivars_bin_attributes(efivars);
1163 if (error)
1164 unregister_efivars(efivars);
1165
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;
1172 spin_lock_init(&efivars->efi_pstore_info.buf_lock);
1173 pstore_register(&efivars->efi_pstore_info);
1174 }
1175
1176 out:
1177 kfree(variable_name);
1178
1179 return error;
1180 }
1181 EXPORT_SYMBOL_GPL(register_efivars);
1182
1183 static struct efivars __efivars;
1184 static struct efivar_operations ops;
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
1194 static int __init
1195 efivars_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)
1203 return 0;
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
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);
1216 if (error)
1217 goto err_put;
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);
1225 goto err_unregister;
1226 }
1227
1228 return 0;
1229
1230 err_unregister:
1231 unregister_efivars(&__efivars);
1232 err_put:
1233 kobject_put(efi_kobj);
1234 return error;
1235 }
1236
1237 static void __exit
1238 efivars_exit(void)
1239 {
1240 if (efi_enabled) {
1241 unregister_efivars(&__efivars);
1242 kobject_put(efi_kobj);
1243 }
1244 }
1245
1246 module_init(efivars_init);
1247 module_exit(efivars_exit);
1248