Merge tag 'wireless-next-2023-11-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / include / linux / proc_ns.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
0bb80f24
DH
2/*
3 * procfs namespace bits
4 */
5#ifndef _LINUX_PROC_NS_H
6#define _LINUX_PROC_NS_H
7
e149ed2b
AV
8#include <linux/ns_common.h>
9
0bb80f24 10struct pid_namespace;
f2a8d52e 11struct nsset;
e149ed2b 12struct path;
a79a908f
AK
13struct task_struct;
14struct inode;
0bb80f24
DH
15
16struct proc_ns_operations {
17 const char *name;
25b14e92 18 const char *real_ns_name;
0bb80f24 19 int type;
64964528
AV
20 struct ns_common *(*get)(struct task_struct *task);
21 void (*put)(struct ns_common *ns);
f2a8d52e 22 int (*install)(struct nsset *nsset, struct ns_common *ns);
bcac25a5 23 struct user_namespace *(*owner)(struct ns_common *ns);
a7306ed8 24 struct ns_common *(*get_parent)(struct ns_common *ns);
3859a271 25} __randomize_layout;
0bb80f24 26
0bb80f24
DH
27extern const struct proc_ns_operations netns_operations;
28extern const struct proc_ns_operations utsns_operations;
29extern const struct proc_ns_operations ipcns_operations;
30extern const struct proc_ns_operations pidns_operations;
eaa0d190 31extern const struct proc_ns_operations pidns_for_children_operations;
0bb80f24
DH
32extern const struct proc_ns_operations userns_operations;
33extern const struct proc_ns_operations mntns_operations;
a79a908f 34extern const struct proc_ns_operations cgroupns_operations;
769071ac
AV
35extern const struct proc_ns_operations timens_operations;
36extern const struct proc_ns_operations timens_for_children_operations;
0bb80f24
DH
37
38/*
39 * We always define these enumerators
40 */
41enum {
42 PROC_ROOT_INO = 1,
43 PROC_IPC_INIT_INO = 0xEFFFFFFFU,
44 PROC_UTS_INIT_INO = 0xEFFFFFFEU,
45 PROC_USER_INIT_INO = 0xEFFFFFFDU,
46 PROC_PID_INIT_INO = 0xEFFFFFFCU,
a79a908f 47 PROC_CGROUP_INIT_INO = 0xEFFFFFFBU,
769071ac 48 PROC_TIME_INIT_INO = 0xEFFFFFFAU,
0bb80f24
DH
49};
50
51#ifdef CONFIG_PROC_FS
52
0bb80f24
DH
53extern int proc_alloc_inum(unsigned int *pino);
54extern void proc_free_inum(unsigned int inum);
0bb80f24
DH
55
56#else /* CONFIG_PROC_FS */
57
0bb80f24
DH
58static inline int proc_alloc_inum(unsigned int *inum)
59{
60 *inum = 1;
61 return 0;
62}
63static inline void proc_free_inum(unsigned int inum) {}
0bb80f24
DH
64
65#endif /* CONFIG_PROC_FS */
66
e149ed2b
AV
67static inline int ns_alloc_inum(struct ns_common *ns)
68{
69 atomic_long_set(&ns->stashed, 0);
70 return proc_alloc_inum(&ns->inum);
71}
72
6344c433
AV
73#define ns_free_inum(ns) proc_free_inum((ns)->inum)
74
e149ed2b 75#define get_proc_ns(inode) ((struct ns_common *)(inode)->i_private)
ce623f89 76extern int ns_get_path(struct path *path, struct task_struct *task,
e149ed2b 77 const struct proc_ns_operations *ns_ops);
cdab6ba8 78typedef struct ns_common *ns_get_path_helper_t(void *);
ce623f89 79extern int ns_get_path_cb(struct path *path, ns_get_path_helper_t ns_get_cb,
cdab6ba8 80 void *private_data);
e149ed2b 81
1e2328e7
CN
82extern bool ns_match(const struct ns_common *ns, dev_t dev, ino_t ino);
83
e149ed2b
AV
84extern int ns_get_name(char *buf, size_t size, struct task_struct *task,
85 const struct proc_ns_operations *ns_ops);
86extern void nsfs_init(void);
87
0bb80f24 88#endif /* _LINUX_PROC_NS_H */