blob: d31cb6215905c2f719f2393185b2e3ea3d05d493 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David Howells0bb80f22013-04-12 01:50:06 +01002/*
3 * procfs namespace bits
4 */
5#ifndef _LINUX_PROC_NS_H
6#define _LINUX_PROC_NS_H
7
Al Viroe149ed22014-11-01 10:57:28 -04008#include <linux/ns_common.h>
9
David Howells0bb80f22013-04-12 01:50:06 +010010struct pid_namespace;
11struct nsproxy;
Al Viroe149ed22014-11-01 10:57:28 -040012struct path;
Aditya Kalia79a9082016-01-29 02:54:06 -060013struct task_struct;
14struct inode;
David Howells0bb80f22013-04-12 01:50:06 +010015
16struct proc_ns_operations {
17 const char *name;
Kirill Tkhai25b14e92017-05-08 15:56:38 -070018 const char *real_ns_name;
David Howells0bb80f22013-04-12 01:50:06 +010019 int type;
Al Viro64964522014-11-01 00:37:32 -040020 struct ns_common *(*get)(struct task_struct *task);
21 void (*put)(struct ns_common *ns);
22 int (*install)(struct nsproxy *nsproxy, struct ns_common *ns);
Andrey Vaginbcac25a2016-09-06 00:47:13 -070023 struct user_namespace *(*owner)(struct ns_common *ns);
Andrey Vagina7306ed82016-09-06 00:47:15 -070024 struct ns_common *(*get_parent)(struct ns_common *ns);
Kees Cook3859a272016-10-28 01:22:25 -070025} __randomize_layout;
David Howells0bb80f22013-04-12 01:50:06 +010026
David Howells0bb80f22013-04-12 01:50:06 +010027extern 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;
Kirill Tkhaieaa0d192017-05-08 15:56:41 -070031extern const struct proc_ns_operations pidns_for_children_operations;
David Howells0bb80f22013-04-12 01:50:06 +010032extern const struct proc_ns_operations userns_operations;
33extern const struct proc_ns_operations mntns_operations;
Aditya Kalia79a9082016-01-29 02:54:06 -060034extern const struct proc_ns_operations cgroupns_operations;
David Howells0bb80f22013-04-12 01:50:06 +010035
36/*
37 * We always define these enumerators
38 */
39enum {
40 PROC_ROOT_INO = 1,
41 PROC_IPC_INIT_INO = 0xEFFFFFFFU,
42 PROC_UTS_INIT_INO = 0xEFFFFFFEU,
43 PROC_USER_INIT_INO = 0xEFFFFFFDU,
44 PROC_PID_INIT_INO = 0xEFFFFFFCU,
Aditya Kalia79a9082016-01-29 02:54:06 -060045 PROC_CGROUP_INIT_INO = 0xEFFFFFFBU,
David Howells0bb80f22013-04-12 01:50:06 +010046};
47
48#ifdef CONFIG_PROC_FS
49
50extern int pid_ns_prepare_proc(struct pid_namespace *ns);
51extern void pid_ns_release_proc(struct pid_namespace *ns);
David Howells0bb80f22013-04-12 01:50:06 +010052extern int proc_alloc_inum(unsigned int *pino);
53extern void proc_free_inum(unsigned int inum);
David Howells0bb80f22013-04-12 01:50:06 +010054
55#else /* CONFIG_PROC_FS */
56
57static inline int pid_ns_prepare_proc(struct pid_namespace *ns) { return 0; }
58static inline void pid_ns_release_proc(struct pid_namespace *ns) {}
59
David Howells0bb80f22013-04-12 01:50:06 +010060static inline int proc_alloc_inum(unsigned int *inum)
61{
62 *inum = 1;
63 return 0;
64}
65static inline void proc_free_inum(unsigned int inum) {}
David Howells0bb80f22013-04-12 01:50:06 +010066
67#endif /* CONFIG_PROC_FS */
68
Al Viroe149ed22014-11-01 10:57:28 -040069static inline int ns_alloc_inum(struct ns_common *ns)
70{
71 atomic_long_set(&ns->stashed, 0);
72 return proc_alloc_inum(&ns->inum);
73}
74
Al Viro6344c432014-11-01 00:45:45 -040075#define ns_free_inum(ns) proc_free_inum((ns)->inum)
76
Al Viroe149ed22014-11-01 10:57:28 -040077extern struct file *proc_ns_fget(int fd);
78#define get_proc_ns(inode) ((struct ns_common *)(inode)->i_private)
79extern void *ns_get_path(struct path *path, struct task_struct *task,
80 const struct proc_ns_operations *ns_ops);
Jakub Kicinskicdab6ba2017-12-27 18:39:08 -080081typedef struct ns_common *ns_get_path_helper_t(void *);
82extern void *ns_get_path_cb(struct path *path, ns_get_path_helper_t ns_get_cb,
83 void *private_data);
Al Viroe149ed22014-11-01 10:57:28 -040084
85extern int ns_get_name(char *buf, size_t size, struct task_struct *task,
86 const struct proc_ns_operations *ns_ops);
87extern void nsfs_init(void);
88
David Howells0bb80f22013-04-12 01:50:06 +010089#endif /* _LINUX_PROC_NS_H */