From: syzbot <syzbot+f408eac9faa61d5a1927@syzkaller.appspotmail.com>
To: linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com
Subject: Forwarded: [PATCH] media: dw2102: fix OOB read on firmware size not a multiple of 64
Date: Thu, 06 Aug 2026 03:41:13 -0700 [thread overview]
Message-ID: <6a7464c9.b50370da.49fe0.000e.GAE@google.com> (raw)
In-Reply-To: <6a73bd4e.01d0871a.3a0d52.0007.GAE@google.com>
For archival purposes, forwarding an incoming command email to
linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com.
***
Subject: [PATCH] media: dw2102: fix OOB read on firmware size not a multiple of 64
Author: vasilisalmpanis@gmail.com
#syz test: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 848acc8ffe1b
diff --git a/drivers/media/usb/dvb-usb/dw2102.c b/drivers/media/usb/dvb-usb/dw2102.c
index 4fecf2f965e9..4e26e1776977 100644
--- a/drivers/media/usb/dvb-usb/dw2102.c
+++ b/drivers/media/usb/dvb-usb/dw2102.c
@@ -1902,9 +1902,11 @@ static int dw2102_load_firmware(struct usb_device *dev,
if (p) {
memcpy(p, fw->data, fw->size);
for (i = 0; i < fw->size; i += 0x40) {
+ int len = min_t(size_t, fw->size - i, 0x40);
+
b = (u8 *)p + i;
- if (dw210x_op_rw(dev, 0xa0, i, 0, b, 0x40,
- DW210X_WRITE_MSG) != 0x40) {
+ if (dw210x_op_rw(dev, 0xa0, i, 0, b, len,
+ DW210X_WRITE_MSG) != len) {
err("error while transferring firmware");
ret = -EINVAL;
break;
--
2.47.3
prev parent reply other threads:[~2026-08-06 10:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-05 22:46 [syzbot] [media?] KASAN: slab-out-of-bounds Read in dw210x_op_rw syzbot
2026-08-06 10:41 ` syzbot [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6a7464c9.b50370da.49fe0.000e.GAE@google.com \
--to=syzbot+f408eac9faa61d5a1927@syzkaller.appspotmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=syzkaller-bugs@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®