]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/proc_ns.h
ns: allow ns_entries to have custom symlink content
[mirror_ubuntu-bionic-kernel.git] / include / linux / proc_ns.h
CommitLineData
0bb80f24
DH
1/*
2 * procfs namespace bits
3 */
4#ifndef _LINUX_PROC_NS_H
5#define _LINUX_PROC_NS_H
6
e149ed2b
AV
7#include <linux/ns_common.h>
8
0bb80f24
DH
9struct pid_namespace;
10struct nsproxy;
e149ed2b 11struct path;
a79a908f
AK
12struct task_struct;
13struct inode;
0bb80f24
DH
14
15struct proc_ns_operations {
16 const char *name;
25b14e92 17 const char *real_ns_name;
0bb80f24 18 int type;
64964528
AV
19 struct ns_common *(*get)(struct task_struct *task);
20 void (*put)(struct ns_common *ns);
21 int (*install)(struct nsproxy *nsproxy, struct ns_common *ns);
bcac25a5 22 struct user_namespace *(*owner)(struct ns_common *ns);
a7306ed8 23 struct ns_common *(*get_parent)(struct ns_common *ns);
0bb80f24
DH
24};
25
0bb80f24
DH
26extern const struct proc_ns_operations netns_operations;
27extern const struct proc_ns_operations utsns_operations;
28extern const struct proc_ns_operations ipcns_operations;
29extern const struct proc_ns_operations pidns_operations;
30extern const struct proc_ns_operations userns_operations;
31extern const struct proc_ns_operations mntns_operations;
a79a908f 32extern const struct proc_ns_operations cgroupns_operations;
0bb80f24
DH
33
34/*
35 * We always define these enumerators
36 */
37enum {
38 PROC_ROOT_INO = 1,
39 PROC_IPC_INIT_INO = 0xEFFFFFFFU,
40 PROC_UTS_INIT_INO = 0xEFFFFFFEU,
41 PROC_USER_INIT_INO = 0xEFFFFFFDU,
42 PROC_PID_INIT_INO = 0xEFFFFFFCU,
a79a908f 43 PROC_CGROUP_INIT_INO = 0xEFFFFFFBU,
0bb80f24
DH
44};
45
46#ifdef CONFIG_PROC_FS
47
48extern int pid_ns_prepare_proc(struct pid_namespace *ns);
49extern void pid_ns_release_proc(struct pid_namespace *ns);
0bb80f24
DH
50extern int proc_alloc_inum(unsigned int *pino);
51extern void proc_free_inum(unsigned int inum);
0bb80f24
DH
52
53#else /* CONFIG_PROC_FS */
54
55static inline int pid_ns_prepare_proc(struct pid_namespace *ns) { return 0; }
56static inline void pid_ns_release_proc(struct pid_namespace *ns) {}
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
AV
75extern struct file *proc_ns_fget(int fd);
76#define get_proc_ns(inode) ((struct ns_common *)(inode)->i_private)
77extern void *ns_get_path(struct path *path, struct task_struct *task,
78 const struct proc_ns_operations *ns_ops);
79
80extern int ns_get_name(char *buf, size_t size, struct task_struct *task,
81 const struct proc_ns_operations *ns_ops);
82extern void nsfs_init(void);
83
0bb80f24 84#endif /* _LINUX_PROC_NS_H */