]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/linux/kernfs.h
kernfs: remove KERNFS_REMOVED
[karo-tx-linux.git] / include / linux / kernfs.h
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
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
20 struct file;
21 struct iattr;
22 struct seq_file;
23 struct vm_area_struct;
24 struct super_block;
25 struct file_system_type;
26
27 struct kernfs_open_node;
28 struct kernfs_iattrs;
29
30 enum kernfs_node_type {
31         KERNFS_DIR              = 0x0001,
32         KERNFS_FILE             = 0x0002,
33         KERNFS_LINK             = 0x0004,
34 };
35
36 #define KERNFS_TYPE_MASK        0x000f
37 #define KERNFS_FLAG_MASK        ~KERNFS_TYPE_MASK
38
39 enum kernfs_node_flag {
40         KERNFS_NS               = 0x0020,
41         KERNFS_HAS_SEQ_SHOW     = 0x0040,
42         KERNFS_HAS_MMAP         = 0x0080,
43         KERNFS_LOCKDEP          = 0x0100,
44         KERNFS_STATIC_NAME      = 0x0200,
45 };
46
47 /* type-specific structures for kernfs_node union members */
48 struct kernfs_elem_dir {
49         unsigned long           subdirs;
50         /* children rbtree starts here and goes through kn->rb */
51         struct rb_root          children;
52
53         /*
54          * The kernfs hierarchy this directory belongs to.  This fits
55          * better directly in kernfs_node but is here to save space.
56          */
57         struct kernfs_root      *root;
58 };
59
60 struct kernfs_elem_symlink {
61         struct kernfs_node      *target_kn;
62 };
63
64 struct kernfs_elem_attr {
65         const struct kernfs_ops *ops;
66         struct kernfs_open_node *open;
67         loff_t                  size;
68 };
69
70 /*
71  * kernfs_node - the building block of kernfs hierarchy.  Each and every
72  * kernfs node is represented by single kernfs_node.  Most fields are
73  * private to kernfs and shouldn't be accessed directly by kernfs users.
74  *
75  * As long as s_count reference is held, the kernfs_node itself is
76  * accessible.  Dereferencing elem or any other outer entity requires
77  * active reference.
78  */
79 struct kernfs_node {
80         atomic_t                count;
81         atomic_t                active;
82 #ifdef CONFIG_DEBUG_LOCK_ALLOC
83         struct lockdep_map      dep_map;
84 #endif
85         /* the following two fields are published */
86         struct kernfs_node      *parent;
87         const char              *name;
88
89         struct rb_node          rb;
90
91         union {
92                 struct kernfs_node      *removed_list;
93         } u;
94
95         const void              *ns;    /* namespace tag */
96         unsigned int            hash;   /* ns + name hash */
97         union {
98                 struct kernfs_elem_dir          dir;
99                 struct kernfs_elem_symlink      symlink;
100                 struct kernfs_elem_attr         attr;
101         };
102
103         void                    *priv;
104
105         unsigned short          flags;
106         umode_t                 mode;
107         unsigned int            ino;
108         struct kernfs_iattrs    *iattr;
109 };
110
111 /*
112  * kernfs_dir_ops may be specified on kernfs_create_root() to support
113  * directory manipulation syscalls.  These optional callbacks are invoked
114  * on the matching syscalls and can perform any kernfs operations which
115  * don't necessarily have to be the exact operation requested.
116  */
117 struct kernfs_dir_ops {
118         int (*mkdir)(struct kernfs_node *parent, const char *name,
119                      umode_t mode);
120         int (*rmdir)(struct kernfs_node *kn);
121         int (*rename)(struct kernfs_node *kn, struct kernfs_node *new_parent,
122                       const char *new_name);
123 };
124
125 struct kernfs_root {
126         /* published fields */
127         struct kernfs_node      *kn;
128
129         /* private fields, do not use outside kernfs proper */
130         struct ida              ino_ida;
131         struct kernfs_dir_ops   *dir_ops;
132         wait_queue_head_t       deactivate_waitq;
133 };
134
135 struct kernfs_open_file {
136         /* published fields */
137         struct kernfs_node      *kn;
138         struct file             *file;
139
140         /* private fields, do not use outside kernfs proper */
141         struct mutex            mutex;
142         int                     event;
143         struct list_head        list;
144
145         bool                    mmapped;
146         const struct vm_operations_struct *vm_ops;
147 };
148
149 struct kernfs_ops {
150         /*
151          * Read is handled by either seq_file or raw_read().
152          *
153          * If seq_show() is present, seq_file path is active.  Other seq
154          * operations are optional and if not implemented, the behavior is
155          * equivalent to single_open().  @sf->private points to the
156          * associated kernfs_open_file.
157          *
158          * read() is bounced through kernel buffer and a read larger than
159          * PAGE_SIZE results in partial operation of PAGE_SIZE.
160          */
161         int (*seq_show)(struct seq_file *sf, void *v);
162
163         void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
164         void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
165         void (*seq_stop)(struct seq_file *sf, void *v);
166
167         ssize_t (*read)(struct kernfs_open_file *of, char *buf, size_t bytes,
168                         loff_t off);
169
170         /*
171          * write() is bounced through kernel buffer and a write larger than
172          * PAGE_SIZE results in partial operation of PAGE_SIZE.
173          */
174         ssize_t (*write)(struct kernfs_open_file *of, char *buf, size_t bytes,
175                          loff_t off);
176
177         int (*mmap)(struct kernfs_open_file *of, struct vm_area_struct *vma);
178
179 #ifdef CONFIG_DEBUG_LOCK_ALLOC
180         struct lock_class_key   lockdep_key;
181 #endif
182 };
183
184 #ifdef CONFIG_SYSFS
185
186 static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
187 {
188         return kn->flags & KERNFS_TYPE_MASK;
189 }
190
191 /**
192  * kernfs_enable_ns - enable namespace under a directory
193  * @kn: directory of interest, should be empty
194  *
195  * This is to be called right after @kn is created to enable namespace
196  * under it.  All children of @kn must have non-NULL namespace tags and
197  * only the ones which match the super_block's tag will be visible.
198  */
199 static inline void kernfs_enable_ns(struct kernfs_node *kn)
200 {
201         WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
202         WARN_ON_ONCE(!RB_EMPTY_ROOT(&kn->dir.children));
203         kn->flags |= KERNFS_NS;
204 }
205
206 /**
207  * kernfs_ns_enabled - test whether namespace is enabled
208  * @kn: the node to test
209  *
210  * Test whether namespace filtering is enabled for the children of @ns.
211  */
212 static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
213 {
214         return kn->flags & KERNFS_NS;
215 }
216
217 struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
218                                            const char *name, const void *ns);
219 void kernfs_get(struct kernfs_node *kn);
220 void kernfs_put(struct kernfs_node *kn);
221
222 struct kernfs_root *kernfs_create_root(struct kernfs_dir_ops *kdops,
223                                        void *priv);
224 void kernfs_destroy_root(struct kernfs_root *root);
225
226 struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
227                                          const char *name, umode_t mode,
228                                          void *priv, const void *ns);
229 struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
230                                          const char *name,
231                                          umode_t mode, loff_t size,
232                                          const struct kernfs_ops *ops,
233                                          void *priv, const void *ns,
234                                          bool name_is_static,
235                                          struct lock_class_key *key);
236 struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
237                                        const char *name,
238                                        struct kernfs_node *target);
239 void kernfs_remove(struct kernfs_node *kn);
240 int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
241                              const void *ns);
242 int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
243                      const char *new_name, const void *new_ns);
244 int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr);
245 void kernfs_notify(struct kernfs_node *kn);
246
247 const void *kernfs_super_ns(struct super_block *sb);
248 struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
249                                struct kernfs_root *root, const void *ns);
250 void kernfs_kill_sb(struct super_block *sb);
251
252 void kernfs_init(void);
253
254 #else   /* CONFIG_SYSFS */
255
256 static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
257 { return 0; }   /* whatever */
258
259 static inline void kernfs_enable_ns(struct kernfs_node *kn) { }
260
261 static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
262 { return false; }
263
264 static inline struct kernfs_node *
265 kernfs_find_and_get_ns(struct kernfs_node *parent, const char *name,
266                        const void *ns)
267 { return NULL; }
268
269 static inline void kernfs_get(struct kernfs_node *kn) { }
270 static inline void kernfs_put(struct kernfs_node *kn) { }
271
272 static inline struct kernfs_root *
273 kernfs_create_root(struct kernfs_dir_ops *kdops, void *priv)
274 { return ERR_PTR(-ENOSYS); }
275
276 static inline void kernfs_destroy_root(struct kernfs_root *root) { }
277
278 static inline struct kernfs_node *
279 kernfs_create_dir_ns(struct kernfs_node *parent, const char *name,
280                      umode_t mode, void *priv, const void *ns)
281 { return ERR_PTR(-ENOSYS); }
282
283 static inline struct kernfs_node *
284 __kernfs_create_file(struct kernfs_node *parent, const char *name,
285                      umode_t mode, loff_t size, const struct kernfs_ops *ops,
286                      void *priv, const void *ns, bool name_is_static,
287                      struct lock_class_key *key)
288 { return ERR_PTR(-ENOSYS); }
289
290 static inline struct kernfs_node *
291 kernfs_create_link(struct kernfs_node *parent, const char *name,
292                    struct kernfs_node *target)
293 { return ERR_PTR(-ENOSYS); }
294
295 static inline void kernfs_remove(struct kernfs_node *kn) { }
296
297 static inline int kernfs_remove_by_name_ns(struct kernfs_node *kn,
298                                            const char *name, const void *ns)
299 { return -ENOSYS; }
300
301 static inline int kernfs_rename_ns(struct kernfs_node *kn,
302                                    struct kernfs_node *new_parent,
303                                    const char *new_name, const void *new_ns)
304 { return -ENOSYS; }
305
306 static inline int kernfs_setattr(struct kernfs_node *kn,
307                                  const struct iattr *iattr)
308 { return -ENOSYS; }
309
310 static inline void kernfs_notify(struct kernfs_node *kn) { }
311
312 static inline const void *kernfs_super_ns(struct super_block *sb)
313 { return NULL; }
314
315 static inline struct dentry *
316 kernfs_mount_ns(struct file_system_type *fs_type, int flags,
317                 struct kernfs_root *root, const void *ns)
318 { return ERR_PTR(-ENOSYS); }
319
320 static inline void kernfs_kill_sb(struct super_block *sb) { }
321
322 static inline void kernfs_init(void) { }
323
324 #endif  /* CONFIG_SYSFS */
325
326 static inline struct kernfs_node *
327 kernfs_find_and_get(struct kernfs_node *kn, const char *name)
328 {
329         return kernfs_find_and_get_ns(kn, name, NULL);
330 }
331
332 static inline struct kernfs_node *
333 kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
334                   void *priv)
335 {
336         return kernfs_create_dir_ns(parent, name, mode, priv, NULL);
337 }
338
339 static inline struct kernfs_node *
340 kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
341                       umode_t mode, loff_t size, const struct kernfs_ops *ops,
342                       void *priv, const void *ns)
343 {
344         struct lock_class_key *key = NULL;
345
346 #ifdef CONFIG_DEBUG_LOCK_ALLOC
347         key = (struct lock_class_key *)&ops->lockdep_key;
348 #endif
349         return __kernfs_create_file(parent, name, mode, size, ops, priv, ns,
350                                     false, key);
351 }
352
353 static inline struct kernfs_node *
354 kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
355                    loff_t size, const struct kernfs_ops *ops, void *priv)
356 {
357         return kernfs_create_file_ns(parent, name, mode, size, ops, priv, NULL);
358 }
359
360 static inline int kernfs_remove_by_name(struct kernfs_node *parent,
361                                         const char *name)
362 {
363         return kernfs_remove_by_name_ns(parent, name, NULL);
364 }
365
366 static inline struct dentry *
367 kernfs_mount(struct file_system_type *fs_type, int flags,
368              struct kernfs_root *root)
369 {
370         return kernfs_mount_ns(fs_type, flags, root, NULL);
371 }
372
373 #endif  /* __LINUX_KERNFS_H */