1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Red Hat, Inc.
4 * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com>
7 #include <linux/ctype.h>
10 #include <linux/fs_context.h>
11 #include <linux/module.h>
12 #include <linux/pagemap.h>
13 #include <linux/ucs2_string.h>
14 #include <linux/slab.h>
15 #include <linux/magic.h>
16 #include <linux/statfs.h>
20 LIST_HEAD(efivarfs_list);
22 static void efivarfs_evict_inode(struct inode *inode)
27 static int efivarfs_statfs(struct dentry *dentry, struct kstatfs *buf)
29 const u32 attr = EFI_VARIABLE_NON_VOLATILE |
30 EFI_VARIABLE_BOOTSERVICE_ACCESS |
31 EFI_VARIABLE_RUNTIME_ACCESS;
32 u64 storage_space, remaining_space, max_variable_size;
35 /* Some UEFI firmware does not implement QueryVariableInfo() */
36 storage_space = remaining_space = 0;
37 if (efi_rt_services_supported(EFI_RT_SUPPORTED_QUERY_VARIABLE_INFO)) {
38 status = efivar_query_variable_info(attr, &storage_space,
41 if (status != EFI_SUCCESS && status != EFI_UNSUPPORTED)
42 pr_warn_ratelimited("query_variable_info() failed: 0x%lx\n",
47 * This is not a normal filesystem, so no point in pretending it has a block
48 * size; we declare f_bsize to 1, so that we can then report the exact value
49 * sent by EFI QueryVariableInfo in f_blocks and f_bfree
52 buf->f_namelen = NAME_MAX;
53 buf->f_blocks = storage_space;
54 buf->f_bfree = remaining_space;
55 buf->f_type = dentry->d_sb->s_magic;
58 * In f_bavail we declare the free space that the kernel will allow writing
59 * when the storage_paranoia x86 quirk is active. To use more, users
60 * should boot the kernel with efi_no_storage_paranoia.
62 if (remaining_space > efivar_reserved_space())
63 buf->f_bavail = remaining_space - efivar_reserved_space();
69 static const struct super_operations efivarfs_ops = {
70 .statfs = efivarfs_statfs,
71 .drop_inode = generic_delete_inode,
72 .evict_inode = efivarfs_evict_inode,
76 * Compare two efivarfs file names.
78 * An efivarfs filename is composed of two parts,
80 * 1. A case-sensitive variable name
81 * 2. A case-insensitive GUID
83 * So we need to perform a case-sensitive match on part 1 and a
84 * case-insensitive match on part 2.
86 static int efivarfs_d_compare(const struct dentry *dentry,
87 unsigned int len, const char *str,
88 const struct qstr *name)
90 int guid = len - EFI_VARIABLE_GUID_LEN;
95 /* Case-sensitive compare for the variable name */
96 if (memcmp(str, name->name, guid))
99 /* Case-insensitive compare for the GUID */
100 return strncasecmp(name->name + guid, str + guid, EFI_VARIABLE_GUID_LEN);
103 static int efivarfs_d_hash(const struct dentry *dentry, struct qstr *qstr)
105 unsigned long hash = init_name_hash(dentry);
106 const unsigned char *s = qstr->name;
107 unsigned int len = qstr->len;
109 if (!efivarfs_valid_name(s, len))
112 while (len-- > EFI_VARIABLE_GUID_LEN)
113 hash = partial_name_hash(*s++, hash);
115 /* GUID is case-insensitive. */
117 hash = partial_name_hash(tolower(*s++), hash);
119 qstr->hash = end_name_hash(hash);
123 static const struct dentry_operations efivarfs_d_ops = {
124 .d_compare = efivarfs_d_compare,
125 .d_hash = efivarfs_d_hash,
126 .d_delete = always_delete_dentry,
129 static struct dentry *efivarfs_alloc_dentry(struct dentry *parent, char *name)
136 q.len = strlen(name);
138 err = efivarfs_d_hash(parent, &q);
142 d = d_alloc(parent, &q);
146 return ERR_PTR(-ENOMEM);
149 static int efivarfs_callback(efi_char16_t *name16, efi_guid_t vendor,
150 unsigned long name_size, void *data)
152 struct super_block *sb = (struct super_block *)data;
153 struct efivar_entry *entry;
154 struct inode *inode = NULL;
155 struct dentry *dentry, *root = sb->s_root;
156 unsigned long size = 0;
160 bool is_removable = false;
162 if (guid_equal(&vendor, &LINUX_EFI_RANDOM_SEED_TABLE_GUID))
165 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
169 memcpy(entry->var.VariableName, name16, name_size);
170 memcpy(&(entry->var.VendorGuid), &vendor, sizeof(efi_guid_t));
172 len = ucs2_utf8size(entry->var.VariableName);
174 /* name, plus '-', plus GUID, plus NUL*/
175 name = kmalloc(len + 1 + EFI_VARIABLE_GUID_LEN + 1, GFP_KERNEL);
179 ucs2_as_utf8(name, entry->var.VariableName, len);
181 if (efivar_variable_is_removable(entry->var.VendorGuid, name, len))
186 efi_guid_to_str(&entry->var.VendorGuid, name + len + 1);
188 name[len + EFI_VARIABLE_GUID_LEN+1] = '\0';
190 /* replace invalid slashes like kobject_set_name_vargs does for /sys/firmware/efi/vars. */
191 strreplace(name, '/', '!');
193 inode = efivarfs_get_inode(sb, d_inode(root), S_IFREG | 0644, 0,
198 dentry = efivarfs_alloc_dentry(root, name);
199 if (IS_ERR(dentry)) {
200 err = PTR_ERR(dentry);
204 __efivar_entry_get(entry, NULL, &size, NULL);
205 __efivar_entry_add(entry, &efivarfs_list);
207 /* copied by the above to local storage in the dentry. */
211 inode->i_private = entry;
212 i_size_write(inode, size + sizeof(entry->var.Attributes));
214 d_add(dentry, inode);
227 static int efivarfs_destroy(struct efivar_entry *entry, void *data)
229 efivar_entry_remove(entry);
234 static int efivarfs_fill_super(struct super_block *sb, struct fs_context *fc)
236 struct inode *inode = NULL;
240 if (!efivar_is_available())
243 sb->s_maxbytes = MAX_LFS_FILESIZE;
244 sb->s_blocksize = PAGE_SIZE;
245 sb->s_blocksize_bits = PAGE_SHIFT;
246 sb->s_magic = EFIVARFS_MAGIC;
247 sb->s_op = &efivarfs_ops;
248 sb->s_d_op = &efivarfs_d_ops;
251 if (!efivar_supports_writes())
252 sb->s_flags |= SB_RDONLY;
254 inode = efivarfs_get_inode(sb, NULL, S_IFDIR | 0755, 0, true);
257 inode->i_op = &efivarfs_dir_inode_operations;
259 root = d_make_root(inode);
264 INIT_LIST_HEAD(&efivarfs_list);
266 err = efivar_init(efivarfs_callback, (void *)sb, true, &efivarfs_list);
268 efivar_entry_iter(efivarfs_destroy, &efivarfs_list, NULL);
273 static int efivarfs_get_tree(struct fs_context *fc)
275 return get_tree_single(fc, efivarfs_fill_super);
278 static const struct fs_context_operations efivarfs_context_ops = {
279 .get_tree = efivarfs_get_tree,
282 static int efivarfs_init_fs_context(struct fs_context *fc)
284 fc->ops = &efivarfs_context_ops;
288 static void efivarfs_kill_sb(struct super_block *sb)
290 kill_litter_super(sb);
292 if (!efivar_is_available())
295 /* Remove all entries and destroy */
296 efivar_entry_iter(efivarfs_destroy, &efivarfs_list, NULL);
299 static struct file_system_type efivarfs_type = {
300 .owner = THIS_MODULE,
302 .init_fs_context = efivarfs_init_fs_context,
303 .kill_sb = efivarfs_kill_sb,
306 static __init int efivarfs_init(void)
308 return register_filesystem(&efivarfs_type);
311 static __exit void efivarfs_exit(void)
313 unregister_filesystem(&efivarfs_type);
316 MODULE_AUTHOR("Matthew Garrett, Jeremy Kerr");
317 MODULE_DESCRIPTION("EFI Variable Filesystem");
318 MODULE_LICENSE("GPL");
319 MODULE_ALIAS_FS("efivarfs");
321 module_init(efivarfs_init);
322 module_exit(efivarfs_exit);