]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
userns: unshare_userns(&cred) should not populate cred on failure
authorOleg Nesterov <oleg@redhat.com>
Tue, 6 Aug 2013 17:38:55 +0000 (19:38 +0200)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 6 Aug 2013 20:13:24 +0000 (13:13 -0700)
commit6160968cee8b90a5dd95318d716e31d7775c4ef3
tree3183e99bd38da761532685c045c2eac29c80b0b9
parentc095ba7224d8edc71dcef0d655911399a8bd4a3f
userns: unshare_userns(&cred) should not populate cred on failure

unshare_userns(new_cred) does *new_cred = prepare_creds() before
create_user_ns() which can fail. However, the caller expects that
it doesn't need to take care of new_cred if unshare_userns() fails.

We could change the single caller, sys_unshare(), but I think it
would be more clean to avoid the side effects on failure, so with
this patch unshare_userns() does put_cred() itself and initializes
*new_cred only if create_user_ns() succeeeds.

Cc: stable@vger.kernel.org
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Reviewed-by: Andy Lutomirski <luto@amacapital.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/user_namespace.c