blob: 52c3bdb66a849b98df33cefccff5b6cc0a7ded8c [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
13#define DEBUG
14
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include "sysfs.h"
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Al Virod0e46f82010-07-26 13:30:36 +040026static struct vfsmount *sysfs_mnt;
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 Heo51225032007-06-14 04:27:25 +090035struct 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),
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070038 .s_flags = SYSFS_DIR | (KOBJ_NS_TYPE_NONE << SYSFS_NS_TYPE_SHIFT),
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
43static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Tejun Heoe080e432007-07-18 14:29:06 +090054 /* get root inode, initialize and unlock it */
Eric W. Biederman4a67a1b2009-01-21 11:55:11 -080055 mutex_lock(&sysfs_mutex);
Eric W. Biedermanfac26222010-02-12 19:22:27 -080056 inode = sysfs_get_inode(sb, &sysfs_root);
Eric W. Biederman4a67a1b2009-01-21 11:55:11 -080057 mutex_unlock(&sysfs_mutex);
Tejun Heofc9f54b2007-06-14 03:45:17 +090058 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 pr_debug("sysfs: could not get root inode\n");
60 return -ENOMEM;
61 }
62
Tejun Heoe080e432007-07-18 14:29:06 +090063 /* instantiate and link root dentry */
Al Viro48fde702012-01-08 22:15:13 -050064 root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (!root) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -070066 pr_debug("%s: could not get root dentry!\n",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return -ENOMEM;
68 }
69 root->d_fsdata = &sysfs_root;
70 sb->s_root = root;
71 return 0;
72}
73
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070074static int sysfs_test_super(struct super_block *sb, void *data)
75{
76 struct sysfs_super_info *sb_info = sysfs_info(sb);
77 struct sysfs_super_info *info = data;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070078 enum kobj_ns_type type;
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070079 int found = 1;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070080
81 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++) {
82 if (sb_info->ns[type] != info->ns[type])
83 found = 0;
84 }
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -070085 return found;
86}
87
88static int sysfs_set_super(struct super_block *sb, void *data)
89{
90 int error;
91 error = set_anon_super(sb, data);
92 if (!error)
93 sb->s_fs_info = data;
94 return error;
95}
96
Al Viroa685e082011-06-08 21:13:01 -040097static void free_sysfs_super_info(struct sysfs_super_info *info)
98{
99 int type;
100 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++)
101 kobj_ns_drop(type, info->ns[type]);
102 kfree(info);
103}
104
Al Virod0e46f82010-07-26 13:30:36 +0400105static struct dentry *sysfs_mount(struct file_system_type *fs_type,
106 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700108 struct sysfs_super_info *info;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700109 enum kobj_ns_type type;
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700110 struct super_block *sb;
111 int error;
112
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700113 info = kzalloc(sizeof(*info), GFP_KERNEL);
114 if (!info)
Al Virod0e46f82010-07-26 13:30:36 +0400115 return ERR_PTR(-ENOMEM);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700116
117 for (type = KOBJ_NS_TYPE_NONE; type < KOBJ_NS_TYPES; type++)
Al Viroa685e082011-06-08 21:13:01 -0400118 info->ns[type] = kobj_ns_grab_current(type);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700119
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700120 sb = sget(fs_type, sysfs_test_super, sysfs_set_super, info);
121 if (IS_ERR(sb) || sb->s_fs_info != info)
Al Viroa685e082011-06-08 21:13:01 -0400122 free_sysfs_super_info(info);
Al Virod0e46f82010-07-26 13:30:36 +0400123 if (IS_ERR(sb))
124 return ERR_CAST(sb);
Eric W. Biederman9e7fdd22010-03-30 11:31:24 -0700125 if (!sb->s_root) {
126 sb->s_flags = flags;
127 error = sysfs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
128 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154int __init sysfs_init(void)
155{
156 int err = -ENOMEM;
157
158 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
159 sizeof(struct sysfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +0900160 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (!sysfs_dir_cachep)
162 goto out;
163
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700164 err = sysfs_inode_init();
165 if (err)
166 goto out_err;
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 err = register_filesystem(&sysfs_fs_type);
169 if (!err) {
Al Virod0e46f82010-07-26 13:30:36 +0400170 sysfs_mnt = kern_mount(&sysfs_fs_type);
171 if (IS_ERR(sysfs_mnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 printk(KERN_ERR "sysfs: could not mount!\n");
Al Virod0e46f82010-07-26 13:30:36 +0400173 err = PTR_ERR(sysfs_mnt);
174 sysfs_mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 unregister_filesystem(&sysfs_fs_type);
176 goto out_err;
177 }
178 } else
179 goto out_err;
180out:
181 return err;
182out_err:
183 kmem_cache_destroy(sysfs_dir_cachep);
184 sysfs_dir_cachep = NULL;
185 goto out;
186}
Neil Brownf1282c82008-07-16 08:58:04 +1000187
188#undef sysfs_get
189struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
190{
191 return __sysfs_get(sd);
192}
193EXPORT_SYMBOL_GPL(sysfs_get);
194
195#undef sysfs_put
196void sysfs_put(struct sysfs_dirent *sd)
197{
198 __sysfs_put(sd);
199}
200EXPORT_SYMBOL_GPL(sysfs_put);