diff options
author | Oliver Neukum <oneukum@suse.com> | 2019-08-06 12:05:55 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2019-08-06 12:10:57 -0400 |
commit | 849f5ae3a513c550cad741c68dd3d7eb2bcc2a2c (patch) | |
tree | 20c803402338fbae3ffc329294e94f210e8404cf | |
parent | 37ad2e343449ced9e41505eae5494bf40f433181 (diff) |
Input: iforce - add sanity checks
The endpoint type should also be checked before a device
is accepted.
Reported-by: syzbot+5efc10c005014d061a74@syzkaller.appspotmail.com
Signed-off-by: Oliver Neukum <oneukum@suse.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/joystick/iforce/iforce-usb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/input/joystick/iforce/iforce-usb.c b/drivers/input/joystick/iforce/iforce-usb.c index 29abfeeef9a5..6c554c11a7ac 100644 --- a/drivers/input/joystick/iforce/iforce-usb.c +++ b/drivers/input/joystick/iforce/iforce-usb.c | |||
@@ -201,7 +201,12 @@ static int iforce_usb_probe(struct usb_interface *intf, | |||
201 | return -ENODEV; | 201 | return -ENODEV; |
202 | 202 | ||
203 | epirq = &interface->endpoint[0].desc; | 203 | epirq = &interface->endpoint[0].desc; |
204 | if (!usb_endpoint_is_int_in(epirq)) | ||
205 | return -ENODEV; | ||
206 | |||
204 | epout = &interface->endpoint[1].desc; | 207 | epout = &interface->endpoint[1].desc; |
208 | if (!usb_endpoint_is_int_out(epout)) | ||
209 | return -ENODEV; | ||
205 | 210 | ||
206 | iforce_usb = kzalloc(sizeof(*iforce_usb), GFP_KERNEL); | 211 | iforce_usb = kzalloc(sizeof(*iforce_usb), GFP_KERNEL); |
207 | if (!iforce_usb) | 212 | if (!iforce_usb) |