aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2014-12-05 19:01:11 -0500
committerEric W. Biederman <ebiederm@xmission.com>2014-12-09 17:58:40 -0500
commit273d2c67c3e179adb1e74f403d1e9a06e3f841b5 (patch)
tree500bf14c930ea5c1db4c40dec54d95a00085552c
parent0542f17bf2c1f2430d368f44c8fcf2f82ec9e53e (diff)
userns: Don't allow setgroups until a gid mapping has been setablished
setgroups is unique in not needing a valid mapping before it can be called, in the case of setgroups(0, NULL) which drops all supplemental groups. The design of the user namespace assumes that CAP_SETGID can not actually be used until a gid mapping is established. Therefore add a helper function to see if the user namespace gid mapping has been established and call that function in the setgroups permission check. This is part of the fix for CVE-2014-8989, being able to drop groups without privilege using user namespaces. Cc: stable@vger.kernel.org Reviewed-by: Andy Lutomirski <luto@amacapital.net> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
-rw-r--r--include/linux/user_namespace.h5
-rw-r--r--kernel/groups.c4
-rw-r--r--kernel/user_namespace.c14
3 files changed, 22 insertions, 1 deletions
diff --git a/include/linux/user_namespace.h b/include/linux/user_namespace.h
index e95372654f09..8d493083486a 100644
--- a/include/linux/user_namespace.h
+++ b/include/linux/user_namespace.h
@@ -63,6 +63,7 @@ extern const struct seq_operations proc_projid_seq_operations;
63extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *); 63extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
64extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *); 64extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
65extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *); 65extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
66extern bool userns_may_setgroups(const struct user_namespace *ns);
66#else 67#else
67 68
68static inline struct user_namespace *get_user_ns(struct user_namespace *ns) 69static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
@@ -87,6 +88,10 @@ static inline void put_user_ns(struct user_namespace *ns)
87{ 88{
88} 89}
89 90
91static inline bool userns_may_setgroups(const struct user_namespace *ns)
92{
93 return true;
94}
90#endif 95#endif
91 96
92#endif /* _LINUX_USER_H */ 97#endif /* _LINUX_USER_H */
diff --git a/kernel/groups.c b/kernel/groups.c
index 02d8a251c476..664411f171b5 100644
--- a/kernel/groups.c
+++ b/kernel/groups.c
@@ -6,6 +6,7 @@
6#include <linux/slab.h> 6#include <linux/slab.h>
7#include <linux/security.h> 7#include <linux/security.h>
8#include <linux/syscalls.h> 8#include <linux/syscalls.h>
9#include <linux/user_namespace.h>
9#include <asm/uaccess.h> 10#include <asm/uaccess.h>
10 11
11/* init to 2 - one for init_task, one to ensure it is never freed */ 12/* init to 2 - one for init_task, one to ensure it is never freed */
@@ -217,7 +218,8 @@ bool may_setgroups(void)
217{ 218{
218 struct user_namespace *user_ns = current_user_ns(); 219 struct user_namespace *user_ns = current_user_ns();
219 220
220 return ns_capable(user_ns, CAP_SETGID); 221 return ns_capable(user_ns, CAP_SETGID) &&
222 userns_may_setgroups(user_ns);
221} 223}
222 224
223/* 225/*
diff --git a/kernel/user_namespace.c b/kernel/user_namespace.c
index b99c862a2e3f..27c8dab48c07 100644
--- a/kernel/user_namespace.c
+++ b/kernel/user_namespace.c
@@ -843,6 +843,20 @@ static bool new_idmap_permitted(const struct file *file,
843 return false; 843 return false;
844} 844}
845 845
846bool userns_may_setgroups(const struct user_namespace *ns)
847{
848 bool allowed;
849
850 mutex_lock(&id_map_mutex);
851 /* It is not safe to use setgroups until a gid mapping in
852 * the user namespace has been established.
853 */
854 allowed = ns->gid_map.nr_extents != 0;
855 mutex_unlock(&id_map_mutex);
856
857 return allowed;
858}
859
846static void *userns_get(struct task_struct *task) 860static void *userns_get(struct task_struct *task)
847{ 861{
848 struct user_namespace *user_ns; 862 struct user_namespace *user_ns;