[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1422223060-8561-1-git-send-email-richard@nod.at>
Date: Sun, 25 Jan 2015 22:57:40 +0100
From: Richard Weinberger <richard@....at>
To: viro@...iv.linux.org.uk
Cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
Richard Weinberger <richard@....at>
Subject: [PATCH] fs: Detect API misuse of i_op->lookup
Hunting down a refcount issue in an out-of-tree filesystem uncovered
that its lookup function directly returned the dentry which was passed to it.
Add a BUG_ON() to detect such misuse in future.
Signed-off-by: Richard Weinberger <richard@....at>
---
fs/namei.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/namei.c b/fs/namei.c
index bc35b02..f8ccae6 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -1370,6 +1370,7 @@ static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
old = dir->i_op->lookup(dir, dentry, flags);
if (unlikely(old)) {
+ BUG_ON(old == dentry);
dput(dentry);
dentry = old;
}
--
2.2.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists