Btrfs: fix NULL pointer dereference in log_dir_items
authorLiu Bo <bo.liu@linux.alibaba.com>
Mon, 2 Apr 2018 17:59:47 +0000 (01:59 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 May 2018 05:50:41 +0000 (07:50 +0200)
commit14c4d5f6e9f39070f1cfdbf4483e4c7ddc827f52
tree58c32f21684d014fd90238f645e465c1f1dd549c
parentb38357528cd30e84942668352da8507cd4a0825b
Btrfs: fix NULL pointer dereference in log_dir_items

[ Upstream commit 80c0b4210a963e31529e15bf90519708ec947596 ]

0, 1 and <0 can be returned by btrfs_next_leaf(), and when <0 is
returned, path->nodes[0] could be NULL, log_dir_items lacks such a
check for <0 and we may run into a null pointer dereference panic.

Fixes: e02119d5a7b4 ("Btrfs: Add a write ahead tree log to optimize synchronous operations")
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: Liu Bo <bo.liu@linux.alibaba.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/btrfs/tree-log.c