CVE-2023-53261: coresight: Fix memory leak in acpi_buffer->pointer
In the Linux kernel, the following vulnerability has been resolved:
coresight: Fix memory leak in acpi_buffer->pointer
There are memory leaks reported by kmemleak:
...
unreferenced object 0xffff00213c141000 (size 1024):
comm "systemd-udevd", pid 2123, jiffies 4294909467 (age 6062.160s)
hex dump (first 32 bytes):
04 00 00 00 02 00 00 00 18 10 14 3c 21 00 ff ff ...........<!...
00 00 00 00 00 00 00 00 03 00 00 00 10 00 00 00 ................
backtrace:
[<000000004b7c9001>] __kmem_cache_alloc_node+0x2f8/0x348
[<00000000b0fc7ceb>] __kmalloc+0x58/0x108
[<0000000064ff4695>] acpi_os_allocate+0x2c/0x68
[<000000007d57d116>] acpi_ut_initialize_buffer+0x54/0xe0
[<0000000024583908>] acpi_evaluate_object+0x388/0x438
[<0000000017b2e72b>] acpi_evaluate_object_typed+0xe8/0x240
[<000000005df0eac2>] coresight_get_platform_data+0x1b4/0x988 [coresight]
...
The ACPI buffer memory (buf.pointer) should be freed. But the buffer
is also used after returning from acpi_get_dsd_graph().
Move the temporary variables buf to acpi_coresight_parse_graph(),
and free it before the function return to prevent memory leak.
Security readout for executives and security teams
Plain-English summary
CVE-2023-53261 is a Linux kernel memory leak in the Coresight ACPI handling path. A local low-privileged user could affect system availability by causing kernel memory to be consumed. The provided sources do not show data theft, integrity impact, remote exploitation, or active exploitation.
Executive priority
Schedule remediation through normal kernel maintenance unless the environment hosts untrusted local users or workloads. Escalate priority for shared compute, developer workstations, and multi-tenant Linux systems because availability impact can affect service reliability.
Technical view
The issue is CWE-401: the ACPI buffer pointer used while parsing Coresight platform data was not freed. The fix moves buffer lifetime management into acpi_coresight_parse_graph() and frees it before return. CVSS 3.1 is 5.5, local, low privileges, availability impact only.
Likely exposure
Exposure is limited to Linux systems running affected kernel versions with the relevant Coresight ACPI code path. The bundle lists Linux kernel versions including 5.3 through fixed stable references. Downstream distribution exposure depends on vendor backports and kernel packaging.
Exploitation context
The CVSS vector indicates local access with low privileges and no user interaction. The source bundle marks KEV as false and provides no public evidence of active exploitation. Treat this primarily as a local denial-of-service risk, not a remote compromise path.
Researcher notes
Evidence is limited to the CVE record and upstream stable commit references. No exploit narrative, affected distro matrix, or operational workaround is provided. Analysis should focus on kernel lineage, backport status, and whether Coresight ACPI parsing is reachable on target hardware.
Mitigation direction
Check vendor kernel advisories for CVE-2023-53261 coverage.
Update to a kernel containing the referenced stable fixes.
Prioritize shared Linux hosts and systems running untrusted local workloads.
Track downstream distribution backports, not only upstream version numbers.
Validation and detection
Inventory Linux kernel versions across affected assets.
Confirm whether kernels include stable commits d1b60e7c9fee or 1a9e02673e25.
Review vendor advisories for backported package identifiers.
Check kernel memory leak telemetry where available.
Validate remediation in staging before broad kernel rollout.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-401: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-401 · source CWE mapping
Missing Release of Memory after Effective Lifetime
Missing Release of Memory after Effective Lifetime represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.