]> git.karo-electronics.de Git - karo-tx-linux.git/commit
do_add_mount()/umount -l races
authorAl Viro <viro@zeniv.linux.org.uk>
Fri, 21 Sep 2012 12:19:02 +0000 (08:19 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Fri, 21 Sep 2012 12:19:02 +0000 (08:19 -0400)
commit319074ee92c16eb4739653eba96ad1114943ed25
tree5ab80e881e6319911b9464ef24868621a819058e
parentceeb16d9cc8340a78d0452c5d6363f1a8acdb7c3
do_add_mount()/umount -l races

normally we deal with lock_mount()/umount races by checking that
mountpoint to be is still in our namespace after lock_mount() has
been done.  However, do_add_mount() skips that check when called
with MNT_SHRINKABLE in flags (i.e. from finish_automount()).  The
reason is that ->mnt_ns may be a temporary namespace created exactly
to contain automounts a-la NFS4 referral handling.  It's not the
namespace of the caller, though, so check_mnt() would fail here.
We still need to check that ->mnt_ns is non-NULL in that case,
though.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/namespace.c