Browse Source

qcacmn: Fix OOB in __policy_mgr_check_sta_ap_concurrent_ch_intf

Fix out of bound array access for operating_channel[] in
__policy_mgr_check_sta_ap_concurrent_ch_intf.

Change-Id: I3945d2fd5b1e3d02a9e827ba4a907b48b4170fd2
CRs-Fixed: 2329332
Tushnim Bhattacharyya 6 years ago
parent
commit
a13d706459
1 changed files with 16 additions and 11 deletions
  1. 16 11
      umac/cmn_services/policy_mgr/src/wlan_policy_mgr_action.c

+ 16 - 11
umac/cmn_services/policy_mgr/src/wlan_policy_mgr_action.c

@@ -1334,10 +1334,13 @@ static void __policy_mgr_check_sta_ap_concurrent_ch_intf(void *data)
 					&vdev_id[cc_count],
 					PM_SAP_MODE);
 	policy_mgr_debug("Number of concurrent SAP: %d", cc_count);
-	cc_count = cc_count + policy_mgr_get_mode_specific_conn_info(psoc,
-						&operating_channel[cc_count],
-						&vdev_id[cc_count],
-						PM_P2P_GO_MODE);
+	if (cc_count < MAX_NUMBER_OF_CONC_CONNECTIONS)
+		cc_count = cc_count +
+				policy_mgr_get_mode_specific_conn_info
+					(psoc,
+					&operating_channel[cc_count],
+					&vdev_id[cc_count],
+					PM_P2P_GO_MODE);
 	policy_mgr_debug("Number of beaconing entities (SAP + GO):%d",
 							cc_count);
 	if (!cc_count) {
@@ -1357,16 +1360,18 @@ static void __policy_mgr_check_sta_ap_concurrent_ch_intf(void *data)
 		policy_mgr_err("SAP restart get channel callback in NULL");
 		goto end;
 	}
-	for (i = 0; i < cc_count; i++) {
-		status = pm_ctx->hdd_cbacks.
-			wlan_hdd_get_channel_for_sap_restart(psoc,
+	if (cc_count < MAX_NUMBER_OF_CONC_CONNECTIONS)
+		for (i = 0; i < cc_count; i++) {
+			status = pm_ctx->hdd_cbacks.
+				wlan_hdd_get_channel_for_sap_restart
+					(psoc,
 					vdev_id[i], &channel, &sec_ch);
-		if (status == QDF_STATUS_SUCCESS) {
-			policy_mgr_info("SAP restarts due to MCC->SCC switch, old chan :%d new chan: %d"
+			if (status == QDF_STATUS_SUCCESS) {
+				policy_mgr_info("SAP restarts due to MCC->SCC switch, old chan :%d new chan: %d"
 					, operating_channel[i], channel);
-			break;
+				break;
+			}
 		}
-	}
 	if (status != QDF_STATUS_SUCCESS)
 		policy_mgr_err("Failed to switch SAP channel");
 end: