2 * fs/sysfs/symlink.c - operations for initializing and mounting sysfs
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
8 * This file is released under the GPLv2.
10 * Please see Documentation/filesystems/sysfs.txt for more information.
16 #include <linux/mount.h>
17 #include <linux/pagemap.h>
18 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/magic.h>
21 #include <linux/slab.h>
22 #include <linux/user_namespace.h>
27 static struct vfsmount *sysfs_mnt;
28 struct kmem_cache *sysfs_dir_cachep;
30 static const struct super_operations sysfs_ops = {
31 .statfs = simple_statfs,
32 .drop_inode = generic_delete_inode,
33 .evict_inode = sysfs_evict_inode,
36 struct sysfs_dirent sysfs_root = {
38 .s_count = ATOMIC_INIT(1),
39 .s_flags = SYSFS_DIR | (KOBJ_NS_TYPE_NONE << SYSFS_NS_TYPE_SHIFT),
40 .s_mode = S_IFDIR | S_IRUGO | S_IXUGO,
44 static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
49 sb->s_blocksize = PAGE_CACHE_SIZE;
50 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
51 sb->s_magic = SYSFS_MAGIC;
52 sb->s_op = &sysfs_ops;
55 /* get root inode, initialize and unlock it */
56 mutex_lock(&sysfs_mutex);
57 inode = sysfs_get_inode(sb, &sysfs_root);
58 mutex_unlock(&sysfs_mutex);
60 pr_debug("sysfs: could not get root inode\n");
64 /* instantiate and link root dentry */
65 root = d_make_root(inode);
67 pr_debug("%s: could not get root dentry!\n", __func__);
70 root->d_fsdata = &sysfs_root;
72 sb->s_d_op = &sysfs_dentry_ops;
76 static int sysfs_test_super(struct super_block *sb, void *data)
78 struct sysfs_super_info *sb_info = sysfs_info(sb);
79 struct sysfs_super_info *info = data;
80 enum kobj_ns_type type;
83 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) {
84 if (sb_info->ns[type] != info->ns[type])
90 static int sysfs_set_super(struct super_block *sb, void *data)
93 error = set_anon_super(sb, data);
99 static void free_sysfs_super_info(struct sysfs_super_info *info)
102 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++)
103 kobj_ns_drop(type, info->ns[type]);
107 static struct dentry *sysfs_mount(struct file_system_type *fs_type,
108 int flags, const char *dev_name, void *data)
110 struct sysfs_super_info *info;
111 enum kobj_ns_type type;
112 struct super_block *sb;
115 if (!(flags & MS_KERNMOUNT)) {
116 if (!capable(CAP_SYS_ADMIN) && !fs_fully_visible(fs_type))
117 return ERR_PTR(-EPERM);
119 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) {
120 if (!kobj_ns_current_may_mount(type))
121 return ERR_PTR(-EPERM);
125 info = kzalloc(sizeof(*info), GFP_KERNEL);
127 return ERR_PTR(-ENOMEM);
129 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++)
130 info->ns[type] = kobj_ns_grab_current(type);
132 sb = sget(fs_type, sysfs_test_super, sysfs_set_super, flags, info);
133 if (IS_ERR(sb) || sb->s_fs_info != info)
134 free_sysfs_super_info(info);
138 error = sysfs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
140 deactivate_locked_super(sb);
141 return ERR_PTR(error);
143 sb->s_flags |= MS_ACTIVE;
146 return dget(sb->s_root);
149 static void sysfs_kill_sb(struct super_block *sb)
151 struct sysfs_super_info *info = sysfs_info(sb);
152 /* Remove the superblock from fs_supers/s_instances
153 * so we can't find it, before freeing sysfs_super_info.
156 free_sysfs_super_info(info);
159 static struct file_system_type sysfs_fs_type = {
161 .mount = sysfs_mount,
162 .kill_sb = sysfs_kill_sb,
163 .fs_flags = FS_USERNS_MOUNT,
166 int __init sysfs_init(void)
170 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
171 sizeof(struct sysfs_dirent),
173 if (!sysfs_dir_cachep)
176 err = sysfs_inode_init();
180 err = register_filesystem(&sysfs_fs_type);
182 sysfs_mnt = kern_mount(&sysfs_fs_type);
183 if (IS_ERR(sysfs_mnt)) {
184 printk(KERN_ERR "sysfs: could not mount!\n");
185 err = PTR_ERR(sysfs_mnt);
187 unregister_filesystem(&sysfs_fs_type);
195 kmem_cache_destroy(sysfs_dir_cachep);
196 sysfs_dir_cachep = NULL;
201 struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
203 return __sysfs_get(sd);
205 EXPORT_SYMBOL_GPL(sysfs_get);
208 void sysfs_put(struct sysfs_dirent *sd)
212 EXPORT_SYMBOL_GPL(sysfs_put);