mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
mtd: require write permissions for locking and badblock ioctls
[ Upstream commit1e97743fd1] MEMLOCK, MEMUNLOCK and OTPLOCK modify protection bits. Thus require write permission. Depending on the hardware MEMLOCK might even be write-once, e.g. for SPI-NOR flashes with their WP# tied to GND. OTPLOCK is always write-once. MEMSETBADBLOCK modifies the bad block table. Fixes:f7e6b19bc7("mtd: properly check all write ioctls for permissions") Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Rafał Miłecki <rafal@milecki.pl> Acked-by: Richard Weinberger <richard@nod.at> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20210303155735.25887-1-michael@walle.cc Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
45eb038029
commit
7b6552719c
@@ -651,16 +651,12 @@ static int mtdchar_ioctl(struct file *file, u_int cmd, u_long arg)
|
|||||||
case MEMGETINFO:
|
case MEMGETINFO:
|
||||||
case MEMREADOOB:
|
case MEMREADOOB:
|
||||||
case MEMREADOOB64:
|
case MEMREADOOB64:
|
||||||
case MEMLOCK:
|
|
||||||
case MEMUNLOCK:
|
|
||||||
case MEMISLOCKED:
|
case MEMISLOCKED:
|
||||||
case MEMGETOOBSEL:
|
case MEMGETOOBSEL:
|
||||||
case MEMGETBADBLOCK:
|
case MEMGETBADBLOCK:
|
||||||
case MEMSETBADBLOCK:
|
|
||||||
case OTPSELECT:
|
case OTPSELECT:
|
||||||
case OTPGETREGIONCOUNT:
|
case OTPGETREGIONCOUNT:
|
||||||
case OTPGETREGIONINFO:
|
case OTPGETREGIONINFO:
|
||||||
case OTPLOCK:
|
|
||||||
case ECCGETLAYOUT:
|
case ECCGETLAYOUT:
|
||||||
case ECCGETSTATS:
|
case ECCGETSTATS:
|
||||||
case MTDFILEMODE:
|
case MTDFILEMODE:
|
||||||
@@ -671,9 +667,13 @@ static int mtdchar_ioctl(struct file *file, u_int cmd, u_long arg)
|
|||||||
/* "dangerous" commands */
|
/* "dangerous" commands */
|
||||||
case MEMERASE:
|
case MEMERASE:
|
||||||
case MEMERASE64:
|
case MEMERASE64:
|
||||||
|
case MEMLOCK:
|
||||||
|
case MEMUNLOCK:
|
||||||
|
case MEMSETBADBLOCK:
|
||||||
case MEMWRITEOOB:
|
case MEMWRITEOOB:
|
||||||
case MEMWRITEOOB64:
|
case MEMWRITEOOB64:
|
||||||
case MEMWRITE:
|
case MEMWRITE:
|
||||||
|
case OTPLOCK:
|
||||||
if (!(file->f_mode & FMODE_WRITE))
|
if (!(file->f_mode & FMODE_WRITE))
|
||||||
return -EPERM;
|
return -EPERM;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user