summaryrefslogtreecommitdiffstats
path: root/kernel/user_namespace.c
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@redhat.com>2013-08-08 18:55:32 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2013-08-08 13:11:39 -0700
commit8742f229b635bf1c1c84a3dfe5e47c814c20b5c8 (patch)
tree3d9f64cf0c9d705b9f422d137c8067fa2d41f3c8 /kernel/user_namespace.c
parent55f5bfd4c94b923d965d47f5c1889ef8f98fcef1 (diff)
downloadop-kernel-dev-8742f229b635bf1c1c84a3dfe5e47c814c20b5c8.zip
op-kernel-dev-8742f229b635bf1c1c84a3dfe5e47c814c20b5c8.tar.gz
userns: limit the maximum depth of user_namespace->parent chain
Ensure that user_namespace->parent chain can't grow too much. Currently we use the hardroded 32 as limit. Reported-by: Andy Lutomirski <luto@amacapital.net> Signed-off-by: Oleg Nesterov <oleg@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/user_namespace.c')
-rw-r--r--kernel/user_namespace.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/user_namespace.c b/kernel/user_namespace.c
index 6e50a44..9064b91 100644
--- a/kernel/user_namespace.c
+++ b/kernel/user_namespace.c
@@ -62,6 +62,9 @@ int create_user_ns(struct cred *new)
kgid_t group = new->egid;
int ret;
+ if (parent_ns->level > 32)
+ return -EUSERS;
+
/*
* Verify that we can not violate the policy of which files
* may be accessed that is specified by the root directory,
@@ -92,6 +95,7 @@ int create_user_ns(struct cred *new)
atomic_set(&ns->count, 1);
/* Leave the new->user_ns reference with the new user namespace. */
ns->parent = parent_ns;
+ ns->level = parent_ns->level + 1;
ns->owner = owner;
ns->group = group;
OpenPOWER on IntegriCloud