From 38342c51ad483e6571b95373481ab437a4853757 Mon Sep 17 00:00:00 2001 From: Oliver Neukum Date: Wed, 13 Nov 2019 16:34:31 +0800 Subject: [PATCH] b2c2-flexcop-usb: add sanity checking hulk inclusion category: bugfix bugzilla: 13690 CVE: CVE-2019-15291 ------------------------------------------------- The driver needs an isochronous endpoint to be present. It will oops in its absence. Add checking for it. Reported-by: syzbot+d93dff37e6a89431c158@syzkaller.appspotmail.com Signed-off-by: Oliver Neukum Signed-off-by: Yang Yingliang Reviewed-by: Zhen Lei Signed-off-by: Yang Yingliang --- drivers/media/usb/b2c2/flexcop-usb.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/media/usb/b2c2/flexcop-usb.c b/drivers/media/usb/b2c2/flexcop-usb.c index a8f3169e30b3..ac4fddfd0a43 100644 --- a/drivers/media/usb/b2c2/flexcop-usb.c +++ b/drivers/media/usb/b2c2/flexcop-usb.c @@ -537,6 +537,9 @@ static int flexcop_usb_probe(struct usb_interface *intf, struct flexcop_device *fc = NULL; int ret; + if (intf->cur_altsetting->desc.bNumEndpoints < 1) + return -ENODEV; + if ((fc = flexcop_device_kmalloc(sizeof(struct flexcop_usb))) == NULL) { err("out of memory\n"); return -ENOMEM; -- GitLab