blob: afd83273e6cea8112e1570c8835bfa829303b2f8 [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),
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070039 .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) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -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;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070080 enum kobj_ns_type type;
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070081 int found = 1;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070082
83 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) {
84 if (sb_info->ns[type] != info->ns[type])
85 found = 0;
86 }
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070087 return found;
88}
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{
101 int type;
102 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++)
103 kobj_ns_drop(type, info->ns[type]);
104 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;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700111 enum kobj_ns_type type;
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700112 struct super_block *sb;
113 int error;
114
Eric W. Biederman87a8ebd2013-03-24 14:28:27 -0700115 if (!(flags & MS_KERNMOUNT) && !current_user_ns()->may_mount_sysfs)
116 return ERR_PTR(-EPERM);
117
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700118 info = kzalloc(sizeof(*info), GFP_KERNEL);
119 if (!info)
Al Virod0e46f82010-07-26 13:30:36 +0400120 return ERR_PTR(-ENOMEM);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700121
122 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++)
Al Viroa685e082011-06-08 21:13:01 -0400123 info->ns[type] = kobj_ns_grab_current(type);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700124
David Howells9249e172012-06-25 12:55:37 +0100125 sb = sget(fs_type, sysfs_test_super, sysfs_set_super, flags, info);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700126 if (IS_ERR(sb) || sb->s_fs_info != info)
Al Viroa685e082011-06-08 21:13:01 -0400127 free_sysfs_super_info(info);
Al Virod0e46f82010-07-26 13:30:36 +0400128 if (IS_ERR(sb))
129 return ERR_CAST(sb);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700130 if (!sb->s_root) {
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700131 error = sysfs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
132 if (error) {
133 deactivate_locked_super(sb);
Al Virod0e46f82010-07-26 13:30:36 +0400134 return ERR_PTR(error);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700135 }
136 sb->s_flags |= MS_ACTIVE;
137 }
138
Al Virod0e46f82010-07-26 13:30:36 +0400139 return dget(sb->s_root);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700140}
141
142static void sysfs_kill_sb(struct super_block *sb)
143{
144 struct sysfs_super_info *info = sysfs_info(sb);
Eric W. Biederman68d75ed2010-05-18 12:58:33 -0700145 /* Remove the superblock from fs_supers/s_instances
146 * so we can't find it, before freeing sysfs_super_info.
147 */
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700148 kill_anon_super(sb);
Al Viroa685e082011-06-08 21:13:01 -0400149 free_sysfs_super_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152static struct file_system_type sysfs_fs_type = {
153 .name = "sysfs",
Al Virod0e46f82010-07-26 13:30:36 +0400154 .mount = sysfs_mount,
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700155 .kill_sb = sysfs_kill_sb,
Eric W. Biederman4f326c02012-07-27 05:56:48 -0700156 .fs_flags = FS_USERNS_MOUNT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
159int __init sysfs_init(void)
160{
161 int err = -ENOMEM;
162
163 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
164 sizeof(struct sysfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +0900165 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (!sysfs_dir_cachep)
167 goto out;
168
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700169 err = sysfs_inode_init();
170 if (err)
171 goto out_err;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 err = register_filesystem(&sysfs_fs_type);
174 if (!err) {
Al Virod0e46f82010-07-26 13:30:36 +0400175 sysfs_mnt = kern_mount(&sysfs_fs_type);
176 if (IS_ERR(sysfs_mnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 printk(KERN_ERR "sysfs: could not mount!\n");
Al Virod0e46f82010-07-26 13:30:36 +0400178 err = PTR_ERR(sysfs_mnt);
179 sysfs_mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 unregister_filesystem(&sysfs_fs_type);
181 goto out_err;
182 }
183 } else
184 goto out_err;
185out:
186 return err;
187out_err:
188 kmem_cache_destroy(sysfs_dir_cachep);
189 sysfs_dir_cachep = NULL;
190 goto out;
191}
Neil Brownf1282c82008-07-16 08:58:04 +1000192
193#undef sysfs_get
194struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
195{
196 return __sysfs_get(sd);
197}
198EXPORT_SYMBOL_GPL(sysfs_get);
199
200#undef sysfs_put
201void sysfs_put(struct sysfs_dirent *sd)
202{
203 __sysfs_put(sd);
204}
205EXPORT_SYMBOL_GPL(sysfs_put);