Forráskód Böngészése

asoc: common: correct buffer overflow array index Out of Bounds

Add range check for ch_cnt value to avoid buffer overflow.

Change-Id: Iad18ea2fa42057211dc98c9d80465687cbc62776
Prasad Kumpatla 3 éve
szülő
commit
42e49611b0
1 módosított fájl, 4 hozzáadás és 0 törlés
  1. 4 0
      asoc/msm_common.c

+ 4 - 0
asoc/msm_common.c

@@ -836,6 +836,10 @@ int msm_channel_map_get(struct snd_kcontrol *kcontrol,
 			chmap = tx_ch;
 			ch_cnt = tx_ch_cnt;
 		}
+		if (ch_cnt > 2) {
+			pr_err("%s: Incorrect channel count: %d\n", ch_cnt);
+			return -EINVAL;
+		}
 		len = sizeof(uint32_t) * (ch_cnt + 1);
 		chmap_data = kzalloc(len, GFP_KERNEL);
 		if (!chmap_data)