btrfs-progs: Check the csum tree node before go through the csum tree
authorQu Wenruo <quwenruo@cn.fujitsu.com>
Tue, 30 Sep 2014 08:52:10 +0000 (16:52 +0800)
committerDavid Sterba <dsterba@suse.cz>
Wed, 1 Oct 2014 14:35:33 +0000 (16:35 +0200)
commit2c1b155988a9263bb5e4dc81c6a48c699f649789
tree6a4bef81c3c945763789c5f0c7153c394f5aa044
parent3fce2fa9a136ed79e32b50d5ba4c34ea521f59ef
btrfs-progs: Check the csum tree node before go through the csum tree

[BUG]
Some fsfuzzed btrfs image will cause btrfsck segfault.

[REPRODUCER]
Run btrfsck on a csum tree block corrupted image.

[REASON]
check_csums() function call btrfs_search_slot() on csum_tree but doesn't
check whether the csum_tree contains a valid extent_buffer, which causes
the segfault.

[FIX]
Check the csum_root->node before any search.

Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
cmds-check.c