CVE-2026-97925
Last modified
CVE-2026-97925 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: tick/broadcast: Plug clockevents replacement race 朱恺乾 reported and decoded the following race condition when a broadcast device is replaced: CPUA CPUB __tick_broadcast_oneshot_control() bc = tick_broadcast_device.evtdev; tick_install_broadcast_device(dev) clockevents_exchange_device(cur, dev) shutdown(cur); detach(cur); cur->handler = noop; tick_broadcast_device.evtdev = dev; tick_broadcast_set_event(bc, next_event); <- FAIL: arms a detached device. If the original broadcast device has a restricted interrupt affinity mask and the last CPU in that mask goes offline then the BUG() in tick_cleanup_dead_cpu() triggers because the clockevent device is not in detached state. The reason for this is that tick_install_broadcast_device() is not serialized vs. tick broadcast operations. The obvious cure is to serialize tick_install_broadcast_device() with tick_broadcast_lock against a concurrent tick broadcast operation. That requires to split clockevents_exchange_device() into two parts, one which does the exchange, shutdown and detach operation and the other which drops the module reference count.
Description
In the Linux kernel, the following vulnerability has been resolved: tick/broadcast: Plug clockevents replacement race 朱恺乾 reported and decoded the following race condition when a broadcast device is replaced: CPUA CPUB __tick_broadcast_oneshot_control() bc = tick_broadcast_device.evtdev; tick_install_broadcast_device(dev) clockevents_exchange_device(cur, dev) shutdown(cur); detach(cur); cur->handler = noop; tick_broadcast_device.evtdev = dev; tick_broadcast_set_event(bc, next_event); <- FAIL: arms a detached device. If the original broadcast device has a restricted interrupt affinity mask and the last CPU in that mask goes offline then the BUG() in tick_cleanup_dead_cpu() triggers because the clockevent device is not in detached state. The reason for this is that tick_install_broadcast_device() is not serialized vs. tick broadcast operations. The obvious cure is to serialize tick_install_broadcast_device() with tick_broadcast_lock against a concurrent tick broadcast operation. That requires to split clockevents_exchange_device() into two parts, one which does the exchange, shutdown and detach operation and the other which drops the module reference count. This is required because the module reference cannot be dropped while holding tick_broadcast_lock. Let clockevents_exchange_device() do both operations as before, but let the broadcast device code take the two step approach and do the device exchange under tick_broadcast_lock and drop the module reference count after releasing it.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= f8381cba04ba8173fd5a2b8e5cd8b3290ee13a98, < 3da55616db2b6b7d9caa3b7ff1e8983224e0ed52; >= f8381cba04ba8173fd5a2b8e5cd8b3290ee13a98, < 3525b94b2f258e0b99d1ee5a82a80b51bc1cc818; >= f8381cba04ba8173fd5a2b8e5cd8b3290ee13a98, < 292b7a8ed84032cfdfc9076a690360f7d3f640d4; >= f8381cba04ba8173fd5a2b8e5cd8b3290ee13a98, < 113a9796effe3376d2ec5aabcca1fef4fef4cd62 |
| Linux | Linux | 2.6.21 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97925?
How severe is CVE-2026-97925?
How do I fix CVE-2026-97925?
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-9792A flaw was found in Keycloak's Client Policies, specifically…6.5
- CVE-2026-97920In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97921In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97922In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97923In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97924In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97926In the Linux kernel, the following vulnerability has been re…7
- CVE-2026-97927In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97928In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97929In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9793A flaw was found in Keycloak. When a JSON Web Encryption (JW…7.5
- CVE-2026-97930In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-97925?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
