Răsfoiți Sursa

qcacld-3.0: Fix potential memory leak in mlo peer stats

Currently in the function wlan_hdd_send_ll_stats_req, memory is
allocated to store mlo peer stats when WMI_LINK_STATS_ALL_PEER
stats event is received and freed after sending them to userspace.

But, if multiple WMI_LINK_STATS_ALL_PEER stats events are received then,
only the latest allocated memory is freed leading to a potential memory
leak. To avoid this issue, add a sanity check before allocating memory.

Change-Id: I0470a7b1951a4d134c752a63ee915490be4e066c
CRs-Fixed: 3574762
Aditya Kodukula 1 an în urmă
părinte
comite
27c56a4ae7
1 a modificat fișierele cu 6 adăugiri și 1 ștergeri
  1. 6 1
      core/hdd/src/wlan_hdd_stats.c

+ 6 - 1
core/hdd/src/wlan_hdd_stats.c

@@ -3195,9 +3195,14 @@ static int wlan_hdd_send_ll_stats_req(struct wlan_hdd_link_info *link_info,
 		stats =  qdf_container_of(ll_node, struct hdd_ll_stats,
 					  ll_stats_node);
 		wlan_hdd_handle_ll_stats(link_info, stats, ret);
-		if (stats->result_param_id == WMI_LINK_STATS_ALL_PEER)
+		if (stats->result_param_id == WMI_LINK_STATS_ALL_PEER) {
+			if (mlo_stats) {
+				hdd_err("Received Multiple peers stats");
+				qdf_mem_free(mlo_stats);
+			}
 			mlo_stats = wlan_hdd_mlo_peer_stats(link_info,
 							    stats);
+		}
 		qdf_mem_free(stats->result);
 		qdf_mem_free(stats);
 		qdf_spin_lock(&priv->ll_stats_lock);