• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * kernfs.h - pseudo filesystem decoupled from vfs locking
4  */
5 
6 #ifndef __LINUX_KERNFS_H
7 #define __LINUX_KERNFS_H
8 
9 #include <linux/kernel.h>
10 #include <linux/err.h>
11 #include <linux/list.h>
12 #include <linux/mutex.h>
13 #include <linux/idr.h>
14 #include <linux/lockdep.h>
15 #include <linux/rbtree.h>
16 #include <linux/atomic.h>
17 #include <linux/uidgid.h>
18 #include <linux/wait.h>
19 #include <linux/android_kabi.h>
20 
21 struct file;
22 struct dentry;
23 struct iattr;
24 struct seq_file;
25 struct vm_area_struct;
26 struct super_block;
27 struct file_system_type;
28 struct poll_table_struct;
29 struct fs_context;
30 
31 struct kernfs_fs_context;
32 struct kernfs_open_node;
33 struct kernfs_iattrs;
34 
35 enum kernfs_node_type {
36 	KERNFS_DIR		= 0x0001,
37 	KERNFS_FILE		= 0x0002,
38 	KERNFS_LINK		= 0x0004,
39 };
40 
41 #define KERNFS_TYPE_MASK		0x000f
42 #define KERNFS_FLAG_MASK		~KERNFS_TYPE_MASK
43 #define KERNFS_MAX_USER_XATTRS		128
44 #define KERNFS_USER_XATTR_SIZE_LIMIT	(128 << 10)
45 
46 enum kernfs_node_flag {
47 	KERNFS_ACTIVATED	= 0x0010,
48 	KERNFS_NS		= 0x0020,
49 	KERNFS_HAS_SEQ_SHOW	= 0x0040,
50 	KERNFS_HAS_MMAP		= 0x0080,
51 	KERNFS_LOCKDEP		= 0x0100,
52 	KERNFS_SUICIDAL		= 0x0400,
53 	KERNFS_SUICIDED		= 0x0800,
54 	KERNFS_EMPTY_DIR	= 0x1000,
55 	KERNFS_HAS_RELEASE	= 0x2000,
56 };
57 
58 /* @flags for kernfs_create_root() */
59 enum kernfs_root_flag {
60 	/*
61 	 * kernfs_nodes are created in the deactivated state and invisible.
62 	 * They require explicit kernfs_activate() to become visible.  This
63 	 * can be used to make related nodes become visible atomically
64 	 * after all nodes are created successfully.
65 	 */
66 	KERNFS_ROOT_CREATE_DEACTIVATED		= 0x0001,
67 
68 	/*
69 	 * For regular files, if the opener has CAP_DAC_OVERRIDE, open(2)
70 	 * succeeds regardless of the RW permissions.  sysfs had an extra
71 	 * layer of enforcement where open(2) fails with -EACCES regardless
72 	 * of CAP_DAC_OVERRIDE if the permission doesn't have the
73 	 * respective read or write access at all (none of S_IRUGO or
74 	 * S_IWUGO) or the respective operation isn't implemented.  The
75 	 * following flag enables that behavior.
76 	 */
77 	KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK	= 0x0002,
78 
79 	/*
80 	 * The filesystem supports exportfs operation, so userspace can use
81 	 * fhandle to access nodes of the fs.
82 	 */
83 	KERNFS_ROOT_SUPPORT_EXPORTOP		= 0x0004,
84 
85 	/*
86 	 * Support user xattrs to be written to nodes rooted at this root.
87 	 */
88 	KERNFS_ROOT_SUPPORT_USER_XATTR		= 0x0008,
89 };
90 
91 /* type-specific structures for kernfs_node union members */
92 struct kernfs_elem_dir {
93 	unsigned long		subdirs;
94 	/* children rbtree starts here and goes through kn->rb */
95 	struct rb_root		children;
96 
97 	/*
98 	 * The kernfs hierarchy this directory belongs to.  This fits
99 	 * better directly in kernfs_node but is here to save space.
100 	 */
101 	struct kernfs_root	*root;
102 };
103 
104 struct kernfs_elem_symlink {
105 	struct kernfs_node	*target_kn;
106 };
107 
108 struct kernfs_elem_attr {
109 	const struct kernfs_ops	*ops;
110 	struct kernfs_open_node	*open;
111 	loff_t			size;
112 	struct kernfs_node	*notify_next;	/* for kernfs_notify() */
113 };
114 
115 /*
116  * kernfs_node - the building block of kernfs hierarchy.  Each and every
117  * kernfs node is represented by single kernfs_node.  Most fields are
118  * private to kernfs and shouldn't be accessed directly by kernfs users.
119  *
120  * As long as s_count reference is held, the kernfs_node itself is
121  * accessible.  Dereferencing elem or any other outer entity requires
122  * active reference.
123  */
124 struct kernfs_node {
125 	atomic_t		count;
126 	atomic_t		active;
127 #ifdef CONFIG_DEBUG_LOCK_ALLOC
128 	struct lockdep_map	dep_map;
129 #endif
130 	/*
131 	 * Use kernfs_get_parent() and kernfs_name/path() instead of
132 	 * accessing the following two fields directly.  If the node is
133 	 * never moved to a different parent, it is safe to access the
134 	 * parent directly.
135 	 */
136 	struct kernfs_node	*parent;
137 	const char		*name;
138 
139 	struct rb_node		rb;
140 
141 	const void		*ns;	/* namespace tag */
142 	unsigned int		hash;	/* ns + name hash */
143 	union {
144 		struct kernfs_elem_dir		dir;
145 		struct kernfs_elem_symlink	symlink;
146 		struct kernfs_elem_attr		attr;
147 	};
148 
149 	void			*priv;
150 
151 	/*
152 	 * 64bit unique ID.  On 64bit ino setups, id is the ino.  On 32bit,
153 	 * the low 32bits are ino and upper generation.
154 	 */
155 	u64			id;
156 
157 	unsigned short		flags;
158 	umode_t			mode;
159 	struct kernfs_iattrs	*iattr;
160 
161 	ANDROID_KABI_RESERVE(1);
162 };
163 
164 /*
165  * kernfs_syscall_ops may be specified on kernfs_create_root() to support
166  * syscalls.  These optional callbacks are invoked on the matching syscalls
167  * and can perform any kernfs operations which don't necessarily have to be
168  * the exact operation requested.  An active reference is held for each
169  * kernfs_node parameter.
170  */
171 struct kernfs_syscall_ops {
172 	int (*show_options)(struct seq_file *sf, struct kernfs_root *root);
173 
174 	int (*mkdir)(struct kernfs_node *parent, const char *name,
175 		     umode_t mode);
176 	int (*rmdir)(struct kernfs_node *kn);
177 	int (*rename)(struct kernfs_node *kn, struct kernfs_node *new_parent,
178 		      const char *new_name);
179 	int (*show_path)(struct seq_file *sf, struct kernfs_node *kn,
180 			 struct kernfs_root *root);
181 
182 	ANDROID_KABI_RESERVE(1);
183 	ANDROID_KABI_RESERVE(2);
184 	ANDROID_KABI_RESERVE(3);
185 	ANDROID_KABI_RESERVE(4);
186 };
187 
188 struct kernfs_root {
189 	/* published fields */
190 	struct kernfs_node	*kn;
191 	unsigned int		flags;	/* KERNFS_ROOT_* flags */
192 
193 	/* private fields, do not use outside kernfs proper */
194 	struct idr		ino_idr;
195 	u32			last_id_lowbits;
196 	u32			id_highbits;
197 	struct kernfs_syscall_ops *syscall_ops;
198 
199 	/* list of kernfs_super_info of this root, protected by kernfs_mutex */
200 	struct list_head	supers;
201 
202 	wait_queue_head_t	deactivate_waitq;
203 
204 	ANDROID_KABI_RESERVE(1);
205 };
206 
207 struct kernfs_open_file {
208 	/* published fields */
209 	struct kernfs_node	*kn;
210 	struct file		*file;
211 	struct seq_file		*seq_file;
212 	void			*priv;
213 
214 	/* private fields, do not use outside kernfs proper */
215 	struct mutex		mutex;
216 	struct mutex		prealloc_mutex;
217 	int			event;
218 	struct list_head	list;
219 	char			*prealloc_buf;
220 
221 	size_t			atomic_write_len;
222 	bool			mmapped:1;
223 	bool			released:1;
224 	const struct vm_operations_struct *vm_ops;
225 
226 	ANDROID_KABI_RESERVE(1);
227 };
228 
229 struct kernfs_ops {
230 	/*
231 	 * Optional open/release methods.  Both are called with
232 	 * @of->seq_file populated.
233 	 */
234 	int (*open)(struct kernfs_open_file *of);
235 	void (*release)(struct kernfs_open_file *of);
236 
237 	/*
238 	 * Read is handled by either seq_file or raw_read().
239 	 *
240 	 * If seq_show() is present, seq_file path is active.  Other seq
241 	 * operations are optional and if not implemented, the behavior is
242 	 * equivalent to single_open().  @sf->private points to the
243 	 * associated kernfs_open_file.
244 	 *
245 	 * read() is bounced through kernel buffer and a read larger than
246 	 * PAGE_SIZE results in partial operation of PAGE_SIZE.
247 	 */
248 	int (*seq_show)(struct seq_file *sf, void *v);
249 
250 	void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
251 	void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
252 	void (*seq_stop)(struct seq_file *sf, void *v);
253 
254 	ssize_t (*read)(struct kernfs_open_file *of, char *buf, size_t bytes,
255 			loff_t off);
256 
257 	/*
258 	 * write() is bounced through kernel buffer.  If atomic_write_len
259 	 * is not set, a write larger than PAGE_SIZE results in partial
260 	 * operations of PAGE_SIZE chunks.  If atomic_write_len is set,
261 	 * writes upto the specified size are executed atomically but
262 	 * larger ones are rejected with -E2BIG.
263 	 */
264 	size_t atomic_write_len;
265 	/*
266 	 * "prealloc" causes a buffer to be allocated at open for
267 	 * all read/write requests.  As ->seq_show uses seq_read()
268 	 * which does its own allocation, it is incompatible with
269 	 * ->prealloc.  Provide ->read and ->write with ->prealloc.
270 	 */
271 	bool prealloc;
272 	ssize_t (*write)(struct kernfs_open_file *of, char *buf, size_t bytes,
273 			 loff_t off);
274 
275 	__poll_t (*poll)(struct kernfs_open_file *of,
276 			 struct poll_table_struct *pt);
277 
278 	int (*mmap)(struct kernfs_open_file *of, struct vm_area_struct *vma);
279 
280 #ifdef CONFIG_DEBUG_LOCK_ALLOC
281 	struct lock_class_key	lockdep_key;
282 #endif
283 
284 	ANDROID_KABI_RESERVE(1);
285 	ANDROID_KABI_RESERVE(2);
286 };
287 
288 /*
289  * The kernfs superblock creation/mount parameter context.
290  */
291 struct kernfs_fs_context {
292 	struct kernfs_root	*root;		/* Root of the hierarchy being mounted */
293 	void			*ns_tag;	/* Namespace tag of the mount (or NULL) */
294 	unsigned long		magic;		/* File system specific magic number */
295 
296 	/* The following are set/used by kernfs_mount() */
297 	bool			new_sb_created;	/* Set to T if we allocated a new sb */
298 };
299 
300 #ifdef CONFIG_KERNFS
301 
kernfs_type(struct kernfs_node * kn)302 static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
303 {
304 	return kn->flags & KERNFS_TYPE_MASK;
305 }
306 
kernfs_id_ino(u64 id)307 static inline ino_t kernfs_id_ino(u64 id)
308 {
309 	/* id is ino if ino_t is 64bit; otherwise, low 32bits */
310 	if (sizeof(ino_t) >= sizeof(u64))
311 		return id;
312 	else
313 		return (u32)id;
314 }
315 
kernfs_id_gen(u64 id)316 static inline u32 kernfs_id_gen(u64 id)
317 {
318 	/* gen is fixed at 1 if ino_t is 64bit; otherwise, high 32bits */
319 	if (sizeof(ino_t) >= sizeof(u64))
320 		return 1;
321 	else
322 		return id >> 32;
323 }
324 
kernfs_ino(struct kernfs_node * kn)325 static inline ino_t kernfs_ino(struct kernfs_node *kn)
326 {
327 	return kernfs_id_ino(kn->id);
328 }
329 
kernfs_gen(struct kernfs_node * kn)330 static inline ino_t kernfs_gen(struct kernfs_node *kn)
331 {
332 	return kernfs_id_gen(kn->id);
333 }
334 
335 /**
336  * kernfs_enable_ns - enable namespace under a directory
337  * @kn: directory of interest, should be empty
338  *
339  * This is to be called right after @kn is created to enable namespace
340  * under it.  All children of @kn must have non-NULL namespace tags and
341  * only the ones which match the super_block's tag will be visible.
342  */
kernfs_enable_ns(struct kernfs_node * kn)343 static inline void kernfs_enable_ns(struct kernfs_node *kn)
344 {
345 	WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
346 	WARN_ON_ONCE(!RB_EMPTY_ROOT(&kn->dir.children));
347 	kn->flags |= KERNFS_NS;
348 }
349 
350 /**
351  * kernfs_ns_enabled - test whether namespace is enabled
352  * @kn: the node to test
353  *
354  * Test whether namespace filtering is enabled for the children of @ns.
355  */
kernfs_ns_enabled(struct kernfs_node * kn)356 static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
357 {
358 	return kn->flags & KERNFS_NS;
359 }
360 
361 int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen);
362 int kernfs_path_from_node(struct kernfs_node *root_kn, struct kernfs_node *kn,
363 			  char *buf, size_t buflen);
364 void pr_cont_kernfs_name(struct kernfs_node *kn);
365 void pr_cont_kernfs_path(struct kernfs_node *kn);
366 struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn);
367 struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
368 					   const char *name, const void *ns);
369 struct kernfs_node *kernfs_walk_and_get_ns(struct kernfs_node *parent,
370 					   const char *path, const void *ns);
371 void kernfs_get(struct kernfs_node *kn);
372 void kernfs_put(struct kernfs_node *kn);
373 
374 struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry);
375 struct kernfs_root *kernfs_root_from_sb(struct super_block *sb);
376 struct inode *kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn);
377 
378 struct dentry *kernfs_node_dentry(struct kernfs_node *kn,
379 				  struct super_block *sb);
380 struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
381 				       unsigned int flags, void *priv);
382 void kernfs_destroy_root(struct kernfs_root *root);
383 
384 struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
385 					 const char *name, umode_t mode,
386 					 kuid_t uid, kgid_t gid,
387 					 void *priv, const void *ns);
388 struct kernfs_node *kernfs_create_empty_dir(struct kernfs_node *parent,
389 					    const char *name);
390 struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
391 					 const char *name, umode_t mode,
392 					 kuid_t uid, kgid_t gid,
393 					 loff_t size,
394 					 const struct kernfs_ops *ops,
395 					 void *priv, const void *ns,
396 					 struct lock_class_key *key);
397 struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
398 				       const char *name,
399 				       struct kernfs_node *target);
400 void kernfs_activate(struct kernfs_node *kn);
401 void kernfs_remove(struct kernfs_node *kn);
402 void kernfs_break_active_protection(struct kernfs_node *kn);
403 void kernfs_unbreak_active_protection(struct kernfs_node *kn);
404 bool kernfs_remove_self(struct kernfs_node *kn);
405 int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
406 			     const void *ns);
407 int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
408 		     const char *new_name, const void *new_ns);
409 int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr);
410 __poll_t kernfs_generic_poll(struct kernfs_open_file *of,
411 			     struct poll_table_struct *pt);
412 void kernfs_notify(struct kernfs_node *kn);
413 
414 int kernfs_xattr_get(struct kernfs_node *kn, const char *name,
415 		     void *value, size_t size);
416 int kernfs_xattr_set(struct kernfs_node *kn, const char *name,
417 		     const void *value, size_t size, int flags);
418 
419 const void *kernfs_super_ns(struct super_block *sb);
420 int kernfs_get_tree(struct fs_context *fc);
421 void kernfs_free_fs_context(struct fs_context *fc);
422 void kernfs_kill_sb(struct super_block *sb);
423 
424 void kernfs_init(void);
425 
426 struct kernfs_node *kernfs_find_and_get_node_by_id(struct kernfs_root *root,
427 						   u64 id);
428 #else	/* CONFIG_KERNFS */
429 
kernfs_type(struct kernfs_node * kn)430 static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
431 { return 0; }	/* whatever */
432 
kernfs_enable_ns(struct kernfs_node * kn)433 static inline void kernfs_enable_ns(struct kernfs_node *kn) { }
434 
kernfs_ns_enabled(struct kernfs_node * kn)435 static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
436 { return false; }
437 
kernfs_name(struct kernfs_node * kn,char * buf,size_t buflen)438 static inline int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
439 { return -ENOSYS; }
440 
kernfs_path_from_node(struct kernfs_node * root_kn,struct kernfs_node * kn,char * buf,size_t buflen)441 static inline int kernfs_path_from_node(struct kernfs_node *root_kn,
442 					struct kernfs_node *kn,
443 					char *buf, size_t buflen)
444 { return -ENOSYS; }
445 
pr_cont_kernfs_name(struct kernfs_node * kn)446 static inline void pr_cont_kernfs_name(struct kernfs_node *kn) { }
pr_cont_kernfs_path(struct kernfs_node * kn)447 static inline void pr_cont_kernfs_path(struct kernfs_node *kn) { }
448 
kernfs_get_parent(struct kernfs_node * kn)449 static inline struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
450 { return NULL; }
451 
452 static inline struct kernfs_node *
kernfs_find_and_get_ns(struct kernfs_node * parent,const char * name,const void * ns)453 kernfs_find_and_get_ns(struct kernfs_node *parent, const char *name,
454 		       const void *ns)
455 { return NULL; }
456 static inline struct kernfs_node *
kernfs_walk_and_get_ns(struct kernfs_node * parent,const char * path,const void * ns)457 kernfs_walk_and_get_ns(struct kernfs_node *parent, const char *path,
458 		       const void *ns)
459 { return NULL; }
460 
kernfs_get(struct kernfs_node * kn)461 static inline void kernfs_get(struct kernfs_node *kn) { }
kernfs_put(struct kernfs_node * kn)462 static inline void kernfs_put(struct kernfs_node *kn) { }
463 
kernfs_node_from_dentry(struct dentry * dentry)464 static inline struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
465 { return NULL; }
466 
kernfs_root_from_sb(struct super_block * sb)467 static inline struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
468 { return NULL; }
469 
470 static inline struct inode *
kernfs_get_inode(struct super_block * sb,struct kernfs_node * kn)471 kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn)
472 { return NULL; }
473 
474 static inline struct kernfs_root *
kernfs_create_root(struct kernfs_syscall_ops * scops,unsigned int flags,void * priv)475 kernfs_create_root(struct kernfs_syscall_ops *scops, unsigned int flags,
476 		   void *priv)
477 { return ERR_PTR(-ENOSYS); }
478 
kernfs_destroy_root(struct kernfs_root * root)479 static inline void kernfs_destroy_root(struct kernfs_root *root) { }
480 
481 static inline struct kernfs_node *
kernfs_create_dir_ns(struct kernfs_node * parent,const char * name,umode_t mode,kuid_t uid,kgid_t gid,void * priv,const void * ns)482 kernfs_create_dir_ns(struct kernfs_node *parent, const char *name,
483 		     umode_t mode, kuid_t uid, kgid_t gid,
484 		     void *priv, const void *ns)
485 { return ERR_PTR(-ENOSYS); }
486 
487 static inline struct kernfs_node *
__kernfs_create_file(struct kernfs_node * parent,const char * name,umode_t mode,kuid_t uid,kgid_t gid,loff_t size,const struct kernfs_ops * ops,void * priv,const void * ns,struct lock_class_key * key)488 __kernfs_create_file(struct kernfs_node *parent, const char *name,
489 		     umode_t mode, kuid_t uid, kgid_t gid,
490 		     loff_t size, const struct kernfs_ops *ops,
491 		     void *priv, const void *ns, struct lock_class_key *key)
492 { return ERR_PTR(-ENOSYS); }
493 
494 static inline struct kernfs_node *
kernfs_create_link(struct kernfs_node * parent,const char * name,struct kernfs_node * target)495 kernfs_create_link(struct kernfs_node *parent, const char *name,
496 		   struct kernfs_node *target)
497 { return ERR_PTR(-ENOSYS); }
498 
kernfs_activate(struct kernfs_node * kn)499 static inline void kernfs_activate(struct kernfs_node *kn) { }
500 
kernfs_remove(struct kernfs_node * kn)501 static inline void kernfs_remove(struct kernfs_node *kn) { }
502 
kernfs_remove_self(struct kernfs_node * kn)503 static inline bool kernfs_remove_self(struct kernfs_node *kn)
504 { return false; }
505 
kernfs_remove_by_name_ns(struct kernfs_node * kn,const char * name,const void * ns)506 static inline int kernfs_remove_by_name_ns(struct kernfs_node *kn,
507 					   const char *name, const void *ns)
508 { return -ENOSYS; }
509 
kernfs_rename_ns(struct kernfs_node * kn,struct kernfs_node * new_parent,const char * new_name,const void * new_ns)510 static inline int kernfs_rename_ns(struct kernfs_node *kn,
511 				   struct kernfs_node *new_parent,
512 				   const char *new_name, const void *new_ns)
513 { return -ENOSYS; }
514 
kernfs_setattr(struct kernfs_node * kn,const struct iattr * iattr)515 static inline int kernfs_setattr(struct kernfs_node *kn,
516 				 const struct iattr *iattr)
517 { return -ENOSYS; }
518 
kernfs_notify(struct kernfs_node * kn)519 static inline void kernfs_notify(struct kernfs_node *kn) { }
520 
kernfs_xattr_get(struct kernfs_node * kn,const char * name,void * value,size_t size)521 static inline int kernfs_xattr_get(struct kernfs_node *kn, const char *name,
522 				   void *value, size_t size)
523 { return -ENOSYS; }
524 
kernfs_xattr_set(struct kernfs_node * kn,const char * name,const void * value,size_t size,int flags)525 static inline int kernfs_xattr_set(struct kernfs_node *kn, const char *name,
526 				   const void *value, size_t size, int flags)
527 { return -ENOSYS; }
528 
kernfs_super_ns(struct super_block * sb)529 static inline const void *kernfs_super_ns(struct super_block *sb)
530 { return NULL; }
531 
kernfs_get_tree(struct fs_context * fc)532 static inline int kernfs_get_tree(struct fs_context *fc)
533 { return -ENOSYS; }
534 
kernfs_free_fs_context(struct fs_context * fc)535 static inline void kernfs_free_fs_context(struct fs_context *fc) { }
536 
kernfs_kill_sb(struct super_block * sb)537 static inline void kernfs_kill_sb(struct super_block *sb) { }
538 
kernfs_init(void)539 static inline void kernfs_init(void) { }
540 
541 #endif	/* CONFIG_KERNFS */
542 
543 /**
544  * kernfs_path - build full path of a given node
545  * @kn: kernfs_node of interest
546  * @buf: buffer to copy @kn's name into
547  * @buflen: size of @buf
548  *
549  * If @kn is NULL result will be "(null)".
550  *
551  * Returns the length of the full path.  If the full length is equal to or
552  * greater than @buflen, @buf contains the truncated path with the trailing
553  * '\0'.  On error, -errno is returned.
554  */
kernfs_path(struct kernfs_node * kn,char * buf,size_t buflen)555 static inline int kernfs_path(struct kernfs_node *kn, char *buf, size_t buflen)
556 {
557 	return kernfs_path_from_node(kn, NULL, buf, buflen);
558 }
559 
560 static inline struct kernfs_node *
kernfs_find_and_get(struct kernfs_node * kn,const char * name)561 kernfs_find_and_get(struct kernfs_node *kn, const char *name)
562 {
563 	return kernfs_find_and_get_ns(kn, name, NULL);
564 }
565 
566 static inline struct kernfs_node *
kernfs_walk_and_get(struct kernfs_node * kn,const char * path)567 kernfs_walk_and_get(struct kernfs_node *kn, const char *path)
568 {
569 	return kernfs_walk_and_get_ns(kn, path, NULL);
570 }
571 
572 static inline struct kernfs_node *
kernfs_create_dir(struct kernfs_node * parent,const char * name,umode_t mode,void * priv)573 kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
574 		  void *priv)
575 {
576 	return kernfs_create_dir_ns(parent, name, mode,
577 				    GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
578 				    priv, NULL);
579 }
580 
581 static inline struct kernfs_node *
kernfs_create_file_ns(struct kernfs_node * parent,const char * name,umode_t mode,kuid_t uid,kgid_t gid,loff_t size,const struct kernfs_ops * ops,void * priv,const void * ns)582 kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
583 		      umode_t mode, kuid_t uid, kgid_t gid,
584 		      loff_t size, const struct kernfs_ops *ops,
585 		      void *priv, const void *ns)
586 {
587 	struct lock_class_key *key = NULL;
588 
589 #ifdef CONFIG_DEBUG_LOCK_ALLOC
590 	key = (struct lock_class_key *)&ops->lockdep_key;
591 #endif
592 	return __kernfs_create_file(parent, name, mode, uid, gid,
593 				    size, ops, priv, ns, key);
594 }
595 
596 static inline struct kernfs_node *
kernfs_create_file(struct kernfs_node * parent,const char * name,umode_t mode,loff_t size,const struct kernfs_ops * ops,void * priv)597 kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
598 		   loff_t size, const struct kernfs_ops *ops, void *priv)
599 {
600 	return kernfs_create_file_ns(parent, name, mode,
601 				     GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
602 				     size, ops, priv, NULL);
603 }
604 
kernfs_remove_by_name(struct kernfs_node * parent,const char * name)605 static inline int kernfs_remove_by_name(struct kernfs_node *parent,
606 					const char *name)
607 {
608 	return kernfs_remove_by_name_ns(parent, name, NULL);
609 }
610 
kernfs_rename(struct kernfs_node * kn,struct kernfs_node * new_parent,const char * new_name)611 static inline int kernfs_rename(struct kernfs_node *kn,
612 				struct kernfs_node *new_parent,
613 				const char *new_name)
614 {
615 	return kernfs_rename_ns(kn, new_parent, new_name, NULL);
616 }
617 
618 #endif	/* __LINUX_KERNFS_H */
619