userns: Rename id_map_mutex to userns_state_mutex
[cascardo/linux.git] / kernel / user_namespace.c
1 /*
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
8 #include <linux/export.h>
9 #include <linux/nsproxy.h>
10 #include <linux/slab.h>
11 #include <linux/user_namespace.h>
12 #include <linux/proc_ns.h>
13 #include <linux/highuid.h>
14 #include <linux/cred.h>
15 #include <linux/securebits.h>
16 #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>
23 #include <linux/projid.h>
24 #include <linux/fs_struct.h>
25
26 static struct kmem_cache *user_ns_cachep __read_mostly;
27 static DEFINE_MUTEX(userns_state_mutex);
28
29 static bool new_idmap_permitted(const struct file *file,
30                                 struct user_namespace *ns, int cap_setid,
31                                 struct uid_gid_map *map);
32
33 static 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
51 /*
52  * 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.
58  */
59 int create_user_ns(struct cred *new)
60 {
61         struct user_namespace *ns, *parent_ns = new->user_ns;
62         kuid_t owner = new->euid;
63         kgid_t group = new->egid;
64         int ret;
65
66         if (parent_ns->level > 32)
67                 return -EUSERS;
68
69         /*
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
78         /* 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;
85
86         ns = kmem_cache_zalloc(user_ns_cachep, GFP_KERNEL);
87         if (!ns)
88                 return -ENOMEM;
89
90         ret = proc_alloc_inum(&ns->proc_inum);
91         if (ret) {
92                 kmem_cache_free(user_ns_cachep, ns);
93                 return ret;
94         }
95
96         atomic_set(&ns->count, 1);
97         /* Leave the new->user_ns reference with the new user namespace. */
98         ns->parent = parent_ns;
99         ns->level = parent_ns->level + 1;
100         ns->owner = owner;
101         ns->group = group;
102
103         set_cred_user_ns(new, ns);
104
105 #ifdef CONFIG_PERSISTENT_KEYRINGS
106         init_rwsem(&ns->persistent_keyring_register_sem);
107 #endif
108         return 0;
109 }
110
111 int unshare_userns(unsigned long unshare_flags, struct cred **new_cred)
112 {
113         struct cred *cred;
114         int err = -ENOMEM;
115
116         if (!(unshare_flags & CLONE_NEWUSER))
117                 return 0;
118
119         cred = prepare_creds();
120         if (cred) {
121                 err = create_user_ns(cred);
122                 if (err)
123                         put_cred(cred);
124                 else
125                         *new_cred = cred;
126         }
127
128         return err;
129 }
130
131 void free_user_ns(struct user_namespace *ns)
132 {
133         struct user_namespace *parent;
134
135         do {
136                 parent = ns->parent;
137 #ifdef CONFIG_PERSISTENT_KEYRINGS
138                 key_put(ns->persistent_keyring_register);
139 #endif
140                 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));
144 }
145 EXPORT_SYMBOL(free_user_ns);
146
147 static u32 map_id_range_down(struct uid_gid_map *map, u32 id, u32 count)
148 {
149         unsigned idx, extents;
150         u32 first, last, id2;
151
152         id2 = id + count - 1;
153
154         /* Find the matching extent */
155         extents = map->nr_extents;
156         smp_rmb();
157         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;
163         }
164         /* 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;
169
170         return id;
171 }
172
173 static u32 map_id_down(struct uid_gid_map *map, u32 id)
174 {
175         unsigned idx, extents;
176         u32 first, last;
177
178         /* Find the matching extent */
179         extents = map->nr_extents;
180         smp_rmb();
181         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;
192
193         return id;
194 }
195
196 static 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;
203         smp_rmb();
204         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
229  *      for and handle INVALID_UID being returned.  INVALID_UID
230  *      may be tested for using uid_valid().
231  */
232 kuid_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 }
237 EXPORT_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  */
251 uid_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 }
256 EXPORT_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  */
276 uid_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 }
285 EXPORT_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
290  *      @gid: group identifier
291  *
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  */
300 kgid_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 }
305 EXPORT_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  */
319 gid_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 }
324 EXPORT_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  */
343 gid_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 }
352 EXPORT_SYMBOL(from_kgid_munged);
353
354 /**
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  */
367 kprojid_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 }
372 EXPORT_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  */
386 projid_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 }
391 EXPORT_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  */
411 projid_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 }
420 EXPORT_SYMBOL(from_kprojid_munged);
421
422
423 static 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
430         lower_ns = seq_user_ns(seq);
431         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
444 static 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
451         lower_ns = seq_user_ns(seq);
452         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
465 static 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
486 static void *m_start(struct seq_file *seq, loff_t *ppos,
487                      struct uid_gid_map *map)
488 {
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
498 static 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
505 static 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
512 static 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
519 static void *m_next(struct seq_file *seq, void *v, loff_t *pos)
520 {
521         (*pos)++;
522         return seq->op->start(seq, pos);
523 }
524
525 static void m_stop(struct seq_file *seq, void *v)
526 {
527         return;
528 }
529
530 const struct seq_operations proc_uid_seq_operations = {
531         .start = uid_m_start,
532         .stop = m_stop,
533         .next = m_next,
534         .show = uid_m_show,
535 };
536
537 const struct seq_operations proc_gid_seq_operations = {
538         .start = gid_m_start,
539         .stop = m_stop,
540         .next = m_next,
541         .show = gid_m_show,
542 };
543
544 const struct seq_operations proc_projid_seq_operations = {
545         .start = projid_m_start,
546         .stop = m_stop,
547         .next = m_next,
548         .show = projid_m_show,
549 };
550
551 static bool mappings_overlap(struct uid_gid_map *new_map,
552                              struct uid_gid_extent *extent)
553 {
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
587 static 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;
597         struct uid_gid_extent *extent = NULL;
598         unsigned long page = 0;
599         char *kbuf, *pos, *next_line;
600         ssize_t ret = -EINVAL;
601
602         /*
603          * The userns_state_mutex serializes all writes to any given map.
604          *
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
618          * order and smp_rmb() is guaranteed that we don't have crazy
619          * architectures returning stale data.
620          */
621         mutex_lock(&userns_state_mutex);
622
623         ret = -EPERM;
624         /* Only allow one successful write to the map */
625         if (map->nr_extents != 0)
626                 goto out;
627
628         /*
629          * Adjusting namespace settings requires capabilities on the target.
630          */
631         if (cap_valid(cap_setid) && !file_ns_capable(file, ns, CAP_SYS_ADMIN))
632                 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;
656         for (; pos; pos = next_line) {
657                 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;
666                 }
667
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) ||
690                     (extent->lower_first == (u32) -1))
691                         goto out;
692
693                 /* Verify count is not zero and does not cause the
694                  * extent to wrap
695                  */
696                 if ((extent->first + extent->count) <= extent->first)
697                         goto out;
698                 if ((extent->lower_first + extent->count) <=
699                      extent->lower_first)
700                         goto out;
701
702                 /* Do the ranges in extent overlap any previous extents? */
703                 if (mappings_overlap(&new_map, extent))
704                         goto out;
705
706                 new_map.nr_extents++;
707
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. */
719         if (!new_idmap_permitted(file, ns, cap_setid, &new_map))
720                 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;
740         }
741
742         /* 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;
750 out:
751         mutex_unlock(&userns_state_mutex);
752         if (page)
753                 free_page(page);
754         return ret;
755 }
756
757 ssize_t proc_uid_map_write(struct file *file, const char __user *buf,
758                            size_t size, loff_t *ppos)
759 {
760         struct seq_file *seq = file->private_data;
761         struct user_namespace *ns = seq->private;
762         struct user_namespace *seq_ns = seq_user_ns(seq);
763
764         if (!ns->parent)
765                 return -EPERM;
766
767         if ((seq_ns != ns) && (seq_ns != ns->parent))
768                 return -EPERM;
769
770         return map_write(file, buf, size, ppos, CAP_SETUID,
771                          &ns->uid_map, &ns->parent->uid_map);
772 }
773
774 ssize_t proc_gid_map_write(struct file *file, const char __user *buf,
775                            size_t size, loff_t *ppos)
776 {
777         struct seq_file *seq = file->private_data;
778         struct user_namespace *ns = seq->private;
779         struct user_namespace *seq_ns = seq_user_ns(seq);
780
781         if (!ns->parent)
782                 return -EPERM;
783
784         if ((seq_ns != ns) && (seq_ns != ns->parent))
785                 return -EPERM;
786
787         return map_write(file, buf, size, ppos, CAP_SETGID,
788                          &ns->gid_map, &ns->parent->gid_map);
789 }
790
791 ssize_t proc_projid_map_write(struct file *file, const char __user *buf,
792                               size_t size, loff_t *ppos)
793 {
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
809 static bool new_idmap_permitted(const struct file *file,
810                                 struct user_namespace *ns, int cap_setid,
811                                 struct uid_gid_map *new_map)
812 {
813         const struct cred *cred = file->f_cred;
814         /* Don't allow mappings that would allow anything that wouldn't
815          * be allowed without the establishment of unprivileged mappings.
816          */
817         if ((new_map->nr_extents == 1) && (new_map->extent[0].count == 1) &&
818             uid_eq(ns->owner, cred->euid)) {
819                 u32 id = new_map->extent[0].lower_first;
820                 if (cap_setid == CAP_SETUID) {
821                         kuid_t uid = make_kuid(ns->parent, id);
822                         if (uid_eq(uid, cred->euid))
823                                 return true;
824                 }
825         }
826
827         /* Allow anyone to set a mapping that doesn't require privilege */
828         if (!cap_valid(cap_setid))
829                 return true;
830
831         /* Allow the specified ids if we have the appropriate capability
832          * (CAP_SETUID or CAP_SETGID) over the parent user namespace.
833          * And the opener of the id file also had the approprpiate capability.
834          */
835         if (ns_capable(ns->parent, cap_setid) &&
836             file_ns_capable(file, ns->parent, cap_setid))
837                 return true;
838
839         return false;
840 }
841
842 bool userns_may_setgroups(const struct user_namespace *ns)
843 {
844         bool allowed;
845
846         mutex_lock(&userns_state_mutex);
847         /* 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;
851         mutex_unlock(&userns_state_mutex);
852
853         return allowed;
854 }
855
856 static 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
867 static void userns_put(void *ns)
868 {
869         put_user_ns(ns);
870 }
871
872 static 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
883         /* Threaded processes may not enter a different user namespace */
884         if (atomic_read(&current->mm->mm_users) > 1)
885                 return -EINVAL;
886
887         if (current->fs->users != 1)
888                 return -EINVAL;
889
890         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
903 static unsigned int userns_inum(void *ns)
904 {
905         struct user_namespace *user_ns = ns;
906         return user_ns->proc_inum;
907 }
908
909 const 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,
915         .inum           = userns_inum,
916 };
917
918 static __init int user_namespaces_init(void)
919 {
920         user_ns_cachep = KMEM_CACHE(user_namespace, SLAB_PANIC);
921         return 0;
922 }
923 subsys_initcall(user_namespaces_init);