]> Pileus Git - ~andy/linux/blob - fs/sysfs/mount.c
0c80f03790167c4513f9a43eee4b5e146cb8becd
[~andy/linux] / fs / sysfs / mount.c
1 /*
2  * fs/sysfs/symlink.c - operations for initializing and mounting sysfs
3  *
4  * Copyright (c) 2001-3 Patrick Mochel
5  * Copyright (c) 2007 SUSE Linux Products GmbH
6  * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
7  *
8  * This file is released under the GPLv2.
9  *
10  * Please see Documentation/filesystems/sysfs.txt for more information.
11  */
12
13 #define DEBUG
14
15 #include <linux/fs.h>
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>
23
24 #include "sysfs.h"
25
26
27 struct kmem_cache *sysfs_dir_cachep;
28
29 static const struct super_operations sysfs_ops = {
30         .statfs         = simple_statfs,
31         .drop_inode     = generic_delete_inode,
32         .evict_inode    = sysfs_evict_inode,
33 };
34
35 struct sysfs_dirent sysfs_root = {
36         .s_name         = "",
37         .s_count        = ATOMIC_INIT(1),
38         .s_flags        = SYSFS_DIR,
39         .s_mode         = S_IFDIR | S_IRUGO | S_IXUGO,
40         .s_ino          = 1,
41 };
42
43 static int sysfs_fill_super(struct super_block *sb)
44 {
45         struct inode *inode;
46         struct dentry *root;
47
48         sb->s_blocksize = PAGE_CACHE_SIZE;
49         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
50         sb->s_magic = SYSFS_MAGIC;
51         sb->s_op = &sysfs_ops;
52         sb->s_time_gran = 1;
53
54         /* get root inode, initialize and unlock it */
55         mutex_lock(&sysfs_mutex);
56         inode = sysfs_get_inode(sb, &sysfs_root);
57         mutex_unlock(&sysfs_mutex);
58         if (!inode) {
59                 pr_debug("sysfs: could not get root inode\n");
60                 return -ENOMEM;
61         }
62
63         /* instantiate and link root dentry */
64         root = d_make_root(inode);
65         if (!root) {
66                 pr_debug("%s: could not get root dentry!\n", __func__);
67                 return -ENOMEM;
68         }
69         root->d_fsdata = &sysfs_root;
70         sb->s_root = root;
71         sb->s_d_op = &sysfs_dentry_ops;
72         return 0;
73 }
74
75 static int sysfs_test_super(struct super_block *sb, void *data)
76 {
77         struct sysfs_super_info *sb_info = sysfs_info(sb);
78         struct sysfs_super_info *info = data;
79
80         return sb_info->ns == info->ns;
81 }
82
83 static int sysfs_set_super(struct super_block *sb, void *data)
84 {
85         int error;
86         error = set_anon_super(sb, data);
87         if (!error)
88                 sb->s_fs_info = data;
89         return error;
90 }
91
92 static void free_sysfs_super_info(struct sysfs_super_info *info)
93 {
94         kobj_ns_drop(KOBJ_NS_TYPE_NET, (void *)info->ns);
95         kfree(info);
96 }
97
98 static struct dentry *sysfs_mount(struct file_system_type *fs_type,
99         int flags, const char *dev_name, void *data)
100 {
101         struct sysfs_super_info *info;
102         struct super_block *sb;
103         int error;
104
105         if (!(flags & MS_KERNMOUNT)) {
106                 if (!capable(CAP_SYS_ADMIN) && !fs_fully_visible(fs_type))
107                         return ERR_PTR(-EPERM);
108
109                 if (!kobj_ns_current_may_mount(KOBJ_NS_TYPE_NET))
110                         return ERR_PTR(-EPERM);
111         }
112
113         info = kzalloc(sizeof(*info), GFP_KERNEL);
114         if (!info)
115                 return ERR_PTR(-ENOMEM);
116
117         info->ns = kobj_ns_grab_current(KOBJ_NS_TYPE_NET);
118
119         sb = sget(fs_type, sysfs_test_super, sysfs_set_super, flags, info);
120         if (IS_ERR(sb) || sb->s_fs_info != info)
121                 free_sysfs_super_info(info);
122         if (IS_ERR(sb))
123                 return ERR_CAST(sb);
124         if (!sb->s_root) {
125                 error = sysfs_fill_super(sb);
126                 if (error) {
127                         deactivate_locked_super(sb);
128                         return ERR_PTR(error);
129                 }
130                 sb->s_flags |= MS_ACTIVE;
131         }
132
133         return dget(sb->s_root);
134 }
135
136 static void sysfs_kill_sb(struct super_block *sb)
137 {
138         struct sysfs_super_info *info = sysfs_info(sb);
139         /* Remove the superblock from fs_supers/s_instances
140          * so we can't find it, before freeing sysfs_super_info.
141          */
142         kill_anon_super(sb);
143         free_sysfs_super_info(info);
144 }
145
146 static struct file_system_type sysfs_fs_type = {
147         .name           = "sysfs",
148         .mount          = sysfs_mount,
149         .kill_sb        = sysfs_kill_sb,
150         .fs_flags       = FS_USERNS_MOUNT,
151 };
152
153 int __init sysfs_init(void)
154 {
155         int err;
156
157         sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
158                                               sizeof(struct sysfs_dirent),
159                                               0, 0, NULL);
160         if (!sysfs_dir_cachep)
161                 return -ENOMEM;
162
163         err = sysfs_inode_init();
164         if (err)
165                 goto out_err;
166
167         err = register_filesystem(&sysfs_fs_type);
168         if (err)
169                 goto out_err;
170
171         return 0;
172
173 out_err:
174         kmem_cache_destroy(sysfs_dir_cachep);
175         sysfs_dir_cachep = NULL;
176         return err;
177 }