blob: ca85a4348ffcb690d94855fe01515ca6ca6f6f8a [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;
17 int type;
Al Viro64964522014-11-01 00:37:32 -040018 struct ns_common *(*get)(struct task_struct *task);
19 void (*put)(struct ns_common *ns);
20 int (*install)(struct nsproxy *nsproxy, struct ns_common *ns);
Andrey Vaginbcac25a2016-09-06 00:47:13 -070021 struct user_namespace *(*owner)(struct ns_common *ns);
David Howells0bb80f22013-04-12 01:50:06 +010022};
23
David Howells0bb80f22013-04-12 01:50:06 +010024extern const struct proc_ns_operations netns_operations;
25extern const struct proc_ns_operations utsns_operations;
26extern const struct proc_ns_operations ipcns_operations;
27extern const struct proc_ns_operations pidns_operations;
28extern const struct proc_ns_operations userns_operations;
29extern const struct proc_ns_operations mntns_operations;
Aditya Kalia79a9082016-01-29 02:54:06 -060030extern const struct proc_ns_operations cgroupns_operations;
David Howells0bb80f22013-04-12 01:50:06 +010031
32/*
33 * We always define these enumerators
34 */
35enum {
36 PROC_ROOT_INO = 1,
37 PROC_IPC_INIT_INO = 0xEFFFFFFFU,
38 PROC_UTS_INIT_INO = 0xEFFFFFFEU,
39 PROC_USER_INIT_INO = 0xEFFFFFFDU,
40 PROC_PID_INIT_INO = 0xEFFFFFFCU,
Aditya Kalia79a9082016-01-29 02:54:06 -060041 PROC_CGROUP_INIT_INO = 0xEFFFFFFBU,
David Howells0bb80f22013-04-12 01:50:06 +010042};
43
44#ifdef CONFIG_PROC_FS
45
46extern int pid_ns_prepare_proc(struct pid_namespace *ns);
47extern void pid_ns_release_proc(struct pid_namespace *ns);
David Howells0bb80f22013-04-12 01:50:06 +010048extern int proc_alloc_inum(unsigned int *pino);
49extern void proc_free_inum(unsigned int inum);
David Howells0bb80f22013-04-12 01:50:06 +010050
51#else /* CONFIG_PROC_FS */
52
53static inline int pid_ns_prepare_proc(struct pid_namespace *ns) { return 0; }
54static inline void pid_ns_release_proc(struct pid_namespace *ns) {}
55
David Howells0bb80f22013-04-12 01:50:06 +010056static inline int proc_alloc_inum(unsigned int *inum)
57{
58 *inum = 1;
59 return 0;
60}
61static inline void proc_free_inum(unsigned int inum) {}
David Howells0bb80f22013-04-12 01:50:06 +010062
63#endif /* CONFIG_PROC_FS */
64
Al Viroe149ed22014-11-01 10:57:28 -040065static inline int ns_alloc_inum(struct ns_common *ns)
66{
67 atomic_long_set(&ns->stashed, 0);
68 return proc_alloc_inum(&ns->inum);
69}
70
Al Viro6344c432014-11-01 00:45:45 -040071#define ns_free_inum(ns) proc_free_inum((ns)->inum)
72
Al Viroe149ed22014-11-01 10:57:28 -040073extern struct file *proc_ns_fget(int fd);
74#define get_proc_ns(inode) ((struct ns_common *)(inode)->i_private)
75extern void *ns_get_path(struct path *path, struct task_struct *task,
76 const struct proc_ns_operations *ns_ops);
77
78extern int ns_get_name(char *buf, size_t size, struct task_struct *task,
79 const struct proc_ns_operations *ns_ops);
80extern void nsfs_init(void);
81
David Howells0bb80f22013-04-12 01:50:06 +010082#endif /* _LINUX_PROC_NS_H */