Эх сурвалжийг харах

qcacld-3.0: Translate addr in MAC header for action frame

For mgmt frames of subtype action and category not public,
kernel will use MLD address in SA, TA and BSSID fields.
So these fields in the mgmt frame received from kernel
needs to be translated to link addresses and similarly,
in frames received over the air, the link addresses in
these fields are to be changed to MLD address before
sending to kernel.

Change-Id: Ie63c09ece7550dfdc69c82ef8b7111251deee33e
CRs-Fixed: 3392314
Vinod Kumar Pirla 2 жил өмнө
parent
commit
1201f91318

+ 15 - 1
components/p2p/core/src/wlan_p2p_off_chan_tx.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -1813,6 +1813,7 @@ static QDF_STATUS p2p_execute_tx_action_frame(
 	uint32_t nbytes_copy;
 	uint32_t buf_len = tx_ctx->buf_len;
 	struct p2p_frame_info *frame_info;
+	struct wlan_objmgr_vdev *vdev;
 
 	frame_info = &(tx_ctx->frame_info);
 	if (frame_info->sub_type == P2P_MGMT_PROBE_RSP) {
@@ -1832,6 +1833,18 @@ static QDF_STATUS p2p_execute_tx_action_frame(
 			presence_noa_attr = p2p_get_presence_noa_attr(
 						ie, ie_len);
 		}
+	} else if (frame_info->type == P2P_FRAME_MGMT &&
+		   frame_info->sub_type == P2P_MGMT_ACTION) {
+		vdev = wlan_objmgr_get_vdev_by_id_from_psoc(
+				tx_ctx->p2p_soc_obj->soc, tx_ctx->vdev_id,
+				WLAN_P2P_ID);
+
+		if (vdev) {
+			wlan_mlo_update_action_frame_from_user(vdev,
+							       tx_ctx->buf,
+							       tx_ctx->buf_len);
+			wlan_objmgr_vdev_release_ref(vdev, WLAN_P2P_ID);
+		}
 	}
 
 	if ((frame_info->sub_type != P2P_MGMT_NOT_SUPPORT) &&
@@ -1882,6 +1895,7 @@ static QDF_STATUS p2p_execute_tx_action_frame(
 		qdf_nbuf_free(packet);
 		return status;
 	}
+
 	status = p2p_mgmt_tx(tx_ctx, buf_len, packet, frame);
 	if (status == QDF_STATUS_SUCCESS) {
 		if (tx_ctx->no_ack) {

+ 15 - 0
core/mac/src/pe/lim/lim_utils.c

@@ -9623,6 +9623,7 @@ void lim_send_sme_mgmt_frame_ind(struct mac_context *mac_ctx, uint8_t frame_type
 {
 	tpSirSmeMgmtFrameInd sme_mgmt_frame = NULL;
 	uint16_t length;
+	struct wlan_objmgr_vdev *vdev;
 
 	length = sizeof(tSirSmeMgmtFrameInd) + frame_len;
 
@@ -9635,8 +9636,22 @@ void lim_send_sme_mgmt_frame_ind(struct mac_context *mac_ctx, uint8_t frame_type
 		!vdev_id) {
 		pe_debug("Broadcast action frame");
 		vdev_id = SME_SESSION_ID_BROADCAST;
+		goto fill_frame;
 	}
 
+	if (frame_type != SIR_MAC_MGMT_ACTION)
+		goto fill_frame;
+
+	vdev = wlan_objmgr_get_vdev_by_id_from_psoc(mac_ctx->psoc, vdev_id,
+						    WLAN_LEGACY_MAC_ID);
+
+	if (!vdev)
+		goto fill_frame;
+
+	wlan_mlo_update_action_frame_to_user(vdev, frame, frame_len);
+	wlan_objmgr_vdev_release_ref(vdev, WLAN_LEGACY_MAC_ID);
+
+fill_frame:
 	sme_mgmt_frame->frame_len = frame_len;
 	sme_mgmt_frame->sessionId = vdev_id;
 	sme_mgmt_frame->frameType = frame_type;