blob: 88dba3b53375ff4976da93b1d6bed5262b006670 [file] [log] [blame]
David Howells0bb80f22013-04-12 01:50:06 +01001/*
2 * procfs namespace bits
3 */
4#ifndef _LINUX_PROC_NS_H
5#define _LINUX_PROC_NS_H
6
Al Viroe149ed22014-11-01 10:57:28 -04007#include <linux/ns_common.h>
8
David Howells0bb80f22013-04-12 01:50:06 +01009struct pid_namespace;
10struct nsproxy;
Al Viroe149ed22014-11-01 10:57:28 -040011struct path;
Aditya Kalia79a9082016-01-29 02:54:06 -060012struct task_struct;
13struct inode;
David Howells0bb80f22013-04-12 01:50:06 +010014
15struct proc_ns_operations {
16 const char *name;
Kirill Tkhai25b14e92017-05-08 15:56:38 -070017 const char *real_ns_name;
David Howells0bb80f22013-04-12 01:50:06 +010018 int type;
Al Viro64964522014-11-01 00:37:32 -040019 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);
Andrey Vaginbcac25a2016-09-06 00:47:13 -070022 struct user_namespace *(*owner)(struct ns_common *ns);
Andrey Vagina7306ed82016-09-06 00:47:15 -070023 struct ns_common *(*get_parent)(struct ns_common *ns);
David Howells0bb80f22013-04-12 01:50:06 +010024};
25
David Howells0bb80f22013-04-12 01:50:06 +010026extern 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;
Aditya Kalia79a9082016-01-29 02:54:06 -060032extern const struct proc_ns_operations cgroupns_operations;
David Howells0bb80f22013-04-12 01:50:06 +010033
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,
Aditya Kalia79a9082016-01-29 02:54:06 -060043 PROC_CGROUP_INIT_INO = 0xEFFFFFFBU,
David Howells0bb80f22013-04-12 01:50:06 +010044};
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);
David Howells0bb80f22013-04-12 01:50:06 +010050extern int proc_alloc_inum(unsigned int *pino);
51extern void proc_free_inum(unsigned int inum);
David Howells0bb80f22013-04-12 01:50:06 +010052
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
David Howells0bb80f22013-04-12 01:50:06 +010058static 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) {}
David Howells0bb80f22013-04-12 01:50:06 +010064
65#endif /* CONFIG_PROC_FS */
66
Al Viroe149ed22014-11-01 10:57:28 -040067static 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
Al Viro6344c432014-11-01 00:45:45 -040073#define ns_free_inum(ns) proc_free_inum((ns)->inum)
74
Al Viroe149ed22014-11-01 10:57:28 -040075extern 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
David Howells0bb80f22013-04-12 01:50:06 +010084#endif /* _LINUX_PROC_NS_H */