blob: 648cf88c5d6d5b66c2c246be4820a8672f6ddc5e [file] [log] [blame]
Cedric Le Goateracce2922007-07-15 23:40:59 -07001#ifndef _LINUX_USER_NAMESPACE_H
2#define _LINUX_USER_NAMESPACE_H
3
4#include <linux/kref.h>
5#include <linux/nsproxy.h>
6#include <linux/sched.h>
Serge E. Hallyn77ec7392007-07-15 23:41:01 -07007#include <linux/err.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -07008
Eric W. Biederman22d917d2011-11-17 00:11:58 -08009#define UID_GID_MAP_MAX_EXTENTS 5
10
11struct uid_gid_map { /* 64 bytes -- 1 cache line */
12 u32 nr_extents;
13 struct uid_gid_extent {
14 u32 first;
15 u32 lower_first;
16 u32 count;
17 } extent[UID_GID_MAP_MAX_EXTENTS];
18};
19
Cedric Le Goateracce2922007-07-15 23:40:59 -070020struct user_namespace {
Eric W. Biederman22d917d2011-11-17 00:11:58 -080021 struct uid_gid_map uid_map;
22 struct uid_gid_map gid_map;
Eric W. Biedermanf76d2072012-08-30 01:24:05 -070023 struct uid_gid_map projid_map;
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080024 atomic_t count;
Eric W. Biedermanaeb3ae92011-11-16 21:59:43 -080025 struct user_namespace *parent;
Oleg Nesterov5c5f9cd2013-08-08 18:55:32 +020026 int level;
Eric W. Biederman783291e2011-11-17 01:32:59 -080027 kuid_t owner;
28 kgid_t group;
Eric W. Biederman98f842e2011-06-15 10:21:48 -070029 unsigned int proc_inum;
Eric W. Biederman87a8ebd2013-03-24 14:28:27 -070030 bool may_mount_sysfs;
31 bool may_mount_proc;
Cedric Le Goateracce2922007-07-15 23:40:59 -070032};
33
34extern struct user_namespace init_user_ns;
35
36#ifdef CONFIG_USER_NS
37
38static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
39{
40 if (ns)
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080041 atomic_inc(&ns->count);
Cedric Le Goateracce2922007-07-15 23:40:59 -070042 return ns;
43}
44
Serge Hallyn18b6e042008-10-15 16:38:45 -050045extern int create_user_ns(struct cred *new);
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -070046extern int unshare_userns(unsigned long unshare_flags, struct cred **new_cred);
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080047extern void free_user_ns(struct user_namespace *ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070048
49static inline void put_user_ns(struct user_namespace *ns)
50{
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080051 if (ns && atomic_dec_and_test(&ns->count))
52 free_user_ns(ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070053}
54
Eric W. Biederman22d917d2011-11-17 00:11:58 -080055struct seq_operations;
56extern struct seq_operations proc_uid_seq_operations;
57extern struct seq_operations proc_gid_seq_operations;
Eric W. Biedermanf76d2072012-08-30 01:24:05 -070058extern struct seq_operations proc_projid_seq_operations;
Eric W. Biederman22d917d2011-11-17 00:11:58 -080059extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
60extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
Eric W. Biedermanf76d2072012-08-30 01:24:05 -070061extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
Eric W. Biedermanfc9b65e2014-12-05 18:01:11 -060062extern bool userns_may_setgroups(const struct user_namespace *ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070063#else
64
65static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
66{
67 return &init_user_ns;
68}
69
Serge Hallyn18b6e042008-10-15 16:38:45 -050070static inline int create_user_ns(struct cred *new)
Cedric Le Goateracce2922007-07-15 23:40:59 -070071{
Serge Hallyn18b6e042008-10-15 16:38:45 -050072 return -EINVAL;
Cedric Le Goateracce2922007-07-15 23:40:59 -070073}
74
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -070075static inline int unshare_userns(unsigned long unshare_flags,
76 struct cred **new_cred)
77{
78 if (unshare_flags & CLONE_NEWUSER)
79 return -EINVAL;
80 return 0;
81}
82
Cedric Le Goateracce2922007-07-15 23:40:59 -070083static inline void put_user_ns(struct user_namespace *ns)
84{
85}
86
Eric W. Biedermanfc9b65e2014-12-05 18:01:11 -060087static inline bool userns_may_setgroups(const struct user_namespace *ns)
88{
89 return true;
90}
Eric W. Biederman22d917d2011-11-17 00:11:58 -080091#endif
92
Eric W. Biederman87a8ebd2013-03-24 14:28:27 -070093void update_mnt_policy(struct user_namespace *userns);
94
Cedric Le Goateracce2922007-07-15 23:40:59 -070095#endif /* _LINUX_USER_H */