Prechádzať zdrojové kódy

qcacld-3.0: Isolate roaming related timers

Create separate routines for all the host roaming related
timers and hence they can be compiled out if roaming feature
is not needed

CRs-Fixed: 978905
Change-Id: I29f99a075c72d877fc97f760449e3421ebd64916
Varun Reddy Yeturu 9 rokov pred
rodič
commit
32de0e4137

+ 23 - 14
core/mac/src/pe/lim/lim_process_assoc_rsp_frame.c

@@ -535,6 +535,27 @@ static void lim_update_stads_ext_cap(tpAniSirGlobal mac_ctx,
 #endif
 }
 
+/**
+ * lim_stop_reassoc_retry_timer() - Cleanup after reassoc response is received
+ *  @mac_ctx: Global MAC context
+ *
+ *  Stop the reassoc retry timer and release the stored reassoc request.
+ *
+ *  Return: None
+ */
+void lim_stop_reassoc_retry_timer(tpAniSirGlobal mac_ctx)
+{
+	mac_ctx->lim.reAssocRetryAttempt = 0;
+	if ((NULL != mac_ctx->lim.pSessionEntry)
+		&& (NULL !=
+			mac_ctx->lim.pSessionEntry->pLimMlmReassocRetryReq)) {
+		qdf_mem_free(
+			mac_ctx->lim.pSessionEntry->pLimMlmReassocRetryReq);
+		mac_ctx->lim.pSessionEntry->pLimMlmReassocRetryReq = NULL;
+	}
+	lim_deactivate_and_change_timer(mac_ctx, eLIM_REASSOC_FAIL_TIMER);
+}
+
 /**
  * lim_process_assoc_rsp_frame() - Processes assoc response
  * @mac_ctx: Pointer to Global MAC structure
@@ -793,20 +814,8 @@ lim_process_assoc_rsp_frame(tpAniSirGlobal mac_ctx,
 	/* Stop Association failure timer */
 	if (subtype == LIM_ASSOC)
 		lim_deactivate_and_change_timer(mac_ctx, eLIM_ASSOC_FAIL_TIMER);
