summaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-sony.c
diff options
context:
space:
mode:
authorAlan Stern <stern@rowland.harvard.edu>2019-10-03 14:53:59 -0400
committerBenjamin Tissoires <benjamin.tissoires@redhat.com>2019-10-03 15:36:40 -0400
commitd9d4b1e46d9543a82c23f6df03f4ad697dab361b (patch)
tree5a405a2f78b1029f4cc6d6ee743f0bec31319b42 /drivers/hid/hid-sony.c
parentfe2199cfd1516e90e03c033c52c9a28da09d9986 (diff)
HID: Fix assumption that devices have inputs
The syzbot fuzzer found a slab-out-of-bounds write bug in the hid-gaff driver. The problem is caused by the driver's assumption that the device must have an input report. While this will be true for all normal HID input devices, a suitably malicious device can violate the assumption. The same assumption is present in over a dozen other HID drivers. This patch fixes them by checking that the list of hid_inputs for the hid_device is nonempty before allowing it to be used. Reported-and-tested-by: syzbot+403741a091bf41d4ae79@syzkaller.appspotmail.com Signed-off-by: Alan Stern <stern@rowland.harvard.edu> CC: <stable@vger.kernel.org> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Diffstat (limited to 'drivers/hid/hid-sony.c')
-rw-r--r--drivers/hid/hid-sony.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/drivers/hid/hid-sony.c b/drivers/hid/hid-sony.c
index 73c0f7a95e2d..4c6ed6ef31f1 100644
--- a/drivers/hid/hid-sony.c
+++ b/drivers/hid/hid-sony.c
@@ -2254,9 +2254,15 @@ static int sony_play_effect(struct input_dev *dev, void *data,
2254 2254
2255static int sony_init_ff(struct sony_sc *sc) 2255static int sony_init_ff(struct sony_sc *sc)
2256{ 2256{
2257 struct hid_input *hidinput = list_entry(sc->hdev->inputs.next, 2257 struct hid_input *hidinput;
2258 struct hid_input, list); 2258 struct input_dev *input_dev;
2259 struct input_dev *input_dev = hidinput->input; 2259
2260 if (list_empty(&sc->hdev->inputs)) {
2261 hid_err(sc->hdev, "no inputs found\n");
2262 return -ENODEV;
2263 }
2264 hidinput = list_entry(sc->hdev->inputs.next, struct hid_input, list);
2265 input_dev = hidinput->input;
2260 2266
2261 input_set_capability(input_dev, EV_FF, FF_RUMBLE); 2267 input_set_capability(input_dev, EV_FF, FF_RUMBLE);
2262 return input_ff_create_memless(input_dev, NULL, sony_play_effect); 2268 return input_ff_create_memless(input_dev, NULL, sony_play_effect);