mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-04-05 21:45:49 -04:00
fw: Only allow sector aligned erase ops
This commit is contained in:
parent
a8f355e19a
commit
e1e964082f
@ -142,13 +142,18 @@ int storage_erase_sector(struct partition_table *part_table, uint32_t offset,
|
||||
return -3;
|
||||
}
|
||||
|
||||
/* Cannot only erase entire sectors */
|
||||
if (offset % 4096 != 0) {
|
||||
return -2;
|
||||
}
|
||||
|
||||
/* Cannot erase less than one sector */
|
||||
if (size < 4096 || size > SIZE_STORAGE_AREA ||
|
||||
size % 4096 != 0) {
|
||||
return -2;
|
||||
}
|
||||
|
||||
if ((offset) >= SIZE_STORAGE_AREA) {
|
||||
if ((offset + size) >= SIZE_STORAGE_AREA) {
|
||||
return -2;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user