-	else {
-		/* Stop Reassociation failure timer */
-		mac_ctx->lim.reAssocRetryAttempt = 0;
-		if ((NULL != mac_ctx->lim.pSessionEntry)
-		    && (NULL !=
-			mac_ctx->lim.pSessionEntry->pLimMlmReassocRetryReq)) {
-			qdf_mem_free(
-			mac_ctx->lim.pSessionEntry->pLimMlmReassocRetryReq);
-			mac_ctx->lim.pSessionEntry->pLimMlmReassocRetryReq =
-				NULL;
-		}
-		lim_deactivate_and_change_timer(mac_ctx,
-			eLIM_REASSOC_FAIL_TIMER);
-	}
+	else
+		lim_stop_reassoc_retry_timer(mac_ctx);
 
 	if (assoc_rsp->statusCode != eSIR_MAC_SUCCESS_STATUS
 #ifdef WLAN_FEATURE_11W

+ 133 - 93
core/mac/src/pe/lim/lim_timer_utils.c

@@ -58,8 +58,129 @@
    convert  ACTIVE DFS channel to DFS channels */
 #define ACTIVE_TO_PASSIVE_CONVERISON_TIMEOUT     1000
 
-static bool
-lim_create_non_ap_timers(tpAniSirGlobal pMac)
+/**
+ * lim_create_timers_host_roam() - Create timers used in host based roaming
+ * @mac_ctx: Global MAC context
+ *
+ * Create reassoc and preauth timers
+ *
+ * Return: TX_SUCCESS or TX_TIMER_ERROR
+ */
+uint32_t lim_create_timers_host_roam(tpAniSirGlobal mac_ctx)
+{
+	uint32_t cfg_value;
+	if (wlan_cfg_get_int(mac_ctx, WNI_CFG_REASSOCIATION_FAILURE_TIMEOUT,
+			     &cfg_value) != eSIR_SUCCESS)
+		lim_log(mac_ctx, LOGP,
+			FL("could not retrieve ReassocFailureTimeout value"));
+
+	cfg_value = SYS_MS_TO_TICKS(cfg_value);
+	/* Create Association failure timer and activate it later */
+	if (tx_timer_create(mac_ctx,
+			&mac_ctx->lim.limTimers.gLimReassocFailureTimer,
+		    "REASSOC FAILURE TIMEOUT", lim_assoc_failure_timer_handler,
+		    LIM_REASSOC, cfg_value, 0, TX_NO_ACTIVATE) != TX_SUCCESS) {
+		lim_log(mac_ctx, LOGP, FL("failed to create Reassoc timer"));
+		return TX_TIMER_ERROR;
+	}
+	cfg_value = 1000;
+	cfg_value = SYS_MS_TO_TICKS(cfg_value);
+	if (tx_timer_create(mac_ctx,
+			&mac_ctx->lim.limTimers.gLimFTPreAuthRspTimer,
+			"FT PREAUTH RSP TIMEOUT",
+			lim_timer_handler, SIR_LIM_FT_PREAUTH_RSP_TIMEOUT,
+			cfg_value, 0, TX_NO_ACTIVATE) != TX_SUCCESS) {
+		lim_log(mac_ctx, LOGP, FL("failed to create Join fail timer"));
+		goto err_roam_timer;
+	}
+	return TX_SUCCESS;
+
+err_roam_timer:
+	tx_timer_delete(&mac_ctx->lim.limTimers.gLimReassocFailureTimer);
+	return TX_TIMER_ERROR;
+}
+
+/**
+ * lim_delete_timers_host_roam() - Delete timers used in host based roaming
+ * @mac_ctx: Global MAC context
+ *
+ * Delete reassoc and preauth timers
+ *
+ * Return: none
+ */
+void lim_delete_timers_host_roam(tpAniSirGlobal mac_ctx)
+{
+	tLimTimers *lim_timer = &mac_ctx->lim.limTimers;
+
+	/* Deactivate and delete Reassociation failure timer. */
+	tx_timer_deactivate(&lim_timer->gLimReassocFailureTimer);
+	tx_timer_delete(&lim_timer->gLimReassocFailureTimer);
+
+	/* Deactivate and delete FT Preauth response timer */
+	tx_timer_deactivate(&lim_timer->gLimFTPreAuthRspTimer);
+	tx_timer_delete(&lim_timer->gLimFTPreAuthRspTimer);
+}
+
+/**
+ * lim_deactivate_and_change_timer_host_roam() - Change timers in host roaming
+ * @mac_ctx: Pointer to Global MAC structure
+ * @timer_id: enum of timer to be deactivated and changed
+ *
+ * This function is called to deactivate and change a timer for future
+ * re-activation for host roaming timers.
+ *
+ * Return: None
+ */
+void lim_deactivate_and_change_timer_host_roam(tpAniSirGlobal mac_ctx,
+		uint32_t timer_id)
+{
+	uint32_t val = 0;
+
+	switch (timer_id) {
+	case eLIM_REASSOC_FAIL_TIMER:
+		if (tx_timer_deactivate
+			(&mac_ctx->lim.limTimers.gLimReassocFailureTimer) !=
+				TX_SUCCESS) {
+			lim_log(mac_ctx, LOGP,
+				FL("unable to deactivate Reassoc fail timer"));
+		}
+		if (wlan_cfg_get_int(mac_ctx,
+				WNI_CFG_REASSOCIATION_FAILURE_TIMEOUT,
+				&val) != eSIR_SUCCESS) {
+			lim_log(mac_ctx, LOGP,
+				FL("could not get ReassocFailureTimeout val"));
+		}
+		val = SYS_MS_TO_TICKS(val);
+		if (tx_timer_change
+			(&mac_ctx->lim.limTimers.gLimReassocFailureTimer, val,
+			 0) != TX_SUCCESS) {
+			lim_log(mac_ctx, LOGP,
+				FL("unable to change Reassoc fail timer"));
+		}
+		break;
+
+	case eLIM_FT_PREAUTH_RSP_TIMER:
+		if (tx_timer_deactivate
+			(&mac_ctx->lim.limTimers.gLimFTPreAuthRspTimer) !=
+			TX_SUCCESS) {
+			lim_log(mac_ctx, LOGP,
+				FL("Unable to deactivate Preauth Fail timer"));
+			return;
+		}
+		val = 1000;
+		val = SYS_MS_TO_TICKS(val);
+		if (tx_timer_change(
+				&mac_ctx->lim.limTimers.gLimFTPreAuthRspTimer,
+				val, 0) != TX_SUCCESS) {
+			lim_log(mac_ctx, LOGP,
+				FL("Unable to change Join Failure timer"));
+			return;
+		}
+		break;
+	}
+}
+
+static bool lim_create_non_ap_timers(tpAniSirGlobal pMac)
 {
 	uint32_t cfgValue;
 	/* Create Channel Switch Timer */
@@ -152,20 +273,6 @@ lim_create_non_ap_timers(tpAniSirGlobal pMac)
 			FL("could not create Association failure timer"));
 		return false;
 	}
