CVE-2026-64121 Details
Description
In the Linux kernel, the following vulnerability has been resolved: net: ifb: report ethtool stats over num_tx_queues ifb_dev_init() allocates dp->tx_private to dev->num_tx_queues entries via kzalloc_objs(*txp, dev->num_tx_queues). Both IFB per-queue RX and TX stats live in those entries: ifb_xmit() updates txp->rx_stats using the skb queue mapping, ifb_ri_tasklet() updates txp->tx_stats, and ifb_stats64() aggregates both over dev->num_tx_queues. The ethtool stats callbacks instead size and walk the per-queue stats with dev->real_num_rx_queues and dev->real_num_tx_queues. With an asymmetric device where the RX queue count exceeds the TX queue count, for example: ip link add name ifb10 numtxqueues 1 numrxqueues 8 type ifb ethtool -S ifb10 ifb_get_ethtool_stats() indexes past the tx_private allocation and copies adjacent slab data through ETHTOOL_GSTATS. Use dev->num_tx_queues consistently for the stats strings, the stats count, and the stats data walks. This reports one RX stats group and one TX stats group for each backing ifb_q_private entry, which is the queue set IFB can actually populate. Reproduced under UML+KASAN at v7.1-rc2: BUG: KASAN: slab-out-of-bounds in ifb_fill_stats_data+0x3c/0xae Read of size 8 at addr 0000000062dbd228 by task ethtool/36 ifb_fill_stats_data+0x3c/0xae ifb_get_ethtool_stats+0xc0/0x129 __dev_ethtool+0x1ca5/0x363c dev_ethtool+0x123/0x1b3 dev_ioctl+0x56c/0x744 sock_do_ioctl+0x15f/0x1b2 sock_ioctl+0x4d5/0x50a sys_ioctl+0xd8b/0xde9 With the patch applied, the same UML+KASAN repro is silent and ethtool -S ifb10 reports only the stats backed by the single allocated tx_private entry.
A vulnerability in the Linux kernel's handling of per-queue statistics for the Intermediate Functional Block (IFB) can lead to a slab-out-of-bounds memory access. This issue arises because the IFB's transmission private data is allocated based on the number of transmission queues, while the statistics callbacks use the actual number of reception and transmission queues. In scenarios where the number of reception queues exceeds the number of transmission queues, the statistics callback can read past the allocated memory, accessing adjacent slab data and potentially causing a memory corruption issue. This vulnerability has been reproduced under User Mode Linux with Kernel Address Sanitizer, indicating a serious memory management flaw.
The vulnerability has been addressed in a patch that aligns the statistics handling with the actual number of transmission queues, ensuring that the statistics callbacks do not read past the allocated memory. Instructions for applying the patch can be found in the Linux kernel's official repository.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/16bd798cb6d8337d7c3eea1adc412f31b5181d5b | kernel.org | Patch |
| https://git.kernel.org/stable/c/2638e1773904d7aa8f24c6e7fda2ed7d69df6fa4 | kernel.org | Patch |
| https://git.kernel.org/stable/c/301a554e458e2f5ec47f2c336a7cb03b877f9fd6 | kernel.org | Patch |
| https://git.kernel.org/stable/c/5db89c99566fc4728cc92e941d8e1975711e24b5 | kernel.org | Patch |
| https://git.kernel.org/stable/c/6afdb8113cb007f9332f59a9b7fd45731b8a9de5 | kernel.org | Patch |
| https://git.kernel.org/stable/c/f8a5a76b4a683043c6eff2a060bcaa17f9316ad5 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-125 | Out-of-bounds Read | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 5.17, < 6.1.175 >= 6.2, < 6.6.142 >= 6.7, < 6.12.92 >= 6.13, < 6.18.34 >= 6.19, < 7.0.11 7.1 rc1 7.1 rc2 7.1 rc3 7.1 rc4 |
CPE
Remediation
| |
Change History
2 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 13, 2026 | Initial Analysis | [email protected] |
| Jul 19, 2026 | New CVE Received | kernel.org |