blob: 44a555ac6104860f0603be2d3927a781cd68bc3b [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
Eric W. Biederman98f842e2011-06-15 10:21:48 -070090 ret = proc_alloc_inum(&ns->proc_inum);
91 if (ret) {
92 kmem_cache_free(user_ns_cachep, ns);
93 return ret;
94 }
95
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080096 atomic_set(&ns->count, 1);
Eric W. Biedermancde19752012-07-26 06:24:06 -070097 /* Leave the new->user_ns reference with the new user namespace. */
Eric W. Biedermanaeb3ae92011-11-16 21:59:43 -080098 ns->parent = parent_ns;
Oleg Nesterov8742f222013-08-08 18:55:32 +020099 ns->level = parent_ns->level + 1;
Eric W. Biederman783291e2011-11-17 01:32:59 -0800100 ns->owner = owner;
101 ns->group = group;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800102
Eric W. Biedermancde19752012-07-26 06:24:06 -0700103 set_cred_user_ns(new, ns);
Eric W. Biederman0093ccb2011-11-16 21:52:53 -0800104
David Howellsf36f8c72013-09-24 10:35:19 +0100105#ifdef CONFIG_PERSISTENT_KEYRINGS
106 init_rwsem(&ns->persistent_keyring_register_sem);
107#endif
Serge Hallyn18b6e042008-10-15 16:38:45 -0500108 return 0;
Cedric Le Goateracce2922007-07-15 23:40:59 -0700109}
110
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700111int unshare_userns(unsigned long unshare_flags, struct cred **new_cred)
112{
113 struct cred *cred;
Oleg Nesterov61609682013-08-06 19:38:55 +0200114 int err = -ENOMEM;
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700115
116 if (!(unshare_flags & CLONE_NEWUSER))
117 return 0;
118
119 cred = prepare_creds();
Oleg Nesterov61609682013-08-06 19:38:55 +0200120 if (cred) {
121 err = create_user_ns(cred);
122 if (err)
123 put_cred(cred);
124 else
125 *new_cred = cred;
126 }
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700127
Oleg Nesterov61609682013-08-06 19:38:55 +0200128 return err;
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700129}
130
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800131void free_user_ns(struct user_namespace *ns)
David Howells51708362009-02-27 14:03:03 -0800132{
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800133 struct user_namespace *parent;
David Howells51708362009-02-27 14:03:03 -0800134
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800135 do {
136 parent = ns->parent;
David Howellsf36f8c72013-09-24 10:35:19 +0100137#ifdef CONFIG_PERSISTENT_KEYRINGS
138 key_put(ns->persistent_keyring_register);
139#endif
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800140 proc_free_inum(ns->proc_inum);
141 kmem_cache_free(user_ns_cachep, ns);
142 ns = parent;
143 } while (atomic_dec_and_test(&parent->count));
David Howells51708362009-02-27 14:03:03 -0800144}
Michael Halcrow6a3fd922008-04-29 00:59:52 -0700145EXPORT_SYMBOL(free_user_ns);
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000146
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800147static u32 map_id_range_down(struct uid_gid_map *map, u32 id, u32 count)
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000148{
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800149 unsigned idx, extents;
150 u32 first, last, id2;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000151
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800152 id2 = id + count - 1;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000153
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800154 /* Find the matching extent */
155 extents = map->nr_extents;
Mikulas Patockae79323b2014-04-14 16:58:55 -0400156 smp_rmb();
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800157 for (idx = 0; idx < extents; idx++) {
158 first = map->extent[idx].first;
159 last = first + map->extent[idx].count - 1;
160 if (id >= first && id <= last &&
161 (id2 >= first && id2 <= last))
162 break;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000163 }
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800164 /* Map the id or note failure */
165 if (idx < extents)
166 id = (id - first) + map->extent[idx].lower_first;
167 else
168 id = (u32) -1;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000169
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800170 return id;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000171}
172
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800173static u32 map_id_down(struct uid_gid_map *map, u32 id)
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000174{
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800175 unsigned idx, extents;
176 u32 first, last;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000177
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800178 /* Find the matching extent */
179 extents = map->nr_extents;
Mikulas Patockae79323b2014-04-14 16:58:55 -0400180 smp_rmb();
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800181 for (idx = 0; idx < extents; idx++) {
182 first = map->extent[idx].first;
183 last = first + map->extent[idx].count - 1;
184 if (id >= first && id <= last)
185 break;
186 }
187 /* Map the id or note failure */
188 if (idx < extents)
189 id = (id - first) + map->extent[idx].lower_first;
190 else
191 id = (u32) -1;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000192
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800193 return id;
194}
195
196static u32 map_id_up(struct uid_gid_map *map, u32 id)
197{
198 unsigned idx, extents;
199 u32 first, last;
200
201 /* Find the matching extent */
202 extents = map->nr_extents;
Mikulas Patockae79323b2014-04-14 16:58:55 -0400203 smp_rmb();
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800204 for (idx = 0; idx < extents; idx++) {
205 first = map->extent[idx].lower_first;
206 last = first + map->extent[idx].count - 1;
207 if (id >= first && id <= last)
208 break;
209 }
210 /* Map the id or note failure */
211 if (idx < extents)
212 id = (id - first) + map->extent[idx].first;
213 else
214 id = (u32) -1;
215
216 return id;
217}
218
219/**
220 * make_kuid - Map a user-namespace uid pair into a kuid.
221 * @ns: User namespace that the uid is in
222 * @uid: User identifier
223 *
224 * Maps a user-namespace uid pair into a kernel internal kuid,
225 * and returns that kuid.
226 *
227 * When there is no mapping defined for the user-namespace uid
228 * pair INVALID_UID is returned. Callers are expected to test
Brian Campbellb080e042014-02-16 22:58:12 -0500229 * for and handle INVALID_UID being returned. INVALID_UID
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800230 * may be tested for using uid_valid().
231 */
232kuid_t make_kuid(struct user_namespace *ns, uid_t uid)
233{
234 /* Map the uid to a global kernel uid */
235 return KUIDT_INIT(map_id_down(&ns->uid_map, uid));
236}
237EXPORT_SYMBOL(make_kuid);
238
239/**
240 * from_kuid - Create a uid from a kuid user-namespace pair.
241 * @targ: The user namespace we want a uid in.
242 * @kuid: The kernel internal uid to start with.
243 *
244 * Map @kuid into the user-namespace specified by @targ and
245 * return the resulting uid.
246 *
247 * There is always a mapping into the initial user_namespace.
248 *
249 * If @kuid has no mapping in @targ (uid_t)-1 is returned.
250 */
251uid_t from_kuid(struct user_namespace *targ, kuid_t kuid)
252{
253 /* Map the uid from a global kernel uid */
254 return map_id_up(&targ->uid_map, __kuid_val(kuid));
255}
256EXPORT_SYMBOL(from_kuid);
257
258/**
259 * from_kuid_munged - Create a uid from a kuid user-namespace pair.
260 * @targ: The user namespace we want a uid in.
261 * @kuid: The kernel internal uid to start with.
262 *
263 * Map @kuid into the user-namespace specified by @targ and
264 * return the resulting uid.
265 *
266 * There is always a mapping into the initial user_namespace.
267 *
268 * Unlike from_kuid from_kuid_munged never fails and always
269 * returns a valid uid. This makes from_kuid_munged appropriate
270 * for use in syscalls like stat and getuid where failing the
271 * system call and failing to provide a valid uid are not an
272 * options.
273 *
274 * If @kuid has no mapping in @targ overflowuid is returned.
275 */
276uid_t from_kuid_munged(struct user_namespace *targ, kuid_t kuid)
277{
278 uid_t uid;
279 uid = from_kuid(targ, kuid);
280
281 if (uid == (uid_t) -1)
282 uid = overflowuid;
283 return uid;
284}
285EXPORT_SYMBOL(from_kuid_munged);
286
287/**
288 * make_kgid - Map a user-namespace gid pair into a kgid.
289 * @ns: User namespace that the gid is in
Fabian Frederick68a9a432014-06-06 14:37:21 -0700290 * @gid: group identifier
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800291 *
292 * Maps a user-namespace gid pair into a kernel internal kgid,
293 * and returns that kgid.
294 *
295 * When there is no mapping defined for the user-namespace gid
296 * pair INVALID_GID is returned. Callers are expected to test
297 * for and handle INVALID_GID being returned. INVALID_GID may be
298 * tested for using gid_valid().
299 */
300kgid_t make_kgid(struct user_namespace *ns, gid_t gid)
301{
302 /* Map the gid to a global kernel gid */
303 return KGIDT_INIT(map_id_down(&ns->gid_map, gid));
304}
305EXPORT_SYMBOL(make_kgid);
306
307/**
308 * from_kgid - Create a gid from a kgid user-namespace pair.
309 * @targ: The user namespace we want a gid in.
310 * @kgid: The kernel internal gid to start with.
311 *
312 * Map @kgid into the user-namespace specified by @targ and
313 * return the resulting gid.
314 *
315 * There is always a mapping into the initial user_namespace.
316 *
317 * If @kgid has no mapping in @targ (gid_t)-1 is returned.
318 */
319gid_t from_kgid(struct user_namespace *targ, kgid_t kgid)
320{
321 /* Map the gid from a global kernel gid */
322 return map_id_up(&targ->gid_map, __kgid_val(kgid));
323}
324EXPORT_SYMBOL(from_kgid);
325
326/**
327 * from_kgid_munged - Create a gid from a kgid user-namespace pair.
328 * @targ: The user namespace we want a gid in.
329 * @kgid: The kernel internal gid to start with.
330 *
331 * Map @kgid into the user-namespace specified by @targ and
332 * return the resulting gid.
333 *
334 * There is always a mapping into the initial user_namespace.
335 *
336 * Unlike from_kgid from_kgid_munged never fails and always
337 * returns a valid gid. This makes from_kgid_munged appropriate
338 * for use in syscalls like stat and getgid where failing the
339 * system call and failing to provide a valid gid are not options.
340 *
341 * If @kgid has no mapping in @targ overflowgid is returned.
342 */
343gid_t from_kgid_munged(struct user_namespace *targ, kgid_t kgid)
344{
345 gid_t gid;
346 gid = from_kgid(targ, kgid);
347
348 if (gid == (gid_t) -1)
349 gid = overflowgid;
350 return gid;
351}
352EXPORT_SYMBOL(from_kgid_munged);
353
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700354/**
355 * make_kprojid - Map a user-namespace projid pair into a kprojid.
356 * @ns: User namespace that the projid is in
357 * @projid: Project identifier
358 *
359 * Maps a user-namespace uid pair into a kernel internal kuid,
360 * and returns that kuid.
361 *
362 * When there is no mapping defined for the user-namespace projid
363 * pair INVALID_PROJID is returned. Callers are expected to test
364 * for and handle handle INVALID_PROJID being returned. INVALID_PROJID
365 * may be tested for using projid_valid().
366 */
367kprojid_t make_kprojid(struct user_namespace *ns, projid_t projid)
368{
369 /* Map the uid to a global kernel uid */
370 return KPROJIDT_INIT(map_id_down(&ns->projid_map, projid));
371}
372EXPORT_SYMBOL(make_kprojid);
373
374/**
375 * from_kprojid - Create a projid from a kprojid user-namespace pair.
376 * @targ: The user namespace we want a projid in.
377 * @kprojid: The kernel internal project identifier to start with.
378 *
379 * Map @kprojid into the user-namespace specified by @targ and
380 * return the resulting projid.
381 *
382 * There is always a mapping into the initial user_namespace.
383 *
384 * If @kprojid has no mapping in @targ (projid_t)-1 is returned.
385 */
386projid_t from_kprojid(struct user_namespace *targ, kprojid_t kprojid)
387{
388 /* Map the uid from a global kernel uid */
389 return map_id_up(&targ->projid_map, __kprojid_val(kprojid));
390}
391EXPORT_SYMBOL(from_kprojid);
392
393/**
394 * from_kprojid_munged - Create a projiid from a kprojid user-namespace pair.
395 * @targ: The user namespace we want a projid in.
396 * @kprojid: The kernel internal projid to start with.
397 *
398 * Map @kprojid into the user-namespace specified by @targ and
399 * return the resulting projid.
400 *
401 * There is always a mapping into the initial user_namespace.
402 *
403 * Unlike from_kprojid from_kprojid_munged never fails and always
404 * returns a valid projid. This makes from_kprojid_munged
405 * appropriate for use in syscalls like stat and where
406 * failing the system call and failing to provide a valid projid are
407 * not an options.
408 *
409 * If @kprojid has no mapping in @targ OVERFLOW_PROJID is returned.
410 */
411projid_t from_kprojid_munged(struct user_namespace *targ, kprojid_t kprojid)
412{
413 projid_t projid;
414 projid = from_kprojid(targ, kprojid);
415
416 if (projid == (projid_t) -1)
417 projid = OVERFLOW_PROJID;
418 return projid;
419}
420EXPORT_SYMBOL(from_kprojid_munged);
421
422
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800423static int uid_m_show(struct seq_file *seq, void *v)
424{
425 struct user_namespace *ns = seq->private;
426 struct uid_gid_extent *extent = v;
427 struct user_namespace *lower_ns;
428 uid_t lower;
429
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700430 lower_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800431 if ((lower_ns == ns) && lower_ns->parent)
432 lower_ns = lower_ns->parent;
433
434 lower = from_kuid(lower_ns, KUIDT_INIT(extent->lower_first));
435
436 seq_printf(seq, "%10u %10u %10u\n",
437 extent->first,
438 lower,
439 extent->count);
440
441 return 0;
442}
443
444static int gid_m_show(struct seq_file *seq, void *v)
445{
446 struct user_namespace *ns = seq->private;
447 struct uid_gid_extent *extent = v;
448 struct user_namespace *lower_ns;
449 gid_t lower;
450
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700451 lower_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800452 if ((lower_ns == ns) && lower_ns->parent)
453 lower_ns = lower_ns->parent;
454
455 lower = from_kgid(lower_ns, KGIDT_INIT(extent->lower_first));
456
457 seq_printf(seq, "%10u %10u %10u\n",
458 extent->first,
459 lower,
460 extent->count);
461
462 return 0;
463}
464
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700465static int projid_m_show(struct seq_file *seq, void *v)
466{
467 struct user_namespace *ns = seq->private;
468 struct uid_gid_extent *extent = v;
469 struct user_namespace *lower_ns;
470 projid_t lower;
471
472 lower_ns = seq_user_ns(seq);
473 if ((lower_ns == ns) && lower_ns->parent)
474 lower_ns = lower_ns->parent;
475
476 lower = from_kprojid(lower_ns, KPROJIDT_INIT(extent->lower_first));
477
478 seq_printf(seq, "%10u %10u %10u\n",
479 extent->first,
480 lower,
481 extent->count);
482
483 return 0;
484}
485
Fabian Frederick68a9a432014-06-06 14:37:21 -0700486static void *m_start(struct seq_file *seq, loff_t *ppos,
487 struct uid_gid_map *map)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800488{
489 struct uid_gid_extent *extent = NULL;
490 loff_t pos = *ppos;
491
492 if (pos < map->nr_extents)
493 extent = &map->extent[pos];
494
495 return extent;
496}
497
498static void *uid_m_start(struct seq_file *seq, loff_t *ppos)
499{
500 struct user_namespace *ns = seq->private;
501
502 return m_start(seq, ppos, &ns->uid_map);
503}
504
505static void *gid_m_start(struct seq_file *seq, loff_t *ppos)
506{
507 struct user_namespace *ns = seq->private;
508
509 return m_start(seq, ppos, &ns->gid_map);
510}
511
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700512static void *projid_m_start(struct seq_file *seq, loff_t *ppos)
513{
514 struct user_namespace *ns = seq->private;
515
516 return m_start(seq, ppos, &ns->projid_map);
517}
518
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800519static void *m_next(struct seq_file *seq, void *v, loff_t *pos)
520{
521 (*pos)++;
522 return seq->op->start(seq, pos);
523}
524
525static void m_stop(struct seq_file *seq, void *v)
526{
527 return;
528}
529
Fabian Frederickccf94f12014-08-08 14:21:22 -0700530const struct seq_operations proc_uid_seq_operations = {
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800531 .start = uid_m_start,
532 .stop = m_stop,
533 .next = m_next,
534 .show = uid_m_show,
535};
536
Fabian Frederickccf94f12014-08-08 14:21:22 -0700537const struct seq_operations proc_gid_seq_operations = {
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800538 .start = gid_m_start,
539 .stop = m_stop,
540 .next = m_next,
541 .show = gid_m_show,
542};
543
Fabian Frederickccf94f12014-08-08 14:21:22 -0700544const struct seq_operations proc_projid_seq_operations = {
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700545 .start = projid_m_start,
546 .stop = m_stop,
547 .next = m_next,
548 .show = projid_m_show,
549};
550
Fabian Frederick68a9a432014-06-06 14:37:21 -0700551static bool mappings_overlap(struct uid_gid_map *new_map,
552 struct uid_gid_extent *extent)
Eric W. Biederman0bd14b42012-12-27 22:27:29 -0800553{
554 u32 upper_first, lower_first, upper_last, lower_last;
555 unsigned idx;
556
557 upper_first = extent->first;
558 lower_first = extent->lower_first;
559 upper_last = upper_first + extent->count - 1;
560 lower_last = lower_first + extent->count - 1;
561
562 for (idx = 0; idx < new_map->nr_extents; idx++) {
563 u32 prev_upper_first, prev_lower_first;
564 u32 prev_upper_last, prev_lower_last;
565 struct uid_gid_extent *prev;
566
567 prev = &new_map->extent[idx];
568
569 prev_upper_first = prev->first;
570 prev_lower_first = prev->lower_first;
571 prev_upper_last = prev_upper_first + prev->count - 1;
572 prev_lower_last = prev_lower_first + prev->count - 1;
573
574 /* Does the upper range intersect a previous extent? */
575 if ((prev_upper_first <= upper_last) &&
576 (prev_upper_last >= upper_first))
577 return true;
578
579 /* Does the lower range intersect a previous extent? */
580 if ((prev_lower_first <= lower_last) &&
581 (prev_lower_last >= lower_first))
582 return true;
583 }
584 return false;
585}
586
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800587static ssize_t map_write(struct file *file, const char __user *buf,
588 size_t count, loff_t *ppos,
589 int cap_setid,
590 struct uid_gid_map *map,
591 struct uid_gid_map *parent_map)
592{
593 struct seq_file *seq = file->private_data;
594 struct user_namespace *ns = seq->private;
595 struct uid_gid_map new_map;
596 unsigned idx;
Eric W. Biederman0bd14b42012-12-27 22:27:29 -0800597 struct uid_gid_extent *extent = NULL;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800598 unsigned long page = 0;
599 char *kbuf, *pos, *next_line;
600 ssize_t ret = -EINVAL;
601
602 /*
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600603 * The userns_state_mutex serializes all writes to any given map.
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800604 *
605 * Any map is only ever written once.
606 *
607 * An id map fits within 1 cache line on most architectures.
608 *
609 * On read nothing needs to be done unless you are on an
610 * architecture with a crazy cache coherency model like alpha.
611 *
612 * There is a one time data dependency between reading the
613 * count of the extents and the values of the extents. The
614 * desired behavior is to see the values of the extents that
615 * were written before the count of the extents.
616 *
617 * To achieve this smp_wmb() is used on guarantee the write
Mikulas Patockae79323b2014-04-14 16:58:55 -0400618 * order and smp_rmb() is guaranteed that we don't have crazy
619 * architectures returning stale data.
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000620 */
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600621 mutex_lock(&userns_state_mutex);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800622
623 ret = -EPERM;
624 /* Only allow one successful write to the map */
625 if (map->nr_extents != 0)
626 goto out;
627
Andy Lutomirski41c21e32013-04-14 11:44:04 -0700628 /*
629 * Adjusting namespace settings requires capabilities on the target.
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800630 */
Andy Lutomirski41c21e32013-04-14 11:44:04 -0700631 if (cap_valid(cap_setid) && !file_ns_capable(file, ns, CAP_SYS_ADMIN))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800632 goto out;
633
634 /* Get a buffer */
635 ret = -ENOMEM;
636 page = __get_free_page(GFP_TEMPORARY);
637 kbuf = (char *) page;
638 if (!page)
639 goto out;
640
641 /* Only allow <= page size writes at the beginning of the file */
642 ret = -EINVAL;
643 if ((*ppos != 0) || (count >= PAGE_SIZE))
644 goto out;
645
646 /* Slurp in the user data */
647 ret = -EFAULT;
648 if (copy_from_user(kbuf, buf, count))
649 goto out;
650 kbuf[count] = '\0';
651
652 /* Parse the user data */
653 ret = -EINVAL;
654 pos = kbuf;
655 new_map.nr_extents = 0;
Fabian Frederick68a9a432014-06-06 14:37:21 -0700656 for (; pos; pos = next_line) {
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800657 extent = &new_map.extent[new_map.nr_extents];
658
659 /* Find the end of line and ensure I don't look past it */
660 next_line = strchr(pos, '\n');
661 if (next_line) {
662 *next_line = '\0';
663 next_line++;
664 if (*next_line == '\0')
665 next_line = NULL;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000666 }
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800667
668 pos = skip_spaces(pos);
669 extent->first = simple_strtoul(pos, &pos, 10);
670 if (!isspace(*pos))
671 goto out;
672
673 pos = skip_spaces(pos);
674 extent->lower_first = simple_strtoul(pos, &pos, 10);
675 if (!isspace(*pos))
676 goto out;
677
678 pos = skip_spaces(pos);
679 extent->count = simple_strtoul(pos, &pos, 10);
680 if (*pos && !isspace(*pos))
681 goto out;
682
683 /* Verify there is not trailing junk on the line */
684 pos = skip_spaces(pos);
685 if (*pos != '\0')
686 goto out;
687
688 /* Verify we have been given valid starting values */
689 if ((extent->first == (u32) -1) ||
Fabian Frederick68a9a432014-06-06 14:37:21 -0700690 (extent->lower_first == (u32) -1))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800691 goto out;
692
Fabian Frederick68a9a432014-06-06 14:37:21 -0700693 /* Verify count is not zero and does not cause the
694 * extent to wrap
695 */
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800696 if ((extent->first + extent->count) <= extent->first)
697 goto out;
Fabian Frederick68a9a432014-06-06 14:37:21 -0700698 if ((extent->lower_first + extent->count) <=
699 extent->lower_first)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800700 goto out;
701
Eric W. Biederman0bd14b42012-12-27 22:27:29 -0800702 /* Do the ranges in extent overlap any previous extents? */
703 if (mappings_overlap(&new_map, extent))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800704 goto out;
705
706 new_map.nr_extents++;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800707
708 /* Fail if the file contains too many extents */
709 if ((new_map.nr_extents == UID_GID_MAP_MAX_EXTENTS) &&
710 (next_line != NULL))
711 goto out;
712 }
713 /* Be very certaint the new map actually exists */
714 if (new_map.nr_extents == 0)
715 goto out;
716
717 ret = -EPERM;
718 /* Validate the user is allowed to use user id's mapped to. */
Eric W. Biederman67080752013-04-14 13:47:02 -0700719 if (!new_idmap_permitted(file, ns, cap_setid, &new_map))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800720 goto out;
721
722 /* Map the lower ids from the parent user namespace to the
723 * kernel global id space.
724 */
725 for (idx = 0; idx < new_map.nr_extents; idx++) {
726 u32 lower_first;
727 extent = &new_map.extent[idx];
728
729 lower_first = map_id_range_down(parent_map,
730 extent->lower_first,
731 extent->count);
732
733 /* Fail if we can not map the specified extent to
734 * the kernel global id space.
735 */
736 if (lower_first == (u32) -1)
737 goto out;
738
739 extent->lower_first = lower_first;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000740 }
741
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800742 /* Install the map */
743 memcpy(map->extent, new_map.extent,
744 new_map.nr_extents*sizeof(new_map.extent[0]));
745 smp_wmb();
746 map->nr_extents = new_map.nr_extents;
747
748 *ppos = count;
749 ret = count;
750out:
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600751 mutex_unlock(&userns_state_mutex);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800752 if (page)
753 free_page(page);
754 return ret;
755}
756
Fabian Frederick68a9a432014-06-06 14:37:21 -0700757ssize_t proc_uid_map_write(struct file *file, const char __user *buf,
758 size_t size, loff_t *ppos)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800759{
760 struct seq_file *seq = file->private_data;
761 struct user_namespace *ns = seq->private;
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700762 struct user_namespace *seq_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800763
764 if (!ns->parent)
765 return -EPERM;
766
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700767 if ((seq_ns != ns) && (seq_ns != ns->parent))
768 return -EPERM;
769
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800770 return map_write(file, buf, size, ppos, CAP_SETUID,
771 &ns->uid_map, &ns->parent->uid_map);
772}
773
Fabian Frederick68a9a432014-06-06 14:37:21 -0700774ssize_t proc_gid_map_write(struct file *file, const char __user *buf,
775 size_t size, loff_t *ppos)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800776{
777 struct seq_file *seq = file->private_data;
778 struct user_namespace *ns = seq->private;
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700779 struct user_namespace *seq_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800780
781 if (!ns->parent)
782 return -EPERM;
783
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700784 if ((seq_ns != ns) && (seq_ns != ns->parent))
785 return -EPERM;
786
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800787 return map_write(file, buf, size, ppos, CAP_SETGID,
788 &ns->gid_map, &ns->parent->gid_map);
789}
790
Fabian Frederick68a9a432014-06-06 14:37:21 -0700791ssize_t proc_projid_map_write(struct file *file, const char __user *buf,
792 size_t size, loff_t *ppos)
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700793{
794 struct seq_file *seq = file->private_data;
795 struct user_namespace *ns = seq->private;
796 struct user_namespace *seq_ns = seq_user_ns(seq);
797
798 if (!ns->parent)
799 return -EPERM;
800
801 if ((seq_ns != ns) && (seq_ns != ns->parent))
802 return -EPERM;
803
804 /* Anyone can set any valid project id no capability needed */
805 return map_write(file, buf, size, ppos, -1,
806 &ns->projid_map, &ns->parent->projid_map);
807}
808
Fabian Frederick68a9a432014-06-06 14:37:21 -0700809static bool new_idmap_permitted(const struct file *file,
Eric W. Biederman67080752013-04-14 13:47:02 -0700810 struct user_namespace *ns, int cap_setid,
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800811 struct uid_gid_map *new_map)
812{
Eric W. Biedermanf95d7912014-11-26 23:22:14 -0600813 const struct cred *cred = file->f_cred;
Eric W. Biederman0542f172014-12-05 17:51:47 -0600814 /* Don't allow mappings that would allow anything that wouldn't
815 * be allowed without the establishment of unprivileged mappings.
816 */
Eric W. Biedermanf95d7912014-11-26 23:22:14 -0600817 if ((new_map->nr_extents == 1) && (new_map->extent[0].count == 1) &&
818 uid_eq(ns->owner, cred->euid)) {
Eric W. Biederman37657da2012-07-27 06:21:27 -0700819 u32 id = new_map->extent[0].lower_first;
820 if (cap_setid == CAP_SETUID) {
821 kuid_t uid = make_kuid(ns->parent, id);
Eric W. Biedermanf95d7912014-11-26 23:22:14 -0600822 if (uid_eq(uid, cred->euid))
Eric W. Biederman37657da2012-07-27 06:21:27 -0700823 return true;
Eric W. Biederman37657da2012-07-27 06:21:27 -0700824 }
825 }
826
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700827 /* Allow anyone to set a mapping that doesn't require privilege */
828 if (!cap_valid(cap_setid))
829 return true;
830
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800831 /* Allow the specified ids if we have the appropriate capability
832 * (CAP_SETUID or CAP_SETGID) over the parent user namespace.
Eric W. Biederman67080752013-04-14 13:47:02 -0700833 * And the opener of the id file also had the approprpiate capability.
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800834 */
Eric W. Biederman67080752013-04-14 13:47:02 -0700835 if (ns_capable(ns->parent, cap_setid) &&
836 file_ns_capable(file, ns->parent, cap_setid))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800837 return true;
838
839 return false;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000840}
Pavel Emelyanov61642812011-01-12 17:00:46 -0800841
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600842bool userns_may_setgroups(const struct user_namespace *ns)
843{
844 bool allowed;
845
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600846 mutex_lock(&userns_state_mutex);
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600847 /* It is not safe to use setgroups until a gid mapping in
848 * the user namespace has been established.
849 */
850 allowed = ns->gid_map.nr_extents != 0;
Eric W. Biedermanf0d62ae2014-12-09 14:03:14 -0600851 mutex_unlock(&userns_state_mutex);
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600852
853 return allowed;
854}
855
Eric W. Biedermancde19752012-07-26 06:24:06 -0700856static void *userns_get(struct task_struct *task)
857{
858 struct user_namespace *user_ns;
859
860 rcu_read_lock();
861 user_ns = get_user_ns(__task_cred(task)->user_ns);
862 rcu_read_unlock();
863
864 return user_ns;
865}
866
867static void userns_put(void *ns)
868{
869 put_user_ns(ns);
870}
871
872static int userns_install(struct nsproxy *nsproxy, void *ns)
873{
874 struct user_namespace *user_ns = ns;
875 struct cred *cred;
876
877 /* Don't allow gaining capabilities by reentering
878 * the same user namespace.
879 */
880 if (user_ns == current_user_ns())
881 return -EINVAL;
882
Eric W. Biederman51550402012-12-09 17:19:52 -0800883 /* Threaded processes may not enter a different user namespace */
Eric W. Biedermancde19752012-07-26 06:24:06 -0700884 if (atomic_read(&current->mm->mm_users) > 1)
885 return -EINVAL;
886
Eric W. Biedermane66eded2013-03-13 11:51:49 -0700887 if (current->fs->users != 1)
888 return -EINVAL;
889
Eric W. Biedermancde19752012-07-26 06:24:06 -0700890 if (!ns_capable(user_ns, CAP_SYS_ADMIN))
891 return -EPERM;
892
893 cred = prepare_creds();
894 if (!cred)
895 return -ENOMEM;
896
897 put_user_ns(cred->user_ns);
898 set_cred_user_ns(cred, get_user_ns(user_ns));
899
900 return commit_creds(cred);
901}
902
Eric W. Biederman98f842e2011-06-15 10:21:48 -0700903static unsigned int userns_inum(void *ns)
904{
905 struct user_namespace *user_ns = ns;
906 return user_ns->proc_inum;
907}
908
Eric W. Biedermancde19752012-07-26 06:24:06 -0700909const struct proc_ns_operations userns_operations = {
910 .name = "user",
911 .type = CLONE_NEWUSER,
912 .get = userns_get,
913 .put = userns_put,
914 .install = userns_install,
Eric W. Biederman98f842e2011-06-15 10:21:48 -0700915 .inum = userns_inum,
Eric W. Biedermancde19752012-07-26 06:24:06 -0700916};
917
Pavel Emelyanov61642812011-01-12 17:00:46 -0800918static __init int user_namespaces_init(void)
919{
920 user_ns_cachep = KMEM_CACHE(user_namespace, SLAB_PANIC);
921 return 0;
922}
Paul Gortmakerc96d66602014-04-03 14:48:35 -0700923subsys_initcall(user_namespaces_init);