blob: bafc02bf82203a2699e6b2a879e628060891498f [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -05002/*
3 * inode.c - part of tracefs, a pseudo file system for activating tracing
4 *
5 * Based on debugfs by: Greg Kroah-Hartman <greg@kroah.com>
6 *
7 * Copyright (C) 2014 Red Hat Inc, author: Steven Rostedt <srostedt@redhat.com>
8 *
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -05009 * tracefs is the file system that is used by the tracing infrastructure.
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -050010 */
11
12#include <linux/module.h>
13#include <linux/fs.h>
14#include <linux/mount.h>
Steven Rostedt (Red Hat)cc310042015-01-21 11:28:23 -050015#include <linux/kobject.h>
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -050016#include <linux/namei.h>
17#include <linux/tracefs.h>
18#include <linux/fsnotify.h>
Steven Rostedt (VMware)bf8e6022019-10-11 20:41:41 -040019#include <linux/security.h>
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -050020#include <linux/seq_file.h>
21#include <linux/parser.h>
22#include <linux/magic.h>
23#include <linux/slab.h>
24
25#define TRACEFS_DEFAULT_MODE 0700
26
27static struct vfsmount *tracefs_mount;
28static int tracefs_mount_count;
29static bool tracefs_registered;
30
31static ssize_t default_read_file(struct file *file, char __user *buf,
32 size_t count, loff_t *ppos)
33{
34 return 0;
35}
36
37static ssize_t default_write_file(struct file *file, const char __user *buf,
38 size_t count, loff_t *ppos)
39{
40 return count;
41}
42
43static const struct file_operations tracefs_file_operations = {
44 .read = default_read_file,
45 .write = default_write_file,
46 .open = simple_open,
47 .llseek = noop_llseek,
48};
49
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -050050static struct tracefs_dir_ops {
51 int (*mkdir)(const char *name);
52 int (*rmdir)(const char *name);
Zubin Mithra5248ee82018-07-25 10:19:01 -070053} tracefs_ops __ro_after_init;
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -050054
55static char *get_dname(struct dentry *dentry)
56{
57 const char *dname;
58 char *name;
59 int len = dentry->d_name.len;
60
61 dname = dentry->d_name.name;
62 name = kmalloc(len + 1, GFP_KERNEL);
63 if (!name)
64 return NULL;
65 memcpy(name, dname, len);
66 name[len] = 0;
67 return name;
68}
69
Christian Brauner549c7292021-01-21 14:19:43 +010070static int tracefs_syscall_mkdir(struct user_namespace *mnt_userns,
71 struct inode *inode, struct dentry *dentry,
72 umode_t mode)
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -050073{
74 char *name;
75 int ret;
76
77 name = get_dname(dentry);
78 if (!name)
79 return -ENOMEM;
80
81 /*
82 * The mkdir call can call the generic functions that create
83 * the files within the tracefs system. It is up to the individual
84 * mkdir routine to handle races.
85 */
Al Viro59551022016-01-22 15:40:57 -050086 inode_unlock(inode);
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -050087 ret = tracefs_ops.mkdir(name);
Al Viro59551022016-01-22 15:40:57 -050088 inode_lock(inode);
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -050089
90 kfree(name);
91
92 return ret;
93}
94
95static int tracefs_syscall_rmdir(struct inode *inode, struct dentry *dentry)
96{
97 char *name;
98 int ret;
99
100 name = get_dname(dentry);
101 if (!name)
102 return -ENOMEM;
103
104 /*
105 * The rmdir call can call the generic functions that create
106 * the files within the tracefs system. It is up to the individual
107 * rmdir routine to handle races.
108 * This time we need to unlock not only the parent (inode) but
109 * also the directory that is being deleted.
110 */
Al Viro59551022016-01-22 15:40:57 -0500111 inode_unlock(inode);
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500112 inode_unlock(d_inode(dentry));
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500113
114 ret = tracefs_ops.rmdir(name);
115
Al Viro59551022016-01-22 15:40:57 -0500116 inode_lock_nested(inode, I_MUTEX_PARENT);
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500117 inode_lock(d_inode(dentry));
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500118
119 kfree(name);
120
121 return ret;
122}
123
124static const struct inode_operations tracefs_dir_inode_operations = {
125 .lookup = simple_lookup,
126 .mkdir = tracefs_syscall_mkdir,
127 .rmdir = tracefs_syscall_rmdir,
128};
129
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500130static struct inode *tracefs_get_inode(struct super_block *sb)
131{
132 struct inode *inode = new_inode(sb);
133 if (inode) {
134 inode->i_ino = get_next_ino();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700135 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500136 }
137 return inode;
138}
139
140struct tracefs_mount_opts {
141 kuid_t uid;
142 kgid_t gid;
143 umode_t mode;
144};
145
146enum {
147 Opt_uid,
148 Opt_gid,
149 Opt_mode,
150 Opt_err
151};
152
153static const match_table_t tokens = {
154 {Opt_uid, "uid=%u"},
155 {Opt_gid, "gid=%u"},
156 {Opt_mode, "mode=%o"},
157 {Opt_err, NULL}
158};
159
160struct tracefs_fs_info {
161 struct tracefs_mount_opts mount_opts;
162};
163
Steven Rostedt (VMware)48b27b62021-12-07 17:17:29 -0500164static void change_gid(struct dentry *dentry, kgid_t gid)
165{
166 if (!dentry->d_inode)
167 return;
168 dentry->d_inode->i_gid = gid;
169}
170
171/*
172 * Taken from d_walk, but without he need for handling renames.
173 * Nothing can be renamed while walking the list, as tracefs
174 * does not support renames. This is only called when mounting
175 * or remounting the file system, to set all the files to
176 * the given gid.
177 */
178static void set_gid(struct dentry *parent, kgid_t gid)
179{
180 struct dentry *this_parent;
181 struct list_head *next;
182
183 this_parent = parent;
184 spin_lock(&this_parent->d_lock);
185
186 change_gid(this_parent, gid);
187repeat:
188 next = this_parent->d_subdirs.next;
189resume:
190 while (next != &this_parent->d_subdirs) {
191 struct list_head *tmp = next;
192 struct dentry *dentry = list_entry(tmp, struct dentry, d_child);
193 next = tmp->next;
194
195 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
196
197 change_gid(dentry, gid);
198
199 if (!list_empty(&dentry->d_subdirs)) {
200 spin_unlock(&this_parent->d_lock);
201 spin_release(&dentry->d_lock.dep_map, _RET_IP_);
202 this_parent = dentry;
203 spin_acquire(&this_parent->d_lock.dep_map, 0, 1, _RET_IP_);
204 goto repeat;
205 }
206 spin_unlock(&dentry->d_lock);
207 }
208 /*
209 * All done at this level ... ascend and resume the search.
210 */
211 rcu_read_lock();
212ascend:
213 if (this_parent != parent) {
214 struct dentry *child = this_parent;
215 this_parent = child->d_parent;
216
217 spin_unlock(&child->d_lock);
218 spin_lock(&this_parent->d_lock);
219
220 /* go into the first sibling still alive */
221 do {
222 next = child->d_child.next;
223 if (next == &this_parent->d_subdirs)
224 goto ascend;
225 child = list_entry(next, struct dentry, d_child);
226 } while (unlikely(child->d_flags & DCACHE_DENTRY_KILLED));
227 rcu_read_unlock();
228 goto resume;
229 }
230 rcu_read_unlock();
231 spin_unlock(&this_parent->d_lock);
232 return;
233}
234
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500235static int tracefs_parse_options(char *data, struct tracefs_mount_opts *opts)
236{
237 substring_t args[MAX_OPT_ARGS];
238 int option;
239 int token;
240 kuid_t uid;
241 kgid_t gid;
242 char *p;
243
244 opts->mode = TRACEFS_DEFAULT_MODE;
245
246 while ((p = strsep(&data, ",")) != NULL) {
247 if (!*p)
248 continue;
249
250 token = match_token(p, tokens, args);
251 switch (token) {
252 case Opt_uid:
253 if (match_int(&args[0], &option))
254 return -EINVAL;
255 uid = make_kuid(current_user_ns(), option);
256 if (!uid_valid(uid))
257 return -EINVAL;
258 opts->uid = uid;
259 break;
260 case Opt_gid:
261 if (match_int(&args[0], &option))
262 return -EINVAL;
263 gid = make_kgid(current_user_ns(), option);
264 if (!gid_valid(gid))
265 return -EINVAL;
266 opts->gid = gid;
Steven Rostedt (VMware)48b27b62021-12-07 17:17:29 -0500267 set_gid(tracefs_mount->mnt_root, gid);
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500268 break;
269 case Opt_mode:
270 if (match_octal(&args[0], &option))
271 return -EINVAL;
272 opts->mode = option & S_IALLUGO;
273 break;
274 /*
275 * We might like to report bad mount options here;
276 * but traditionally tracefs has ignored all mount options
277 */
278 }
279 }
280
281 return 0;
282}
283
284static int tracefs_apply_options(struct super_block *sb)
285{
286 struct tracefs_fs_info *fsi = sb->s_fs_info;
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500287 struct inode *inode = d_inode(sb->s_root);
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500288 struct tracefs_mount_opts *opts = &fsi->mount_opts;
289
290 inode->i_mode &= ~S_IALLUGO;
291 inode->i_mode |= opts->mode;
292
293 inode->i_uid = opts->uid;
294 inode->i_gid = opts->gid;
295
296 return 0;
297}
298
299static int tracefs_remount(struct super_block *sb, int *flags, char *data)
300{
301 int err;
302 struct tracefs_fs_info *fsi = sb->s_fs_info;
303
304 sync_filesystem(sb);
305 err = tracefs_parse_options(data, &fsi->mount_opts);
306 if (err)
307 goto fail;
308
309 tracefs_apply_options(sb);
310
311fail:
312 return err;
313}
314
315static int tracefs_show_options(struct seq_file *m, struct dentry *root)
316{
317 struct tracefs_fs_info *fsi = root->d_sb->s_fs_info;
318 struct tracefs_mount_opts *opts = &fsi->mount_opts;
319
320 if (!uid_eq(opts->uid, GLOBAL_ROOT_UID))
321 seq_printf(m, ",uid=%u",
322 from_kuid_munged(&init_user_ns, opts->uid));
323 if (!gid_eq(opts->gid, GLOBAL_ROOT_GID))
324 seq_printf(m, ",gid=%u",
325 from_kgid_munged(&init_user_ns, opts->gid));
326 if (opts->mode != TRACEFS_DEFAULT_MODE)
327 seq_printf(m, ",mode=%o", opts->mode);
328
329 return 0;
330}
331
332static const struct super_operations tracefs_super_operations = {
333 .statfs = simple_statfs,
334 .remount_fs = tracefs_remount,
335 .show_options = tracefs_show_options,
336};
337
338static int trace_fill_super(struct super_block *sb, void *data, int silent)
339{
Eric Biggerscda37122017-03-25 21:15:37 -0700340 static const struct tree_descr trace_files[] = {{""}};
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500341 struct tracefs_fs_info *fsi;
342 int err;
343
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500344 fsi = kzalloc(sizeof(struct tracefs_fs_info), GFP_KERNEL);
345 sb->s_fs_info = fsi;
346 if (!fsi) {
347 err = -ENOMEM;
348 goto fail;
349 }
350
351 err = tracefs_parse_options(data, &fsi->mount_opts);
352 if (err)
353 goto fail;
354
355 err = simple_fill_super(sb, TRACEFS_MAGIC, trace_files);
356 if (err)
357 goto fail;
358
359 sb->s_op = &tracefs_super_operations;
360
361 tracefs_apply_options(sb);
362
363 return 0;
364
365fail:
366 kfree(fsi);
367 sb->s_fs_info = NULL;
368 return err;
369}
370
371static struct dentry *trace_mount(struct file_system_type *fs_type,
372 int flags, const char *dev_name,
373 void *data)
374{
375 return mount_single(fs_type, flags, data, trace_fill_super);
376}
377
378static struct file_system_type trace_fs_type = {
379 .owner = THIS_MODULE,
380 .name = "tracefs",
381 .mount = trace_mount,
382 .kill_sb = kill_litter_super,
383};
384MODULE_ALIAS_FS("tracefs");
385
386static struct dentry *start_creating(const char *name, struct dentry *parent)
387{
388 struct dentry *dentry;
389 int error;
390
391 pr_debug("tracefs: creating file '%s'\n",name);
392
393 error = simple_pin_fs(&trace_fs_type, &tracefs_mount,
394 &tracefs_mount_count);
395 if (error)
396 return ERR_PTR(error);
397
398 /* If the parent is not specified, we create it in the root.
399 * We need the root dentry to do this, which is in the super
400 * block. A pointer to that is in the struct vfsmount that we
401 * have around.
402 */
403 if (!parent)
404 parent = tracefs_mount->mnt_root;
405
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500406 inode_lock(d_inode(parent));
407 if (unlikely(IS_DEADDIR(d_inode(parent))))
Al Viroa3d1e7e2019-11-18 09:43:10 -0500408 dentry = ERR_PTR(-ENOENT);
409 else
410 dentry = lookup_one_len(name, parent, strlen(name));
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500411 if (!IS_ERR(dentry) && d_inode(dentry)) {
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500412 dput(dentry);
413 dentry = ERR_PTR(-EEXIST);
414 }
Daniel Borkmannd227c3a2015-11-04 23:33:17 +0100415
416 if (IS_ERR(dentry)) {
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500417 inode_unlock(d_inode(parent));
Daniel Borkmannd227c3a2015-11-04 23:33:17 +0100418 simple_release_fs(&tracefs_mount, &tracefs_mount_count);
419 }
420
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500421 return dentry;
422}
423
424static struct dentry *failed_creating(struct dentry *dentry)
425{
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500426 inode_unlock(d_inode(dentry->d_parent));
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500427 dput(dentry);
428 simple_release_fs(&tracefs_mount, &tracefs_mount_count);
429 return NULL;
430}
431
432static struct dentry *end_creating(struct dentry *dentry)
433{
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500434 inode_unlock(d_inode(dentry->d_parent));
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500435 return dentry;
436}
437
438/**
439 * tracefs_create_file - create a file in the tracefs filesystem
440 * @name: a pointer to a string containing the name of the file to create.
441 * @mode: the permission that the file should have.
442 * @parent: a pointer to the parent dentry for this file. This should be a
443 * directory dentry if set. If this parameter is NULL, then the
444 * file will be created in the root of the tracefs filesystem.
445 * @data: a pointer to something that the caller will want to get to later
446 * on. The inode.i_private pointer will point to this value on
447 * the open() call.
448 * @fops: a pointer to a struct file_operations that should be used for
449 * this file.
450 *
451 * This is the basic "create a file" function for tracefs. It allows for a
452 * wide range of flexibility in creating a file, or a directory (if you want
453 * to create a directory, the tracefs_create_dir() function is
454 * recommended to be used instead.)
455 *
456 * This function will return a pointer to a dentry if it succeeds. This
457 * pointer must be passed to the tracefs_remove() function when the file is
458 * to be removed (no automatic cleanup happens if your module is unloaded,
459 * you are responsible here.) If an error occurs, %NULL will be returned.
460 *
461 * If tracefs is not enabled in the kernel, the value -%ENODEV will be
462 * returned.
463 */
464struct dentry *tracefs_create_file(const char *name, umode_t mode,
465 struct dentry *parent, void *data,
466 const struct file_operations *fops)
467{
468 struct dentry *dentry;
469 struct inode *inode;
470
Steven Rostedt (VMware)bf8e6022019-10-11 20:41:41 -0400471 if (security_locked_down(LOCKDOWN_TRACEFS))
472 return NULL;
473
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500474 if (!(mode & S_IFMT))
475 mode |= S_IFREG;
476 BUG_ON(!S_ISREG(mode));
477 dentry = start_creating(name, parent);
478
479 if (IS_ERR(dentry))
480 return NULL;
481
482 inode = tracefs_get_inode(dentry->d_sb);
483 if (unlikely(!inode))
484 return failed_creating(dentry);
485
486 inode->i_mode = mode;
Steven Rostedt (VMware)3ed270b2019-10-11 13:54:58 -0400487 inode->i_fop = fops ? fops : &tracefs_file_operations;
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500488 inode->i_private = data;
Steven Rostedt (VMware)ee7f3662021-12-08 07:57:20 -0500489 inode->i_uid = d_inode(dentry->d_parent)->i_uid;
490 inode->i_gid = d_inode(dentry->d_parent)->i_gid;
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500491 d_instantiate(dentry, inode);
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500492 fsnotify_create(d_inode(dentry->d_parent), dentry);
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500493 return end_creating(dentry);
494}
495
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500496static struct dentry *__create_dir(const char *name, struct dentry *parent,
497 const struct inode_operations *ops)
498{
499 struct dentry *dentry = start_creating(name, parent);
500 struct inode *inode;
501
502 if (IS_ERR(dentry))
503 return NULL;
504
505 inode = tracefs_get_inode(dentry->d_sb);
506 if (unlikely(!inode))
507 return failed_creating(dentry);
508
Steven Rostedt (VMware)49d67e42021-08-18 11:24:50 -0400509 /* Do not set bits for OTH */
510 inode->i_mode = S_IFDIR | S_IRWXU | S_IRUSR| S_IRGRP | S_IXUSR | S_IXGRP;
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500511 inode->i_op = ops;
512 inode->i_fop = &simple_dir_operations;
Steven Rostedt (VMware)ee7f3662021-12-08 07:57:20 -0500513 inode->i_uid = d_inode(dentry->d_parent)->i_uid;
514 inode->i_gid = d_inode(dentry->d_parent)->i_gid;
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500515
516 /* directory inodes start off with i_nlink == 2 (for "." entry) */
517 inc_nlink(inode);
518 d_instantiate(dentry, inode);
Steven Rostedt (VMware)ee34c522021-12-08 10:27:31 -0500519 inc_nlink(d_inode(dentry->d_parent));
520 fsnotify_mkdir(d_inode(dentry->d_parent), dentry);
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500521 return end_creating(dentry);
522}
523
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500524/**
525 * tracefs_create_dir - create a directory in the tracefs filesystem
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
529 * directory dentry if set. If this parameter is NULL, then the
530 * directory will be created in the root of the tracefs filesystem.
531 *
532 * This function creates a directory in tracefs 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 tracefs_remove() function when the file is
536 * to be removed. If an error occurs, %NULL will be returned.
537 *
538 * If tracing is not enabled in the kernel, the value -%ENODEV will be
539 * returned.
540 */
541struct dentry *tracefs_create_dir(const char *name, struct dentry *parent)
542{
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500543 return __create_dir(name, parent, &simple_dir_inode_operations);
544}
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500545
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500546/**
547 * tracefs_create_instance_dir - create the tracing instances directory
548 * @name: The name of the instances directory to create
549 * @parent: The parent directory that the instances directory will exist
550 * @mkdir: The function to call when a mkdir is performed.
551 * @rmdir: The function to call when a rmdir is performed.
552 *
553 * Only one instances directory is allowed.
554 *
555 * The instances directory is special as it allows for mkdir and rmdir to
556 * to be done by userspace. When a mkdir or rmdir is performed, the inode
Ingo Molnarf2cc0202021-03-23 18:49:35 +0100557 * locks are released and the methods passed in (@mkdir and @rmdir) are
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500558 * called without locks and with the name of the directory being created
559 * within the instances directory.
560 *
561 * Returns the dentry of the instances directory.
562 */
Zubin Mithra5248ee82018-07-25 10:19:01 -0700563__init struct dentry *tracefs_create_instance_dir(const char *name,
564 struct dentry *parent,
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500565 int (*mkdir)(const char *name),
566 int (*rmdir)(const char *name))
567{
568 struct dentry *dentry;
569
570 /* Only allow one instance of the instances directory. */
571 if (WARN_ON(tracefs_ops.mkdir || tracefs_ops.rmdir))
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500572 return NULL;
573
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500574 dentry = __create_dir(name, parent, &tracefs_dir_inode_operations);
575 if (!dentry)
576 return NULL;
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500577
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500578 tracefs_ops.mkdir = mkdir;
579 tracefs_ops.rmdir = rmdir;
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500580
Steven Rostedt (Red Hat)eae47352015-01-21 10:01:39 -0500581 return dentry;
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500582}
583
Al Viroa3d1e7e2019-11-18 09:43:10 -0500584static void remove_one(struct dentry *victim)
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500585{
Al Viroa3d1e7e2019-11-18 09:43:10 -0500586 simple_release_fs(&tracefs_mount, &tracefs_mount_count);
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500587}
588
589/**
Al Viroa3d1e7e2019-11-18 09:43:10 -0500590 * tracefs_remove - recursively removes a directory
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500591 * @dentry: a pointer to a the dentry of the directory to be removed.
592 *
593 * This function recursively removes a directory tree in tracefs that
594 * was previously created with a call to another tracefs function
595 * (like tracefs_create_file() or variants thereof.)
596 */
Al Viroa3d1e7e2019-11-18 09:43:10 -0500597void tracefs_remove(struct dentry *dentry)
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500598{
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500599 if (IS_ERR_OR_NULL(dentry))
600 return;
601
Al Viroa3d1e7e2019-11-18 09:43:10 -0500602 simple_pin_fs(&trace_fs_type, &tracefs_mount, &tracefs_mount_count);
603 simple_recursive_removal(dentry, remove_one);
604 simple_release_fs(&tracefs_mount, &tracefs_mount_count);
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500605}
606
607/**
608 * tracefs_initialized - Tells whether tracefs has been registered
609 */
610bool tracefs_initialized(void)
611{
612 return tracefs_registered;
613}
614
615static int __init tracefs_init(void)
616{
617 int retval;
618
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500619 retval = sysfs_create_mount_point(kernel_kobj, "tracing");
620 if (retval)
Steven Rostedt (Red Hat)cc310042015-01-21 11:28:23 -0500621 return -EINVAL;
622
Steven Rostedt (Red Hat)4282d602015-01-20 11:36:55 -0500623 retval = register_filesystem(&trace_fs_type);
624 if (!retval)
625 tracefs_registered = true;
626
627 return retval;
628}
629core_initcall(tracefs_init);