Skip to content

Commit 953468b

Browse files
Valtteri Heikkilägregkh
authored andcommitted
HID: reject input outside logical range only if null state is set
[ Upstream commit 3f37527 ] This patch fixes an issue in drivers/hid/hid-input.c where USB HID control null state flag is not checked upon rejecting inputs outside logical minimum-maximum range. The check should be made according to USB HID specification 1.11, section 6.2.2.5, p.31. The fix will resolve issues with some game controllers, such as: https://bugzilla.kernel.org/show_bug.cgi?id=68621 [tk@the-tk.com: shortened and fixed spelling in commit message] Signed-off-by: Valtteri Heikkilä <rnd@nic.fi> Signed-off-by: Tomasz Kramkowski <tk@the-tk.com> Acked-By: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 8f6cd2d commit 953468b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/hid/hid-input.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,7 @@ void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct
11561156
* don't specify logical min and max.
11571157
*/
11581158
if ((field->flags & HID_MAIN_ITEM_VARIABLE) &&
1159+
(field->flags & HID_MAIN_ITEM_NULL_STATE) &&
11591160
(field->logical_minimum < field->logical_maximum) &&
11601161
(value < field->logical_minimum ||
11611162
value > field->logical_maximum)) {

0 commit comments

Comments
 (0)