blob: 4109f8320684a81af4cd9d0c7262f83812c300f2 [file] [log] [blame]
Cedric Le Goateracce2922007-07-15 23:40:59 -07001/*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License as
4 * published by the Free Software Foundation, version 2 of the
5 * License.
6 */
7
Paul Gortmaker9984de12011-05-23 14:51:41 -04008#include <linux/export.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -07009#include <linux/nsproxy.h>
Robert P. J. Day1aeb2722008-04-29 00:59:25 -070010#include <linux/slab.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070011#include <linux/user_namespace.h>
David Howells0bb80f22013-04-12 01:50:06 +010012#include <linux/proc_ns.h>
Eric W. Biederman5c1469d2010-06-13 03:28:03 +000013#include <linux/highuid.h>
Serge Hallyn18b6e042008-10-15 16:38:45 -050014#include <linux/cred.h>
Eric W. Biederman973c5912011-11-17 01:59:07 -080015#include <linux/securebits.h>
Eric W. Biederman22d917d2011-11-17 00:11:58 -080016#include <linux/keyctl.h>
17#include <linux/key-type.h>
18#include <keys/user-type.h>
19#include <linux/seq_file.h>
20#include <linux/fs.h>
21#include <linux/uaccess.h>
22#include <linux/ctype.h>
Eric W. Biedermanf76d2072012-08-30 01:24:05 -070023#include <linux/projid.h>
Eric W. Biedermane66eded2013-03-13 11:51:49 -070024#include <linux/fs_struct.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070025
Pavel Emelyanov61642812011-01-12 17:00:46 -080026static struct kmem_cache *user_ns_cachep __read_mostly;
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -060027static DEFINE_MUTEX(userns_state_mutex);
Pavel Emelyanov61642812011-01-12 17:00:46 -080028
Eric W. Biederman67080752013-04-14 13:47:02 -070029static bool new_idmap_permitted(const struct file *file,
30 struct user_namespace *ns, int cap_setid,
Eric W. Biederman22d917d2011-11-17 00:11:58 -080031 struct uid_gid_map *map);
32
Eric W. Biedermancde19752012-07-26 06:24:06 -070033static void set_cred_user_ns(struct cred *cred, struct user_namespace *user_ns)
34{
35 /* Start with the same capabilities as init but useless for doing
36 * anything as the capabilities are bound to the new user namespace.
37 */
38 cred->securebits = SECUREBITS_DEFAULT;
39 cred->cap_inheritable = CAP_EMPTY_SET;
40 cred->cap_permitted = CAP_FULL_SET;
41 cred->cap_effective = CAP_FULL_SET;
42 cred->cap_bset = CAP_FULL_SET;
43#ifdef CONFIG_KEYS
44 key_put(cred->request_key_auth);
45 cred->request_key_auth = NULL;
46#endif
47 /* tgcred will be cleared in our caller bc CLONE_THREAD won't be set */
48 cred->user_ns = user_ns;
49}
50
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070051/*
Serge Hallyn18b6e042008-10-15 16:38:45 -050052 * Create a new user namespace, deriving the creator from the user in the
53 * passed credentials, and replacing that user with the new root user for the
54 * new namespace.
55 *
56 * This is called by copy_creds(), which will finish setting the target task's
57 * credentials.
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070058 */
Serge Hallyn18b6e042008-10-15 16:38:45 -050059int create_user_ns(struct cred *new)
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070060{
Eric W. Biederman0093ccb2011-11-16 21:52:53 -080061 struct user_namespace *ns, *parent_ns = new->user_ns;
Eric W. Biederman078de5f2012-02-08 07:00:08 -080062 kuid_t owner = new->euid;
63 kgid_t group = new->egid;
Eric W. Biederman98f842e2011-06-15 10:21:48 -070064 int ret;
Eric W. Biederman783291e2011-11-17 01:32:59 -080065
Oleg Nesterov8742f222013-08-08 18:55:32 +020066 if (parent_ns->level > 32)
67 return -EUSERS;
68
Eric W. Biederman31515272013-03-15 01:45:51 -070069 /*
70 * Verify that we can not violate the policy of which files
71 * may be accessed that is specified by the root directory,
72 * by verifing that the root directory is at the root of the
73 * mount namespace which allows all files to be accessed.
74 */
75 if (current_chrooted())
76 return -EPERM;
77
Eric W. Biederman783291e2011-11-17 01:32:59 -080078 /* The creator needs a mapping in the parent user namespace
79 * or else we won't be able to reasonably tell userspace who
80 * created a user_namespace.
81 */
82 if (!kuid_has_mapping(parent_ns, owner) ||
83 !kgid_has_mapping(parent_ns, group))
84 return -EPERM;
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070085
Eric W. Biederman22d917d2011-11-17 00:11:58 -080086 ns = kmem_cache_zalloc(user_ns_cachep, GFP_KERNEL);
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070087 if (!ns)
Serge Hallyn18b6e042008-10-15 16:38:45 -050088 return -ENOMEM;
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070089
Al Viro6344c432014-11-01 00:45:45 -040090 ret = ns_alloc_inum(&ns->ns);
Eric W. Biederman98f842e2011-06-15 10:21:48 -070091 if (ret) {
92 kmem_cache_free(user_ns_cachep, ns);
93 return ret;
94 }
Al Viro33c42942014-11-01 02:32:53 -040095 ns->ns.ops = &userns_operations;
Eric W. Biederman98f842e2011-06-15 10:21:48 -070096
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080097 atomic_set(&ns->count, 1);
Eric W. Biedermancde19752012-07-26 06:24:06 -070098 /* Leave the new->user_ns reference with the new user namespace. */
Eric W. Biedermanaeb3ae92011-11-16 21:59:43 -080099 ns->parent = parent_ns;
Oleg Nesterov8742f222013-08-08 18:55:32 +0200100 ns->level = parent_ns->level + 1;
Eric W. Biederman783291e2011-11-17 01:32:59 -0800101 ns->owner = owner;
102 ns->group = group;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800103
Eric W. Biederman9cc46512014-12-02 12:27:26 -0600104 /* Inherit USERNS_SETGROUPS_ALLOWED from our parent */
105 mutex_lock(&userns_state_mutex);
106 ns->flags = parent_ns->flags;
107 mutex_unlock(&userns_state_mutex);
108
Eric W. Biedermancde19752012-07-26 06:24:06 -0700109 set_cred_user_ns(new, ns);
Eric W. Biederman0093ccb2011-11-16 21:52:53 -0800110
David Howellsf36f8c72013-09-24 10:35:19 +0100111#ifdef CONFIG_PERSISTENT_KEYRINGS
112 init_rwsem(&ns->persistent_keyring_register_sem);
113#endif
Serge Hallyn18b6e042008-10-15 16:38:45 -0500114 return 0;
Cedric Le Goateracce2922007-07-15 23:40:59 -0700115}
116
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700117int unshare_userns(unsigned long unshare_flags, struct cred **new_cred)
118{
119 struct cred *cred;
Oleg Nesterov61609682013-08-06 19:38:55 +0200120 int err = -ENOMEM;
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700121
122 if (!(unshare_flags & CLONE_NEWUSER))
123 return 0;
124
125 cred = prepare_creds();
Oleg Nesterov61609682013-08-06 19:38:55 +0200126 if (cred) {
127 err = create_user_ns(cred);
128 if (err)
129 put_cred(cred);
130 else
131 *new_cred = cred;
132 }
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700133
Oleg Nesterov61609682013-08-06 19:38:55 +0200134 return err;
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700135}
136
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800137void free_user_ns(struct user_namespace *ns)
David Howells51708362009-02-27 14:03:03 -0800138{
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800139 struct user_namespace *parent;
David Howells51708362009-02-27 14:03:03 -0800140
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800141 do {
142 parent = ns->parent;
David Howellsf36f8c72013-09-24 10:35:19 +0100143#ifdef CONFIG_PERSISTENT_KEYRINGS
144 key_put(ns->persistent_keyring_register);
145#endif
Al Viro6344c432014-11-01 00:45:45 -0400146 ns_free_inum(&ns->ns);
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800147 kmem_cache_free(user_ns_cachep, ns);
148 ns = parent;
149 } while (atomic_dec_and_test(&parent->count));
David Howells51708362009-02-27 14:03:03 -0800150}
Michael Halcrow6a3fd922008-04-29 00:59:52 -0700151EXPORT_SYMBOL(free_user_ns);
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000152
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800153static u32 map_id_range_down(struct uid_gid_map *map, u32 id, u32 count)
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000154{
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800155 unsigned idx, extents;
156 u32 first, last, id2;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000157
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800158 id2 = id + count - 1;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000159
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800160 /* Find the matching extent */
161 extents = map->nr_extents;
Mikulas Patockae79323b2014-04-14 16:58:55 -0400162 smp_rmb();
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800163 for (idx = 0; idx < extents; idx++) {
164 first = map->extent[idx].first;
165 last = first + map->extent[idx].count - 1;
166 if (id >= first && id <= last &&
167 (id2 >= first && id2 <= last))
168 break;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000169 }
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800170 /* Map the id or note failure */
171 if (idx < extents)
172 id = (id - first) + map->extent[idx].lower_first;
173 else
174 id = (u32) -1;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000175
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800176 return id;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000177}
178
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800179static u32 map_id_down(struct uid_gid_map *map, u32 id)
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000180{
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800181 unsigned idx, extents;
182 u32 first, last;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000183
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800184 /* Find the matching extent */
185 extents = map->nr_extents;
Mikulas Patockae79323b2014-04-14 16:58:55 -0400186 smp_rmb();
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800187 for (idx = 0; idx < extents; idx++) {
188 first = map->extent[idx].first;
189 last = first + map->extent[idx].count - 1;
190 if (id >= first && id <= last)
191 break;
192 }
193 /* Map the id or note failure */
194 if (idx < extents)
195 id = (id - first) + map->extent[idx].lower_first;
196 else
197 id = (u32) -1;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000198
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800199 return id;
200}
201
202static u32 map_id_up(struct uid_gid_map *map, u32 id)
203{
204 unsigned idx, extents;
205 u32 first, last;
206
207 /* Find the matching extent */
208 extents = map->nr_extents;
Mikulas Patockae79323b2014-04-14 16:58:55 -0400209 smp_rmb();
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800210 for (idx = 0; idx < extents; idx++) {
211 first = map->extent[idx].lower_first;
212 last = first + map->extent[idx].count - 1;
213 if (id >= first && id <= last)
214 break;
215 }
216 /* Map the id or note failure */
217 if (idx < extents)
218 id = (id - first) + map->extent[idx].first;
219 else
220 id = (u32) -1;
221
222 return id;
223}
224
225/**
226 * make_kuid - Map a user-namespace uid pair into a kuid.
227 * @ns: User namespace that the uid is in
228 * @uid: User identifier
229 *
230 * Maps a user-namespace uid pair into a kernel internal kuid,
231 * and returns that kuid.
232 *
233 * When there is no mapping defined for the user-namespace uid
234 * pair INVALID_UID is returned. Callers are expected to test
Brian Campbellb080e042014-02-16 22:58:12 -0500235 * for and handle INVALID_UID being returned. INVALID_UID
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800236 * may be tested for using uid_valid().
237 */
238kuid_t make_kuid(struct user_namespace *ns, uid_t uid)
239{
240 /* Map the uid to a global kernel uid */
241 return KUIDT_INIT(map_id_down(&ns->uid_map, uid));
242}
243EXPORT_SYMBOL(make_kuid);
244
245/**
246 * from_kuid - Create a uid from a kuid user-namespace pair.
247 * @targ: The user namespace we want a uid in.
248 * @kuid: The kernel internal uid to start with.
249 *
250 * Map @kuid into the user-namespace specified by @targ and
251 * return the resulting uid.
252 *
253 * There is always a mapping into the initial user_namespace.
254 *
255 * If @kuid has no mapping in @targ (uid_t)-1 is returned.
256 */
257uid_t from_kuid(struct user_namespace *targ, kuid_t kuid)
258{
259 /* Map the uid from a global kernel uid */
260 return map_id_up(&targ->uid_map, __kuid_val(kuid));
261}
262EXPORT_SYMBOL(from_kuid);
263
264/**
265 * from_kuid_munged - Create a uid from a kuid user-namespace pair.
266 * @targ: The user namespace we want a uid in.
267 * @kuid: The kernel internal uid to start with.
268 *
269 * Map @kuid into the user-namespace specified by @targ and
270 * return the resulting uid.
271 *
272 * There is always a mapping into the initial user_namespace.
273 *
274 * Unlike from_kuid from_kuid_munged never fails and always
275 * returns a valid uid. This makes from_kuid_munged appropriate
276 * for use in syscalls like stat and getuid where failing the
277 * system call and failing to provide a valid uid are not an
278 * options.
279 *
280 * If @kuid has no mapping in @targ overflowuid is returned.
281 */
282uid_t from_kuid_munged(struct user_namespace *targ, kuid_t kuid)
283{
284 uid_t uid;
285 uid = from_kuid(targ, kuid);
286
287 if (uid == (uid_t) -1)
288 uid = overflowuid;
289 return uid;
290}
291EXPORT_SYMBOL(from_kuid_munged);
292
293/**
294 * make_kgid - Map a user-namespace gid pair into a kgid.
295 * @ns: User namespace that the gid is in
Fabian Frederick68a9a432014-06-06 14:37:21 -0700296 * @gid: group identifier
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800297 *
298 * Maps a user-namespace gid pair into a kernel internal kgid,
299 * and returns that kgid.
300 *
301 * When there is no mapping defined for the user-namespace gid
302 * pair INVALID_GID is returned. Callers are expected to test
303 * for and handle INVALID_GID being returned. INVALID_GID may be
304 * tested for using gid_valid().
305 */
306kgid_t make_kgid(struct user_namespace *ns, gid_t gid)
307{
308 /* Map the gid to a global kernel gid */
309 return KGIDT_INIT(map_id_down(&ns->gid_map, gid));
310}
311EXPORT_SYMBOL(make_kgid);
312
313/**
314 * from_kgid - Create a gid from a kgid user-namespace pair.
315 * @targ: The user namespace we want a gid in.
316 * @kgid: The kernel internal gid to start with.
317 *
318 * Map @kgid into the user-namespace specified by @targ and
319 * return the resulting gid.
320 *
321 * There is always a mapping into the initial user_namespace.
322 *
323 * If @kgid has no mapping in @targ (gid_t)-1 is returned.
324 */
325gid_t from_kgid(struct user_namespace *targ, kgid_t kgid)
326{
327 /* Map the gid from a global kernel gid */
328 return map_id_up(&targ->gid_map, __kgid_val(kgid));
329}
330EXPORT_SYMBOL(from_kgid);
331
332/**
333 * from_kgid_munged - Create a gid from a kgid user-namespace pair.
334 * @targ: The user namespace we want a gid in.
335 * @kgid: The kernel internal gid to start with.
336 *
337 * Map @kgid into the user-namespace specified by @targ and
338 * return the resulting gid.
339 *
340 * There is always a mapping into the initial user_namespace.
341 *
342 * Unlike from_kgid from_kgid_munged never fails and always
343 * returns a valid gid. This makes from_kgid_munged appropriate
344 * for use in syscalls like stat and getgid where failing the
345 * system call and failing to provide a valid gid are not options.
346 *
347 * If @kgid has no mapping in @targ overflowgid is returned.
348 */
349gid_t from_kgid_munged(struct user_namespace *targ, kgid_t kgid)
350{
351 gid_t gid;
352 gid = from_kgid(targ, kgid);
353
354 if (gid == (gid_t) -1)
355 gid = overflowgid;
356 return gid;
357}
358EXPORT_SYMBOL(from_kgid_munged);
359
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700360/**
361 * make_kprojid - Map a user-namespace projid pair into a kprojid.
362 * @ns: User namespace that the projid is in
363 * @projid: Project identifier
364 *
365 * Maps a user-namespace uid pair into a kernel internal kuid,
366 * and returns that kuid.
367 *
368 * When there is no mapping defined for the user-namespace projid
369 * pair INVALID_PROJID is returned. Callers are expected to test
370 * for and handle handle INVALID_PROJID being returned. INVALID_PROJID
371 * may be tested for using projid_valid().
372 */
373kprojid_t make_kprojid(struct user_namespace *ns, projid_t projid)
374{
375 /* Map the uid to a global kernel uid */
376 return KPROJIDT_INIT(map_id_down(&ns->projid_map, projid));
377}
378EXPORT_SYMBOL(make_kprojid);
379
380/**
381 * from_kprojid - Create a projid from a kprojid user-namespace pair.
382 * @targ: The user namespace we want a projid in.
383 * @kprojid: The kernel internal project identifier to start with.
384 *
385 * Map @kprojid into the user-namespace specified by @targ and
386 * return the resulting projid.
387 *
388 * There is always a mapping into the initial user_namespace.
389 *
390 * If @kprojid has no mapping in @targ (projid_t)-1 is returned.
391 */
392projid_t from_kprojid(struct user_namespace *targ, kprojid_t kprojid)
393{
394 /* Map the uid from a global kernel uid */
395 return map_id_up(&targ->projid_map, __kprojid_val(kprojid));
396}
397EXPORT_SYMBOL(from_kprojid);
398
399/**
400 * from_kprojid_munged - Create a projiid from a kprojid user-namespace pair.
401 * @targ: The user namespace we want a projid in.
402 * @kprojid: The kernel internal projid to start with.
403 *
404 * Map @kprojid into the user-namespace specified by @targ and
405 * return the resulting projid.
406 *
407 * There is always a mapping into the initial user_namespace.
408 *
409 * Unlike from_kprojid from_kprojid_munged never fails and always
410 * returns a valid projid. This makes from_kprojid_munged
411 * appropriate for use in syscalls like stat and where
412 * failing the system call and failing to provide a valid projid are
413 * not an options.
414 *
415 * If @kprojid has no mapping in @targ OVERFLOW_PROJID is returned.
416 */
417projid_t from_kprojid_munged(struct user_namespace *targ, kprojid_t kprojid)
418{
419 projid_t projid;
420 projid = from_kprojid(targ, kprojid);
421
422 if (projid == (projid_t) -1)
423 projid = OVERFLOW_PROJID;
424 return projid;
425}
426EXPORT_SYMBOL(from_kprojid_munged);
427
428
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800429static int uid_m_show(struct seq_file *seq, void *v)
430{
431 struct user_namespace *ns = seq->private;
432 struct uid_gid_extent *extent = v;
433 struct user_namespace *lower_ns;
434 uid_t lower;
435
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700436 lower_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800437 if ((lower_ns == ns) && lower_ns->parent)
438 lower_ns = lower_ns->parent;
439
440 lower = from_kuid(lower_ns, KUIDT_INIT(extent->lower_first));
441
442 seq_printf(seq, "%10u %10u %10u\n",
443 extent->first,
444 lower,
445 extent->count);
446
447 return 0;
448}
449
450static int gid_m_show(struct seq_file *seq, void *v)
451{
452 struct user_namespace *ns = seq->private;
453 struct uid_gid_extent *extent = v;
454 struct user_namespace *lower_ns;
455 gid_t lower;
456
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700457 lower_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800458 if ((lower_ns == ns) && lower_ns->parent)
459 lower_ns = lower_ns->parent;
460
461 lower = from_kgid(lower_ns, KGIDT_INIT(extent->lower_first));
462
463 seq_printf(seq, "%10u %10u %10u\n",
464 extent->first,
465 lower,
466 extent->count);
467
468 return 0;
469}
470
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700471static int projid_m_show(struct seq_file *seq, void *v)
472{
473 struct user_namespace *ns = seq->private;
474 struct uid_gid_extent *extent = v;
475 struct user_namespace *lower_ns;
476 projid_t lower;
477
478 lower_ns = seq_user_ns(seq);
479 if ((lower_ns == ns) && lower_ns->parent)
480 lower_ns = lower_ns->parent;
481
482 lower = from_kprojid(lower_ns, KPROJIDT_INIT(extent->lower_first));
483
484 seq_printf(seq, "%10u %10u %10u\n",
485 extent->first,
486 lower,
487 extent->count);
488
489 return 0;
490}
491
Fabian Frederick68a9a432014-06-06 14:37:21 -0700492static void *m_start(struct seq_file *seq, loff_t *ppos,
493 struct uid_gid_map *map)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800494{
495 struct uid_gid_extent *extent = NULL;
496 loff_t pos = *ppos;
497
498 if (pos < map->nr_extents)
499 extent = &map->extent[pos];
500
501 return extent;
502}
503
504static void *uid_m_start(struct seq_file *seq, loff_t *ppos)
505{
506 struct user_namespace *ns = seq->private;
507
508 return m_start(seq, ppos, &ns->uid_map);
509}
510
511static void *gid_m_start(struct seq_file *seq, loff_t *ppos)
512{
513 struct user_namespace *ns = seq->private;
514
515 return m_start(seq, ppos, &ns->gid_map);
516}
517
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700518static void *projid_m_start(struct seq_file *seq, loff_t *ppos)
519{
520 struct user_namespace *ns = seq->private;
521
522 return m_start(seq, ppos, &ns->projid_map);
523}
524
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800525static void *m_next(struct seq_file *seq, void *v, loff_t *pos)
526{
527 (*pos)++;
528 return seq->op->start(seq, pos);
529}
530
531static void m_stop(struct seq_file *seq, void *v)
532{
533 return;
534}
535
Fabian Frederickccf94f12014-08-08 14:21:22 -0700536const struct seq_operations proc_uid_seq_operations = {
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800537 .start = uid_m_start,
538 .stop = m_stop,
539 .next = m_next,
540 .show = uid_m_show,
541};
542
Fabian Frederickccf94f12014-08-08 14:21:22 -0700543const struct seq_operations proc_gid_seq_operations = {
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800544 .start = gid_m_start,
545 .stop = m_stop,
546 .next = m_next,
547 .show = gid_m_show,
548};
549
Fabian Frederickccf94f12014-08-08 14:21:22 -0700550const struct seq_operations proc_projid_seq_operations = {
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700551 .start = projid_m_start,
552 .stop = m_stop,
553 .next = m_next,
554 .show = projid_m_show,
555};
556
Fabian Frederick68a9a432014-06-06 14:37:21 -0700557static bool mappings_overlap(struct uid_gid_map *new_map,
558 struct uid_gid_extent *extent)
Eric W. Biederman0bd14b42012-12-27 22:27:29 -0800559{
560 u32 upper_first, lower_first, upper_last, lower_last;
561 unsigned idx;
562
563 upper_first = extent->first;
564 lower_first = extent->lower_first;
565 upper_last = upper_first + extent->count - 1;
566 lower_last = lower_first + extent->count - 1;
567
568 for (idx = 0; idx < new_map->nr_extents; idx++) {
569 u32 prev_upper_first, prev_lower_first;
570 u32 prev_upper_last, prev_lower_last;
571 struct uid_gid_extent *prev;
572
573 prev = &new_map->extent[idx];
574
575 prev_upper_first = prev->first;
576 prev_lower_first = prev->lower_first;
577 prev_upper_last = prev_upper_first + prev->count - 1;
578 prev_lower_last = prev_lower_first + prev->count - 1;
579
580 /* Does the upper range intersect a previous extent? */
581 if ((prev_upper_first <= upper_last) &&
582 (prev_upper_last >= upper_first))
583 return true;
584
585 /* Does the lower range intersect a previous extent? */
586 if ((prev_lower_first <= lower_last) &&
587 (prev_lower_last >= lower_first))
588 return true;
589 }
590 return false;
591}
592
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800593static ssize_t map_write(struct file *file, const char __user *buf,
594 size_t count, loff_t *ppos,
595 int cap_setid,
596 struct uid_gid_map *map,
597 struct uid_gid_map *parent_map)
598{
599 struct seq_file *seq = file->private_data;
600 struct user_namespace *ns = seq->private;
601 struct uid_gid_map new_map;
602 unsigned idx;
Eric W. Biederman0bd14b42012-12-27 22:27:29 -0800603 struct uid_gid_extent *extent = NULL;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800604 unsigned long page = 0;
605 char *kbuf, *pos, *next_line;
606 ssize_t ret = -EINVAL;
607
608 /*
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600609 * The userns_state_mutex serializes all writes to any given map.
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800610 *
611 * Any map is only ever written once.
612 *
613 * An id map fits within 1 cache line on most architectures.
614 *
615 * On read nothing needs to be done unless you are on an
616 * architecture with a crazy cache coherency model like alpha.
617 *
618 * There is a one time data dependency between reading the
619 * count of the extents and the values of the extents. The
620 * desired behavior is to see the values of the extents that
621 * were written before the count of the extents.
622 *
623 * To achieve this smp_wmb() is used on guarantee the write
Mikulas Patockae79323b2014-04-14 16:58:55 -0400624 * order and smp_rmb() is guaranteed that we don't have crazy
625 * architectures returning stale data.
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000626 */
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600627 mutex_lock(&userns_state_mutex);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800628
629 ret = -EPERM;
630 /* Only allow one successful write to the map */
631 if (map->nr_extents != 0)
632 goto out;
633
Andy Lutomirski41c21e32013-04-14 11:44:04 -0700634 /*
635 * Adjusting namespace settings requires capabilities on the target.
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800636 */
Andy Lutomirski41c21e32013-04-14 11:44:04 -0700637 if (cap_valid(cap_setid) && !file_ns_capable(file, ns, CAP_SYS_ADMIN))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800638 goto out;
639
640 /* Get a buffer */
641 ret = -ENOMEM;
642 page = __get_free_page(GFP_TEMPORARY);
643 kbuf = (char *) page;
644 if (!page)
645 goto out;
646
Eric W. Biederman36476be2014-12-05 20:03:28 -0600647 /* Only allow < page size writes at the beginning of the file */
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800648 ret = -EINVAL;
649 if ((*ppos != 0) || (count >= PAGE_SIZE))
650 goto out;
651
652 /* Slurp in the user data */
653 ret = -EFAULT;
654 if (copy_from_user(kbuf, buf, count))
655 goto out;
656 kbuf[count] = '\0';
657
658 /* Parse the user data */
659 ret = -EINVAL;
660 pos = kbuf;
661 new_map.nr_extents = 0;
Fabian Frederick68a9a432014-06-06 14:37:21 -0700662 for (; pos; pos = next_line) {
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800663 extent = &new_map.extent[new_map.nr_extents];
664
665 /* Find the end of line and ensure I don't look past it */
666 next_line = strchr(pos, '\n');
667 if (next_line) {
668 *next_line = '\0';
669 next_line++;
670 if (*next_line == '\0')
671 next_line = NULL;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000672 }
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800673
674 pos = skip_spaces(pos);
675 extent->first = simple_strtoul(pos, &pos, 10);
676 if (!isspace(*pos))
677 goto out;
678
679 pos = skip_spaces(pos);
680 extent->lower_first = simple_strtoul(pos, &pos, 10);
681 if (!isspace(*pos))
682 goto out;
683
684 pos = skip_spaces(pos);
685 extent->count = simple_strtoul(pos, &pos, 10);
686 if (*pos && !isspace(*pos))
687 goto out;
688
689 /* Verify there is not trailing junk on the line */
690 pos = skip_spaces(pos);
691 if (*pos != '\0')
692 goto out;
693
694 /* Verify we have been given valid starting values */
695 if ((extent->first == (u32) -1) ||
Fabian Frederick68a9a432014-06-06 14:37:21 -0700696 (extent->lower_first == (u32) -1))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800697 goto out;
698
Fabian Frederick68a9a432014-06-06 14:37:21 -0700699 /* Verify count is not zero and does not cause the
700 * extent to wrap
701 */
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800702 if ((extent->first + extent->count) <= extent->first)
703 goto out;
Fabian Frederick68a9a432014-06-06 14:37:21 -0700704 if ((extent->lower_first + extent->count) <=
705 extent->lower_first)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800706 goto out;
707
Eric W. Biederman0bd14b42012-12-27 22:27:29 -0800708 /* Do the ranges in extent overlap any previous extents? */
709 if (mappings_overlap(&new_map, extent))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800710 goto out;
711
712 new_map.nr_extents++;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800713
714 /* Fail if the file contains too many extents */
715 if ((new_map.nr_extents == UID_GID_MAP_MAX_EXTENTS) &&
716 (next_line != NULL))
717 goto out;
718 }
719 /* Be very certaint the new map actually exists */
720 if (new_map.nr_extents == 0)
721 goto out;
722
723 ret = -EPERM;
724 /* Validate the user is allowed to use user id's mapped to. */
Eric W. Biederman67080752013-04-14 13:47:02 -0700725 if (!new_idmap_permitted(file, ns, cap_setid, &new_map))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800726 goto out;
727
728 /* Map the lower ids from the parent user namespace to the
729 * kernel global id space.
730 */
731 for (idx = 0; idx < new_map.nr_extents; idx++) {
732 u32 lower_first;
733 extent = &new_map.extent[idx];
734
735 lower_first = map_id_range_down(parent_map,
736 extent->lower_first,
737 extent->count);
738
739 /* Fail if we can not map the specified extent to
740 * the kernel global id space.
741 */
742 if (lower_first == (u32) -1)
743 goto out;
744
745 extent->lower_first = lower_first;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000746 }
747
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800748 /* Install the map */
749 memcpy(map->extent, new_map.extent,
750 new_map.nr_extents*sizeof(new_map.extent[0]));
751 smp_wmb();
752 map->nr_extents = new_map.nr_extents;
753
754 *ppos = count;
755 ret = count;
756out:
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600757 mutex_unlock(&userns_state_mutex);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800758 if (page)
759 free_page(page);
760 return ret;
761}
762
Fabian Frederick68a9a432014-06-06 14:37:21 -0700763ssize_t proc_uid_map_write(struct file *file, const char __user *buf,
764 size_t size, loff_t *ppos)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800765{
766 struct seq_file *seq = file->private_data;
767 struct user_namespace *ns = seq->private;
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700768 struct user_namespace *seq_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800769
770 if (!ns->parent)
771 return -EPERM;
772
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700773 if ((seq_ns != ns) && (seq_ns != ns->parent))
774 return -EPERM;
775
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800776 return map_write(file, buf, size, ppos, CAP_SETUID,
777 &ns->uid_map, &ns->parent->uid_map);
778}
779
Fabian Frederick68a9a432014-06-06 14:37:21 -0700780ssize_t proc_gid_map_write(struct file *file, const char __user *buf,
781 size_t size, loff_t *ppos)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800782{
783 struct seq_file *seq = file->private_data;
784 struct user_namespace *ns = seq->private;
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700785 struct user_namespace *seq_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800786
787 if (!ns->parent)
788 return -EPERM;
789
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700790 if ((seq_ns != ns) && (seq_ns != ns->parent))
791 return -EPERM;
792
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800793 return map_write(file, buf, size, ppos, CAP_SETGID,
794 &ns->gid_map, &ns->parent->gid_map);
795}
796
Fabian Frederick68a9a432014-06-06 14:37:21 -0700797ssize_t proc_projid_map_write(struct file *file, const char __user *buf,
798 size_t size, loff_t *ppos)
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700799{
800 struct seq_file *seq = file->private_data;
801 struct user_namespace *ns = seq->private;
802 struct user_namespace *seq_ns = seq_user_ns(seq);
803
804 if (!ns->parent)
805 return -EPERM;
806
807 if ((seq_ns != ns) && (seq_ns != ns->parent))
808 return -EPERM;
809
810 /* Anyone can set any valid project id no capability needed */
811 return map_write(file, buf, size, ppos, -1,
812 &ns->projid_map, &ns->parent->projid_map);
813}
814
Fabian Frederick68a9a432014-06-06 14:37:21 -0700815static bool new_idmap_permitted(const struct file *file,
Eric W. Biederman67080752013-04-14 13:47:02 -0700816 struct user_namespace *ns, int cap_setid,
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800817 struct uid_gid_map *new_map)
818{
Eric W. Biedermanf95d7912014-11-26 23:22:14 -0600819 const struct cred *cred = file->f_cred;
Eric W. Biederman0542f172014-12-05 17:51:47 -0600820 /* Don't allow mappings that would allow anything that wouldn't
821 * be allowed without the establishment of unprivileged mappings.
822 */
Eric W. Biedermanf95d7912014-11-26 23:22:14 -0600823 if ((new_map->nr_extents == 1) && (new_map->extent[0].count == 1) &&
824 uid_eq(ns->owner, cred->euid)) {
Eric W. Biederman37657da2012-07-27 06:21:27 -0700825 u32 id = new_map->extent[0].lower_first;
826 if (cap_setid == CAP_SETUID) {
827 kuid_t uid = make_kuid(ns->parent, id);
Eric W. Biedermanf95d7912014-11-26 23:22:14 -0600828 if (uid_eq(uid, cred->euid))
Eric W. Biederman37657da2012-07-27 06:21:27 -0700829 return true;
Fabian Frederick68a9a432014-06-06 14:37:21 -0700830 } else if (cap_setid == CAP_SETGID) {
Eric W. Biederman37657da2012-07-27 06:21:27 -0700831 kgid_t gid = make_kgid(ns->parent, id);
Eric W. Biederman66d2f332014-12-05 19:36:04 -0600832 if (!(ns->flags & USERNS_SETGROUPS_ALLOWED) &&
833 gid_eq(gid, cred->egid))
Eric W. Biederman37657da2012-07-27 06:21:27 -0700834 return true;
835 }
836 }
837
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700838 /* Allow anyone to set a mapping that doesn't require privilege */
839 if (!cap_valid(cap_setid))
840 return true;
841
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800842 /* Allow the specified ids if we have the appropriate capability
843 * (CAP_SETUID or CAP_SETGID) over the parent user namespace.
Eric W. Biederman67080752013-04-14 13:47:02 -0700844 * And the opener of the id file also had the approprpiate capability.
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800845 */
Eric W. Biederman67080752013-04-14 13:47:02 -0700846 if (ns_capable(ns->parent, cap_setid) &&
847 file_ns_capable(file, ns->parent, cap_setid))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800848 return true;
849
850 return false;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000851}
Pavel Emelyanov61642812011-01-12 17:00:46 -0800852
Eric W. Biederman9cc46512014-12-02 12:27:26 -0600853int proc_setgroups_show(struct seq_file *seq, void *v)
854{
855 struct user_namespace *ns = seq->private;
856 unsigned long userns_flags = ACCESS_ONCE(ns->flags);
857
858 seq_printf(seq, "%s\n",
859 (userns_flags & USERNS_SETGROUPS_ALLOWED) ?
860 "allow" : "deny");
861 return 0;
862}
863
864ssize_t proc_setgroups_write(struct file *file, const char __user *buf,
865 size_t count, loff_t *ppos)
866{
867 struct seq_file *seq = file->private_data;
868 struct user_namespace *ns = seq->private;
869 char kbuf[8], *pos;
870 bool setgroups_allowed;
871 ssize_t ret;
872
873 /* Only allow a very narrow range of strings to be written */
874 ret = -EINVAL;
875 if ((*ppos != 0) || (count >= sizeof(kbuf)))
876 goto out;
877
878 /* What was written? */
879 ret = -EFAULT;
880 if (copy_from_user(kbuf, buf, count))
881 goto out;
882 kbuf[count] = '\0';
883 pos = kbuf;
884
885 /* What is being requested? */
886 ret = -EINVAL;
887 if (strncmp(pos, "allow", 5) == 0) {
888 pos += 5;
889 setgroups_allowed = true;
890 }
891 else if (strncmp(pos, "deny", 4) == 0) {
892 pos += 4;
893 setgroups_allowed = false;
894 }
895 else
896 goto out;
897
898 /* Verify there is not trailing junk on the line */
899 pos = skip_spaces(pos);
900 if (*pos != '\0')
901 goto out;
902
903 ret = -EPERM;
904 mutex_lock(&userns_state_mutex);
905 if (setgroups_allowed) {
906 /* Enabling setgroups after setgroups has been disabled
907 * is not allowed.
908 */
909 if (!(ns->flags & USERNS_SETGROUPS_ALLOWED))
910 goto out_unlock;
911 } else {
912 /* Permanently disabling setgroups after setgroups has
913 * been enabled by writing the gid_map is not allowed.
914 */
915 if (ns->gid_map.nr_extents != 0)
916 goto out_unlock;
917 ns->flags &= ~USERNS_SETGROUPS_ALLOWED;
918 }
919 mutex_unlock(&userns_state_mutex);
920
921 /* Report a successful write */
922 *ppos = count;
923 ret = count;
924out:
925 return ret;
926out_unlock:
927 mutex_unlock(&userns_state_mutex);
928 goto out;
929}
930
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600931bool userns_may_setgroups(const struct user_namespace *ns)
932{
933 bool allowed;
934
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600935 mutex_lock(&userns_state_mutex);
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600936 /* It is not safe to use setgroups until a gid mapping in
937 * the user namespace has been established.
938 */
939 allowed = ns->gid_map.nr_extents != 0;
Eric W. Biederman9cc46512014-12-02 12:27:26 -0600940 /* Is setgroups allowed? */
941 allowed = allowed && (ns->flags & USERNS_SETGROUPS_ALLOWED);
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600942 mutex_unlock(&userns_state_mutex);
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600943
944 return allowed;
945}
946
Al Viro3c041182014-11-01 00:25:30 -0400947static inline struct user_namespace *to_user_ns(struct ns_common *ns)
948{
949 return container_of(ns, struct user_namespace, ns);
950}
951
Al Viro64964522014-11-01 00:37:32 -0400952static struct ns_common *userns_get(struct task_struct *task)
Eric W. Biedermancde19752012-07-26 06:24:06 -0700953{
954 struct user_namespace *user_ns;
955
956 rcu_read_lock();
957 user_ns = get_user_ns(__task_cred(task)->user_ns);
958 rcu_read_unlock();
959
Al Viro3c041182014-11-01 00:25:30 -0400960 return user_ns ? &user_ns->ns : NULL;
Eric W. Biedermancde19752012-07-26 06:24:06 -0700961}
962
Al Viro64964522014-11-01 00:37:32 -0400963static void userns_put(struct ns_common *ns)
Eric W. Biedermancde19752012-07-26 06:24:06 -0700964{
Al Viro3c041182014-11-01 00:25:30 -0400965 put_user_ns(to_user_ns(ns));
Eric W. Biedermancde19752012-07-26 06:24:06 -0700966}
967
Al Viro64964522014-11-01 00:37:32 -0400968static int userns_install(struct nsproxy *nsproxy, struct ns_common *ns)
Eric W. Biedermancde19752012-07-26 06:24:06 -0700969{
Al Viro3c041182014-11-01 00:25:30 -0400970 struct user_namespace *user_ns = to_user_ns(ns);
Eric W. Biedermancde19752012-07-26 06:24:06 -0700971 struct cred *cred;
972
973 /* Don't allow gaining capabilities by reentering
974 * the same user namespace.
975 */
976 if (user_ns == current_user_ns())
977 return -EINVAL;
978
Eric W. Biederman51550402012-12-09 17:19:52 -0800979 /* Threaded processes may not enter a different user namespace */
Eric W. Biedermancde19752012-07-26 06:24:06 -0700980 if (atomic_read(&current->mm->mm_users) > 1)
981 return -EINVAL;
982
Eric W. Biedermane66eded2013-03-13 11:51:49 -0700983 if (current->fs->users != 1)
984 return -EINVAL;
985
Eric W. Biedermancde19752012-07-26 06:24:06 -0700986 if (!ns_capable(user_ns, CAP_SYS_ADMIN))
987 return -EPERM;
988
989 cred = prepare_creds();
990 if (!cred)
991 return -ENOMEM;
992
993 put_user_ns(cred->user_ns);
994 set_cred_user_ns(cred, get_user_ns(user_ns));
995
996 return commit_creds(cred);
997}
998
999const struct proc_ns_operations userns_operations = {
1000 .name = "user",
1001 .type = CLONE_NEWUSER,
1002 .get = userns_get,
1003 .put = userns_put,
1004 .install = userns_install,
1005};
1006
Pavel Emelyanov61642812011-01-12 17:00:46 -08001007static __init int user_namespaces_init(void)
1008{
1009 user_ns_cachep = KMEM_CACHE(user_namespace, SLAB_PANIC);
1010 return 0;
1011}
Paul Gortmakerc96d6662014-04-03 14:48:35 -07001012subsys_initcall(user_namespaces_init);