]> git.baikalelectronics.ru Git - kernel.git/commit
vfs: Fix a regression in mounting proc
authorEric W. Biederman <ebiederm@xmission.com>
Fri, 15 Nov 2013 05:22:25 +0000 (21:22 -0800)
committerEric W. Biederman <ebiederm@xmission.com>
Wed, 27 Nov 2013 04:54:52 +0000 (20:54 -0800)
commit4520f608bc86ec827c16dbc1a2caa38bd1445eed
tree1e91ad4811270d5fb3fd8bd64cd5cf096272c5d8
parentd49603db7f0eff920934f65270b7c2af4b62335b
vfs: Fix a regression in mounting proc

Gao feng <gaofeng@cn.fujitsu.com> reported that commit
cf39425ff2e6254a8a4cf94ec42d509eedd9f92a
userns: Better restrictions on when proc and sysfs can be mounted
caused a regression on mounting a new instance of proc in a mount
namespace created with user namespace privileges, when binfmt_misc
is mounted on /proc/sys/fs/binfmt_misc.

This is an unintended regression caused by the absolutely bogus empty
directory check in fs_fully_visible.  The check fs_fully_visible replaced
didn't even bother to attempt to verify proc was fully visible and
hiding proc files with any kind of mount is rare.  So for now fix
the userspace regression by allowing directory with nlink == 1
as /proc/sys/fs/binfmt_misc has.

I will have a better patch but it is not stable material, or
last minute kernel material.  So it will have to wait.

Cc: stable@vger.kernel.org
Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Acked-by: Gao feng <gaofeng@cn.fujitsu.com>
Tested-by: Gao feng <gaofeng@cn.fujitsu.com>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
fs/namespace.c