You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
btrfs: tree-checker: check item_size for dev_item
commit ea1d1ca402 upstream.
Check item size before accessing the device item to avoid out of bound
access, similar to inode_item check.
Signed-off-by: Su Yue <l@damenly.su>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5c967dd073
commit
72a5b01875
@@ -947,6 +947,7 @@ static int check_dev_item(struct extent_buffer *leaf,
|
||||
struct btrfs_key *key, int slot)
|
||||
{
|
||||
struct btrfs_dev_item *ditem;
|
||||
const u32 item_size = btrfs_item_size_nr(leaf, slot);
|
||||
|
||||
if (key->objectid != BTRFS_DEV_ITEMS_OBJECTID) {
|
||||
dev_item_err(leaf, slot,
|
||||
@@ -954,6 +955,13 @@ static int check_dev_item(struct extent_buffer *leaf,
|
||||
key->objectid, BTRFS_DEV_ITEMS_OBJECTID);
|
||||
return -EUCLEAN;
|
||||
}
|
||||
|
||||
if (unlikely(item_size != sizeof(*ditem))) {
|
||||
dev_item_err(leaf, slot, "invalid item size: has %u expect %zu",
|
||||
item_size, sizeof(*ditem));
|
||||
return -EUCLEAN;
|
||||
}
|
||||
|
||||
ditem = btrfs_item_ptr(leaf, slot, struct btrfs_dev_item);
|
||||
if (btrfs_device_id(leaf, ditem) != key->offset) {
|
||||
dev_item_err(leaf, slot,
|
||||
|
||||
Reference in New Issue
Block a user