[PATCH] mtd: terminate user-provided string
Brian Norris
computersforpeace at gmail.com
Mon Jul 21 19:08:13 PDT 2014
Noticed by Coverity as a potential security issue.
Signed-off-by: Brian Norris <computersforpeace at gmail.com>
---
Untested for now. Maybe I'll scrape together a test before applying, then it'd
be worth sending -stable.
drivers/mtd/mtdchar.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c
index a0f54e80670c..53563955931b 100644
--- a/drivers/mtd/mtdchar.c
+++ b/drivers/mtd/mtdchar.c
@@ -549,6 +549,9 @@ static int mtdchar_blkpg_ioctl(struct mtd_info *mtd,
if (mtd_is_partition(mtd))
return -EINVAL;
+ /* Sanitize user input */
+ p.devname[BLKPG_DEVNAMELTH - 1] = '\0';
+
return mtd_add_partition(mtd, p.devname, p.start, p.length);
case BLKPG_DEL_PARTITION:
--
1.9.1
More information about the linux-mtd
mailing list