CVE-2026-80782 PUBLISHED

HID: magicmouse: do not keep a stale msc->input if no input is claimed

Assigner: Linux
Reserved: 26.08.2026 Published: 04.09.2026 Updated: 04.09.2026

In the Linux kernel, the following vulnerability has been resolved:

HID: magicmouse: do not keep a stale msc->input if no input is claimed

magicmouse_input_mapping() caches the first hid_input's input_dev in msc->input while the report descriptor is parsed, and the rest of the driver treats a non-NULL msc->input as proof that an input device was registered.

That does not hold on the hid-input error path. If hidinput_connect() fails -- for instance because input_register_device() returns an error -- it unwinds through hidinput_disconnect(), which frees every input_dev it created, including the one cached in msc->input.

The failure does not abort the probe. hid_connect() only skips the claim:

<pre>if ((connect_mask & HID_CONNECT_HIDINPUT) && !hidinput_connect(hdev, connect_mask & HID_CONNECT_HIDINPUT_FORCE)) hdev->claimed |= HID_CLAIMED_INPUT; </pre>

and the "device has no listeners" bailout below it does not fire for this driver, which sets ->raw_event; on the USB Magic Mouse 2 / Magic Trackpad 2 paths hidraw and hiddev are claimed as well. hid_hw_start() therefore returns 0 and magicmouse_probe() continues with msc->input pointing at freed memory. Being non-NULL, it passes the "input not registered" check in probe and the NULL checks in ->raw_event and ->event, so the next input report dereferences freed memory.

Clear msc->input when the HID core did not claim an input device, so the existing NULL checks cover this case as well.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to c3597923932bb90d4fc2186aef552f6677175e4a (excl.)
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to e0c224c93d10ee38854fdf24c815108aedd3dcb3 (excl.)
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to 403cc9bd6ccb9fbe68d501c3236e5a6dd5504e14 (excl.)
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to 3d7a7bac4c75f25b2513505a0ac5ba909588ed2b (excl.)
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to 9bdf8c7bfd79f1090e61d28f969b32880fd77bb3 (excl.)
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to 15b60ade825c8ce9ec560048a4ae3747e4572be3 (excl.)
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to 0bf253e9ac994cb5329bc87b00bb4eeca9136791 (excl.)
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to 2ef16934e069d5f771e989d6ee5c3ece5042f3cd (excl.)
  • affected from f1a9a149abc86903e81dd1b2e720f3f89874384b to 0af3b89705688af01aa06025b84fa7a1e06ba6cc (excl.)
  • Version 0e55072e7c63a6569cab1447e9025d160abd9dd9 is affected
  • affected from 3.8.7 to 3.9 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 3.9 is affected
  • unaffected from 0 to 3.9 (excl.)
  • unaffected from 5.10.269 to 5.10.* (incl.)
  • unaffected from 5.15.218 to 5.15.* (incl.)
  • unaffected from 6.1.185 to 6.1.* (incl.)
  • unaffected from 6.6.154 to 6.6.* (incl.)
  • unaffected from 6.12.106 to 6.12.* (incl.)
  • unaffected from 6.18.47 to 6.18.* (incl.)
  • unaffected from 7.1.11 to 7.1.* (incl.)
  • unaffected from 7.2.1 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References