Linux-libre 3.16.85-gnu
[librecmc/linux-libre.git] / drivers / firmware / efi / efivars.c
1 /*
2  * Originally from 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/efi.h>
69 #include <linux/module.h>
70 #include <linux/slab.h>
71 #include <linux/ucs2_string.h>
72 #include <linux/compat.h>
73
74 #define EFIVARS_VERSION "0.08"
75 #define EFIVARS_DATE "2004-May-17"
76
77 MODULE_AUTHOR("Matt Domsch <Matt_Domsch@Dell.com>");
78 MODULE_DESCRIPTION("sysfs interface to EFI Variables");
79 MODULE_LICENSE("GPL");
80 MODULE_VERSION(EFIVARS_VERSION);
81
82 LIST_HEAD(efivar_sysfs_list);
83 EXPORT_SYMBOL_GPL(efivar_sysfs_list);
84
85 static struct kset *efivars_kset;
86
87 static struct bin_attribute *efivars_new_var;
88 static struct bin_attribute *efivars_del_var;
89
90 struct compat_efi_variable {
91         efi_char16_t  VariableName[EFI_VAR_NAME_LEN/sizeof(efi_char16_t)];
92         efi_guid_t    VendorGuid;
93         __u32         DataSize;
94         __u8          Data[1024];
95         __u32         Status;
96         __u32         Attributes;
97 } __packed;
98
99 struct efivar_attribute {
100         struct attribute attr;
101         ssize_t (*show) (struct efivar_entry *entry, char *buf);
102         ssize_t (*store)(struct efivar_entry *entry, const char *buf, size_t count);
103 };
104
105 #define EFIVAR_ATTR(_name, _mode, _show, _store) \
106 struct efivar_attribute efivar_attr_##_name = { \
107         .attr = {.name = __stringify(_name), .mode = _mode}, \
108         .show = _show, \
109         .store = _store, \
110 };
111
112 #define to_efivar_attr(_attr) container_of(_attr, struct efivar_attribute, attr)
113 #define to_efivar_entry(obj)  container_of(obj, struct efivar_entry, kobj)
114
115 /*
116  * Prototype for sysfs creation function
117  */
118 static int
119 efivar_create_sysfs_entry(struct efivar_entry *new_var);
120
121 static ssize_t
122 efivar_guid_read(struct efivar_entry *entry, char *buf)
123 {
124         struct efi_variable *var = &entry->var;
125         char *str = buf;
126
127         if (!entry || !buf)
128                 return 0;
129
130         efi_guid_unparse(&var->VendorGuid, str);
131         str += strlen(str);
132         str += sprintf(str, "\n");
133
134         return str - buf;
135 }
136
137 static ssize_t
138 efivar_attr_read(struct efivar_entry *entry, char *buf)
139 {
140         struct efi_variable *var = &entry->var;
141         char *str = buf;
142
143         if (!entry || !buf)
144                 return -EINVAL;
145
146         var->DataSize = 1024;
147         if (efivar_entry_get(entry, &var->Attributes, &var->DataSize, var->Data))
148                 return -EIO;
149
150         if (var->Attributes & EFI_VARIABLE_NON_VOLATILE)
151                 str += sprintf(str, "EFI_VARIABLE_NON_VOLATILE\n");
152         if (var->Attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS)
153                 str += sprintf(str, "EFI_VARIABLE_BOOTSERVICE_ACCESS\n");
154         if (var->Attributes & EFI_VARIABLE_RUNTIME_ACCESS)
155                 str += sprintf(str, "EFI_VARIABLE_RUNTIME_ACCESS\n");
156         if (var->Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD)
157                 str += sprintf(str, "EFI_VARIABLE_HARDWARE_ERROR_RECORD\n");
158         if (var->Attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS)
159                 str += sprintf(str,
160                         "EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS\n");
161         if (var->Attributes &
162                         EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS)
163                 str += sprintf(str,
164                         "EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS\n");
165         if (var->Attributes & EFI_VARIABLE_APPEND_WRITE)
166                 str += sprintf(str, "EFI_VARIABLE_APPEND_WRITE\n");
167         return str - buf;
168 }
169
170 static ssize_t
171 efivar_size_read(struct efivar_entry *entry, char *buf)
172 {
173         struct efi_variable *var = &entry->var;
174         char *str = buf;
175
176         if (!entry || !buf)
177                 return -EINVAL;
178
179         var->DataSize = 1024;
180         if (efivar_entry_get(entry, &var->Attributes, &var->DataSize, var->Data))
181                 return -EIO;
182
183         str += sprintf(str, "0x%lx\n", var->DataSize);
184         return str - buf;
185 }
186
187 static ssize_t
188 efivar_data_read(struct efivar_entry *entry, char *buf)
189 {
190         struct efi_variable *var = &entry->var;
191
192         if (!entry || !buf)
193                 return -EINVAL;
194
195         var->DataSize = 1024;
196         if (efivar_entry_get(entry, &var->Attributes, &var->DataSize, var->Data))
197                 return -EIO;
198
199         memcpy(buf, var->Data, var->DataSize);
200         return var->DataSize;
201 }
202
203 static inline int
204 sanity_check(struct efi_variable *var, efi_char16_t *name, efi_guid_t vendor,
205              unsigned long size, u32 attributes, u8 *data)
206 {
207         /*
208          * If only updating the variable data, then the name
209          * and guid should remain the same
210          */
211         if (memcmp(name, var->VariableName, sizeof(var->VariableName)) ||
212                 efi_guidcmp(vendor, var->VendorGuid)) {
213                 printk(KERN_ERR "efivars: Cannot edit the wrong variable!\n");
214                 return -EINVAL;
215         }
216
217         if ((size <= 0) || (attributes == 0)){
218                 printk(KERN_ERR "efivars: DataSize & Attributes must be valid!\n");
219                 return -EINVAL;
220         }
221
222         if ((attributes & ~EFI_VARIABLE_MASK) != 0 ||
223             efivar_validate(vendor, name, data, size) == false) {
224                 printk(KERN_ERR "efivars: Malformed variable content\n");
225                 return -EINVAL;
226         }
227
228         return 0;
229 }
230
231 static inline bool is_compat(void)
232 {
233         if (IS_ENABLED(CONFIG_COMPAT) && is_compat_task())
234                 return true;
235
236         return false;
237 }
238
239 static void
240 copy_out_compat(struct efi_variable *dst, struct compat_efi_variable *src)
241 {
242         memcpy(dst->VariableName, src->VariableName, EFI_VAR_NAME_LEN);
243         memcpy(dst->Data, src->Data, sizeof(src->Data));
244
245         dst->VendorGuid = src->VendorGuid;
246         dst->DataSize = src->DataSize;
247         dst->Attributes = src->Attributes;
248 }
249
250 /*
251  * We allow each variable to be edited via rewriting the
252  * entire efi variable structure.
253  */
254 static ssize_t
255 efivar_store_raw(struct efivar_entry *entry, const char *buf, size_t count)
256 {
257         struct efi_variable *new_var, *var = &entry->var;
258         efi_char16_t *name;
259         unsigned long size;
260         efi_guid_t vendor;
261         u32 attributes;
262         u8 *data;
263         int err;
264
265         if (is_compat()) {
266                 struct compat_efi_variable *compat;
267
268                 if (count != sizeof(*compat))
269                         return -EINVAL;
270
271                 compat = (struct compat_efi_variable *)buf;
272                 attributes = compat->Attributes;
273                 vendor = compat->VendorGuid;
274                 name = compat->VariableName;
275                 size = compat->DataSize;
276                 data = compat->Data;
277
278                 err = sanity_check(var, name, vendor, size, attributes, data);
279                 if (err)
280                         return err;
281
282                 copy_out_compat(&entry->var, compat);
283         } else {
284                 if (count != sizeof(struct efi_variable))
285                         return -EINVAL;
286
287                 new_var = (struct efi_variable *)buf;
288
289                 attributes = new_var->Attributes;
290                 vendor = new_var->VendorGuid;
291                 name = new_var->VariableName;
292                 size = new_var->DataSize;
293                 data = new_var->Data;
294
295                 err = sanity_check(var, name, vendor, size, attributes, data);
296                 if (err)
297                         return err;
298
299                 memcpy(&entry->var, new_var, count);
300         }
301
302         err = efivar_entry_set(entry, attributes, size, data, NULL);
303         if (err) {
304                 printk(KERN_WARNING "efivars: set_variable() failed: status=%d\n", err);
305                 return -EIO;
306         }
307
308         return count;
309 }
310
311 static ssize_t
312 efivar_show_raw(struct efivar_entry *entry, char *buf)
313 {
314         struct efi_variable *var = &entry->var;
315         struct compat_efi_variable *compat;
316         size_t size;
317
318         if (!entry || !buf)
319                 return 0;
320
321         var->DataSize = 1024;
322         if (efivar_entry_get(entry, &entry->var.Attributes,
323                              &entry->var.DataSize, entry->var.Data))
324                 return -EIO;
325
326         if (is_compat()) {
327                 compat = (struct compat_efi_variable *)buf;
328
329                 size = sizeof(*compat);
330                 memcpy(compat->VariableName, var->VariableName,
331                         EFI_VAR_NAME_LEN);
332                 memcpy(compat->Data, var->Data, sizeof(compat->Data));
333
334                 compat->VendorGuid = var->VendorGuid;
335                 compat->DataSize = var->DataSize;
336                 compat->Attributes = var->Attributes;
337         } else {
338                 size = sizeof(*var);
339                 memcpy(buf, var, size);
340         }
341
342         return size;
343 }
344
345 /*
346  * Generic read/write functions that call the specific functions of
347  * the attributes...
348  */
349 static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr,
350                                 char *buf)
351 {
352         struct efivar_entry *var = to_efivar_entry(kobj);
353         struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
354         ssize_t ret = -EIO;
355
356         if (!capable(CAP_SYS_ADMIN))
357                 return -EACCES;
358
359         if (efivar_attr->show) {
360                 ret = efivar_attr->show(var, buf);
361         }
362         return ret;
363 }
364
365 static ssize_t efivar_attr_store(struct kobject *kobj, struct attribute *attr,
366                                 const char *buf, size_t count)
367 {
368         struct efivar_entry *var = to_efivar_entry(kobj);
369         struct efivar_attribute *efivar_attr = to_efivar_attr(attr);
370         ssize_t ret = -EIO;
371
372         if (!capable(CAP_SYS_ADMIN))
373                 return -EACCES;
374
375         if (efivar_attr->store)
376                 ret = efivar_attr->store(var, buf, count);
377
378         return ret;
379 }
380
381 static const struct sysfs_ops efivar_attr_ops = {
382         .show = efivar_attr_show,
383         .store = efivar_attr_store,
384 };
385
386 static void efivar_release(struct kobject *kobj)
387 {
388         struct efivar_entry *var = container_of(kobj, struct efivar_entry, kobj);
389         kfree(var);
390 }
391
392 static EFIVAR_ATTR(guid, 0400, efivar_guid_read, NULL);
393 static EFIVAR_ATTR(attributes, 0400, efivar_attr_read, NULL);
394 static EFIVAR_ATTR(size, 0400, efivar_size_read, NULL);
395 static EFIVAR_ATTR(data, 0400, efivar_data_read, NULL);
396 static EFIVAR_ATTR(raw_var, 0600, efivar_show_raw, efivar_store_raw);
397
398 static struct attribute *def_attrs[] = {
399         &efivar_attr_guid.attr,
400         &efivar_attr_size.attr,
401         &efivar_attr_attributes.attr,
402         &efivar_attr_data.attr,
403         &efivar_attr_raw_var.attr,
404         NULL,
405 };
406
407 static struct kobj_type efivar_ktype = {
408         .release = efivar_release,
409         .sysfs_ops = &efivar_attr_ops,
410         .default_attrs = def_attrs,
411 };
412
413 static ssize_t efivar_create(struct file *filp, struct kobject *kobj,
414                              struct bin_attribute *bin_attr,
415                              char *buf, loff_t pos, size_t count)
416 {
417         struct compat_efi_variable *compat = (struct compat_efi_variable *)buf;
418         struct efi_variable *new_var = (struct efi_variable *)buf;
419         struct efivar_entry *new_entry;
420         bool need_compat = is_compat();
421         efi_char16_t *name;
422         unsigned long size;
423         u32 attributes;
424         u8 *data;
425         int err;
426
427         if (!capable(CAP_SYS_ADMIN))
428                 return -EACCES;
429
430         if (need_compat) {
431                 if (count != sizeof(*compat))
432                         return -EINVAL;
433
434                 attributes = compat->Attributes;
435                 name = compat->VariableName;
436                 size = compat->DataSize;
437                 data = compat->Data;
438         } else {
439                 if (count != sizeof(*new_var))
440                         return -EINVAL;
441
442                 attributes = new_var->Attributes;
443                 name = new_var->VariableName;
444                 size = new_var->DataSize;
445                 data = new_var->Data;
446         }
447
448         if ((attributes & ~EFI_VARIABLE_MASK) != 0 ||
449             efivar_validate(new_var->VendorGuid, name, data,
450                             size) == false) {
451                 printk(KERN_ERR "efivars: Malformed variable content\n");
452                 return -EINVAL;
453         }
454
455         new_entry = kzalloc(sizeof(*new_entry), GFP_KERNEL);
456         if (!new_entry)
457                 return -ENOMEM;
458
459         if (need_compat)
460                 copy_out_compat(&new_entry->var, compat);
461         else
462                 memcpy(&new_entry->var, new_var, sizeof(*new_var));
463
464         err = efivar_entry_set(new_entry, attributes, size,
465                                data, &efivar_sysfs_list);
466         if (err) {
467                 if (err == -EEXIST)
468                         err = -EINVAL;
469                 goto out;
470         }
471
472         if (efivar_create_sysfs_entry(new_entry)) {
473                 printk(KERN_WARNING "efivars: failed to create sysfs entry.\n");
474                 kfree(new_entry);
475         }
476         return count;
477
478 out:
479         kfree(new_entry);
480         return err;
481 }
482
483 static ssize_t efivar_delete(struct file *filp, struct kobject *kobj,
484                              struct bin_attribute *bin_attr,
485                              char *buf, loff_t pos, size_t count)
486 {
487         struct efi_variable *del_var = (struct efi_variable *)buf;
488         struct compat_efi_variable *compat;
489         struct efivar_entry *entry;
490         efi_char16_t *name;
491         efi_guid_t vendor;
492         int err = 0;
493
494         if (!capable(CAP_SYS_ADMIN))
495                 return -EACCES;
496
497         if (is_compat()) {
498                 if (count != sizeof(*compat))
499                         return -EINVAL;
500
501                 compat = (struct compat_efi_variable *)buf;
502                 name = compat->VariableName;
503                 vendor = compat->VendorGuid;
504         } else {
505                 if (count != sizeof(*del_var))
506                         return -EINVAL;
507
508                 name = del_var->VariableName;
509                 vendor = del_var->VendorGuid;
510         }
511
512         efivar_entry_iter_begin();
513         entry = efivar_entry_find(name, vendor, &efivar_sysfs_list, true);
514         if (!entry)
515                 err = -EINVAL;
516         else if (__efivar_entry_delete(entry))
517                 err = -EIO;
518
519         if (err) {
520                 efivar_entry_iter_end();
521                 return err;
522         }
523
524         if (!entry->scanning) {
525                 efivar_entry_iter_end();
526                 efivar_unregister(entry);
527         } else
528                 efivar_entry_iter_end();
529
530         /* It's dead Jim.... */
531         return count;
532 }
533
534 /**
535  * efivar_create_sysfs_entry - create a new entry in sysfs
536  * @new_var: efivar entry to create
537  *
538  * Returns 1 on failure, 0 on success
539  */
540 static int
541 efivar_create_sysfs_entry(struct efivar_entry *new_var)
542 {
543         int i, short_name_size;
544         char *short_name;
545         unsigned long utf8_name_size;
546         efi_char16_t *variable_name = new_var->var.VariableName;
547
548         /*
549          * Length of the variable bytes in UTF8, plus the '-' separator,
550          * plus the GUID, plus trailing NUL
551          */
552         utf8_name_size = ucs2_utf8size(variable_name);
553         short_name_size = utf8_name_size + 1 + EFI_VARIABLE_GUID_LEN + 1;
554
555         short_name = kmalloc(short_name_size, GFP_KERNEL);
556         if (!short_name)
557                 return 1;
558
559         ucs2_as_utf8(short_name, variable_name, short_name_size);
560
561         /* This is ugly, but necessary to separate one vendor's
562            private variables from another's.         */
563         short_name[utf8_name_size] = '-';
564         efi_guid_unparse(&new_var->var.VendorGuid,
565                          short_name + utf8_name_size + 1);
566
567         new_var->kobj.kset = efivars_kset;
568
569         i = kobject_init_and_add(&new_var->kobj, &efivar_ktype,
570                                    NULL, "%s", short_name);
571         kfree(short_name);
572         if (i)
573                 return 1;
574
575         kobject_uevent(&new_var->kobj, KOBJ_ADD);
576         efivar_entry_add(new_var, &efivar_sysfs_list);
577
578         return 0;
579 }
580
581 static int
582 create_efivars_bin_attributes(void)
583 {
584         struct bin_attribute *attr;
585         int error;
586
587         /* new_var */
588         attr = kzalloc(sizeof(*attr), GFP_KERNEL);
589         if (!attr)
590                 return -ENOMEM;
591
592         attr->attr.name = "new_var";
593         attr->attr.mode = 0200;
594         attr->write = efivar_create;
595         efivars_new_var = attr;
596
597         /* del_var */
598         attr = kzalloc(sizeof(*attr), GFP_KERNEL);
599         if (!attr) {
600                 error = -ENOMEM;
601                 goto out_free;
602         }
603         attr->attr.name = "del_var";
604         attr->attr.mode = 0200;
605         attr->write = efivar_delete;
606         efivars_del_var = attr;
607
608         sysfs_bin_attr_init(efivars_new_var);
609         sysfs_bin_attr_init(efivars_del_var);
610
611         /* Register */
612         error = sysfs_create_bin_file(&efivars_kset->kobj, efivars_new_var);
613         if (error) {
614                 printk(KERN_ERR "efivars: unable to create new_var sysfs file"
615                         " due to error %d\n", error);
616                 goto out_free;
617         }
618
619         error = sysfs_create_bin_file(&efivars_kset->kobj, efivars_del_var);
620         if (error) {
621                 printk(KERN_ERR "efivars: unable to create del_var sysfs file"
622                         " due to error %d\n", error);
623                 sysfs_remove_bin_file(&efivars_kset->kobj, efivars_new_var);
624                 goto out_free;
625         }
626
627         return 0;
628 out_free:
629         kfree(efivars_del_var);
630         efivars_del_var = NULL;
631         kfree(efivars_new_var);
632         efivars_new_var = NULL;
633         return error;
634 }
635
636 static int efivar_update_sysfs_entry(efi_char16_t *name, efi_guid_t vendor,
637                                      unsigned long name_size, void *data)
638 {
639         struct efivar_entry *entry = data;
640
641         if (efivar_entry_find(name, vendor, &efivar_sysfs_list, false))
642                 return 0;
643
644         memcpy(entry->var.VariableName, name, name_size);
645         memcpy(&(entry->var.VendorGuid), &vendor, sizeof(efi_guid_t));
646
647         return 1;
648 }
649
650 static void efivar_update_sysfs_entries(struct work_struct *work)
651 {
652         struct efivar_entry *entry;
653         int err;
654
655         /* Add new sysfs entries */
656         while (1) {
657                 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
658                 if (!entry)
659                         return;
660
661                 err = efivar_init(efivar_update_sysfs_entry, entry,
662                                   true, false, &efivar_sysfs_list);
663                 if (!err)
664                         break;
665
666                 efivar_create_sysfs_entry(entry);
667         }
668
669         kfree(entry);
670 }
671
672 static int efivars_sysfs_callback(efi_char16_t *name, efi_guid_t vendor,
673                                   unsigned long name_size, void *data)
674 {
675         struct efivar_entry *entry;
676
677         entry = kzalloc(sizeof(*entry), GFP_KERNEL);
678         if (!entry)
679                 return -ENOMEM;
680
681         memcpy(entry->var.VariableName, name, name_size);
682         memcpy(&(entry->var.VendorGuid), &vendor, sizeof(efi_guid_t));
683
684         efivar_create_sysfs_entry(entry);
685
686         return 0;
687 }
688
689 static int efivar_sysfs_destroy(struct efivar_entry *entry, void *data)
690 {
691         efivar_entry_remove(entry);
692         efivar_unregister(entry);
693         return 0;
694 }
695
696 static void efivars_sysfs_exit(void)
697 {
698         /* Remove all entries and destroy */
699         __efivar_entry_iter(efivar_sysfs_destroy, &efivar_sysfs_list, NULL, NULL);
700
701         if (efivars_new_var)
702                 sysfs_remove_bin_file(&efivars_kset->kobj, efivars_new_var);
703         if (efivars_del_var)
704                 sysfs_remove_bin_file(&efivars_kset->kobj, efivars_del_var);
705         kfree(efivars_new_var);
706         kfree(efivars_del_var);
707         kset_unregister(efivars_kset);
708 }
709
710 int efivars_sysfs_init(void)
711 {
712         struct kobject *parent_kobj = efivars_kobject();
713         int error = 0;
714
715         if (!efi_enabled(EFI_RUNTIME_SERVICES))
716                 return -ENODEV;
717
718         /* No efivars has been registered yet */
719         if (!parent_kobj)
720                 return 0;
721
722         printk(KERN_INFO "EFI Variables Facility v%s %s\n", EFIVARS_VERSION,
723                EFIVARS_DATE);
724
725         efivars_kset = kset_create_and_add("vars", NULL, parent_kobj);
726         if (!efivars_kset) {
727                 printk(KERN_ERR "efivars: Subsystem registration failed.\n");
728                 return -ENOMEM;
729         }
730
731         efivar_init(efivars_sysfs_callback, NULL, false,
732                     true, &efivar_sysfs_list);
733
734         error = create_efivars_bin_attributes();
735         if (error) {
736                 efivars_sysfs_exit();
737                 return error;
738         }
739
740         INIT_WORK(&efivar_work, efivar_update_sysfs_entries);
741
742         return 0;
743 }
744 EXPORT_SYMBOL_GPL(efivars_sysfs_init);
745
746 module_init(efivars_sysfs_init);
747 module_exit(efivars_sysfs_exit);