btrfs: fix block group leak when removing fails
authorXiyu Yang <xiyuyang19@fudan.edu.cn>
Tue, 21 Apr 2020 02:54:11 +0000 (10:54 +0800)
committerDavid Sterba <dsterba@suse.com>
Thu, 23 Apr 2020 15:24:52 +0000 (17:24 +0200)
commitf6033c5e333238f299c3ae03fac8cc1365b23b77
treec3790aeb5cfc4238f320fffa97e4a629039f1480
parentef67963dac255b293e19815ea3d440567be4626f
btrfs: fix block group leak when removing fails

btrfs_remove_block_group() invokes btrfs_lookup_block_group(), which
returns a local reference of the block group that contains the given
bytenr to "block_group" with increased refcount.

When btrfs_remove_block_group() returns, "block_group" becomes invalid,
so the refcount should be decreased to keep refcount balanced.

The reference counting issue happens in several exception handling paths
of btrfs_remove_block_group(). When those error scenarios occur such as
btrfs_alloc_path() returns NULL, the function forgets to decrease its
refcnt increased by btrfs_lookup_block_group() and will cause a refcnt
leak.

Fix this issue by jumping to "out_put_group" label and calling
btrfs_put_block_group() when those error scenarios occur.

CC: stable@vger.kernel.org # 4.4+
Signed-off-by: Xiyu Yang <xiyuyang19@fudan.edu.cn>
Signed-off-by: Xin Tan <tanxin.ctf@gmail.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/block-group.c