Prechádzať zdrojové kódy

qcacld-3.0: Resolve memleak in hdd_configure_sar index

In hdd configure sar index api if the FW supported version is not
SAR_VERSION_2, in that case there is a mem leak issue as the
memory is allocated for sar_command is before the fw sar version
check and in case of fw sar version check failed, memory allocated
for sar command is not freed.

To resolve above issue, move the version check before the memory
allocation for sar command.

Change-Id: I1d5e6bad63134c89ac456c3247eebad79e8f8c79
CRs-Fixed: 2618648
Ashish Kumar Dhanotiya 5 rokov pred
rodič
commit
f6871a8e8c
1 zmenil súbory, kde vykonal 11 pridanie a 8 odobranie
  1. 11 8
      core/hdd/src/wlan_hdd_sar_limits.c

+ 11 - 8
core/hdd/src/wlan_hdd_sar_limits.c

@@ -331,15 +331,15 @@ void hdd_disable_sar(struct hdd_context *hdd_ctx)
 	struct sar_limit_cmd_row *row;
 	QDF_STATUS status;
 
-	sar_limit_cmd = qdf_mem_malloc(sizeof(struct sar_limit_cmd_params));
-	if (!sar_limit_cmd)
-		return;
-
 	if (hdd_ctx->sar_version != SAR_VERSION_2) {
 		hdd_nofl_debug("FW SAR version: %d", hdd_ctx->sar_version);
 		return;
 	}
 
+	sar_limit_cmd = qdf_mem_malloc(sizeof(struct sar_limit_cmd_params));
+	if (!sar_limit_cmd)
+		return;
+
 	/*
 	 * Need two rows to hold the per-chain V2 power index
 	 */
@@ -388,15 +388,15 @@ void hdd_configure_sar_index(struct hdd_context *hdd_ctx, uint32_t sar_index)
 	struct sar_limit_cmd_row *row;
 	QDF_STATUS status;
 
-	sar_limit_cmd = qdf_mem_malloc(sizeof(struct sar_limit_cmd_params));
-	if (!sar_limit_cmd)
-		return;
-
 	if (hdd_ctx->sar_version != SAR_VERSION_2) {
 		hdd_nofl_debug("FW SAR version: %d", hdd_ctx->sar_version);
 		return;
 	}
 
+	sar_limit_cmd = qdf_mem_malloc(sizeof(struct sar_limit_cmd_params));
+	if (!sar_limit_cmd)
+		return;
+
 	/*
 	 * Need two rows to hold the per-chain V2 power index
 	 */
@@ -460,6 +460,9 @@ void hdd_configure_sar_sleep_index(struct hdd_context *hdd_ctx)
 
 void hdd_configure_sar_resume_index(struct hdd_context *hdd_ctx)
 {
+	if (!hdd_ctx->config->enable_sar_safety)
+		return;
+
 	hdd_nofl_debug("Configure SAR safety index %d on wlan resume",
 		       hdd_ctx->config->sar_safety_index);
 	hdd_configure_sar_index(hdd_ctx,