CVE-2026-68090

Source
https://cve.org/CVERecord?id=CVE-2026-68090
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-68090.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-68090
Downstream
Published
2026-08-10T11:51:45.149Z
Modified
2026-08-12T04:18:45.412362858Z
Summary
debugobjects: Plug race against a concurrent OOM disable
Details

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

debugobjects: Plug race against a concurrent OOM disable

syzbot reported a puzzling splat:

WARNING: kernel/time/hrtimer.c:443 at stub_timer+0xa/0x20

stubtimer() is installed as timer callback function in hrtimerfixupassertinit(), which is invoked when debugobjectassert_init() can't find a shadow object. In that case debug objects emits a warning about it before invoking the fixup.

Though the provided console log lacks this warning and instead has the following a few seconds before the splat:

 ODEBUG: Out of memory. ODEBUG disabled

So the object was looked up in debugobjectassert_init() and the lookup failed due a concurrent out of memory situation which disabled debug objects and freed the shadow objects:

debugobjectassertinit() if (!debugobjectsenabled) return; obj = alloc(); if (!obj) { // Out of memory debugobjectsenabled = false; freeobjects(); obj = lookuporalloc();

    // The lookup failed because the other side
    // removed the objects, so this returns
    // an error code as the object in question
    // is not statically initialized

if (!IS_ERR_OR_NULL(obj))
        return;
    if (!obj) {
        debug_oom();
            return;
    }

    print(...)
       if (!debug_objects_enabled)
            return;

    fixup(...)

The debug object splat is skipped because debugobjectsenabled is false, but the fixup callback is invoked unconditionally, which makes the timer disfunctional.

This is only a problem in debugobjectassertinit() and debugobject_activate() as both have to handle statically initialized objects and therefore must handle the error pointer return case gracefully. All other places only handle the found/not found case and the NULL pointer return is a signal for OOM. Otherwise they get a valid shadow object.

Plug the hole by checking whether debug objects are still enabled before invoking the print and fixup function in those two places.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/68xxx/CVE-2026-68090.json",
    "cna_assigner": "Linux"
}
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
b84d435cc228e87951f3bbabf6cc4a5f25d5fb16
Fixed
2d5e320b7ab9b25229ac4331541964a58b5e1d29
Fixed
203a965bf2ab43130778d8214fb0c3c8c2d19cdf
Fixed
23da32e88627e63e0864f59f4c63a2dc0ab851a3
Fixed
d663fbf28b2eebe665bb9cf828d7d528e5a8707e
Fixed
e2e255d07723c330dded8e576ce28a8d23a692ce
Fixed
c00164c9e7fa6145886ad666806cb5347895de5c
Fixed
1f4f02b336c3be125c8fcf87df73db2e0e028b8b
Fixed
b81dde13cc163450dcb402dcc915ef13ba241e01

Database specific

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

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
3.3.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.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-68090.json"