ソースを参照

qcacld-3.0: Fix out of bound memory access

In wma_link_status_event_handler() check added to fix
out of bound access.

Change-Id: Iea8346d82b5d766dca5da117f415f6fbe2f40706
CRs-Fixed: 2558009
Amruta Kulkarni 5 年 前
コミット
0eb81451b3
1 ファイル変更10 行追加0 行削除
  1. 10 0
      core/wma/src/wma_utils.c

+ 10 - 0
core/wma/src/wma_utils.c

@@ -2714,6 +2714,16 @@ int wma_link_status_event_handler(void *handle, uint8_t *cmd_param_info,
 		return -EINVAL;
 	}
 
+	if (!wma_is_vdev_valid(ht_info->vdevid)) {
+		wma_err("Invalid vdevid %d", ht_info->vdevid);
+		return -EINVAL;
+	}
+
+	if (!intr[ht_info->vdevid].vdev) {
+		wma_err("Vdev is NULL");
+		return -EINVAL;
+	}
+
 	status = wma_get_vdev_rate_flag(intr[ht_info->vdevid].vdev, &rate_flag);
 	if (QDF_IS_STATUS_ERROR(status)) {
 		WMA_LOGE("%s: Failed to get rate flag",	__func__);