]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
UBI: fix check for "too many bytes"
authorBrian Norris <computersforpeace@gmail.com>
Sat, 28 Feb 2015 10:23:28 +0000 (02:23 -0800)
committerZefan Li <lizefan@huawei.com>
Fri, 18 Sep 2015 01:20:25 +0000 (09:20 +0800)
commit 299d0c5b27346a77a0777c993372bf8777d4f2e5 upstream.

The comparison from the previous line seems to have been erroneously
(partially) copied-and-pasted onto the next. The second line should be
checking req.bytes, not req.lnum.

Coverity CID #139400

Signed-off-by: Brian Norris <computersforpeace@gmail.com>
[rw: Fixed comparison]
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Zefan Li <lizefan@huawei.com>
drivers/mtd/ubi/cdev.c

index ad76592fb2f485479570097cb616757c6c4d905b..7ac2c05783f3194b85e4b4de8238978878a4f04f 100644 (file)
@@ -475,7 +475,7 @@ static long vol_cdev_ioctl(struct file *file, unsigned int cmd,
                /* Validate the request */
                err = -EINVAL;
                if (req.lnum < 0 || req.lnum >= vol->reserved_pebs ||
-                   req.bytes < 0 || req.lnum >= vol->usable_leb_size)
+                   req.bytes < 0 || req.bytes > vol->usable_leb_size)
                        break;
                if (req.dtype != UBI_LONGTERM && req.dtype != UBI_SHORTTERM &&
                    req.dtype != UBI_UNKNOWN)