CVE-2026-68090
Last modified
CVE-2026-68090 is a vulnerability of currently unknown severity. 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 stub_timer() is installed as timer callback function in hrtimer_fixup_assert_init(), which is invoked when debug_object_assert_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.
Description
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 stub_timer() is installed as timer callback function in hrtimer_fixup_assert_init(), which is invoked when debug_object_assert_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 debug_object_assert_init() and the lookup failed due a concurrent out of memory situation which disabled debug objects and freed the shadow objects: debug_object_assert_init() if (!debug_objects_enabled) return; obj = alloc(); if (!obj) { // Out of memory debug_objects_enabled = false; free_objects(); obj = lookup_or_alloc(); // 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 debug_objects_enabled is false, but the fixup callback is invoked unconditionally, which makes the timer disfunctional. This is only a problem in debug_object_assert_init() and debug_object_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.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= b84d435cc228e87951f3bbabf6cc4a5f25d5fb16, < 2d5e320b7ab9b25229ac4331541964a58b5e1d29; >= b84d435cc228e87951f3bbabf6cc4a5f25d5fb16, < 203a965bf2ab43130778d8214fb0c3c8c2d19cdf; >= b84d435cc228e87951f3bbabf6cc4a5f25d5fb16, < 23da32e88627e63e0864f59f4c63a2dc0ab851a3; >= b84d435cc228e87951f3bbabf6cc4a5f25d5fb16, < d663fbf28b2eebe665bb9cf828d7d528e5a8707e; >= b84d435cc228e87951f3bbabf6cc4a5f25d5fb16, < e2e255d07723c330dded8e576ce28a8d23a692ce; >= b84d435cc228e87951f3bbabf6cc4a5f25d5fb16, < c00164c9e7fa6145886ad666806cb5347895de5c; >= b84d435cc228e87951f3bbabf6cc4a5f25d5fb16, < 1f4f02b336c3be125c8fcf87df73db2e0e028b8b; >= b84d435cc228e87951f3bbabf6cc4a5f25d5fb16, < b81dde13cc163450dcb402dcc915ef13ba241e01 |
| Linux | Linux | 3.3 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-68090?
How severe is CVE-2026-68090?
How do I fix CVE-2026-68090?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-68085In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68086In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68087In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68088In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68089In the Linux kernel, the following vulnerability has been re…
- CVE-2026-6809The Social Post Embed plugin for WordPress is vulnerable to …6.4
- CVE-2026-68091In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68092In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68093In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68094In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68095In the Linux kernel, the following vulnerability has been re…
- CVE-2026-68096In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-68090?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
