1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Red Hat, Inc.
7 #include <linux/ctype.h>
10 #include <linux/fs_context.h>
11 #include <linux/fs_parser.h>
12 #include <linux/module.h>
13 #include <linux/pagemap.h>
14 #include <linux/ucs2_string.h>
15 #include <linux/slab.h>
16 #include <linux/magic.h>
17 #include <linux/statfs.h>
18 #include <linux/notifier.h>
19 #include <linux/printk.h>
23 static int efivarfs_ops_notifier(struct notifier_block *nb, unsigned long event,
26 struct efivarfs_fs_info *sfi = container_of(nb, struct efivarfs_fs_info, nb);
29 case EFIVAR_OPS_RDONLY:
30 sfi->sb->s_flags |= SB_RDONLY;
33 sfi->sb->s_flags &= ~SB_RDONLY;
42 static void efivarfs_evict_inode(struct inode *inode)
47 static int efivarfs_show_options(struct seq_file *m, struct dentry *root)
49 struct super_block *sb = root->d_sb;
50 struct efivarfs_fs_info *sbi = sb->s_fs_info;
51 struct efivarfs_mount_opts *opts = &sbi->mount_opts;
53 if (!uid_eq(opts->uid, GLOBAL_ROOT_UID))
54 seq_printf(m, ",uid=%u",
55 from_kuid_munged(&init_user_ns, opts->uid));
56 if (!gid_eq(opts->gid, GLOBAL_ROOT_GID))
57 seq_printf(m, ",gid=%u",
58 from_kgid_munged(&init_user_ns, opts->gid));
62 static int efivarfs_statfs(struct dentry *dentry, struct kstatfs *buf)
64 const u32 attr = EFI_VARIABLE_NON_VOLATILE |
65 EFI_VARIABLE_BOOTSERVICE_ACCESS |
66 EFI_VARIABLE_RUNTIME_ACCESS;
67 u64 storage_space, remaining_space, max_variable_size;
68 u64 id = huge_encode_dev(dentry->d_sb->s_dev);
71 /* Some UEFI firmware does not implement QueryVariableInfo() */
72 storage_space = remaining_space = 0;
73 if (efi_rt_services_supported(EFI_RT_SUPPORTED_QUERY_VARIABLE_INFO)) {
74 status = efivar_query_variable_info(attr, &storage_space,
77 if (status != EFI_SUCCESS && status != EFI_UNSUPPORTED)
78 pr_warn_ratelimited("query_variable_info() failed: 0x%lx\n",
83 * This is not a normal filesystem, so no point in pretending it has a block
84 * size; we declare f_bsize to 1, so that we can then report the exact value
85 * sent by EFI QueryVariableInfo in f_blocks and f_bfree
88 buf->f_namelen = NAME_MAX;
89 buf->f_blocks = storage_space;
90 buf->f_bfree = remaining_space;
91 buf->f_type = dentry->d_sb->s_magic;
92 buf->f_fsid = u64_to_fsid(id);
95 * In f_bavail we declare the free space that the kernel will allow writing
96 * when the storage_paranoia x86 quirk is active. To use more, users
97 * should boot the kernel with efi_no_storage_paranoia.
99 if (remaining_space > efivar_reserved_space())
100 buf->f_bavail = remaining_space - efivar_reserved_space();
106 static const struct super_operations efivarfs_ops = {
107 .statfs = efivarfs_statfs,
108 .drop_inode = generic_delete_inode,
109 .evict_inode = efivarfs_evict_inode,
110 .show_options = efivarfs_show_options,
114 * Compare two efivarfs file names.
116 * An efivarfs filename is composed of two parts,
118 * 1. A case-sensitive variable name
119 * 2. A case-insensitive GUID
121 * So we need to perform a case-sensitive match on part 1 and a
122 * case-insensitive match on part 2.
124 static int efivarfs_d_compare(const struct dentry *dentry,
125 unsigned int len, const char *str,
126 const struct qstr *name)
128 int guid = len - EFI_VARIABLE_GUID_LEN;
130 if (name->len != len)
133 /* Case-sensitive compare for the variable name */
134 if (memcmp(str, name->name, guid))
137 /* Case-insensitive compare for the GUID */
138 return strncasecmp(name->name + guid, str + guid, EFI_VARIABLE_GUID_LEN);
141 static int efivarfs_d_hash(const struct dentry *dentry, struct qstr *qstr)
143 unsigned long hash = init_name_hash(dentry);
144 const unsigned char *s = qstr->name;
145 unsigned int len = qstr->len;
147 while (len-- > EFI_VARIABLE_GUID_LEN)
148 hash = partial_name_hash(*s++, hash);
150 /* GUID is case-insensitive. */
152 hash = partial_name_hash(tolower(*s++), hash);
154 qstr->hash = end_name_hash(hash);
158 static const struct dentry_operations efivarfs_d_ops = {
159 .d_compare = efivarfs_d_compare,
160 .d_hash = efivarfs_d_hash,
161 .d_delete = always_delete_dentry,
164 static struct dentry *efivarfs_alloc_dentry(struct dentry *parent, char *name)
171 q.len = strlen(name);
173 err = efivarfs_d_hash(parent, &q);
177 d = d_alloc(parent, &q);
181 return ERR_PTR(-ENOMEM);
184 static int efivarfs_callback(efi_char16_t *name16, efi_guid_t vendor,
185 unsigned long name_size, void *data,
186 struct list_head *list)
188 struct super_block *sb = (struct super_block *)data;
189 struct efivar_entry *entry;
190 struct inode *inode = NULL;
191 struct dentry *dentry, *root = sb->s_root;
192 unsigned long size = 0;
196 bool is_removable = false;
198 if (guid_equal(&vendor, &LINUX_EFI_RANDOM_SEED_TABLE_GUID))
201 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
205 memcpy(entry->var.VariableName, name16, name_size);
206 memcpy(&(entry->var.VendorGuid), &vendor, sizeof(efi_guid_t));
208 len = ucs2_utf8size(entry->var.VariableName);
210 /* name, plus '-', plus GUID, plus NUL*/
211 name = kmalloc(len + 1 + EFI_VARIABLE_GUID_LEN + 1, GFP_KERNEL);
215 ucs2_as_utf8(name, entry->var.VariableName, len);
217 if (efivar_variable_is_removable(entry->var.VendorGuid, name, len))
222 efi_guid_to_str(&entry->var.VendorGuid, name + len + 1);
224 name[len + EFI_VARIABLE_GUID_LEN+1] = '\0';
226 /* replace invalid slashes like kobject_set_name_vargs does for /sys/firmware/efi/vars. */
227 strreplace(name, '/', '!');
229 inode = efivarfs_get_inode(sb, d_inode(root), S_IFREG | 0644, 0,
234 dentry = efivarfs_alloc_dentry(root, name);
235 if (IS_ERR(dentry)) {
236 err = PTR_ERR(dentry);
240 __efivar_entry_get(entry, NULL, &size, NULL);
241 __efivar_entry_add(entry, list);
243 /* copied by the above to local storage in the dentry. */
247 inode->i_private = entry;
248 i_size_write(inode, size + sizeof(entry->var.Attributes));
250 d_add(dentry, inode);
263 static int efivarfs_destroy(struct efivar_entry *entry, void *data)
265 efivar_entry_remove(entry);
274 static const struct fs_parameter_spec efivarfs_parameters[] = {
275 fsparam_uid("uid", Opt_uid),
276 fsparam_gid("gid", Opt_gid),
280 static int efivarfs_parse_param(struct fs_context *fc, struct fs_parameter *param)
282 struct efivarfs_fs_info *sbi = fc->s_fs_info;
283 struct efivarfs_mount_opts *opts = &sbi->mount_opts;
284 struct fs_parse_result result;
287 opt = fs_parse(fc, efivarfs_parameters, param, &result);
293 opts->uid = result.uid;
296 opts->gid = result.gid;
305 static int efivarfs_fill_super(struct super_block *sb, struct fs_context *fc)
307 struct efivarfs_fs_info *sfi = sb->s_fs_info;
308 struct inode *inode = NULL;
312 sb->s_maxbytes = MAX_LFS_FILESIZE;
313 sb->s_blocksize = PAGE_SIZE;
314 sb->s_blocksize_bits = PAGE_SHIFT;
315 sb->s_magic = EFIVARFS_MAGIC;
316 sb->s_op = &efivarfs_ops;
317 sb->s_d_op = &efivarfs_d_ops;
320 if (!efivar_supports_writes())
321 sb->s_flags |= SB_RDONLY;
323 inode = efivarfs_get_inode(sb, NULL, S_IFDIR | 0755, 0, true);
326 inode->i_op = &efivarfs_dir_inode_operations;
328 root = d_make_root(inode);
334 sfi->nb.notifier_call = efivarfs_ops_notifier;
335 err = blocking_notifier_chain_register(&efivar_ops_nh, &sfi->nb);
339 return efivar_init(efivarfs_callback, sb, &sfi->efivarfs_list);
342 static int efivarfs_get_tree(struct fs_context *fc)
344 return get_tree_single(fc, efivarfs_fill_super);
347 static int efivarfs_reconfigure(struct fs_context *fc)
349 if (!efivar_supports_writes() && !(fc->sb_flags & SB_RDONLY)) {
350 pr_err("Firmware does not support SetVariableRT. Can not remount with rw\n");
357 static const struct fs_context_operations efivarfs_context_ops = {
358 .get_tree = efivarfs_get_tree,
359 .parse_param = efivarfs_parse_param,
360 .reconfigure = efivarfs_reconfigure,
363 static int efivarfs_init_fs_context(struct fs_context *fc)
365 struct efivarfs_fs_info *sfi;
367 if (!efivar_is_available())
370 sfi = kzalloc(sizeof(*sfi), GFP_KERNEL);
374 INIT_LIST_HEAD(&sfi->efivarfs_list);
376 sfi->mount_opts.uid = GLOBAL_ROOT_UID;
377 sfi->mount_opts.gid = GLOBAL_ROOT_GID;
380 fc->ops = &efivarfs_context_ops;
384 static void efivarfs_kill_sb(struct super_block *sb)
386 struct efivarfs_fs_info *sfi = sb->s_fs_info;
388 blocking_notifier_chain_unregister(&efivar_ops_nh, &sfi->nb);
389 kill_litter_super(sb);
391 /* Remove all entries and destroy */
392 efivar_entry_iter(efivarfs_destroy, &sfi->efivarfs_list, NULL);
396 static struct file_system_type efivarfs_type = {
397 .owner = THIS_MODULE,
399 .init_fs_context = efivarfs_init_fs_context,
400 .kill_sb = efivarfs_kill_sb,
401 .parameters = efivarfs_parameters,
404 static __init int efivarfs_init(void)
406 return register_filesystem(&efivarfs_type);
409 static __exit void efivarfs_exit(void)
411 unregister_filesystem(&efivarfs_type);
414 MODULE_AUTHOR("Matthew Garrett, Jeremy Kerr");
415 MODULE_DESCRIPTION("EFI Variable Filesystem");
416 MODULE_LICENSE("GPL");
417 MODULE_ALIAS_FS("efivarfs");
419 module_init(efivarfs_init);
420 module_exit(efivarfs_exit);