mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-19 12:29:02 +02:00
Btrfs: fix NULL pointer dereference in log_dir_items
[ Upstream commit80c0b4210a
] 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:e02119d5a7
("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>
This commit is contained in:
parent
afef64b108
commit
acfd8e8865
|
@ -3462,8 +3462,11 @@ static noinline int log_dir_items(struct btrfs_trans_handle *trans,
|
|||
* from this directory and from this transaction
|
||||
*/
|
||||
ret = btrfs_next_leaf(root, path);
|
||||
if (ret == 1) {
|
||||
last_offset = (u64)-1;
|
||||
if (ret) {
|
||||
if (ret == 1)
|
||||
last_offset = (u64)-1;
|
||||
else
|
||||
err = ret;
|
||||
goto done;
|
||||
}
|
||||
btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
|
||||
|
|
Loading…
Reference in New Issue
Block a user