All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][next] gpio: xilinx: Fix potential integer overflow on shift of a u32 int
@ 2021-05-13  8:52 ` Colin King
  0 siblings, 0 replies; 18+ messages in thread
From: Colin King @ 2021-05-13  8:52 UTC (permalink / raw)
  To: Shubhrajyoti Datta, Srinivas Neeli, Michal Simek, Linus Walleij,
	Bartosz Golaszewski, Andy Shevchenko, linux-gpio,
	linux-arm-kernel
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

The left shift of the u32 integer v is evaluated using 32 bit
arithmetic and then assigned to a u64 integer. There are cases
where v will currently overflow on the shift. Avoid this by
casting it to unsigned long (same type as map[]) before shifting
it.

Addresses-Coverity: ("Unintentional integer overflow")
Fixes: 02b3f84d9080 ("gpio: xilinx: Switch to use bitmap APIs")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/gpio/gpio-xilinx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-xilinx.c b/drivers/gpio/gpio-xilinx.c
index 109b32104867..164a3a5a9393 100644
--- a/drivers/gpio/gpio-xilinx.c
+++ b/drivers/gpio/gpio-xilinx.c
@@ -99,7 +99,7 @@ static inline void xgpio_set_value32(unsigned long *map, int bit, u32 v)
 	const unsigned long offset = (bit % BITS_PER_LONG) & BIT(5);
 
 	map[index] &= ~(0xFFFFFFFFul << offset);
-	map[index] |= v << offset;
+	map[index] |= (unsigned long)v << offset;
 }
 
 static inline int xgpio_regoffset(struct xgpio_instance *chip, int ch)
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2021-05-17 13:51 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-13  8:52 [PATCH][next] gpio: xilinx: Fix potential integer overflow on shift of a u32 int Colin King
2021-05-13  8:52 ` Colin King
2021-05-13  9:10 ` David Laight
2021-05-13  9:10   ` David Laight
2021-05-17  7:04   ` Andy Shevchenko
2021-05-17  7:04     ` Andy Shevchenko
2021-05-14  5:37 ` Dan Carpenter
2021-05-14  5:37   ` Dan Carpenter
2021-05-17  7:07   ` Andy Shevchenko
2021-05-17  7:07     ` Andy Shevchenko
2021-05-17 13:36     ` Dan Carpenter
2021-05-17 13:36       ` Dan Carpenter
2021-05-17 13:49       ` Andy Shevchenko
2021-05-17 13:49         ` Andy Shevchenko
2021-05-17  7:03 ` Andy Shevchenko
2021-05-17  7:03   ` Andy Shevchenko
2021-05-17  7:32   ` Andy Shevchenko
2021-05-17  7:32     ` Andy Shevchenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.