]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/kernfs.h
rfkill: allocate static minor
[mirror_ubuntu-bionic-kernel.git] / include / linux / kernfs.h
CommitLineData
b8441ed2
TH
1/*
2 * kernfs.h - pseudo filesystem decoupled from vfs locking
3 *
4 * This file is released under the GPLv2.
5 */
6
7#ifndef __LINUX_KERNFS_H
8#define __LINUX_KERNFS_H
9
879f40d1 10#include <linux/kernel.h>
5d0e26bb 11#include <linux/err.h>
dd8a5b03
TH
12#include <linux/list.h>
13#include <linux/mutex.h>
bc755553 14#include <linux/idr.h>
517e64f5 15#include <linux/lockdep.h>
cf9e5a73
TH
16#include <linux/rbtree.h>
17#include <linux/atomic.h>
630d0eb6 18#include <linux/uidgid.h>
abd54f02 19#include <linux/wait.h>
879f40d1 20
5d60418e 21struct file;
917f56ca 22struct dentry;
5d60418e 23struct iattr;
dd8a5b03
TH
24struct seq_file;
25struct vm_area_struct;
4b93dc9b
TH
26struct super_block;
27struct file_system_type;
5d60418e 28
c525aadd
TH
29struct kernfs_open_node;
30struct kernfs_iattrs;
cf9e5a73
TH
31
32enum kernfs_node_type {
df23fc39
TH
33 KERNFS_DIR = 0x0001,
34 KERNFS_FILE = 0x0002,
35 KERNFS_LINK = 0x0004,
cf9e5a73
TH
36};
37
df23fc39 38#define KERNFS_TYPE_MASK 0x000f
df23fc39 39#define KERNFS_FLAG_MASK ~KERNFS_TYPE_MASK
cf9e5a73
TH
40
41enum kernfs_node_flag {
d35258ef 42 KERNFS_ACTIVATED = 0x0010,
df23fc39
TH
43 KERNFS_NS = 0x0020,
44 KERNFS_HAS_SEQ_SHOW = 0x0040,
45 KERNFS_HAS_MMAP = 0x0080,
46 KERNFS_LOCKDEP = 0x0100,
6b0afc2a
TH
47 KERNFS_SUICIDAL = 0x0400,
48 KERNFS_SUICIDED = 0x0800,
ea015218 49 KERNFS_EMPTY_DIR = 0x1000,
0e67db2f 50 KERNFS_HAS_RELEASE = 0x2000,
cf9e5a73
TH
51};
52
d35258ef
TH
53/* @flags for kernfs_create_root() */
54enum kernfs_root_flag {
555724a8
TH
55 /*
56 * kernfs_nodes are created in the deactivated state and invisible.
57 * They require explicit kernfs_activate() to become visible. This
58 * can be used to make related nodes become visible atomically
59 * after all nodes are created successfully.
60 */
61 KERNFS_ROOT_CREATE_DEACTIVATED = 0x0001,
62
63 /*
64 * For regular flies, if the opener has CAP_DAC_OVERRIDE, open(2)
65 * succeeds regardless of the RW permissions. sysfs had an extra
66 * layer of enforcement where open(2) fails with -EACCES regardless
67 * of CAP_DAC_OVERRIDE if the permission doesn't have the
68 * respective read or write access at all (none of S_IRUGO or
69 * S_IWUGO) or the respective operation isn't implemented. The
70 * following flag enables that behavior.
71 */
72 KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 0x0002,
aa818825
SL
73
74 /*
75 * The filesystem supports exportfs operation, so userspace can use
76 * fhandle to access nodes of the fs.
77 */
78 KERNFS_ROOT_SUPPORT_EXPORTOP = 0x0004,
d35258ef
TH
79};
80
324a56e1
TH
81/* type-specific structures for kernfs_node union members */
82struct kernfs_elem_dir {
cf9e5a73 83 unsigned long subdirs;
adc5e8b5 84 /* children rbtree starts here and goes through kn->rb */
cf9e5a73
TH
85 struct rb_root children;
86
87 /*
88 * The kernfs hierarchy this directory belongs to. This fits
324a56e1 89 * better directly in kernfs_node but is here to save space.
cf9e5a73
TH
90 */
91 struct kernfs_root *root;
92};
93
324a56e1
TH
94struct kernfs_elem_symlink {
95 struct kernfs_node *target_kn;
cf9e5a73
TH
96};
97
324a56e1 98struct kernfs_elem_attr {
cf9e5a73 99 const struct kernfs_ops *ops;
c525aadd 100 struct kernfs_open_node *open;
cf9e5a73 101 loff_t size;
ecca47ce 102 struct kernfs_node *notify_next; /* for kernfs_notify() */
cf9e5a73
TH
103};
104
c53cd490
SL
105/* represent a kernfs node */
106union kernfs_node_id {
107 struct {
aa818825
SL
108 /*
109 * blktrace will export this struct as a simplified 'struct
110 * fid' (which is a big data struction), so userspace can use
111 * it to find kernfs node. The layout must match the first two
112 * fields of 'struct fid' exactly.
113 */
c53cd490
SL
114 u32 ino;
115 u32 generation;
116 };
117 u64 id;
118};
119
cf9e5a73 120/*
324a56e1
TH
121 * kernfs_node - the building block of kernfs hierarchy. Each and every
122 * kernfs node is represented by single kernfs_node. Most fields are
cf9e5a73
TH
123 * private to kernfs and shouldn't be accessed directly by kernfs users.
124 *
324a56e1
TH
125 * As long as s_count reference is held, the kernfs_node itself is
126 * accessible. Dereferencing elem or any other outer entity requires
127 * active reference.
cf9e5a73 128 */
324a56e1 129struct kernfs_node {
adc5e8b5
TH
130 atomic_t count;
131 atomic_t active;
cf9e5a73
TH
132#ifdef CONFIG_DEBUG_LOCK_ALLOC
133 struct lockdep_map dep_map;
134#endif
3eef34ad
TH
135 /*
136 * Use kernfs_get_parent() and kernfs_name/path() instead of
137 * accessing the following two fields directly. If the node is
138 * never moved to a different parent, it is safe to access the
139 * parent directly.
140 */
adc5e8b5
TH
141 struct kernfs_node *parent;
142 const char *name;
cf9e5a73 143
adc5e8b5 144 struct rb_node rb;
cf9e5a73 145
adc5e8b5 146 const void *ns; /* namespace tag */
9b0925a6 147 unsigned int hash; /* ns + name hash */
cf9e5a73 148 union {
adc5e8b5
TH
149 struct kernfs_elem_dir dir;
150 struct kernfs_elem_symlink symlink;
151 struct kernfs_elem_attr attr;
cf9e5a73
TH
152 };
153
154 void *priv;
155
c53cd490 156 union kernfs_node_id id;
adc5e8b5
TH
157 unsigned short flags;
158 umode_t mode;
c525aadd 159 struct kernfs_iattrs *iattr;
cf9e5a73 160};
b8441ed2 161
80b9bbef 162/*
90c07c89
TH
163 * kernfs_syscall_ops may be specified on kernfs_create_root() to support
164 * syscalls. These optional callbacks are invoked on the matching syscalls
165 * and can perform any kernfs operations which don't necessarily have to be
166 * the exact operation requested. An active reference is held for each
167 * kernfs_node parameter.
80b9bbef 168 */
90c07c89 169struct kernfs_syscall_ops {
6a7fed4e
TH
170 int (*remount_fs)(struct kernfs_root *root, int *flags, char *data);
171 int (*show_options)(struct seq_file *sf, struct kernfs_root *root);
172
80b9bbef
TH
173 int (*mkdir)(struct kernfs_node *parent, const char *name,
174 umode_t mode);
175 int (*rmdir)(struct kernfs_node *kn);
176 int (*rename)(struct kernfs_node *kn, struct kernfs_node *new_parent,
177 const char *new_name);
4f41fc59
SH
178 int (*show_path)(struct seq_file *sf, struct kernfs_node *kn,
179 struct kernfs_root *root);
80b9bbef
TH
180};
181
ba7443bc
TH
182struct kernfs_root {
183 /* published fields */
324a56e1 184 struct kernfs_node *kn;
d35258ef 185 unsigned int flags; /* KERNFS_ROOT_* flags */
bc755553
TH
186
187 /* private fields, do not use outside kernfs proper */
7d35079f 188 struct idr ino_idr;
65068917 189 u32 last_ino;
4a3ef68a 190 u32 next_generation;
90c07c89 191 struct kernfs_syscall_ops *syscall_ops;
7d568a83
TH
192
193 /* list of kernfs_super_info of this root, protected by kernfs_mutex */
194 struct list_head supers;
195
abd54f02 196 wait_queue_head_t deactivate_waitq;
ba7443bc
TH
197};
198
c525aadd 199struct kernfs_open_file {
dd8a5b03 200 /* published fields */
324a56e1 201 struct kernfs_node *kn;
dd8a5b03 202 struct file *file;
0e67db2f 203 struct seq_file *seq_file;
2536390d 204 void *priv;
dd8a5b03
TH
205
206 /* private fields, do not use outside kernfs proper */
207 struct mutex mutex;
e4234a1f 208 struct mutex prealloc_mutex;
dd8a5b03
TH
209 int event;
210 struct list_head list;
2b75869b 211 char *prealloc_buf;
dd8a5b03 212
b7ce40cf 213 size_t atomic_write_len;
a1d82aff 214 bool mmapped:1;
0e67db2f 215 bool released:1;
dd8a5b03
TH
216 const struct vm_operations_struct *vm_ops;
217};
218
f6acf8bb 219struct kernfs_ops {
0e67db2f
TH
220 /*
221 * Optional open/release methods. Both are called with
222 * @of->seq_file populated.
223 */
224 int (*open)(struct kernfs_open_file *of);
225 void (*release)(struct kernfs_open_file *of);
226
f6acf8bb
TH
227 /*
228 * Read is handled by either seq_file or raw_read().
229 *
d19b9846
TH
230 * If seq_show() is present, seq_file path is active. Other seq
231 * operations are optional and if not implemented, the behavior is
232 * equivalent to single_open(). @sf->private points to the
c525aadd 233 * associated kernfs_open_file.
f6acf8bb
TH
234 *
235 * read() is bounced through kernel buffer and a read larger than
236 * PAGE_SIZE results in partial operation of PAGE_SIZE.
237 */
238 int (*seq_show)(struct seq_file *sf, void *v);
d19b9846
TH
239
240 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
241 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
242 void (*seq_stop)(struct seq_file *sf, void *v);
f6acf8bb 243
c525aadd 244 ssize_t (*read)(struct kernfs_open_file *of, char *buf, size_t bytes,
f6acf8bb
TH
245 loff_t off);
246
247 /*
4d3773c4
TH
248 * write() is bounced through kernel buffer. If atomic_write_len
249 * is not set, a write larger than PAGE_SIZE results in partial
250 * operations of PAGE_SIZE chunks. If atomic_write_len is set,
251 * writes upto the specified size are executed atomically but
252 * larger ones are rejected with -E2BIG.
f6acf8bb 253 */
4d3773c4 254 size_t atomic_write_len;
2b75869b
N
255 /*
256 * "prealloc" causes a buffer to be allocated at open for
257 * all read/write requests. As ->seq_show uses seq_read()
258 * which does its own allocation, it is incompatible with
259 * ->prealloc. Provide ->read and ->write with ->prealloc.
260 */
261 bool prealloc;
c525aadd 262 ssize_t (*write)(struct kernfs_open_file *of, char *buf, size_t bytes,
f6acf8bb
TH
263 loff_t off);
264
c525aadd 265 int (*mmap)(struct kernfs_open_file *of, struct vm_area_struct *vma);
517e64f5
TH
266
267#ifdef CONFIG_DEBUG_LOCK_ALLOC
268 struct lock_class_key lockdep_key;
269#endif
f6acf8bb
TH
270};
271
ba341d55 272#ifdef CONFIG_KERNFS
879f40d1 273
df23fc39 274static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
cf9e5a73 275{
df23fc39 276 return kn->flags & KERNFS_TYPE_MASK;
cf9e5a73
TH
277}
278
279/**
280 * kernfs_enable_ns - enable namespace under a directory
324a56e1 281 * @kn: directory of interest, should be empty
cf9e5a73 282 *
324a56e1
TH
283 * This is to be called right after @kn is created to enable namespace
284 * under it. All children of @kn must have non-NULL namespace tags and
cf9e5a73
TH
285 * only the ones which match the super_block's tag will be visible.
286 */
324a56e1 287static inline void kernfs_enable_ns(struct kernfs_node *kn)
cf9e5a73 288{
df23fc39 289 WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
adc5e8b5 290 WARN_ON_ONCE(!RB_EMPTY_ROOT(&kn->dir.children));
df23fc39 291 kn->flags |= KERNFS_NS;
cf9e5a73
TH
292}
293
ac9bba03
TH
294/**
295 * kernfs_ns_enabled - test whether namespace is enabled
324a56e1 296 * @kn: the node to test
ac9bba03
TH
297 *
298 * Test whether namespace filtering is enabled for the children of @ns.
299 */
324a56e1 300static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
ac9bba03 301{
df23fc39 302 return kn->flags & KERNFS_NS;
ac9bba03
TH
303}
304
3eef34ad 305int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen);
9f6df573
AK
306int kernfs_path_from_node(struct kernfs_node *root_kn, struct kernfs_node *kn,
307 char *buf, size_t buflen);
3eef34ad
TH
308void pr_cont_kernfs_name(struct kernfs_node *kn);
309void pr_cont_kernfs_path(struct kernfs_node *kn);
310struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn);
324a56e1
TH
311struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
312 const char *name, const void *ns);
bd96f76a
TH
313struct kernfs_node *kernfs_walk_and_get_ns(struct kernfs_node *parent,
314 const char *path, const void *ns);
324a56e1
TH
315void kernfs_get(struct kernfs_node *kn);
316void kernfs_put(struct kernfs_node *kn);
ccf73cf3 317
0c23b225
TH
318struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry);
319struct kernfs_root *kernfs_root_from_sb(struct super_block *sb);
fb02915f 320struct inode *kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn);
0c23b225 321
fb3c8315
AK
322struct dentry *kernfs_node_dentry(struct kernfs_node *kn,
323 struct super_block *sb);
90c07c89 324struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
d35258ef 325 unsigned int flags, void *priv);
ba7443bc
TH
326void kernfs_destroy_root(struct kernfs_root *root);
327
324a56e1 328struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
bb8b9d09 329 const char *name, umode_t mode,
630d0eb6 330 kuid_t uid, kgid_t gid,
bb8b9d09 331 void *priv, const void *ns);
ea015218
EB
332struct kernfs_node *kernfs_create_empty_dir(struct kernfs_node *parent,
333 const char *name);
2063d608 334struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
630d0eb6
DT
335 const char *name, umode_t mode,
336 kuid_t uid, kgid_t gid,
337 loff_t size,
2063d608
TH
338 const struct kernfs_ops *ops,
339 void *priv, const void *ns,
2063d608 340 struct lock_class_key *key);
324a56e1
TH
341struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
342 const char *name,
343 struct kernfs_node *target);
d35258ef 344void kernfs_activate(struct kernfs_node *kn);
324a56e1 345void kernfs_remove(struct kernfs_node *kn);
6b0afc2a
TH
346void kernfs_break_active_protection(struct kernfs_node *kn);
347void kernfs_unbreak_active_protection(struct kernfs_node *kn);
348bool kernfs_remove_self(struct kernfs_node *kn);
324a56e1 349int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
879f40d1 350 const void *ns);
324a56e1 351int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
890ece16 352 const char *new_name, const void *new_ns);
324a56e1
TH
353int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr);
354void kernfs_notify(struct kernfs_node *kn);
879f40d1 355
4b93dc9b
TH
356const void *kernfs_super_ns(struct super_block *sb);
357struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
26fc9cd2
JZ
358 struct kernfs_root *root, unsigned long magic,
359 bool *new_sb_created, const void *ns);
4b93dc9b 360void kernfs_kill_sb(struct super_block *sb);
4e26445f 361struct super_block *kernfs_pin_sb(struct kernfs_root *root, const void *ns);
4b93dc9b
TH
362
363void kernfs_init(void);
364
69fd5c39
SL
365struct kernfs_node *kernfs_get_node_by_id(struct kernfs_root *root,
366 const union kernfs_node_id *id);
ba341d55 367#else /* CONFIG_KERNFS */
879f40d1 368
df23fc39 369static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
cf9e5a73
TH
370{ return 0; } /* whatever */
371
324a56e1 372static inline void kernfs_enable_ns(struct kernfs_node *kn) { }
cf9e5a73 373
324a56e1 374static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
ac9bba03
TH
375{ return false; }
376
3eef34ad
TH
377static inline int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
378{ return -ENOSYS; }
379
0e0b2afd
TH
380static inline int kernfs_path_from_node(struct kernfs_node *root_kn,
381 struct kernfs_node *kn,
382 char *buf, size_t buflen)
383{ return -ENOSYS; }
384
3eef34ad
TH
385static inline void pr_cont_kernfs_name(struct kernfs_node *kn) { }
386static inline void pr_cont_kernfs_path(struct kernfs_node *kn) { }
387
388static inline struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
389{ return NULL; }
390
324a56e1
TH
391static inline struct kernfs_node *
392kernfs_find_and_get_ns(struct kernfs_node *parent, const char *name,
ccf73cf3
TH
393 const void *ns)
394{ return NULL; }
bd96f76a
TH
395static inline struct kernfs_node *
396kernfs_walk_and_get_ns(struct kernfs_node *parent, const char *path,
397 const void *ns)
398{ return NULL; }
ccf73cf3 399
324a56e1
TH
400static inline void kernfs_get(struct kernfs_node *kn) { }
401static inline void kernfs_put(struct kernfs_node *kn) { }
ccf73cf3 402
0c23b225
TH
403static inline struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
404{ return NULL; }
405
406static inline struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
407{ return NULL; }
408
fb02915f
TH
409static inline struct inode *
410kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn)
411{ return NULL; }
412
80b9bbef 413static inline struct kernfs_root *
d35258ef
TH
414kernfs_create_root(struct kernfs_syscall_ops *scops, unsigned int flags,
415 void *priv)
ba7443bc
TH
416{ return ERR_PTR(-ENOSYS); }
417
418static inline void kernfs_destroy_root(struct kernfs_root *root) { }
419
324a56e1 420static inline struct kernfs_node *
bb8b9d09 421kernfs_create_dir_ns(struct kernfs_node *parent, const char *name,
630d0eb6
DT
422 umode_t mode, kuid_t uid, kgid_t gid,
423 void *priv, const void *ns)
93b2b8e4
TH
424{ return ERR_PTR(-ENOSYS); }
425
324a56e1 426static inline struct kernfs_node *
2063d608 427__kernfs_create_file(struct kernfs_node *parent, const char *name,
630d0eb6
DT
428 umode_t mode, kuid_t uid, kgid_t gid,
429 loff_t size, const struct kernfs_ops *ops,
dfeb0750 430 void *priv, const void *ns, struct lock_class_key *key)
496f7394
TH
431{ return ERR_PTR(-ENOSYS); }
432
324a56e1
TH
433static inline struct kernfs_node *
434kernfs_create_link(struct kernfs_node *parent, const char *name,
435 struct kernfs_node *target)
5d0e26bb
TH
436{ return ERR_PTR(-ENOSYS); }
437
d35258ef
TH
438static inline void kernfs_activate(struct kernfs_node *kn) { }
439
324a56e1 440static inline void kernfs_remove(struct kernfs_node *kn) { }
879f40d1 441
6b0afc2a
TH
442static inline bool kernfs_remove_self(struct kernfs_node *kn)
443{ return false; }
444
324a56e1 445static inline int kernfs_remove_by_name_ns(struct kernfs_node *kn,
879f40d1
TH
446 const char *name, const void *ns)
447{ return -ENOSYS; }
448
324a56e1
TH
449static inline int kernfs_rename_ns(struct kernfs_node *kn,
450 struct kernfs_node *new_parent,
890ece16
TH
451 const char *new_name, const void *new_ns)
452{ return -ENOSYS; }
453
324a56e1 454static inline int kernfs_setattr(struct kernfs_node *kn,
5d60418e
TH
455 const struct iattr *iattr)
456{ return -ENOSYS; }
457
324a56e1 458static inline void kernfs_notify(struct kernfs_node *kn) { }
024f6471 459
4b93dc9b
TH
460static inline const void *kernfs_super_ns(struct super_block *sb)
461{ return NULL; }
462
463static inline struct dentry *
464kernfs_mount_ns(struct file_system_type *fs_type, int flags,
26fc9cd2
JZ
465 struct kernfs_root *root, unsigned long magic,
466 bool *new_sb_created, const void *ns)
4b93dc9b
TH
467{ return ERR_PTR(-ENOSYS); }
468
469static inline void kernfs_kill_sb(struct super_block *sb) { }
470
471static inline void kernfs_init(void) { }
472
ba341d55 473#endif /* CONFIG_KERNFS */
879f40d1 474
3abb1d90
TH
475/**
476 * kernfs_path - build full path of a given node
477 * @kn: kernfs_node of interest
478 * @buf: buffer to copy @kn's name into
479 * @buflen: size of @buf
480 *
481 * Builds and returns the full path of @kn in @buf of @buflen bytes. The
482 * path is built from the end of @buf so the returned pointer usually
483 * doesn't match @buf. If @buf isn't long enough, @buf is nul terminated
484 * and %NULL is returned.
485 */
486static inline int kernfs_path(struct kernfs_node *kn, char *buf, size_t buflen)
487{
488 return kernfs_path_from_node(kn, NULL, buf, buflen);
489}
490
324a56e1
TH
491static inline struct kernfs_node *
492kernfs_find_and_get(struct kernfs_node *kn, const char *name)
ccf73cf3 493{
324a56e1 494 return kernfs_find_and_get_ns(kn, name, NULL);
ccf73cf3
TH
495}
496
bd96f76a
TH
497static inline struct kernfs_node *
498kernfs_walk_and_get(struct kernfs_node *kn, const char *path)
499{
500 return kernfs_walk_and_get_ns(kn, path, NULL);
501}
502
324a56e1 503static inline struct kernfs_node *
bb8b9d09
TH
504kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
505 void *priv)
93b2b8e4 506{
630d0eb6
DT
507 return kernfs_create_dir_ns(parent, name, mode,
508 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
509 priv, NULL);
93b2b8e4
TH
510}
511
324a56e1
TH
512static inline struct kernfs_node *
513kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
630d0eb6
DT
514 umode_t mode, kuid_t uid, kgid_t gid,
515 loff_t size, const struct kernfs_ops *ops,
517e64f5
TH
516 void *priv, const void *ns)
517{
518 struct lock_class_key *key = NULL;
519
520#ifdef CONFIG_DEBUG_LOCK_ALLOC
521 key = (struct lock_class_key *)&ops->lockdep_key;
522#endif
630d0eb6
DT
523 return __kernfs_create_file(parent, name, mode, uid, gid,
524 size, ops, priv, ns, key);
517e64f5
TH
525}
526
324a56e1
TH
527static inline struct kernfs_node *
528kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
496f7394
TH
529 loff_t size, const struct kernfs_ops *ops, void *priv)
530{
630d0eb6
DT
531 return kernfs_create_file_ns(parent, name, mode,
532 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
533 size, ops, priv, NULL);
496f7394
TH
534}
535
324a56e1 536static inline int kernfs_remove_by_name(struct kernfs_node *parent,
879f40d1
TH
537 const char *name)
538{
539 return kernfs_remove_by_name_ns(parent, name, NULL);
540}
541
0c23b225
TH
542static inline int kernfs_rename(struct kernfs_node *kn,
543 struct kernfs_node *new_parent,
544 const char *new_name)
545{
546 return kernfs_rename_ns(kn, new_parent, new_name, NULL);
547}
548
4b93dc9b
TH
549static inline struct dentry *
550kernfs_mount(struct file_system_type *fs_type, int flags,
26fc9cd2
JZ
551 struct kernfs_root *root, unsigned long magic,
552 bool *new_sb_created)
4b93dc9b 553{
26fc9cd2
JZ
554 return kernfs_mount_ns(fs_type, flags, root,
555 magic, new_sb_created, NULL);
4b93dc9b
TH
556}
557
b8441ed2 558#endif /* __LINUX_KERNFS_H */