CVE-2026-64365

Source
https://cve.org/CVERecord?id=CVE-2026-64365
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-64365.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-64365
Downstream
Published
2026-07-25T08:50:20.039Z
Modified
2026-07-27T04:03:19.749679077Z
Summary
HID: letsketch: fix UAF on inrange_timer at driver unbind
Details

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

HID: letsketch: fix UAF on inrange_timer at driver unbind

letsketchdriver does not provide a .remove callback, but letsketchprobe() arms a per-device timer:

timer_setup(&data->inrange_timer, letsketch_inrange_timeout, 0);

The timer is re-armed from letsketchrawevent() with a 100 ms timeout on every pen-in-range report, and its callback dereferences data->inputtablet to deliver a synthetic BTNTOOL_PEN release.

letsketchdata is allocated with devmkzalloc(), and its inputdev fields are devm-allocated via letsketchsetupinputtablet(). On device unbind (USB unplug or rmmod), the HID core runs its default teardown and devm cleanup frees both letsketchdata and the input devices. Because no .remove callback exists, nothing drains the timer first: if rawevent armed it within ~100 ms of the unbind, the pending timer fires on freed memory. This is a UAF read of data and of data->inputtablet, followed by inputreportkey() / inputsync() into the freed input_dev.

The same problem can occur on the probe error path: if hidhwstart() enabled I/O on an always-poll-quirk device and then failed, raw_event may have armed the timer before devm releases data.

Fix by adding a .remove callback that calls hidhwstop() first. hidhwstop() synchronously kills the URBs that deliver rawevent(), so once it returns no path can re-arm the timer. timershutdownsync() then drains any in-flight callback and permanently disables further modtimer() calls. Apply the same timershutdownsync() in the probe error path so the timer is guaranteed not to outlive data.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/64xxx/CVE-2026-64365.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
33a5c2793451770cb6dcf0cc35c76cfd4b045513
Fixed
2bb6e7143cf70ed281822d26c1848b2897ac36e9
Fixed
523db788c0f84612707638e266e8957ca7e3a756
Fixed
17f5928d7010bc9e002930326b59e60e40c09ee3
Fixed
3eca1a8165b5e7996e699e9df76cb4645e184d42
Fixed
df3d8aa1a9392da3de66398e7a03422463806b21
Fixed
46c8beeccd8ab2c863827254a85ea877654a3534

Database specific

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

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
5.17.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.96
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-64365.json"