]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commit
Btrfs: error out if generic_bin_search get invalid arguments
authorLiu Bo <bo.li.liu@oracle.com>
Thu, 23 Jun 2016 23:32:45 +0000 (16:32 -0700)
committerDavid Sterba <dsterba@suse.com>
Tue, 26 Jul 2016 11:52:25 +0000 (13:52 +0200)
commit5e24e9af01abcb151173bb133f1a72b94239c670
treeacaaca007c5763a9f6309de02fa4459946132e67
parent6fb37b756acce6d6e045f79c3764206033f617b4
Btrfs: error out if generic_bin_search get invalid arguments

With btrfs-corrupt-block, one can set btree node/leaf's field, if
we assign a negative value to node/leaf, we can get various hangs,
eg. if extent_root's nritems is -2ULL, then we get stuck in
 btrfs_read_block_groups() because it has a while loop and
btrfs_search_slot() on extent_root will always return the first
 child.

This lets us know what's happening and returns a EINVAL to callers
instead of returning the first item.

Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/ctree.c