blob: 8133ca36ee0eaf320593afbf7e33d7c8c9e06a82 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "sysfs.h"
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Eric W. Biederman7d0c7d62007-08-20 21:36:30 +090025static struct vfsmount *sysfs_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026struct super_block * sysfs_sb = NULL;
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,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
Tejun Heo51225032007-06-14 04:27:25 +090034struct sysfs_dirent sysfs_root = {
Tejun Heodc2f75f2007-09-20 16:05:12 +090035 .s_name = "",
Tejun Heo13b30862007-06-14 03:45:14 +090036 .s_count = ATOMIC_INIT(1),
Tejun Heodc2f75f2007-09-20 16:05:12 +090037 .s_flags = SYSFS_DIR,
Tejun Heofc9f54b2007-06-14 03:45:17 +090038 .s_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
Eric Sandeendc351252007-06-11 14:02:45 +090039 .s_ino = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
42static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
43{
44 struct inode *inode;
45 struct dentry *root;
46
47 sb->s_blocksize = PAGE_CACHE_SIZE;
48 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
49 sb->s_magic = SYSFS_MAGIC;
50 sb->s_op = &sysfs_ops;
51 sb->s_time_gran = 1;
52 sysfs_sb = sb;
53
Tejun Heoe080e432007-07-18 14:29:06 +090054 /* get root inode, initialize and unlock it */
55 inode = sysfs_get_inode(&sysfs_root);
Tejun Heofc9f54b2007-06-14 03:45:17 +090056 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 pr_debug("sysfs: could not get root inode\n");
58 return -ENOMEM;
59 }
60
Tejun Heoe080e432007-07-18 14:29:06 +090061 /* instantiate and link root dentry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 root = d_alloc_root(inode);
63 if (!root) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -070064 pr_debug("%s: could not get root dentry!\n",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 iput(inode);
66 return -ENOMEM;
67 }
68 root->d_fsdata = &sysfs_root;
69 sb->s_root = root;
70 return 0;
71}
72
David Howells454e2392006-06-23 02:02:57 -070073static int sysfs_get_sb(struct file_system_type *fs_type,
74 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
David Howells454e2392006-06-23 02:02:57 -070076 return get_sb_single(fs_type, flags, data, sysfs_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79static struct file_system_type sysfs_fs_type = {
80 .name = "sysfs",
81 .get_sb = sysfs_get_sb,
Eric W. Biederman0333cd82007-08-20 21:36:29 +090082 .kill_sb = kill_anon_super,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
85int __init sysfs_init(void)
86{
87 int err = -ENOMEM;
88
89 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
90 sizeof(struct sysfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +090091 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (!sysfs_dir_cachep)
93 goto out;
94
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070095 err = sysfs_inode_init();
96 if (err)
97 goto out_err;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 err = register_filesystem(&sysfs_fs_type);
100 if (!err) {
101 sysfs_mount = kern_mount(&sysfs_fs_type);
102 if (IS_ERR(sysfs_mount)) {
103 printk(KERN_ERR "sysfs: could not mount!\n");
104 err = PTR_ERR(sysfs_mount);
105 sysfs_mount = NULL;
106 unregister_filesystem(&sysfs_fs_type);
107 goto out_err;
108 }
109 } else
110 goto out_err;
111out:
112 return err;
113out_err:
114 kmem_cache_destroy(sysfs_dir_cachep);
115 sysfs_dir_cachep = NULL;
116 goto out;
117}
Neil Brownf1282c82008-07-16 08:58:04 +1000118
119#undef sysfs_get
120struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
121{
122 return __sysfs_get(sd);
123}
124EXPORT_SYMBOL_GPL(sysfs_get);
125
126#undef sysfs_put
127void sysfs_put(struct sysfs_dirent *sd)
128{
129 __sysfs_put(sd);
130}
131EXPORT_SYMBOL_GPL(sysfs_put);