Преглед изворни кода

qcacld-3.0: Fix encrypt type mismatch after roaming

When roam from legacy to MLO AP,  vdev1 pe session is created, but encrypt
type isn't filled,  so encrypt type in session and beacon mismatch,
disconnect will happen later.

change-Id: I289f81ab9b73f0d01c1c36a002f15eb2de66a334
CRs-Fixed: 3351876
Jianmin Zhu пре 2 година
родитељ
комит
753520a1a4

+ 8 - 0
core/mac/src/pe/include/lim_api.h

@@ -814,5 +814,13 @@ lim_mlo_roam_delete_link_peer(struct pe_session *pe_session,
 enum ani_akm_type
 lim_get_connected_akm(struct pe_session *session, int32_t ucast_cipher,
 		      int32_t auth_mode, int32_t akm);
+
+/**
+ * lim_get_encrypt_ed_type() - Get encrypt type
+ * @ucast_cipher: Ucast cipher
+ *
+ * Return: Encryption type enum
+ */
+tAniEdType lim_get_encrypt_ed_type(int32_t ucast_cipher);
 /************************************************************/
 #endif /* __LIM_API_H */

+ 5 - 2
core/mac/src/pe/lim/lim_api.c

@@ -1908,13 +1908,16 @@ static void pe_update_crypto_params(struct mac_context *mac_ctx,
 		lim_get_connected_akm(ft_session, crypto_params->ucastcipherset,
 				      crypto_params->authmodeset,
 				      crypto_params->key_mgmt);
-	pe_nofl_debug("vdev %d roam auth 0x%x akm 0x%0x rsn_caps 0x%x ucastcipher 0x%x akm %d",
+	ft_session->encryptType =
+		lim_get_encrypt_ed_type(crypto_params->ucastcipherset);
+	pe_nofl_debug("vdev %d roam auth 0x%x akm 0x%0x rsn_caps 0x%x ucastcipher 0x%x akm %d enc: %d",
 		      ft_session->vdev_id,
 		      crypto_params->authmodeset,
 		      crypto_params->key_mgmt,
 		      crypto_params->rsn_caps,
 		      crypto_params->ucastcipherset,
-		      ft_session->connected_akm);
+		      ft_session->connected_akm,
+		      ft_session->encryptType);
 }
 
 /**

+ 1 - 1
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -3517,7 +3517,7 @@ lim_is_rsn_profile(struct pe_session *session)
 	return false;
 }
 
-static tAniEdType lim_get_encrypt_ed_type(int32_t ucast_cipher)
+tAniEdType lim_get_encrypt_ed_type(int32_t ucast_cipher)
 {
 	if (ucast_cipher == -1)
 		return eSIR_ED_NONE;