CVE-2026-80997
Last modified
CVE-2026-80997 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: net: ipa: fix stalled modem TX queue after runtime resume ipa_start_xmit() unconditionally stops the TX queue before calling pm_runtime_get(), relying on the wake scheduled by runtime resume (ipa_modem_wake_queue_work()) to restart it once power is ACTIVE. But that work is queued from within the runtime resume callback, before the device's power state reaches RPM_ACTIVE, so it can run while the device is still RPM_RESUMING. The wake is then consumed too early: the transmit it restarts stops the queue again, pm_runtime_get() returns -EINPROGRESS without arranging any future wake (deferred_resume exists only for RPM_SUSPENDING), and after the resume completes nothing is left to wake the queue. EPSS estimates a 0.20% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: net: ipa: fix stalled modem TX queue after runtime resume ipa_start_xmit() unconditionally stops the TX queue before calling pm_runtime_get(), relying on the wake scheduled by runtime resume (ipa_modem_wake_queue_work()) to restart it once power is ACTIVE. But that work is queued from within the runtime resume callback, before the device's power state reaches RPM_ACTIVE, so it can run while the device is still RPM_RESUMING. The wake is then consumed too early: the transmit it restarts stops the queue again, pm_runtime_get() returns -EINPROGRESS without arranging any future wake (deferred_resume exists only for RPM_SUSPENDING), and after the resume completes nothing is left to wake the queue. Transmit stalls permanently: packets pile up in the qdisc behind the stopped queue, the device runtime-suspends, and since the netdev registers no ndo_tx_timeout the watchdog never fires. Observed on SM7635 (Fairphone 6) as the cellular data path going permanently deaf within hours, RX included, since nothing resumes the suspended endpoints. Close the window by making the wake work wait for the resume to complete (pm_runtime_get_sync()) before waking the queue. Every queue stop is then guaranteed a later wake that happens while power is ACTIVE; a transmit racing a new suspend/resume cycle re-schedules the work. If the device could not be resumed, wake the queue anyway so pending packets are dropped by the transmit path rather than stranded. The STARTED power flag used to narrow this window: a wake running before the transmit path's stop suppressed that stop, but only once, as the flag was cleared by the first stop it absorbed. Removing the flag made a single transmit during an in-flight resume sufficient to strand the queue, which is the form observed. With an accelerated reproducer (autosuspend delay shortened to 5 ms, ~20 packets/s of TX), an unpatched kernel stalled three times in 230 s / 4380 packets; with this patch the same test ran 3601 s / 70298 packets without a stall.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 688de12f080f10dff8f3ddc80103e432ad8deb0b, < 30d5226bac52073c91ce85c2dcff93b866baefdb; >= 688de12f080f10dff8f3ddc80103e432ad8deb0b, < 62da38b4b3a0dd74a3e0eecf4992d40385924205; >= 688de12f080f10dff8f3ddc80103e432ad8deb0b, < 30cef9c1229a36a9c80edb29296459849a2fbaa3; >= 688de12f080f10dff8f3ddc80103e432ad8deb0b, < 3cbfd627ee720f3d2460d2cbe2fe9e4130240db6 |
| Linux | Linux | 6.9 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-80997?
How severe is CVE-2026-80997?
How do I fix CVE-2026-80997?
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-80991In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80992In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80993In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80994In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80995In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-80996In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80998In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-80999In the Linux kernel, the following vulnerability has been re…
- CVE-2026-8100Impact A security issue has been identified in Chef 360 tha…8.6
- CVE-2026-81000In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-81001In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-81002In the Linux kernel, the following vulnerability has been re…9.8
Are you affected by CVE-2026-80997?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
