linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] namei: revalidate negative dentry before return -ENOENT
@ 2015-10-09  9:01 Yan, Zheng
  0 siblings, 0 replies; only message in thread
From: Yan, Zheng @ 2015-10-09  9:01 UTC (permalink / raw)
  To: viro; +Cc: linux-fsdevel, Yan, Zheng

After commit 766c4cbf "namei: d_is_negative() should be checked
before ->d_seq validation", lookup_fast() can return -ENOENT without
revalidating the negative dentry. This breaks network filesystems
that allow creating/deleting files from multiple hosts.

Signed-off-by: Yan, Zheng <zyan@redhat.com>
---
 fs/namei.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/fs/namei.c b/fs/namei.c
index 726d211..5ffbf53 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -1558,8 +1558,6 @@ static int lookup_fast(struct nameidata *nd,
 		negative = d_is_negative(dentry);
 		if (read_seqcount_retry(&dentry->d_seq, seq))
 			return -ECHILD;
-		if (negative)
-			return -ENOENT;
 
 		/*
 		 * This sequence count validates that the parent had no
@@ -1580,6 +1578,10 @@ static int lookup_fast(struct nameidata *nd,
 				goto unlazy;
 			}
 		}
+
+		if (negative)
+			return -ENOENT;
+
 		path->mnt = mnt;
 		path->dentry = dentry;
 		if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
-- 
1.9.3


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-10-09  9:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-09  9:01 [PATCH] namei: revalidate negative dentry before return -ENOENT Yan, Zheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).