Răsfoiți Sursa

qcacld-3.0: Sanitize the mc address list count

In the target_if layer  based on the mc address list count the
filter params are filled and sent to the firmware. If the mc address
list passed is more than the maximum supported address list there
can be possible buffer overflow.

Sanitize the mc address list count to avoid any overflow.

CRs-Fixed: 2452131
Change-Id: I03208a5487cfd730e933666c47accb2e46fbbc72
Arun Kumar Khandavalli 5 ani în urmă
părinte
comite
32b2af4365
1 a modificat fișierele cu 6 adăugiri și 0 ștergeri
  1. 6 0
      components/pmo/core/src/wlan_pmo_mc_addr_filtering.c

+ 6 - 0
components/pmo/core/src/wlan_pmo_mc_addr_filtering.c

@@ -341,6 +341,12 @@ static QDF_STATUS pmo_core_mc_addr_flitering_sanity(
 		return QDF_STATUS_E_INVAL;
 	}
 
+	if (vdev_ctx->vdev_mc_list_req.mc_cnt > PMO_MAX_MC_ADDR_LIST) {
+		pmo_debug("Passed more than max supported MC address count :%d",
+			  vdev_ctx->vdev_mc_list_req.mc_cnt);
+		return QDF_STATUS_E_INVAL;
+	}
+
 	return QDF_STATUS_SUCCESS;
 }
 QDF_STATUS pmo_core_cache_mc_addr_list(