CVE-2026-74488

Source
https://cve.org/CVERecord?id=CVE-2026-74488
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-74488.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-74488
Downstream
Published
2026-08-15T12:27:18.867Z
Modified
2026-08-17T03:54:57.751286242Z
Summary
wifi: mwifiex: use the subframe length when parsing A-MSDU TDLS frames
Details

In the Linux kernel, the following vulnerability has been resolved:

wifi: mwifiex: use the subframe length when parsing A-MSDU TDLS frames

mwifiex11ndispatchamsdupkt() splits an A-MSDU with ieee80211amsduto8023s() and walks the resulting subframes. For each subframe it passes the subframe data pointer to mwifiexprocesstdlsactionframe(), but pairs it with skb->len, the length of the A-MSDU parent, instead of rxskb->len:

rx_skb = __skb_dequeue(&list);
rx_hdr = (struct rx_packet_hdr *)rx_skb->data;
if (ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
    ntohs(rx_hdr->eth803_hdr.h_proto) == ETH_P_TDLS) {
    mwifiex_process_tdls_action_frame(priv, (u8 *)rx_hdr,
                      skb->len);
}

The parent is not a valid description of that buffer, and may not be valid memory at all. ieee80211amsduto_8023s() ends with

if (!reuse_skb)
    dev_kfree_skb(skb);

and it only sets reuseskb when the parent is linear, is not a headfrag, and is being consumed as the last subframe. So when the parent does not qualify for reuse it has already been freed, and the read of skb->len is a use-after-free. When it is reused, skb->len is the length of the last subframe, applied to every earlier subframe, which over-states the buffer whenever an earlier subframe is shorter.

The callee cannot absorb a wrong length, because it derives its own ceiling from the value it is given. Each frame type computes

ies_len = len - sizeof(struct ethhdr) - TDLS_*_FIX_LEN;

and the element walk is then bounded entirely against that ceiling,

for (end = pos + ies_len; pos + 1 < end; pos += 2 + pos[1]) {
    u8 ie_len = pos[1];

    if (pos + 2 + ie_len > end)
        break;

so a too-large len moves end past the end of the subframe and the walk reads and copies beyond it. The A-MSDU layout is chosen by the sender, which makes the difference between the last subframe and a shorter earlier one remotely selectable. Reaching this requires TDLS support in firmware and the TDLS ethertype on the subframe.

The other caller, mwifiexprocessrx_packet(), is correct: it passes a pointer and a length that describe the same region of the RX buffer.

Pass rx_skb->len, the length of the subframe actually being parsed.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/74xxx/CVE-2026-74488.json",
    "cna_assigner": "Linux"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
776f742040ca5eb6242c60f29ac73d5752a5b621
Fixed
25e5a3fe4f15e30f74eca42cbf3bcc3a3fbeda79
Fixed
ece2ebb34247d573142617dfc534a9dc11ba59be
Fixed
c9dcfe6b8b71369e1d732e2ff622c3696a2f032c
Fixed
5a21ab03829cb6d2682c127f22e2b9cd63b4393f
Fixed
99a948382af8a225e2d5e54a7052158cd6281cc6

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-74488.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.5.0
Fixed
6.6.151
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.103
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.44
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.8

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-74488.json"