Petr Mladek c479b3
From c7bf714f875531f227f2ef1fdcc8f4d44e7c7d9d Mon Sep 17 00:00:00 2001
Petr Mladek c479b3
From: Pietro Borrello <borrello@diag.uniroma1.it>
Petr Mladek c479b3
Date: Mon, 16 Jan 2023 11:11:25 +0000
Petr Mladek c479b3
Subject: [PATCH] HID: check empty report_list in bigben_probe()
Petr Mladek c479b3
Git-commit: c7bf714f875531f227f2ef1fdcc8f4d44e7c7d9d
Petr Mladek c479b3
Patch-mainline: v6.2-rc5
Petr Mladek c479b3
References: git-fixes, bsc#1206784
Petr Mladek c479b3
Petr Mladek c479b3
Add a check for empty report_list in bigben_probe().
Petr Mladek c479b3
The missing check causes a type confusion when issuing a list_entry()
Petr Mladek c479b3
on an empty report_list.
Petr Mladek c479b3
The problem is caused by the assumption that the device must
Petr Mladek c479b3
have valid report_list. While this will be true for all normal HID
Petr Mladek c479b3
devices, a suitably malicious device can violate the assumption.
Petr Mladek c479b3
Petr Mladek c479b3
Fixes: 256a90ed9e46 ("HID: hid-bigbenff: driver for BigBen Interactive PS3OFMINIPAD gamepad")
Petr Mladek c479b3
Signed-off-by: Pietro Borrello <borrello@diag.uniroma1.it>
Petr Mladek c479b3
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Petr Mladek c479b3
Acked-by: Takashi Iwai <tiwai@suse.de>
Petr Mladek c479b3
Petr Mladek c479b3
---
Petr Mladek c479b3
 drivers/hid/hid-bigbenff.c | 5 +++++
Petr Mladek c479b3
 1 file changed, 5 insertions(+)
Petr Mladek c479b3
Petr Mladek c479b3
diff --git a/drivers/hid/hid-bigbenff.c b/drivers/hid/hid-bigbenff.c
Petr Mladek c479b3
index e8c5e3ac9fff..e8b16665860d 100644
Petr Mladek c479b3
--- a/drivers/hid/hid-bigbenff.c
Petr Mladek c479b3
+++ b/drivers/hid/hid-bigbenff.c
Petr Mladek c479b3
@@ -344,6 +344,11 @@ static int bigben_probe(struct hid_device *hid,
Petr Mladek c479b3
 	}
Petr Mladek c479b3
 
Petr Mladek c479b3
 	report_list = &hid->report_enum[HID_OUTPUT_REPORT].report_list;
Petr Mladek c479b3
+	if (list_empty(report_list)) {
Petr Mladek c479b3
+		hid_err(hid, "no output report found\n");
Petr Mladek c479b3
+		error = -ENODEV;
Petr Mladek c479b3
+		goto error_hw_stop;
Petr Mladek c479b3
+	}
Petr Mladek c479b3
 	bigben->report = list_entry(report_list->next,
Petr Mladek c479b3
 		struct hid_report, list);
Petr Mladek c479b3
 
Petr Mladek c479b3
-- 
Petr Mladek c479b3
2.35.3
Petr Mladek c479b3