blob: d0e160307c5dba54eceb086885ae3c7efd939efa [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
27static struct sysfs_dirent sysfs_root = {
Tejun Heo13b30862007-06-14 03:45:14 +090028 .s_count = ATOMIC_INIT(1),
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 .s_sibling = LIST_HEAD_INIT(sysfs_root.s_sibling),
30 .s_children = LIST_HEAD_INIT(sysfs_root.s_children),
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 .s_type = SYSFS_ROOT,
Tejun Heofc9f54b2007-06-14 03:45:17 +090032 .s_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
Maneesh Soni82155342005-05-31 10:39:52 +053033 .s_iattr = NULL,
Eric Sandeendc351252007-06-11 14:02:45 +090034 .s_ino = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
36
37static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
38{
39 struct inode *inode;
40 struct dentry *root;
41
42 sb->s_blocksize = PAGE_CACHE_SIZE;
43 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
44 sb->s_magic = SYSFS_MAGIC;
45 sb->s_op = &sysfs_ops;
46 sb->s_time_gran = 1;
47 sysfs_sb = sb;
48
Tejun Heofc9f54b2007-06-14 03:45:17 +090049 inode = new_inode(sysfs_sb);
50 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 pr_debug("sysfs: could not get root inode\n");
52 return -ENOMEM;
53 }
54
Tejun Heofc9f54b2007-06-14 03:45:17 +090055 sysfs_init_inode(&sysfs_root, inode);
56
57 inode->i_op = &sysfs_dir_inode_operations;
58 inode->i_fop = &sysfs_dir_operations;
59 /* directory inodes start off with i_nlink == 2 (for "." entry) */
60 inc_nlink(inode);
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 root = d_alloc_root(inode);
63 if (!root) {
64 pr_debug("%s: could not get root dentry!\n",__FUNCTION__);
65 iput(inode);
66 return -ENOMEM;
67 }
Tejun Heo0b8ead82007-06-14 03:45:18 +090068 sysfs_root.s_dentry = root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 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,
83 .kill_sb = kill_litter_super,
84};
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),
92 0, 0, NULL, NULL);
93 if (!sysfs_dir_cachep)
94 goto out;
95
96 err = register_filesystem(&sysfs_fs_type);
97 if (!err) {
98 sysfs_mount = kern_mount(&sysfs_fs_type);
99 if (IS_ERR(sysfs_mount)) {
100 printk(KERN_ERR "sysfs: could not mount!\n");
101 err = PTR_ERR(sysfs_mount);
102 sysfs_mount = NULL;
103 unregister_filesystem(&sysfs_fs_type);
104 goto out_err;
105 }
106 } else
107 goto out_err;
108out:
109 return err;
110out_err:
111 kmem_cache_destroy(sysfs_dir_cachep);
112 sysfs_dir_cachep = NULL;
113 goto out;
114}