blob: 834ec2cdb7a37e070b7e5ed04ec684ba46cb2093 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heo6d66f5c2007-09-20 17:31:38 +09002 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Bin Wang6b8fbde2012-12-06 17:08:56 +080013#define DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include <linux/fs.h>
16#include <linux/mount.h>
17#include <linux/pagemap.h>
18#include <linux/init.h>
Neil Brownf1282c82008-07-16 08:58:04 +100019#include <linux/module.h>
Qinghuang Feng8231f2f2009-01-14 15:45:13 +080020#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Eric W. Biederman87a8ebd2013-03-24 14:28:27 -070022#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "sysfs.h"
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Al Virod0e46f82010-07-26 13:30:36 +040027static struct vfsmount *sysfs_mnt;
Christoph Lametere18b8902006-12-06 20:33:20 -080028struct kmem_cache *sysfs_dir_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080030static const struct super_operations sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 .statfs = simple_statfs,
Eric W. Biederman90bc6132007-07-31 19:15:08 +090032 .drop_inode = generic_delete_inode,
Al Viro01cd9fe2010-06-04 22:21:54 -040033 .evict_inode = sysfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
Tejun Heo51225032007-06-14 04:27:25 +090036struct sysfs_dirent sysfs_root = {
Tejun Heodc2f75f2007-09-20 16:05:12 +090037 .s_name = "",
Tejun Heo13b30862007-06-14 03:45:14 +090038 .s_count = ATOMIC_INIT(1),
Linus Torvaldsa1212d22013-11-07 20:47:28 +090039 .s_flags = SYSFS_DIR | (KOBJ_NS_TYPE_NONE << SYSFS_NS_TYPE_SHIFT),
Vitaly Kuznetsovc56d8a72012-01-17 12:17:22 +000040 .s_mode = S_IFDIR | S_IRUGO | S_IXUGO,
Eric Sandeendc351252007-06-11 14:02:45 +090041 .s_ino = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
44static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
45{
46 struct inode *inode;
47 struct dentry *root;
48
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;
53 sb->s_time_gran = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Tejun Heoe080e432007-07-18 14:29:06 +090055 /* get root inode, initialize and unlock it */
Eric W. Biederman4a67a1b2009-01-21 11:55:11 -080056 mutex_lock(&sysfs_mutex);
Eric W. Biedermanfac26222010-02-12 19:22:27 -080057 inode = sysfs_get_inode(sb, &sysfs_root);
Eric W. Biederman4a67a1b2009-01-21 11:55:11 -080058 mutex_unlock(&sysfs_mutex);
Tejun Heofc9f54b2007-06-14 03:45:17 +090059 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 pr_debug("sysfs: could not get root inode\n");
61 return -ENOMEM;
62 }
63
Tejun Heoe080e432007-07-18 14:29:06 +090064 /* instantiate and link root dentry */
Al Viro48fde702012-01-08 22:15:13 -050065 root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (!root) {
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -070067 pr_debug("%s: could not get root dentry!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return -ENOMEM;
69 }
70 root->d_fsdata = &sysfs_root;
71 sb->s_root = root;
Al Viro469796d2012-06-07 20:51:39 -040072 sb->s_d_op = &sysfs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return 0;
74}
75
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070076static int sysfs_test_super(struct super_block *sb, void *data)
77{
78 struct sysfs_super_info *sb_info = sysfs_info(sb);
79 struct sysfs_super_info *info = data;
Linus Torvaldsa1212d22013-11-07 20:47:28 +090080 enum kobj_ns_type type;
81 int found = 1;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070082
Linus Torvaldsa1212d22013-11-07 20:47:28 +090083 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) {
84 if (sb_info->ns[type] != info->ns[type])
85 found = 0;
86 }
87 return found;
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070088}
89
90static int sysfs_set_super(struct super_block *sb, void *data)
91{
92 int error;
93 error = set_anon_super(sb, data);
94 if (!error)
95 sb->s_fs_info = data;
96 return error;
97}
98
Al Viroa685e082011-06-08 21:13:01 -040099static void free_sysfs_super_info(struct sysfs_super_info *info)
100{
Linus Torvaldsa1212d22013-11-07 20:47:28 +0900101 int type;
102 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++)
103 kobj_ns_drop(type, info->ns[type]);
Al Viroa685e082011-06-08 21:13:01 -0400104 kfree(info);
105}
106
Al Virod0e46f82010-07-26 13:30:36 +0400107static struct dentry *sysfs_mount(struct file_system_type *fs_type,
108 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700110 struct sysfs_super_info *info;
Linus Torvaldsa1212d22013-11-07 20:47:28 +0900111 enum kobj_ns_type type;
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700112 struct super_block *sb;
113 int error;
114
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -0700115 if (!(flags & MS_KERNMOUNT)) {
116 if (!capable(CAP_SYS_ADMIN) && !fs_fully_visible(fs_type))
117 return ERR_PTR(-EPERM);
118
Linus Torvaldsa1212d22013-11-07 20:47:28 +0900119 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) {
120 if (!kobj_ns_current_may_mount(type))
121 return ERR_PTR(-EPERM);
122 }
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -0700123 }
Eric W. Biederman87a8ebd2013-03-24 14:28:27 -0700124
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700125 info = kzalloc(sizeof(*info), GFP_KERNEL);
126 if (!info)
Al Virod0e46f82010-07-26 13:30:36 +0400127 return ERR_PTR(-ENOMEM);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700128
Linus Torvaldsa1212d22013-11-07 20:47:28 +0900129 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++)
130 info->ns[type] = kobj_ns_grab_current(type);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700131
David Howells9249e172012-06-25 12:55:37 +0100132 sb = sget(fs_type, sysfs_test_super, sysfs_set_super, flags, info);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700133 if (IS_ERR(sb) || sb->s_fs_info != info)
Al Viroa685e082011-06-08 21:13:01 -0400134 free_sysfs_super_info(info);
Al Virod0e46f82010-07-26 13:30:36 +0400135 if (IS_ERR(sb))
136 return ERR_CAST(sb);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700137 if (!sb->s_root) {
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700138 error = sysfs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
139 if (error) {
140 deactivate_locked_super(sb);
Al Virod0e46f82010-07-26 13:30:36 +0400141 return ERR_PTR(error);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700142 }
143 sb->s_flags |= MS_ACTIVE;
144 }
145
Al Virod0e46f82010-07-26 13:30:36 +0400146 return dget(sb->s_root);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700147}
148
149static void sysfs_kill_sb(struct super_block *sb)
150{
151 struct sysfs_super_info *info = sysfs_info(sb);
Eric W. Biederman68d75ed2010-05-18 12:58:33 -0700152 /* Remove the superblock from fs_supers/s_instances
153 * so we can't find it, before freeing sysfs_super_info.
154 */
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700155 kill_anon_super(sb);
Al Viroa685e082011-06-08 21:13:01 -0400156 free_sysfs_super_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159static struct file_system_type sysfs_fs_type = {
160 .name = "sysfs",
Al Virod0e46f82010-07-26 13:30:36 +0400161 .mount = sysfs_mount,
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700162 .kill_sb = sysfs_kill_sb,
Eric W. Biederman4f326c02012-07-27 05:56:48 -0700163 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
166int __init sysfs_init(void)
167{
168 int err = -ENOMEM;
169
170 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
171 sizeof(struct sysfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +0900172 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (!sysfs_dir_cachep)
174 goto out;
175
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700176 err = sysfs_inode_init();
177 if (err)
178 goto out_err;
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 err = register_filesystem(&sysfs_fs_type);
181 if (!err) {
Al Virod0e46f82010-07-26 13:30:36 +0400182 sysfs_mnt = kern_mount(&sysfs_fs_type);
183 if (IS_ERR(sysfs_mnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 printk(KERN_ERR "sysfs: could not mount!\n");
Al Virod0e46f82010-07-26 13:30:36 +0400185 err = PTR_ERR(sysfs_mnt);
186 sysfs_mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 unregister_filesystem(&sysfs_fs_type);
188 goto out_err;
189 }
190 } else
191 goto out_err;
192out:
193 return err;
194out_err:
195 kmem_cache_destroy(sysfs_dir_cachep);
196 sysfs_dir_cachep = NULL;
197 goto out;
198}
Neil Brownf1282c82008-07-16 08:58:04 +1000199
200#undef sysfs_get
201struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
202{
203 return __sysfs_get(sd);
204}
205EXPORT_SYMBOL_GPL(sysfs_get);
206
207#undef sysfs_put
208void sysfs_put(struct sysfs_dirent *sd)
209{
210 __sysfs_put(sd);
211}
212EXPORT_SYMBOL_GPL(sysfs_put);