super.c 6.1 KB

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