]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit
ceph: clean up unsafe d_parent accesses in build_dentry_path
authorJeff Layton <jlayton@redhat.com>
Thu, 15 Dec 2016 13:37:57 +0000 (08:37 -0500)
committerThadeu Lima de Souza Cascardo <cascardo@canonical.com>
Wed, 1 Nov 2017 18:49:09 +0000 (16:49 -0200)
commit08764e7a3fbfc99fd98a11dd01dddb986c802ebc
treecd69693b05e102705271dd02e5f8f0860eee6b60
parent731ffd0f43acab676ebdad3c7c174e991a573e8d
ceph: clean up unsafe d_parent accesses in build_dentry_path

BugLink: http://bugs.launchpad.net/bugs/1729105
[ Upstream commit c6b0b656ca24ede6657abb4a2cd910fa9c1879ba ]

While we hold a reference to the dentry when build_dentry_path is
called, we could end up racing with a rename that changes d_parent.
Handle that situation correctly, by using the rcu_read_lock to
ensure that the parent dentry and inode stick around long enough
to safely check ceph_snap and ceph_ino.

Link: http://tracker.ceph.com/issues/18148
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: Yan, Zheng <zyan@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ceph/mds_client.c