blob: ab343e371d64682f678646ed02615171e73b2d31 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include "sysfs.h"
22
23/* Random magic number */
24#define SYSFS_MAGIC 0x62656572
25
Eric W. Biederman7d0c7d62007-08-20 21:36:30 +090026static struct vfsmount *sysfs_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027struct super_block * sysfs_sb = NULL;
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,
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),
Tejun Heodc2f75f2007-09-20 16:05:12 +090038 .s_flags = SYSFS_DIR,
Tejun Heofc9f54b2007-06-14 03:45:17 +090039 .s_mode = S_IFDIR | S_IRWXU | 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;
53 sysfs_sb = sb;
54
Tejun Heoe080e432007-07-18 14:29:06 +090055 /* get root inode, initialize and unlock it */
56 inode = sysfs_get_inode(&sysfs_root);
Tejun Heofc9f54b2007-06-14 03:45:17 +090057 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 pr_debug("sysfs: could not get root inode\n");
59 return -ENOMEM;
60 }
61
Tejun Heoe080e432007-07-18 14:29:06 +090062 /* instantiate and link root dentry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 root = d_alloc_root(inode);
64 if (!root) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -070065 pr_debug("%s: could not get root dentry!\n",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 iput(inode);
67 return -ENOMEM;
68 }
69 root->d_fsdata = &sysfs_root;
70 sb->s_root = root;
71 return 0;
72}
73
David Howells454e2392006-06-23 02:02:57 -070074static int sysfs_get_sb(struct file_system_type *fs_type,
75 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
David Howells454e2392006-06-23 02:02:57 -070077 return get_sb_single(fs_type, flags, data, sysfs_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80static struct file_system_type sysfs_fs_type = {
81 .name = "sysfs",
82 .get_sb = sysfs_get_sb,
Eric W. Biederman0333cd82007-08-20 21:36:29 +090083 .kill_sb = kill_anon_super,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
86int __init sysfs_init(void)
87{
88 int err = -ENOMEM;
89
90 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
91 sizeof(struct sysfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +090092 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if (!sysfs_dir_cachep)
94 goto out;
95
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070096 err = sysfs_inode_init();
97 if (err)
98 goto out_err;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 err = register_filesystem(&sysfs_fs_type);
101 if (!err) {
102 sysfs_mount = kern_mount(&sysfs_fs_type);
103 if (IS_ERR(sysfs_mount)) {
104 printk(KERN_ERR "sysfs: could not mount!\n");
105 err = PTR_ERR(sysfs_mount);
106 sysfs_mount = NULL;
107 unregister_filesystem(&sysfs_fs_type);
108 goto out_err;
109 }
110 } else
111 goto out_err;
112out:
113 return err;
114out_err:
115 kmem_cache_destroy(sysfs_dir_cachep);
116 sysfs_dir_cachep = NULL;
117 goto out;
118}
Neil Brownf1282c82008-07-16 08:58:04 +1000119
120#undef sysfs_get
121struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
122{
123 return __sysfs_get(sd);
124}
125EXPORT_SYMBOL_GPL(sysfs_get);
126
127#undef sysfs_put
128void sysfs_put(struct sysfs_dirent *sd)
129{
130 __sysfs_put(sd);
131}
132EXPORT_SYMBOL_GPL(sysfs_put);