blob: cebcb18a9d46935c49705a513b05f85136967076 [file] [log] [blame]
developer133b30e2024-03-19 15:52:02 +08001From 8c5ba6c32357e4de7183db027141167555856996 Mon Sep 17 00:00:00 2001
developerd0309462024-01-29 15:45:32 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Mon, 29 Jan 2024 15:33:24 +0800
developer133b30e2024-03-19 15:52:02 +08004Subject: [PATCH 12/14] wifi: mt76: add sanity check to prevent kernel crash
developerd0309462024-01-29 15:45:32 +08005
6wcid may not be initialized when mac80211 calls mt76.tx and it would lead to
7kernel crash.
8
9Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com>
10---
11 tx.c | 8 ++++++++
12 1 file changed, 8 insertions(+)
13
14diff --git a/tx.c b/tx.c
developer133b30e2024-03-19 15:52:02 +080015index 5cf6edee..ab42f69b 100644
developerd0309462024-01-29 15:45:32 +080016--- a/tx.c
17+++ b/tx.c
18@@ -345,6 +345,14 @@ mt76_tx(struct mt76_phy *phy, struct ieee80211_sta *sta,
19
20 info->hw_queue |= FIELD_PREP(MT_TX_HW_QUEUE_PHY, phy->band_idx);
21
22+ if (!wcid->tx_pending.prev || !wcid->tx_pending.next) {
23+ dev_warn(phy->dev->dev, "Un-initialized STA %pM wcid %d in mt76_tx\n",
24+ sta->addr, wcid->idx);
25+
26+ ieee80211_free_txskb(phy->hw, skb);
27+ return;
28+ }
29+
30 spin_lock_bh(&wcid->tx_pending.lock);
31 __skb_queue_tail(&wcid->tx_pending, skb);
32 spin_unlock_bh(&wcid->tx_pending.lock);
33--
342.18.0
35