CVE-2026-90338
Last modified
CVE-2026-90338 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: serial: amba-pl011: keep console clock enabled for atomic writes pl011_console_write_atomic() runs from nbcon atomic context, where sleeping is not allowed. It calls clk_enable(), which takes the common-clk enable_lock.
Description
In the Linux kernel, the following vulnerability has been resolved: serial: amba-pl011: keep console clock enabled for atomic writes pl011_console_write_atomic() runs from nbcon atomic context, where sleeping is not allowed. It calls clk_enable(), which takes the common-clk enable_lock. Under PREEMPT_RT that is a sleeping lock: clk_enable_lock() first tries spin_trylock_irqsave(), but on contention falls back to spin_lock_irqsave(). Therefore, an atomic-context printk on an RT kernel with a clk-backed pl011 can trip: BUG: sleeping function called from invalid context at spinlock_rt.c:48 __might_resched from rt_spin_lock rt_spin_lock from clk_enable_lock clk_enable_lock from clk_enable clk_enable from pl011_console_write_atomic ... from vprintk_emit This was found and reproduced on PREEMPT_RT. Arm32 and arm64 DT SoCs are affected; arm64 SBSA/ACPI has no clk, so clk_enable(NULL) short-circuits before the lock. In addition, write_atomic() may be invoked from NMI context and is documented to avoid locking. Removing clk_enable() from the callback also avoids a potentially unsafe NMI acquisition of the common-clock enable_lock. An nbcon atomic-capable console must be printable from any context, so the clock cannot be gated between writes. Enable the clock while the console is available for output: use clk_prepare_enable() in pl011_console_setup(), release it via clk_disable_unprepare() in the console .exit() callback, and drop the per-write clk_enable()/clk_disable() pairs from write_atomic() and write_thread(). When printk suspends consoles, drop the reference after uart_suspend_port() stops console access and restore it before uart_resume_port() -- but only if suspend actually marked the port suspended (a wake-capable tty stays running and must keep its clock), and keep it when console_suspend_enabled is false so no_console_suspend works. The active power cost of keeping the clock enabled is platform-dependent: none where the UART clock is a fixed always-on oscillator, real where it is a gateable clock branch, which then cannot be gated (nor possibly can its parent clocks) while the console is available for output. When serial core actually suspends the port, the reference is released so the clock provider can gate the clock tree.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 2eb2608618ce5878e11bbe68cc8d2699c8f3a81a, < 5b77848423f4a5a362dcc3caedcdc1a75d0758c3; >= 2eb2608618ce5878e11bbe68cc8d2699c8f3a81a, < 2ad24c1d0b939d814a3020f96a667ac2d0394289; >= 2eb2608618ce5878e11bbe68cc8d2699c8f3a81a, < c0e8cfef754645856374e82c8effd54b7d82002b |
| Linux | Linux | 6.15 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-90338?
How severe is CVE-2026-90338?
How do I fix CVE-2026-90338?
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-90332In the Linux kernel, the following vulnerability has been re…8.2
- CVE-2026-90333In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90334In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90335In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90336In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90337In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90339In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9034Use After Free vulnerability in Arm Ltd Bifrost GPU Userspac…7.8
- CVE-2026-90340In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90341In the Linux kernel, the following vulnerability has been re…7.7
- CVE-2026-90342In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90343In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-90338?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
