developer | 1f55fcf | 2024-10-17 14:52:33 +0800 | [diff] [blame^] | 1 | From 262e17ebf0c8c55427b2d483fa0e9d3d0224331a Mon Sep 17 00:00:00 2001 |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 2 | From: Shayne Chen <shayne.chen@mediatek.com> |
| 3 | Date: Tue, 9 Jul 2024 14:54:39 +0800 |
developer | 1f55fcf | 2024-10-17 14:52:33 +0800 | [diff] [blame^] | 4 | Subject: [PATCH 168/193] mtk: mt76: mt7996: fix potential null pointer |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 5 | |
| 6 | Fix more parts that might have null pointer access. |
| 7 | |
developer | d0c8945 | 2024-10-11 16:53:27 +0800 | [diff] [blame] | 8 | Change-Id: Iba945d07cb0b5816cf6cd48f1148edefd9a02d1e |
| 9 | Change-Id: I7fc4c0b8bc5eda41fa142560995ffc327c188b7f |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 10 | Signed-off-by: Michael-CY Lee <michael-cy.lee@mediatek.com> |
| 11 | Signed-off-by: Shayne Chen <shayne.chen@mediatek.com> |
| 12 | --- |
| 13 | mt7996/mac.c | 3 +++ |
| 14 | mt7996/main.c | 10 ++++++++++ |
| 15 | mt7996/mcu.c | 3 +++ |
| 16 | 3 files changed, 16 insertions(+) |
| 17 | |
| 18 | diff --git a/mt7996/mac.c b/mt7996/mac.c |
developer | 1f55fcf | 2024-10-17 14:52:33 +0800 | [diff] [blame^] | 19 | index 1952cb0..1a3c661 100644 |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 20 | --- a/mt7996/mac.c |
| 21 | +++ b/mt7996/mac.c |
developer | d0c8945 | 2024-10-11 16:53:27 +0800 | [diff] [blame] | 22 | @@ -1127,6 +1127,9 @@ mt7996_tx_check_aggr(struct ieee80211_sta *sta, struct sk_buff *skb, |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 23 | |
| 24 | msta = (struct mt7996_sta *)sta->drv_priv; |
| 25 | mlink = rcu_dereference(msta->link[msta->pri_link]); |
| 26 | + if (!mlink) |
| 27 | + return; |
| 28 | + |
| 29 | if (!test_and_set_bit(tid, &mlink->wcid.ampdu_state)) |
| 30 | ieee80211_start_tx_ba_session(sta, tid, 0); |
| 31 | } |
| 32 | diff --git a/mt7996/main.c b/mt7996/main.c |
developer | 1f55fcf | 2024-10-17 14:52:33 +0800 | [diff] [blame^] | 33 | index 1c86a8c..90320e5 100644 |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 34 | --- a/mt7996/main.c |
| 35 | +++ b/mt7996/main.c |
| 36 | @@ -518,9 +518,12 @@ static void mt7996_remove_interface(struct ieee80211_hw *hw, |
| 37 | |
| 38 | conf = link_conf_dereference_protected(vif, 0); |
| 39 | mconf = mconf_dereference_protected(mvif, 0); |
| 40 | + if (!mconf || !conf) |
| 41 | + goto out; |
| 42 | |
| 43 | mt7996_remove_bss_conf(vif, conf, mconf); |
| 44 | |
| 45 | +out: |
| 46 | mutex_unlock(&dev->mt76.mutex); |
| 47 | } |
| 48 | |
developer | 1f55fcf | 2024-10-17 14:52:33 +0800 | [diff] [blame^] | 49 | @@ -927,6 +930,9 @@ static void mt7996_vif_cfg_changed(struct ieee80211_hw *hw, |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 50 | struct mt7996_link_sta *mlink = |
| 51 | mlink_dereference_protected(&mvif->sta, link_id); |
| 52 | |
| 53 | + if (!conf || !mconf || !mlink) |
| 54 | + continue; |
| 55 | + |
| 56 | mt7996_mcu_add_bss_info(mconf->phy, conf, mconf, mlink, true); |
| 57 | mt7996_mcu_add_sta(dev, conf, mconf, NULL, mlink, true, false); |
| 58 | } |
developer | 1f55fcf | 2024-10-17 14:52:33 +0800 | [diff] [blame^] | 59 | @@ -1278,6 +1284,8 @@ mt7996_mac_sta_remove_links(struct mt7996_dev *dev, struct ieee80211_vif *vif, |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 60 | link_sta_dereference_protected(sta, link_id); |
| 61 | bool last_link = rem == sta->valid_links && link_id == __fls(rem); |
| 62 | |
| 63 | + if (!mconf || !mlink || !conf || !link_sta) |
| 64 | + continue; |
| 65 | mt7996_remove_link_sta(dev, conf, mconf, link_sta, mlink, last_link); |
| 66 | } |
| 67 | } |
developer | 1f55fcf | 2024-10-17 14:52:33 +0800 | [diff] [blame^] | 68 | @@ -1418,6 +1426,8 @@ mt7996_sta_pre_rcu_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 69 | struct mt7996_link_sta *mlink = |
| 70 | mlink_dereference_protected(msta, link_id); |
| 71 | |
| 72 | + if (!mlink) |
| 73 | + continue; |
| 74 | rcu_assign_pointer(dev->mt76.wcid[mlink->wcid.idx], NULL); |
| 75 | } |
| 76 | spin_unlock_bh(&dev->mt76.status_lock); |
| 77 | diff --git a/mt7996/mcu.c b/mt7996/mcu.c |
developer | 1f55fcf | 2024-10-17 14:52:33 +0800 | [diff] [blame^] | 78 | index cd2bab3..fb4f5f5 100644 |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 79 | --- a/mt7996/mcu.c |
| 80 | +++ b/mt7996/mcu.c |
developer | d0c8945 | 2024-10-11 16:53:27 +0800 | [diff] [blame] | 81 | @@ -3032,6 +3032,9 @@ mt7996_mcu_sta_mld_setup_tlv(struct mt7996_dev *dev, struct sk_buff *skb, |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 82 | mlink = mlink_dereference_protected(msta, link_id); |
| 83 | mconf = mconf_dereference_protected(msta->vif, link_id); |
| 84 | |
| 85 | + if (!mlink || !mconf) |
| 86 | + continue; |
| 87 | + |
| 88 | mld_setup_link->wcid = cpu_to_le16(mlink->wcid.idx); |
| 89 | mld_setup_link->bss_idx = mconf->mt76.idx; |
| 90 | mt76_trace(vif, "link_id(%d) wcid(%d) bss_idx(%d)\n", |
| 91 | -- |
developer | d0c8945 | 2024-10-11 16:53:27 +0800 | [diff] [blame] | 92 | 2.45.2 |
developer | 05f3b2b | 2024-08-19 19:17:34 +0800 | [diff] [blame] | 93 | |