CVE-2023-54033: bpf: fix a memory leak in the LRU and LRU_PERCPU hash maps
In the Linux kernel, the following vulnerability has been resolved:
bpf: fix a memory leak in the LRU and LRU_PERCPU hash maps
The LRU and LRU_PERCPU maps allocate a new element on update before locking the
target hash table bucket. Right after that the maps try to lock the bucket.
If this fails, then maps return -EBUSY to the caller without releasing the
allocated element. This makes the element untracked: it doesn't belong to
either of free lists, and it doesn't belong to the hash table, so can't be
re-used; this eventually leads to the permanent -ENOMEM on LRU map updates,
which is unexpected. Fix this by returning the element to the local free list
if bucket locking fails.
Security readout for executives and security teams
Plain-English summary
This Linux kernel issue can leak memory when eBPF LRU hash map updates fail to lock a bucket. Over time, affected systems can stop accepting LRU map updates with permanent out-of-memory errors. The sources do not provide CVSS, CWE, confirmed exploitation, or business-impact severity.
Executive priority
Handle through normal kernel patch governance, with higher priority for hosts running BPF-heavy monitoring, networking, or security controls. Current public evidence does not support emergency response by itself.
Technical view
LRU and LRU_PERCPU BPF hash maps allocate an element before taking the target bucket lock. If locking fails, the update returns -EBUSY without releasing the element, leaving it untracked by free lists or the hash table. The resolved fix returns the element to the local free list on lock failure.
Likely exposure
Exposure is limited to Linux systems running affected kernels and using BPF LRU or LRU_PERCPU hash maps. The source bundle lists Linux as affected but gives incomplete version-boundary detail, so administrators should verify against their distribution kernel advisories.
Exploitation context
No active exploitation is stated in the source bundle, and KEV is false. The described outcome is resource exhaustion for affected BPF LRU map updates, not remote code execution. Required access conditions are not specified in the provided sources.
Researcher notes
The public record describes a kernel memory leak fix but omits CVSS, CWE, exploitability prerequisites, and distribution-specific ranges. The affected-version data in the bundle appears sparse, so avoid overclaiming exposure without vendor package mapping.
Mitigation direction
Apply vendor or distribution kernel updates containing the stable kernel fixes.
Prioritize systems that use eBPF, observability, networking, or security tooling with LRU BPF maps.
Check vendor advisories for exact affected and fixed package versions.
Use operational monitoring for repeated BPF map update failures or unexpected ENOMEM conditions.
Validation and detection
Inventory Linux kernel versions across production, staging, and appliance-like hosts.
Confirm whether workloads or agents use BPF LRU or LRU_PERCPU hash maps.
Map installed kernels to distribution advisories or the referenced stable commits.
After patching, verify kernel package versions and normal BPF-dependent service behavior.
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.
cve · low confidence lookup
CVE-2023-54033 mapping review
Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.
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.
0CVSS vectors
3Timeline events
0ADP providers
5Source links
Vulnerability timeline
Timeline events are normalized from CVE metadata, CNA source timelines, ADP timelines, and KEV metadata when present.
CVE reservedCVE Program
The CVE ID was reserved by the assigning CNA.
CVE publishedCVE Program
The CVE record was published.
Dec 24, 2025, 10:56 UTC (UTC+00:00)
CVE updatedCVE Program
The CVE record metadata indicates this as the latest update time.