1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Red Hat, Inc.
9 #include <linux/ctype.h>
10 #include <linux/slab.h>
11 #include <linux/uuid.h>
15 struct inode *efivarfs_get_inode(struct super_block *sb,
16 const struct inode *dir, int mode,
17 dev_t dev, bool is_removable)
19 struct inode *inode = new_inode(sb);
22 inode->i_ino = get_next_ino();
24 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
25 inode->i_flags = is_removable ? 0 : S_IMMUTABLE;
26 switch (mode & S_IFMT) {
28 inode->i_fop = &efivarfs_file_operations;
31 inode->i_op = &efivarfs_dir_inode_operations;
32 inode->i_fop = &simple_dir_operations;
41 * Return true if 'str' is a valid efivarfs filename of the form,
43 * VariableName-12345678-1234-1234-1234-1234567891bc
45 bool efivarfs_valid_name(const char *str, int len)
47 const char *s = str + len - EFI_VARIABLE_GUID_LEN;
50 * We need a GUID, plus at least one letter for the variable name,
51 * plus the '-' separator
53 if (len < EFI_VARIABLE_GUID_LEN + 2)
56 /* GUID must be preceded by a '-' */
61 * Validate that 's' is of the correct format, e.g.
63 * 12345678-1234-1234-1234-123456789abc
65 return uuid_is_valid(s);
68 static int efivarfs_create(struct inode *dir, struct dentry *dentry,
69 umode_t mode, bool excl)
71 struct inode *inode = NULL;
72 struct efivar_entry *var;
73 int namelen, i = 0, err = 0;
74 bool is_removable = false;
76 if (!efivarfs_valid_name(dentry->d_name.name, dentry->d_name.len))
79 var = kzalloc(sizeof(struct efivar_entry), GFP_KERNEL);
83 /* length of the variable name itself: remove GUID and separator */
84 namelen = dentry->d_name.len - EFI_VARIABLE_GUID_LEN - 1;
86 err = guid_parse(dentry->d_name.name + namelen + 1, &var->var.VendorGuid);
90 if (efivar_variable_is_removable(var->var.VendorGuid,
91 dentry->d_name.name, namelen))
94 inode = efivarfs_get_inode(dir->i_sb, dir, mode, 0, is_removable);
100 for (i = 0; i < namelen; i++)
101 var->var.VariableName[i] = dentry->d_name.name[i];
103 var->var.VariableName[i] = '\0';
105 inode->i_private = var;
107 err = efivar_entry_add(var, &efivarfs_list);
111 d_instantiate(dentry, inode);
122 static int efivarfs_unlink(struct inode *dir, struct dentry *dentry)
124 struct efivar_entry *var = d_inode(dentry)->i_private;
126 if (efivar_entry_delete(var))
129 drop_nlink(d_inode(dentry));
134 const struct inode_operations efivarfs_dir_inode_operations = {
135 .lookup = simple_lookup,
136 .unlink = efivarfs_unlink,
137 .create = efivarfs_create,