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_STATIC_NAME = 0x0200,
47 KERNFS_SUICIDAL = 0x0400,
48 KERNFS_SUICIDED = 0x0800,
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);
269char * __must_check kernfs_path(struct kernfs_node *kn, char *buf,
270 size_t buflen);
271void pr_cont_kernfs_name(struct kernfs_node *kn);
272void pr_cont_kernfs_path(struct kernfs_node *kn);
273struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn);
274struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
275 const char *name, const void *ns);
276void kernfs_get(struct kernfs_node *kn);
277void kernfs_put(struct kernfs_node *kn);
278
279struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry);
280struct kernfs_root *kernfs_root_from_sb(struct super_block *sb);
281
282struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
283 unsigned int flags, void *priv);
284void kernfs_destroy_root(struct kernfs_root *root);
285
286struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
287 const char *name, umode_t mode,
288 void *priv, const void *ns);
289struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
290 const char *name,
291 umode_t mode, loff_t size,
292 const struct kernfs_ops *ops,
293 void *priv, const void *ns,
294 bool name_is_static,
295 struct lock_class_key *key);
296struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
297 const char *name,
298 struct kernfs_node *target);
299void kernfs_activate(struct kernfs_node *kn);
300void kernfs_remove(struct kernfs_node *kn);
301void kernfs_break_active_protection(struct kernfs_node *kn);
302void kernfs_unbreak_active_protection(struct kernfs_node *kn);
303bool kernfs_remove_self(struct kernfs_node *kn);
304int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
305 const void *ns);
306int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
307 const char *new_name, const void *new_ns);
308int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr);
309void kernfs_notify(struct kernfs_node *kn);
310
311const void *kernfs_super_ns(struct super_block *sb);
312struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
313 struct kernfs_root *root, unsigned long magic,
314 bool *new_sb_created, const void *ns);
315void kernfs_kill_sb(struct super_block *sb);
316struct super_block *kernfs_pin_sb(struct kernfs_root *root, const void *ns);
317
318void kernfs_init(void);
319
320#else
321
322static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
323{ return 0; }
324
325static inline void kernfs_enable_ns(struct kernfs_node *kn) { }
326
327static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
328{ return false; }
329
330static inline int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
331{ return -ENOSYS; }
332
333static inline char * __must_check kernfs_path(struct kernfs_node *kn, char *buf,
334 size_t buflen)
335{ return NULL; }
336
337static inline void pr_cont_kernfs_name(struct kernfs_node *kn) { }
338static inline void pr_cont_kernfs_path(struct kernfs_node *kn) { }
339
340static inline struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
341{ return NULL; }
342
343static inline struct kernfs_node *
344kernfs_find_and_get_ns(struct kernfs_node *parent, const char *name,
345 const void *ns)
346{ return NULL; }
347
348static inline void kernfs_get(struct kernfs_node *kn) { }
349static inline void kernfs_put(struct kernfs_node *kn) { }
350
351static inline struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
352{ return NULL; }
353
354static inline struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
355{ return NULL; }
356
357static inline struct kernfs_root *
358kernfs_create_root(struct kernfs_syscall_ops *scops, unsigned int flags,
359 void *priv)
360{ return ERR_PTR(-ENOSYS); }
361
362static inline void kernfs_destroy_root(struct kernfs_root *root) { }
363
364static inline struct kernfs_node *
365kernfs_create_dir_ns(struct kernfs_node *parent, const char *name,
366 umode_t mode, void *priv, const void *ns)
367{ return ERR_PTR(-ENOSYS); }
368
369static inline struct kernfs_node *
370__kernfs_create_file(struct kernfs_node *parent, const char *name,
371 umode_t mode, loff_t size, const struct kernfs_ops *ops,
372 void *priv, const void *ns, bool name_is_static,
373 struct lock_class_key *key)
374{ return ERR_PTR(-ENOSYS); }
375
376static inline struct kernfs_node *
377kernfs_create_link(struct kernfs_node *parent, const char *name,
378 struct kernfs_node *target)
379{ return ERR_PTR(-ENOSYS); }
380
381static inline void kernfs_activate(struct kernfs_node *kn) { }
382
383static inline void kernfs_remove(struct kernfs_node *kn) { }
384
385static inline bool kernfs_remove_self(struct kernfs_node *kn)
386{ return false; }
387
388static inline int kernfs_remove_by_name_ns(struct kernfs_node *kn,
389 const char *name, const void *ns)
390{ return -ENOSYS; }
391
392static inline int kernfs_rename_ns(struct kernfs_node *kn,
393 struct kernfs_node *new_parent,
394 const char *new_name, const void *new_ns)
395{ return -ENOSYS; }
396
397static inline int kernfs_setattr(struct kernfs_node *kn,
398 const struct iattr *iattr)
399{ return -ENOSYS; }
400
401static inline void kernfs_notify(struct kernfs_node *kn) { }
402
403static inline const void *kernfs_super_ns(struct super_block *sb)
404{ return NULL; }
405
406static inline struct dentry *
407kernfs_mount_ns(struct file_system_type *fs_type, int flags,
408 struct kernfs_root *root, unsigned long magic,
409 bool *new_sb_created, const void *ns)
410{ return ERR_PTR(-ENOSYS); }
411
412static inline void kernfs_kill_sb(struct super_block *sb) { }
413
414static inline void kernfs_init(void) { }
415
416#endif
417
418static inline struct kernfs_node *
419kernfs_find_and_get(struct kernfs_node *kn, const char *name)
420{
421 return kernfs_find_and_get_ns(kn, name, NULL);
422}
423
424static inline struct kernfs_node *
425kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
426 void *priv)
427{
428 return kernfs_create_dir_ns(parent, name, mode, priv, NULL);
429}
430
431static inline struct kernfs_node *
432kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
433 umode_t mode, loff_t size, const struct kernfs_ops *ops,
434 void *priv, const void *ns)
435{
436 struct lock_class_key *key = NULL;
437
438#ifdef CONFIG_DEBUG_LOCK_ALLOC
439 key = (struct lock_class_key *)&ops->lockdep_key;
440#endif
441 return __kernfs_create_file(parent, name, mode, size, ops, priv, ns,
442 false, key);
443}
444
445static inline struct kernfs_node *
446kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
447 loff_t size, const struct kernfs_ops *ops, void *priv)
448{
449 return kernfs_create_file_ns(parent, name, mode, size, ops, priv, NULL);
450}
451
452static inline int kernfs_remove_by_name(struct kernfs_node *parent,
453 const char *name)
454{
455 return kernfs_remove_by_name_ns(parent, name, NULL);
456}
457
458static inline int kernfs_rename(struct kernfs_node *kn,
459 struct kernfs_node *new_parent,
460 const char *new_name)
461{
462 return kernfs_rename_ns(kn, new_parent, new_name, NULL);
463}
464
465static inline struct dentry *
466kernfs_mount(struct file_system_type *fs_type, int flags,
467 struct kernfs_root *root, unsigned long magic,
468 bool *new_sb_created)
469{
470 return kernfs_mount_ns(fs_type, flags, root,
471 magic, new_sb_created, NULL);
472}
473
474#endif
475