CVE-2026-43061
Analyzed
Analyzed - Analysis Complete
Deadlock in Linux Kernel 8250 Serial Driver via DMA
Publication date: 2026-05-05
Last updated on: 2026-05-29
Assigner: kernel.org
Description
Description
In the Linux kernel, the following vulnerability has been resolved:
serial: 8250: Fix TX deadlock when using DMA
`dmaengine_terminate_async` does not guarantee that the
`__dma_tx_complete` callback will run. The callback is currently the
only place where `dma->tx_running` gets cleared. If the transaction is
canceled and the callback never runs, then `dma->tx_running` will never
get cleared and we will never schedule new TX DMA transactions again.
This change makes it so we clear `dma->tx_running` after we terminate
the DMA transaction. This is "safe" because `serial8250_tx_dma_flush`
is holding the UART port lock. The first thing the callback does is also
grab the UART port lock, so access to `dma->tx_running` is serialized.
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.14 |
| linux | linux_kernel | 6.14 |
| linux | linux_kernel | 6.14 |
| linux | linux_kernel | 6.14 |
| linux | linux_kernel | 6.14 |
| linux | linux_kernel | 6.14 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | 7.0 |
| linux | linux_kernel | From 6.19 (inc) to 6.19.10 (exc) |
| linux | linux_kernel | From 6.14.1 (inc) to 6.18.20 (exc) |
| linux | linux_kernel | From 5.10.235 (inc) to 5.10.253 (exc) |
| linux | linux_kernel | From 5.15.179 (inc) to 5.15.203 (exc) |
| linux | linux_kernel | From 5.4.291 (inc) to 5.5 (exc) |
| linux | linux_kernel | From 6.1.129 (inc) to 6.1.167 (exc) |
| linux | linux_kernel | From 6.12.16 (inc) to 6.12.78 (exc) |
| linux | linux_kernel | From 6.13.4 (inc) to 6.14 (exc) |
| linux | linux_kernel | From 6.6.79 (inc) to 6.6.130 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-667 | The product does not properly acquire or release a lock on a resource, leading to unexpected resource state changes and behaviors. |