Forráskód Böngészése

qcacld-3.0: Fix reason code in assoc response for P2P

In lim_check_wpa_rsn_ie(), validate the RSN and WPA IE
only for SAP mode.

Regression cause is:
If2a0a59c6b4986b54a12d4bdc7372c38317b6ce2

CRs-Fixed: 3698880
Change-Id: I2429898ee91064d14e3ed4c267ac1e5575c058a5
Deeksha Gupta 1 éve
szülő
commit
c14f6536d3
1 módosított fájl, 4 hozzáadás és 3 törlés
  1. 4 3
      core/mac/src/pe/lim/lim_process_assoc_req_frame.c

+ 4 - 3
core/mac/src/pe/lim/lim_process_assoc_req_frame.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -1151,8 +1151,9 @@ static bool lim_check_wpa_rsn_ie(struct pe_session *session,
 		*akm_type = lim_translate_rsn_oui_to_akm_type(
 						  dot11f_ie_wpa.auth_suites[0]);
 	} else {
-		if (session->gStartBssRSNIe.present ||
-		    session->gStartBssWPAIe.present) {
+		if ((session->gStartBssRSNIe.present ||
+		     session->gStartBssWPAIe.present) &&
+		    session->opmode == QDF_SAP_MODE) {
 			pe_warn("STA does not support RSN and WPA!");
 			lim_send_assoc_rsp_mgmt_frame(
 				mac_ctx, STATUS_NOT_SUPPORTED_AUTH_ALG, 1,