blob: 7cbd1fce28262f8a3c42bb16450d6c33a47a5346 [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
Christoph Lametere18b8902006-12-06 20:33:20 -080027struct kmem_cache *sysfs_dir_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080029static const struct super_operations sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .statfs = simple_statfs,
Eric W. Biederman90bc6132007-07-31 19:15:08 +090031 .drop_inode = generic_delete_inode,
Al Viro01cd9fe2010-06-04 22:21:54 -040032 .evict_inode = sysfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Tejun Heo061447a2013-11-28 14:54:39 -050035static struct sysfs_dirent sysfs_root = {
Tejun Heodc2f75f2007-09-20 16:05:12 +090036 .s_name = "",
Tejun Heo13b30862007-06-14 03:45:14 +090037 .s_count = ATOMIC_INIT(1),
Tejun Heoc84a3b22013-11-23 18:01:46 -050038 .s_flags = SYSFS_DIR,
Vitaly Kuznetsovc56d8a72012-01-17 12:17:22 +000039 .s_mode = S_IFDIR | S_IRUGO | S_IXUGO,
Eric Sandeendc351252007-06-11 14:02:45 +090040 .s_ino = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
Tejun Heo061447a2013-11-28 14:54:39 -050043struct sysfs_dirent *sysfs_root_sd = &sysfs_root;
44
Tejun Heoccc532d2013-11-28 14:54:36 -050045static int sysfs_fill_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 struct inode *inode;
48 struct dentry *root;
49
50 sb->s_blocksize = PAGE_CACHE_SIZE;
51 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
52 sb->s_magic = SYSFS_MAGIC;
53 sb->s_op = &sysfs_ops;
54 sb->s_time_gran = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Tejun Heoe080e432007-07-18 14:29:06 +090056 /* get root inode, initialize and unlock it */
Eric W. Biederman4a67a1b2009-01-21 11:55:11 -080057 mutex_lock(&sysfs_mutex);
Tejun Heo061447a2013-11-28 14:54:39 -050058 inode = sysfs_get_inode(sb, sysfs_root_sd);
Eric W. Biederman4a67a1b2009-01-21 11:55:11 -080059 mutex_unlock(&sysfs_mutex);
Tejun Heofc9f54b2007-06-14 03:45:17 +090060 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 pr_debug("sysfs: could not get root inode\n");
62 return -ENOMEM;
63 }
64
Tejun Heoe080e432007-07-18 14:29:06 +090065 /* instantiate and link root dentry */
Al Viro48fde702012-01-08 22:15:13 -050066 root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (!root) {
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -070068 pr_debug("%s: could not get root dentry!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 return -ENOMEM;
70 }
Tejun Heo061447a2013-11-28 14:54:39 -050071 root->d_fsdata = sysfs_root_sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 sb->s_root = root;
Al Viro469796d2012-06-07 20:51:39 -040073 sb->s_d_op = &sysfs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return 0;
75}
76
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070077static int sysfs_test_super(struct super_block *sb, void *data)
78{
79 struct sysfs_super_info *sb_info = sysfs_info(sb);
80 struct sysfs_super_info *info = data;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070081
Tejun Heoc84a3b22013-11-23 18:01:46 -050082 return sb_info->ns == info->ns;
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070083}
84
85static int sysfs_set_super(struct super_block *sb, void *data)
86{
87 int error;
88 error = set_anon_super(sb, data);
89 if (!error)
90 sb->s_fs_info = data;
91 return error;
92}
93
Al Viroa685e082011-06-08 21:13:01 -040094static void free_sysfs_super_info(struct sysfs_super_info *info)
95{
Tejun Heo51a35e92013-11-28 14:54:37 -050096 kobj_ns_drop(KOBJ_NS_TYPE_NET, (void *)info->ns);
Al Viroa685e082011-06-08 21:13:01 -040097 kfree(info);
98}
99
Al Virod0e46f82010-07-26 13:30:36 +0400100static struct dentry *sysfs_mount(struct file_system_type *fs_type,
101 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700103 struct sysfs_super_info *info;
104 struct super_block *sb;
105 int error;
106
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -0700107 if (!(flags & MS_KERNMOUNT)) {
108 if (!capable(CAP_SYS_ADMIN) && !fs_fully_visible(fs_type))
109 return ERR_PTR(-EPERM);
110
Tejun Heoc84a3b22013-11-23 18:01:46 -0500111 if (!kobj_ns_current_may_mount(KOBJ_NS_TYPE_NET))
112 return ERR_PTR(-EPERM);
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -0700113 }
Eric W. Biederman87a8ebd2013-03-24 14:28:27 -0700114
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700115 info = kzalloc(sizeof(*info), GFP_KERNEL);
116 if (!info)
Al Virod0e46f82010-07-26 13:30:36 +0400117 return ERR_PTR(-ENOMEM);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700118
Tejun Heoc84a3b22013-11-23 18:01:46 -0500119 info->ns = kobj_ns_grab_current(KOBJ_NS_TYPE_NET);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700120
David Howells9249e172012-06-25 12:55:37 +0100121 sb = sget(fs_type, sysfs_test_super, sysfs_set_super, flags, info);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700122 if (IS_ERR(sb) || sb->s_fs_info != info)
Al Viroa685e082011-06-08 21:13:01 -0400123 free_sysfs_super_info(info);
Al Virod0e46f82010-07-26 13:30:36 +0400124 if (IS_ERR(sb))
125 return ERR_CAST(sb);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700126 if (!sb->s_root) {
Tejun Heoccc532d2013-11-28 14:54:36 -0500127 error = sysfs_fill_super(sb);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700128 if (error) {
129 deactivate_locked_super(sb);
Al Virod0e46f82010-07-26 13:30:36 +0400130 return ERR_PTR(error);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700131 }
132 sb->s_flags |= MS_ACTIVE;
133 }
134
Al Virod0e46f82010-07-26 13:30:36 +0400135 return dget(sb->s_root);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700136}
137
138static void sysfs_kill_sb(struct super_block *sb)
139{
140 struct sysfs_super_info *info = sysfs_info(sb);
Eric W. Biederman68d75ed2010-05-18 12:58:33 -0700141 /* Remove the superblock from fs_supers/s_instances
142 * so we can't find it, before freeing sysfs_super_info.
143 */
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700144 kill_anon_super(sb);
Al Viroa685e082011-06-08 21:13:01 -0400145 free_sysfs_super_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148static struct file_system_type sysfs_fs_type = {
149 .name = "sysfs",
Al Virod0e46f82010-07-26 13:30:36 +0400150 .mount = sysfs_mount,
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700151 .kill_sb = sysfs_kill_sb,
Eric W. Biederman4f326c02012-07-27 05:56:48 -0700152 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
155int __init sysfs_init(void)
156{
Tejun Heo9e30cc92013-11-28 14:54:38 -0500157 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
160 sizeof(struct sysfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +0900161 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (!sysfs_dir_cachep)
Tejun Heo9e30cc92013-11-28 14:54:38 -0500163 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700165 err = sysfs_inode_init();
166 if (err)
167 goto out_err;
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 err = register_filesystem(&sysfs_fs_type);
Tejun Heo9e30cc92013-11-28 14:54:38 -0500170 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 goto out_err;
Tejun Heo9e30cc92013-11-28 14:54:38 -0500172
173 return 0;
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175out_err:
176 kmem_cache_destroy(sysfs_dir_cachep);
177 sysfs_dir_cachep = NULL;
Tejun Heo9e30cc92013-11-28 14:54:38 -0500178 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}