]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
mt76: mt7915: fix possible NULL pointer dereference in mt7915_mac_fill_rx_vector
authorLorenzo Bianconi <lorenzo@kernel.org>
Mon, 4 Apr 2022 08:23:15 +0000 (10:23 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jun 2022 08:30:11 +0000 (10:30 +0200)
[ Upstream commit 62fdc974894eec80d678523458cf99bbdb887e22 ]

Fix possible NULL pointer dereference in mt7915_mac_fill_rx_vector
routine if the chip does not support dbdc and the hw reports band_idx
set to 1.

Fixes: 78fc30a21cf11 ("mt76: mt7915: move testmode data from dev to phy")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/mediatek/mt76/mt7915/mac.c

index eaa31f5e0b00ca386434edc205ae291192581ac5..fe2b63cf61d84ba3d1c7c5ba2e4dce138142b444 100644 (file)
@@ -864,8 +864,11 @@ mt7915_mac_fill_rx_vector(struct mt7915_dev *dev, struct sk_buff *skb)
        int i;
 
        band_idx = le32_get_bits(rxv_hdr[1], MT_RXV_HDR_BAND_IDX);
-       if (band_idx && !phy->band_idx)
+       if (band_idx && !phy->band_idx) {
                phy = mt7915_ext_phy(dev);
+               if (!phy)
+                       goto out;
+       }
 
        rcpi = le32_to_cpu(rxv[6]);
        ib_rssi = le32_to_cpu(rxv[7]);
@@ -890,8 +893,8 @@ mt7915_mac_fill_rx_vector(struct mt7915_dev *dev, struct sk_buff *skb)
 
        phy->test.last_freq_offset = foe;
        phy->test.last_snr = snr;
+out:
 #endif
-
        dev_kfree_skb(skb);
 }