mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
synced 2025-09-25 16:49:33 +10:00
btrfs: exit after state split error at set_extent_bit()
[ Upstream commit 41d69d4d78
]
If split_state() returned an error we call extent_io_tree_panic() which
will trigger a BUG() call. However if CONFIG_BUG is disabled, which is an
uncommon and exotic scenario, then we fallthrough and hit a use after free
when calling set_state_bits() since the extent state record which the
local variable 'prealloc' points to was freed by split_state().
So jump to the label 'out' after calling extent_io_tree_panic() and set
the 'prealloc' pointer to NULL since split_state() has already freed it
when it hit an error.
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
7b4bf4d896
commit
3c04fafeb3
@ -1252,8 +1252,11 @@ hit_next:
|
||||
if (!prealloc)
|
||||
goto search_again;
|
||||
ret = split_state(tree, state, prealloc, end + 1);
|
||||
if (ret)
|
||||
if (ret) {
|
||||
extent_io_tree_panic(tree, state, "split", ret);
|
||||
prealloc = NULL;
|
||||
goto out;
|
||||
}
|
||||
|
||||
set_state_bits(tree, prealloc, bits, changeset);
|
||||
cache_state(prealloc, cached_state);
|
||||
|
Loading…
Reference in New Issue
Block a user