USB: idmouse: fix NULL-deref at probe
commitb0addd3fa6
upstream. Make sure to check the number of endpoints to avoid dereferencing a NULL-pointer should a malicious device lack endpoints. Fixes:1da177e4c3
("Linux-2.6.12-rc2") Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a7712869e2
commit
d6389d6abb
@ -346,6 +346,9 @@ static int idmouse_probe(struct usb_interface *interface,
|
|||||||
if (iface_desc->desc.bInterfaceClass != 0x0A)
|
if (iface_desc->desc.bInterfaceClass != 0x0A)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
if (iface_desc->desc.bNumEndpoints < 1)
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
/* allocate memory for our device state and initialize it */
|
/* allocate memory for our device state and initialize it */
|
||||||
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
|
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
|
||||||
if (dev == NULL)
|
if (dev == NULL)
|
||||||
|
Reference in New Issue
Block a user