mirror of
https://git.proxmox.com/git/grub2
synced 2025-08-03 12:33:35 +00:00
fs/btrfs: Validate the number of stripes/parities in RAID5/6
This prevents a divide by zero if nstripes == nparities, and also prevents propagation of invalid values if nstripes ends up less than nparities. Signed-off-by: Daniel Axtens <dja@axtens.net> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
e18a000738
commit
b88a82e78c
@ -1083,6 +1083,9 @@ grub_btrfs_read_logical (struct grub_btrfs_data *data, grub_disk_addr_t addr,
|
||||
* stripen is computed without the parities
|
||||
* (0 for A0, A1, A2, 1 for B0, B1, B2, etc.).
|
||||
*/
|
||||
if (nparities >= nstripes)
|
||||
return grub_error (GRUB_ERR_BAD_FS,
|
||||
"invalid RAID5/6: nparities >= nstripes");
|
||||
high = grub_divmod64 (stripe_nr, nstripes - nparities, &stripen);
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user