Files
i2c-tools/i2ctransfer-zero-out-memory-passed-to-ioctl.patch
Jean Delvare 2233f80fdb - i2ctransfer-dont-link-with-libi2c.patch: Don't link i2ctransfer
with libi2c.
- i2ctransfer-dont-free-memory-which-was-never-allocated.patch,
  i2ctransfer-prevent-msgs-overflow-with-many-parameters.patch:
  Prevent a stack overflow when too many command line parameters
  are passed to i2ctransfer (bko#220112).
- i2ctransfer-zero-out-memory-passed-to-ioctl.patch: Sanitize the
  memory passed to ioctl().

OBS-URL: https://build.opensuse.org/package/show/Base:System/i2c-tools?expand=0&rev=70
2025-05-19 17:12:55 +00:00

51 lines
1.8 KiB
Diff

From: Jean Delvare <jdelvare@suse.de>
Date: Tue, 13 May 2025 17:35:39 +0200
Subject: i2ctransfer: Zero out memory passed to ioctl()
Git-commit: ea51da725b743da00b894dfdc4ab189f5a51e90e
Patch-mainline: yes
Valgrind complains that uninitialized memory may be passed to
ioctl():
== Syscall param ioctl(I2C_RDWR) points to uninitialised byte(s)
== at 0x499382B: ioctl (in /lib64/libc.so.6)
== by 0x401957: main (i2ctransfer.c:343)
== Address 0x1ffefff94c is on thread 1's stack
== in frame #1, created by main (i2ctransfer.c:144)
==
== Syscall param ioctl(I2C_RDWR).msgs points to uninitialised byte(s)
== at 0x499382B: ioctl (in /lib64/libc.so.6)
== by 0x401957: main (i2ctransfer.c:343)
== Address 0x1ffefff956 is on thread 1's stack
== in frame #1, created by main (i2ctransfer.c:144)
Zero out the i2c_rdwr_ioctl_data struct as well as the msgs array to
guarantee that no uninitialized memory will ever be passed to the
kernel.
Signed-off-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
diff --git a/tools/i2ctransfer.c b/tools/i2ctransfer.c
index 8d40b49ba80e..4db98e3593a0 100644
--- a/tools/i2ctransfer.c
+++ b/tools/i2ctransfer.c
@@ -149,8 +149,7 @@ int main(int argc, char *argv[])
enum parse_state state = PARSE_GET_DESC;
unsigned int buf_idx = 0;
- for (i = 0; i < I2C_RDRW_IOCTL_MAX_MSGS; i++)
- msgs[i].buf = NULL;
+ memset(msgs, 0, sizeof(msgs));
/* handle (optional) flags first */
while ((opt = getopt(argc, argv, "abfhvVy")) != -1) {
@@ -334,6 +333,7 @@ int main(int argc, char *argv[])
struct i2c_rdwr_ioctl_data rdwr;
unsigned int print_flags = PRINT_READ_BUF;
+ memset(&rdwr, 0, sizeof(rdwr));
rdwr.msgs = msgs;
rdwr.nmsgs = nmsgs;
nmsgs_sent = ioctl(file, I2C_RDWR, &rdwr);