CVE-2026-90398 PUBLISHED

wifi: ath11k: fix stride mismatch in mac_phy_caps_parse()

Assigner: Linux
Reserved: 11.09.2026 Published: 17.09.2026 Updated: 17.09.2026

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

wifi: ath11k: fix stride mismatch in mac_phy_caps_parse()

Currently, in ath11k_wmi_tlv_mac_phy_caps_parse(), kcalloc() sizes the mac_phy_caps buffer as tot_phy_id * len, where len is clamped to min(firmware_len, sizeof(struct wmi_mac_phy_capabilities)). The subsequent memcpy() destination advances by sizeof(full struct) per slot via C pointer arithmetic, not by the clamped len. When firmware sends short TLVs, the second and later slots are written past the end of the allocation.

The reader in ath11k_pull_mac_phy_cap_svc_ready_ext() also indexes the buffer with full-struct pointer arithmetic, so the allocation must match that stride.

Fix by using kzalloc_objs(), which derives the element size from the pointer type, making allocation size and pointer stride provably consistent regardless of what len the firmware provides.

Compile tested only.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 5b90fc760db5a969ed26d70f8e62c91915f012bd to bbb3b3334a9ed850c5b332eedea107796e691237 (excl.)
  • affected from 5b90fc760db5a969ed26d70f8e62c91915f012bd to 75185e2b214e842b7e0af29e5d1fef155662b8b1 (excl.)
  • affected from 5b90fc760db5a969ed26d70f8e62c91915f012bd to acff2713c3212ade15051e7b421f15c89927e70f (excl.)
  • affected from 5b90fc760db5a969ed26d70f8e62c91915f012bd to 7a246c72132eb943b5844ba79dad597b47429dba (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 5.6 is affected
  • unaffected from 0 to 5.6 (excl.)
  • unaffected from 6.12.110 to 6.12.* (incl.)
  • unaffected from 6.18.52 to 6.18.* (incl.)
  • unaffected from 7.2.6 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References