blob: 822a64e65b4152925bf6baa7748c8a740cce34b3 [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;
David Howells23bf1b62018-11-01 23:07:26 +000028struct fs_context;
Tejun Heo5d604182013-11-23 17:21:52 -050029
David Howells23bf1b62018-11-01 23:07:26 +000030struct kernfs_fs_context;
Tejun Heoc525aad2013-12-11 14:11:55 -050031struct kernfs_open_node;
32struct kernfs_iattrs;
Tejun Heocf9e5a72013-11-29 17:18:32 -050033
34enum kernfs_node_type {
Tejun Heodf23fc32013-12-11 14:11:56 -050035 KERNFS_DIR = 0x0001,
36 KERNFS_FILE = 0x0002,
37 KERNFS_LINK = 0x0004,
Tejun Heocf9e5a72013-11-29 17:18:32 -050038};
39
Tejun Heodf23fc32013-12-11 14:11:56 -050040#define KERNFS_TYPE_MASK 0x000f
Tejun Heodf23fc32013-12-11 14:11:56 -050041#define KERNFS_FLAG_MASK ~KERNFS_TYPE_MASK
Tejun Heocf9e5a72013-11-29 17:18:32 -050042
43enum kernfs_node_flag {
Tejun Heod35258e2014-02-03 14:09:12 -050044 KERNFS_ACTIVATED = 0x0010,
Tejun Heodf23fc32013-12-11 14:11:56 -050045 KERNFS_NS = 0x0020,
46 KERNFS_HAS_SEQ_SHOW = 0x0040,
47 KERNFS_HAS_MMAP = 0x0080,
48 KERNFS_LOCKDEP = 0x0100,
Tejun Heo6b0afc22014-02-03 14:03:01 -050049 KERNFS_SUICIDAL = 0x0400,
50 KERNFS_SUICIDED = 0x0800,
Eric W. Biedermanea015212015-05-13 16:09:29 -050051 KERNFS_EMPTY_DIR = 0x1000,
Tejun Heo0e67db22016-12-27 14:49:03 -050052 KERNFS_HAS_RELEASE = 0x2000,
Tejun Heocf9e5a72013-11-29 17:18:32 -050053};
54
Tejun Heod35258e2014-02-03 14:09:12 -050055/* @flags for kernfs_create_root() */
56enum kernfs_root_flag {
Tejun Heo555724a2014-05-12 13:56:27 -040057 /*
58 * kernfs_nodes are created in the deactivated state and invisible.
59 * They require explicit kernfs_activate() to become visible. This
60 * can be used to make related nodes become visible atomically
61 * after all nodes are created successfully.
62 */
63 KERNFS_ROOT_CREATE_DEACTIVATED = 0x0001,
64
65 /*
66 * For regular flies, if the opener has CAP_DAC_OVERRIDE, open(2)
67 * succeeds regardless of the RW permissions. sysfs had an extra
68 * layer of enforcement where open(2) fails with -EACCES regardless
69 * of CAP_DAC_OVERRIDE if the permission doesn't have the
70 * respective read or write access at all (none of S_IRUGO or
71 * S_IWUGO) or the respective operation isn't implemented. The
72 * following flag enables that behavior.
73 */
74 KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 0x0002,
Shaohua Liaa818822017-07-12 11:49:51 -070075
76 /*
77 * The filesystem supports exportfs operation, so userspace can use
78 * fhandle to access nodes of the fs.
79 */
80 KERNFS_ROOT_SUPPORT_EXPORTOP = 0x0004,
Tejun Heod35258e2014-02-03 14:09:12 -050081};
82
Tejun Heo324a56e2013-12-11 14:11:53 -050083/* type-specific structures for kernfs_node union members */
84struct kernfs_elem_dir {
Tejun Heocf9e5a72013-11-29 17:18:32 -050085 unsigned long subdirs;
Tejun Heoadc5e8b2013-12-11 14:11:54 -050086 /* children rbtree starts here and goes through kn->rb */
Tejun Heocf9e5a72013-11-29 17:18:32 -050087 struct rb_root children;
88
89 /*
90 * The kernfs hierarchy this directory belongs to. This fits
Tejun Heo324a56e2013-12-11 14:11:53 -050091 * better directly in kernfs_node but is here to save space.
Tejun Heocf9e5a72013-11-29 17:18:32 -050092 */
93 struct kernfs_root *root;
94};
95
Tejun Heo324a56e2013-12-11 14:11:53 -050096struct kernfs_elem_symlink {
97 struct kernfs_node *target_kn;
Tejun Heocf9e5a72013-11-29 17:18:32 -050098};
99
Tejun Heo324a56e2013-12-11 14:11:53 -0500100struct kernfs_elem_attr {
Tejun Heocf9e5a72013-11-29 17:18:32 -0500101 const struct kernfs_ops *ops;
Tejun Heoc525aad2013-12-11 14:11:55 -0500102 struct kernfs_open_node *open;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500103 loff_t size;
Tejun Heoecca47c2014-07-01 16:41:03 -0400104 struct kernfs_node *notify_next; /* for kernfs_notify() */
Tejun Heocf9e5a72013-11-29 17:18:32 -0500105};
106
Shaohua Lic53cd492017-07-12 11:49:50 -0700107/* represent a kernfs node */
108union kernfs_node_id {
109 struct {
Shaohua Liaa818822017-07-12 11:49:51 -0700110 /*
111 * blktrace will export this struct as a simplified 'struct
112 * fid' (which is a big data struction), so userspace can use
113 * it to find kernfs node. The layout must match the first two
114 * fields of 'struct fid' exactly.
115 */
Shaohua Lic53cd492017-07-12 11:49:50 -0700116 u32 ino;
117 u32 generation;
118 };
119 u64 id;
120};
121
Tejun Heocf9e5a72013-11-29 17:18:32 -0500122/*
Tejun Heo324a56e2013-12-11 14:11:53 -0500123 * kernfs_node - the building block of kernfs hierarchy. Each and every
124 * kernfs node is represented by single kernfs_node. Most fields are
Tejun Heocf9e5a72013-11-29 17:18:32 -0500125 * private to kernfs and shouldn't be accessed directly by kernfs users.
126 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500127 * As long as s_count reference is held, the kernfs_node itself is
128 * accessible. Dereferencing elem or any other outer entity requires
129 * active reference.
Tejun Heocf9e5a72013-11-29 17:18:32 -0500130 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500131struct kernfs_node {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500132 atomic_t count;
133 atomic_t active;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500134#ifdef CONFIG_DEBUG_LOCK_ALLOC
135 struct lockdep_map dep_map;
136#endif
Tejun Heo3eef34a2014-02-07 13:32:07 -0500137 /*
138 * Use kernfs_get_parent() and kernfs_name/path() instead of
139 * accessing the following two fields directly. If the node is
140 * never moved to a different parent, it is safe to access the
141 * parent directly.
142 */
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500143 struct kernfs_node *parent;
144 const char *name;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500145
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500146 struct rb_node rb;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500147
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500148 const void *ns; /* namespace tag */
Greg Kroah-Hartman9b0925a2014-01-13 14:09:38 -0800149 unsigned int hash; /* ns + name hash */
Tejun Heocf9e5a72013-11-29 17:18:32 -0500150 union {
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500151 struct kernfs_elem_dir dir;
152 struct kernfs_elem_symlink symlink;
153 struct kernfs_elem_attr attr;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500154 };
155
156 void *priv;
157
Shaohua Lic53cd492017-07-12 11:49:50 -0700158 union kernfs_node_id id;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500159 unsigned short flags;
160 umode_t mode;
Tejun Heoc525aad2013-12-11 14:11:55 -0500161 struct kernfs_iattrs *iattr;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500162};
Tejun Heob8441ed2013-11-24 09:54:58 -0500163
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500164/*
Tejun Heo90c07c82014-02-03 14:09:09 -0500165 * 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.
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500170 */
Tejun Heo90c07c82014-02-03 14:09:09 -0500171struct kernfs_syscall_ops {
Tejun Heo6a7fed42014-02-03 14:09:10 -0500172 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
Tejun Heoc525aad2013-12-11 14:11:55 -0500265 int (*mmap)(struct kernfs_open_file *of, struct vm_area_struct *vma);
Tejun Heo517e64f2013-11-28 14:54:29 -0500266
267#ifdef CONFIG_DEBUG_LOCK_ALLOC
268 struct lock_class_key lockdep_key;
269#endif
Tejun Heof6acf8b2013-11-28 14:54:21 -0500270};
271
David Howells23bf1b62018-11-01 23:07:26 +0000272/*
273 * The kernfs superblock creation/mount parameter context.
274 */
275struct kernfs_fs_context {
276 struct kernfs_root *root; /* Root of the hierarchy being mounted */
277 void *ns_tag; /* Namespace tag of the mount (or NULL) */
278 unsigned long magic; /* File system specific magic number */
279
280 /* The following are set/used by kernfs_mount() */
281 bool new_sb_created; /* Set to T if we allocated a new sb */
282};
283
Tejun Heoba341d52014-02-03 14:09:17 -0500284#ifdef CONFIG_KERNFS
Tejun Heo879f40d2013-11-23 17:21:49 -0500285
Tejun Heodf23fc32013-12-11 14:11:56 -0500286static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
Tejun Heocf9e5a72013-11-29 17:18:32 -0500287{
Tejun Heodf23fc32013-12-11 14:11:56 -0500288 return kn->flags & KERNFS_TYPE_MASK;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500289}
290
291/**
292 * kernfs_enable_ns - enable namespace under a directory
Tejun Heo324a56e2013-12-11 14:11:53 -0500293 * @kn: directory of interest, should be empty
Tejun Heocf9e5a72013-11-29 17:18:32 -0500294 *
Tejun Heo324a56e2013-12-11 14:11:53 -0500295 * This is to be called right after @kn is created to enable namespace
296 * under it. All children of @kn must have non-NULL namespace tags and
Tejun Heocf9e5a72013-11-29 17:18:32 -0500297 * only the ones which match the super_block's tag will be visible.
298 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500299static inline void kernfs_enable_ns(struct kernfs_node *kn)
Tejun Heocf9e5a72013-11-29 17:18:32 -0500300{
Tejun Heodf23fc32013-12-11 14:11:56 -0500301 WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500302 WARN_ON_ONCE(!RB_EMPTY_ROOT(&kn->dir.children));
Tejun Heodf23fc32013-12-11 14:11:56 -0500303 kn->flags |= KERNFS_NS;
Tejun Heocf9e5a72013-11-29 17:18:32 -0500304}
305
Tejun Heoac9bba02013-11-29 17:19:09 -0500306/**
307 * kernfs_ns_enabled - test whether namespace is enabled
Tejun Heo324a56e2013-12-11 14:11:53 -0500308 * @kn: the node to test
Tejun Heoac9bba02013-11-29 17:19:09 -0500309 *
310 * Test whether namespace filtering is enabled for the children of @ns.
311 */
Tejun Heo324a56e2013-12-11 14:11:53 -0500312static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
Tejun Heoac9bba02013-11-29 17:19:09 -0500313{
Tejun Heodf23fc32013-12-11 14:11:56 -0500314 return kn->flags & KERNFS_NS;
Tejun Heoac9bba02013-11-29 17:19:09 -0500315}
316
Tejun Heo3eef34a2014-02-07 13:32:07 -0500317int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen);
Aditya Kali9f6df572016-01-29 02:54:04 -0600318int kernfs_path_from_node(struct kernfs_node *root_kn, struct kernfs_node *kn,
319 char *buf, size_t buflen);
Tejun Heo3eef34a2014-02-07 13:32:07 -0500320void pr_cont_kernfs_name(struct kernfs_node *kn);
321void pr_cont_kernfs_path(struct kernfs_node *kn);
322struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn);
Tejun Heo324a56e2013-12-11 14:11:53 -0500323struct kernfs_node *kernfs_find_and_get_ns(struct kernfs_node *parent,
324 const char *name, const void *ns);
Tejun Heobd96f762015-11-20 15:55:52 -0500325struct kernfs_node *kernfs_walk_and_get_ns(struct kernfs_node *parent,
326 const char *path, const void *ns);
Tejun Heo324a56e2013-12-11 14:11:53 -0500327void kernfs_get(struct kernfs_node *kn);
328void kernfs_put(struct kernfs_node *kn);
Tejun Heoccf73cf2013-11-28 14:54:30 -0500329
Tejun Heo0c23b222014-02-03 14:09:15 -0500330struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry);
331struct kernfs_root *kernfs_root_from_sb(struct super_block *sb);
Tejun Heofb029152015-06-18 16:54:28 -0400332struct inode *kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn);
Tejun Heo0c23b222014-02-03 14:09:15 -0500333
Aditya Kalifb3c8312016-01-29 02:54:08 -0600334struct dentry *kernfs_node_dentry(struct kernfs_node *kn,
335 struct super_block *sb);
Tejun Heo90c07c82014-02-03 14:09:09 -0500336struct kernfs_root *kernfs_create_root(struct kernfs_syscall_ops *scops,
Tejun Heod35258e2014-02-03 14:09:12 -0500337 unsigned int flags, void *priv);
Tejun Heoba7443b2013-11-28 14:54:40 -0500338void kernfs_destroy_root(struct kernfs_root *root);
339
Tejun Heo324a56e2013-12-11 14:11:53 -0500340struct kernfs_node *kernfs_create_dir_ns(struct kernfs_node *parent,
Tejun Heobb8b9d02013-12-11 16:02:55 -0500341 const char *name, umode_t mode,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000342 kuid_t uid, kgid_t gid,
Tejun Heobb8b9d02013-12-11 16:02:55 -0500343 void *priv, const void *ns);
Eric W. Biedermanea015212015-05-13 16:09:29 -0500344struct kernfs_node *kernfs_create_empty_dir(struct kernfs_node *parent,
345 const char *name);
Tejun Heo2063d602013-12-11 16:02:57 -0500346struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000347 const char *name, umode_t mode,
348 kuid_t uid, kgid_t gid,
349 loff_t size,
Tejun Heo2063d602013-12-11 16:02:57 -0500350 const struct kernfs_ops *ops,
351 void *priv, const void *ns,
Tejun Heo2063d602013-12-11 16:02:57 -0500352 struct lock_class_key *key);
Tejun Heo324a56e2013-12-11 14:11:53 -0500353struct kernfs_node *kernfs_create_link(struct kernfs_node *parent,
354 const char *name,
355 struct kernfs_node *target);
Tejun Heod35258e2014-02-03 14:09:12 -0500356void kernfs_activate(struct kernfs_node *kn);
Tejun Heo324a56e2013-12-11 14:11:53 -0500357void kernfs_remove(struct kernfs_node *kn);
Tejun Heo6b0afc22014-02-03 14:03:01 -0500358void kernfs_break_active_protection(struct kernfs_node *kn);
359void kernfs_unbreak_active_protection(struct kernfs_node *kn);
360bool kernfs_remove_self(struct kernfs_node *kn);
Tejun Heo324a56e2013-12-11 14:11:53 -0500361int kernfs_remove_by_name_ns(struct kernfs_node *parent, const char *name,
Tejun Heo879f40d2013-11-23 17:21:49 -0500362 const void *ns);
Tejun Heo324a56e2013-12-11 14:11:53 -0500363int kernfs_rename_ns(struct kernfs_node *kn, struct kernfs_node *new_parent,
Tejun Heo890ece12013-11-23 17:21:51 -0500364 const char *new_name, const void *new_ns);
Tejun Heo324a56e2013-12-11 14:11:53 -0500365int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr);
366void kernfs_notify(struct kernfs_node *kn);
Tejun Heo879f40d2013-11-23 17:21:49 -0500367
Tejun Heo4b93dc92013-11-28 14:54:43 -0500368const void *kernfs_super_ns(struct super_block *sb);
David Howells23bf1b62018-11-01 23:07:26 +0000369int kernfs_get_tree(struct fs_context *fc);
370void kernfs_free_fs_context(struct fs_context *fc);
Tejun Heo4b93dc92013-11-28 14:54:43 -0500371void kernfs_kill_sb(struct super_block *sb);
372
373void kernfs_init(void);
374
Shaohua Li69fd5c32017-07-12 11:49:55 -0700375struct kernfs_node *kernfs_get_node_by_id(struct kernfs_root *root,
376 const union kernfs_node_id *id);
Tejun Heoba341d52014-02-03 14:09:17 -0500377#else /* CONFIG_KERNFS */
Tejun Heo879f40d2013-11-23 17:21:49 -0500378
Tejun Heodf23fc32013-12-11 14:11:56 -0500379static inline enum kernfs_node_type kernfs_type(struct kernfs_node *kn)
Tejun Heocf9e5a72013-11-29 17:18:32 -0500380{ return 0; } /* whatever */
381
Tejun Heo324a56e2013-12-11 14:11:53 -0500382static inline void kernfs_enable_ns(struct kernfs_node *kn) { }
Tejun Heocf9e5a72013-11-29 17:18:32 -0500383
Tejun Heo324a56e2013-12-11 14:11:53 -0500384static inline bool kernfs_ns_enabled(struct kernfs_node *kn)
Tejun Heoac9bba02013-11-29 17:19:09 -0500385{ return false; }
386
Tejun Heo3eef34a2014-02-07 13:32:07 -0500387static inline int kernfs_name(struct kernfs_node *kn, char *buf, size_t buflen)
388{ return -ENOSYS; }
389
Tejun Heo0e0b2af2016-08-10 11:23:43 -0400390static inline int kernfs_path_from_node(struct kernfs_node *root_kn,
391 struct kernfs_node *kn,
392 char *buf, size_t buflen)
393{ return -ENOSYS; }
394
Tejun Heo3eef34a2014-02-07 13:32:07 -0500395static inline void pr_cont_kernfs_name(struct kernfs_node *kn) { }
396static inline void pr_cont_kernfs_path(struct kernfs_node *kn) { }
397
398static inline struct kernfs_node *kernfs_get_parent(struct kernfs_node *kn)
399{ return NULL; }
400
Tejun Heo324a56e2013-12-11 14:11:53 -0500401static inline struct kernfs_node *
402kernfs_find_and_get_ns(struct kernfs_node *parent, const char *name,
Tejun Heoccf73cf2013-11-28 14:54:30 -0500403 const void *ns)
404{ return NULL; }
Tejun Heobd96f762015-11-20 15:55:52 -0500405static inline struct kernfs_node *
406kernfs_walk_and_get_ns(struct kernfs_node *parent, const char *path,
407 const void *ns)
408{ return NULL; }
Tejun Heoccf73cf2013-11-28 14:54:30 -0500409
Tejun Heo324a56e2013-12-11 14:11:53 -0500410static inline void kernfs_get(struct kernfs_node *kn) { }
411static inline void kernfs_put(struct kernfs_node *kn) { }
Tejun Heoccf73cf2013-11-28 14:54:30 -0500412
Tejun Heo0c23b222014-02-03 14:09:15 -0500413static inline struct kernfs_node *kernfs_node_from_dentry(struct dentry *dentry)
414{ return NULL; }
415
416static inline struct kernfs_root *kernfs_root_from_sb(struct super_block *sb)
417{ return NULL; }
418
Tejun Heofb029152015-06-18 16:54:28 -0400419static inline struct inode *
420kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn)
421{ return NULL; }
422
Tejun Heo80b9bbe2013-12-11 16:03:00 -0500423static inline struct kernfs_root *
Tejun Heod35258e2014-02-03 14:09:12 -0500424kernfs_create_root(struct kernfs_syscall_ops *scops, unsigned int flags,
425 void *priv)
Tejun Heoba7443b2013-11-28 14:54:40 -0500426{ return ERR_PTR(-ENOSYS); }
427
428static inline void kernfs_destroy_root(struct kernfs_root *root) { }
429
Tejun Heo324a56e2013-12-11 14:11:53 -0500430static inline struct kernfs_node *
Tejun Heobb8b9d02013-12-11 16:02:55 -0500431kernfs_create_dir_ns(struct kernfs_node *parent, const char *name,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000432 umode_t mode, kuid_t uid, kgid_t gid,
433 void *priv, const void *ns)
Tejun Heo93b2b8e2013-11-28 14:54:15 -0500434{ return ERR_PTR(-ENOSYS); }
435
Tejun Heo324a56e2013-12-11 14:11:53 -0500436static inline struct kernfs_node *
Tejun Heo2063d602013-12-11 16:02:57 -0500437__kernfs_create_file(struct kernfs_node *parent, const char *name,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000438 umode_t mode, kuid_t uid, kgid_t gid,
439 loff_t size, const struct kernfs_ops *ops,
Tejun Heodfeb07502015-02-13 14:36:31 -0800440 void *priv, const void *ns, struct lock_class_key *key)
Tejun Heo496f7392013-11-28 14:54:24 -0500441{ return ERR_PTR(-ENOSYS); }
442
Tejun Heo324a56e2013-12-11 14:11:53 -0500443static inline struct kernfs_node *
444kernfs_create_link(struct kernfs_node *parent, const char *name,
445 struct kernfs_node *target)
Tejun Heo5d0e26b2013-11-23 17:21:50 -0500446{ return ERR_PTR(-ENOSYS); }
447
Tejun Heod35258e2014-02-03 14:09:12 -0500448static inline void kernfs_activate(struct kernfs_node *kn) { }
449
Tejun Heo324a56e2013-12-11 14:11:53 -0500450static inline void kernfs_remove(struct kernfs_node *kn) { }
Tejun Heo879f40d2013-11-23 17:21:49 -0500451
Tejun Heo6b0afc22014-02-03 14:03:01 -0500452static inline bool kernfs_remove_self(struct kernfs_node *kn)
453{ return false; }
454
Tejun Heo324a56e2013-12-11 14:11:53 -0500455static inline int kernfs_remove_by_name_ns(struct kernfs_node *kn,
Tejun Heo879f40d2013-11-23 17:21:49 -0500456 const char *name, const void *ns)
457{ return -ENOSYS; }
458
Tejun Heo324a56e2013-12-11 14:11:53 -0500459static inline int kernfs_rename_ns(struct kernfs_node *kn,
460 struct kernfs_node *new_parent,
Tejun Heo890ece12013-11-23 17:21:51 -0500461 const char *new_name, const void *new_ns)
462{ return -ENOSYS; }
463
Tejun Heo324a56e2013-12-11 14:11:53 -0500464static inline int kernfs_setattr(struct kernfs_node *kn,
Tejun Heo5d604182013-11-23 17:21:52 -0500465 const struct iattr *iattr)
466{ return -ENOSYS; }
467
Tejun Heo324a56e2013-12-11 14:11:53 -0500468static inline void kernfs_notify(struct kernfs_node *kn) { }
Tejun Heo024f6472013-11-28 14:54:27 -0500469
Tejun Heo4b93dc92013-11-28 14:54:43 -0500470static inline const void *kernfs_super_ns(struct super_block *sb)
471{ return NULL; }
472
David Howells23bf1b62018-11-01 23:07:26 +0000473static inline int kernfs_get_tree(struct fs_context *fc)
474{ return -ENOSYS; }
475
476static inline void kernfs_free_fs_context(struct fs_context *fc) { }
Tejun Heo4b93dc92013-11-28 14:54:43 -0500477
478static inline void kernfs_kill_sb(struct super_block *sb) { }
479
480static inline void kernfs_init(void) { }
481
Tejun Heoba341d52014-02-03 14:09:17 -0500482#endif /* CONFIG_KERNFS */
Tejun Heo879f40d2013-11-23 17:21:49 -0500483
Tejun Heo3abb1d92016-08-10 11:23:44 -0400484/**
485 * kernfs_path - build full path of a given node
486 * @kn: kernfs_node of interest
487 * @buf: buffer to copy @kn's name into
488 * @buflen: size of @buf
489 *
Konstantin Khlebnikov8f5be0e2018-08-13 09:52:09 +0300490 * If @kn is NULL result will be "(null)".
491 *
492 * Returns the length of the full path. If the full length is equal to or
493 * greater than @buflen, @buf contains the truncated path with the trailing
494 * '\0'. On error, -errno is returned.
Tejun Heo3abb1d92016-08-10 11:23:44 -0400495 */
496static inline int kernfs_path(struct kernfs_node *kn, char *buf, size_t buflen)
497{
498 return kernfs_path_from_node(kn, NULL, buf, buflen);
499}
500
Tejun Heo324a56e2013-12-11 14:11:53 -0500501static inline struct kernfs_node *
502kernfs_find_and_get(struct kernfs_node *kn, const char *name)
Tejun Heoccf73cf2013-11-28 14:54:30 -0500503{
Tejun Heo324a56e2013-12-11 14:11:53 -0500504 return kernfs_find_and_get_ns(kn, name, NULL);
Tejun Heoccf73cf2013-11-28 14:54:30 -0500505}
506
Tejun Heo324a56e2013-12-11 14:11:53 -0500507static inline struct kernfs_node *
Tejun Heobd96f762015-11-20 15:55:52 -0500508kernfs_walk_and_get(struct kernfs_node *kn, const char *path)
509{
510 return kernfs_walk_and_get_ns(kn, path, NULL);
511}
512
513static inline struct kernfs_node *
Tejun Heobb8b9d02013-12-11 16:02:55 -0500514kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
515 void *priv)
Tejun Heo93b2b8e2013-11-28 14:54:15 -0500516{
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000517 return kernfs_create_dir_ns(parent, name, mode,
518 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
519 priv, NULL);
Tejun Heo93b2b8e2013-11-28 14:54:15 -0500520}
521
Tejun Heo324a56e2013-12-11 14:11:53 -0500522static inline struct kernfs_node *
523kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000524 umode_t mode, kuid_t uid, kgid_t gid,
525 loff_t size, const struct kernfs_ops *ops,
Tejun Heo517e64f2013-11-28 14:54:29 -0500526 void *priv, const void *ns)
527{
528 struct lock_class_key *key = NULL;
529
530#ifdef CONFIG_DEBUG_LOCK_ALLOC
531 key = (struct lock_class_key *)&ops->lockdep_key;
532#endif
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000533 return __kernfs_create_file(parent, name, mode, uid, gid,
534 size, ops, priv, ns, key);
Tejun Heo517e64f2013-11-28 14:54:29 -0500535}
536
Tejun Heo324a56e2013-12-11 14:11:53 -0500537static inline struct kernfs_node *
538kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
Tejun Heo496f7392013-11-28 14:54:24 -0500539 loff_t size, const struct kernfs_ops *ops, void *priv)
540{
Dmitry Torokhov488dee92018-07-20 21:56:47 +0000541 return kernfs_create_file_ns(parent, name, mode,
542 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
543 size, ops, priv, NULL);
Tejun Heo496f7392013-11-28 14:54:24 -0500544}
545
Tejun Heo324a56e2013-12-11 14:11:53 -0500546static inline int kernfs_remove_by_name(struct kernfs_node *parent,
Tejun Heo879f40d2013-11-23 17:21:49 -0500547 const char *name)
548{
549 return kernfs_remove_by_name_ns(parent, name, NULL);
550}
551
Tejun Heo0c23b222014-02-03 14:09:15 -0500552static inline int kernfs_rename(struct kernfs_node *kn,
553 struct kernfs_node *new_parent,
554 const char *new_name)
555{
556 return kernfs_rename_ns(kn, new_parent, new_name, NULL);
557}
558
Tejun Heob8441ed2013-11-24 09:54:58 -0500559#endif /* __LINUX_KERNFS_H */