-	if (wlan_cfg_get_int(pMac, WNI_CFG_REASSOCIATION_FAILURE_TIMEOUT,
-			     &cfgValue) != eSIR_SUCCESS)
-		lim_log(pMac, LOGP,
-			FL("could not retrieve ReassocFailureTimeout value"));
-
-	cfgValue = SYS_MS_TO_TICKS(cfgValue);
-	/* Create Association failure timer and activate it later */
-	if (tx_timer_create(pMac, &pMac->lim.limTimers.gLimReassocFailureTimer,
-		    "REASSOC FAILURE TIMEOUT", lim_assoc_failure_timer_handler,
-		    LIM_REASSOC, cfgValue, 0, TX_NO_ACTIVATE) != TX_SUCCESS) {
-		lim_log(pMac, LOGP,
-			FL("could not create Reassociation failure timer"));
-		return false;
-	}
 
 	if (wlan_cfg_get_int(pMac, WNI_CFG_ADDTS_RSP_TIMEOUT, &cfgValue)
 			     != eSIR_SUCCESS)
@@ -236,9 +343,12 @@ uint32_t lim_create_timers(tpAniSirGlobal pMac)
 	uint32_t cfgValue, i = 0;
 	uint32_t cfgValue1;
 
-	PELOG1(lim_log(pMac, LOG1,
+	lim_log(pMac, LOG1,
 	       FL("Creating Timers used by LIM module in Role %d"),
-	       pMac->lim.gLimSystemRole);)
+	       pMac->lim.gLimSystemRole);
+	/* Create timers required for host roaming feature */
+	if (TX_SUCCESS != lim_create_timers_host_roam(pMac))
+		return TX_TIMER_ERROR;
 
 	if (wlan_cfg_get_int(pMac, WNI_CFG_ACTIVE_MINIMUM_CHANNEL_TIME,
 			     &cfgValue) != eSIR_SUCCESS) {
@@ -352,19 +462,6 @@ uint32_t lim_create_timers(tpAniSirGlobal pMac)
 		lim_log(pMac, LOGP, FL("Cannot create update OLBC cache tmr"));
 		goto err_timer;
 	}
