Description
In the Linux kernel, the following vulnerability has been resolved:

serial: amba-pl011: synchronize DMA teardown

dmaengine_terminate_all() does not wait for a running callback, so the TX
callback can still touch the TX buffer after it is freed. The RX poll
timer reads the RX buffers without the port lock.

Switch to dmaengine_terminate_sync() and delete the RX timer before
freeing the buffers.
Published: 2026-09-03
Score: 7.8 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The AMBA PL011 serial driver in the Linux kernel has a flaw where dmaengine_terminate_all() does not wait for an active hardware callback, allowing the transmit callback to access a transmit buffer after it has been freed. The receive poll timer reads receive buffers without holding the port lock, creating a race condition. This improper synchronization results in a use‑after‑free in kernel space, enabling an attacker to trigger execution of arbitrary code or leak sensitive data by manipulating the driver’s DMA callbacks.

Affected Systems

All Linux kernel releases that include the AMBA PL011 serial driver are potentially impacted. No specific affected versions are listed in the advisory.

Risk and Exploitability

The risk is high because the flaw occurs in kernel space and can lead to privilege escalation. No EPSS score is available and the vulnerability is not currently listed in the CISA KEV catalog. The likely attack vector is a local attacker who can trigger DMA transfers on the affected serial device, or any process that can manipulate the driver via ioctl or sysfs interfaces.

Generated by OpenCVE AI on September 3, 2026 at 13:07 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the kernel to a version that includes the fix that changes dmaengine_terminate_all() to the synchronous variant and removes the RX timer before freeing buffers.
  • If an upgrade is not feasible, disable the AMBA PL011 serial driver or configure it to avoid using DMA transfers on the target device.
  • Ensure that any services or utilities that interact with the driver run with the minimum required privileges and that the device is not exposed to untrusted code.

Generated by OpenCVE AI on September 3, 2026 at 13:07 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Fri, 04 Sep 2026 05:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.8, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Thu, 03 Sep 2026 13:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-416

Thu, 03 Sep 2026 07:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: serial: amba-pl011: synchronize DMA teardown dmaengine_terminate_all() does not wait for a running callback, so the TX callback can still touch the TX buffer after it is freed. The RX poll timer reads the RX buffers without the port lock. Switch to dmaengine_terminate_sync() and delete the RX timer before freeing the buffers.
Title serial: amba-pl011: synchronize DMA teardown
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-09-04T04:58:22.813Z

Reserved: 2026-08-26T14:34:25.789Z

Link: CVE-2026-80737

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-03T13:06:12.623

Modified: 2026-09-04T05:17:14.247

Link: CVE-2026-80737

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-03T13:15:04Z

Weaknesses
  • CWE-362

    Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')

  • CWE-416

    Use After Free