]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
mtd: diskonchip: Cast an operand to prevent potential overflow
authorZichen Xie <zichenxie0106@gmail.com>
Wed, 23 Oct 2024 21:13:10 +0000 (16:13 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 Jan 2025 09:34:11 +0000 (10:34 +0100)
commitee33d36f4174fbc58b44acb9ceca0dad1907fdeb
treec1ddeef99559adbc9fb3182834a04fcb3843c1a7
parentb186b36a7c2129947c42d6f3bde46cac38f5ddeb
mtd: diskonchip: Cast an operand to prevent potential overflow

commit 9b458e8be0d13e81ed03fffa23f8f9b528bbd786 upstream.

There may be a potential integer overflow issue in inftl_partscan().
parts[0].size is defined as "uint64_t"  while mtd->erasesize and
ip->firstUnit are defined as 32-bit unsigned integer. The result of
the calculation will be limited to 32 bits without correct casting.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Zichen Xie <zichenxie0106@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/mtd/nand/raw/diskonchip.c