]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
wifi: mt76: connac: fix possible NULL-pointer deref in mt76_connac_mcu_uni_bss_he_tlv()
authorLorenzo Bianconi <lorenzo@kernel.org>
Sun, 21 Jun 2026 13:24:59 +0000 (15:24 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 22 Jul 2026 06:10:47 +0000 (06:10 +0000)
mt76_connac_get_he_phy_cap routine can theoretically return NULL so
check cap pointer before dereferencing it.

Fixes: d0e274af2f2e4 ("mt76: mt76_connac: create mcu library")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Link: https://patch.msgid.link/20260621-mt76_connac_get_he_phy_cap-fix-v1-1-ed4ccf7a0363@kernel.org
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.c

index 6596c9e198f425cead3bc7253b804b235fcf64c0..58b0b15e4fd6ff5d8e94c4ddd6557dbd3e8d8402 100644 (file)
@@ -1458,6 +1458,8 @@ mt76_connac_mcu_uni_bss_he_tlv(struct mt76_phy *phy, struct ieee80211_vif *vif,
        struct bss_info_uni_he *he;
 
        cap = mt76_connac_get_he_phy_cap(phy, vif);
+       if (!cap)
+               return;
 
        he = (struct bss_info_uni_he *)tlv;
        he->he_pe_duration = vif->bss_conf.htc_trig_based_pkt_ext;