forked from Imagelibrary/rtems
fat: Fix for invalid cluster sizes
A cluster size > 32KiB resulted in an infinite loop in fat_init_volume_info() due to an integer overflow. Update #2717.
This commit is contained in:
@@ -574,12 +574,14 @@ fat_init_volume_info(fat_fs_info_t *fs_info, const char *device)
|
||||
/*
|
||||
* "bytes per cluster" value greater than 32K is invalid
|
||||
*/
|
||||
if ((vol->bpc = vol->bps << vol->spc_log2) > MS_BYTES_PER_CLUSTER_LIMIT)
|
||||
if (vol->bps > (MS_BYTES_PER_CLUSTER_LIMIT >> vol->spc_log2))
|
||||
{
|
||||
close(vol->fd);
|
||||
rtems_set_errno_and_return_minus_one(EINVAL);
|
||||
}
|
||||
|
||||
vol->bpc = vol->bps << vol->spc_log2;
|
||||
|
||||
for (vol->bpc_log2 = 0, i = vol->bpc; (i & 1) == 0;
|
||||
i >>= 1, vol->bpc_log2++);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user