blob: 0cac1207bb00ae4add9a6435da4a15b80702ea40 [file] [log] [blame]
Tejun Heob8441ed2013-11-24 09:54:58 -05001/*
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
Tejun Heo879f40d2013-11-23 17:21:49 -050010#include <linux/kernel.h>
Tejun Heo5d0e26b2013-11-23 17:21:50 -050011#include <linux/err.h>
Tejun Heodd8a5b02013-11-28 14:54:20 -050012#include <linux/list.h>
13#include <linux/mutex.h>
Tejun Heobc755552013-11-28 14:54:41 -050014#include <linux/idr.h>
Tejun Heo517e64f2013-11-28 14:54:29 -050015#include <linux/lockdep.h>
Tejun Heocf9e5a72013-11-29 17:18:32 -050016#include <linux/rbtree.h>
17#include <linux/atomic.h>
Dmitry Torokhov488dee92018-07-20 21:56:47 +000018#include <linux/uidgid.h>
Tejun Heoabd54f02014-02-03 14:02:55 -050019#include <linux/wait.h>
Tejun Heo879f40d2013-11-23 17:21:49 -050020
Tejun Heo5d604182013-11-23 17:21:52 -050021struct file;
Tejun Heo917f56c2014-01-17 09:57:49 -050022struct dentry;
Tejun Heo5d604182013-11-23 17:21:52 -050023struct iattr;
Tejun Heodd8a5b02013-11-28 14:54:20 -050024struct seq_file;
25struct vm_area_struct;
Tejun Heo4b93dc92013-11-28 14:54:43 -050026struct super_block;
27struct file_system_type;
Johannes Weiner147e1a92019-03-05 15:45:45 -080028struct poll_table_struct;
Tejun Heo5d604182013-11-23 17:21:52 -050029
Tejun Heoc525aad2013-12-11 14:11:55 -050030struct kernfs_open_node;
31struct kernfs_iattrs;
Tejun Heocf9e5a72013-11-29 17:18:32 -050032
33enum kernfs_node_type {
Tejun Heodf23fc32013-12-11 14:11:56 -050034 KERNFS_DIR = 0x0001,
35 KERNFS_FILE = 0x0002,
36 KERNFS_LINK = 0x0004,
Tejun Heocf9e5a72013-11-29 17:18:32 -050037};
38
Tejun Heodf23fc32013-12-11 14:11:56 -050039#define KERNFS_TYPE_MASK 0x000f
Tejun Heodf23fc32013-12-11 14:11:56 -050040#define KERNFS_FLAG_MASK ~KERNFS_TYPE_MASK
Tejun Heocf9e5a72013-11-29 17:18:32 -050041
42enum kernfs_node_flag {
Tejun Heod35258e2014-02-03 14:09:12 -050043 KERNFS_ACTIVATED = 0x0010,
Tejun Heodf23fc32013-12-11 14:11:56 -050044 KERNFS_NS = 0x0020,
45 KERNFS_HAS_SEQ_SHOW = 0x0040,
46 KERNFS_HAS_MMAP = 0x0080,
47 KERNFS_LOCKDEP = 0x0100,
Tejun Heo6b0afc22014-02-03 14:03:01 -050048 KERNFS_SUICIDAL = 0x0400,
49 KERNFS_SUICIDED = 0x0800,
Eric W. Biedermanea015212015-05-13 16:09:29 -050050 KERNFS_EMPTY_DIR = 0x1000,
Tejun Heo0e67db22016-12-27 14:49:03 -050051 KERNFS_HAS_RELEASE = 0x2000,
Tejun Heocf9e5a72013-11-29 17:18:32 -050052};
53
Tejun Heod35258e2014-02-03 14:09:12 -050054/* @flags for kernfs_create_root() */
55enum kernfs_root_flag {
Tejun Heo555724a2014-05-12 13:56:27 -040056 /*
57 * kernfs_nodes are created in the deactivated state and invisible.
58 * They require explicit kernfs_activate() to become visible. This
59 * can be used to make related nodes become visible atomically
60 * after all nodes are created successfully.
61 */
62 KERNFS_ROOT_CREATE_DEACTIVATED = 0x0001,
63
64 /*
65 * For regular flies, if the opener has CAP_DAC_OVERRIDE, open(2)
66 * succeeds regardless of the RW permissions. sysfs had an extra
67 * layer of enforcement where open(2) fails with -EACCES regardless
68 * of CAP_DAC_OVERRIDE if the permission doesn't have the
69 * respective read or write access at all (none of S_IRUGO or
70 * S_IWUGO) or the respective operation isn't implemented. The
71 * following flag enables that behavior.
72 */
73 KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 0x0002,
Shaohua Liaa818822017-07-12 11:49:51 -070074
75 /*
76 * The filesystem supports exportfs operation, so userspace can use
77 * fhandle to access nodes of the fs.
78 */
79 KERNFS_ROOT_SUPPORT_EXPORTOP = 0x0004,
Tejun Heod35258e2014-02-03 14:09:12 -050080};
81
Tejun Heo324a56e2013-12-11 14:11:53 -050082/* type-specific structures for kernfs_node union members */
83struct kernfs_elem_dir {
Tejun Heocf9e5a72013-11-29 17:18:32 -050084 unsigned long subdirs;
Tejun Heoadc5e8b2013-12-11 14:11:54 -050085 /* children rbtree starts here and goes through kn->rb */
Tejun Heocf9e5a72013-11-29 17:18:32 -050086 struct rb_root children;
87
88 /*
89 * The kernfs hierarchy this directory belongs to. This fits
Tejun Heo324a56e2013-12-11 14:11:53 -050090 * better directly in kernfs_node but is here to save space.
Tejun Heocf9e5a72013-11-29 17:18:32 -050091 */
92 struct kernfs_root *root;
93};
94
Tejun Heo324a56e2013-12-11 14:11:53 -050095struct kernfs_elem_symlink {
96 struct kernfs_node *target_kn;
Tejun Heocf9e5a72013-11-29 17:18:32 -050097};
98
Tejun Heo324a56e2013-12-11 14:11:53 -050099struct kernfs_elem_attr {
Tejun Heocf9e5a72013-11-29 17:18:32 -0500100 const struct kernfs_ops *ops;
Tejun Heoc525aad2013-12-11 14:11:55 -0500101 struct kernfs_open_node *open;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500102 loff_t size;
Tejun Heoecca47c2014-07-01 16:41:03 -0400103 struct kernfs_node *notify_next; /* for kernfs_notify() */
Tejun Heocf9e5a72013-11-29 17:18:32 -0500104};
105
Shaohua Lic53cd492017-07-12 11:49:50 -0700106/* represent a kernfs node */
107union kernfs_node_id {
108 struct {
Shaohua Liaa818822017-07-12 11:49:51 -0700109 /*
110 * blktrace will export this struct as a simplified 'struct
111 * fid' (which is a big data struction), so userspace can use
112 * it to find kernfs node. The layout must match the first two
113 * fields of 'struct fid' exactly.
114 */
Shaohua Lic53cd492017-07-12 11:49:50 -0700115 u32 ino;
116 u32 generation;
117 };
118 u64 id;
119};
120
Tejun Heocf9e5a72013-11-29 17:18:32 -0500121/*
Tejun Heo324a56e2013-12-11 14:11:53 -0500122 * kernfs_node - the building block of kernfs hierarchy. Each and every
123 * kernfs node is represented by single kernfs_node. Most fields are
Tejun Heocf9e5a72013-11-29 17:18:32 -0500124 * private to kernfs and shouldn't be accessed directly by kernfs users.
125 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500126 * As long as s_count reference is held, the kernfs_node itself is
127 * accessible. Dereferencing elem or any other outer entity requires
128 * active reference.
Tejun Heocf9e5a72013-11-29 17:18:32 -0500129 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500130struct kernfs_node {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500131 atomic_t count;
132 atomic_t active;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500133#ifdef CONFIG_DEBUG_LOCK_ALLOC
134 struct lockdep_map dep_map;
135#endif
Tejun Heo3eef34a2014-02-07 13:32:07 -0500136 /*
137 * Use kernfs_get_parent() and kernfs_name/path() instead of
138 * accessing the following two fields directly. If the node is
139 * never moved to a different parent, it is safe to access the
140 * parent directly.
141 */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500142 struct kernfs_node *parent;
143 const char *name;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500144
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500145 struct rb_node rb;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500146
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500147 const void *ns; /* namespace tag */
Greg Kroah-Hartman9b0925a2014-01-13 14:09:38 -0800148 unsigned int hash; /* ns + name hash */
Tejun Heocf9e5a72013-11-29 17:18:32 -0500149 union {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500150 struct kernfs_elem_dir dir;
151 struct kernfs_elem_symlink symlink;
152 struct kernfs_elem_attr attr;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500153 };
154
155 void *priv;
156
Shaohua Lic53cd492017-07-12 11:49:50 -0700157 union kernfs_node_id id;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500158 unsigned short flags;
159 umode_t mode;
Tejun Heoc525aad2013-12-11 14:11:55 -0500160 struct kernfs_iattrs *iattr;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500161};
Tejun Heob8441ed2013-11-24 09:54:58 -0500162
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500163/*
Tejun Heo90c07c82014-02-03 14:09:09 -0500164 * kernfs_syscall_ops may be specified on kernfs_create_root() to support
165 * syscalls. These optional callbacks are invoked on the matching syscalls
166 * and can perform any kernfs operations which don't necessarily have to be
167 * the exact operation requested. An active reference is held for each
168 * kernfs_node parameter.
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500169 */
Tejun Heo90c07c82014-02-03 14:09:09 -0500170struct kernfs_syscall_ops {
Tejun Heo6a7fed42014-02-03 14:09:10 -0500171 int (*remount_fs)(struct kernfs_root *root, int *flags, char *data);
172 int (*show_options)(struct seq_file *sf, struct kernfs_root *root);
173
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500174 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);
Serge E. Hallyn4f41fc52016-05-09 09:59:55 -0500179 int (*show_path)(struct seq_file *sf, struct kernfs_node *kn,
180 struct kernfs_root *root);
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500181};
182
Tejun Heoba7443b2013-11-28 14:54:40 -0500183struct kernfs_root {
184 /* published fields */
Tejun Heo324a56e2013-12-11 14:11:53 -0500185 struct kernfs_node *kn;
Tejun Heod35258e2014-02-03 14:09:12 -0500186 unsigned int flags; /* KERNFS_ROOT_* flags */
Tejun Heobc755552013-11-28 14:54:41 -0500187
188 /* private fields, do not use outside kernfs proper */
Shaohua Li7d350792017-07-12 11:49:46 -0700189 struct idr ino_idr;
Shaohua Li4a3ef682017-07-12 11:49:47 -0700190 u32 next_generation;
Tejun Heo90c07c82014-02-03 14:09:09 -0500191 struct kernfs_syscall_ops *syscall_ops;
Tejun Heo7d568a82014-04-09 11:07:30 -0400192
193 /* list of kernfs_super_info of this root, protected by kernfs_mutex */
194 struct list_head supers;
195
Tejun Heoabd54f02014-02-03 14:02:55 -0500196 wait_queue_head_t deactivate_waitq;
Tejun Heoba7443b2013-11-28 14:54:40 -0500197};
198
Tejun Heoc525aad2013-12-11 14:11:55 -0500199struct kernfs_open_file {
Tejun Heodd8a5b02013-11-28 14:54:20 -0500200 /* published fields */
Tejun Heo324a56e2013-12-11 14:11:53 -0500201 struct kernfs_node *kn;
Tejun Heodd8a5b02013-11-28 14:54:20 -0500202 struct file *file;
Tejun Heo0e67db22016-12-27 14:49:03 -0500203 struct seq_file *seq_file;
Tejun Heo2536390d2014-02-03 14:09:14 -0500204 void *priv;
Tejun Heodd8a5b02013-11-28 14:54:20 -0500205
206 /* private fields, do not use outside kernfs proper */
207 struct mutex mutex;
Chris Wilsone4234a12016-03-31 11:45:06 +0100208 struct mutex prealloc_mutex;
Tejun Heodd8a5b02013-11-28 14:54:20 -0500209 int event;
210 struct list_head list;
NeilBrown2b758692014-10-13 16:41:28 +1100211 char *prealloc_buf;
Tejun Heodd8a5b02013-11-28 14:54:20 -0500212
Tejun Heob7ce40c2014-03-04 15:38:46 -0500213 size_t atomic_write_len;
Tejun Heoa1d82af2016-12-27 14:49:02 -0500214 bool mmapped:1;
Tejun Heo0e67db22016-12-27 14:49:03 -0500215 bool released:1;
Tejun Heodd8a5b02013-11-28 14:54:20 -0500216 const struct vm_operations_struct *vm_ops;
217};
218
Tejun Heof6acf8b2013-11-28 14:54:21 -0500219struct kernfs_ops {
220 /*
Tejun Heo0e67db22016-12-27 14:49:03 -0500221 * Optional open/release methods. Both are called with
222 * @of->seq_file populated.
223 */
224 int (*open)(struct kernfs_open_file *of);
225 void (*release)(struct kernfs_open_file *of);
226
227 /*
Tejun Heof6acf8b2013-11-28 14:54:21 -0500228 * Read is handled by either seq_file or raw_read().
229 *
Tejun Heod19b9842013-11-28 14:54:26 -0500230 * If seq_show() is present, seq_file path is active. Other seq
231 * operations are optional and if not implemented, the behavior is
232 * equivalent to single_open(). @sf->private points to the
Tejun Heoc525aad2013-12-11 14:11:55 -0500233 * associated kernfs_open_file.
Tejun Heof6acf8b2013-11-28 14:54:21 -0500234 *
235 * read() is bounced through kernel buffer and a read larger than
236 * PAGE_SIZE results in partial operation of PAGE_SIZE.
237 */
238 int (*seq_show)(struct seq_file *sf, void *v);
239
Tejun Heod19b9842013-11-28 14:54:26 -0500240 void *(*seq_start)(struct seq_file *sf, loff_t *ppos);
241 void *(*seq_next)(struct seq_file *sf, void *v, loff_t *ppos);
242 void (*seq_stop)(struct seq_file *sf, void *v);
243
Tejun Heoc525aad2013-12-11 14:11:55 -0500244 ssize_t (*read)(struct kernfs_open_file *of, char *buf, size_t bytes,
Tejun Heof6acf8b2013-11-28 14:54:21 -0500245 loff_t off);
246
247 /*
Tejun Heo4d3773c2014-02-03 14:09:13 -0500248 * write() is bounced through kernel buffer. If atomic_write_len
249 * is not set, a write larger than PAGE_SIZE results in partial
250 * operations of PAGE_SIZE chunks. If atomic_write_len is set,
251 * writes upto the specified size are executed atomically but
252 * larger ones are rejected with -E2BIG.
Tejun Heof6acf8b2013-11-28 14:54:21 -0500253 */
Tejun Heo4d3773c2014-02-03 14:09:13 -0500254 size_t atomic_write_len;
NeilBrown2b758692014-10-13 16:41:28 +1100255 /*
256 * "prealloc" causes a buffer to be allocated at open for
257 * all read/write requests. As ->seq_show uses seq_read()
258 * which does its own allocation, it is incompatible with
259 * ->prealloc. Provide ->read and ->write with ->prealloc.
260 */
261 bool prealloc;
Tejun Heoc525aad2013-12-11 14:11:55 -0500262 ssize_t (*write)(struct kernfs_open_file *of, char *buf, size_t bytes,
Tejun Heof6acf8b2013-11-28 14:54:21 -0500263 loff_t off);
264
Johannes Weiner147e1a92019-03-05 15:45:45 -0800265 __poll_t (*poll)(struct kernfs_open_file *of,
266 struct poll_table_struct *pt);
267
Tejun Heoc525aad2013-12-11 14:11:55 -0500268 int (*mmap)(struct kernfs_open_file *of, struct vm_area_struct *vma);
Tejun Heo517e64f2013-11-28 14:54:29 -0500269
270#ifdef CONFIG_DEBUG_LOCK_ALLOC
271 struct lock_class_key lockdep_key;
272#endif
Tejun Heof6acf8b2013-11-28 14:54:21 -0500273};
274
Tejun Heoba341d52014-02-03 14:09:17 -0500275#ifdef CONFIG_KERNFS
Tejun Heo879f40d2013-11-23 17:21:49 -0500276
Tejun Heodf23fc32013-12-11 14:11:56 -0500277static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
Tejun Heocf9e5a72013-11-29 17:18:32 -0500278{
Tejun Heodf23fc32013-12-11 14:11:56 -0500279 return kn->flags & KERNFS_TYPE_MASK;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500280}
281
282/**
283 * kernfs_enable_ns - enable namespace under a directory
Tejun Heo324a56e2013-12-11 14:11:53 -0500284 * @kn: directory of interest, should be empty
Tejun Heocf9e5a72013-11-29 17:18:32 -0500285 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500286 * This is to be called right after @kn is created to enable namespace
287 * under it. All children of @kn must have non-NULL namespace tags and
Tejun Heocf9e5a72013-11-29 17:18:32 -0500288 * only the ones which match the super_block's tag will be visible.
289 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500290static inline void kernfs_enable_ns(struct kernfs_node *kn)
Tejun Heocf9e5a72013-11-29 17:18:32 -0500291{
Tejun Heodf23fc32013-12-11 14:11:56 -0500292 WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500293 WARN_ON_ONCE(!RB_EMPTY_ROOT(&kn->dir.children));
Tejun Heodf23fc32013-12-11 14:11:56 -0500294 kn->flags |= KERNFS_NS;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500295}
296
Tejun Heoac9bba02013-11-29 17:19:09 -0500297/**
298 * kernfs_ns_enabled - test whether namespace is enabled
Tejun Heo324a56e2013-12-11 14:11:53 -0500299 * @kn: the node to test
Tejun Heoac9bba02013-11-29 17:19:09 -0500300 *
301 * Test whether namespace filtering is enabled for the children of @ns.
302 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500303static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
Tejun Heoac9bba02013-11-29 17:19:09 -0500304{
Tejun Heodf23fc32013-12-11 14:11:56 -0500305 return kn->flags & KERNFS_NS;
Tejun Heoac9bba02013-11-29 17:19:09 -0500306}
307
Tejun Heo3eef34a2014-02-07 13:32:07 -0500308int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen);
Aditya Kali9f6df572016-01-29 02:54:04 -0600309int kernfs_path_from_node(struct kernfs_node *root_kn, struct kernfs_node *kn,
310 char *buf, size_t buflen);
Tejun Heo3eef34a2014-02-07 13:32:07 -0500311void pr_cont_kernfs_name(struct kernfs_node *kn);
312void pr_cont_kernfs_path(struct kernfs_node *kn);
313struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn);
Tejun Heo324a56e2013-12-11 14:11:53 -0500314struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
315 const char *name, const void *ns);
Tejun Heobd96f762015-11-20 15:55:52 -0500316struct kernfs_node *kernfs_walk_and_get_ns(struct kernfs_node *parent,
317 const char *path, const void *ns);
Tejun Heo324a56e2013-12-11 14:11:53 -0500318void kernfs_get(struct kernfs_node *kn);
319void kernfs_put(struct kernfs_node *kn);
Tejun Heoccf73cf2013-11-28 14:54:30 -0500320
Tejun Heo0c23b222014-02-03 14:09:15 -0500321struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry);
322struct kernfs_root *kernfs_root_from_sb(struct super_block *sb);
Tejun Heofb029152015-06-18 16:54:28 -0400323struct inode *kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn);
Tejun Heo0c23b222014-02-03 14:09:15 -0500324
Aditya Kalifb3c8312016-01-29 02:54:08 -0600325struct dentry *kernfs_node_dentry(struct kernfs_node *kn,
326 struct super_block *sb);
Tejun Heo90c07c82014-02-03 14:09:09 -0500327struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
Tejun Heod35258e2014-02-03 14:09:12 -0500328 unsigned int flags, void *priv);
Tejun Heoba7443b2013-11-28 14:54:40 -0500329void kernfs_destroy_root(struct kernfs_root *root);
330
Tejun Heo324a56e2013-12-11 14:11:53 -0500331struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
Tejun Heobb8b9d02013-12-11 16:02:55 -0500332 const char *name, umode_t mode,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000333 kuid_t uid, kgid_t gid,
Tejun Heobb8b9d02013-12-11 16:02:55 -0500334 void *priv, const void *ns);
Eric W. Biedermanea015212015-05-13 16:09:29 -0500335struct kernfs_node *kernfs_create_empty_dir(struct kernfs_node *parent,
336 const char *name);
Tejun Heo2063d602013-12-11 16:02:57 -0500337struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000338 const char *name, umode_t mode,
339 kuid_t uid, kgid_t gid,
340 loff_t size,
Tejun Heo2063d602013-12-11 16:02:57 -0500341 const struct kernfs_ops *ops,
342 void *priv, const void *ns,
Tejun Heo2063d602013-12-11 16:02:57 -0500343 struct lock_class_key *key);
Tejun Heo324a56e2013-12-11 14:11:53 -0500344struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
345 const char *name,
346 struct kernfs_node *target);
Tejun Heod35258e2014-02-03 14:09:12 -0500347void kernfs_activate(struct kernfs_node *kn);
Tejun Heo324a56e2013-12-11 14:11:53 -0500348void kernfs_remove(struct kernfs_node *kn);
Tejun Heo6b0afc22014-02-03 14:03:01 -0500349void kernfs_break_active_protection(struct kernfs_node *kn);
350void kernfs_unbreak_active_protection(struct kernfs_node *kn);
351bool kernfs_remove_self(struct kernfs_node *kn);
Tejun Heo324a56e2013-12-11 14:11:53 -0500352int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
Tejun Heo879f40d2013-11-23 17:21:49 -0500353 const void *ns);
Tejun Heo324a56e2013-12-11 14:11:53 -0500354int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
Tejun Heo890ece12013-11-23 17:21:51 -0500355 const char *new_name, const void *new_ns);
Tejun Heo324a56e2013-12-11 14:11:53 -0500356int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr);
Johannes Weiner147e1a92019-03-05 15:45:45 -0800357__poll_t kernfs_generic_poll(struct kernfs_open_file *of,
358 struct poll_table_struct *pt);
Tejun Heo324a56e2013-12-11 14:11:53 -0500359void kernfs_notify(struct kernfs_node *kn);
Tejun Heo879f40d2013-11-23 17:21:49 -0500360
Tejun Heo4b93dc92013-11-28 14:54:43 -0500361const void *kernfs_super_ns(struct super_block *sb);
362struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
Jianyu Zhan26fc9cd2014-04-26 15:40:28 +0800363 struct kernfs_root *root, unsigned long magic,
364 bool *new_sb_created, const void *ns);
Tejun Heo4b93dc92013-11-28 14:54:43 -0500365void kernfs_kill_sb(struct super_block *sb);
Li Zefan4e264452014-06-30 11:50:28 +0800366struct super_block *kernfs_pin_sb(struct kernfs_root *root, const void *ns);
Tejun Heo4b93dc92013-11-28 14:54:43 -0500367
368void kernfs_init(void);
369
Shaohua Li69fd5c32017-07-12 11:49:55 -0700370struct kernfs_node *kernfs_get_node_by_id(struct kernfs_root *root,
371 const union kernfs_node_id *id);
Tejun Heoba341d52014-02-03 14:09:17 -0500372#else /* CONFIG_KERNFS */
Tejun Heo879f40d2013-11-23 17:21:49 -0500373
Tejun Heodf23fc32013-12-11 14:11:56 -0500374static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
Tejun Heocf9e5a72013-11-29 17:18:32 -0500375{ return 0; } /* whatever */
376
Tejun Heo324a56e2013-12-11 14:11:53 -0500377static inline void kernfs_enable_ns(struct kernfs_node *kn) { }
Tejun Heocf9e5a72013-11-29 17:18:32 -0500378
Tejun Heo324a56e2013-12-11 14:11:53 -0500379static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
Tejun Heoac9bba02013-11-29 17:19:09 -0500380{ return false; }
381
Tejun Heo3eef34a2014-02-07 13:32:07 -0500382static inline int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
383{ return -ENOSYS; }
384
Tejun Heo0e0b2af2016-08-10 11:23:43 -0400385static inline int kernfs_path_from_node(struct kernfs_node *root_kn,
386 struct kernfs_node *kn,
387 char *buf, size_t buflen)
388{ return -ENOSYS; }
389
Tejun Heo3eef34a2014-02-07 13:32:07 -0500390static inline void pr_cont_kernfs_name(struct kernfs_node *kn) { }
391static inline void pr_cont_kernfs_path(struct kernfs_node *kn) { }
392
393static inline struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
394{ return NULL; }
395
Tejun Heo324a56e2013-12-11 14:11:53 -0500396static inline struct kernfs_node *
397kernfs_find_and_get_ns(struct kernfs_node *parent, const char *name,
Tejun Heoccf73cf2013-11-28 14:54:30 -0500398 const void *ns)
399{ return NULL; }
Tejun Heobd96f762015-11-20 15:55:52 -0500400static inline struct kernfs_node *
401kernfs_walk_and_get_ns(struct kernfs_node *parent, const char *path,
402 const void *ns)
403{ return NULL; }
Tejun Heoccf73cf2013-11-28 14:54:30 -0500404
Tejun Heo324a56e2013-12-11 14:11:53 -0500405static inline void kernfs_get(struct kernfs_node *kn) { }
406static inline void kernfs_put(struct kernfs_node *kn) { }
Tejun Heoccf73cf2013-11-28 14:54:30 -0500407
Tejun Heo0c23b222014-02-03 14:09:15 -0500408static inline struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
409{ return NULL; }
410
411static inline struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
412{ return NULL; }
413
Tejun Heofb029152015-06-18 16:54:28 -0400414static inline struct inode *
415kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn)
416{ return NULL; }
417
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500418static inline struct kernfs_root *
Tejun Heod35258e2014-02-03 14:09:12 -0500419kernfs_create_root(struct kernfs_syscall_ops *scops, unsigned int flags,
420 void *priv)
Tejun Heoba7443b2013-11-28 14:54:40 -0500421{ return ERR_PTR(-ENOSYS); }
422
423static inline void kernfs_destroy_root(struct kernfs_root *root) { }
424
Tejun Heo324a56e2013-12-11 14:11:53 -0500425static inline struct kernfs_node *
Tejun Heobb8b9d02013-12-11 16:02:55 -0500426kernfs_create_dir_ns(struct kernfs_node *parent, const char *name,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000427 umode_t mode, kuid_t uid, kgid_t gid,
428 void *priv, const void *ns)
Tejun Heo93b2b8e2013-11-28 14:54:15 -0500429{ return ERR_PTR(-ENOSYS); }
430
Tejun Heo324a56e2013-12-11 14:11:53 -0500431static inline struct kernfs_node *
Tejun Heo2063d602013-12-11 16:02:57 -0500432__kernfs_create_file(struct kernfs_node *parent, const char *name,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000433 umode_t mode, kuid_t uid, kgid_t gid,
434 loff_t size, const struct kernfs_ops *ops,
Tejun Heodfeb07502015-02-13 14:36:31 -0800435 void *priv, const void *ns, struct lock_class_key *key)
Tejun Heo496f7392013-11-28 14:54:24 -0500436{ return ERR_PTR(-ENOSYS); }
437
Tejun Heo324a56e2013-12-11 14:11:53 -0500438static inline struct kernfs_node *
439kernfs_create_link(struct kernfs_node *parent, const char *name,
440 struct kernfs_node *target)
Tejun Heo5d0e26b2013-11-23 17:21:50 -0500441{ return ERR_PTR(-ENOSYS); }
442
Tejun Heod35258e2014-02-03 14:09:12 -0500443static inline void kernfs_activate(struct kernfs_node *kn) { }
444
Tejun Heo324a56e2013-12-11 14:11:53 -0500445static inline void kernfs_remove(struct kernfs_node *kn) { }
Tejun Heo879f40d2013-11-23 17:21:49 -0500446
Tejun Heo6b0afc22014-02-03 14:03:01 -0500447static inline bool kernfs_remove_self(struct kernfs_node *kn)
448{ return false; }
449
Tejun Heo324a56e2013-12-11 14:11:53 -0500450static inline int kernfs_remove_by_name_ns(struct kernfs_node *kn,
Tejun Heo879f40d2013-11-23 17:21:49 -0500451 const char *name, const void *ns)
452{ return -ENOSYS; }
453
Tejun Heo324a56e2013-12-11 14:11:53 -0500454static inline int kernfs_rename_ns(struct kernfs_node *kn,
455 struct kernfs_node *new_parent,
Tejun Heo890ece12013-11-23 17:21:51 -0500456 const char *new_name, const void *new_ns)
457{ return -ENOSYS; }
458
Tejun Heo324a56e2013-12-11 14:11:53 -0500459static inline int kernfs_setattr(struct kernfs_node *kn,
Tejun Heo5d604182013-11-23 17:21:52 -0500460 const struct iattr *iattr)
461{ return -ENOSYS; }
462
Tejun Heo324a56e2013-12-11 14:11:53 -0500463static inline void kernfs_notify(struct kernfs_node *kn) { }
Tejun Heo024f6472013-11-28 14:54:27 -0500464
Tejun Heo4b93dc92013-11-28 14:54:43 -0500465static inline const void *kernfs_super_ns(struct super_block *sb)
466{ return NULL; }
467
468static inline struct dentry *
469kernfs_mount_ns(struct file_system_type *fs_type, int flags,
Jianyu Zhan26fc9cd2014-04-26 15:40:28 +0800470 struct kernfs_root *root, unsigned long magic,
471 bool *new_sb_created, const void *ns)
Tejun Heo4b93dc92013-11-28 14:54:43 -0500472{ return ERR_PTR(-ENOSYS); }
473
474static inline void kernfs_kill_sb(struct super_block *sb) { }
475
476static inline void kernfs_init(void) { }
477
Tejun Heoba341d52014-02-03 14:09:17 -0500478#endif /* CONFIG_KERNFS */
Tejun Heo879f40d2013-11-23 17:21:49 -0500479
Tejun Heo3abb1d92016-08-10 11:23:44 -0400480/**
481 * kernfs_path - build full path of a given node
482 * @kn: kernfs_node of interest
483 * @buf: buffer to copy @kn's name into
484 * @buflen: size of @buf
485 *
Konstantin Khlebnikov8f5be0e2018-08-13 09:52:09 +0300486 * If @kn is NULL result will be "(null)".
487 *
488 * Returns the length of the full path. If the full length is equal to or
489 * greater than @buflen, @buf contains the truncated path with the trailing
490 * '\0'. On error, -errno is returned.
Tejun Heo3abb1d92016-08-10 11:23:44 -0400491 */
492static inline int kernfs_path(struct kernfs_node *kn, char *buf, size_t buflen)
493{
494 return kernfs_path_from_node(kn, NULL, buf, buflen);
495}
496
Tejun Heo324a56e2013-12-11 14:11:53 -0500497static inline struct kernfs_node *
498kernfs_find_and_get(struct kernfs_node *kn, const char *name)
Tejun Heoccf73cf2013-11-28 14:54:30 -0500499{
Tejun Heo324a56e2013-12-11 14:11:53 -0500500 return kernfs_find_and_get_ns(kn, name, NULL);
Tejun Heoccf73cf2013-11-28 14:54:30 -0500501}
502
Tejun Heo324a56e2013-12-11 14:11:53 -0500503static inline struct kernfs_node *
Tejun Heobd96f762015-11-20 15:55:52 -0500504kernfs_walk_and_get(struct kernfs_node *kn, const char *path)
505{
506 return kernfs_walk_and_get_ns(kn, path, NULL);
507}
508
509static inline struct kernfs_node *
Tejun Heobb8b9d02013-12-11 16:02:55 -0500510kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
511 void *priv)
Tejun Heo93b2b8e2013-11-28 14:54:15 -0500512{
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000513 return kernfs_create_dir_ns(parent, name, mode,
514 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
515 priv, NULL);
Tejun Heo93b2b8e2013-11-28 14:54:15 -0500516}
517
Tejun Heo324a56e2013-12-11 14:11:53 -0500518static inline struct kernfs_node *
519kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000520 umode_t mode, kuid_t uid, kgid_t gid,
521 loff_t size, const struct kernfs_ops *ops,
Tejun Heo517e64f2013-11-28 14:54:29 -0500522 void *priv, const void *ns)
523{
524 struct lock_class_key *key = NULL;
525
526#ifdef CONFIG_DEBUG_LOCK_ALLOC
527 key = (struct lock_class_key *)&ops->lockdep_key;
528#endif
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000529 return __kernfs_create_file(parent, name, mode, uid, gid,
530 size, ops, priv, ns, key);
Tejun Heo517e64f2013-11-28 14:54:29 -0500531}
532
Tejun Heo324a56e2013-12-11 14:11:53 -0500533static inline struct kernfs_node *
534kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
Tejun Heo496f7392013-11-28 14:54:24 -0500535 loff_t size, const struct kernfs_ops *ops, void *priv)
536{
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000537 return kernfs_create_file_ns(parent, name, mode,
538 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
539 size, ops, priv, NULL);
Tejun Heo496f7392013-11-28 14:54:24 -0500540}
541
Tejun Heo324a56e2013-12-11 14:11:53 -0500542static inline int kernfs_remove_by_name(struct kernfs_node *parent,
Tejun Heo879f40d2013-11-23 17:21:49 -0500543 const char *name)
544{
545 return kernfs_remove_by_name_ns(parent, name, NULL);
546}
547
Tejun Heo0c23b222014-02-03 14:09:15 -0500548static inline int kernfs_rename(struct kernfs_node *kn,
549 struct kernfs_node *new_parent,
550 const char *new_name)
551{
552 return kernfs_rename_ns(kn, new_parent, new_name, NULL);
553}
554
Tejun Heo4b93dc92013-11-28 14:54:43 -0500555static inline struct dentry *
556kernfs_mount(struct file_system_type *fs_type, int flags,
Jianyu Zhan26fc9cd2014-04-26 15:40:28 +0800557 struct kernfs_root *root, unsigned long magic,
558 bool *new_sb_created)
Tejun Heo4b93dc92013-11-28 14:54:43 -0500559{
Jianyu Zhan26fc9cd2014-04-26 15:40:28 +0800560 return kernfs_mount_ns(fs_type, flags, root,
561 magic, new_sb_created, NULL);
Tejun Heo4b93dc92013-11-28 14:54:43 -0500562}
563
Tejun Heob8441ed2013-11-24 09:54:58 -0500564#endif /* __LINUX_KERNFS_H */