Browse Source

qcacld-3.0: Process ADDTS RSP with medium time as 0

Currently, if AP sends ADDTS response for an AC with
medium time as 0 host treats it as ADD TS failure.

For the UAPSD scenario, no need to check Tspec medium
time if ACM is not enabled in AP.

Change-Id: I9a769e7fc2f675c07f91d934014338a6d311c791
CRs-Fixed: 3039433
abhinav kumar 3 năm trước cách đây
mục cha
commit
cba3794625

+ 71 - 9
core/mac/src/pe/lim/lim_process_action_frame.c

@@ -471,6 +471,74 @@ __lim_process_add_ts_req(struct mac_context *mac, uint8_t *pRxPacketInfo,
 {
 }
 
+/**
+ * lim_is_medium_time_valid() - To check whether AP sends ADD TS response for
+ * an AC with zero medium time and ACM is enabled
+ * @mac_ctx: Pointer to mac context
+ * @pe_session: pointer to session
+ * @addts: Add TS resp buffer
+ *
+ * Return: false if ADD TS response frame for an AC has 0 as medium time.
+ */
+static bool
+lim_is_medium_time_valid(struct mac_context *mac, struct pe_session *pe_session,
+			 tSirAddtsRspInfo addts)
+{
+	struct mac_ts_info *ts_info = &addts.tspec.tsinfo;
+	uint16_t user_priority = ts_info->traffic.userPrio;
+	uint8_t ac = upToAc(user_priority);
+	struct bss_description *bss_desc;
+	tDot11fBeaconIEs *ie_local;
+	bool is_acm = false;
+	QDF_STATUS status;
+
+	if (!pe_session->lim_join_req) {
+		pe_err("Join Request is NULL");
+		return false;
+	}
+
+	bss_desc = &pe_session->lim_join_req->bssDescription;
+	status = wlan_get_parsed_bss_description_ies(mac, bss_desc, &ie_local);
+	if (QDF_IS_STATUS_ERROR(status)) {
+		pe_debug("bss parsing failed");
+		return false;
+	}
+
+	if (ie_local && LIM_IS_QOS_BSS(ie_local)) {
+		switch (ac) {
+		case QCA_WLAN_AC_BE:
+			if (ie_local->WMMParams.acbe_acm)
+				is_acm = true;
+			break;
+		case QCA_WLAN_AC_BK:
+			if (ie_local->WMMParams.acbk_acm)
+				is_acm = true;
+			break;
+		case QCA_WLAN_AC_VI:
+			if (ie_local->WMMParams.acvi_acm)
+				is_acm = true;
+			break;
+		case QCA_WLAN_AC_VO:
+			if (ie_local->WMMParams.acvo_acm)
+				is_acm = true;
+			break;
+		default:
+			pe_debug("Unknown AC:%d", ac);
+			break;
+		}
+	}
+	/*
+	 * If AP sends ADD TS response for an AC with medium time as 0
+	 * and acm disabled treat it as ADD TS failure.
+	 */
+	if (!addts.tspec.mediumTime && is_acm) {
+		pe_debug("medium time 0 and ACM is mandatory. ADDTS failed");
+		return false;
+	}
+
+	return true;
+}
+
 /**
  * __lim_process_add_ts_rsp() - To process add ts response frame
  * @mac_ctx: pointer to mac context
@@ -569,17 +637,11 @@ static void __lim_process_add_ts_rsp(struct mac_context *mac_ctx,
 		addts.tspec.tsinfo.traffic.userPrio, addts.status);
 
 	/*
-	 * If AP sends ADD TS response for an AC with medium time as 0
-	 * treat it as ADD TS failure.
+	 * Change the status to failure and fallthrough to send response
+	 * to SME to cleanup the flow.
 	 */
-	if (!addts.tspec.mediumTime) {
-		pe_err("Medium Time 0! Add TS failed");
-		/*
-		 * Change the status to failure and fallthrough to send response
-		 * to SME to cleanup the flow.
-		 */
+	if (!lim_is_medium_time_valid(mac_ctx, session, addts))
 		addts.status = STATUS_UNSPECIFIED_FAILURE;
-	}
 
 	/* deactivate the response timer */
 	lim_deactivate_and_change_timer(mac_ctx, eLIM_ADDTS_RSP_TIMER);

+ 0 - 10
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -66,16 +66,6 @@
 #include "wlan_reg_services_api.h"
 #include <lim_mlo.h>
 
-#define LIM_QOS_AP_SUPPORTS_UAPSD         0x80
-
-#define LIM_IS_QOS_BSS(ie_struct)  \
-		(ie_struct->WMMParams.present || ie_struct->WMMInfoAp.present)
-
-#define LIM_IS_UAPSD_BSS(ie_struct) \
-	((ie_struct->WMMParams.present && \
-	 (ie_struct->WMMParams.qosInfo & LIM_QOS_AP_SUPPORTS_UAPSD)) || \
-	 (ie_struct->WMMInfoAp.present && ie_struct->WMMInfoAp.uapsd))
-
 /* SME REQ processing function templates */
 static bool __lim_process_sme_sys_ready_ind(struct mac_context *, uint32_t *);
 static bool __lim_process_sme_start_bss_req(struct mac_context *,

+ 10 - 0
core/mac/src/pe/lim/lim_utils.h

@@ -39,6 +39,16 @@
 #include "wlan_mlme_vdev_mgr_interface.h"
 #include "wlan_qct_sys.h"
 
+#define LIM_QOS_AP_SUPPORTS_UAPSD         0x80
+
+#define LIM_IS_QOS_BSS(ie_struct)  \
+		(ie_struct->WMMParams.present || ie_struct->WMMInfoAp.present)
+
+#define LIM_IS_UAPSD_BSS(ie_struct) \
+	((ie_struct->WMMParams.present && \
+	 (ie_struct->WMMParams.qosInfo & LIM_QOS_AP_SUPPORTS_UAPSD)) || \
+	 (ie_struct->WMMInfoAp.present && ie_struct->WMMInfoAp.uapsd))
+
 #define LIM_AID_MASK                              0xC000
 #define LIM_SPECTRUM_MANAGEMENT_BIT_MASK          0x0100
 #define LIM_RRM_BIT_MASK                          0x1000