Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Tejun Heo | 6d66f5c | 2007-09-20 17:31:38 +0900 | [diff] [blame] | 2 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
Bin Wang | 6b8fbde | 2012-12-06 17:08:56 +0800 | [diff] [blame] | 13 | #define DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | #include <linux/fs.h> |
| 16 | #include <linux/mount.h> |
| 17 | #include <linux/pagemap.h> |
| 18 | #include <linux/init.h> |
Neil Brown | f1282c8 | 2008-07-16 08:58:04 +1000 | [diff] [blame] | 19 | #include <linux/module.h> |
Qinghuang Feng | 8231f2f | 2009-01-14 15:45:13 +0800 | [diff] [blame] | 20 | #include <linux/magic.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Eric W. Biederman | 87a8ebd | 2013-03-24 14:28:27 -0700 | [diff] [blame] | 22 | #include <linux/user_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | #include "sysfs.h" |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 27 | struct kmem_cache *sysfs_dir_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 29 | static const struct super_operations sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | .statfs = simple_statfs, |
Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 31 | .drop_inode = generic_delete_inode, |
Al Viro | 01cd9fe | 2010-06-04 22:21:54 -0400 | [diff] [blame] | 32 | .evict_inode = sysfs_evict_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | }; |
| 34 | |
Tejun Heo | 061447a | 2013-11-28 14:54:39 -0500 | [diff] [blame^] | 35 | static struct sysfs_dirent sysfs_root = { |
Tejun Heo | dc2f75f | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 36 | .s_name = "", |
Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 37 | .s_count = ATOMIC_INIT(1), |
Tejun Heo | c84a3b2 | 2013-11-23 18:01:46 -0500 | [diff] [blame] | 38 | .s_flags = SYSFS_DIR, |
Vitaly Kuznetsov | c56d8a7 | 2012-01-17 12:17:22 +0000 | [diff] [blame] | 39 | .s_mode = S_IFDIR | S_IRUGO | S_IXUGO, |
Eric Sandeen | dc35125 | 2007-06-11 14:02:45 +0900 | [diff] [blame] | 40 | .s_ino = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
Tejun Heo | 061447a | 2013-11-28 14:54:39 -0500 | [diff] [blame^] | 43 | struct sysfs_dirent *sysfs_root_sd = &sysfs_root; |
| 44 | |
Tejun Heo | ccc532d | 2013-11-28 14:54:36 -0500 | [diff] [blame] | 45 | static int sysfs_fill_super(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
| 47 | struct inode *inode; |
| 48 | struct dentry *root; |
| 49 | |
| 50 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 51 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
| 52 | sb->s_magic = SYSFS_MAGIC; |
| 53 | sb->s_op = &sysfs_ops; |
| 54 | sb->s_time_gran = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Tejun Heo | e080e43 | 2007-07-18 14:29:06 +0900 | [diff] [blame] | 56 | /* get root inode, initialize and unlock it */ |
Eric W. Biederman | 4a67a1b | 2009-01-21 11:55:11 -0800 | [diff] [blame] | 57 | mutex_lock(&sysfs_mutex); |
Tejun Heo | 061447a | 2013-11-28 14:54:39 -0500 | [diff] [blame^] | 58 | inode = sysfs_get_inode(sb, sysfs_root_sd); |
Eric W. Biederman | 4a67a1b | 2009-01-21 11:55:11 -0800 | [diff] [blame] | 59 | mutex_unlock(&sysfs_mutex); |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 60 | if (!inode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | pr_debug("sysfs: could not get root inode\n"); |
| 62 | return -ENOMEM; |
| 63 | } |
| 64 | |
Tejun Heo | e080e43 | 2007-07-18 14:29:06 +0900 | [diff] [blame] | 65 | /* instantiate and link root dentry */ |
Al Viro | 48fde70 | 2012-01-08 22:15:13 -0500 | [diff] [blame] | 66 | root = d_make_root(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | if (!root) { |
Greg Kroah-Hartman | 1b18dc2 | 2013-08-21 16:28:26 -0700 | [diff] [blame] | 68 | pr_debug("%s: could not get root dentry!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | return -ENOMEM; |
| 70 | } |
Tejun Heo | 061447a | 2013-11-28 14:54:39 -0500 | [diff] [blame^] | 71 | root->d_fsdata = sysfs_root_sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | sb->s_root = root; |
Al Viro | 469796d | 2012-06-07 20:51:39 -0400 | [diff] [blame] | 73 | sb->s_d_op = &sysfs_dentry_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | return 0; |
| 75 | } |
| 76 | |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 77 | static int sysfs_test_super(struct super_block *sb, void *data) |
| 78 | { |
| 79 | struct sysfs_super_info *sb_info = sysfs_info(sb); |
| 80 | struct sysfs_super_info *info = data; |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 81 | |
Tejun Heo | c84a3b2 | 2013-11-23 18:01:46 -0500 | [diff] [blame] | 82 | return sb_info->ns == info->ns; |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | static int sysfs_set_super(struct super_block *sb, void *data) |
| 86 | { |
| 87 | int error; |
| 88 | error = set_anon_super(sb, data); |
| 89 | if (!error) |
| 90 | sb->s_fs_info = data; |
| 91 | return error; |
| 92 | } |
| 93 | |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 94 | static void free_sysfs_super_info(struct sysfs_super_info *info) |
| 95 | { |
Tejun Heo | 51a35e9 | 2013-11-28 14:54:37 -0500 | [diff] [blame] | 96 | kobj_ns_drop(KOBJ_NS_TYPE_NET, (void *)info->ns); |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 97 | kfree(info); |
| 98 | } |
| 99 | |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 100 | static struct dentry *sysfs_mount(struct file_system_type *fs_type, |
| 101 | int flags, const char *dev_name, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 103 | struct sysfs_super_info *info; |
| 104 | struct super_block *sb; |
| 105 | int error; |
| 106 | |
Eric W. Biederman | 7dc5dbc | 2013-03-25 20:07:01 -0700 | [diff] [blame] | 107 | if (!(flags & MS_KERNMOUNT)) { |
| 108 | if (!capable(CAP_SYS_ADMIN) && !fs_fully_visible(fs_type)) |
| 109 | return ERR_PTR(-EPERM); |
| 110 | |
Tejun Heo | c84a3b2 | 2013-11-23 18:01:46 -0500 | [diff] [blame] | 111 | if (!kobj_ns_current_may_mount(KOBJ_NS_TYPE_NET)) |
| 112 | return ERR_PTR(-EPERM); |
Eric W. Biederman | 7dc5dbc | 2013-03-25 20:07:01 -0700 | [diff] [blame] | 113 | } |
Eric W. Biederman | 87a8ebd | 2013-03-24 14:28:27 -0700 | [diff] [blame] | 114 | |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 115 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 116 | if (!info) |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 117 | return ERR_PTR(-ENOMEM); |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 118 | |
Tejun Heo | c84a3b2 | 2013-11-23 18:01:46 -0500 | [diff] [blame] | 119 | info->ns = kobj_ns_grab_current(KOBJ_NS_TYPE_NET); |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 120 | |
David Howells | 9249e17 | 2012-06-25 12:55:37 +0100 | [diff] [blame] | 121 | sb = sget(fs_type, sysfs_test_super, sysfs_set_super, flags, info); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 122 | if (IS_ERR(sb) || sb->s_fs_info != info) |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 123 | free_sysfs_super_info(info); |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 124 | if (IS_ERR(sb)) |
| 125 | return ERR_CAST(sb); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 126 | if (!sb->s_root) { |
Tejun Heo | ccc532d | 2013-11-28 14:54:36 -0500 | [diff] [blame] | 127 | error = sysfs_fill_super(sb); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 128 | if (error) { |
| 129 | deactivate_locked_super(sb); |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 130 | return ERR_PTR(error); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 131 | } |
| 132 | sb->s_flags |= MS_ACTIVE; |
| 133 | } |
| 134 | |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 135 | return dget(sb->s_root); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | static void sysfs_kill_sb(struct super_block *sb) |
| 139 | { |
| 140 | struct sysfs_super_info *info = sysfs_info(sb); |
Eric W. Biederman | 68d75ed | 2010-05-18 12:58:33 -0700 | [diff] [blame] | 141 | /* Remove the superblock from fs_supers/s_instances |
| 142 | * so we can't find it, before freeing sysfs_super_info. |
| 143 | */ |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 144 | kill_anon_super(sb); |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 145 | free_sysfs_super_info(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | static struct file_system_type sysfs_fs_type = { |
| 149 | .name = "sysfs", |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 150 | .mount = sysfs_mount, |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 151 | .kill_sb = sysfs_kill_sb, |
Eric W. Biederman | 4f326c0 | 2012-07-27 05:56:48 -0700 | [diff] [blame] | 152 | .fs_flags = FS_USERNS_MOUNT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | }; |
| 154 | |
| 155 | int __init sysfs_init(void) |
| 156 | { |
Tejun Heo | 9e30cc9 | 2013-11-28 14:54:38 -0500 | [diff] [blame] | 157 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
| 159 | sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache", |
| 160 | sizeof(struct sysfs_dirent), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 161 | 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | if (!sysfs_dir_cachep) |
Tejun Heo | 9e30cc9 | 2013-11-28 14:54:38 -0500 | [diff] [blame] | 163 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 165 | err = sysfs_inode_init(); |
| 166 | if (err) |
| 167 | goto out_err; |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | err = register_filesystem(&sysfs_fs_type); |
Tejun Heo | 9e30cc9 | 2013-11-28 14:54:38 -0500 | [diff] [blame] | 170 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | goto out_err; |
Tejun Heo | 9e30cc9 | 2013-11-28 14:54:38 -0500 | [diff] [blame] | 172 | |
| 173 | return 0; |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | out_err: |
| 176 | kmem_cache_destroy(sysfs_dir_cachep); |
| 177 | sysfs_dir_cachep = NULL; |
Tejun Heo | 9e30cc9 | 2013-11-28 14:54:38 -0500 | [diff] [blame] | 178 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |