summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnold Chuang <cchuangg@google.com>2023-08-04 06:05:36 +0000
committerBubble Fang <bubblefang@google.com>2023-08-08 01:55:41 +0000
commit52b069fc1d876a60abc0527ced87dddfad17ddc3 (patch)
tree3dc3ad9703cb13ffaa3b927c7ba7fd0b25fdf5a1
parent2b3514b1797512b8ffd1e3b7cf60e217d55237e7 (diff)
downloadmsm-extra-android-msm-redbull-4.19-android14-qpr1-beta.tar.gz
check for the proper param size before copying, to avoid buffer overflow. Bug: 290061247 Change-Id: I8f643fe49a7afde11bd52f6e9c96e2a5bcc1c369 Signed-off-by: Arnold Chuang <cchuangg@google.com>
-rw-r--r--dsp/q6afe.c78
1 files changed, 78 insertions, 0 deletions
diff --git a/dsp/q6afe.c b/dsp/q6afe.c
index d0cef341..ec76c65b 100644
--- a/dsp/q6afe.c
+++ b/dsp/q6afe.c
@@ -703,32 +703,74 @@ static int32_t sp_make_afe_callback(uint32_t opcode, uint32_t *payload,
switch (param_hdr.param_id) {
case AFE_PARAM_ID_CALIB_RES_CFG_V2:
expected_size += sizeof(struct asm_calib_res_cfg);
+ if (param_hdr.param_size != sizeof(struct asm_calib_res_cfg)) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
data_dest = (u32 *) &this_afe.calib_data;
break;
case AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS:
expected_size += sizeof(struct afe_sp_th_vi_ftm_params);
+ if (param_hdr.param_size != sizeof(struct afe_sp_th_vi_ftm_params)) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
data_dest = (u32 *) &this_afe.th_vi_resp;
break;
case AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_PARAMS:
expected_size += sizeof(struct afe_sp_th_vi_v_vali_params);
+ if (param_hdr.param_size != sizeof(struct afe_sp_th_vi_v_vali_params)) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
data_dest = (u32 *) &this_afe.th_vi_v_vali_resp;
break;
case AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS:
expected_size += sizeof(struct afe_sp_ex_vi_ftm_params);
+ if (param_hdr.param_size != sizeof(struct afe_sp_ex_vi_ftm_params)) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
data_dest = (u32 *) &this_afe.ex_vi_resp;
break;
case AFE_PARAM_ID_SP_RX_TMAX_XMAX_LOGGING:
expected_size += sizeof(
struct afe_sp_rx_tmax_xmax_logging_param);
+ if (param_hdr.param_size != sizeof(struct afe_sp_rx_tmax_xmax_logging_param)) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
data_dest = (u32 *) &this_afe.xt_logging_resp;
break;
case AFE_PARAM_ID_SP_V4_CALIB_RES_CFG:
expected_size += sizeof(
struct afe_sp_v4_param_th_vi_calib_res_cfg);
+ if (param_hdr.param_size != sizeof(
+ struct afe_sp_v4_param_th_vi_calib_res_cfg)) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
data_dest = (u32 *) &this_afe.spv4_calib_data;
break;
case AFE_PARAM_ID_SP_V4_TH_VI_FTM_PARAMS:
num_ch = data_start[0];
+ if (num_ch > SP_V2_NUM_MAX_SPKRS) {
+ pr_err("%s: Error: num_ch %d is greater than expected\n",
+ __func__,num_ch);
+ return -EINVAL;
+ }
+ if (param_hdr.param_size != (sizeof(struct afe_sp_v4_param_th_vi_ftm_params) +
+ (num_ch * sizeof(struct afe_sp_v4_channel_ftm_params)))) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
this_afe.spv4_th_vi_ftm_rcvd_param_size = param_hdr.param_size;
data_dest = (u32 *)&this_afe.spv4_th_vi_ftm_resp;
expected_size +=
@@ -737,6 +779,18 @@ static int32_t sp_make_afe_callback(uint32_t opcode, uint32_t *payload,
break;
case AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_PARAMS:
num_ch = data_start[0];
+ if (num_ch > SP_V2_NUM_MAX_SPKRS) {
+ pr_err("%s: Error: num_ch %d is greater than expected\n",
+ __func__,num_ch);
+ return -EINVAL;
+ }
+ if (param_hdr.param_size != (sizeof(struct afe_sp_v4_param_th_vi_v_vali_params) +
+ (num_ch *
+ sizeof(struct afe_sp_v4_channel_v_vali_params)))) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
this_afe.spv4_v_vali_rcvd_param_size = param_hdr.param_size;
data_dest = (u32 *)&this_afe.spv4_v_vali_resp;
expected_size +=
@@ -746,6 +800,18 @@ static int32_t sp_make_afe_callback(uint32_t opcode, uint32_t *payload,
break;
case AFE_PARAM_ID_SP_V4_EX_VI_FTM_PARAMS:
num_ch = data_start[0];
+ if (num_ch > SP_V2_NUM_MAX_SPKRS) {
+ pr_err("%s: Error: num_ch %d is greater than expected\n",
+ __func__,num_ch);
+ return -EINVAL;
+ }
+ if (param_hdr.param_size != (sizeof(struct afe_sp_v4_param_ex_vi_ftm_params) +
+ (num_ch *
+ sizeof(struct afe_sp_v4_channel_ex_vi_ftm_params)))) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
this_afe.spv4_ex_vi_ftm_rcvd_param_size = param_hdr.param_size;
data_dest = (u32 *)&this_afe.spv4_ex_vi_ftm_resp;
expected_size +=
@@ -754,6 +820,18 @@ static int32_t sp_make_afe_callback(uint32_t opcode, uint32_t *payload,
break;
case AFE_PARAM_ID_SP_V4_RX_TMAX_XMAX_LOGGING:
num_ch = data_start[0];
+ if (num_ch > SP_V2_NUM_MAX_SPKRS) {
+ pr_err("%s: Error: num_ch %d is greater than expected\n",
+ __func__,num_ch);
+ return -EINVAL;
+ }
+ if (param_hdr.param_size != (sizeof(struct afe_sp_v4_param_tmax_xmax_logging) +
+ (num_ch *
+ sizeof(struct afe_sp_v4_channel_tmax_xmax_params)))) {
+ pr_err("%s: Error: param_size %d is greater than expected\n",
+ __func__,param_hdr.param_size);
+ return -EINVAL;
+ }
this_afe.spv4_max_log_rcvd_param_size = param_hdr.param_size;
data_dest = (u32 *)&this_afe.spv4_max_log_resp;
expected_size +=