[Devel] [PATCH rh7 13/14] dcache: d_splice_alias should detect loops

Andrey Ryabinin aryabinin at virtuozzo.com
Mon Jun 10 18:13:59 MSK 2019


From: "J. Bruce Fields" <bfields at redhat.com>

I believe this can only happen in the case of a corrupted filesystem.
So -EIO looks like the appropriate error.

Signed-off-by: J. Bruce Fields <bfields at redhat.com>
Signed-off-by: Al Viro <viro at zeniv.linux.org.uk>
(cherry picked from commit 95ad5c291313b66a98a44dc92b57e0b37c1dd589)
Signed-off-by: Andrey Ryabinin <aryabinin at virtuozzo.com>
---
 fs/dcache.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/fs/dcache.c b/fs/dcache.c
index f33f43e77449..a1be93d7101d 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -2832,6 +2832,11 @@ struct dentry *d_splice_alias(struct inode *inode, struct dentry *dentry)
 				dput(new);
 				return ERR_PTR(-EIO);
 			}
+			if (d_ancestor(new, dentry)) {
+				spin_unlock(&inode->i_lock);
+				dput(new);
+				return ERR_PTR(-EIO);
+			}
 			write_seqlock(&rename_lock);
 			__d_materialise_dentry(dentry, new);
 			write_sequnlock(&rename_lock);
-- 
2.21.0



More information about the Devel mailing list