Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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> |
| 11 | |
| 12 | #include "sysfs.h" |
| 13 | |
| 14 | /* Random magic number */ |
| 15 | #define SYSFS_MAGIC 0x62656572 |
| 16 | |
| 17 | struct vfsmount *sysfs_mount; |
| 18 | struct super_block * sysfs_sb = NULL; |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 19 | struct kmem_cache *sysfs_dir_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 21 | static const struct super_operations sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | .statfs = simple_statfs, |
Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 23 | .drop_inode = generic_delete_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | }; |
| 25 | |
Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 26 | struct sysfs_dirent sysfs_root = { |
Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 27 | .s_count = ATOMIC_INIT(1), |
Tejun Heo | b402d72 | 2007-06-14 04:27:21 +0900 | [diff] [blame] | 28 | .s_flags = SYSFS_ROOT, |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 29 | .s_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO, |
Eric Sandeen | dc35125 | 2007-06-11 14:02:45 +0900 | [diff] [blame] | 30 | .s_ino = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | static int sysfs_fill_super(struct super_block *sb, void *data, int silent) |
| 34 | { |
| 35 | struct inode *inode; |
| 36 | struct dentry *root; |
| 37 | |
| 38 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 39 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
| 40 | sb->s_magic = SYSFS_MAGIC; |
| 41 | sb->s_op = &sysfs_ops; |
| 42 | sb->s_time_gran = 1; |
| 43 | sysfs_sb = sb; |
| 44 | |
Tejun Heo | e080e43 | 2007-07-18 14:29:06 +0900 | [diff] [blame] | 45 | /* get root inode, initialize and unlock it */ |
| 46 | inode = sysfs_get_inode(&sysfs_root); |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 47 | if (!inode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | pr_debug("sysfs: could not get root inode\n"); |
| 49 | return -ENOMEM; |
| 50 | } |
| 51 | |
Tejun Heo | e080e43 | 2007-07-18 14:29:06 +0900 | [diff] [blame] | 52 | /* instantiate and link root dentry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | root = d_alloc_root(inode); |
| 54 | if (!root) { |
| 55 | pr_debug("%s: could not get root dentry!\n",__FUNCTION__); |
| 56 | iput(inode); |
| 57 | return -ENOMEM; |
| 58 | } |
Tejun Heo | 0b8ead8 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 59 | sysfs_root.s_dentry = root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | root->d_fsdata = &sysfs_root; |
| 61 | sb->s_root = root; |
| 62 | return 0; |
| 63 | } |
| 64 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 65 | static int sysfs_get_sb(struct file_system_type *fs_type, |
| 66 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | { |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 68 | return get_sb_single(fs_type, flags, data, sysfs_fill_super, mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | static struct file_system_type sysfs_fs_type = { |
| 72 | .name = "sysfs", |
| 73 | .get_sb = sysfs_get_sb, |
Eric W. Biederman | 0333cd8 | 2007-08-20 21:36:29 +0900 | [diff] [blame^] | 74 | .kill_sb = kill_anon_super, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | }; |
| 76 | |
| 77 | int __init sysfs_init(void) |
| 78 | { |
| 79 | int err = -ENOMEM; |
| 80 | |
| 81 | sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache", |
| 82 | sizeof(struct sysfs_dirent), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 83 | 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | if (!sysfs_dir_cachep) |
| 85 | goto out; |
| 86 | |
| 87 | err = register_filesystem(&sysfs_fs_type); |
| 88 | if (!err) { |
| 89 | sysfs_mount = kern_mount(&sysfs_fs_type); |
| 90 | if (IS_ERR(sysfs_mount)) { |
| 91 | printk(KERN_ERR "sysfs: could not mount!\n"); |
| 92 | err = PTR_ERR(sysfs_mount); |
| 93 | sysfs_mount = NULL; |
| 94 | unregister_filesystem(&sysfs_fs_type); |
| 95 | goto out_err; |
| 96 | } |
| 97 | } else |
| 98 | goto out_err; |
| 99 | out: |
| 100 | return err; |
| 101 | out_err: |
| 102 | kmem_cache_destroy(sysfs_dir_cachep); |
| 103 | sysfs_dir_cachep = NULL; |
| 104 | goto out; |
| 105 | } |