]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
HID: magicmouse: Do not crash on missing msc->input
authorGünther Noack <gnoack@google.com>
Fri, 9 Jan 2026 10:57:14 +0000 (11:57 +0100)
committerJiri Kosina <jkosina@suse.com>
Sat, 10 Jan 2026 09:25:25 +0000 (10:25 +0100)
commit17abd396548035fbd6179ee1a431bd75d49676a7
tree7571b5a996922155121dfe5a01fde0ae2a65cf63
parent3756a272d2cf356d2203da8474d173257f5f8521
HID: magicmouse: Do not crash on missing msc->input

Fake USB devices can send their own report descriptors for which the
input_mapping() hook does not get called.  In this case, msc->input stays NULL,
leading to a crash at a later time.

Detect this condition in the input_configured() hook and reject the device.

This is not supposed to happen with actual magic mouse devices, but can be
provoked by imposing as a magic mouse USB device.

Cc: stable@vger.kernel.org
Signed-off-by: Günther Noack <gnoack@google.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
drivers/hid/hid-magicmouse.c