summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Liu <jeff.liu@oracle.com>2013-08-08 12:55:37 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2013-08-08 12:55:37 +1000
commit5b33e87a083a244b106a2aaa3c4d1dc5378efe1c (patch)
treec943375763f822c222caf8436c5c63145c615cfc
parent1dbf693c5766ce58e2793068130275d0778f8b80 (diff)
ocfs2: fix null pointer dereference in ocfs2_dir_foreach_blk_id()
Fix a NULL pointer deference while removing an empty directory, which was introduced by 3704412bdbf3 ("[readdir] convert ocfs2"). BUG: unable to handle kernel NULL pointer dereference at (null) IP: [< (null)>] (null) PGD 6da85067 PUD 6da89067 PMD 0 Oops: 0010 [#1] SMP CPU: 0 PID: 6564 Comm: rmdir Tainted: G O 3.11.0-rc1 #4 RIP: 0010:[<0000000000000000>] [< (null)>] (null) Call Trace: [<ffffffffa038a30e>] ? ocfs2_dir_foreach_blk_id+0x17e/0x220 [ocfs2] [<ffffffffa038e5f9>] ocfs2_dir_foreach+0x49/0x50 [ocfs2] [<ffffffffa038ec2c>] ocfs2_empty_dir+0x12c/0x3e0 [ocfs2] [<ffffffffa03b3ade>] ocfs2_unlink+0x56e/0xc10 [ocfs2] [<ffffffff811b3a05>] vfs_rmdir+0xd5/0x140 [<ffffffff811b3c3b>] do_rmdir+0x1cb/0x1e0 [<ffffffff813697f4>] ? lockdep_sys_exit_thunk+0x35/0x67 [<ffffffff8136977e>] ? trace_hardirqs_on_thunk+0x3a/0x3f [<ffffffff811b6996>] SyS_rmdir+0x16/0x20 [<ffffffff816e2a82>] system_call_fastpath+0x16/0x1b Code: Bad RIP value. RIP [< (null)>] (null) RSP <ffff88006daddc10> CR2: 0000000000000000 Signed-off-by: Jie Liu <jeff.liu@oracle.com> Reported-by: David Weber <wb@munzinger.de> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Joel Becker <jlbec@evilplan.org> Cc: Mark Fasheh <mfasheh@suse.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--fs/ocfs2/dir.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/ocfs2/dir.c b/fs/ocfs2/dir.c
index eb760d8acd50..c91d98669284 100644
--- a/fs/ocfs2/dir.c
+++ b/fs/ocfs2/dir.c
@@ -2153,10 +2153,12 @@ int ocfs2_empty_dir(struct inode *inode)
{
int ret;
struct ocfs2_empty_dir_priv priv = {
- .ctx.actor = ocfs2_empty_dir_filldir
+ .ctx.actor = ocfs2_empty_dir_filldir,
+ .ctx.pos = 0,
};
- memset(&priv, 0, sizeof(priv));
+ memset(&priv + sizeof(struct dir_context), 0,
+ sizeof(priv) - sizeof(struct dir_context));
if (ocfs2_dir_indexed(inode)) {
ret = ocfs2_empty_dir_dx(inode, &priv);