Parcourir la source

qcacld-3.0: Send disassoc failure if vdev is in INIT state

In roaming scenario, if association is not completed with
new AP, there is possibility of trying to send disassoc in
failure handling. So, if vdev is in INIT state send
disassoc failure and cleanup session.

Change-Id: I0fcf3b0b51aa810323911c5ebc121767ca22a502
CRs-Fixed: 2453160
Nirav Shah il y a 5 ans
Parent
commit
11d68b798c
1 fichiers modifiés avec 28 ajouts et 0 suppressions
  1. 28 0
      core/mac/src/pe/lim/lim_process_sme_req_messages.c

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

@@ -4604,6 +4604,23 @@ static void lim_process_sme_disassoc_req(struct mac_context *mac_ctx,
 		return;
 	}
 
+	/* In LFR2.0 roaming scenario, if association is not completed with
+	 * new AP, there is possibality of trying to send disassoc in
+	 * failure handling. So, if vdev is in INIT state send
+	 * disassoc failure and cleanup session.
+	 */
+	if (QDF_IS_STATUS_SUCCESS(
+		wlan_vdev_mlme_is_init_state(session->vdev))) {
+		pe_err("vdev is in INIT state. Send failure.");
+		lim_send_sme_disassoc_ntf(mac_ctx,
+					  disassoc_req.peer_macaddr.bytes,
+					  eSIR_SME_INVALID_PARAMETERS,
+					  eLIM_HOST_DISASSOC, 1,
+					  disassoc_req.sessionId, session);
+
+		return;
+	}
+
 	if (LIM_IS_STA_ROLE(session))
 		lim_process_disconnect_sta(session, msg);
 	else
@@ -4635,6 +4652,17 @@ static void lim_process_sme_deauth_req(struct mac_context *mac_ctx,
 		return;
 	}
 
+	if (QDF_IS_STATUS_SUCCESS(
+		wlan_vdev_mlme_is_init_state(session->vdev))) {
+		pe_err("vdev is in INIT state. Send failure.");
+		lim_send_sme_deauth_ntf(mac_ctx,
+					sme_deauth_req.peer_macaddr.bytes,
+					eSIR_SME_INVALID_PARAMETERS,
+					eLIM_HOST_DEAUTH, 1,
+					sme_deauth_req.sessionId);
+		return;
+	}
+
 	if (LIM_IS_STA_ROLE(session))
 		lim_process_disconnect_sta(session, msg);
 	else