[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1341367205-29571-1-git-send-email-yan@linux.vnet.ibm.com>
Date: Wed, 4 Jul 2012 10:00:05 +0800
From: Guo Chao <yan@...ux.vnet.ibm.com>
To: viro@...iv.linux.org.uk
Cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] Trig a BUG when kern_path see LOOKUP_ROOT in flag
kern_path does not prepare for LOOKUP_ROOT, if this flag is passed down,
path_init will reference uninitialized nameidata. When things go wrong, it will
not be as obvious as dereferencing a null pointer. Kindly trig a bug here.
Signed-off-by: Guo Chao <yan@...ux.vnet.ibm.com>
---
fs/namei.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/fs/namei.c b/fs/namei.c
index 1b64746..2b8c226 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -1888,6 +1888,9 @@ struct dentry *kern_path_locked(const char *name, struct path *path)
int kern_path(const char *name, unsigned int flags, struct path *path)
{
struct nameidata nd;
+
+ BUG_ON(flags & LOOKUP_ROOT);
+
int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
if (!res)
*path = nd.path;
--
1.7.9.5
--
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