blob: 5c2ffb7dad8955f27d62b9472db5448ec48dfe72 [file] [log] [blame]
developer849549c2023-08-02 17:26:48 +08001From 27cd55caaf8ce2e8bb5c9bd82160ee4d32e95a3d Mon Sep 17 00:00:00 2001
developer68e1eb22022-05-09 17:02:12 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Thu, 14 Apr 2022 15:18:02 +0800
developer8f0d89b2023-07-28 07:16:44 +08004Subject: [PATCH 1007/1034] wifi: mt76: mt7915: drop undefined action frame
developer68e1eb22022-05-09 17:02:12 +08005
6---
developer4721e252022-06-21 16:41:28 +08007 mt7915/mac.c | 6 ++++++
developer68e1eb22022-05-09 17:02:12 +08008 1 file changed, 6 insertions(+)
9
10diff --git a/mt7915/mac.c b/mt7915/mac.c
developer849549c2023-08-02 17:26:48 +080011index 20b9b99f..7ae34b77 100644
developer68e1eb22022-05-09 17:02:12 +080012--- a/mt7915/mac.c
13+++ b/mt7915/mac.c
developer2157bf82023-06-26 02:27:49 +080014@@ -737,6 +737,8 @@ int mt7915_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
developer68e1eb22022-05-09 17:02:12 +080015 struct mt76_tx_info *tx_info)
16 {
17 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx_info->skb->data;
18+ struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)tx_info->skb->data;
19+ __le16 fc = hdr->frame_control;
20 struct mt7915_dev *dev = container_of(mdev, struct mt7915_dev, mt76);
21 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_info->skb);
22 struct ieee80211_key_conf *key = info->control.hw_key;
developer2157bf82023-06-26 02:27:49 +080023@@ -767,6 +769,10 @@ int mt7915_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
developer68e1eb22022-05-09 17:02:12 +080024 t = (struct mt76_txwi_cache *)(txwi + mdev->drv->txwi_size);
25 t->skb = tx_info->skb;
26
27+ if (ieee80211_is_action(fc) &&
28+ mgmt->u.action.category == 0xff)
29+ return -1;
30+
31 id = mt76_token_consume(mdev, &t);
32 if (id < 0)
33 return id;
34--
developer849549c2023-08-02 17:26:48 +0800352.39.2
developer68e1eb22022-05-09 17:02:12 +080036