efivarfs: Implement exclusive access for {get,set}_variable
[GitHub/mt8127/android_kernel_alcatel_ttab.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 82
5d9db883
MG
83#include <linux/fs.h>
84#include <linux/ramfs.h>
85#include <linux/pagemap.h>
86
1da177e4
LT
87#include <asm/uaccess.h>
88
89#define EFIVARS_VERSION "0.08"
90#define EFIVARS_DATE "2004-May-17"
91
92MODULE_AUTHOR("Matt Domsch <Matt_Domsch@Dell.com>");
93MODULE_DESCRIPTION("sysfs interface to EFI Variables");
94MODULE_LICENSE("GPL");
95MODULE_VERSION(EFIVARS_VERSION);
96
5ee9c198 97#define DUMP_NAME_LEN 52
5d9db883 98#define GUID_LEN 37
5ee9c198 99
1da177e4
LT
100/*
101 * The maximum size of VariableName + Data = 1024
102 * Therefore, it's reasonable to save that much
103 * space in each part of the structure,
104 * and we use a page for reading/writing.
105 */
106
107struct efi_variable {
108 efi_char16_t VariableName[1024/sizeof(efi_char16_t)];
109 efi_guid_t VendorGuid;
110 unsigned long DataSize;
111 __u8 Data[1024];
112 efi_status_t Status;
113 __u32 Attributes;
114} __attribute__((packed));
115
1da177e4 116struct efivar_entry {
4142ef14 117 struct efivars *efivars;
1da177e4
LT
118 struct efi_variable var;
119 struct list_head list;
120 struct kobject kobj;
121};
122
1da177e4
LT
123struct efivar_attribute {
124 struct attribute attr;
125 ssize_t (*show) (struct efivar_entry *entry, char *buf);
126 ssize_t (*store)(struct efivar_entry *entry, const char *buf, size_t count);
127};
128
5d9db883
MG
129static struct efivars __efivars;
130static struct efivar_operations ops;
131
7644c16c
MW
132#define PSTORE_EFI_ATTRIBUTES \
133 (EFI_VARIABLE_NON_VOLATILE | \
134 EFI_VARIABLE_BOOTSERVICE_ACCESS | \
135 EFI_VARIABLE_RUNTIME_ACCESS)
1da177e4 136
1da177e4
LT
137#define EFIVAR_ATTR(_name, _mode, _show, _store) \
138struct efivar_attribute efivar_attr_##_name = { \
7b595756 139 .attr = {.name = __stringify(_name), .mode = _mode}, \
1da177e4
LT
140 .show = _show, \
141 .store = _store, \
142};
143
1da177e4
LT
144#define to_efivar_attr(_attr) container_of(_attr, struct efivar_attribute, attr)
145#define to_efivar_entry(obj) container_of(obj, struct efivar_entry, kobj)
146
147/*
148 * Prototype for sysfs creation function
149 */
150static int
4142ef14
MW
151efivar_create_sysfs_entry(struct efivars *efivars,
152 unsigned long variable_name_size,
153 efi_char16_t *variable_name,
154 efi_guid_t *vendor_guid);
1da177e4
LT
155
156/* Return the number of unicode characters in data */
157static unsigned long
a2940908 158utf16_strnlen(efi_char16_t *s, size_t maxlength)
1da177e4
LT
159{
160 unsigned long length = 0;
161
a2940908 162 while (*s++ != 0 && length < maxlength)
1da177e4
LT
163 length++;
164 return length;
165}
166
b728a5c8 167static inline unsigned long
a2940908
MW
168utf16_strlen(efi_char16_t *s)
169{
170 return utf16_strnlen(s, ~0UL);
171}
172
1da177e4
LT
173/*
174 * Return the number of bytes is the length of this string
175 * Note: this is NOT the same as the number of unicode characters
176 */
177static inline unsigned long
a2940908 178utf16_strsize(efi_char16_t *data, unsigned long maxlength)
1da177e4 179{
a2940908 180 return utf16_strnlen(data, maxlength/sizeof(efi_char16_t)) * sizeof(efi_char16_t);
1da177e4
LT
181}
182
828aa1f0
MW
183static inline int
184utf16_strncmp(const efi_char16_t *a, const efi_char16_t *b, size_t len)
185{
186 while (1) {
187 if (len == 0)
188 return 0;
189 if (*a < *b)
190 return -1;
191 if (*a > *b)
192 return 1;
193 if (*a == 0) /* implies *b == 0 */
194 return 0;
195 a++;
196 b++;
197 len--;
198 }
199}
200
fec6c20b 201static bool
54b3a4d3
MG
202validate_device_path(struct efi_variable *var, int match, u8 *buffer,
203 unsigned long len)
fec6c20b
MG
204{
205 struct efi_generic_dev_path *node;
206 int offset = 0;
207
208 node = (struct efi_generic_dev_path *)buffer;
209
54b3a4d3
MG
210 if (len < sizeof(*node))
211 return false;
fec6c20b 212
54b3a4d3
MG
213 while (offset <= len - sizeof(*node) &&
214 node->length >= sizeof(*node) &&
215 node->length <= len - offset) {
216 offset += node->length;
fec6c20b
MG
217
218 if ((node->type == EFI_DEV_END_PATH ||
219 node->type == EFI_DEV_END_PATH2) &&
220 node->sub_type == EFI_DEV_END_ENTIRE)
221 return true;
222
223 node = (struct efi_generic_dev_path *)(buffer + offset);
224 }
225
226 /*
227 * If we're here then either node->length pointed past the end
228 * of the buffer or we reached the end of the buffer without
229 * finding a device path end node.
230 */
231 return false;
232}
233
234static bool
54b3a4d3
MG
235validate_boot_order(struct efi_variable *var, int match, u8 *buffer,
236 unsigned long len)
fec6c20b
MG
237{
238 /* An array of 16-bit integers */
239 if ((len % 2) != 0)
240 return false;
241
242 return true;
243}
244
245static bool
54b3a4d3
MG
246validate_load_option(struct efi_variable *var, int match, u8 *buffer,
247 unsigned long len)
fec6c20b
MG
248{
249 u16 filepathlength;
54b3a4d3
MG
250 int i, desclength = 0, namelen;
251
252 namelen = utf16_strnlen(var->VariableName, sizeof(var->VariableName));
fec6c20b
MG
253
254 /* Either "Boot" or "Driver" followed by four digits of hex */
255 for (i = match; i < match+4; i++) {
54b3a4d3
MG
256 if (var->VariableName[i] > 127 ||
257 hex_to_bin(var->VariableName[i] & 0xff) < 0)
fec6c20b
MG
258 return true;
259 }
260
54b3a4d3
MG
261 /* Reject it if there's 4 digits of hex and then further content */
262 if (namelen > match + 4)
263 return false;
264
265 /* A valid entry must be at least 8 bytes */
266 if (len < 8)
fec6c20b
MG
267 return false;
268
269 filepathlength = buffer[4] | buffer[5] << 8;
270
271 /*
272 * There's no stored length for the description, so it has to be
273 * found by hand
274 */
54b3a4d3 275 desclength = utf16_strsize((efi_char16_t *)(buffer + 6), len - 6) + 2;
fec6c20b
MG
276
277 /* Each boot entry must have a descriptor */
278 if (!desclength)
279 return false;
280
281 /*
282 * If the sum of the length of the description, the claimed filepath
283 * length and the original header are greater than the length of the
284 * variable, it's malformed
285 */
286 if ((desclength + filepathlength + 6) > len)
287 return false;
288
289 /*
290 * And, finally, check the filepath
291 */
292 return validate_device_path(var, match, buffer + desclength + 6,
293 filepathlength);
294}
295
296static bool
54b3a4d3
MG
297validate_uint16(struct efi_variable *var, int match, u8 *buffer,
298 unsigned long len)
fec6c20b
MG
299{
300 /* A single 16-bit integer */
301 if (len != 2)
302 return false;
303
304 return true;
305}
306
307static bool
54b3a4d3
MG
308validate_ascii_string(struct efi_variable *var, int match, u8 *buffer,
309 unsigned long len)
fec6c20b
MG
310{
311 int i;
312
313 for (i = 0; i < len; i++) {
314 if (buffer[i] > 127)
315 return false;
316
317 if (buffer[i] == 0)
318 return true;
319 }
320
321 return false;
322}
323
324struct variable_validate {
325 char *name;
326 bool (*validate)(struct efi_variable *var, int match, u8 *data,
54b3a4d3 327 unsigned long len);
fec6c20b
MG
328};
329
330static const struct variable_validate variable_validate[] = {
331 { "BootNext", validate_uint16 },
332 { "BootOrder", validate_boot_order },
333 { "DriverOrder", validate_boot_order },
334 { "Boot*", validate_load_option },
335 { "Driver*", validate_load_option },
336 { "ConIn", validate_device_path },
337 { "ConInDev", validate_device_path },
338 { "ConOut", validate_device_path },
339 { "ConOutDev", validate_device_path },
340 { "ErrOut", validate_device_path },
341 { "ErrOutDev", validate_device_path },
342 { "Timeout", validate_uint16 },
343 { "Lang", validate_ascii_string },
344 { "PlatformLang", validate_ascii_string },
345 { "", NULL },
346};
347
348static bool
54b3a4d3 349validate_var(struct efi_variable *var, u8 *data, unsigned long len)
fec6c20b
MG
350{
351 int i;
352 u16 *unicode_name = var->VariableName;
353
354 for (i = 0; variable_validate[i].validate != NULL; i++) {
355 const char *name = variable_validate[i].name;
356 int match;
357
358 for (match = 0; ; match++) {
359 char c = name[match];
360 u16 u = unicode_name[match];
361
362 /* All special variables are plain ascii */
363 if (u > 127)
364 return true;
365
366 /* Wildcard in the matching name means we've matched */
367 if (c == '*')
368 return variable_validate[i].validate(var,
369 match, data, len);
370
371 /* Case sensitive match */
372 if (c != u)
373 break;
374
375 /* Reached the end of the string while matching */
376 if (!c)
377 return variable_validate[i].validate(var,
378 match, data, len);
379 }
380 }
381
382 return true;
383}
384
1da177e4 385static efi_status_t
5ee9c198 386get_var_data_locked(struct efivars *efivars, struct efi_variable *var)
1da177e4
LT
387{
388 efi_status_t status;
389
1da177e4 390 var->DataSize = 1024;
3295814d
MW
391 status = efivars->ops->get_variable(var->VariableName,
392 &var->VendorGuid,
393 &var->Attributes,
394 &var->DataSize,
395 var->Data);
5ee9c198
MG
396 return status;
397}
398
399static efi_status_t
400get_var_data(struct efivars *efivars, struct efi_variable *var)
401{
402 efi_status_t status;
403
404 spin_lock(&efivars->lock);
405 status = get_var_data_locked(efivars, var);
29422693 406 spin_unlock(&efivars->lock);
5ee9c198 407
1da177e4
LT
408 if (status != EFI_SUCCESS) {
409 printk(KERN_WARNING "efivars: get_variable() failed 0x%lx!\n",
410 status);
411 }
412 return status;
413}
414
415static ssize_t
416efivar_guid_read(struct efivar_entry *entry, char *buf)
417{
418 struct efi_variable *var = &entry->var;
419 char *str = buf;
420
421 if (!entry || !buf)
422 return 0;
423
424 efi_guid_unparse(&var->VendorGuid, str);
425 str += strlen(str);
426 str += sprintf(str, "\n");
427
428 return str - buf;
429}
430
431static ssize_t
432efivar_attr_read(struct efivar_entry *entry, char *buf)
433{
434 struct efi_variable *var = &entry->var;
435 char *str = buf;
436 efi_status_t status;
437
438 if (!entry || !buf)
439 return -EINVAL;
440
4142ef14 441 status = get_var_data(entry->efivars, var);
1da177e4
LT
442 if (status != EFI_SUCCESS)
443 return -EIO;
444
70839090 445 if (var->Attributes & EFI_VARIABLE_NON_VOLATILE)
1da177e4 446 str += sprintf(str, "EFI_VARIABLE_NON_VOLATILE\n");
70839090 447 if (var->Attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS)
1da177e4 448 str += sprintf(str, "EFI_VARIABLE_BOOTSERVICE_ACCESS\n");
70839090 449 if (var->Attributes & EFI_VARIABLE_RUNTIME_ACCESS)
1da177e4 450 str += sprintf(str, "EFI_VARIABLE_RUNTIME_ACCESS\n");
70839090
KA
451 if (var->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD)
452 str += sprintf(str, "EFI_VARIABLE_HARDWARE_ERROR_RECORD\n");
453 if (var->Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS)
454 str += sprintf(str,
455 "EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS\n");
456 if (var->Attributes &
457 EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS)
458 str += sprintf(str,
459 "EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS\n");
460 if (var->Attributes & EFI_VARIABLE_APPEND_WRITE)
461 str += sprintf(str, "EFI_VARIABLE_APPEND_WRITE\n");
1da177e4
LT
462 return str - buf;
463}
464
465static ssize_t
466efivar_size_read(struct efivar_entry *entry, char *buf)
467{
468 struct efi_variable *var = &entry->var;
469 char *str = buf;
470 efi_status_t status;
471
472 if (!entry || !buf)
473 return -EINVAL;
474
4142ef14 475 status = get_var_data(entry->efivars, var);
1da177e4
LT
476 if (status != EFI_SUCCESS)
477 return -EIO;
478
479 str += sprintf(str, "0x%lx\n", var->DataSize);
480 return str - buf;
481}
482
483static ssize_t
484efivar_data_read(struct efivar_entry *entry, char *buf)
485{
486 struct efi_variable *var = &entry->var;
487 efi_status_t status;
488
489 if (!entry || !buf)
490 return -EINVAL;
491
4142ef14 492 status = get_var_data(entry->efivars, var);
1da177e4
LT
493 if (status != EFI_SUCCESS)
494 return -EIO;
495
496 memcpy(buf, var->Data, var->DataSize);
497 return var->DataSize;
498}
499/*
500 * We allow each variable to be edited via rewriting the
501 * entire efi variable structure.
502 */
503static ssize_t
504efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count)
505{
506 struct efi_variable *new_var, *var = &entry->var;
4142ef14 507 struct efivars *efivars = entry->efivars;
1da177e4
LT
508 efi_status_t status = EFI_NOT_FOUND;
509
510 if (count != sizeof(struct efi_variable))
511 return -EINVAL;
512
513 new_var = (struct efi_variable *)buf;
514 /*
515 * If only updating the variable data, then the name
516 * and guid should remain the same
517 */
518 if (memcmp(new_var->VariableName, var->VariableName, sizeof(var->VariableName)) ||
519 efi_guidcmp(new_var->VendorGuid, var->VendorGuid)) {
520 printk(KERN_ERR "efivars: Cannot edit the wrong variable!\n");
521 return -EINVAL;
522 }
523
524 if ((new_var->DataSize <= 0) || (new_var->Attributes == 0)){
525 printk(KERN_ERR "efivars: DataSize & Attributes must be valid!\n");
526 return -EINVAL;
527 }
528
fec6c20b
MG
529 if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 ||
530 validate_var(new_var, new_var->Data, new_var->DataSize) == false) {
531 printk(KERN_ERR "efivars: Malformed variable content\n");
532 return -EINVAL;
533 }
534
29422693 535 spin_lock(&efivars->lock);
3295814d
MW
536 status = efivars->ops->set_variable(new_var->VariableName,
537 &new_var->VendorGuid,
538 new_var->Attributes,
539 new_var->DataSize,
540 new_var->Data);
1da177e4 541
29422693 542 spin_unlock(&efivars->lock);
1da177e4
LT
543
544 if (status != EFI_SUCCESS) {
545 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
546 status);
547 return -EIO;
548 }
549
550 memcpy(&entry->var, new_var, count);
551 return count;
552}
553
554static ssize_t
555efivar_show_raw(struct efivar_entry *entry, char *buf)
556{
557 struct efi_variable *var = &entry->var;
558 efi_status_t status;
559
560 if (!entry || !buf)
561 return 0;
562
4142ef14 563 status = get_var_data(entry->efivars, var);
1da177e4
LT
564 if (status != EFI_SUCCESS)
565 return -EIO;
566
567 memcpy(buf, var, sizeof(*var));
568 return sizeof(*var);
569}
570
571/*
572 * Generic read/write functions that call the specific functions of
70f23fd6 573 * the attributes...
1da177e4
LT
574 */
575static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr,
576 char *buf)
577{
578 struct efivar_entry *var = to_efivar_entry(kobj);
579 struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
70f2817a 580 ssize_t ret = -EIO;
1da177e4
LT
581
582 if (!capable(CAP_SYS_ADMIN))
583 return -EACCES;
584
585 if (efivar_attr->show) {
586 ret = efivar_attr->show(var, buf);
587 }
588 return ret;
589}
590
591static ssize_t efivar_attr_store(struct kobject *kobj, struct attribute *attr,
592 const char *buf, size_t count)
593{
594 struct efivar_entry *var = to_efivar_entry(kobj);
595 struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
70f2817a 596 ssize_t ret = -EIO;
1da177e4
LT
597
598 if (!capable(CAP_SYS_ADMIN))
599 return -EACCES;
600
601 if (efivar_attr->store)
602 ret = efivar_attr->store(var, buf, count);
603
604 return ret;
605}
606
52cf25d0 607static const struct sysfs_ops efivar_attr_ops = {
1da177e4
LT
608 .show = efivar_attr_show,
609 .store = efivar_attr_store,
610};
611
612static void efivar_release(struct kobject *kobj)
613{
614 struct efivar_entry *var = container_of(kobj, struct efivar_entry, kobj);
1da177e4
LT
615 kfree(var);
616}
617
618static EFIVAR_ATTR(guid, 0400, efivar_guid_read, NULL);
619static EFIVAR_ATTR(attributes, 0400, efivar_attr_read, NULL);
620static EFIVAR_ATTR(size, 0400, efivar_size_read, NULL);
621static EFIVAR_ATTR(data, 0400, efivar_data_read, NULL);
622static EFIVAR_ATTR(raw_var, 0600, efivar_show_raw, efivar_store_raw);
623
624static struct attribute *def_attrs[] = {
625 &efivar_attr_guid.attr,
626 &efivar_attr_size.attr,
627 &efivar_attr_attributes.attr,
628 &efivar_attr_data.attr,
629 &efivar_attr_raw_var.attr,
630 NULL,
631};
632
e89a4116 633static struct kobj_type efivar_ktype = {
1da177e4
LT
634 .release = efivar_release,
635 .sysfs_ops = &efivar_attr_ops,
636 .default_attrs = def_attrs,
637};
638
1da177e4
LT
639static inline void
640efivar_unregister(struct efivar_entry *var)
641{
c10997f6 642 kobject_put(&var->kobj);
1da177e4
LT
643}
644
5d9db883
MG
645static int efivarfs_file_open(struct inode *inode, struct file *file)
646{
647 file->private_data = inode->i_private;
648 return 0;
649}
650
651static ssize_t efivarfs_file_write(struct file *file,
652 const char __user *userbuf, size_t count, loff_t *ppos)
653{
654 struct efivar_entry *var = file->private_data;
655 struct efivars *efivars;
656 efi_status_t status;
657 void *data;
658 u32 attributes;
659 struct inode *inode = file->f_mapping->host;
660 int datasize = count - sizeof(attributes);
0c542edd 661 unsigned long newdatasize;
5d9db883
MG
662
663 if (count < sizeof(attributes))
664 return -EINVAL;
665
666 data = kmalloc(datasize, GFP_KERNEL);
667
668 if (!data)
669 return -ENOMEM;
670
671 efivars = var->efivars;
672
673 if (copy_from_user(&attributes, userbuf, sizeof(attributes))) {
674 count = -EFAULT;
675 goto out;
676 }
677
678 if (attributes & ~(EFI_VARIABLE_MASK)) {
679 count = -EINVAL;
680 goto out;
681 }
682
683 if (copy_from_user(data, userbuf + sizeof(attributes), datasize)) {
684 count = -EFAULT;
685 goto out;
686 }
687
688 if (validate_var(&var->var, data, datasize) == false) {
689 count = -EINVAL;
690 goto out;
691 }
692
f5f6a60a
JK
693 /*
694 * The lock here protects the get_variable call, the conditional
695 * set_variable call, and removal of the variable from the efivars
696 * list (in the case of an authenticated delete).
697 */
698 spin_lock(&efivars->lock);
699
5d9db883
MG
700 status = efivars->ops->set_variable(var->var.VariableName,
701 &var->var.VendorGuid,
702 attributes, datasize,
703 data);
704
f5f6a60a
JK
705 if (status != EFI_SUCCESS) {
706 spin_unlock(&efivars->lock);
707 kfree(data);
708
709 switch (status) {
710 case EFI_INVALID_PARAMETER:
711 count = -EINVAL;
712 break;
713 case EFI_OUT_OF_RESOURCES:
714 count = -ENOSPC;
715 break;
716 case EFI_DEVICE_ERROR:
717 count = -EIO;
718 break;
719 case EFI_WRITE_PROTECTED:
720 count = -EROFS;
721 break;
722 case EFI_SECURITY_VIOLATION:
723 count = -EACCES;
724 break;
725 case EFI_NOT_FOUND:
726 count = -ENOENT;
727 break;
728 default:
729 count = -EINVAL;
730 }
731 return count;
5d9db883 732 }
0c542edd
JK
733
734 /*
735 * Writing to the variable may have caused a change in size (which
736 * could either be an append or an overwrite), or the variable to be
737 * deleted. Perform a GetVariable() so we can tell what actually
738 * happened.
739 */
740 newdatasize = 0;
741 status = efivars->ops->get_variable(var->var.VariableName,
742 &var->var.VendorGuid,
743 NULL, &newdatasize,
744 NULL);
745
746 if (status == EFI_BUFFER_TOO_SMALL) {
f5f6a60a 747 spin_unlock(&efivars->lock);
0c542edd
JK
748 mutex_lock(&inode->i_mutex);
749 i_size_write(inode, newdatasize + sizeof(attributes));
750 mutex_unlock(&inode->i_mutex);
751
752 } else if (status == EFI_NOT_FOUND) {
0c542edd
JK
753 list_del(&var->list);
754 spin_unlock(&efivars->lock);
755 efivar_unregister(var);
756 drop_nlink(inode);
757 dput(file->f_dentry);
758
759 } else {
f5f6a60a 760 spin_unlock(&efivars->lock);
0c542edd
JK
761 pr_warn("efivarfs: inconsistent EFI variable implementation? "
762 "status = %lx\n", status);
763 }
764
5d9db883
MG
765out:
766 kfree(data);
767
768 return count;
769}
770
771static ssize_t efivarfs_file_read(struct file *file, char __user *userbuf,
772 size_t count, loff_t *ppos)
773{
774 struct efivar_entry *var = file->private_data;
775 struct efivars *efivars = var->efivars;
776 efi_status_t status;
777 unsigned long datasize = 0;
778 u32 attributes;
779 void *data;
d142df03 780 ssize_t size = 0;
5d9db883 781
f5f6a60a 782 spin_lock(&efivars->lock);
5d9db883
MG
783 status = efivars->ops->get_variable(var->var.VariableName,
784 &var->var.VendorGuid,
785 &attributes, &datasize, NULL);
f5f6a60a 786 spin_unlock(&efivars->lock);
5d9db883
MG
787
788 if (status != EFI_BUFFER_TOO_SMALL)
789 return 0;
790
791 data = kmalloc(datasize + 4, GFP_KERNEL);
792
793 if (!data)
794 return 0;
795
f5f6a60a 796 spin_lock(&efivars->lock);
5d9db883
MG
797 status = efivars->ops->get_variable(var->var.VariableName,
798 &var->var.VendorGuid,
799 &attributes, &datasize,
800 (data + 4));
f5f6a60a
JK
801 spin_unlock(&efivars->lock);
802
5d9db883 803 if (status != EFI_SUCCESS)
d142df03 804 goto out_free;
5d9db883
MG
805
806 memcpy(data, &attributes, 4);
807 size = simple_read_from_buffer(userbuf, count, ppos,
808 data, datasize + 4);
d142df03 809out_free:
5d9db883
MG
810 kfree(data);
811
812 return size;
813}
814
815static void efivarfs_evict_inode(struct inode *inode)
816{
817 clear_inode(inode);
818}
819
820static const struct super_operations efivarfs_ops = {
821 .statfs = simple_statfs,
822 .drop_inode = generic_delete_inode,
823 .evict_inode = efivarfs_evict_inode,
824 .show_options = generic_show_options,
825};
826
827static struct super_block *efivarfs_sb;
828
829static const struct inode_operations efivarfs_dir_inode_operations;
830
831static const struct file_operations efivarfs_file_operations = {
832 .open = efivarfs_file_open,
833 .read = efivarfs_file_read,
834 .write = efivarfs_file_write,
835 .llseek = no_llseek,
836};
837
838static struct inode *efivarfs_get_inode(struct super_block *sb,
839 const struct inode *dir, int mode, dev_t dev)
840{
841 struct inode *inode = new_inode(sb);
842
843 if (inode) {
844 inode->i_ino = get_next_ino();
845 inode->i_uid = inode->i_gid = 0;
846 inode->i_mode = mode;
847 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
848 switch (mode & S_IFMT) {
849 case S_IFREG:
850 inode->i_fop = &efivarfs_file_operations;
851 break;
852 case S_IFDIR:
853 inode->i_op = &efivarfs_dir_inode_operations;
854 inode->i_fop = &simple_dir_operations;
855 inc_nlink(inode);
856 break;
857 }
858 }
859 return inode;
860}
861
862static void efivarfs_hex_to_guid(const char *str, efi_guid_t *guid)
863{
864 guid->b[0] = hex_to_bin(str[6]) << 4 | hex_to_bin(str[7]);
865 guid->b[1] = hex_to_bin(str[4]) << 4 | hex_to_bin(str[5]);
866 guid->b[2] = hex_to_bin(str[2]) << 4 | hex_to_bin(str[3]);
867 guid->b[3] = hex_to_bin(str[0]) << 4 | hex_to_bin(str[1]);
868 guid->b[4] = hex_to_bin(str[11]) << 4 | hex_to_bin(str[12]);
869 guid->b[5] = hex_to_bin(str[9]) << 4 | hex_to_bin(str[10]);
870 guid->b[6] = hex_to_bin(str[16]) << 4 | hex_to_bin(str[17]);
871 guid->b[7] = hex_to_bin(str[14]) << 4 | hex_to_bin(str[15]);
872 guid->b[8] = hex_to_bin(str[19]) << 4 | hex_to_bin(str[20]);
873 guid->b[9] = hex_to_bin(str[21]) << 4 | hex_to_bin(str[22]);
874 guid->b[10] = hex_to_bin(str[24]) << 4 | hex_to_bin(str[25]);
875 guid->b[11] = hex_to_bin(str[26]) << 4 | hex_to_bin(str[27]);
876 guid->b[12] = hex_to_bin(str[28]) << 4 | hex_to_bin(str[29]);
877 guid->b[13] = hex_to_bin(str[30]) << 4 | hex_to_bin(str[31]);
878 guid->b[14] = hex_to_bin(str[32]) << 4 | hex_to_bin(str[33]);
879 guid->b[15] = hex_to_bin(str[34]) << 4 | hex_to_bin(str[35]);
880}
881
882static int efivarfs_create(struct inode *dir, struct dentry *dentry,
883 umode_t mode, bool excl)
884{
45a937a8 885 struct inode *inode;
5d9db883
MG
886 struct efivars *efivars = &__efivars;
887 struct efivar_entry *var;
888 int namelen, i = 0, err = 0;
889
890 if (dentry->d_name.len < 38)
891 return -EINVAL;
892
45a937a8 893 inode = efivarfs_get_inode(dir->i_sb, dir, mode, 0);
5d9db883
MG
894 if (!inode)
895 return -ENOSPC;
896
897 var = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL);
45a937a8
AW
898 if (!var) {
899 err = -ENOMEM;
900 goto out;
901 }
5d9db883
MG
902
903 namelen = dentry->d_name.len - GUID_LEN;
904
905 efivarfs_hex_to_guid(dentry->d_name.name + namelen + 1,
906 &var->var.VendorGuid);
907
908 for (i = 0; i < namelen; i++)
909 var->var.VariableName[i] = dentry->d_name.name[i];
910
911 var->var.VariableName[i] = '\0';
912
913 inode->i_private = var;
914 var->efivars = efivars;
915 var->kobj.kset = efivars->kset;
916
917 err = kobject_init_and_add(&var->kobj, &efivar_ktype, NULL, "%s",
918 dentry->d_name.name);
919 if (err)
920 goto out;
921
922 kobject_uevent(&var->kobj, KOBJ_ADD);
923 spin_lock(&efivars->lock);
924 list_add(&var->list, &efivars->list);
925 spin_unlock(&efivars->lock);
926 d_instantiate(dentry, inode);
927 dget(dentry);
928out:
45a937a8 929 if (err) {
5d9db883 930 kfree(var);
45a937a8
AW
931 iput(inode);
932 }
5d9db883
MG
933 return err;
934}
935
936static int efivarfs_unlink(struct inode *dir, struct dentry *dentry)
937{
938 struct efivar_entry *var = dentry->d_inode->i_private;
939 struct efivars *efivars = var->efivars;
940 efi_status_t status;
941
942 spin_lock(&efivars->lock);
943
944 status = efivars->ops->set_variable(var->var.VariableName,
945 &var->var.VendorGuid,
946 0, 0, NULL);
947
948 if (status == EFI_SUCCESS || status == EFI_NOT_FOUND) {
949 list_del(&var->list);
950 spin_unlock(&efivars->lock);
951 efivar_unregister(var);
952 drop_nlink(dir);
953 dput(dentry);
954 return 0;
955 }
956
957 spin_unlock(&efivars->lock);
958 return -EINVAL;
959};
960
961int efivarfs_fill_super(struct super_block *sb, void *data, int silent)
962{
963 struct inode *inode = NULL;
964 struct dentry *root;
965 struct efivar_entry *entry, *n;
966 struct efivars *efivars = &__efivars;
5ba6e291 967 char *name;
5d9db883
MG
968
969 efivarfs_sb = sb;
970
971 sb->s_maxbytes = MAX_LFS_FILESIZE;
972 sb->s_blocksize = PAGE_CACHE_SIZE;
973 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
974 sb->s_magic = PSTOREFS_MAGIC;
975 sb->s_op = &efivarfs_ops;
976 sb->s_time_gran = 1;
977
978 inode = efivarfs_get_inode(sb, NULL, S_IFDIR | 0755, 0);
5c9b50ab
AW
979 if (!inode)
980 return -ENOMEM;
5d9db883
MG
981 inode->i_op = &efivarfs_dir_inode_operations;
982
983 root = d_make_root(inode);
984 sb->s_root = root;
5c9b50ab
AW
985 if (!root)
986 return -ENOMEM;
5d9db883
MG
987
988 list_for_each_entry_safe(entry, n, &efivars->list, list) {
5d9db883 989 struct dentry *dentry, *root = efivarfs_sb->s_root;
5d9db883
MG
990 unsigned long size = 0;
991 int len, i;
992
5ba6e291
AW
993 inode = NULL;
994
5d9db883
MG
995 len = utf16_strlen(entry->var.VariableName);
996
997 /* GUID plus trailing NULL */
998 name = kmalloc(len + 38, GFP_ATOMIC);
5ba6e291
AW
999 if (!name)
1000 goto fail;
5d9db883
MG
1001
1002 for (i = 0; i < len; i++)
1003 name[i] = entry->var.VariableName[i] & 0xFF;
1004
1005 name[len] = '-';
1006
1007 efi_guid_unparse(&entry->var.VendorGuid, name + len + 1);
1008
1009 name[len+GUID_LEN] = '\0';
1010
1011 inode = efivarfs_get_inode(efivarfs_sb, root->d_inode,
1012 S_IFREG | 0644, 0);
5ba6e291
AW
1013 if (!inode)
1014 goto fail_name;
1015
5d9db883 1016 dentry = d_alloc_name(root, name);
5ba6e291
AW
1017 if (!dentry)
1018 goto fail_inode;
1019
c0359db1
AW
1020 /* copied by the above to local storage in the dentry. */
1021 kfree(name);
5d9db883 1022
f5f6a60a 1023 spin_lock(&efivars->lock);
5d9db883
MG
1024 efivars->ops->get_variable(entry->var.VariableName,
1025 &entry->var.VendorGuid,
1026 &entry->var.Attributes,
1027 &size,
1028 NULL);
f5f6a60a 1029 spin_unlock(&efivars->lock);
5d9db883
MG
1030
1031 mutex_lock(&inode->i_mutex);
1032 inode->i_private = entry;
1033 i_size_write(inode, size+4);
1034 mutex_unlock(&inode->i_mutex);
1035 d_add(dentry, inode);
1036 }
1037
1038 return 0;
5ba6e291
AW
1039
1040fail_inode:
1041 iput(inode);
1042fail_name:
1043 kfree(name);
1044fail:
1045 return -ENOMEM;
5d9db883
MG
1046}
1047
1048static struct dentry *efivarfs_mount(struct file_system_type *fs_type,
1049 int flags, const char *dev_name, void *data)
1050{
1051 return mount_single(fs_type, flags, data, efivarfs_fill_super);
1052}
1053
1054static void efivarfs_kill_sb(struct super_block *sb)
1055{
1056 kill_litter_super(sb);
1057 efivarfs_sb = NULL;
1058}
1059
1060static struct file_system_type efivarfs_type = {
1061 .name = "efivarfs",
1062 .mount = efivarfs_mount,
1063 .kill_sb = efivarfs_kill_sb,
1064};
1065
1066static const struct inode_operations efivarfs_dir_inode_operations = {
1067 .lookup = simple_lookup,
1068 .unlink = efivarfs_unlink,
1069 .create = efivarfs_create,
1070};
1071
1072static struct pstore_info efi_pstore_info;
1073
5ee9c198
MG
1074#ifdef CONFIG_PSTORE
1075
1076static int efi_pstore_open(struct pstore_info *psi)
1077{
1078 struct efivars *efivars = psi->data;
1079
1080 spin_lock(&efivars->lock);
1081 efivars->walk_entry = list_first_entry(&efivars->list,
1082 struct efivar_entry, list);
1083 return 0;
1084}
1085
1086static int efi_pstore_close(struct pstore_info *psi)
1087{
1088 struct efivars *efivars = psi->data;
1089
1090 spin_unlock(&efivars->lock);
1091 return 0;
1092}
1093
1094static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
f6f82851
KC
1095 struct timespec *timespec,
1096 char **buf, struct pstore_info *psi)
5ee9c198
MG
1097{
1098 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
1099 struct efivars *efivars = psi->data;
1100 char name[DUMP_NAME_LEN];
1101 int i;
1102 unsigned int part, size;
1103 unsigned long time;
1104
1105 while (&efivars->walk_entry->list != &efivars->list) {
1106 if (!efi_guidcmp(efivars->walk_entry->var.VendorGuid,
1107 vendor)) {
1108 for (i = 0; i < DUMP_NAME_LEN; i++) {
1109 name[i] = efivars->walk_entry->var.VariableName[i];
1110 }
1111 if (sscanf(name, "dump-type%u-%u-%lu", type, &part, &time) == 3) {
1112 *id = part;
1113 timespec->tv_sec = time;
1114 timespec->tv_nsec = 0;
1115 get_var_data_locked(efivars, &efivars->walk_entry->var);
1116 size = efivars->walk_entry->var.DataSize;
f6f82851
KC
1117 *buf = kmalloc(size, GFP_KERNEL);
1118 if (*buf == NULL)
1119 return -ENOMEM;
1120 memcpy(*buf, efivars->walk_entry->var.Data,
1121 size);
5ee9c198
MG
1122 efivars->walk_entry = list_entry(efivars->walk_entry->list.next,
1123 struct efivar_entry, list);
1124 return size;
1125 }
1126 }
1127 efivars->walk_entry = list_entry(efivars->walk_entry->list.next,
1128 struct efivar_entry, list);
1129 }
1130 return 0;
1131}
1132
3d6d8d20
KC
1133static int efi_pstore_write(enum pstore_type_id type,
1134 enum kmsg_dump_reason reason, u64 *id,
b238b8fa 1135 unsigned int part, size_t size, struct pstore_info *psi)
5ee9c198
MG
1136{
1137 char name[DUMP_NAME_LEN];
1138 char stub_name[DUMP_NAME_LEN];
1139 efi_char16_t efi_name[DUMP_NAME_LEN];
1140 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
1141 struct efivars *efivars = psi->data;
1142 struct efivar_entry *entry, *found = NULL;
b238b8fa 1143 int i, ret = 0;
5ee9c198
MG
1144
1145 sprintf(stub_name, "dump-type%u-%u-", type, part);
1146 sprintf(name, "%s%lu", stub_name, get_seconds());
1147
1148 spin_lock(&efivars->lock);
1149
1150 for (i = 0; i < DUMP_NAME_LEN; i++)
1151 efi_name[i] = stub_name[i];
1152
1153 /*
1154 * Clean up any entries with the same name
1155 */
1156
1157 list_for_each_entry(entry, &efivars->list, list) {
1158 get_var_data_locked(efivars, &entry->var);
1159
c475594d
MW
1160 if (efi_guidcmp(entry->var.VendorGuid, vendor))
1161 continue;
1162 if (utf16_strncmp(entry->var.VariableName, efi_name,
1163 utf16_strlen(efi_name)))
1164 continue;
1165 /* Needs to be a prefix */
1166 if (entry->var.VariableName[utf16_strlen(efi_name)] == 0)
1167 continue;
1168
1169 /* found */
1170 found = entry;
7644c16c
MW
1171 efivars->ops->set_variable(entry->var.VariableName,
1172 &entry->var.VendorGuid,
1173 PSTORE_EFI_ATTRIBUTES,
c475594d 1174 0, NULL);
5ee9c198
MG
1175 }
1176
1177 if (found)
1178 list_del(&found->list);
1179
1180 for (i = 0; i < DUMP_NAME_LEN; i++)
1181 efi_name[i] = name[i];
1182
7644c16c 1183 efivars->ops->set_variable(efi_name, &vendor, PSTORE_EFI_ATTRIBUTES,
5ee9c198
MG
1184 size, psi->buf);
1185
1186 spin_unlock(&efivars->lock);
1187
1188 if (found)
1189 efivar_unregister(found);
1190
1191 if (size)
b238b8fa 1192 ret = efivar_create_sysfs_entry(efivars,
a2940908
MW
1193 utf16_strsize(efi_name,
1194 DUMP_NAME_LEN * 2),
5ee9c198
MG
1195 efi_name, &vendor);
1196
b238b8fa
CG
1197 *id = part;
1198 return ret;
5ee9c198
MG
1199};
1200
1201static int efi_pstore_erase(enum pstore_type_id type, u64 id,
1202 struct pstore_info *psi)
1203{
3d6d8d20 1204 efi_pstore_write(type, 0, &id, (unsigned int)id, 0, psi);
5ee9c198
MG
1205
1206 return 0;
1207}
1208#else
1209static int efi_pstore_open(struct pstore_info *psi)
1210{
1211 return 0;
1212}
1213
1214static int efi_pstore_close(struct pstore_info *psi)
1215{
1216 return 0;
1217}
1218
1219static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
eee628da
CF
1220 struct timespec *timespec,
1221 char **buf, struct pstore_info *psi)
5ee9c198
MG
1222{
1223 return -1;
1224}
1225
3d6d8d20
KC
1226static int efi_pstore_write(enum pstore_type_id type,
1227 enum kmsg_dump_reason reason, u64 *id,
b238b8fa 1228 unsigned int part, size_t size, struct pstore_info *psi)
5ee9c198
MG
1229{
1230 return 0;
1231}
1232
1233static int efi_pstore_erase(enum pstore_type_id type, u64 id,
1234 struct pstore_info *psi)
1235{
1236 return 0;
1237}
1238#endif
1239
1240static struct pstore_info efi_pstore_info = {
1241 .owner = THIS_MODULE,
1242 .name = "efi",
1243 .open = efi_pstore_open,
1244 .close = efi_pstore_close,
1245 .read = efi_pstore_read,
1246 .write = efi_pstore_write,
1247 .erase = efi_pstore_erase,
1248};
1da177e4 1249
2c3c8bea 1250static ssize_t efivar_create(struct file *filp, struct kobject *kobj,
97fa5bb7
GKH
1251 struct bin_attribute *bin_attr,
1252 char *buf, loff_t pos, size_t count)
1da177e4
LT
1253{
1254 struct efi_variable *new_var = (struct efi_variable *)buf;
4142ef14 1255 struct efivars *efivars = bin_attr->private;
496a0fc8 1256 struct efivar_entry *search_efivar, *n;
1da177e4 1257 unsigned long strsize1, strsize2;
1da177e4
LT
1258 efi_status_t status = EFI_NOT_FOUND;
1259 int found = 0;
1260
1261 if (!capable(CAP_SYS_ADMIN))
1262 return -EACCES;
1263
fec6c20b
MG
1264 if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 ||
1265 validate_var(new_var, new_var->Data, new_var->DataSize) == false) {
1266 printk(KERN_ERR "efivars: Malformed variable content\n");
1267 return -EINVAL;
1268 }
1269
29422693 1270 spin_lock(&efivars->lock);
1da177e4
LT
1271
1272 /*
1273 * Does this variable already exist?
1274 */
29422693 1275 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
a2940908
MW
1276 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
1277 strsize2 = utf16_strsize(new_var->VariableName, 1024);
1da177e4
LT
1278 if (strsize1 == strsize2 &&
1279 !memcmp(&(search_efivar->var.VariableName),
1280 new_var->VariableName, strsize1) &&
1281 !efi_guidcmp(search_efivar->var.VendorGuid,
1282 new_var->VendorGuid)) {
1283 found = 1;
1284 break;
1285 }
1286 }
1287 if (found) {
29422693 1288 spin_unlock(&efivars->lock);
1da177e4
LT
1289 return -EINVAL;
1290 }
1291
1292 /* now *really* create the variable via EFI */
3295814d
MW
1293 status = efivars->ops->set_variable(new_var->VariableName,
1294 &new_var->VendorGuid,
1295 new_var->Attributes,
1296 new_var->DataSize,
1297 new_var->Data);
1da177e4
LT
1298
1299 if (status != EFI_SUCCESS) {
1300 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
1301 status);
29422693 1302 spin_unlock(&efivars->lock);
1da177e4
LT
1303 return -EIO;
1304 }
29422693 1305 spin_unlock(&efivars->lock);
1da177e4
LT
1306
1307 /* Create the entry in sysfs. Locking is not required here */
4142ef14 1308 status = efivar_create_sysfs_entry(efivars,
a2940908
MW
1309 utf16_strsize(new_var->VariableName,
1310 1024),
4142ef14
MW
1311 new_var->VariableName,
1312 &new_var->VendorGuid);
1da177e4
LT
1313 if (status) {
1314 printk(KERN_WARNING "efivars: variable created, but sysfs entry wasn't.\n");
1315 }
1316 return count;
1317}
1318
2c3c8bea 1319static ssize_t efivar_delete(struct file *filp, struct kobject *kobj,
97fa5bb7
GKH
1320 struct bin_attribute *bin_attr,
1321 char *buf, loff_t pos, size_t count)
1da177e4
LT
1322{
1323 struct efi_variable *del_var = (struct efi_variable *)buf;
4142ef14 1324 struct efivars *efivars = bin_attr->private;
496a0fc8 1325 struct efivar_entry *search_efivar, *n;
1da177e4 1326 unsigned long strsize1, strsize2;
1da177e4
LT
1327 efi_status_t status = EFI_NOT_FOUND;
1328 int found = 0;
1329
1330 if (!capable(CAP_SYS_ADMIN))
1331 return -EACCES;
1332
29422693 1333 spin_lock(&efivars->lock);
1da177e4
LT
1334
1335 /*
1336 * Does this variable already exist?
1337 */
29422693 1338 list_for_each_entry_safe(search_efivar, n, &efivars->list, list) {
a2940908
MW
1339 strsize1 = utf16_strsize(search_efivar->var.VariableName, 1024);
1340 strsize2 = utf16_strsize(del_var->VariableName, 1024);
1da177e4
LT
1341 if (strsize1 == strsize2 &&
1342 !memcmp(&(search_efivar->var.VariableName),
1343 del_var->VariableName, strsize1) &&
1344 !efi_guidcmp(search_efivar->var.VendorGuid,
1345 del_var->VendorGuid)) {
1346 found = 1;
1347 break;
1348 }
1349 }
1350 if (!found) {
29422693 1351 spin_unlock(&efivars->lock);
1da177e4
LT
1352 return -EINVAL;
1353 }
1354 /* force the Attributes/DataSize to 0 to ensure deletion */
1355 del_var->Attributes = 0;
1356 del_var->DataSize = 0;
1357
3295814d
MW
1358 status = efivars->ops->set_variable(del_var->VariableName,
1359 &del_var->VendorGuid,
1360 del_var->Attributes,
1361 del_var->DataSize,
1362 del_var->Data);
1da177e4
LT
1363
1364 if (status != EFI_SUCCESS) {
1365 printk(KERN_WARNING "efivars: set_variable() failed: status=%lx\n",
1366 status);
29422693 1367 spin_unlock(&efivars->lock);
1da177e4
LT
1368 return -EIO;
1369 }
496a0fc8 1370 list_del(&search_efivar->list);
1da177e4 1371 /* We need to release this lock before unregistering. */
29422693 1372 spin_unlock(&efivars->lock);
1da177e4
LT
1373 efivar_unregister(search_efivar);
1374
1375 /* It's dead Jim.... */
1376 return count;
1377}
1378
1da177e4
LT
1379/*
1380 * Let's not leave out systab information that snuck into
1381 * the efivars driver
1382 */
334c6307
GKH
1383static ssize_t systab_show(struct kobject *kobj,
1384 struct kobj_attribute *attr, char *buf)
1da177e4
LT
1385{
1386 char *str = buf;
1387
334c6307 1388 if (!kobj || !buf)
1da177e4
LT
1389 return -EINVAL;
1390
b2c99e3c
BH
1391 if (efi.mps != EFI_INVALID_TABLE_ADDR)
1392 str += sprintf(str, "MPS=0x%lx\n", efi.mps);
1393 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
1394 str += sprintf(str, "ACPI20=0x%lx\n", efi.acpi20);
1395 if (efi.acpi != EFI_INVALID_TABLE_ADDR)
1396 str += sprintf(str, "ACPI=0x%lx\n", efi.acpi);
1397 if (efi.smbios != EFI_INVALID_TABLE_ADDR)
1398 str += sprintf(str, "SMBIOS=0x%lx\n", efi.smbios);
1399 if (efi.hcdp != EFI_INVALID_TABLE_ADDR)
1400 str += sprintf(str, "HCDP=0x%lx\n", efi.hcdp);
1401 if (efi.boot_info != EFI_INVALID_TABLE_ADDR)
1402 str += sprintf(str, "BOOTINFO=0x%lx\n", efi.boot_info);
1403 if (efi.uga != EFI_INVALID_TABLE_ADDR)
1404 str += sprintf(str, "UGA=0x%lx\n", efi.uga);
1da177e4
LT
1405
1406 return str - buf;
1407}
1408
334c6307
GKH
1409static struct kobj_attribute efi_attr_systab =
1410 __ATTR(systab, 0400, systab_show, NULL);
1da177e4 1411
334c6307
GKH
1412static struct attribute *efi_subsys_attrs[] = {
1413 &efi_attr_systab.attr,
1da177e4
LT
1414 NULL, /* maybe more in the future? */
1415};
1416
334c6307
GKH
1417static struct attribute_group efi_subsys_attr_group = {
1418 .attrs = efi_subsys_attrs,
1419};
1420
bc87d2fe 1421static struct kobject *efi_kobj;
1da177e4
LT
1422
1423/*
1424 * efivar_create_sysfs_entry()
1425 * Requires:
1426 * variable_name_size = number of bytes required to hold
1427 * variable_name (not counting the NULL
1428 * character at the end.
29422693 1429 * efivars->lock is not held on entry or exit.
1da177e4
LT
1430 * Returns 1 on failure, 0 on success
1431 */
1432static int
4142ef14
MW
1433efivar_create_sysfs_entry(struct efivars *efivars,
1434 unsigned long variable_name_size,
1435 efi_char16_t *variable_name,
1436 efi_guid_t *vendor_guid)
1da177e4
LT
1437{
1438 int i, short_name_size = variable_name_size / sizeof(efi_char16_t) + 38;
1439 char *short_name;
1440 struct efivar_entry *new_efivar;
1441
9c215384
DS
1442 short_name = kzalloc(short_name_size + 1, GFP_KERNEL);
1443 new_efivar = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL);
1da177e4
LT
1444
1445 if (!short_name || !new_efivar) {
0933ad9c
JJ
1446 kfree(short_name);
1447 kfree(new_efivar);
1da177e4
LT
1448 return 1;
1449 }
1da177e4 1450
4142ef14 1451 new_efivar->efivars = efivars;
1da177e4
LT
1452 memcpy(new_efivar->var.VariableName, variable_name,
1453 variable_name_size);
1454 memcpy(&(new_efivar->var.VendorGuid), vendor_guid, sizeof(efi_guid_t));
1455
1456 /* Convert Unicode to normal chars (assume top bits are 0),
1457 ala UTF-8 */
1458 for (i=0; i < (int)(variable_name_size / sizeof(efi_char16_t)); i++) {
1459 short_name[i] = variable_name[i] & 0xFF;
1460 }
1461 /* This is ugly, but necessary to separate one vendor's
1462 private variables from another's. */
1463
1464 *(short_name + strlen(short_name)) = '-';
1465 efi_guid_unparse(vendor_guid, short_name + strlen(short_name));
1466
29422693 1467 new_efivar->kobj.kset = efivars->kset;
d6d292c4
GKH
1468 i = kobject_init_and_add(&new_efivar->kobj, &efivar_ktype, NULL,
1469 "%s", short_name);
69b2186c
JG
1470 if (i) {
1471 kfree(short_name);
1472 kfree(new_efivar);
1473 return 1;
1474 }
1da177e4 1475
d6d292c4 1476 kobject_uevent(&new_efivar->kobj, KOBJ_ADD);
0933ad9c
JJ
1477 kfree(short_name);
1478 short_name = NULL;
1da177e4 1479
29422693
MW
1480 spin_lock(&efivars->lock);
1481 list_add(&new_efivar->list, &efivars->list);
1482 spin_unlock(&efivars->lock);
1da177e4
LT
1483
1484 return 0;
1485}
d502fbb0
MW
1486
1487static int
1488create_efivars_bin_attributes(struct efivars *efivars)
1489{
1490 struct bin_attribute *attr;
1491 int error;
1492
1493 /* new_var */
1494 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1495 if (!attr)
1496 return -ENOMEM;
1497
1498 attr->attr.name = "new_var";
1499 attr->attr.mode = 0200;
1500 attr->write = efivar_create;
1501 attr->private = efivars;
1502 efivars->new_var = attr;
1503
1504 /* del_var */
1505 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
1506 if (!attr) {
1507 error = -ENOMEM;
1508 goto out_free;
1509 }
1510 attr->attr.name = "del_var";
1511 attr->attr.mode = 0200;
1512 attr->write = efivar_delete;
1513 attr->private = efivars;
1514 efivars->del_var = attr;
1515
1516 sysfs_bin_attr_init(efivars->new_var);
1517 sysfs_bin_attr_init(efivars->del_var);
1518
1519 /* Register */
1520 error = sysfs_create_bin_file(&efivars->kset->kobj,
1521 efivars->new_var);
1522 if (error) {
1523 printk(KERN_ERR "efivars: unable to create new_var sysfs file"
1524 " due to error %d\n", error);
1525 goto out_free;
1526 }
1527 error = sysfs_create_bin_file(&efivars->kset->kobj,
1528 efivars->del_var);
1529 if (error) {
1530 printk(KERN_ERR "efivars: unable to create del_var sysfs file"
1531 " due to error %d\n", error);
1532 sysfs_remove_bin_file(&efivars->kset->kobj,
1533 efivars->new_var);
1534 goto out_free;
1535 }
1536
1537 return 0;
1538out_free:
051d51bc
DC
1539 kfree(efivars->del_var);
1540 efivars->del_var = NULL;
d502fbb0
MW
1541 kfree(efivars->new_var);
1542 efivars->new_var = NULL;
1543 return error;
1544}
1545
4fc756bd 1546void unregister_efivars(struct efivars *efivars)
76b53f7c
MW
1547{
1548 struct efivar_entry *entry, *n;
4142ef14 1549
76b53f7c
MW
1550 list_for_each_entry_safe(entry, n, &efivars->list, list) {
1551 spin_lock(&efivars->lock);
1552 list_del(&entry->list);
1553 spin_unlock(&efivars->lock);
1554 efivar_unregister(entry);
1555 }
1556 if (efivars->new_var)
1557 sysfs_remove_bin_file(&efivars->kset->kobj, efivars->new_var);
1558 if (efivars->del_var)
1559 sysfs_remove_bin_file(&efivars->kset->kobj, efivars->del_var);
1560 kfree(efivars->new_var);
1561 kfree(efivars->del_var);
605e70c7 1562 kobject_put(efivars->kobject);
76b53f7c
MW
1563 kset_unregister(efivars->kset);
1564}
4fc756bd 1565EXPORT_SYMBOL_GPL(unregister_efivars);
1da177e4 1566
4fc756bd
MW
1567int register_efivars(struct efivars *efivars,
1568 const struct efivar_operations *ops,
1569 struct kobject *parent_kobj)
1da177e4
LT
1570{
1571 efi_status_t status = EFI_NOT_FOUND;
1572 efi_guid_t vendor_guid;
1573 efi_char16_t *variable_name;
1da177e4 1574 unsigned long variable_name_size = 1024;
334c6307 1575 int error = 0;
1da177e4 1576
9c215384 1577 variable_name = kzalloc(variable_name_size, GFP_KERNEL);
1da177e4
LT
1578 if (!variable_name) {
1579 printk(KERN_ERR "efivars: Memory allocation failed.\n");
1580 return -ENOMEM;
1581 }
1582
29422693
MW
1583 spin_lock_init(&efivars->lock);
1584 INIT_LIST_HEAD(&efivars->list);
3295814d 1585 efivars->ops = ops;
29422693 1586
76b53f7c 1587 efivars->kset = kset_create_and_add("vars", NULL, parent_kobj);
29422693 1588 if (!efivars->kset) {
66ac831e
GKH
1589 printk(KERN_ERR "efivars: Subsystem registration failed.\n");
1590 error = -ENOMEM;
76b53f7c 1591 goto out;
1da177e4
LT
1592 }
1593
605e70c7
LCY
1594 efivars->kobject = kobject_create_and_add("efivars", parent_kobj);
1595 if (!efivars->kobject) {
1596 pr_err("efivars: Subsystem registration failed.\n");
1597 error = -ENOMEM;
1598 kset_unregister(efivars->kset);
1599 goto out;
1600 }
1601
1da177e4
LT
1602 /*
1603 * Per EFI spec, the maximum storage allocated for both
1604 * the variable name and variable data is 1024 bytes.
1605 */
1606
1607 do {
1608 variable_name_size = 1024;
1609
3295814d 1610 status = ops->get_next_variable(&variable_name_size,
1da177e4
LT
1611 variable_name,
1612 &vendor_guid);
1613 switch (status) {
1614 case EFI_SUCCESS:
4142ef14
MW
1615 efivar_create_sysfs_entry(efivars,
1616 variable_name_size,
1617 variable_name,
1618 &vendor_guid);
1da177e4
LT
1619 break;
1620 case EFI_NOT_FOUND:
1621 break;
1622 default:
1623 printk(KERN_WARNING "efivars: get_next_variable: status=%lx\n",
1624 status);
1625 status = EFI_NOT_FOUND;
1626 break;
1627 }
1628 } while (status != EFI_NOT_FOUND);
1629
d502fbb0 1630 error = create_efivars_bin_attributes(efivars);
1da177e4 1631 if (error)
76b53f7c 1632 unregister_efivars(efivars);
1da177e4 1633
5ee9c198
MG
1634 efivars->efi_pstore_info = efi_pstore_info;
1635
1636 efivars->efi_pstore_info.buf = kmalloc(4096, GFP_KERNEL);
1637 if (efivars->efi_pstore_info.buf) {
1638 efivars->efi_pstore_info.bufsize = 1024;
1639 efivars->efi_pstore_info.data = efivars;
abd4d558 1640 spin_lock_init(&efivars->efi_pstore_info.buf_lock);
5ee9c198
MG
1641 pstore_register(&efivars->efi_pstore_info);
1642 }
1643
5d9db883
MG
1644 register_filesystem(&efivarfs_type);
1645
76b53f7c
MW
1646out:
1647 kfree(variable_name);
1da177e4 1648
76b53f7c
MW
1649 return error;
1650}
4fc756bd 1651EXPORT_SYMBOL_GPL(register_efivars);
1da177e4 1652
76b53f7c
MW
1653/*
1654 * For now we register the efi subsystem with the firmware subsystem
1655 * and the vars subsystem with the efi subsystem. In the future, it
1656 * might make sense to split off the efi subsystem into its own
1657 * driver, but for now only efivars will register with it, so just
1658 * include it here.
1659 */
1660
1661static int __init
1662efivars_init(void)
1663{
1664 int error = 0;
1665
1666 printk(KERN_INFO "EFI Variables Facility v%s %s\n", EFIVARS_VERSION,
1667 EFIVARS_DATE);
1668
1669 if (!efi_enabled)
4fc756bd 1670 return 0;
76b53f7c
MW
1671
1672 /* For now we'll register the efi directory at /sys/firmware/efi */
1673 efi_kobj = kobject_create_and_add("efi", firmware_kobj);
1674 if (!efi_kobj) {
1675 printk(KERN_ERR "efivars: Firmware registration failed.\n");
1676 return -ENOMEM;
1677 }
1678
3295814d
MW
1679 ops.get_variable = efi.get_variable;
1680 ops.set_variable = efi.set_variable;
1681 ops.get_next_variable = efi.get_next_variable;
1682 error = register_efivars(&__efivars, &ops, efi_kobj);
3116aabc
DC
1683 if (error)
1684 goto err_put;
76b53f7c
MW
1685
1686 /* Don't forget the systab entry */
1687 error = sysfs_create_group(efi_kobj, &efi_subsys_attr_group);
1688 if (error) {
1689 printk(KERN_ERR
1690 "efivars: Sysfs attribute export failed with error %d.\n",
1691 error);
3116aabc 1692 goto err_unregister;
76b53f7c 1693 }
1da177e4 1694
3116aabc
DC
1695 return 0;
1696
1697err_unregister:
1698 unregister_efivars(&__efivars);
1699err_put:
1700 kobject_put(efi_kobj);
1da177e4
LT
1701 return error;
1702}
1703
1704static void __exit
1705efivars_exit(void)
1706{
aabb6e15
RD
1707 if (efi_enabled) {
1708 unregister_efivars(&__efivars);
1709 kobject_put(efi_kobj);
1710 }
1da177e4
LT
1711}
1712
1713module_init(efivars_init);
1714module_exit(efivars_exit);
1715