kernel: add a helper to get an owning user namespace for a namespace
[linux-2.6-block.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;
17 int type;
64964528
AV
18 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);
bcac25a5 21 struct user_namespace *(*owner)(struct ns_common *ns);
0bb80f24
DH
22};
23
0bb80f24
DH
24extern 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;
a79a908f 30extern const struct proc_ns_operations cgroupns_operations;
0bb80f24
DH
31
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,
a79a908f 41 PROC_CGROUP_INIT_INO = 0xEFFFFFFBU,
0bb80f24
DH
42};
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);
0bb80f24
DH
48extern int proc_alloc_inum(unsigned int *pino);
49extern void proc_free_inum(unsigned int inum);
0bb80f24
DH
50
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
0bb80f24
DH
56static 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) {}
0bb80f24
DH
62
63#endif /* CONFIG_PROC_FS */
64
e149ed2b
AV
65static 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
6344c433
AV
71#define ns_free_inum(ns) proc_free_inum((ns)->inum)
72
e149ed2b
AV
73extern 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
0bb80f24 82#endif /* _LINUX_PROC_NS_H */