-	/* In future we need to use the auth timer, cause the pre auth session
-	 * will be introduced before sending Auth frame. We need to go off
-	 * channel and come back to home channel
-	 */
-	cfgValue = 1000;
-	cfgValue = SYS_MS_TO_TICKS(cfgValue);
-	if (tx_timer_create(pMac, &pMac->lim.limTimers.gLimFTPreAuthRspTimer,
-			    "FT PREAUTH RSP TIMEOUT",
-			    lim_timer_handler, SIR_LIM_FT_PREAUTH_RSP_TIMEOUT,
-			    cfgValue, 0, TX_NO_ACTIVATE) != TX_SUCCESS) {
-		lim_log(pMac, LOGP, FL("could not create Join failure timer"));
-		goto err_timer;
-	}
 	cfgValue = 1000;
 	cfgValue = SYS_MS_TO_TICKS(cfgValue);
 	if (tx_timer_create(pMac, &pMac->lim.limTimers.gLimRemainOnChannelTimer,
@@ -690,6 +787,11 @@ void lim_deactivate_and_change_timer(tpAniSirGlobal pMac, uint32_t timerId)
 		       (pMac, TRACE_CODE_TIMER_DEACTIVATE, NO_SESSION, timerId));
 
 	switch (timerId) {
+	case eLIM_REASSOC_FAIL_TIMER:
+	case eLIM_FT_PREAUTH_RSP_TIMER:
+		lim_deactivate_and_change_timer_host_roam(pMac, timerId);
+		break;
+
 	case eLIM_ADDTS_RSP_TIMER:
 		pMac->lim.gLimAddtsRspTimerCount++;
 		if (tx_timer_deactivate(&pMac->lim.limTimers.gLimAddtsRspTimer)
@@ -880,41 +982,6 @@ void lim_deactivate_and_change_timer(tpAniSirGlobal pMac, uint32_t timerId)
 
 		break;
 
-	case eLIM_REASSOC_FAIL_TIMER:
-		if (tx_timer_deactivate
-			    (&pMac->lim.limTimers.gLimReassocFailureTimer) !=
-		    TX_SUCCESS) {
-			/* Could not deactivate Reassociation failure timer. */
-			/* Log error */
-			lim_log(pMac, LOGP,
-				FL
-					("unable to deactivate Reassoc failure timer"));
-		}
-		/* Change timer to reactivate it in future */
-		if (wlan_cfg_get_int(pMac, WNI_CFG_REASSOCIATION_FAILURE_TIMEOUT,
-				     &val) != eSIR_SUCCESS) {
-			/**
-			 * Could not get ReassocFailureTimeout value
-			 * from CFG. Log error.
-			 */
-			lim_log(pMac, LOGP,
-				FL
-					("could not retrieve ReassocFailureTimeout value"));
-		}
-		val = SYS_MS_TO_TICKS(val);
-
-		if (tx_timer_change
-			    (&pMac->lim.limTimers.gLimReassocFailureTimer, val,
-			    0) != TX_SUCCESS) {
-			/* Could not change Reassociation failure timer. */
-			/* Log error */
-			lim_log(pMac, LOGP,
-				FL
-					("unable to change Reassociation failure timer"));
-		}
-
-		break;
-
 	case eLIM_PROBE_AFTER_HB_TIMER:
 		if (tx_timer_deactivate
 			    (&pMac->lim.limTimers.gLimProbeAfterHBTimer) !=
@@ -958,33 +1025,6 @@ void lim_deactivate_and_change_timer(tpAniSirGlobal pMac, uint32_t timerId)
 	case eLIM_LEARN_DURATION_TIMER:
 		break;
 
-	case eLIM_FT_PREAUTH_RSP_TIMER:
-		if (tx_timer_deactivate
-			    (&pMac->lim.limTimers.gLimFTPreAuthRspTimer) !=
-		    TX_SUCCESS) {
-			/**
-			** Could not deactivate Join Failure
-			** timer. Log error.
-			**/
-			lim_log(pMac, LOGP,
-				FL
-					("Unable to deactivate Preauth response Failure timer"));
-			return;
-		}
-		val = 1000;
-		val = SYS_MS_TO_TICKS(val);
-		if (tx_timer_change(&pMac->lim.limTimers.gLimFTPreAuthRspTimer,
-				    val, 0) != TX_SUCCESS) {
-			/**
-			 * Could not change Join Failure
-			 * timer. Log error.
-			 */
-			lim_log(pMac, LOGP,
-				FL("Unable to change Join Failure timer"));
-			return;
-		}
-		break;
-
 	case eLIM_REMAIN_CHN_TIMER:
 		if (tx_timer_deactivate
 			    (&pMac->lim.limTimers.gLimRemainOnChannelTimer) !=

+ 1 - 8
core/mac/src/pe/lim/lim_utils.c

@@ -605,6 +605,7 @@ void lim_cleanup_mlm(tpAniSirGlobal mac_ctx)
 	if (mac_ctx->lim.gLimTimersCreated == 1) {
 		lim_timer = &mac_ctx->lim.limTimers;
 
+		lim_delete_timers_host_roam(mac_ctx);
 		/* Deactivate and delete Periodic Probe channel timers. */
 		tx_timer_deactivate(&lim_timer->gLimPeriodicProbeReqTimer);
 		tx_timer_delete(&lim_timer->gLimPeriodicProbeReqTimer);
@@ -634,10 +635,6 @@ void lim_cleanup_mlm(tpAniSirGlobal mac_ctx)
 		tx_timer_deactivate(&lim_timer->gLimAssocFailureTimer);
 		tx_timer_delete(&lim_timer->gLimAssocFailureTimer);
 
-		/* Deactivate and delete Reassociation failure timer. */
-		tx_timer_deactivate(&lim_timer->gLimReassocFailureTimer);
-		tx_timer_delete(&lim_timer->gLimReassocFailureTimer);
-
 		/* Deactivate and delete Authentication failure timer. */
 		tx_timer_deactivate(&lim_timer->gLimAuthFailureTimer);
 		tx_timer_delete(&lim_timer->gLimAuthFailureTimer);
@@ -681,10 +678,6 @@ void lim_cleanup_mlm(tpAniSirGlobal mac_ctx)
 		tx_timer_deactivate(&lim_timer->gLimPreAuthClnupTimer);
 		tx_timer_delete(&lim_timer->gLimPreAuthClnupTimer);
 
-		/* Deactivate and delete FT Preauth response timer */
-		tx_timer_deactivate(&lim_timer->gLimFTPreAuthRspTimer);
-		tx_timer_delete(&lim_timer->gLimFTPreAuthRspTimer);
-
 		/* Deactivate and delete remain on channel timer */
 		tx_timer_deactivate(&lim_timer->gLimRemainOnChannelTimer);
 		tx_timer_delete(&lim_timer->gLimRemainOnChannelTimer);

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

@@ -585,5 +585,9 @@ uint8_t lim_get_80Mhz_center_channel(uint8_t primary_channel);
 void lim_update_obss_scanparams(tpPESession session,
 			tDot11fIEOBSSScanParameters *scan_params);
 void lim_init_obss_params(tpAniSirGlobal mac_ctx, tpPESession session);
+uint32_t lim_create_timers_host_roam(tpAniSirGlobal mac_ctx);
+void lim_delete_timers_host_roam(tpAniSirGlobal mac_ctx);
+void lim_deactivate_and_change_timer_host_roam(tpAniSirGlobal mac_ctx,
+		uint32_t timer_id);
 
 #endif /* __LIM_UTILS_H */