super.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. /*
  2. * Copyright (C) 2012 Red Hat, Inc.
  3. * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com>
  4. *
  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.
  8. */
  9. #include <linux/ctype.h>
  10. #include <linux/efi.h>
  11. #include <linux/fs.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 "internal.h"
  18. LIST_HEAD(efivarfs_list);
  19. static void efivarfs_evict_inode(struct inode *inode)
  20. {
  21. clear_inode(inode);
  22. }
  23. static const struct super_operations efivarfs_ops = {
  24. .statfs = simple_statfs,
  25. .drop_inode = generic_delete_inode,
  26. .evict_inode = efivarfs_evict_inode,
  27. .show_options = generic_show_options,
  28. };
  29. static struct super_block *efivarfs_sb;
  30. /*
  31. * Compare two efivarfs file names.
  32. *
  33. * An efivarfs filename is composed of two parts,
  34. *
  35. * 1. A case-sensitive variable name
  36. * 2. A case-insensitive GUID
  37. *
  38. * So we need to perform a case-sensitive match on part 1 and a
  39. * case-insensitive match on part 2.
  40. */
  41. static int efivarfs_d_compare(const struct dentry *dentry,
  42. unsigned int len, const char *str,
  43. const struct qstr *name)
  44. {
  45. int guid = len - EFI_VARIABLE_GUID_LEN;
  46. if (name->len != len)
  47. return 1;
  48. /* Case-sensitive compare for the variable name */
  49. if (memcmp(str, name->name, guid))
  50. return 1;
  51. /* Case-insensitive compare for the GUID */
  52. return strncasecmp(name->name + guid, str + guid, EFI_VARIABLE_GUID_LEN);
  53. }
  54. static int efivarfs_d_hash(const struct dentry *dentry, struct qstr *qstr)
  55. {
  56. unsigned long hash = init_name_hash(dentry);
  57. const unsigned char *s = qstr->name;
  58. unsigned int len = qstr->len;
  59. if (!efivarfs_valid_name(s, len))
  60. return -EINVAL;
  61. while (len-- > EFI_VARIABLE_GUID_LEN)
  62. hash = partial_name_hash(*s++, hash);
  63. /* GUID is case-insensitive. */
  64. while (len--)
  65. hash = partial_name_hash(tolower(*s++), hash);
  66. qstr->hash = end_name_hash(hash);
  67. return 0;
  68. }
  69. static const struct dentry_operations efivarfs_d_ops = {
  70. .d_compare = efivarfs_d_compare,
  71. .d_hash = efivarfs_d_hash,
  72. .d_delete = always_delete_dentry,
  73. };
  74. static struct dentry *efivarfs_alloc_dentry(struct dentry *parent, char *name)
  75. {
  76. struct dentry *d;
  77. struct qstr q;
  78. int err;
  79. q.name = name;
  80. q.len = strlen(name);
  81. err = efivarfs_d_hash(parent, &q);
  82. if (err)
  83. return ERR_PTR(err);
  84. d = d_alloc(parent, &q);
  85. if (d)
  86. return d;
  87. return ERR_PTR(-ENOMEM);
  88. }
  89. static int efivarfs_callback(efi_char16_t *name16, efi_guid_t vendor,
  90. unsigned long name_size, void *data)
  91. {
  92. struct super_block *sb = (struct super_block *)data;
  93. struct efivar_entry *entry;
  94. struct inode *inode = NULL;
  95. struct dentry *dentry, *root = sb->s_root;
  96. unsigned long size = 0;
  97. char *name;
  98. int len;
  99. int err = -ENOMEM;
  100. bool is_removable = false;
  101. entry = kzalloc(sizeof(*entry), GFP_KERNEL);
  102. if (!entry)
  103. return err;
  104. memcpy(entry->var.VariableName, name16, name_size);
  105. memcpy(&(entry->var.VendorGuid), &vendor, sizeof(efi_guid_t));
  106. len = ucs2_utf8size(entry->var.VariableName);
  107. /* name, plus '-', plus GUID, plus NUL*/
  108. name = kmalloc(len + 1 + EFI_VARIABLE_GUID_LEN + 1, GFP_KERNEL);
  109. if (!name)
  110. goto fail;
  111. ucs2_as_utf8(name, entry->var.VariableName, len);
  112. if (efivar_variable_is_removable(entry->var.VendorGuid, name, len))
  113. is_removable = true;
  114. name[len] = '-';
  115. efi_guid_to_str(&entry->var.VendorGuid, name + len + 1);
  116. name[len + EFI_VARIABLE_GUID_LEN+1] = '\0';
  117. inode = efivarfs_get_inode(sb, d_inode(root), S_IFREG | 0644, 0,
  118. is_removable);
  119. if (!inode)
  120. goto fail_name;
  121. dentry = efivarfs_alloc_dentry(root, name);
  122. if (IS_ERR(dentry)) {
  123. err = PTR_ERR(dentry);
  124. goto fail_inode;
  125. }
  126. efivar_entry_size(entry, &size);
  127. err = efivar_entry_add(entry, &efivarfs_list);
  128. if (err)
  129. goto fail_inode;
  130. /* copied by the above to local storage in the dentry. */
  131. kfree(name);
  132. inode_lock(inode);
  133. inode->i_private = entry;
  134. i_size_write(inode, size + sizeof(entry->var.Attributes));
  135. inode_unlock(inode);
  136. d_add(dentry, inode);
  137. return 0;
  138. fail_inode:
  139. iput(inode);
  140. fail_name:
  141. kfree(name);
  142. fail:
  143. kfree(entry);
  144. return err;
  145. }
  146. static int efivarfs_destroy(struct efivar_entry *entry, void *data)
  147. {
  148. int err = efivar_entry_remove(entry);
  149. if (err)
  150. return err;
  151. kfree(entry);
  152. return 0;
  153. }
  154. static int efivarfs_fill_super(struct super_block *sb, void *data, int silent)
  155. {
  156. struct inode *inode = NULL;
  157. struct dentry *root;
  158. int err;
  159. efivarfs_sb = sb;
  160. sb->s_maxbytes = MAX_LFS_FILESIZE;
  161. sb->s_blocksize = PAGE_SIZE;
  162. sb->s_blocksize_bits = PAGE_SHIFT;
  163. sb->s_magic = EFIVARFS_MAGIC;
  164. sb->s_op = &efivarfs_ops;
  165. sb->s_d_op = &efivarfs_d_ops;
  166. sb->s_time_gran = 1;
  167. inode = efivarfs_get_inode(sb, NULL, S_IFDIR | 0755, 0, true);
  168. if (!inode)
  169. return -ENOMEM;
  170. inode->i_op = &efivarfs_dir_inode_operations;
  171. root = d_make_root(inode);
  172. sb->s_root = root;
  173. if (!root)
  174. return -ENOMEM;
  175. INIT_LIST_HEAD(&efivarfs_list);
  176. err = efivar_init(efivarfs_callback, (void *)sb, true, &efivarfs_list);
  177. if (err)
  178. __efivar_entry_iter(efivarfs_destroy, &efivarfs_list, NULL, NULL);
  179. return err;
  180. }
  181. static struct dentry *efivarfs_mount(struct file_system_type *fs_type,
  182. int flags, const char *dev_name, void *data)
  183. {
  184. return mount_single(fs_type, flags, data, efivarfs_fill_super);
  185. }
  186. static void efivarfs_kill_sb(struct super_block *sb)
  187. {
  188. kill_litter_super(sb);
  189. efivarfs_sb = NULL;
  190. /* Remove all entries and destroy */
  191. __efivar_entry_iter(efivarfs_destroy, &efivarfs_list, NULL, NULL);
  192. }
  193. static struct file_system_type efivarfs_type = {
  194. .owner = THIS_MODULE,
  195. .name = "efivarfs",
  196. .mount = efivarfs_mount,
  197. .kill_sb = efivarfs_kill_sb,
  198. };
  199. static __init int efivarfs_init(void)
  200. {
  201. if (!efi_enabled(EFI_RUNTIME_SERVICES))
  202. return -ENODEV;
  203. if (!efivars_kobject())
  204. return -ENODEV;
  205. return register_filesystem(&efivarfs_type);
  206. }
  207. static __exit void efivarfs_exit(void)
  208. {
  209. unregister_filesystem(&efivarfs_type);
  210. }
  211. MODULE_AUTHOR("Matthew Garrett, Jeremy Kerr");
  212. MODULE_DESCRIPTION("EFI Variable Filesystem");
  213. MODULE_LICENSE("GPL");
  214. MODULE_ALIAS_FS("efivarfs");
  215. module_init(efivarfs_init);
  216. module_exit(efivarfs_exit);