Ver Fonte

qcacld-3.0: Add check for max mcs rssi index

Currently when host driver tries to give the max vht rate, it
accesses the rssi_mcs_tbl in a loop without checking for the
max index for rssi_mcs_tbl array. This may result in array out
of bound access.

To address above issue, add a check in the for loop for the
max array index check.

Change-Id: I9ab2306f5ed4be745127d8fa35154902eb394e66
CRs-Fixed: 3618765
Ashish Kumar Dhanotiya há 1 ano atrás
pai
commit
a47e84edb9
1 ficheiros alterados com 4 adições e 2 exclusões
  1. 4 2
      core/hdd/src/wlan_hdd_stats.c

+ 4 - 2
core/hdd/src/wlan_hdd_stats.c

@@ -97,6 +97,8 @@
 
 #define INVALID_PREAMBLE 0xFF
 
+#define MAX_RSSI_MCS_INDEX 14
+
 /* 11B, 11G Rate table include Basic rate and Extended rate
  * The IDX field is the rate index
  * The HI field is the rate when RSSI is strong or being ignored
@@ -184,7 +186,7 @@ static const struct index_vht_data_rate_type supported_vht_mcs_rate_nss2[] = {
 };
 
 /*array index points to MCS and array value points respective rssi*/
-static int rssi_mcs_tbl[][14] = {
+static int rssi_mcs_tbl[][MAX_RSSI_MCS_INDEX] = {
 /*  MCS 0   1    2   3    4    5    6    7    8    9    10   11   12   13*/
 	/* 20 */
 	{-82, -79, -77, -74, -70, -66, -65, -64, -59, -57, -52, -48, -46, -42},
@@ -5923,7 +5925,7 @@ static void hdd_get_max_rate_vht(struct hdd_station_info *stainfo,
 		}
 
 		if (!report_max) {
-			for (i = 0; i <= mcsidx; i++) {
+			for (i = 0; i <= mcsidx && i < MAX_RSSI_MCS_INDEX; i++) {
 				if (rssi <= rssi_mcs_tbl[mode][i]) {
 					mcsidx = i;
 					break;