PatchSiren cyber security CVE debrief
CVE-2026-46212 Linux CVE debrief
A use-after-free vulnerability exists in the Linux kernel's batman-adv (Better Approach To Mobile Ad-hoc Networking) subsystem, specifically within the Bridge Loop Avoidance (BLA) component. The flaw occurs in batadv_bla_del_backbone_claims() when removing claims for a backbone gateway. The function incorrectly drops the reference count via batadv_claim_put() before completing all accesses to the claim object, potentially causing premature memory deallocation by batadv_claim_release() while the hash list entry is still being processed. This race condition could lead to kernel memory corruption or denial of service. The vulnerability affects systems using batman-adv mesh networking with BLA enabled. Multiple stable kernel branches have received patches.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- HIGH 8.8
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-05-28
- Original CVE updated
- 2026-05-30
- Advisory published
- 2026-05-28
- Advisory updated
- 2026-05-30
Who should care
Linux system administrators operating batman-adv mesh networks, kernel maintainers for distributions shipping batman-adv, network infrastructure teams relying on wireless mesh deployments using BLA for loop prevention
Technical summary
The vulnerability is a use-after-free condition in net/batman-adv/bridge_loop_avoidance.c. When batadv_bla_del_backbone_claims() iterates through claims to remove them for a backbone gateway, it calls batadv_claim_put() to drop the reference held by the hash list entry. However, this reference drop occurs before the final access to the claim object completes. If batadv_claim_release() executes and frees the claim memory while the function still requires access to the list entry or claim data, undefined behavior occurs. The fix reorders operations to ensure the hash list entry removal and final claim access complete before the reference count is decremented.
Defensive priority
high
Recommended defensive actions
- Apply kernel updates from official Linux stable repositories containing the identified fixes
- Verify batman-adv BLA functionality remains operational after patching
- Monitor kernel logs for memory corruption indicators on systems running batman-adv mesh networks
- Review systems using batman-adv for mesh networking deployments and prioritize patching for production infrastructure
- Consider disabling batman-adv BLA functionality temporarily if patching is not immediately feasible and the feature is not required
Evidence notes
Vulnerability description sourced from official CVE record and NVD entry. Technical details derived from kernel commit messages describing the use-after-free condition in batadv_bla_del_backbone_claims(). Five stable kernel patches identified across different release branches.
Official resources
-
CVE-2026-46212 CVE record
CVE.org
-
CVE-2026-46212 NVD detail
NVD
-
Source item URL
nvd_modified
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
-
Source reference
416baaa9-dc9f-4396-8d5f-8c081fb06d67
2026-05-28