diff mbox series

[v2,1/2] HID: core: fix off-by-one memset in hid_report_raw_event()

Message ID 20200117120836.2354966-1-jkorsnes@cisco.com (mailing list archive)
State Mainlined
Commit 5ebdffd25098898aff1249ae2f7dbfddd76d8f8f
Headers show
Series [v2,1/2] HID: core: fix off-by-one memset in hid_report_raw_event() | expand

Commit Message

Johan Korsnes (jkorsnes) Jan. 17, 2020, 12:08 p.m. UTC
In case a report is greater than HID_MAX_BUFFER_SIZE, it is truncated,
but the report-number byte is not correctly handled. This results in a
off-by-one in the following memset, causing a kernel Oops and ensuing
system crash.

Note: With commit 8ec321e96e05 ("HID: Fix slab-out-of-bounds read in
hid_field_extract") I no longer hit the kernel Oops as we instead fail
"controlled" at probe if there is a report too long in the HID
report-descriptor. hid_report_raw_event() is an exported symbol, so
presumabely we cannot always rely on this being the case.

Fixes: 966922f26c7f ("HID: fix a crash in hid_report_raw_event()
                     function.")
Signed-off-by: Johan Korsnes <jkorsnes@cisco.com>
Cc: Armando Visconti <armando.visconti@st.com>
Cc: Jiri Kosina <jkosina@suse.cz>
Cc: Alan Stern <stern@rowland.harvard.edu>

---
v1 -> v2:
 * Clean-up of patch description (commit message)
---
 drivers/hid/hid-core.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Jiri Kosina Feb. 12, 2020, 1:19 p.m. UTC | #1
Hi Johan,

both patches now applied, sorry for the delay.
Johan Korsnes (jkorsnes) Feb. 12, 2020, 1:26 p.m. UTC | #2
On 2/12/20 2:19 PM, Jiri Kosina wrote:
> Hi Johan,
> 
> both patches now applied, sorry for the delay.
> 

No problem at all. Thank you for applying.

Johan
diff mbox series

Patch

diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index 851fe54ea59e..359616e3efbb 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -1741,7 +1741,9 @@  int hid_report_raw_event(struct hid_device *hid, int type, u8 *data, u32 size,
 
 	rsize = ((report->size - 1) >> 3) + 1;
 
-	if (rsize > HID_MAX_BUFFER_SIZE)
+	if (report_enum->numbered && rsize >= HID_MAX_BUFFER_SIZE)
+		rsize = HID_MAX_BUFFER_SIZE - 1;
+	else if (rsize > HID_MAX_BUFFER_SIZE)
 		rsize = HID_MAX_BUFFER_SIZE;
 
 	if (csize < rsize) {