super.c 6.2 KB

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