* [PATCH] i2c: dev: fix potential memory leak in i2cdev_ioctl_rdwr
@ 2019-05-07 14:20 Yingjoe Chen
2019-05-27 18:59 ` Wolfram Sang
0 siblings, 1 reply; 2+ messages in thread
From: Yingjoe Chen @ 2019-05-07 14:20 UTC (permalink / raw)
To: Wolfram Sang, Jean Delvare
Cc: srv_heupstream, linux-kernel, linux-mediatek, linux-i2c,
Yingjoe Chen, linux-arm-kernel
If I2C_M_RECV_LEN check failed, msgs[i].buf allocated by memdup_user
will not be freed. Pump index up so it will be freed.
Fixes: 838bfa6049fb ("i2c-dev: Add support for I2C_M_RECV_LEN")
Signed-off-by: Yingjoe Chen <yingjoe.chen@mediatek.com>
---
Only check arm64 defconfig build pass.
I haven't test it since it just fix memleak for error cases.
---
drivers/i2c/i2c-dev.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/i2c/i2c-dev.c b/drivers/i2c/i2c-dev.c
index 3f7b9af..776f366 100644
--- a/drivers/i2c/i2c-dev.c
+++ b/drivers/i2c/i2c-dev.c
@@ -283,6 +283,7 @@ static noinline int i2cdev_ioctl_rdwr(struct i2c_client *client,
msgs[i].len < 1 || msgs[i].buf[0] < 1 ||
msgs[i].len < msgs[i].buf[0] +
I2C_SMBUS_BLOCK_MAX) {
+ i++;
res = -EINVAL;
break;
}
--
1.9.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] i2c: dev: fix potential memory leak in i2cdev_ioctl_rdwr
2019-05-07 14:20 [PATCH] i2c: dev: fix potential memory leak in i2cdev_ioctl_rdwr Yingjoe Chen
@ 2019-05-27 18:59 ` Wolfram Sang
0 siblings, 0 replies; 2+ messages in thread
From: Wolfram Sang @ 2019-05-27 18:59 UTC (permalink / raw)
To: Yingjoe Chen
Cc: srv_heupstream, linux-kernel, linux-mediatek, linux-i2c,
Jean Delvare, linux-arm-kernel
[-- Attachment #1.1: Type: text/plain, Size: 371 bytes --]
On Tue, May 07, 2019 at 10:20:32PM +0800, Yingjoe Chen wrote:
> If I2C_M_RECV_LEN check failed, msgs[i].buf allocated by memdup_user
> will not be freed. Pump index up so it will be freed.
>
> Fixes: 838bfa6049fb ("i2c-dev: Add support for I2C_M_RECV_LEN")
> Signed-off-by: Yingjoe Chen <yingjoe.chen@mediatek.com>
Nice catch. Applied to for-current, thanks!
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-05-27 19:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-07 14:20 [PATCH] i2c: dev: fix potential memory leak in i2cdev_ioctl_rdwr Yingjoe Chen
2019-05-27 18:59 ` Wolfram Sang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).