• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_USER_NAMESPACE_H
3 #define _LINUX_USER_NAMESPACE_H
4 
5 #include <linux/kref.h>
6 #include <linux/nsproxy.h>
7 #include <linux/ns_common.h>
8 #include <linux/sched.h>
9 #include <linux/workqueue.h>
10 #include <linux/rwsem.h>
11 #include <linux/sysctl.h>
12 #include <linux/err.h>
13 #include <linux/android_kabi.h>
14 
15 #define UID_GID_MAP_MAX_BASE_EXTENTS 5
16 #define UID_GID_MAP_MAX_EXTENTS 340
17 
18 struct uid_gid_extent {
19 	u32 first;
20 	u32 lower_first;
21 	u32 count;
22 };
23 
24 struct uid_gid_map { /* 64 bytes -- 1 cache line */
25 	u32 nr_extents;
26 	union {
27 		struct uid_gid_extent extent[UID_GID_MAP_MAX_BASE_EXTENTS];
28 		struct {
29 			struct uid_gid_extent *forward;
30 			struct uid_gid_extent *reverse;
31 		};
32 	};
33 };
34 
35 #define USERNS_SETGROUPS_ALLOWED 1UL
36 
37 #define USERNS_INIT_FLAGS USERNS_SETGROUPS_ALLOWED
38 
39 struct ucounts;
40 
41 enum ucount_type {
42 	UCOUNT_USER_NAMESPACES,
43 	UCOUNT_PID_NAMESPACES,
44 	UCOUNT_UTS_NAMESPACES,
45 	UCOUNT_IPC_NAMESPACES,
46 	UCOUNT_NET_NAMESPACES,
47 	UCOUNT_MNT_NAMESPACES,
48 	UCOUNT_CGROUP_NAMESPACES,
49 	UCOUNT_TIME_NAMESPACES,
50 #ifdef CONFIG_INOTIFY_USER
51 	UCOUNT_INOTIFY_INSTANCES,
52 	UCOUNT_INOTIFY_WATCHES,
53 #endif
54 	UCOUNT_COUNTS,
55 };
56 
57 struct user_namespace {
58 	struct uid_gid_map	uid_map;
59 	struct uid_gid_map	gid_map;
60 	struct uid_gid_map	projid_map;
61 	atomic_t		count;
62 	struct user_namespace	*parent;
63 	int			level;
64 	kuid_t			owner;
65 	kgid_t			group;
66 	struct ns_common	ns;
67 	unsigned long		flags;
68 	/* parent_could_setfcap: true if the creator if this ns had CAP_SETFCAP
69 	 * in its effective capability set at the child ns creation time. */
70 	bool			parent_could_setfcap;
71 
72 #ifdef CONFIG_KEYS
73 	/* List of joinable keyrings in this namespace.  Modification access of
74 	 * these pointers is controlled by keyring_sem.  Once
75 	 * user_keyring_register is set, it won't be changed, so it can be
76 	 * accessed directly with READ_ONCE().
77 	 */
78 	struct list_head	keyring_name_list;
79 	struct key		*user_keyring_register;
80 	struct rw_semaphore	keyring_sem;
81 #endif
82 
83 	/* Register of per-UID persistent keyrings for this namespace */
84 #ifdef CONFIG_PERSISTENT_KEYRINGS
85 	struct key		*persistent_keyring_register;
86 #endif
87 	struct work_struct	work;
88 #ifdef CONFIG_SYSCTL
89 	struct ctl_table_set	set;
90 	struct ctl_table_header *sysctls;
91 #endif
92 	struct ucounts		*ucounts;
93 	int ucount_max[UCOUNT_COUNTS];
94 
95 	ANDROID_KABI_RESERVE(1);
96 	ANDROID_KABI_RESERVE(2);
97 } __randomize_layout;
98 
99 struct ucounts {
100 	struct hlist_node node;
101 	struct user_namespace *ns;
102 	kuid_t uid;
103 	int count;
104 	atomic_t ucount[UCOUNT_COUNTS];
105 };
106 
107 extern struct user_namespace init_user_ns;
108 
109 bool setup_userns_sysctls(struct user_namespace *ns);
110 void retire_userns_sysctls(struct user_namespace *ns);
111 struct ucounts *inc_ucount(struct user_namespace *ns, kuid_t uid, enum ucount_type type);
112 void dec_ucount(struct ucounts *ucounts, enum ucount_type type);
113 
114 #ifdef CONFIG_USER_NS
115 
get_user_ns(struct user_namespace * ns)116 static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
117 {
118 	if (ns)
119 		atomic_inc(&ns->count);
120 	return ns;
121 }
122 
123 extern int create_user_ns(struct cred *new);
124 extern int unshare_userns(unsigned long unshare_flags, struct cred **new_cred);
125 extern void __put_user_ns(struct user_namespace *ns);
126 
put_user_ns(struct user_namespace * ns)127 static inline void put_user_ns(struct user_namespace *ns)
128 {
129 	if (ns && atomic_dec_and_test(&ns->count))
130 		__put_user_ns(ns);
131 }
132 
133 struct seq_operations;
134 extern const struct seq_operations proc_uid_seq_operations;
135 extern const struct seq_operations proc_gid_seq_operations;
136 extern const struct seq_operations proc_projid_seq_operations;
137 extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
138 extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
139 extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
140 extern ssize_t proc_setgroups_write(struct file *, const char __user *, size_t, loff_t *);
141 extern int proc_setgroups_show(struct seq_file *m, void *v);
142 extern bool userns_may_setgroups(const struct user_namespace *ns);
143 extern bool in_userns(const struct user_namespace *ancestor,
144 		       const struct user_namespace *child);
145 extern bool current_in_userns(const struct user_namespace *target_ns);
146 struct ns_common *ns_get_owner(struct ns_common *ns);
147 #else
148 
get_user_ns(struct user_namespace * ns)149 static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
150 {
151 	return &init_user_ns;
152 }
153 
create_user_ns(struct cred * new)154 static inline int create_user_ns(struct cred *new)
155 {
156 	return -EINVAL;
157 }
158 
unshare_userns(unsigned long unshare_flags,struct cred ** new_cred)159 static inline int unshare_userns(unsigned long unshare_flags,
160 				 struct cred **new_cred)
161 {
162 	if (unshare_flags & CLONE_NEWUSER)
163 		return -EINVAL;
164 	return 0;
165 }
166 
put_user_ns(struct user_namespace * ns)167 static inline void put_user_ns(struct user_namespace *ns)
168 {
169 }
170 
userns_may_setgroups(const struct user_namespace * ns)171 static inline bool userns_may_setgroups(const struct user_namespace *ns)
172 {
173 	return true;
174 }
175 
in_userns(const struct user_namespace * ancestor,const struct user_namespace * child)176 static inline bool in_userns(const struct user_namespace *ancestor,
177 			     const struct user_namespace *child)
178 {
179 	return true;
180 }
181 
current_in_userns(const struct user_namespace * target_ns)182 static inline bool current_in_userns(const struct user_namespace *target_ns)
183 {
184 	return true;
185 }
186 
ns_get_owner(struct ns_common * ns)187 static inline struct ns_common *ns_get_owner(struct ns_common *ns)
188 {
189 	return ERR_PTR(-EPERM);
190 }
191 #endif
192 
193 #endif /* _LINUX_USER_H */
194