blob: 1491ad00388fe1c8e91fe7fdc85caf334ff99f56 [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;
27
Eric W. Biederman67080752013-04-14 13:47:02 -070028static bool new_idmap_permitted(const struct file *file,
29 struct user_namespace *ns, int cap_setid,
Eric W. Biederman22d917d2011-11-17 00:11:58 -080030 struct uid_gid_map *map);
31
Eric W. Biedermancde19752012-07-26 06:24:06 -070032static void set_cred_user_ns(struct cred *cred, struct user_namespace *user_ns)
33{
34 /* Start with the same capabilities as init but useless for doing
35 * anything as the capabilities are bound to the new user namespace.
36 */
37 cred->securebits = SECUREBITS_DEFAULT;
38 cred->cap_inheritable = CAP_EMPTY_SET;
39 cred->cap_permitted = CAP_FULL_SET;
40 cred->cap_effective = CAP_FULL_SET;
41 cred->cap_bset = CAP_FULL_SET;
42#ifdef CONFIG_KEYS
43 key_put(cred->request_key_auth);
44 cred->request_key_auth = NULL;
45#endif
46 /* tgcred will be cleared in our caller bc CLONE_THREAD won't be set */
47 cred->user_ns = user_ns;
48}
49
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070050/*
Serge Hallyn18b6e042008-10-15 16:38:45 -050051 * Create a new user namespace, deriving the creator from the user in the
52 * passed credentials, and replacing that user with the new root user for the
53 * new namespace.
54 *
55 * This is called by copy_creds(), which will finish setting the target task's
56 * credentials.
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070057 */
Serge Hallyn18b6e042008-10-15 16:38:45 -050058int create_user_ns(struct cred *new)
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070059{
Eric W. Biederman0093ccb2011-11-16 21:52:53 -080060 struct user_namespace *ns, *parent_ns = new->user_ns;
Eric W. Biederman078de5f2012-02-08 07:00:08 -080061 kuid_t owner = new->euid;
62 kgid_t group = new->egid;
Eric W. Biederman98f842e2011-06-15 10:21:48 -070063 int ret;
Eric W. Biederman783291e2011-11-17 01:32:59 -080064
Oleg Nesterov8742f222013-08-08 18:55:32 +020065 if (parent_ns->level > 32)
66 return -EUSERS;
67
Eric W. Biederman31515272013-03-15 01:45:51 -070068 /*
69 * Verify that we can not violate the policy of which files
70 * may be accessed that is specified by the root directory,
71 * by verifing that the root directory is at the root of the
72 * mount namespace which allows all files to be accessed.
73 */
74 if (current_chrooted())
75 return -EPERM;
76
Eric W. Biederman783291e2011-11-17 01:32:59 -080077 /* The creator needs a mapping in the parent user namespace
78 * or else we won't be able to reasonably tell userspace who
79 * created a user_namespace.
80 */
81 if (!kuid_has_mapping(parent_ns, owner) ||
82 !kgid_has_mapping(parent_ns, group))
83 return -EPERM;
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070084
Eric W. Biederman22d917d2011-11-17 00:11:58 -080085 ns = kmem_cache_zalloc(user_ns_cachep, GFP_KERNEL);
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070086 if (!ns)
Serge Hallyn18b6e042008-10-15 16:38:45 -050087 return -ENOMEM;
Serge E. Hallyn77ec7392007-07-15 23:41:01 -070088
Al Viro6344c432014-11-01 00:45:45 -040089 ret = ns_alloc_inum(&ns->ns);
Eric W. Biederman98f842e2011-06-15 10:21:48 -070090 if (ret) {
91 kmem_cache_free(user_ns_cachep, ns);
92 return ret;
93 }
Al Viro33c42942014-11-01 02:32:53 -040094 ns->ns.ops = &userns_operations;
Eric W. Biederman98f842e2011-06-15 10:21:48 -070095
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
Al Viro6344c432014-11-01 00:45:45 -0400140 ns_free_inum(&ns->ns);
Eric W. Biedermanc61a2812012-12-28 18:58:39 -0800141 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
587
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800588static DEFINE_MUTEX(id_map_mutex);
589
590static ssize_t map_write(struct file *file, const char __user *buf,
591 size_t count, loff_t *ppos,
592 int cap_setid,
593 struct uid_gid_map *map,
594 struct uid_gid_map *parent_map)
595{
596 struct seq_file *seq = file->private_data;
597 struct user_namespace *ns = seq->private;
598 struct uid_gid_map new_map;
599 unsigned idx;
Eric W. Biederman0bd14b42012-12-27 22:27:29 -0800600 struct uid_gid_extent *extent = NULL;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800601 unsigned long page = 0;
602 char *kbuf, *pos, *next_line;
603 ssize_t ret = -EINVAL;
604
605 /*
606 * The id_map_mutex serializes all writes to any given map.
607 *
608 * Any map is only ever written once.
609 *
610 * An id map fits within 1 cache line on most architectures.
611 *
612 * On read nothing needs to be done unless you are on an
613 * architecture with a crazy cache coherency model like alpha.
614 *
615 * There is a one time data dependency between reading the
616 * count of the extents and the values of the extents. The
617 * desired behavior is to see the values of the extents that
618 * were written before the count of the extents.
619 *
620 * To achieve this smp_wmb() is used on guarantee the write
Mikulas Patockae79323b2014-04-14 16:58:55 -0400621 * order and smp_rmb() is guaranteed that we don't have crazy
622 * architectures returning stale data.
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000623 */
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800624 mutex_lock(&id_map_mutex);
625
626 ret = -EPERM;
627 /* Only allow one successful write to the map */
628 if (map->nr_extents != 0)
629 goto out;
630
Andy Lutomirski41c21e32013-04-14 11:44:04 -0700631 /*
632 * Adjusting namespace settings requires capabilities on the target.
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800633 */
Andy Lutomirski41c21e32013-04-14 11:44:04 -0700634 if (cap_valid(cap_setid) && !file_ns_capable(file, ns, CAP_SYS_ADMIN))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800635 goto out;
636
637 /* Get a buffer */
638 ret = -ENOMEM;
639 page = __get_free_page(GFP_TEMPORARY);
640 kbuf = (char *) page;
641 if (!page)
642 goto out;
643
644 /* Only allow <= page size writes at the beginning of the file */
645 ret = -EINVAL;
646 if ((*ppos != 0) || (count >= PAGE_SIZE))
647 goto out;
648
649 /* Slurp in the user data */
650 ret = -EFAULT;
651 if (copy_from_user(kbuf, buf, count))
652 goto out;
653 kbuf[count] = '\0';
654
655 /* Parse the user data */
656 ret = -EINVAL;
657 pos = kbuf;
658 new_map.nr_extents = 0;
Fabian Frederick68a9a432014-06-06 14:37:21 -0700659 for (; pos; pos = next_line) {
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800660 extent = &new_map.extent[new_map.nr_extents];
661
662 /* Find the end of line and ensure I don't look past it */
663 next_line = strchr(pos, '\n');
664 if (next_line) {
665 *next_line = '\0';
666 next_line++;
667 if (*next_line == '\0')
668 next_line = NULL;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000669 }
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800670
671 pos = skip_spaces(pos);
672 extent->first = simple_strtoul(pos, &pos, 10);
673 if (!isspace(*pos))
674 goto out;
675
676 pos = skip_spaces(pos);
677 extent->lower_first = simple_strtoul(pos, &pos, 10);
678 if (!isspace(*pos))
679 goto out;
680
681 pos = skip_spaces(pos);
682 extent->count = simple_strtoul(pos, &pos, 10);
683 if (*pos && !isspace(*pos))
684 goto out;
685
686 /* Verify there is not trailing junk on the line */
687 pos = skip_spaces(pos);
688 if (*pos != '\0')
689 goto out;
690
691 /* Verify we have been given valid starting values */
692 if ((extent->first == (u32) -1) ||
Fabian Frederick68a9a432014-06-06 14:37:21 -0700693 (extent->lower_first == (u32) -1))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800694 goto out;
695
Fabian Frederick68a9a432014-06-06 14:37:21 -0700696 /* Verify count is not zero and does not cause the
697 * extent to wrap
698 */
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800699 if ((extent->first + extent->count) <= extent->first)
700 goto out;
Fabian Frederick68a9a432014-06-06 14:37:21 -0700701 if ((extent->lower_first + extent->count) <=
702 extent->lower_first)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800703 goto out;
704
Eric W. Biederman0bd14b42012-12-27 22:27:29 -0800705 /* Do the ranges in extent overlap any previous extents? */
706 if (mappings_overlap(&new_map, extent))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800707 goto out;
708
709 new_map.nr_extents++;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800710
711 /* Fail if the file contains too many extents */
712 if ((new_map.nr_extents == UID_GID_MAP_MAX_EXTENTS) &&
713 (next_line != NULL))
714 goto out;
715 }
716 /* Be very certaint the new map actually exists */
717 if (new_map.nr_extents == 0)
718 goto out;
719
720 ret = -EPERM;
721 /* Validate the user is allowed to use user id's mapped to. */
Eric W. Biederman67080752013-04-14 13:47:02 -0700722 if (!new_idmap_permitted(file, ns, cap_setid, &new_map))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800723 goto out;
724
725 /* Map the lower ids from the parent user namespace to the
726 * kernel global id space.
727 */
728 for (idx = 0; idx < new_map.nr_extents; idx++) {
729 u32 lower_first;
730 extent = &new_map.extent[idx];
731
732 lower_first = map_id_range_down(parent_map,
733 extent->lower_first,
734 extent->count);
735
736 /* Fail if we can not map the specified extent to
737 * the kernel global id space.
738 */
739 if (lower_first == (u32) -1)
740 goto out;
741
742 extent->lower_first = lower_first;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000743 }
744
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800745 /* Install the map */
746 memcpy(map->extent, new_map.extent,
747 new_map.nr_extents*sizeof(new_map.extent[0]));
748 smp_wmb();
749 map->nr_extents = new_map.nr_extents;
750
751 *ppos = count;
752 ret = count;
753out:
754 mutex_unlock(&id_map_mutex);
755 if (page)
756 free_page(page);
757 return ret;
758}
759
Fabian Frederick68a9a432014-06-06 14:37:21 -0700760ssize_t proc_uid_map_write(struct file *file, const char __user *buf,
761 size_t size, loff_t *ppos)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800762{
763 struct seq_file *seq = file->private_data;
764 struct user_namespace *ns = seq->private;
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700765 struct user_namespace *seq_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800766
767 if (!ns->parent)
768 return -EPERM;
769
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700770 if ((seq_ns != ns) && (seq_ns != ns->parent))
771 return -EPERM;
772
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800773 return map_write(file, buf, size, ppos, CAP_SETUID,
774 &ns->uid_map, &ns->parent->uid_map);
775}
776
Fabian Frederick68a9a432014-06-06 14:37:21 -0700777ssize_t proc_gid_map_write(struct file *file, const char __user *buf,
778 size_t size, loff_t *ppos)
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800779{
780 struct seq_file *seq = file->private_data;
781 struct user_namespace *ns = seq->private;
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700782 struct user_namespace *seq_ns = seq_user_ns(seq);
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800783
784 if (!ns->parent)
785 return -EPERM;
786
Eric W. Biedermanc450f372012-08-14 21:25:13 -0700787 if ((seq_ns != ns) && (seq_ns != ns->parent))
788 return -EPERM;
789
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800790 return map_write(file, buf, size, ppos, CAP_SETGID,
791 &ns->gid_map, &ns->parent->gid_map);
792}
793
Fabian Frederick68a9a432014-06-06 14:37:21 -0700794ssize_t proc_projid_map_write(struct file *file, const char __user *buf,
795 size_t size, loff_t *ppos)
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700796{
797 struct seq_file *seq = file->private_data;
798 struct user_namespace *ns = seq->private;
799 struct user_namespace *seq_ns = seq_user_ns(seq);
800
801 if (!ns->parent)
802 return -EPERM;
803
804 if ((seq_ns != ns) && (seq_ns != ns->parent))
805 return -EPERM;
806
807 /* Anyone can set any valid project id no capability needed */
808 return map_write(file, buf, size, ppos, -1,
809 &ns->projid_map, &ns->parent->projid_map);
810}
811
Fabian Frederick68a9a432014-06-06 14:37:21 -0700812static bool new_idmap_permitted(const struct file *file,
Eric W. Biederman67080752013-04-14 13:47:02 -0700813 struct user_namespace *ns, int cap_setid,
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800814 struct uid_gid_map *new_map)
815{
Eric W. Biederman37657da2012-07-27 06:21:27 -0700816 /* Allow mapping to your own filesystem ids */
817 if ((new_map->nr_extents == 1) && (new_map->extent[0].count == 1)) {
818 u32 id = new_map->extent[0].lower_first;
819 if (cap_setid == CAP_SETUID) {
820 kuid_t uid = make_kuid(ns->parent, id);
Andy Lutomirskie3211c12013-04-14 16:28:19 -0700821 if (uid_eq(uid, file->f_cred->fsuid))
Eric W. Biederman37657da2012-07-27 06:21:27 -0700822 return true;
Fabian Frederick68a9a432014-06-06 14:37:21 -0700823 } else if (cap_setid == CAP_SETGID) {
Eric W. Biederman37657da2012-07-27 06:21:27 -0700824 kgid_t gid = make_kgid(ns->parent, id);
Andy Lutomirskie3211c12013-04-14 16:28:19 -0700825 if (gid_eq(gid, file->f_cred->fsgid))
Eric W. Biederman37657da2012-07-27 06:21:27 -0700826 return true;
827 }
828 }
829
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700830 /* Allow anyone to set a mapping that doesn't require privilege */
831 if (!cap_valid(cap_setid))
832 return true;
833
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800834 /* Allow the specified ids if we have the appropriate capability
835 * (CAP_SETUID or CAP_SETGID) over the parent user namespace.
Eric W. Biederman67080752013-04-14 13:47:02 -0700836 * And the opener of the id file also had the approprpiate capability.
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800837 */
Eric W. Biederman67080752013-04-14 13:47:02 -0700838 if (ns_capable(ns->parent, cap_setid) &&
839 file_ns_capable(file, ns->parent, cap_setid))
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800840 return true;
841
842 return false;
Eric W. Biederman5c1469d2010-06-13 03:28:03 +0000843}
Pavel Emelyanov61642812011-01-12 17:00:46 -0800844
Al Viro3c041182014-11-01 00:25:30 -0400845static inline struct user_namespace *to_user_ns(struct ns_common *ns)
846{
847 return container_of(ns, struct user_namespace, ns);
848}
849
Al Viro64964522014-11-01 00:37:32 -0400850static struct ns_common *userns_get(struct task_struct *task)
Eric W. Biedermancde19752012-07-26 06:24:06 -0700851{
852 struct user_namespace *user_ns;
853
854 rcu_read_lock();
855 user_ns = get_user_ns(__task_cred(task)->user_ns);
856 rcu_read_unlock();
857
Al Viro3c041182014-11-01 00:25:30 -0400858 return user_ns ? &user_ns->ns : NULL;
Eric W. Biedermancde19752012-07-26 06:24:06 -0700859}
860
Al Viro64964522014-11-01 00:37:32 -0400861static void userns_put(struct ns_common *ns)
Eric W. Biedermancde19752012-07-26 06:24:06 -0700862{
Al Viro3c041182014-11-01 00:25:30 -0400863 put_user_ns(to_user_ns(ns));
Eric W. Biedermancde19752012-07-26 06:24:06 -0700864}
865
Al Viro64964522014-11-01 00:37:32 -0400866static int userns_install(struct nsproxy *nsproxy, struct ns_common *ns)
Eric W. Biedermancde19752012-07-26 06:24:06 -0700867{
Al Viro3c041182014-11-01 00:25:30 -0400868 struct user_namespace *user_ns = to_user_ns(ns);
Eric W. Biedermancde19752012-07-26 06:24:06 -0700869 struct cred *cred;
870
871 /* Don't allow gaining capabilities by reentering
872 * the same user namespace.
873 */
874 if (user_ns == current_user_ns())
875 return -EINVAL;
876
Eric W. Biederman51550402012-12-09 17:19:52 -0800877 /* Threaded processes may not enter a different user namespace */
Eric W. Biedermancde19752012-07-26 06:24:06 -0700878 if (atomic_read(&current->mm->mm_users) > 1)
879 return -EINVAL;
880
Eric W. Biedermane66eded2013-03-13 11:51:49 -0700881 if (current->fs->users != 1)
882 return -EINVAL;
883
Eric W. Biedermancde19752012-07-26 06:24:06 -0700884 if (!ns_capable(user_ns, CAP_SYS_ADMIN))
885 return -EPERM;
886
887 cred = prepare_creds();
888 if (!cred)
889 return -ENOMEM;
890
891 put_user_ns(cred->user_ns);
892 set_cred_user_ns(cred, get_user_ns(user_ns));
893
894 return commit_creds(cred);
895}
896
897const struct proc_ns_operations userns_operations = {
898 .name = "user",
899 .type = CLONE_NEWUSER,
900 .get = userns_get,
901 .put = userns_put,
902 .install = userns_install,
903};
904
Pavel Emelyanov61642812011-01-12 17:00:46 -0800905static __init int user_namespaces_init(void)
906{
907 user_ns_cachep = KMEM_CACHE(user_namespace, SLAB_PANIC);
908 return 0;
909}
Paul Gortmakerc96d6662014-04-03 14:48:35 -0700910subsys_initcall(user_namespaces_init);