| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 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 |  | 
|  | 27 | #include <linux/fs.h> | 
|  | 28 | #include <linux/module.h> | 
|  | 29 | #include <linux/mount.h> | 
|  | 30 | #include <linux/pagemap.h> | 
|  | 31 | #include <linux/init.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 33 |  | 
|  | 34 | #include <linux/configfs.h> | 
|  | 35 | #include "configfs_internal.h" | 
|  | 36 |  | 
|  | 37 | /* Random magic number */ | 
|  | 38 | #define CONFIGFS_MAGIC 0x62656570 | 
|  | 39 |  | 
| Al Viro | 2a152ad | 2012-03-17 16:53:29 -0400 | [diff] [blame] | 40 | static struct vfsmount *configfs_mount = NULL; | 
| Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 41 | struct kmem_cache *configfs_dir_cachep; | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 42 | static int configfs_mnt_count = 0; | 
|  | 43 |  | 
| Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 44 | static const struct super_operations configfs_ops = { | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 45 | .statfs		= simple_statfs, | 
|  | 46 | .drop_inode	= generic_delete_inode, | 
|  | 47 | }; | 
|  | 48 |  | 
|  | 49 | static struct config_group configfs_root_group = { | 
|  | 50 | .cg_item = { | 
|  | 51 | .ci_namebuf	= "root", | 
|  | 52 | .ci_name	= configfs_root_group.cg_item.ci_namebuf, | 
|  | 53 | }, | 
|  | 54 | }; | 
|  | 55 |  | 
|  | 56 | int configfs_is_root(struct config_item *item) | 
|  | 57 | { | 
|  | 58 | return item == &configfs_root_group.cg_item; | 
|  | 59 | } | 
|  | 60 |  | 
|  | 61 | static struct configfs_dirent configfs_root = { | 
|  | 62 | .s_sibling	= LIST_HEAD_INIT(configfs_root.s_sibling), | 
|  | 63 | .s_children	= LIST_HEAD_INIT(configfs_root.s_children), | 
|  | 64 | .s_element	= &configfs_root_group.cg_item, | 
|  | 65 | .s_type		= CONFIGFS_ROOT, | 
| Joel Becker | 3d0f89b | 2006-01-25 13:31:07 -0800 | [diff] [blame] | 66 | .s_iattr	= NULL, | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 67 | }; | 
|  | 68 |  | 
|  | 69 | static int configfs_fill_super(struct super_block *sb, void *data, int silent) | 
|  | 70 | { | 
|  | 71 | struct inode *inode; | 
|  | 72 | struct dentry *root; | 
|  | 73 |  | 
|  | 74 | sb->s_blocksize = PAGE_CACHE_SIZE; | 
|  | 75 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; | 
|  | 76 | sb->s_magic = CONFIGFS_MAGIC; | 
|  | 77 | sb->s_op = &configfs_ops; | 
| Joel Becker | 3d0f89b | 2006-01-25 13:31:07 -0800 | [diff] [blame] | 78 | sb->s_time_gran = 1; | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 79 |  | 
| Joel Becker | 3d0f89b | 2006-01-25 13:31:07 -0800 | [diff] [blame] | 80 | inode = configfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO, | 
| Al Viro | b7c177f | 2012-03-17 16:24:54 -0400 | [diff] [blame] | 81 | &configfs_root, sb); | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 82 | if (inode) { | 
| Al Viro | 81d44ed1 | 2012-03-17 16:13:25 -0400 | [diff] [blame] | 83 | inode->i_op = &configfs_root_inode_operations; | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 84 | inode->i_fop = &configfs_dir_operations; | 
|  | 85 | /* directory inodes start off with i_nlink == 2 (for "." entry) */ | 
| Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 86 | inc_nlink(inode); | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 87 | } else { | 
|  | 88 | pr_debug("configfs: could not get root inode\n"); | 
|  | 89 | return -ENOMEM; | 
|  | 90 | } | 
|  | 91 |  | 
| Al Viro | 48fde70 | 2012-01-08 22:15:13 -0500 | [diff] [blame] | 92 | root = d_make_root(inode); | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 93 | if (!root) { | 
| Harvey Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 94 | pr_debug("%s: could not get root dentry!\n",__func__); | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 95 | return -ENOMEM; | 
|  | 96 | } | 
|  | 97 | config_group_init(&configfs_root_group); | 
|  | 98 | configfs_root_group.cg_item.ci_dentry = root; | 
|  | 99 | root->d_fsdata = &configfs_root; | 
|  | 100 | sb->s_root = root; | 
| Al Viro | d463a0c | 2011-01-12 16:41:05 -0500 | [diff] [blame] | 101 | sb->s_d_op = &configfs_dentry_ops; /* the rest get that */ | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 102 | return 0; | 
|  | 103 | } | 
|  | 104 |  | 
| Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 105 | static struct dentry *configfs_do_mount(struct file_system_type *fs_type, | 
|  | 106 | int flags, const char *dev_name, void *data) | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 107 | { | 
| Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 108 | return mount_single(fs_type, flags, data, configfs_fill_super); | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 109 | } | 
|  | 110 |  | 
|  | 111 | static struct file_system_type configfs_fs_type = { | 
|  | 112 | .owner		= THIS_MODULE, | 
|  | 113 | .name		= "configfs", | 
| Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 114 | .mount		= configfs_do_mount, | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 115 | .kill_sb	= kill_litter_super, | 
|  | 116 | }; | 
|  | 117 |  | 
| Al Viro | 2a152ad | 2012-03-17 16:53:29 -0400 | [diff] [blame] | 118 | struct dentry *configfs_pin_fs(void) | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 119 | { | 
| Al Viro | 2a152ad | 2012-03-17 16:53:29 -0400 | [diff] [blame] | 120 | int err = simple_pin_fs(&configfs_fs_type, &configfs_mount, | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 121 | &configfs_mnt_count); | 
| Al Viro | 2a152ad | 2012-03-17 16:53:29 -0400 | [diff] [blame] | 122 | return err ? ERR_PTR(err) : configfs_mount->mnt_root; | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 123 | } | 
|  | 124 |  | 
|  | 125 | void configfs_release_fs(void) | 
|  | 126 | { | 
|  | 127 | simple_release_fs(&configfs_mount, &configfs_mnt_count); | 
|  | 128 | } | 
|  | 129 |  | 
|  | 130 |  | 
| Greg Kroah-Hartman | 3794491 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 131 | static struct kobject *config_kobj; | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 132 |  | 
|  | 133 | static int __init configfs_init(void) | 
|  | 134 | { | 
| Joel Becker | 3d0f89b | 2006-01-25 13:31:07 -0800 | [diff] [blame] | 135 | int err = -ENOMEM; | 
|  | 136 |  | 
|  | 137 | configfs_dir_cachep = kmem_cache_create("configfs_dir_cache", | 
|  | 138 | sizeof(struct configfs_dirent), | 
| Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 139 | 0, 0, NULL); | 
| Joel Becker | 3d0f89b | 2006-01-25 13:31:07 -0800 | [diff] [blame] | 140 | if (!configfs_dir_cachep) | 
|  | 141 | goto out; | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 142 |  | 
| Greg Kroah-Hartman | 0ff21e4 | 2007-11-06 10:36:58 -0800 | [diff] [blame] | 143 | config_kobj = kobject_create_and_add("config", kernel_kobj); | 
| Al Viro | 7c6455e | 2011-12-13 12:32:42 -0500 | [diff] [blame] | 144 | if (!config_kobj) | 
|  | 145 | goto out2; | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 146 |  | 
| Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 147 | err = configfs_inode_init(); | 
| Al Viro | 7c6455e | 2011-12-13 12:32:42 -0500 | [diff] [blame] | 148 | if (err) | 
|  | 149 | goto out3; | 
|  | 150 |  | 
|  | 151 | err = register_filesystem(&configfs_fs_type); | 
|  | 152 | if (err) | 
|  | 153 | goto out4; | 
|  | 154 |  | 
|  | 155 | return 0; | 
|  | 156 | out4: | 
|  | 157 | printk(KERN_ERR "configfs: Unable to register filesystem!\n"); | 
|  | 158 | configfs_inode_exit(); | 
|  | 159 | out3: | 
|  | 160 | kobject_put(config_kobj); | 
|  | 161 | out2: | 
|  | 162 | kmem_cache_destroy(configfs_dir_cachep); | 
|  | 163 | configfs_dir_cachep = NULL; | 
| Joel Becker | 3d0f89b | 2006-01-25 13:31:07 -0800 | [diff] [blame] | 164 | out: | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 165 | return err; | 
|  | 166 | } | 
|  | 167 |  | 
|  | 168 | static void __exit configfs_exit(void) | 
|  | 169 | { | 
|  | 170 | unregister_filesystem(&configfs_fs_type); | 
| Greg Kroah-Hartman | 197b12d | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 171 | kobject_put(config_kobj); | 
| Joel Becker | 3d0f89b | 2006-01-25 13:31:07 -0800 | [diff] [blame] | 172 | kmem_cache_destroy(configfs_dir_cachep); | 
|  | 173 | configfs_dir_cachep = NULL; | 
| Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 174 | configfs_inode_exit(); | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 175 | } | 
|  | 176 |  | 
|  | 177 | MODULE_AUTHOR("Oracle"); | 
|  | 178 | MODULE_LICENSE("GPL"); | 
| Joel Becker | 3d0f89b | 2006-01-25 13:31:07 -0800 | [diff] [blame] | 179 | MODULE_VERSION("0.0.2"); | 
| Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 180 | MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration."); | 
|  | 181 |  | 
|  | 182 | module_init(configfs_init); | 
|  | 183 | module_exit(configfs_exit); |