blob: 07f60455f1c1cac2108a876d1cdc490caa2a7c64 [file] [log] [blame]
Joel Becker7063fbf2005-12-15 14:29:43 -08001/* -*- 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 Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080033
34#include <linux/configfs.h>
35#include "configfs_internal.h"
36
37/* Random magic number */
38#define CONFIGFS_MAGIC 0x62656570
39
40struct vfsmount * configfs_mount = NULL;
41struct super_block * configfs_sb = NULL;
Christoph Lametere18b8902006-12-06 20:33:20 -080042struct kmem_cache *configfs_dir_cachep;
Joel Becker7063fbf2005-12-15 14:29:43 -080043static int configfs_mnt_count = 0;
44
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080045static const struct super_operations configfs_ops = {
Joel Becker7063fbf2005-12-15 14:29:43 -080046 .statfs = simple_statfs,
47 .drop_inode = generic_delete_inode,
48};
49
50static struct config_group configfs_root_group = {
51 .cg_item = {
52 .ci_namebuf = "root",
53 .ci_name = configfs_root_group.cg_item.ci_namebuf,
54 },
55};
56
57int configfs_is_root(struct config_item *item)
58{
59 return item == &configfs_root_group.cg_item;
60}
61
62static struct configfs_dirent configfs_root = {
63 .s_sibling = LIST_HEAD_INIT(configfs_root.s_sibling),
64 .s_children = LIST_HEAD_INIT(configfs_root.s_children),
65 .s_element = &configfs_root_group.cg_item,
66 .s_type = CONFIGFS_ROOT,
Joel Becker3d0f89b2006-01-25 13:31:07 -080067 .s_iattr = NULL,
Joel Becker7063fbf2005-12-15 14:29:43 -080068};
69
70static int configfs_fill_super(struct super_block *sb, void *data, int silent)
71{
72 struct inode *inode;
73 struct dentry *root;
74
75 sb->s_blocksize = PAGE_CACHE_SIZE;
76 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
77 sb->s_magic = CONFIGFS_MAGIC;
78 sb->s_op = &configfs_ops;
Joel Becker3d0f89b2006-01-25 13:31:07 -080079 sb->s_time_gran = 1;
Joel Becker7063fbf2005-12-15 14:29:43 -080080 configfs_sb = sb;
81
Joel Becker3d0f89b2006-01-25 13:31:07 -080082 inode = configfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
83 &configfs_root);
Joel Becker7063fbf2005-12-15 14:29:43 -080084 if (inode) {
85 inode->i_op = &configfs_dir_inode_operations;
86 inode->i_fop = &configfs_dir_operations;
87 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -070088 inc_nlink(inode);
Joel Becker7063fbf2005-12-15 14:29:43 -080089 } else {
90 pr_debug("configfs: could not get root inode\n");
91 return -ENOMEM;
92 }
93
Al Viro48fde702012-01-08 22:15:13 -050094 root = d_make_root(inode);
Joel Becker7063fbf2005-12-15 14:29:43 -080095 if (!root) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -070096 pr_debug("%s: could not get root dentry!\n",__func__);
Joel Becker7063fbf2005-12-15 14:29:43 -080097 return -ENOMEM;
98 }
99 config_group_init(&configfs_root_group);
100 configfs_root_group.cg_item.ci_dentry = root;
101 root->d_fsdata = &configfs_root;
102 sb->s_root = root;
Al Virod463a0c2011-01-12 16:41:05 -0500103 sb->s_d_op = &configfs_dentry_ops; /* the rest get that */
Joel Becker7063fbf2005-12-15 14:29:43 -0800104 return 0;
105}
106
Al Virofc14f2f2010-07-25 01:48:30 +0400107static struct dentry *configfs_do_mount(struct file_system_type *fs_type,
108 int flags, const char *dev_name, void *data)
Joel Becker7063fbf2005-12-15 14:29:43 -0800109{
Al Virofc14f2f2010-07-25 01:48:30 +0400110 return mount_single(fs_type, flags, data, configfs_fill_super);
Joel Becker7063fbf2005-12-15 14:29:43 -0800111}
112
113static struct file_system_type configfs_fs_type = {
114 .owner = THIS_MODULE,
115 .name = "configfs",
Al Virofc14f2f2010-07-25 01:48:30 +0400116 .mount = configfs_do_mount,
Joel Becker7063fbf2005-12-15 14:29:43 -0800117 .kill_sb = kill_litter_super,
118};
119
120int configfs_pin_fs(void)
121{
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400122 return simple_pin_fs(&configfs_fs_type, &configfs_mount,
Joel Becker7063fbf2005-12-15 14:29:43 -0800123 &configfs_mnt_count);
124}
125
126void configfs_release_fs(void)
127{
128 simple_release_fs(&configfs_mount, &configfs_mnt_count);
129}
130
131
Greg Kroah-Hartman37944912007-10-29 20:13:17 +0100132static struct kobject *config_kobj;
Joel Becker7063fbf2005-12-15 14:29:43 -0800133
134static int __init configfs_init(void)
135{
Joel Becker3d0f89b2006-01-25 13:31:07 -0800136 int err = -ENOMEM;
137
138 configfs_dir_cachep = kmem_cache_create("configfs_dir_cache",
139 sizeof(struct configfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +0900140 0, 0, NULL);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800141 if (!configfs_dir_cachep)
142 goto out;
Joel Becker7063fbf2005-12-15 14:29:43 -0800143
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -0800144 config_kobj = kobject_create_and_add("config", kernel_kobj);
Al Viro7c6455e2011-12-13 12:32:42 -0500145 if (!config_kobj)
146 goto out2;
Joel Becker7063fbf2005-12-15 14:29:43 -0800147
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700148 err = configfs_inode_init();
Al Viro7c6455e2011-12-13 12:32:42 -0500149 if (err)
150 goto out3;
151
152 err = register_filesystem(&configfs_fs_type);
153 if (err)
154 goto out4;
155
156 return 0;
157out4:
158 printk(KERN_ERR "configfs: Unable to register filesystem!\n");
159 configfs_inode_exit();
160out3:
161 kobject_put(config_kobj);
162out2:
163 kmem_cache_destroy(configfs_dir_cachep);
164 configfs_dir_cachep = NULL;
Joel Becker3d0f89b2006-01-25 13:31:07 -0800165out:
Joel Becker7063fbf2005-12-15 14:29:43 -0800166 return err;
167}
168
169static void __exit configfs_exit(void)
170{
171 unregister_filesystem(&configfs_fs_type);
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800172 kobject_put(config_kobj);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800173 kmem_cache_destroy(configfs_dir_cachep);
174 configfs_dir_cachep = NULL;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700175 configfs_inode_exit();
Joel Becker7063fbf2005-12-15 14:29:43 -0800176}
177
178MODULE_AUTHOR("Oracle");
179MODULE_LICENSE("GPL");
Joel Becker3d0f89b2006-01-25 13:31:07 -0800180MODULE_VERSION("0.0.2");
Joel Becker7063fbf2005-12-15 14:29:43 -0800181MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
182
183module_init(configfs_init);
184module_exit(configfs_exit);