mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-04 00:01:44 +00:00
mtd: mtdram: check offs and len in mtdram->erase
We should prevent user to erasing mtd device with an unaligned offset or length. Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
8a79959000
commit
7827e3acad
@ -32,8 +32,29 @@ MODULE_PARM_DESC(erase_size, "Device erase block size in KiB");
|
|||||||
// We could store these in the mtd structure, but we only support 1 device..
|
// We could store these in the mtd structure, but we only support 1 device..
|
||||||
static struct mtd_info *mtd_info;
|
static struct mtd_info *mtd_info;
|
||||||
|
|
||||||
|
static int check_offs_len(struct mtd_info *mtd, loff_t ofs, uint64_t len)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
/* Start address must align on block boundary */
|
||||||
|
if (ofs % mtd->erasesize) {
|
||||||
|
pr_debug("%s: unaligned address\n", __func__);
|
||||||
|
ret = -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Length must align on block boundary */
|
||||||
|
if (len % mtd->erasesize) {
|
||||||
|
pr_debug("%s: length not block aligned\n", __func__);
|
||||||
|
ret = -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static int ram_erase(struct mtd_info *mtd, struct erase_info *instr)
|
static int ram_erase(struct mtd_info *mtd, struct erase_info *instr)
|
||||||
{
|
{
|
||||||
|
if (check_offs_len(mtd, instr->addr, instr->len))
|
||||||
|
return -EINVAL;
|
||||||
memset((char *)mtd->priv + instr->addr, 0xff, instr->len);
|
memset((char *)mtd->priv + instr->addr, 0xff, instr->len);
|
||||||
instr->state = MTD_ERASE_DONE;
|
instr->state = MTD_ERASE_DONE;
|
||||||
mtd_erase_callback(instr);
|
mtd_erase_callback(instr);
|
||||||
|
Loading…
Reference in New Issue
Block a user