#syz test
diff --git a/drivers/media/usb/dvb-usb-v2/az6007.c b/drivers/media/usb/dvb-usb-v2/az6007.c
index 65ef045b74ca..784cba9c15ef 100644
--- a/drivers/media/usb/dvb-usb-v2/az6007.c
+++ b/drivers/media/usb/dvb-usb-v2/az6007.c
@@ -751,6 +751,9 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
int length;
u8 req, addr;
+ if (!usb_trylock_device(d->udev))
+ return -EBUSY;
+
if (mutex_lock_interruptible(&st->mutex) < 0) {
+ usb_unlock_device(d->udev);
return -EAGAIN;
}
@@ -757,6 +760,10 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
for (i = 0; i < num; i++) {
addr = msgs[i].addr << 1;
+ if (msgs[i].len < 1 || msgs[i].len >= sizeof(st->data) - 6) {
+ ret = -EIO;
+ goto err;
+ }
if (((i + 1) < num)
&& (msgs[i].len == 1)
&& ((msgs[i].flags & I2C_M_RD) != I2C_M_RD)
@@ -821,6 +828,7 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
}
err:
mutex_unlock(&st->mutex);
+ usb_unlock_device(d->udev);
if (ret < 0) {
pr_info("%s ERROR: %i\n", __func__, ret);
return ret;
Hello, syzbot tried to test the proposed patch but the build/boot failed: failed to apply patch: checking file drivers/media/usb/dvb-usb-v2/az6007.c patch: **** malformed patch at line 15: } Tested on: commit: 9d7a0577 gcc-15: disable '-Wunterminated-string-initia.. git tree: upstream kernel config: https://syzkaller.appspot.com/x/.config?x=7a7c679f880028f0 dashboard link: https://syzkaller.appspot.com/bug?extid=0192952caa411a3be209 compiler: patch: https://syzkaller.appspot.com/x/patch.diff?x=16719ccc580000
© 2016 - 2026 Red Hat, Inc.