public inbox for linux-i2c@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] i2c: tegra: check msg length in SMBUS block read
@ 2025-03-20 13:21 Akhil R
  2025-03-21 12:28 ` Thierry Reding
  0 siblings, 1 reply; 6+ messages in thread
From: Akhil R @ 2025-03-20 13:21 UTC (permalink / raw)
  To: ldewangan, digetx, andi.shyti, thierry.reding, jonathanh, wsa,
	linux-i2c, linux-tegra, linux-kernel
  Cc: Akhil R

For SMBUS block read, do not continue to read if the message length
passed from the device is '0' or greater than the maximum allowed bytes.

Signed-off-by: Akhil R <akhilrajeev@nvidia.com>
---
v1->v2: Add check for the maximum data as well.

 drivers/i2c/busses/i2c-tegra.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/i2c/busses/i2c-tegra.c b/drivers/i2c/busses/i2c-tegra.c
index 87976e99e6d0..049b4d154c23 100644
--- a/drivers/i2c/busses/i2c-tegra.c
+++ b/drivers/i2c/busses/i2c-tegra.c
@@ -1395,6 +1395,11 @@ static int tegra_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
 			ret = tegra_i2c_xfer_msg(i2c_dev, &msgs[i], MSG_END_CONTINUE);
 			if (ret)
 				break;
+
+			/* Validate message length before proceeding */
+			if (msgs[i].buf[0] == 0 || msgs[i].buf[0] > I2C_SMBUS_BLOCK_MAX)
+				break;
+
 			/* Set the msg length from first byte */
 			msgs[i].len += msgs[i].buf[0];
 			dev_dbg(i2c_dev->dev, "reading %d bytes\n", msgs[i].len);
-- 
2.43.2


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

end of thread, other threads:[~2025-04-03 16:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-20 13:21 [PATCH v2] i2c: tegra: check msg length in SMBUS block read Akhil R
2025-03-21 12:28 ` Thierry Reding
2025-03-21 13:09   ` Akhil R
2025-03-24  4:07     ` Akhil R
2025-03-25 17:14     ` Thierry Reding
2025-04-03 16:05       ` Akhil R

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox