2 * Copyright (C) 2012 Red Hat, Inc.
3 * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/ctype.h>
11 #include <linux/efi.h>
13 #include <linux/module.h>
14 #include <linux/pagemap.h>
15 #include <linux/ucs2_string.h>
16 #include <linux/slab.h>
17 #include <linux/magic.h>
21 LIST_HEAD(efivarfs_list
);
23 static void efivarfs_evict_inode(struct inode
*inode
)
28 static const struct super_operations efivarfs_ops
= {
29 .statfs
= simple_statfs
,
30 .drop_inode
= generic_delete_inode
,
31 .evict_inode
= efivarfs_evict_inode
,
34 static struct super_block
*efivarfs_sb
;
37 * Compare two efivarfs file names.
39 * An efivarfs filename is composed of two parts,
41 * 1. A case-sensitive variable name
42 * 2. A case-insensitive GUID
44 * So we need to perform a case-sensitive match on part 1 and a
45 * case-insensitive match on part 2.
47 static int efivarfs_d_compare(const struct dentry
*dentry
,
48 unsigned int len
, const char *str
,
49 const struct qstr
*name
)
51 int guid
= len
- EFI_VARIABLE_GUID_LEN
;
56 /* Case-sensitive compare for the variable name */
57 if (memcmp(str
, name
->name
, guid
))
60 /* Case-insensitive compare for the GUID */
61 return strncasecmp(name
->name
+ guid
, str
+ guid
, EFI_VARIABLE_GUID_LEN
);
64 static int efivarfs_d_hash(const struct dentry
*dentry
, struct qstr
*qstr
)
66 unsigned long hash
= init_name_hash(dentry
);
67 const unsigned char *s
= qstr
->name
;
68 unsigned int len
= qstr
->len
;
70 if (!efivarfs_valid_name(s
, len
))
73 while (len
-- > EFI_VARIABLE_GUID_LEN
)
74 hash
= partial_name_hash(*s
++, hash
);
76 /* GUID is case-insensitive. */
78 hash
= partial_name_hash(tolower(*s
++), hash
);
80 qstr
->hash
= end_name_hash(hash
);
84 static const struct dentry_operations efivarfs_d_ops
= {
85 .d_compare
= efivarfs_d_compare
,
86 .d_hash
= efivarfs_d_hash
,
87 .d_delete
= always_delete_dentry
,
90 static struct dentry
*efivarfs_alloc_dentry(struct dentry
*parent
, char *name
)
99 err
= efivarfs_d_hash(parent
, &q
);
103 d
= d_alloc(parent
, &q
);
107 return ERR_PTR(-ENOMEM
);
110 static int efivarfs_callback(efi_char16_t
*name16
, efi_guid_t vendor
,
111 unsigned long name_size
, void *data
)
113 struct super_block
*sb
= (struct super_block
*)data
;
114 struct efivar_entry
*entry
;
115 struct inode
*inode
= NULL
;
116 struct dentry
*dentry
, *root
= sb
->s_root
;
117 unsigned long size
= 0;
121 bool is_removable
= false;
123 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
127 memcpy(entry
->var
.VariableName
, name16
, name_size
);
128 memcpy(&(entry
->var
.VendorGuid
), &vendor
, sizeof(efi_guid_t
));
130 len
= ucs2_utf8size(entry
->var
.VariableName
);
132 /* name, plus '-', plus GUID, plus NUL*/
133 name
= kmalloc(len
+ 1 + EFI_VARIABLE_GUID_LEN
+ 1, GFP_KERNEL
);
137 ucs2_as_utf8(name
, entry
->var
.VariableName
, len
);
139 if (efivar_variable_is_removable(entry
->var
.VendorGuid
, name
, len
))
144 efi_guid_to_str(&entry
->var
.VendorGuid
, name
+ len
+ 1);
146 name
[len
+ EFI_VARIABLE_GUID_LEN
+1] = '\0';
148 inode
= efivarfs_get_inode(sb
, d_inode(root
), S_IFREG
| 0644, 0,
153 dentry
= efivarfs_alloc_dentry(root
, name
);
154 if (IS_ERR(dentry
)) {
155 err
= PTR_ERR(dentry
);
159 efivar_entry_size(entry
, &size
);
160 err
= efivar_entry_add(entry
, &efivarfs_list
);
164 /* copied by the above to local storage in the dentry. */
168 inode
->i_private
= entry
;
169 i_size_write(inode
, size
+ sizeof(entry
->var
.Attributes
));
171 d_add(dentry
, inode
);
184 static int efivarfs_destroy(struct efivar_entry
*entry
, void *data
)
186 int err
= efivar_entry_remove(entry
);
194 static int efivarfs_fill_super(struct super_block
*sb
, void *data
, int silent
)
196 struct inode
*inode
= NULL
;
202 sb
->s_maxbytes
= MAX_LFS_FILESIZE
;
203 sb
->s_blocksize
= PAGE_SIZE
;
204 sb
->s_blocksize_bits
= PAGE_SHIFT
;
205 sb
->s_magic
= EFIVARFS_MAGIC
;
206 sb
->s_op
= &efivarfs_ops
;
207 sb
->s_d_op
= &efivarfs_d_ops
;
210 inode
= efivarfs_get_inode(sb
, NULL
, S_IFDIR
| 0755, 0, true);
213 inode
->i_op
= &efivarfs_dir_inode_operations
;
215 root
= d_make_root(inode
);
220 INIT_LIST_HEAD(&efivarfs_list
);
222 err
= efivar_init(efivarfs_callback
, (void *)sb
, true, &efivarfs_list
);
224 __efivar_entry_iter(efivarfs_destroy
, &efivarfs_list
, NULL
, NULL
);
229 static struct dentry
*efivarfs_mount(struct file_system_type
*fs_type
,
230 int flags
, const char *dev_name
, void *data
)
232 return mount_single(fs_type
, flags
, data
, efivarfs_fill_super
);
235 static void efivarfs_kill_sb(struct super_block
*sb
)
237 kill_litter_super(sb
);
240 /* Remove all entries and destroy */
241 __efivar_entry_iter(efivarfs_destroy
, &efivarfs_list
, NULL
, NULL
);
244 static struct file_system_type efivarfs_type
= {
245 .owner
= THIS_MODULE
,
247 .mount
= efivarfs_mount
,
248 .kill_sb
= efivarfs_kill_sb
,
251 static __init
int efivarfs_init(void)
253 if (!efi_enabled(EFI_RUNTIME_SERVICES
))
256 if (!efivars_kobject())
259 return register_filesystem(&efivarfs_type
);
262 static __exit
void efivarfs_exit(void)
264 unregister_filesystem(&efivarfs_type
);
267 MODULE_AUTHOR("Matthew Garrett, Jeremy Kerr");
268 MODULE_DESCRIPTION("EFI Variable Filesystem");
269 MODULE_LICENSE("GPL");
270 MODULE_ALIAS_FS("efivarfs");
272 module_init(efivarfs_init
);
273 module_exit(efivarfs_exit
);