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 | ba7443b | 2013-11-28 14:54:40 -0500 | [diff] [blame] | 35 | static struct kernfs_root *sysfs_root; |
| 36 | struct sysfs_dirent *sysfs_root_sd; |
Tejun Heo | 061447a | 2013-11-28 14:54:39 -0500 | [diff] [blame] | 37 | |
Tejun Heo | ccc532d | 2013-11-28 14:54:36 -0500 | [diff] [blame] | 38 | static int sysfs_fill_super(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | { |
Tejun Heo | df394fb | 2013-11-28 14:54:42 -0500 | [diff] [blame] | 40 | struct sysfs_super_info *info = sysfs_info(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | struct inode *inode; |
| 42 | struct dentry *root; |
| 43 | |
| 44 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 45 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
| 46 | sb->s_magic = SYSFS_MAGIC; |
| 47 | sb->s_op = &sysfs_ops; |
| 48 | sb->s_time_gran = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Tejun Heo | e080e43 | 2007-07-18 14:29:06 +0900 | [diff] [blame] | 50 | /* get root inode, initialize and unlock it */ |
Eric W. Biederman | 4a67a1b | 2009-01-21 11:55:11 -0800 | [diff] [blame] | 51 | mutex_lock(&sysfs_mutex); |
Tejun Heo | df394fb | 2013-11-28 14:54:42 -0500 | [diff] [blame] | 52 | inode = sysfs_get_inode(sb, info->root->sd); |
Eric W. Biederman | 4a67a1b | 2009-01-21 11:55:11 -0800 | [diff] [blame] | 53 | mutex_unlock(&sysfs_mutex); |
Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 54 | if (!inode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | pr_debug("sysfs: could not get root inode\n"); |
| 56 | return -ENOMEM; |
| 57 | } |
| 58 | |
Tejun Heo | e080e43 | 2007-07-18 14:29:06 +0900 | [diff] [blame] | 59 | /* instantiate and link root dentry */ |
Al Viro | 48fde70 | 2012-01-08 22:15:13 -0500 | [diff] [blame] | 60 | root = d_make_root(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | if (!root) { |
Greg Kroah-Hartman | 1b18dc2 | 2013-08-21 16:28:26 -0700 | [diff] [blame] | 62 | pr_debug("%s: could not get root dentry!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | return -ENOMEM; |
| 64 | } |
Tejun Heo | df394fb | 2013-11-28 14:54:42 -0500 | [diff] [blame] | 65 | kernfs_get(info->root->sd); |
| 66 | root->d_fsdata = info->root->sd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | sb->s_root = root; |
Al Viro | 469796d | 2012-06-07 20:51:39 -0400 | [diff] [blame] | 68 | sb->s_d_op = &sysfs_dentry_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | return 0; |
| 70 | } |
| 71 | |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 72 | static int sysfs_test_super(struct super_block *sb, void *data) |
| 73 | { |
| 74 | struct sysfs_super_info *sb_info = sysfs_info(sb); |
| 75 | struct sysfs_super_info *info = data; |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 76 | |
Tejun Heo | df394fb | 2013-11-28 14:54:42 -0500 | [diff] [blame] | 77 | return sb_info->root == info->root && sb_info->ns == info->ns; |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | static int sysfs_set_super(struct super_block *sb, void *data) |
| 81 | { |
| 82 | int error; |
| 83 | error = set_anon_super(sb, data); |
| 84 | if (!error) |
| 85 | sb->s_fs_info = data; |
| 86 | return error; |
| 87 | } |
| 88 | |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 89 | /** |
| 90 | * kernfs_super_ns - determine the namespace tag of a kernfs super_block |
| 91 | * @sb: super_block of interest |
| 92 | * |
| 93 | * Return the namespace tag associated with kernfs super_block @sb. |
| 94 | */ |
| 95 | const void *kernfs_super_ns(struct super_block *sb) |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 96 | { |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 97 | struct sysfs_super_info *info = sysfs_info(sb); |
| 98 | |
| 99 | return info->ns; |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 100 | } |
| 101 | |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 102 | static struct dentry *sysfs_mount(struct file_system_type *fs_type, |
| 103 | int flags, const char *dev_name, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | { |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 105 | struct dentry *root; |
| 106 | void *ns; |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 107 | |
Eric W. Biederman | 7dc5dbc | 2013-03-25 20:07:01 -0700 | [diff] [blame] | 108 | if (!(flags & MS_KERNMOUNT)) { |
| 109 | if (!capable(CAP_SYS_ADMIN) && !fs_fully_visible(fs_type)) |
| 110 | return ERR_PTR(-EPERM); |
| 111 | |
Tejun Heo | c84a3b2 | 2013-11-23 18:01:46 -0500 | [diff] [blame] | 112 | if (!kobj_ns_current_may_mount(KOBJ_NS_TYPE_NET)) |
| 113 | return ERR_PTR(-EPERM); |
Eric W. Biederman | 7dc5dbc | 2013-03-25 20:07:01 -0700 | [diff] [blame] | 114 | } |
Eric W. Biederman | 87a8ebd | 2013-03-24 14:28:27 -0700 | [diff] [blame] | 115 | |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 116 | ns = kobj_ns_grab_current(KOBJ_NS_TYPE_NET); |
| 117 | root = kernfs_mount_ns(fs_type, flags, sysfs_root, ns); |
| 118 | if (IS_ERR(root)) |
| 119 | kobj_ns_drop(KOBJ_NS_TYPE_NET, ns); |
| 120 | return root; |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * kernfs_mount_ns - kernfs mount helper |
| 125 | * @fs_type: file_system_type of the fs being mounted |
| 126 | * @flags: mount flags specified for the mount |
| 127 | * @root: kernfs_root of the hierarchy being mounted |
| 128 | * @ns: optional namespace tag of the mount |
| 129 | * |
| 130 | * This is to be called from each kernfs user's file_system_type->mount() |
| 131 | * implementation, which should pass through the specified @fs_type and |
| 132 | * @flags, and specify the hierarchy and namespace tag to mount via @root |
| 133 | * and @ns, respectively. |
| 134 | * |
| 135 | * The return value can be passed to the vfs layer verbatim. |
| 136 | */ |
| 137 | struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags, |
| 138 | struct kernfs_root *root, const void *ns) |
| 139 | { |
| 140 | struct super_block *sb; |
| 141 | struct sysfs_super_info *info; |
| 142 | int error; |
| 143 | |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 144 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
| 145 | if (!info) |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 146 | return ERR_PTR(-ENOMEM); |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 147 | |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 148 | info->root = root; |
| 149 | info->ns = ns; |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 150 | |
David Howells | 9249e17 | 2012-06-25 12:55:37 +0100 | [diff] [blame] | 151 | 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] | 152 | if (IS_ERR(sb) || sb->s_fs_info != info) |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 153 | kfree(info); |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 154 | if (IS_ERR(sb)) |
| 155 | return ERR_CAST(sb); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 156 | if (!sb->s_root) { |
Tejun Heo | ccc532d | 2013-11-28 14:54:36 -0500 | [diff] [blame] | 157 | error = sysfs_fill_super(sb); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 158 | if (error) { |
| 159 | deactivate_locked_super(sb); |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 160 | return ERR_PTR(error); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 161 | } |
| 162 | sb->s_flags |= MS_ACTIVE; |
| 163 | } |
| 164 | |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 165 | return dget(sb->s_root); |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static void sysfs_kill_sb(struct super_block *sb) |
| 169 | { |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 170 | kernfs_kill_sb(sb); |
| 171 | kobj_ns_drop(KOBJ_NS_TYPE_NET, (void *)kernfs_super_ns(sb)); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * kernfs_kill_sb - kill_sb for kernfs |
| 176 | * @sb: super_block being killed |
| 177 | * |
| 178 | * This can be used directly for file_system_type->kill_sb(). If a kernfs |
| 179 | * user needs extra cleanup, it can implement its own kill_sb() and call |
| 180 | * this function at the end. |
| 181 | */ |
| 182 | void kernfs_kill_sb(struct super_block *sb) |
| 183 | { |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 184 | struct sysfs_super_info *info = sysfs_info(sb); |
Tejun Heo | ba7443b | 2013-11-28 14:54:40 -0500 | [diff] [blame] | 185 | struct sysfs_dirent *root_sd = sb->s_root->d_fsdata; |
| 186 | |
| 187 | /* |
| 188 | * Remove the superblock from fs_supers/s_instances |
Eric W. Biederman | 68d75ed | 2010-05-18 12:58:33 -0700 | [diff] [blame] | 189 | * so we can't find it, before freeing sysfs_super_info. |
| 190 | */ |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 191 | kill_anon_super(sb); |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 192 | kfree(info); |
Tejun Heo | ba7443b | 2013-11-28 14:54:40 -0500 | [diff] [blame] | 193 | kernfs_put(root_sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | static struct file_system_type sysfs_fs_type = { |
| 197 | .name = "sysfs", |
Al Viro | d0e46f8 | 2010-07-26 13:30:36 +0400 | [diff] [blame] | 198 | .mount = sysfs_mount, |
Eric W. Biederman | 9e7fdd2 | 2010-03-30 11:31:24 -0700 | [diff] [blame] | 199 | .kill_sb = sysfs_kill_sb, |
Eric W. Biederman | 4f326c0 | 2012-07-27 05:56:48 -0700 | [diff] [blame] | 200 | .fs_flags = FS_USERNS_MOUNT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | }; |
| 202 | |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 203 | void __init kernfs_init(void) |
| 204 | { |
| 205 | sysfs_dir_cachep = kmem_cache_create("sysfs_dir_cache", |
| 206 | sizeof(struct sysfs_dirent), |
| 207 | 0, SLAB_PANIC, NULL); |
| 208 | sysfs_inode_init(); |
| 209 | } |
| 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | int __init sysfs_init(void) |
| 212 | { |
Tejun Heo | 9e30cc9 | 2013-11-28 14:54:38 -0500 | [diff] [blame] | 213 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Tejun Heo | ba7443b | 2013-11-28 14:54:40 -0500 | [diff] [blame] | 215 | sysfs_root = kernfs_create_root(NULL); |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 216 | if (IS_ERR(sysfs_root)) |
| 217 | return PTR_ERR(sysfs_root); |
| 218 | |
Tejun Heo | ba7443b | 2013-11-28 14:54:40 -0500 | [diff] [blame] | 219 | sysfs_root_sd = sysfs_root->sd; |
| 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | err = register_filesystem(&sysfs_fs_type); |
Tejun Heo | 4b93dc9 | 2013-11-28 14:54:43 -0500 | [diff] [blame^] | 222 | if (err) { |
| 223 | kernfs_destroy_root(sysfs_root); |
| 224 | return err; |
| 225 | } |
Tejun Heo | 9e30cc9 | 2013-11-28 14:54:38 -0500 | [diff] [blame] | 226 | |
| 227 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } |