Skip to content

Commit 7661107

Browse files
keesgregkh
authored andcommitted
HID: logitech-dj: validate output report details
commit 297502abb32e225fb23801fcdb0e4f6f8e17099a upstream. A HID device could send a malicious output report that would cause the logitech-dj HID driver to leak kernel memory contents to the device, or trigger a NULL dereference during initialization: [ 304.424553] usb 1-1: New USB device found, idVendor=046d, idProduct=c52b ... [ 304.780467] BUG: unable to handle kernel NULL pointer dereference at 0000000000000028 [ 304.781409] IP: [<ffffffff815d50aa>] logi_dj_recv_send_report.isra.11+0x1a/0x90 CVE-2013-2895 Signed-off-by: Kees Cook <[email protected]> Signed-off-by: Benjamin Tissoires <[email protected]> Signed-off-by: Jiri Kosina <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 855f21e commit 7661107

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

drivers/hid/hid-logitech-dj.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ static int logi_dj_recv_send_report(struct dj_receiver_dev *djrcv_dev,
421421
struct hid_report *report;
422422
struct hid_report_enum *output_report_enum;
423423
u8 *data = (u8 *)(&dj_report->device_index);
424-
int i;
424+
unsigned int i;
425425

426426
output_report_enum = &hdev->report_enum[HID_OUTPUT_REPORT];
427427
report = output_report_enum->report_id_hash[REPORT_ID_DJ_SHORT];
@@ -431,7 +431,7 @@ static int logi_dj_recv_send_report(struct dj_receiver_dev *djrcv_dev,
431431
return -ENODEV;
432432
}
433433

434-
for (i = 0; i < report->field[0]->report_count; i++)
434+
for (i = 0; i < DJREPORT_SHORT_LENGTH - 1; i++)
435435
report->field[0]->value[i] = data[i];
436436

437437
hid_hw_request(hdev, report, HID_REQ_SET_REPORT);
@@ -738,6 +738,12 @@ static int logi_dj_probe(struct hid_device *hdev,
738738
goto hid_parse_fail;
739739
}
740740

741+
if (!hid_validate_values(hdev, HID_OUTPUT_REPORT, REPORT_ID_DJ_SHORT,
742+
0, DJREPORT_SHORT_LENGTH - 1)) {
743+
retval = -ENODEV;
744+
goto hid_parse_fail;
745+
}
746+
741747
/* Starts the usb device and connects to upper interfaces hiddev and
742748
* hidraw */
743749
retval = hid_hw_start(hdev, HID_CONNECT_DEFAULT);

0 commit comments

Comments
 (0)