Greg Kroah-Hartman | 3bce94fd | 2017-11-07 16:59:23 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Harry Wei | bd33d12 | 2011-07-16 16:45:13 +0800 | [diff] [blame] | 3 | * inode.c - part of debugfs, a tiny little debug file system |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 5 | * Copyright (C) 2004,2019 Greg Kroah-Hartman <greg@kroah.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * Copyright (C) 2004 IBM Inc. |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 7 | * Copyright (C) 2019 Linux Foundation <gregkh@linuxfoundation.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * debugfs is for people to use instead of /proc or /sys. |
Mauro Carvalho Chehab | e1511a8 | 2017-05-14 12:09:53 -0300 | [diff] [blame] | 10 | * See ./Documentation/core-api/kernel-api.rst for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
Greg Kroah-Hartman | d03ae47 | 2019-07-03 09:16:52 +0200 | [diff] [blame] | 13 | #define pr_fmt(fmt) "debugfs: " fmt |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/fs.h> |
| 17 | #include <linux/mount.h> |
| 18 | #include <linux/pagemap.h> |
| 19 | #include <linux/init.h> |
Randy Dunlap | 4d8ebdd | 2006-11-25 11:09:26 -0800 | [diff] [blame] | 20 | #include <linux/kobject.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/namei.h> |
| 22 | #include <linux/debugfs.h> |
Mathieu Desnoyers | 4f36557 | 2006-11-24 13:45:37 -0500 | [diff] [blame] | 23 | #include <linux/fsnotify.h> |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 24 | #include <linux/string.h> |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 25 | #include <linux/seq_file.h> |
| 26 | #include <linux/parser.h> |
Mimi Zohar | 9256292 | 2008-10-07 14:00:12 -0400 | [diff] [blame] | 27 | #include <linux/magic.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
David Howells | 5496197 | 2019-08-19 17:18:02 -0700 | [diff] [blame] | 29 | #include <linux/security.h> |
Nicolai Stange | 9fd4dce | 2016-03-22 14:11:13 +0100 | [diff] [blame] | 30 | |
| 31 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Kees Cook | 82aceae4 | 2012-08-27 13:32:15 -0700 | [diff] [blame] | 33 | #define DEBUGFS_DEFAULT_MODE 0700 |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static struct vfsmount *debugfs_mount; |
| 36 | static int debugfs_mount_count; |
Frederic Weisbecker | c0f92ba | 2009-03-22 23:10:44 +0100 | [diff] [blame] | 37 | static bool debugfs_registered; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
David Howells | 5496197 | 2019-08-19 17:18:02 -0700 | [diff] [blame] | 39 | /* |
| 40 | * Don't allow access attributes to be changed whilst the kernel is locked down |
| 41 | * so that we can use the file mode as part of a heuristic to determine whether |
| 42 | * to lock down individual files. |
| 43 | */ |
| 44 | static int debugfs_setattr(struct dentry *dentry, struct iattr *ia) |
| 45 | { |
| 46 | int ret = security_locked_down(LOCKDOWN_DEBUGFS); |
| 47 | |
| 48 | if (ret && (ia->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))) |
| 49 | return ret; |
| 50 | return simple_setattr(dentry, ia); |
| 51 | } |
| 52 | |
| 53 | static const struct inode_operations debugfs_file_inode_operations = { |
| 54 | .setattr = debugfs_setattr, |
| 55 | }; |
| 56 | static const struct inode_operations debugfs_dir_inode_operations = { |
| 57 | .lookup = simple_lookup, |
| 58 | .setattr = debugfs_setattr, |
| 59 | }; |
| 60 | static const struct inode_operations debugfs_symlink_inode_operations = { |
| 61 | .get_link = simple_get_link, |
| 62 | .setattr = debugfs_setattr, |
| 63 | }; |
| 64 | |
Al Viro | edac65e | 2015-01-25 14:36:18 -0500 | [diff] [blame] | 65 | static struct inode *debugfs_get_inode(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
| 67 | struct inode *inode = new_inode(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | if (inode) { |
Christoph Hellwig | 85fe402 | 2010-10-23 11:19:54 -0400 | [diff] [blame] | 69 | inode->i_ino = get_next_ino(); |
Deepa Dinamani | 1b48b53 | 2016-02-22 07:17:47 -0800 | [diff] [blame] | 70 | inode->i_atime = inode->i_mtime = |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 71 | inode->i_ctime = current_time(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | } |
Rahul Bedarkar | 88e412e | 2014-06-06 23:12:04 +0530 | [diff] [blame] | 73 | return inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 76 | struct debugfs_mount_opts { |
Eric W. Biederman | 7dc0588 | 2012-04-03 14:01:31 -0700 | [diff] [blame] | 77 | kuid_t uid; |
| 78 | kgid_t gid; |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 79 | umode_t mode; |
| 80 | }; |
| 81 | |
| 82 | enum { |
| 83 | Opt_uid, |
| 84 | Opt_gid, |
| 85 | Opt_mode, |
| 86 | Opt_err |
| 87 | }; |
| 88 | |
| 89 | static const match_table_t tokens = { |
| 90 | {Opt_uid, "uid=%u"}, |
| 91 | {Opt_gid, "gid=%u"}, |
| 92 | {Opt_mode, "mode=%o"}, |
| 93 | {Opt_err, NULL} |
| 94 | }; |
| 95 | |
| 96 | struct debugfs_fs_info { |
| 97 | struct debugfs_mount_opts mount_opts; |
| 98 | }; |
| 99 | |
| 100 | static int debugfs_parse_options(char *data, struct debugfs_mount_opts *opts) |
| 101 | { |
| 102 | substring_t args[MAX_OPT_ARGS]; |
| 103 | int option; |
| 104 | int token; |
Eric W. Biederman | 7dc0588 | 2012-04-03 14:01:31 -0700 | [diff] [blame] | 105 | kuid_t uid; |
| 106 | kgid_t gid; |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 107 | char *p; |
| 108 | |
| 109 | opts->mode = DEBUGFS_DEFAULT_MODE; |
| 110 | |
| 111 | while ((p = strsep(&data, ",")) != NULL) { |
| 112 | if (!*p) |
| 113 | continue; |
| 114 | |
| 115 | token = match_token(p, tokens, args); |
| 116 | switch (token) { |
| 117 | case Opt_uid: |
| 118 | if (match_int(&args[0], &option)) |
| 119 | return -EINVAL; |
Eric W. Biederman | 7dc0588 | 2012-04-03 14:01:31 -0700 | [diff] [blame] | 120 | uid = make_kuid(current_user_ns(), option); |
| 121 | if (!uid_valid(uid)) |
| 122 | return -EINVAL; |
| 123 | opts->uid = uid; |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 124 | break; |
| 125 | case Opt_gid: |
Dave Reisner | f1688e0 | 2013-01-02 08:54:37 -0500 | [diff] [blame] | 126 | if (match_int(&args[0], &option)) |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 127 | return -EINVAL; |
Eric W. Biederman | 7dc0588 | 2012-04-03 14:01:31 -0700 | [diff] [blame] | 128 | gid = make_kgid(current_user_ns(), option); |
| 129 | if (!gid_valid(gid)) |
| 130 | return -EINVAL; |
| 131 | opts->gid = gid; |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 132 | break; |
| 133 | case Opt_mode: |
| 134 | if (match_octal(&args[0], &option)) |
| 135 | return -EINVAL; |
| 136 | opts->mode = option & S_IALLUGO; |
| 137 | break; |
| 138 | /* |
| 139 | * We might like to report bad mount options here; |
| 140 | * but traditionally debugfs has ignored all mount options |
| 141 | */ |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | static int debugfs_apply_options(struct super_block *sb) |
| 149 | { |
| 150 | struct debugfs_fs_info *fsi = sb->s_fs_info; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 151 | struct inode *inode = d_inode(sb->s_root); |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 152 | struct debugfs_mount_opts *opts = &fsi->mount_opts; |
| 153 | |
| 154 | inode->i_mode &= ~S_IALLUGO; |
| 155 | inode->i_mode |= opts->mode; |
| 156 | |
| 157 | inode->i_uid = opts->uid; |
| 158 | inode->i_gid = opts->gid; |
| 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | static int debugfs_remount(struct super_block *sb, int *flags, char *data) |
| 164 | { |
| 165 | int err; |
| 166 | struct debugfs_fs_info *fsi = sb->s_fs_info; |
| 167 | |
Theodore Ts'o | 02b9984 | 2014-03-13 10:14:33 -0400 | [diff] [blame] | 168 | sync_filesystem(sb); |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 169 | err = debugfs_parse_options(data, &fsi->mount_opts); |
| 170 | if (err) |
| 171 | goto fail; |
| 172 | |
| 173 | debugfs_apply_options(sb); |
| 174 | |
| 175 | fail: |
| 176 | return err; |
| 177 | } |
| 178 | |
| 179 | static int debugfs_show_options(struct seq_file *m, struct dentry *root) |
| 180 | { |
| 181 | struct debugfs_fs_info *fsi = root->d_sb->s_fs_info; |
| 182 | struct debugfs_mount_opts *opts = &fsi->mount_opts; |
| 183 | |
Eric W. Biederman | 7dc0588 | 2012-04-03 14:01:31 -0700 | [diff] [blame] | 184 | if (!uid_eq(opts->uid, GLOBAL_ROOT_UID)) |
| 185 | seq_printf(m, ",uid=%u", |
| 186 | from_kuid_munged(&init_user_ns, opts->uid)); |
| 187 | if (!gid_eq(opts->gid, GLOBAL_ROOT_GID)) |
| 188 | seq_printf(m, ",gid=%u", |
| 189 | from_kgid_munged(&init_user_ns, opts->gid)); |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 190 | if (opts->mode != DEBUGFS_DEFAULT_MODE) |
| 191 | seq_printf(m, ",mode=%o", opts->mode); |
| 192 | |
| 193 | return 0; |
| 194 | } |
| 195 | |
Al Viro | 6234ddf | 2019-04-14 23:19:45 -0400 | [diff] [blame] | 196 | static void debugfs_free_inode(struct inode *inode) |
Al Viro | 0db59e5 | 2015-02-21 22:05:11 -0500 | [diff] [blame] | 197 | { |
Al Viro | 0db59e5 | 2015-02-21 22:05:11 -0500 | [diff] [blame] | 198 | if (S_ISLNK(inode->i_mode)) |
Al Viro | 5723cb0 | 2015-05-02 10:27:18 -0400 | [diff] [blame] | 199 | kfree(inode->i_link); |
Al Viro | 93b919d | 2019-03-26 01:43:37 +0000 | [diff] [blame] | 200 | free_inode_nonrcu(inode); |
| 201 | } |
| 202 | |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 203 | static const struct super_operations debugfs_super_operations = { |
| 204 | .statfs = simple_statfs, |
| 205 | .remount_fs = debugfs_remount, |
| 206 | .show_options = debugfs_show_options, |
Al Viro | 6234ddf | 2019-04-14 23:19:45 -0400 | [diff] [blame] | 207 | .free_inode = debugfs_free_inode, |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 208 | }; |
| 209 | |
Nicolai Stange | 7c8d469 | 2017-10-31 00:15:47 +0100 | [diff] [blame] | 210 | static void debugfs_release_dentry(struct dentry *dentry) |
| 211 | { |
Nicolai Stange | 7d39bc5 | 2017-10-31 00:15:54 +0100 | [diff] [blame] | 212 | void *fsd = dentry->d_fsdata; |
| 213 | |
| 214 | if (!((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)) |
| 215 | kfree(dentry->d_fsdata); |
Nicolai Stange | 7c8d469 | 2017-10-31 00:15:47 +0100 | [diff] [blame] | 216 | } |
| 217 | |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 218 | static struct vfsmount *debugfs_automount(struct path *path) |
| 219 | { |
Eric W. Biederman | 93faccbb | 2017-02-01 06:06:16 +1300 | [diff] [blame] | 220 | debugfs_automount_t f; |
| 221 | f = (debugfs_automount_t)path->dentry->d_fsdata; |
| 222 | return f(path->dentry, d_inode(path->dentry)->i_private); |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | static const struct dentry_operations debugfs_dops = { |
| 226 | .d_delete = always_delete_dentry, |
Nicolai Stange | 7c8d469 | 2017-10-31 00:15:47 +0100 | [diff] [blame] | 227 | .d_release = debugfs_release_dentry, |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 228 | .d_automount = debugfs_automount, |
| 229 | }; |
| 230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | static int debug_fill_super(struct super_block *sb, void *data, int silent) |
| 232 | { |
Eric Biggers | cda3712 | 2017-03-25 21:15:37 -0700 | [diff] [blame] | 233 | static const struct tree_descr debug_files[] = {{""}}; |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 234 | struct debugfs_fs_info *fsi; |
| 235 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 237 | fsi = kzalloc(sizeof(struct debugfs_fs_info), GFP_KERNEL); |
| 238 | sb->s_fs_info = fsi; |
| 239 | if (!fsi) { |
| 240 | err = -ENOMEM; |
| 241 | goto fail; |
| 242 | } |
| 243 | |
| 244 | err = debugfs_parse_options(data, &fsi->mount_opts); |
| 245 | if (err) |
| 246 | goto fail; |
| 247 | |
| 248 | err = simple_fill_super(sb, DEBUGFS_MAGIC, debug_files); |
| 249 | if (err) |
| 250 | goto fail; |
| 251 | |
| 252 | sb->s_op = &debugfs_super_operations; |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 253 | sb->s_d_op = &debugfs_dops; |
Ludwig Nussel | d6e4868 | 2012-01-25 11:52:28 +0100 | [diff] [blame] | 254 | |
| 255 | debugfs_apply_options(sb); |
| 256 | |
| 257 | return 0; |
| 258 | |
| 259 | fail: |
| 260 | kfree(fsi); |
| 261 | sb->s_fs_info = NULL; |
| 262 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 265 | static struct dentry *debug_mount(struct file_system_type *fs_type, |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 266 | int flags, const char *dev_name, |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 267 | void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | { |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 269 | return mount_single(fs_type, flags, data, debug_fill_super); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | static struct file_system_type debug_fs_type = { |
| 273 | .owner = THIS_MODULE, |
| 274 | .name = "debugfs", |
Al Viro | fc14f2f | 2010-07-25 01:48:30 +0400 | [diff] [blame] | 275 | .mount = debug_mount, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | .kill_sb = kill_litter_super, |
| 277 | }; |
Eric W. Biederman | 7f78e03 | 2013-03-02 19:39:14 -0800 | [diff] [blame] | 278 | MODULE_ALIAS_FS("debugfs"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Omar Sandoval | a7c5437 | 2017-01-31 14:53:17 -0800 | [diff] [blame] | 280 | /** |
| 281 | * debugfs_lookup() - look up an existing debugfs file |
| 282 | * @name: a pointer to a string containing the name of the file to look up. |
| 283 | * @parent: a pointer to the parent dentry of the file. |
| 284 | * |
| 285 | * This function will return a pointer to a dentry if it succeeds. If the file |
| 286 | * doesn't exist or an error occurs, %NULL will be returned. The returned |
| 287 | * dentry must be passed to dput() when it is no longer needed. |
| 288 | * |
| 289 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
| 290 | * returned. |
| 291 | */ |
| 292 | struct dentry *debugfs_lookup(const char *name, struct dentry *parent) |
| 293 | { |
| 294 | struct dentry *dentry; |
| 295 | |
| 296 | if (IS_ERR(parent)) |
| 297 | return NULL; |
| 298 | |
| 299 | if (!parent) |
| 300 | parent = debugfs_mount->mnt_root; |
| 301 | |
Al Viro | 6c2d4798 | 2019-10-31 01:21:58 -0400 | [diff] [blame^] | 302 | dentry = lookup_positive_unlocked(name, parent, strlen(name)); |
Omar Sandoval | a7c5437 | 2017-01-31 14:53:17 -0800 | [diff] [blame] | 303 | if (IS_ERR(dentry)) |
| 304 | return NULL; |
Omar Sandoval | a7c5437 | 2017-01-31 14:53:17 -0800 | [diff] [blame] | 305 | return dentry; |
| 306 | } |
| 307 | EXPORT_SYMBOL_GPL(debugfs_lookup); |
| 308 | |
Al Viro | 190afd8 | 2015-01-25 13:55:55 -0500 | [diff] [blame] | 309 | static struct dentry *start_creating(const char *name, struct dentry *parent) |
Al Viro | c3b1a35 | 2012-06-09 20:28:22 -0400 | [diff] [blame] | 310 | { |
Al Viro | 190afd8 | 2015-01-25 13:55:55 -0500 | [diff] [blame] | 311 | struct dentry *dentry; |
Al Viro | c3b1a35 | 2012-06-09 20:28:22 -0400 | [diff] [blame] | 312 | int error; |
| 313 | |
Greg Kroah-Hartman | d03ae47 | 2019-07-03 09:16:52 +0200 | [diff] [blame] | 314 | pr_debug("creating file '%s'\n", name); |
Al Viro | c3b1a35 | 2012-06-09 20:28:22 -0400 | [diff] [blame] | 315 | |
Greg KH | c9e15f2 | 2015-03-30 14:59:15 +0200 | [diff] [blame] | 316 | if (IS_ERR(parent)) |
| 317 | return parent; |
| 318 | |
Al Viro | c3b1a35 | 2012-06-09 20:28:22 -0400 | [diff] [blame] | 319 | error = simple_pin_fs(&debug_fs_type, &debugfs_mount, |
| 320 | &debugfs_mount_count); |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 321 | if (error) { |
| 322 | pr_err("Unable to pin filesystem for file '%s'\n", name); |
Al Viro | 190afd8 | 2015-01-25 13:55:55 -0500 | [diff] [blame] | 323 | return ERR_PTR(error); |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 324 | } |
Al Viro | c3b1a35 | 2012-06-09 20:28:22 -0400 | [diff] [blame] | 325 | |
Al Viro | cfa57c1 | 2012-06-09 20:33:28 -0400 | [diff] [blame] | 326 | /* If the parent is not specified, we create it in the root. |
Rahul Bedarkar | 88e412e | 2014-06-06 23:12:04 +0530 | [diff] [blame] | 327 | * We need the root dentry to do this, which is in the super |
Al Viro | cfa57c1 | 2012-06-09 20:33:28 -0400 | [diff] [blame] | 328 | * block. A pointer to that is in the struct vfsmount that we |
| 329 | * have around. |
| 330 | */ |
| 331 | if (!parent) |
| 332 | parent = debugfs_mount->mnt_root; |
| 333 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 334 | inode_lock(d_inode(parent)); |
Al Viro | cfa57c1 | 2012-06-09 20:33:28 -0400 | [diff] [blame] | 335 | dentry = lookup_one_len(name, parent, strlen(name)); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 336 | if (!IS_ERR(dentry) && d_really_is_positive(dentry)) { |
Greg Kroah-Hartman | c33d442 | 2019-07-06 17:42:56 +0200 | [diff] [blame] | 337 | if (d_is_dir(dentry)) |
| 338 | pr_err("Directory '%s' with parent '%s' already present!\n", |
| 339 | name, parent->d_name.name); |
| 340 | else |
| 341 | pr_err("File '%s' in directory '%s' already present!\n", |
| 342 | name, parent->d_name.name); |
Al Viro | cfa57c1 | 2012-06-09 20:33:28 -0400 | [diff] [blame] | 343 | dput(dentry); |
Al Viro | 190afd8 | 2015-01-25 13:55:55 -0500 | [diff] [blame] | 344 | dentry = ERR_PTR(-EEXIST); |
| 345 | } |
Daniel Borkmann | 0ee9608 | 2015-11-05 00:01:51 +0100 | [diff] [blame] | 346 | |
| 347 | if (IS_ERR(dentry)) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 348 | inode_unlock(d_inode(parent)); |
Daniel Borkmann | 0ee9608 | 2015-11-05 00:01:51 +0100 | [diff] [blame] | 349 | simple_release_fs(&debugfs_mount, &debugfs_mount_count); |
| 350 | } |
| 351 | |
Al Viro | 190afd8 | 2015-01-25 13:55:55 -0500 | [diff] [blame] | 352 | return dentry; |
| 353 | } |
| 354 | |
Al Viro | 5233e31 | 2015-01-25 14:39:49 -0500 | [diff] [blame] | 355 | static struct dentry *failed_creating(struct dentry *dentry) |
Al Viro | 190afd8 | 2015-01-25 13:55:55 -0500 | [diff] [blame] | 356 | { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 357 | inode_unlock(d_inode(dentry->d_parent)); |
Al Viro | 190afd8 | 2015-01-25 13:55:55 -0500 | [diff] [blame] | 358 | dput(dentry); |
Al Viro | 5233e31 | 2015-01-25 14:39:49 -0500 | [diff] [blame] | 359 | simple_release_fs(&debugfs_mount, &debugfs_mount_count); |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 360 | return ERR_PTR(-ENOMEM); |
Al Viro | 5233e31 | 2015-01-25 14:39:49 -0500 | [diff] [blame] | 361 | } |
Al Viro | cfa57c1 | 2012-06-09 20:33:28 -0400 | [diff] [blame] | 362 | |
Al Viro | 5233e31 | 2015-01-25 14:39:49 -0500 | [diff] [blame] | 363 | static struct dentry *end_creating(struct dentry *dentry) |
| 364 | { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 365 | inode_unlock(d_inode(dentry->d_parent)); |
Al Viro | c3b1a35 | 2012-06-09 20:28:22 -0400 | [diff] [blame] | 366 | return dentry; |
| 367 | } |
| 368 | |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 369 | static struct dentry *__debugfs_create_file(const char *name, umode_t mode, |
| 370 | struct dentry *parent, void *data, |
| 371 | const struct file_operations *proxy_fops, |
| 372 | const struct file_operations *real_fops) |
| 373 | { |
| 374 | struct dentry *dentry; |
| 375 | struct inode *inode; |
| 376 | |
| 377 | if (!(mode & S_IFMT)) |
| 378 | mode |= S_IFREG; |
| 379 | BUG_ON(!S_ISREG(mode)); |
| 380 | dentry = start_creating(name, parent); |
| 381 | |
Nicolai Stange | 7d39bc5 | 2017-10-31 00:15:54 +0100 | [diff] [blame] | 382 | if (IS_ERR(dentry)) |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 383 | return dentry; |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 384 | |
| 385 | inode = debugfs_get_inode(dentry->d_sb); |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 386 | if (unlikely(!inode)) { |
| 387 | pr_err("out of free dentries, can not create file '%s'\n", |
| 388 | name); |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 389 | return failed_creating(dentry); |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 390 | } |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 391 | |
| 392 | inode->i_mode = mode; |
| 393 | inode->i_private = data; |
| 394 | |
David Howells | 5496197 | 2019-08-19 17:18:02 -0700 | [diff] [blame] | 395 | inode->i_op = &debugfs_file_inode_operations; |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 396 | inode->i_fop = proxy_fops; |
Nicolai Stange | 7d39bc5 | 2017-10-31 00:15:54 +0100 | [diff] [blame] | 397 | dentry->d_fsdata = (void *)((unsigned long)real_fops | |
| 398 | DEBUGFS_FSDATA_IS_REAL_FOPS_BIT); |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 399 | |
| 400 | d_instantiate(dentry, inode); |
| 401 | fsnotify_create(d_inode(dentry->d_parent), dentry); |
| 402 | return end_creating(dentry); |
| 403 | } |
| 404 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | /** |
| 406 | * debugfs_create_file - create a file in the debugfs filesystem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | * @name: a pointer to a string containing the name of the file to create. |
Alberto Bertogli | be030e6 | 2009-10-31 18:26:52 -0300 | [diff] [blame] | 408 | * @mode: the permission that the file should have. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | * @parent: a pointer to the parent dentry for this file. This should be a |
Masanari Iida | e227867 | 2014-02-18 22:54:36 +0900 | [diff] [blame] | 410 | * directory dentry if set. If this parameter is NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | * file will be created in the root of the debugfs filesystem. |
| 412 | * @data: a pointer to something that the caller will want to get to later |
Theodore Ts'o | 8e18e29 | 2006-09-27 01:50:46 -0700 | [diff] [blame] | 413 | * on. The inode.i_private pointer will point to this value on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | * the open() call. |
| 415 | * @fops: a pointer to a struct file_operations that should be used for |
| 416 | * this file. |
| 417 | * |
| 418 | * This is the basic "create a file" function for debugfs. It allows for a |
Alberto Bertogli | be030e6 | 2009-10-31 18:26:52 -0300 | [diff] [blame] | 419 | * wide range of flexibility in creating a file, or a directory (if you want |
| 420 | * to create a directory, the debugfs_create_dir() function is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | * recommended to be used instead.) |
| 422 | * |
| 423 | * This function will return a pointer to a dentry if it succeeds. This |
| 424 | * pointer must be passed to the debugfs_remove() function when the file is |
| 425 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 426 | * you are responsible here.) If an error occurs, %ERR_PTR(-ERROR) will be |
| 427 | * returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 429 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
Cornelia Huck | 873760f | 2007-02-14 07:57:47 +0100 | [diff] [blame] | 430 | * returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | */ |
Al Viro | f4ae40a6 | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 432 | struct dentry *debugfs_create_file(const char *name, umode_t mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | struct dentry *parent, void *data, |
Arjan van de Ven | 99ac48f | 2006-03-28 01:56:41 -0800 | [diff] [blame] | 434 | const struct file_operations *fops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
Al Viro | c3b1a35 | 2012-06-09 20:28:22 -0400 | [diff] [blame] | 436 | |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 437 | return __debugfs_create_file(name, mode, parent, data, |
| 438 | fops ? &debugfs_full_proxy_file_operations : |
| 439 | &debugfs_noop_file_operations, |
| 440 | fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | } |
| 442 | EXPORT_SYMBOL_GPL(debugfs_create_file); |
| 443 | |
Nicolai Stange | c646880 | 2016-03-22 14:11:15 +0100 | [diff] [blame] | 444 | /** |
| 445 | * debugfs_create_file_unsafe - create a file in the debugfs filesystem |
| 446 | * @name: a pointer to a string containing the name of the file to create. |
| 447 | * @mode: the permission that the file should have. |
| 448 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 449 | * directory dentry if set. If this parameter is NULL, then the |
| 450 | * file will be created in the root of the debugfs filesystem. |
| 451 | * @data: a pointer to something that the caller will want to get to later |
| 452 | * on. The inode.i_private pointer will point to this value on |
| 453 | * the open() call. |
| 454 | * @fops: a pointer to a struct file_operations that should be used for |
| 455 | * this file. |
| 456 | * |
| 457 | * debugfs_create_file_unsafe() is completely analogous to |
| 458 | * debugfs_create_file(), the only difference being that the fops |
| 459 | * handed it will not get protected against file removals by the |
| 460 | * debugfs core. |
| 461 | * |
| 462 | * It is your responsibility to protect your struct file_operation |
Sergey Senozhatsky | 0eeb273 | 2018-12-30 12:46:52 +0900 | [diff] [blame] | 463 | * methods against file removals by means of debugfs_file_get() |
| 464 | * and debugfs_file_put(). ->open() is still protected by |
Nicolai Stange | c646880 | 2016-03-22 14:11:15 +0100 | [diff] [blame] | 465 | * debugfs though. |
| 466 | * |
| 467 | * Any struct file_operations defined by means of |
| 468 | * DEFINE_DEBUGFS_ATTRIBUTE() is protected against file removals and |
| 469 | * thus, may be used here. |
| 470 | */ |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 471 | struct dentry *debugfs_create_file_unsafe(const char *name, umode_t mode, |
| 472 | struct dentry *parent, void *data, |
| 473 | const struct file_operations *fops) |
| 474 | { |
| 475 | |
| 476 | return __debugfs_create_file(name, mode, parent, data, |
| 477 | fops ? &debugfs_open_proxy_file_operations : |
| 478 | &debugfs_noop_file_operations, |
| 479 | fops); |
| 480 | } |
Nicolai Stange | c646880 | 2016-03-22 14:11:15 +0100 | [diff] [blame] | 481 | EXPORT_SYMBOL_GPL(debugfs_create_file_unsafe); |
Nicolai Stange | 49d200d | 2016-03-22 14:11:14 +0100 | [diff] [blame] | 482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | /** |
David Howells | e59b4e9 | 2015-01-21 20:03:40 +0000 | [diff] [blame] | 484 | * debugfs_create_file_size - create a file in the debugfs filesystem |
| 485 | * @name: a pointer to a string containing the name of the file to create. |
| 486 | * @mode: the permission that the file should have. |
| 487 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 488 | * directory dentry if set. If this parameter is NULL, then the |
| 489 | * file will be created in the root of the debugfs filesystem. |
| 490 | * @data: a pointer to something that the caller will want to get to later |
| 491 | * on. The inode.i_private pointer will point to this value on |
| 492 | * the open() call. |
| 493 | * @fops: a pointer to a struct file_operations that should be used for |
| 494 | * this file. |
| 495 | * @file_size: initial file size |
| 496 | * |
| 497 | * This is the basic "create a file" function for debugfs. It allows for a |
| 498 | * wide range of flexibility in creating a file, or a directory (if you want |
| 499 | * to create a directory, the debugfs_create_dir() function is |
| 500 | * recommended to be used instead.) |
| 501 | * |
| 502 | * This function will return a pointer to a dentry if it succeeds. This |
| 503 | * pointer must be passed to the debugfs_remove() function when the file is |
| 504 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 505 | * you are responsible here.) If an error occurs, %ERR_PTR(-ERROR) will be |
| 506 | * returned. |
David Howells | e59b4e9 | 2015-01-21 20:03:40 +0000 | [diff] [blame] | 507 | * |
| 508 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
| 509 | * returned. |
| 510 | */ |
| 511 | struct dentry *debugfs_create_file_size(const char *name, umode_t mode, |
| 512 | struct dentry *parent, void *data, |
| 513 | const struct file_operations *fops, |
| 514 | loff_t file_size) |
| 515 | { |
| 516 | struct dentry *de = debugfs_create_file(name, mode, parent, data, fops); |
| 517 | |
| 518 | if (de) |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 519 | d_inode(de)->i_size = file_size; |
David Howells | e59b4e9 | 2015-01-21 20:03:40 +0000 | [diff] [blame] | 520 | return de; |
| 521 | } |
| 522 | EXPORT_SYMBOL_GPL(debugfs_create_file_size); |
| 523 | |
| 524 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | * debugfs_create_dir - create a directory in the debugfs filesystem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | * @name: a pointer to a string containing the name of the directory to |
| 527 | * create. |
| 528 | * @parent: a pointer to the parent dentry for this file. This should be a |
Masanari Iida | e227867 | 2014-02-18 22:54:36 +0900 | [diff] [blame] | 529 | * directory dentry if set. If this parameter is NULL, then the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | * directory will be created in the root of the debugfs filesystem. |
| 531 | * |
| 532 | * This function creates a directory in debugfs with the given name. |
| 533 | * |
| 534 | * This function will return a pointer to a dentry if it succeeds. This |
| 535 | * pointer must be passed to the debugfs_remove() function when the file is |
| 536 | * to be removed (no automatic cleanup happens if your module is unloaded, |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 537 | * you are responsible here.) If an error occurs, %ERR_PTR(-ERROR) will be |
| 538 | * returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | * |
Randy Dunlap | 6468b3a | 2006-07-20 08:16:42 -0700 | [diff] [blame] | 540 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
Cornelia Huck | 873760f | 2007-02-14 07:57:47 +0100 | [diff] [blame] | 541 | * returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | */ |
| 543 | struct dentry *debugfs_create_dir(const char *name, struct dentry *parent) |
| 544 | { |
Al Viro | ad5abd5 | 2015-01-25 14:02:31 -0500 | [diff] [blame] | 545 | struct dentry *dentry = start_creating(name, parent); |
Al Viro | 680b302 | 2015-01-25 14:31:32 -0500 | [diff] [blame] | 546 | struct inode *inode; |
Al Viro | ad5abd5 | 2015-01-25 14:02:31 -0500 | [diff] [blame] | 547 | |
| 548 | if (IS_ERR(dentry)) |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 549 | return dentry; |
Al Viro | ad5abd5 | 2015-01-25 14:02:31 -0500 | [diff] [blame] | 550 | |
Al Viro | edac65e | 2015-01-25 14:36:18 -0500 | [diff] [blame] | 551 | inode = debugfs_get_inode(dentry->d_sb); |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 552 | if (unlikely(!inode)) { |
| 553 | pr_err("out of free dentries, can not create directory '%s'\n", |
| 554 | name); |
Al Viro | 5233e31 | 2015-01-25 14:39:49 -0500 | [diff] [blame] | 555 | return failed_creating(dentry); |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 556 | } |
Al Viro | 680b302 | 2015-01-25 14:31:32 -0500 | [diff] [blame] | 557 | |
Linus Torvalds | f5b7769e | 2018-06-12 20:52:16 -0700 | [diff] [blame] | 558 | inode->i_mode = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO; |
David Howells | 5496197 | 2019-08-19 17:18:02 -0700 | [diff] [blame] | 559 | inode->i_op = &debugfs_dir_inode_operations; |
Al Viro | edac65e | 2015-01-25 14:36:18 -0500 | [diff] [blame] | 560 | inode->i_fop = &simple_dir_operations; |
| 561 | |
| 562 | /* directory inodes start off with i_nlink == 2 (for "." entry) */ |
| 563 | inc_nlink(inode); |
Al Viro | 680b302 | 2015-01-25 14:31:32 -0500 | [diff] [blame] | 564 | d_instantiate(dentry, inode); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 565 | inc_nlink(d_inode(dentry->d_parent)); |
| 566 | fsnotify_mkdir(d_inode(dentry->d_parent), dentry); |
Al Viro | 5233e31 | 2015-01-25 14:39:49 -0500 | [diff] [blame] | 567 | return end_creating(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | } |
| 569 | EXPORT_SYMBOL_GPL(debugfs_create_dir); |
| 570 | |
| 571 | /** |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 572 | * debugfs_create_automount - create automount point in the debugfs filesystem |
| 573 | * @name: a pointer to a string containing the name of the file to create. |
| 574 | * @parent: a pointer to the parent dentry for this file. This should be a |
| 575 | * directory dentry if set. If this parameter is NULL, then the |
| 576 | * file will be created in the root of the debugfs filesystem. |
| 577 | * @f: function to be called when pathname resolution steps on that one. |
| 578 | * @data: opaque argument to pass to f(). |
| 579 | * |
| 580 | * @f should return what ->d_automount() would. |
| 581 | */ |
| 582 | struct dentry *debugfs_create_automount(const char *name, |
| 583 | struct dentry *parent, |
Eric W. Biederman | 93faccbb | 2017-02-01 06:06:16 +1300 | [diff] [blame] | 584 | debugfs_automount_t f, |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 585 | void *data) |
| 586 | { |
| 587 | struct dentry *dentry = start_creating(name, parent); |
| 588 | struct inode *inode; |
| 589 | |
| 590 | if (IS_ERR(dentry)) |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 591 | return dentry; |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 592 | |
| 593 | inode = debugfs_get_inode(dentry->d_sb); |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 594 | if (unlikely(!inode)) { |
| 595 | pr_err("out of free dentries, can not create automount '%s'\n", |
| 596 | name); |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 597 | return failed_creating(dentry); |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 598 | } |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 599 | |
Seth Forshee | 87243de | 2016-03-09 09:18:07 -0600 | [diff] [blame] | 600 | make_empty_dir_inode(inode); |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 601 | inode->i_flags |= S_AUTOMOUNT; |
| 602 | inode->i_private = data; |
| 603 | dentry->d_fsdata = (void *)f; |
Roman Pen | a8f324a | 2016-02-09 11:30:29 +0100 | [diff] [blame] | 604 | /* directory inodes start off with i_nlink == 2 (for "." entry) */ |
| 605 | inc_nlink(inode); |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 606 | d_instantiate(dentry, inode); |
Roman Pen | a8f324a | 2016-02-09 11:30:29 +0100 | [diff] [blame] | 607 | inc_nlink(d_inode(dentry->d_parent)); |
| 608 | fsnotify_mkdir(d_inode(dentry->d_parent), dentry); |
Al Viro | 77b3da6 | 2015-01-25 15:10:32 -0500 | [diff] [blame] | 609 | return end_creating(dentry); |
| 610 | } |
| 611 | EXPORT_SYMBOL(debugfs_create_automount); |
| 612 | |
| 613 | /** |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 614 | * debugfs_create_symlink- create a symbolic link in the debugfs filesystem |
| 615 | * @name: a pointer to a string containing the name of the symbolic link to |
| 616 | * create. |
| 617 | * @parent: a pointer to the parent dentry for this symbolic link. This |
Masanari Iida | e227867 | 2014-02-18 22:54:36 +0900 | [diff] [blame] | 618 | * should be a directory dentry if set. If this parameter is NULL, |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 619 | * then the symbolic link will be created in the root of the debugfs |
| 620 | * filesystem. |
| 621 | * @target: a pointer to a string containing the path to the target of the |
| 622 | * symbolic link. |
| 623 | * |
| 624 | * This function creates a symbolic link with the given name in debugfs that |
| 625 | * links to the given target path. |
| 626 | * |
| 627 | * This function will return a pointer to a dentry if it succeeds. This |
| 628 | * pointer must be passed to the debugfs_remove() function when the symbolic |
| 629 | * link is to be removed (no automatic cleanup happens if your module is |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 630 | * unloaded, you are responsible here.) If an error occurs, %ERR_PTR(-ERROR) |
| 631 | * will be returned. |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 632 | * |
| 633 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
Cornelia Huck | 873760f | 2007-02-14 07:57:47 +0100 | [diff] [blame] | 634 | * returned. |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 635 | */ |
| 636 | struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, |
| 637 | const char *target) |
| 638 | { |
Al Viro | ad5abd5 | 2015-01-25 14:02:31 -0500 | [diff] [blame] | 639 | struct dentry *dentry; |
Al Viro | 680b302 | 2015-01-25 14:31:32 -0500 | [diff] [blame] | 640 | struct inode *inode; |
| 641 | char *link = kstrdup(target, GFP_KERNEL); |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 642 | if (!link) |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 643 | return ERR_PTR(-ENOMEM); |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 644 | |
Al Viro | ad5abd5 | 2015-01-25 14:02:31 -0500 | [diff] [blame] | 645 | dentry = start_creating(name, parent); |
Al Viro | ad5abd5 | 2015-01-25 14:02:31 -0500 | [diff] [blame] | 646 | if (IS_ERR(dentry)) { |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 647 | kfree(link); |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 648 | return dentry; |
Al Viro | ad5abd5 | 2015-01-25 14:02:31 -0500 | [diff] [blame] | 649 | } |
| 650 | |
Al Viro | edac65e | 2015-01-25 14:36:18 -0500 | [diff] [blame] | 651 | inode = debugfs_get_inode(dentry->d_sb); |
Al Viro | 680b302 | 2015-01-25 14:31:32 -0500 | [diff] [blame] | 652 | if (unlikely(!inode)) { |
Greg Kroah-Hartman | 43e23b6 | 2019-07-03 09:16:53 +0200 | [diff] [blame] | 653 | pr_err("out of free dentries, can not create symlink '%s'\n", |
| 654 | name); |
Al Viro | ad5abd5 | 2015-01-25 14:02:31 -0500 | [diff] [blame] | 655 | kfree(link); |
Al Viro | 5233e31 | 2015-01-25 14:39:49 -0500 | [diff] [blame] | 656 | return failed_creating(dentry); |
Al Viro | 680b302 | 2015-01-25 14:31:32 -0500 | [diff] [blame] | 657 | } |
Al Viro | edac65e | 2015-01-25 14:36:18 -0500 | [diff] [blame] | 658 | inode->i_mode = S_IFLNK | S_IRWXUGO; |
David Howells | 5496197 | 2019-08-19 17:18:02 -0700 | [diff] [blame] | 659 | inode->i_op = &debugfs_symlink_inode_operations; |
Al Viro | 5723cb0 | 2015-05-02 10:27:18 -0400 | [diff] [blame] | 660 | inode->i_link = link; |
Al Viro | 680b302 | 2015-01-25 14:31:32 -0500 | [diff] [blame] | 661 | d_instantiate(dentry, inode); |
Al Viro | 5233e31 | 2015-01-25 14:39:49 -0500 | [diff] [blame] | 662 | return end_creating(dentry); |
Peter Oberparleiter | 66f5496 | 2007-02-13 12:13:54 +0100 | [diff] [blame] | 663 | } |
| 664 | EXPORT_SYMBOL_GPL(debugfs_create_symlink); |
| 665 | |
Amir Goldstein | 823e545 | 2019-05-26 17:34:07 +0300 | [diff] [blame] | 666 | static void __debugfs_file_removed(struct dentry *dentry) |
Nicolai Stange | e9117a5 | 2017-10-31 00:15:48 +0100 | [diff] [blame] | 667 | { |
| 668 | struct debugfs_fsdata *fsd; |
| 669 | |
Nicolai Stange | 7d39bc5 | 2017-10-31 00:15:54 +0100 | [diff] [blame] | 670 | /* |
| 671 | * Paired with the closing smp_mb() implied by a successful |
| 672 | * cmpxchg() in debugfs_file_get(): either |
| 673 | * debugfs_file_get() must see a dead dentry or we must see a |
| 674 | * debugfs_fsdata instance at ->d_fsdata here (or both). |
| 675 | */ |
| 676 | smp_mb(); |
| 677 | fsd = READ_ONCE(dentry->d_fsdata); |
| 678 | if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT) |
| 679 | return; |
Nicolai Stange | e9117a5 | 2017-10-31 00:15:48 +0100 | [diff] [blame] | 680 | if (!refcount_dec_and_test(&fsd->active_users)) |
| 681 | wait_for_completion(&fsd->active_users_drained); |
| 682 | } |
| 683 | |
Jan Kara | 25d41d8 | 2011-02-07 15:00:27 +0100 | [diff] [blame] | 684 | static int __debugfs_remove(struct dentry *dentry, struct dentry *parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | { |
Mathieu Desnoyers | 65c3333 | 2006-11-24 13:50:09 -0500 | [diff] [blame] | 686 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
Al Viro | dc3f419 | 2015-05-18 10:10:34 -0400 | [diff] [blame] | 688 | if (simple_positive(dentry)) { |
Al Viro | 0db59e5 | 2015-02-21 22:05:11 -0500 | [diff] [blame] | 689 | dget(dentry); |
Amir Goldstein | 823e545 | 2019-05-26 17:34:07 +0300 | [diff] [blame] | 690 | if (d_is_dir(dentry)) { |
| 691 | ret = simple_rmdir(d_inode(parent), dentry); |
Amir Goldstein | 6679ea6 | 2019-05-26 17:34:08 +0300 | [diff] [blame] | 692 | if (!ret) |
| 693 | fsnotify_rmdir(d_inode(parent), dentry); |
Nicolai Stange | e9117a5 | 2017-10-31 00:15:48 +0100 | [diff] [blame] | 694 | } else { |
Amir Goldstein | 823e545 | 2019-05-26 17:34:07 +0300 | [diff] [blame] | 695 | simple_unlink(d_inode(parent), dentry); |
Amir Goldstein | 6679ea6 | 2019-05-26 17:34:08 +0300 | [diff] [blame] | 696 | fsnotify_unlink(d_inode(parent), dentry); |
Nicolai Stange | e9117a5 | 2017-10-31 00:15:48 +0100 | [diff] [blame] | 697 | } |
Amir Goldstein | 823e545 | 2019-05-26 17:34:07 +0300 | [diff] [blame] | 698 | if (!ret) |
| 699 | d_delete(dentry); |
| 700 | if (d_is_reg(dentry)) |
| 701 | __debugfs_file_removed(dentry); |
Al Viro | 0db59e5 | 2015-02-21 22:05:11 -0500 | [diff] [blame] | 702 | dput(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
Jan Kara | 25d41d8 | 2011-02-07 15:00:27 +0100 | [diff] [blame] | 704 | return ret; |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | /** |
| 708 | * debugfs_remove - removes a file or directory from the debugfs filesystem |
| 709 | * @dentry: a pointer to a the dentry of the file or directory to be |
Ulf Magnusson | 398dc4a | 2015-09-07 19:03:15 +0200 | [diff] [blame] | 710 | * removed. If this parameter is NULL or an error value, nothing |
| 711 | * will be done. |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 712 | * |
| 713 | * This function removes a file or directory in debugfs that was previously |
| 714 | * created with a call to another debugfs function (like |
| 715 | * debugfs_create_file() or variants thereof.) |
| 716 | * |
| 717 | * This function is required to be called in order for the file to be |
| 718 | * removed, no automatic cleanup of files will happen when a module is |
| 719 | * removed, you are responsible here. |
| 720 | */ |
| 721 | void debugfs_remove(struct dentry *dentry) |
| 722 | { |
| 723 | struct dentry *parent; |
Jan Kara | 25d41d8 | 2011-02-07 15:00:27 +0100 | [diff] [blame] | 724 | int ret; |
| 725 | |
Arend van Spriel | a59d629 | 2012-05-23 15:13:07 +0200 | [diff] [blame] | 726 | if (IS_ERR_OR_NULL(dentry)) |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 727 | return; |
| 728 | |
| 729 | parent = dentry->d_parent; |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 730 | inode_lock(d_inode(parent)); |
Jan Kara | 25d41d8 | 2011-02-07 15:00:27 +0100 | [diff] [blame] | 731 | ret = __debugfs_remove(dentry, parent); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 732 | inode_unlock(d_inode(parent)); |
Jan Kara | 25d41d8 | 2011-02-07 15:00:27 +0100 | [diff] [blame] | 733 | if (!ret) |
| 734 | simple_release_fs(&debugfs_mount, &debugfs_mount_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } |
| 736 | EXPORT_SYMBOL_GPL(debugfs_remove); |
| 737 | |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 738 | /** |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 739 | * debugfs_remove_recursive - recursively removes a directory |
Ulf Magnusson | 398dc4a | 2015-09-07 19:03:15 +0200 | [diff] [blame] | 740 | * @dentry: a pointer to a the dentry of the directory to be removed. If this |
| 741 | * parameter is NULL or an error value, nothing will be done. |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 742 | * |
| 743 | * This function recursively removes a directory tree in debugfs that |
| 744 | * was previously created with a call to another debugfs function |
| 745 | * (like debugfs_create_file() or variants thereof.) |
| 746 | * |
| 747 | * This function is required to be called in order for the file to be |
| 748 | * removed, no automatic cleanup of files will happen when a module is |
| 749 | * removed, you are responsible here. |
| 750 | */ |
| 751 | void debugfs_remove_recursive(struct dentry *dentry) |
| 752 | { |
Steven Rostedt | 485d440 | 2014-06-09 14:06:07 -0400 | [diff] [blame] | 753 | struct dentry *child, *parent; |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 754 | |
Arend van Spriel | a59d629 | 2012-05-23 15:13:07 +0200 | [diff] [blame] | 755 | if (IS_ERR_OR_NULL(dentry)) |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 756 | return; |
| 757 | |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 758 | parent = dentry; |
Oleg Nesterov | 776164c | 2013-07-26 17:12:56 +0200 | [diff] [blame] | 759 | down: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 760 | inode_lock(d_inode(parent)); |
Steven Rostedt | 485d440 | 2014-06-09 14:06:07 -0400 | [diff] [blame] | 761 | loop: |
| 762 | /* |
| 763 | * The parent->d_subdirs is protected by the d_lock. Outside that |
| 764 | * lock, the child can be unlinked and set to be freed which can |
| 765 | * use the d_u.d_child as the rcu head and corrupt this list. |
| 766 | */ |
| 767 | spin_lock(&parent->d_lock); |
Al Viro | 946e51f | 2014-10-26 19:19:16 -0400 | [diff] [blame] | 768 | list_for_each_entry(child, &parent->d_subdirs, d_child) { |
Al Viro | dc3f419 | 2015-05-18 10:10:34 -0400 | [diff] [blame] | 769 | if (!simple_positive(child)) |
Oleg Nesterov | 776164c | 2013-07-26 17:12:56 +0200 | [diff] [blame] | 770 | continue; |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 771 | |
Oleg Nesterov | 776164c | 2013-07-26 17:12:56 +0200 | [diff] [blame] | 772 | /* perhaps simple_empty(child) makes more sense */ |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 773 | if (!list_empty(&child->d_subdirs)) { |
Steven Rostedt | 485d440 | 2014-06-09 14:06:07 -0400 | [diff] [blame] | 774 | spin_unlock(&parent->d_lock); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 775 | inode_unlock(d_inode(parent)); |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 776 | parent = child; |
Oleg Nesterov | 776164c | 2013-07-26 17:12:56 +0200 | [diff] [blame] | 777 | goto down; |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 778 | } |
Steven Rostedt | 485d440 | 2014-06-09 14:06:07 -0400 | [diff] [blame] | 779 | |
| 780 | spin_unlock(&parent->d_lock); |
| 781 | |
Oleg Nesterov | 776164c | 2013-07-26 17:12:56 +0200 | [diff] [blame] | 782 | if (!__debugfs_remove(child, parent)) |
| 783 | simple_release_fs(&debugfs_mount, &debugfs_mount_count); |
Steven Rostedt | 485d440 | 2014-06-09 14:06:07 -0400 | [diff] [blame] | 784 | |
| 785 | /* |
| 786 | * The parent->d_lock protects agaist child from unlinking |
| 787 | * from d_subdirs. When releasing the parent->d_lock we can |
| 788 | * no longer trust that the next pointer is valid. |
| 789 | * Restart the loop. We'll skip this one with the |
Al Viro | dc3f419 | 2015-05-18 10:10:34 -0400 | [diff] [blame] | 790 | * simple_positive() check. |
Steven Rostedt | 485d440 | 2014-06-09 14:06:07 -0400 | [diff] [blame] | 791 | */ |
| 792 | goto loop; |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 793 | } |
Steven Rostedt | 485d440 | 2014-06-09 14:06:07 -0400 | [diff] [blame] | 794 | spin_unlock(&parent->d_lock); |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 795 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 796 | inode_unlock(d_inode(parent)); |
Oleg Nesterov | 776164c | 2013-07-26 17:12:56 +0200 | [diff] [blame] | 797 | child = parent; |
| 798 | parent = parent->d_parent; |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 799 | inode_lock(d_inode(parent)); |
Oleg Nesterov | 776164c | 2013-07-26 17:12:56 +0200 | [diff] [blame] | 800 | |
Steven Rostedt | 485d440 | 2014-06-09 14:06:07 -0400 | [diff] [blame] | 801 | if (child != dentry) |
| 802 | /* go up */ |
| 803 | goto loop; |
Oleg Nesterov | 776164c | 2013-07-26 17:12:56 +0200 | [diff] [blame] | 804 | |
| 805 | if (!__debugfs_remove(child, parent)) |
| 806 | simple_release_fs(&debugfs_mount, &debugfs_mount_count); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 807 | inode_unlock(d_inode(parent)); |
Haavard Skinnemoen | 9505e63 | 2008-07-01 15:14:51 +0200 | [diff] [blame] | 808 | } |
| 809 | EXPORT_SYMBOL_GPL(debugfs_remove_recursive); |
| 810 | |
| 811 | /** |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 812 | * debugfs_rename - rename a file/directory in the debugfs filesystem |
| 813 | * @old_dir: a pointer to the parent dentry for the renamed object. This |
| 814 | * should be a directory dentry. |
| 815 | * @old_dentry: dentry of an object to be renamed. |
| 816 | * @new_dir: a pointer to the parent dentry where the object should be |
| 817 | * moved. This should be a directory dentry. |
| 818 | * @new_name: a pointer to a string containing the target name. |
| 819 | * |
| 820 | * This function renames a file/directory in debugfs. The target must not |
| 821 | * exist for rename to succeed. |
| 822 | * |
| 823 | * This function will return a pointer to old_dentry (which is updated to |
| 824 | * reflect renaming) if it succeeds. If an error occurs, %NULL will be |
| 825 | * returned. |
| 826 | * |
| 827 | * If debugfs is not enabled in the kernel, the value -%ENODEV will be |
| 828 | * returned. |
| 829 | */ |
| 830 | struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, |
| 831 | struct dentry *new_dir, const char *new_name) |
| 832 | { |
| 833 | int error; |
| 834 | struct dentry *dentry = NULL, *trap; |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 835 | struct name_snapshot old_name; |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 836 | |
Greg Kroah-Hartman | d88c93f | 2019-01-23 11:27:02 +0100 | [diff] [blame] | 837 | if (IS_ERR(old_dir)) |
| 838 | return old_dir; |
| 839 | if (IS_ERR(new_dir)) |
| 840 | return new_dir; |
| 841 | if (IS_ERR_OR_NULL(old_dentry)) |
| 842 | return old_dentry; |
| 843 | |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 844 | trap = lock_rename(new_dir, old_dir); |
| 845 | /* Source or destination directories don't exist? */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 846 | if (d_really_is_negative(old_dir) || d_really_is_negative(new_dir)) |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 847 | goto exit; |
| 848 | /* Source does not exist, cyclic rename, or mountpoint? */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 849 | if (d_really_is_negative(old_dentry) || old_dentry == trap || |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 850 | d_mountpoint(old_dentry)) |
| 851 | goto exit; |
| 852 | dentry = lookup_one_len(new_name, new_dir, strlen(new_name)); |
| 853 | /* Lookup failed, cyclic rename or target exists? */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 854 | if (IS_ERR(dentry) || dentry == trap || d_really_is_positive(dentry)) |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 855 | goto exit; |
| 856 | |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 857 | take_dentry_name_snapshot(&old_name, old_dentry); |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 858 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 859 | error = simple_rename(d_inode(old_dir), old_dentry, d_inode(new_dir), |
Miklos Szeredi | e0e0be8 | 2016-09-27 11:03:57 +0200 | [diff] [blame] | 860 | dentry, 0); |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 861 | if (error) { |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 862 | release_dentry_name_snapshot(&old_name); |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 863 | goto exit; |
| 864 | } |
| 865 | d_move(old_dentry, dentry); |
Al Viro | f4ec3a3 | 2019-04-26 13:21:24 -0400 | [diff] [blame] | 866 | fsnotify_move(d_inode(old_dir), d_inode(new_dir), &old_name.name, |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 867 | d_is_dir(old_dentry), |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 868 | NULL, old_dentry); |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 869 | release_dentry_name_snapshot(&old_name); |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 870 | unlock_rename(new_dir, old_dir); |
| 871 | dput(dentry); |
| 872 | return old_dentry; |
| 873 | exit: |
| 874 | if (dentry && !IS_ERR(dentry)) |
| 875 | dput(dentry); |
| 876 | unlock_rename(new_dir, old_dir); |
Greg Kroah-Hartman | ff9fb72 | 2019-01-23 11:28:14 +0100 | [diff] [blame] | 877 | if (IS_ERR(dentry)) |
| 878 | return dentry; |
| 879 | return ERR_PTR(-EINVAL); |
Jan Kara | cfc94cd | 2007-05-09 13:19:52 +0200 | [diff] [blame] | 880 | } |
| 881 | EXPORT_SYMBOL_GPL(debugfs_rename); |
| 882 | |
Frederic Weisbecker | c0f92ba | 2009-03-22 23:10:44 +0100 | [diff] [blame] | 883 | /** |
| 884 | * debugfs_initialized - Tells whether debugfs has been registered |
| 885 | */ |
| 886 | bool debugfs_initialized(void) |
| 887 | { |
| 888 | return debugfs_registered; |
| 889 | } |
| 890 | EXPORT_SYMBOL_GPL(debugfs_initialized); |
| 891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | static int __init debugfs_init(void) |
| 893 | { |
| 894 | int retval; |
| 895 | |
Eric W. Biederman | f9bb488 | 2015-05-13 17:35:41 -0500 | [diff] [blame] | 896 | retval = sysfs_create_mount_point(kernel_kobj, "debug"); |
| 897 | if (retval) |
| 898 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | |
| 900 | retval = register_filesystem(&debug_fs_type); |
| 901 | if (retval) |
Eric W. Biederman | f9bb488 | 2015-05-13 17:35:41 -0500 | [diff] [blame] | 902 | sysfs_remove_mount_point(kernel_kobj, "debug"); |
Frederic Weisbecker | c0f92ba | 2009-03-22 23:10:44 +0100 | [diff] [blame] | 903 | else |
| 904 | debugfs_registered = true; |
| 905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | return retval; |
| 907 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | core_initcall(debugfs_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | |