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

qcacld-3.0: Update crypto type properly during lim join req

The crypto type does not get populated properly from
csr_roam_prepare_bss_config() to lim_process_sme_join_req(). This
makes auth type to be picked as 0 (open) in lim even in SAE
connection and AP rejects the association with reason
INVALID_AUTH_ALG as SAE authentication is expected.

Invoke lim_set_privacy() from lim_process_sme_join_req() to
update all required parameters.

Change-Id: I1c7a5d11b4f4255fba88597a6c57ae2a009b94f9
CRs-Fixed: 2906991
Jyoti Kumari 4 жил өмнө
parent
commit
36b13ee533

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

@@ -3729,6 +3729,8 @@ __lim_process_sme_join_req(struct mac_context *mac_ctx, void *msg_buf)
 	uint8_t vdev_id = 0;
 	struct bss_description *bss_desc;
 	QDF_STATUS status;
+	int32_t ucast_cipher, auth_mode, akm;
+	tSirMacCapabilityInfo *ap_cap_info;
 
 	if (!mac_ctx || !msg_buf) {
 		QDF_TRACE(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_ERROR,
@@ -3873,6 +3875,18 @@ __lim_process_sme_join_req(struct mac_context *mac_ctx, void *msg_buf)
 			 session->vht_config.csnof_beamformer_antSup,
 			 session->isCiscoVendorAP);
 
+		ucast_cipher = wlan_crypto_get_param(session->vdev,
+						     WLAN_CRYPTO_PARAM_UCAST_CIPHER);
+		auth_mode = wlan_crypto_get_param(session->vdev,
+						  WLAN_CRYPTO_PARAM_AUTH_MODE);
+		akm = wlan_crypto_get_param(session->vdev,
+					    WLAN_CRYPTO_PARAM_KEY_MGMT);
+		ap_cap_info = (tSirMacCapabilityInfo *)
+			       &session->lim_join_req->bssDescription.capabilityInfo;
+
+		lim_set_privacy(mac_ctx, ucast_cipher, auth_mode, akm,
+				ap_cap_info->privacy);
+
 		/* Issue LIM_MLM_JOIN_REQ to MLM */
 		status = lim_send_connect_req_to_mlm(session);
 		if (QDF_IS_STATUS_ERROR(status)) {