CVE-2026-64363

Source
https://cve.org/CVERecord?id=CVE-2026-64363
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-64363.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-64363
Downstream
Published
2026-07-25T08:50:18.824Z
Modified
2026-07-27T04:03:21.888499242Z
Summary
HID: appleir: fix UAF on pending key_up_timer in remove()
Details

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

HID: appleir: fix UAF on pending keyuptimer in remove()

appleirremove() runs hidhwstop() before timerdeletesync(). hidhwstop() synchronously unregisters the HID input device via hiddisconnect() -> hidinputdisconnect() -> inputunregisterdevice(), which drops the last reference and frees the underlying inputdev when no userspace handle holds it open.

keyuptick() reads appleir->inputdev and calls inputreportkey() / inputsync() on it. The timer is armed from appleirrawevent() with a HZ/8 (~125 ms) timeout on every keydown and key-repeat report. If a key was pressed shortly before the device is disconnected, the timer can fire after hidhwstop() has freed input_dev but before the teardown drains it.

A simple reorder is not sufficient. Putting the timer drain first still leaves a window where a USB URB completion (rawevent) running during hidhwstop() can call modtimer() and re-arm the timer, which then fires after hidinputdisconnect() has freed inputdev. The same URB-completion window also lets rawevent() reach keyup(), keydown() and batteryflat() directly, all of which dereference appleir->input_dev.

Introduce a 'removing' flag on struct appleir, gated by the existing spinlock. appleirremove() sets the flag under the lock and then shuts down the timer with timershutdownsync(), which both drains any in-flight callback and permanently disables further modtimer() calls. appleirrawevent() and keyuptick() bail out early if the flag is set, so no path can arm or run the timer, or dereference appleir->input_dev, after remove() has started tearing down.

The keyrepeat and flatbattery branches of appleirrawevent() previously called into the input layer without holding the spinlock; take it now so the flag check is well-defined. This incidentally closes a pre-existing read-side race on appleir->current_key in the keyrepeat branch.

This bug is structurally a sibling of commit 4db2af929279 ("HID: appletb-kbd: fix UAF in inactivity-timer cleanup path") and has been present since the driver was introduced.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/64xxx/CVE-2026-64363.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
9a4a5574ce427c364d81746fc7fb82d86b5f1a7e
Fixed
89ef67359672bf4cd6921524e39f61648fe38c0f
Fixed
3d30a0bb0e79621ae921b487835c56198adfafa3
Fixed
37a52c61d4f78153c38ae1f7491dfcc8ac828dcf
Fixed
05e3decc55d1deca9410e0eb36466651fcbe57a5
Fixed
3755f6e25776b8b12ddf062f9b573f05090e4034
Fixed
b363d964ca829c1761c9f04188dfa28f90b0f2d4
Fixed
6b0838e86da88b1d3bff86f19761ff25af73eaca
Fixed
75fe87e19d8aff81eb2c64d15d244ab8da4de945

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-64363.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
3.10.0
Fixed
5.10.261
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.212
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.178
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.145
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.97
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.39
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.4

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-64363.json"