mount.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * mount.c - operations for initializing and mounting configfs.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public
  17. * License along with this program; if not, write to the
  18. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. * Boston, MA 021110-1307, USA.
  20. *
  21. * Based on sysfs:
  22. * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
  23. *
  24. * configfs Copyright (C) 2005 Oracle. All rights reserved.
  25. */
  26. #include <linux/fs.h>
  27. #include <linux/module.h>
  28. #include <linux/mount.h>
  29. #include <linux/pagemap.h>
  30. #include <linux/init.h>
  31. #include <linux/slab.h>
  32. #include <linux/configfs.h>
  33. #include "configfs_internal.h"
  34. /* Random magic number */
  35. #define CONFIGFS_MAGIC 0x62656570
  36. struct vfsmount * configfs_mount = NULL;
  37. struct super_block * configfs_sb = NULL;
  38. struct kmem_cache *configfs_dir_cachep;
  39. static int configfs_mnt_count = 0;
  40. static const struct super_operations configfs_ops = {
  41. .statfs = simple_statfs,
  42. .drop_inode = generic_delete_inode,
  43. };
  44. static struct config_group configfs_root_group = {
  45. .cg_item = {
  46. .ci_namebuf = "root",
  47. .ci_name = configfs_root_group.cg_item.ci_namebuf,
  48. },
  49. };
  50. int configfs_is_root(struct config_item *item)
  51. {
  52. return item == &configfs_root_group.cg_item;
  53. }
  54. static struct configfs_dirent configfs_root = {
  55. .s_sibling = LIST_HEAD_INIT(configfs_root.s_sibling),
  56. .s_children = LIST_HEAD_INIT(configfs_root.s_children),
  57. .s_element = &configfs_root_group.cg_item,
  58. .s_type = CONFIGFS_ROOT,
  59. .s_iattr = NULL,
  60. };
  61. static int configfs_fill_super(struct super_block *sb, void *data, int silent)
  62. {
  63. struct inode *inode;
  64. struct dentry *root;
  65. sb->s_blocksize = PAGE_CACHE_SIZE;
  66. sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
  67. sb->s_magic = CONFIGFS_MAGIC;
  68. sb->s_op = &configfs_ops;
  69. sb->s_time_gran = 1;
  70. configfs_sb = sb;
  71. inode = configfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
  72. &configfs_root);
  73. if (inode) {
  74. inode->i_op = &configfs_dir_inode_operations;
  75. inode->i_fop = &configfs_dir_operations;
  76. /* directory inodes start off with i_nlink == 2 (for "." entry) */
  77. inc_nlink(inode);
  78. } else {
  79. pr_debug("configfs: could not get root inode\n");
  80. return -ENOMEM;
  81. }
  82. root = d_alloc_root(inode);
  83. if (!root) {
  84. pr_debug("%s: could not get root dentry!\n",__func__);
  85. iput(inode);
  86. return -ENOMEM;
  87. }
  88. config_group_init(&configfs_root_group);
  89. configfs_root_group.cg_item.ci_dentry = root;
  90. root->d_fsdata = &configfs_root;
  91. sb->s_root = root;
  92. sb->s_d_op = &configfs_dentry_ops; /* the rest get that */
  93. return 0;
  94. }
  95. static struct dentry *configfs_do_mount(struct file_system_type *fs_type,
  96. int flags, const char *dev_name, void *data)
  97. {
  98. return mount_single(fs_type, flags, data, configfs_fill_super);
  99. }
  100. static struct file_system_type configfs_fs_type = {
  101. .owner = THIS_MODULE,
  102. .name = "configfs",
  103. .mount = configfs_do_mount,
  104. .kill_sb = kill_litter_super,
  105. };
  106. int configfs_pin_fs(void)
  107. {
  108. return simple_pin_fs(&configfs_fs_type, &configfs_mount,
  109. &configfs_mnt_count);
  110. }
  111. void configfs_release_fs(void)
  112. {
  113. simple_release_fs(&configfs_mount, &configfs_mnt_count);
  114. }
  115. static struct kobject *config_kobj;
  116. static int __init configfs_init(void)
  117. {
  118. int err = -ENOMEM;
  119. configfs_dir_cachep = kmem_cache_create("configfs_dir_cache",
  120. sizeof(struct configfs_dirent),
  121. 0, 0, NULL);
  122. if (!configfs_dir_cachep)
  123. goto out;
  124. config_kobj = kobject_create_and_add("config", kernel_kobj);
  125. if (!config_kobj) {
  126. kmem_cache_destroy(configfs_dir_cachep);
  127. configfs_dir_cachep = NULL;
  128. goto out;
  129. }
  130. err = register_filesystem(&configfs_fs_type);
  131. if (err) {
  132. printk(KERN_ERR "configfs: Unable to register filesystem!\n");
  133. kobject_put(config_kobj);
  134. kmem_cache_destroy(configfs_dir_cachep);
  135. configfs_dir_cachep = NULL;
  136. goto out;
  137. }
  138. err = configfs_inode_init();
  139. if (err) {
  140. unregister_filesystem(&configfs_fs_type);
  141. kobject_put(config_kobj);
  142. kmem_cache_destroy(configfs_dir_cachep);
  143. configfs_dir_cachep = NULL;
  144. }
  145. out:
  146. return err;
  147. }
  148. static void __exit configfs_exit(void)
  149. {
  150. unregister_filesystem(&configfs_fs_type);
  151. kobject_put(config_kobj);
  152. kmem_cache_destroy(configfs_dir_cachep);
  153. configfs_dir_cachep = NULL;
  154. configfs_inode_exit();
  155. }
  156. MODULE_AUTHOR("Oracle");
  157. MODULE_LICENSE("GPL");
  158. MODULE_VERSION("0.0.2");
  159. MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
  160. module_init(configfs_init);
  161. module_exit(configfs_exit);