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