1
2
3
4
5
6
7#ifndef __LINUX_KERNFS_H
8#define __LINUX_KERNFS_H
9
10#include <linux/kernel.h>
11#include <linux/err.h>
12#include <linux/list.h>
13#include <linux/mutex.h>
14#include <linux/idr.h>
15#include <linux/lockdep.h>
16#include <linux/rbtree.h>
17#include <linux/atomic.h>
18#include <linux/wait.h>
19
20struct file;
21struct dentry;
22struct iattr;
23struct seq_file;
24struct vm_area_struct;
25struct super_block;
26struct file_system_type;
27
28struct kernfs_open_node;
29struct kernfs_iattrs;
30
31enum kernfs_node_type {
32 KERNFS_DIR = 0x0001,
33 KERNFS_FILE = 0x0002,
34 KERNFS_LINK = 0x0004,
35};
36
37#define KERNFS_TYPE_MASK 0x000f
38#define KERNFS_FLAG_MASK ~KERNFS_TYPE_MASK
39
40enum kernfs_node_flag {
41 KERNFS_ACTIVATED = 0x0010,
42 KERNFS_NS = 0x0020,
43 KERNFS_HAS_SEQ_SHOW = 0x0040,
44 KERNFS_HAS_MMAP = 0x0080,
45 KERNFS_LOCKDEP = 0x0100,
46 KERNFS_SUICIDAL = 0x0400,
47 KERNFS_SUICIDED = 0x0800,
48 KERNFS_EMPTY_DIR = 0x1000,
49};
50
51
52enum kernfs_root_flag {
53
54
55
56
57
58
59 KERNFS_ROOT_CREATE_DEACTIVATED = 0x0001,
60
61
62
63
64
65
66
67
68
69
70 KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 0x0002,
71};
72
73
74struct kernfs_elem_dir {
75 unsigned long subdirs;
76
77 struct rb_root children;
78
79
80
81
82
83 struct kernfs_root *root;
84};
85
86struct kernfs_elem_symlink {
87 struct kernfs_node *target_kn;
88};
89
90struct kernfs_elem_attr {
91 const struct kernfs_ops *ops;
92 struct kernfs_open_node *open;
93 loff_t size;
94 struct kernfs_node *notify_next;
95};
96
97
98
99
100
101
102
103
104
105
106struct kernfs_node {
107 atomic_t count;
108 atomic_t active;
109#ifdef CONFIG_DEBUG_LOCK_ALLOC
110 struct lockdep_map dep_map;
111#endif
112
113
114
115
116
117
118 struct kernfs_node *parent;
119 const char *name;
120
121 struct rb_node rb;
122
123 const void *ns;
124 unsigned int hash;
125 union {
126 struct kernfs_elem_dir dir;
127 struct kernfs_elem_symlink symlink;
128 struct kernfs_elem_attr attr;
129 };
130
131 void *priv;
132
133 unsigned short flags;
134 umode_t mode;
135 unsigned int ino;
136 struct kernfs_iattrs *iattr;
137};
138
139
140
141
142
143
144
145
146struct kernfs_syscall_ops {
147 int (*remount_fs)(struct kernfs_root *root, int *flags, char *data);
148 int (*show_options)(struct seq_file *sf, struct kernfs_root *root);
149
150 int (*mkdir)(struct kernfs_node *parent, const char *name,
151 umode_t mode);
152 int (*rmdir)(struct kernfs_node *kn);
153 int (*rename)(struct kernfs_node *kn, struct kernfs_node *new_parent,
154 const char *new_name);
155};
156
157struct kernfs_root {
158
159 struct kernfs_node *kn;
160 unsigned int flags;
161
162
163 struct ida ino_ida;
164 struct kernfs_syscall_ops *syscall_ops;
165
166
167 struct list_head supers;
168
169 wait_queue_head_t deactivate_waitq;
170};
171
172struct kernfs_open_file {
173
174 struct kernfs_node *kn;
175 struct file *file;
176 void *priv;
177
178
179 struct mutex mutex;
180 int event;
181 struct list_head list;
182 char *prealloc_buf;
183
184 size_t atomic_write_len;
185 bool mmapped;
186 const struct vm_operations_struct *vm_ops;
187};
188
189struct kernfs_ops {
190
191
192
193
194
195
196
197
198
199
200
201 int (*seq_show)(struct seq_file *sf, void *v);
202
203 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
204 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
205 void (*seq_stop)(struct seq_file *sf, void *v);
206
207 ssize_t (*read)(struct kernfs_open_file *of, char *buf, size_t bytes,
208 loff_t off);
209
210
211
212
213
214
215
216
217 size_t atomic_write_len;
218
219
220
221
222
223
224 bool prealloc;
225 ssize_t (*write)(struct kernfs_open_file *of, char *buf, size_t bytes,
226 loff_t off);
227
228 int (*mmap)(struct kernfs_open_file *of, struct vm_area_struct *vma);
229
230#ifdef CONFIG_DEBUG_LOCK_ALLOC
231 struct lock_class_key lockdep_key;
232#endif
233};
234
235#ifdef CONFIG_KERNFS
236
237static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
238{
239 return kn->flags & KERNFS_TYPE_MASK;
240}
241
242
243
244
245
246
247
248
249
250static inline void kernfs_enable_ns(struct kernfs_node *kn)
251{
252 WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
253 WARN_ON_ONCE(!RB_EMPTY_ROOT(&kn->dir.children));
254 kn->flags |= KERNFS_NS;
255}
256
257
258
259
260
261
262
263static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
264{
265 return kn->flags & KERNFS_NS;
266}
267
268int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen);
269size_t kernfs_path_len(struct kernfs_node *kn);
270char * __must_check kernfs_path(struct kernfs_node *kn, char *buf,
271 size_t buflen);
272void pr_cont_kernfs_name(struct kernfs_node *kn);
273void pr_cont_kernfs_path(struct kernfs_node *kn);
274struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn);
275struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
276 const char *name, const void *ns);
277void kernfs_get(struct kernfs_node *kn);
278void kernfs_put(struct kernfs_node *kn);
279
280struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry);
281struct kernfs_root *kernfs_root_from_sb(struct super_block *sb);
282struct inode *kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn);
283
284struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
285 unsigned int flags, void *priv);
286void kernfs_destroy_root(struct kernfs_root *root);
287
288struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
289 const char *name, umode_t mode,
290 void *priv, const void *ns);
291struct kernfs_node *kernfs_create_empty_dir(struct kernfs_node *parent,
292 const char *name);
293struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
294 const char *name,
295 umode_t mode, loff_t size,
296 const struct kernfs_ops *ops,
297 void *priv, const void *ns,
298 struct lock_class_key *key);
299struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
300 const char *name,
301 struct kernfs_node *target);
302void kernfs_activate(struct kernfs_node *kn);
303void kernfs_remove(struct kernfs_node *kn);
304void kernfs_break_active_protection(struct kernfs_node *kn);
305void kernfs_unbreak_active_protection(struct kernfs_node *kn);
306bool kernfs_remove_self(struct kernfs_node *kn);
307int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
308 const void *ns);
309int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
310 const char *new_name, const void *new_ns);
311int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr);
312void kernfs_notify(struct kernfs_node *kn);
313
314const void *kernfs_super_ns(struct super_block *sb);
315struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
316 struct kernfs_root *root, unsigned long magic,
317 bool *new_sb_created, const void *ns);
318void kernfs_kill_sb(struct super_block *sb);
319struct super_block *kernfs_pin_sb(struct kernfs_root *root, const void *ns);
320
321void kernfs_init(void);
322
323#else
324
325static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
326{ return 0; }
327
328static inline void kernfs_enable_ns(struct kernfs_node *kn) { }
329
330static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
331{ return false; }
332
333static inline int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
334{ return -ENOSYS; }
335
336static inline size_t kernfs_path_len(struct kernfs_node *kn)
337{ return 0; }
338
339static inline char * __must_check kernfs_path(struct kernfs_node *kn, char *buf,
340 size_t buflen)
341{ return NULL; }
342
343static inline void pr_cont_kernfs_name(struct kernfs_node *kn) { }
344static inline void pr_cont_kernfs_path(struct kernfs_node *kn) { }
345
346static inline struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
347{ return NULL; }
348
349static inline struct kernfs_node *
350kernfs_find_and_get_ns(struct kernfs_node *parent, const char *name,
351 const void *ns)
352{ return NULL; }
353
354static inline void kernfs_get(struct kernfs_node *kn) { }
355static inline void kernfs_put(struct kernfs_node *kn) { }
356
357static inline struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
358{ return NULL; }
359
360static inline struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
361{ return NULL; }
362
363static inline struct inode *
364kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn)
365{ return NULL; }
366
367static inline struct kernfs_root *
368kernfs_create_root(struct kernfs_syscall_ops *scops, unsigned int flags,
369 void *priv)
370{ return ERR_PTR(-ENOSYS); }
371
372static inline void kernfs_destroy_root(struct kernfs_root *root) { }
373
374static inline struct kernfs_node *
375kernfs_create_dir_ns(struct kernfs_node *parent, const char *name,
376 umode_t mode, void *priv, const void *ns)
377{ return ERR_PTR(-ENOSYS); }
378
379static inline struct kernfs_node *
380__kernfs_create_file(struct kernfs_node *parent, const char *name,
381 umode_t mode, loff_t size, const struct kernfs_ops *ops,
382 void *priv, const void *ns, struct lock_class_key *key)
383{ return ERR_PTR(-ENOSYS); }
384
385static inline struct kernfs_node *
386kernfs_create_link(struct kernfs_node *parent, const char *name,
387 struct kernfs_node *target)
388{ return ERR_PTR(-ENOSYS); }
389
390static inline void kernfs_activate(struct kernfs_node *kn) { }
391
392static inline void kernfs_remove(struct kernfs_node *kn) { }
393
394static inline bool kernfs_remove_self(struct kernfs_node *kn)
395{ return false; }
396
397static inline int kernfs_remove_by_name_ns(struct kernfs_node *kn,
398 const char *name, const void *ns)
399{ return -ENOSYS; }
400
401static inline int kernfs_rename_ns(struct kernfs_node *kn,
402 struct kernfs_node *new_parent,
403 const char *new_name, const void *new_ns)
404{ return -ENOSYS; }
405
406static inline int kernfs_setattr(struct kernfs_node *kn,
407 const struct iattr *iattr)
408{ return -ENOSYS; }
409
410static inline void kernfs_notify(struct kernfs_node *kn) { }
411
412static inline const void *kernfs_super_ns(struct super_block *sb)
413{ return NULL; }
414
415static inline struct dentry *
416kernfs_mount_ns(struct file_system_type *fs_type, int flags,
417 struct kernfs_root *root, unsigned long magic,
418 bool *new_sb_created, const void *ns)
419{ return ERR_PTR(-ENOSYS); }
420
421static inline void kernfs_kill_sb(struct super_block *sb) { }
422
423static inline void kernfs_init(void) { }
424
425#endif
426
427static inline struct kernfs_node *
428kernfs_find_and_get(struct kernfs_node *kn, const char *name)
429{
430 return kernfs_find_and_get_ns(kn, name, NULL);
431}
432
433static inline struct kernfs_node *
434kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
435 void *priv)
436{
437 return kernfs_create_dir_ns(parent, name, mode, priv, NULL);
438}
439
440static inline struct kernfs_node *
441kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
442 umode_t mode, loff_t size, const struct kernfs_ops *ops,
443 void *priv, const void *ns)
444{
445 struct lock_class_key *key = NULL;
446
447#ifdef CONFIG_DEBUG_LOCK_ALLOC
448 key = (struct lock_class_key *)&ops->lockdep_key;
449#endif
450 return __kernfs_create_file(parent, name, mode, size, ops, priv, ns,
451 key);
452}
453
454static inline struct kernfs_node *
455kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
456 loff_t size, const struct kernfs_ops *ops, void *priv)
457{
458 return kernfs_create_file_ns(parent, name, mode, size, ops, priv, NULL);
459}
460
461static inline int kernfs_remove_by_name(struct kernfs_node *parent,
462 const char *name)
463{
464 return kernfs_remove_by_name_ns(parent, name, NULL);
465}
466
467static inline int kernfs_rename(struct kernfs_node *kn,
468 struct kernfs_node *new_parent,
469 const char *new_name)
470{
471 return kernfs_rename_ns(kn, new_parent, new_name, NULL);
472}
473
474static inline struct dentry *
475kernfs_mount(struct file_system_type *fs_type, int flags,
476 struct kernfs_root *root, unsigned long magic,
477 bool *new_sb_created)
478{
479 return kernfs_mount_ns(fs_type, flags, root,
480 magic, new_sb_created, NULL);
481}
482
483#endif
484