blob: fbc7b65fe26267d776a105f5d37f01627edf44a2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mount.c - operations for initializing and mounting sysfs.
3 */
4
5#define DEBUG
6
7#include <linux/fs.h>
8#include <linux/mount.h>
9#include <linux/pagemap.h>
10#include <linux/init.h>
Oliver Neukum94bebf42006-12-20 10:52:44 +010011#include <asm/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include "sysfs.h"
14
15/* Random magic number */
16#define SYSFS_MAGIC 0x62656572
17
18struct vfsmount *sysfs_mount;
19struct super_block * sysfs_sb = NULL;
Christoph Lametere18b8902006-12-06 20:33:20 -080020struct kmem_cache *sysfs_dir_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080022static const struct super_operations sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 .statfs = simple_statfs,
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -070024 .drop_inode = sysfs_delete_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
Tejun Heo51225032007-06-14 04:27:25 +090027struct sysfs_dirent sysfs_root = {
Tejun Heo13b30862007-06-14 03:45:14 +090028 .s_count = ATOMIC_INIT(1),
Tejun Heob402d722007-06-14 04:27:21 +090029 .s_flags = SYSFS_ROOT,
Tejun Heofc9f54b2007-06-14 03:45:17 +090030 .s_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
Eric Sandeendc351252007-06-11 14:02:45 +090031 .s_ino = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
34static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
35{
36 struct inode *inode;
37 struct dentry *root;
38
39 sb->s_blocksize = PAGE_CACHE_SIZE;
40 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
41 sb->s_magic = SYSFS_MAGIC;
42 sb->s_op = &sysfs_ops;
43 sb->s_time_gran = 1;
44 sysfs_sb = sb;
45
Tejun Heoe080e432007-07-18 14:29:06 +090046 /* get root inode, initialize and unlock it */
47 inode = sysfs_get_inode(&sysfs_root);
Tejun Heofc9f54b2007-06-14 03:45:17 +090048 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 pr_debug("sysfs: could not get root inode\n");
50 return -ENOMEM;
51 }
52
Tejun Heofc9f54b2007-06-14 03:45:17 +090053 inode->i_op = &sysfs_dir_inode_operations;
54 inode->i_fop = &sysfs_dir_operations;
Tejun Heoe080e432007-07-18 14:29:06 +090055 inc_nlink(inode); /* directory, account for "." */
56 unlock_new_inode(inode);
Tejun Heofc9f54b2007-06-14 03:45:17 +090057
Tejun Heoe080e432007-07-18 14:29:06 +090058 /* instantiate and link root dentry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 root = d_alloc_root(inode);
60 if (!root) {
61 pr_debug("%s: could not get root dentry!\n",__FUNCTION__);
62 iput(inode);
63 return -ENOMEM;
64 }
Tejun Heo0b8ead82007-06-14 03:45:18 +090065 sysfs_root.s_dentry = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 root->d_fsdata = &sysfs_root;
67 sb->s_root = root;
68 return 0;
69}
70
David Howells454e2392006-06-23 02:02:57 -070071static int sysfs_get_sb(struct file_system_type *fs_type,
72 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
David Howells454e2392006-06-23 02:02:57 -070074 return get_sb_single(fs_type, flags, data, sysfs_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77static struct file_system_type sysfs_fs_type = {
78 .name = "sysfs",
79 .get_sb = sysfs_get_sb,
80 .kill_sb = kill_litter_super,
81};
82
83int __init sysfs_init(void)
84{
85 int err = -ENOMEM;
86
87 sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache",
88 sizeof(struct sysfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +090089 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (!sysfs_dir_cachep)
91 goto out;
92
93 err = register_filesystem(&sysfs_fs_type);
94 if (!err) {
95 sysfs_mount = kern_mount(&sysfs_fs_type);
96 if (IS_ERR(sysfs_mount)) {
97 printk(KERN_ERR "sysfs: could not mount!\n");
98 err = PTR_ERR(sysfs_mount);
99 sysfs_mount = NULL;
100 unregister_filesystem(&sysfs_fs_type);
101 goto out_err;
102 }
103 } else
104 goto out_err;
105out:
106 return err;
107out_err:
108 kmem_cache_destroy(sysfs_dir_cachep);
109 sysfs_dir_cachep = NULL;
110 goto out;
111}