浏览代码

qcacld-3.0: Send EAPOL packet over NL for non ML connection

Currently, Driver is registering control port over NL feature. But
EAPOL packets are not sent over NL only incase of non-ML connection.
Because of this EAPOL packets are being dropped.

To avoid this, Send EAPOL packets over NL for non ML connection
in the above scenario.

Change-Id: Iabe4e9cf5934ffd28753f99fbef9c5bbce7224e8
CRs-Fixed: 3061152
Bapiraju Alla 3 年之前
父节点
当前提交
a75ce7c6aa
共有 2 个文件被更改,包括 9 次插入3 次删除
  1. 1 1
      core/hdd/inc/wlan_hdd_tx_rx.h
  2. 8 2
      core/hdd/src/wlan_hdd_cfg80211.c

+ 1 - 1
core/hdd/inc/wlan_hdd_tx_rx.h

@@ -82,7 +82,7 @@ struct hdd_context;
 #define SME_QOS_UAPSD_CFG_VI_CHANGED_MASK     0xF4
 #define SME_QOS_UAPSD_CFG_VO_CHANGED_MASK     0xF8
 
-#ifdef WLAN_FEATURE_11BE_MLO
+#ifdef CFG80211_CTRL_FRAME_SRC_ADDR_TA_ADDR
 #define SEND_EAPOL_OVER_NL true
 #else
 #define SEND_EAPOL_OVER_NL  false

+ 8 - 2
core/hdd/src/wlan_hdd_cfg80211.c

@@ -23123,6 +23123,7 @@ static int __wlan_hdd_cfg80211_tx_control_port(struct wiphy *wiphy,
 {
 	qdf_nbuf_t nbuf;
 	struct ethhdr *ehdr;
+	struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
 
 	nbuf = qdf_nbuf_alloc(NULL, (len + sizeof(struct ethhdr)), 0, 4, false);
 	if (!nbuf)
@@ -23131,7 +23132,12 @@ static int __wlan_hdd_cfg80211_tx_control_port(struct wiphy *wiphy,
 	skb_put_data(nbuf, buf, len);
 	ehdr = skb_push(nbuf, sizeof(struct ethhdr));
 	qdf_mem_copy(ehdr->h_dest, dest, ETH_ALEN);
-	qdf_mem_copy(ehdr->h_source, src, ETH_ALEN);
+
+	if (!src || qdf_is_macaddr_zero((struct qdf_mac_addr *)src))
+		qdf_mem_copy(ehdr->h_source, adapter->mac_addr.bytes, ETH_ALEN);
+	else
+		qdf_mem_copy(ehdr->h_source, src, ETH_ALEN);
+
 	ehdr->h_proto = proto;
 
 	nbuf->dev = dev;
@@ -23226,7 +23232,7 @@ bool wlan_hdd_cfg80211_rx_control_port(struct net_device *dev,
 				       struct sk_buff *skb,
 				       bool unencrypted)
 {
-	return cfg80211_rx_control_port(dev, skb, unencrypted);
+	return false;
 }
 #endif