浏览代码

qcacmn: Fix NULL pointer dereference in ftm

In target_if_ftm_process_utf_event is derived & dereferenced
with out a NULL check. Add a NULL check for wmi_handle before it is
dereferenced.

Change-Id: Id3c1ae4df9aa7b0cfc12fbf9288bec2ae72c6de6
CRs-Fixed: 2305506
Tushnim Bhattacharyya 6 年之前
父节点
当前提交
9b8cfb0ebf
共有 1 个文件被更改,包括 11 次插入2 次删除
  1. 11 2
      target_if/ftm/src/target_if_ftm.c

+ 11 - 2
target_if/ftm/src/target_if_ftm.c

@@ -44,6 +44,7 @@ target_if_ftm_process_utf_event(ol_scn_t sc, uint8_t *event_buf, uint32_t len)
 	struct wlan_lmac_if_ftm_rx_ops *ftm_rx_ops;
 	QDF_STATUS status = QDF_STATUS_E_FAILURE;
 	uint32_t pdev_id;
+	struct wmi_unified *wmi_handle;
 
 	psoc = target_if_get_psoc_from_scn_hdl(sc);
 	if (!psoc) {
@@ -58,8 +59,16 @@ target_if_ftm_process_utf_event(ol_scn_t sc, uint8_t *event_buf, uint32_t len)
 	}
 
 	event.datalen = len;
-	if (wmi_extract_pdev_utf_event(GET_WMI_HDL_FROM_PSOC(psoc),
-				event_buf, &event) != QDF_STATUS_SUCCESS) {
+
+	wmi_handle = get_wmi_unified_hdl_from_psoc(psoc);
+	if (!wmi_handle) {
+		ftm_err("Invalid WMI handle");
+		wlan_objmgr_psoc_release_ref(psoc, WLAN_FTM_ID);
+		return QDF_STATUS_E_INVAL;
+	}
+
+	if (wmi_extract_pdev_utf_event(wmi_handle, event_buf, &event)
+	    != QDF_STATUS_SUCCESS) {
 		ftm_err("Extracting utf event failed");
 		wlan_objmgr_psoc_release_ref(psoc, WLAN_FTM_ID);
 		return QDF_STATUS_E_INVAL;