CVE-2026-52927: netfilter: ebtables: fix OOB read in compat_mtw_from_user
In the Linux kernel, the following vulnerability has been resolved:
netfilter: ebtables: fix OOB read in compatmtwfromuser
Luxiao Xu says:
The function compatmtwfromuser() converts ebtables extensions from 32-bit user structures to kernel native structures. However, it lacks proper validation of the user-supplied matchsize/targetsize.
When certain extensions are processed, the kernel-side translation logic may perform memory accesses based on the extension's expected size. If the user provides a size smaller than what the extension requires, it results in an out-of-bounds read as reported by KASAN.
This fix introduces a check to ensure matchsize is at least as large as the extension's required compatsize. This covers matches, watchers, and targets, while maintaining compatibility with standard targets.
AFAIU this is relevant for matches that need to go though match->compatfromuser() call. Those that use plain memcpy with the user-provided size are ok because the caller checks that size vs the start of the next rule entry offset (which itself is checked vs. total size copied from userspace).
The ->compatfromuser() callbacks assume they can read compatsize bytes, so they need this extra check.
Based on an earlier patch from Luxiao Xu.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 6.6.143.1-1
Event History
Frequently Asked Questions
What is the severity of CVE-2026-52927?
CVE-2026-52927 has a risk score of 37, indicating a moderate severity level.
What does CVE-2026-52927 affect?
CVE-2026-52927 affects the netfilter ebtables component of the Linux kernel.
How do I fix CVE-2026-52927?
To fix CVE-2026-52927, update your Linux kernel to the latest version that includes the patch for this vulnerability.
What type of vulnerability is CVE-2026-52927?
CVE-2026-52927 is an out-of-bounds read vulnerability in the compat_mtw_from_user function.
When was CVE-2026-52927 published?
CVE-2026-52927 was published on June 24, 2026.