mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2025-09-27 11:41:04 -04:00
Switch to new CVE patchset
This commit is contained in:
parent
57ce42402b
commit
11c7037780
1215 changed files with 60697 additions and 14533 deletions
275
Patches/Linux_CVEs/CVE-2017-0531/4.4/0002.patch
Normal file
275
Patches/Linux_CVEs/CVE-2017-0531/4.4/0002.patch
Normal file
|
@ -0,0 +1,275 @@
|
|||
From d342da7d820af9c7c0b0b8049adb53beb713e0f0 Mon Sep 17 00:00:00 2001
|
||||
From: Bhalchandra Gajare <gajare@codeaurora.org>
|
||||
Date: Thu, 15 Dec 2016 16:43:45 -0800
|
||||
Subject: ASoC: msm-lsm-client: cleanup ioctl functions
|
||||
|
||||
Some of the ioctl command handling is not properly using the
|
||||
copy_from_user interface. Fix these issues and cleanup the ioctl
|
||||
functions to make sure there is no illegal memory access.
|
||||
|
||||
CRs-Fixed: 1087469
|
||||
Change-Id: Ieb1beb92e7854a05b8045de0ce179d12c9a6da74
|
||||
Signed-off-by: Bhalchandra Gajare <gajare@codeaurora.org>
|
||||
---
|
||||
sound/soc/msm/qdsp6v2/msm-lsm-client.c | 131 ++++++++++-----------------------
|
||||
1 file changed, 40 insertions(+), 91 deletions(-)
|
||||
|
||||
diff --git a/sound/soc/msm/qdsp6v2/msm-lsm-client.c b/sound/soc/msm/qdsp6v2/msm-lsm-client.c
|
||||
index 52830c9..efb6644e 100644
|
||||
--- a/sound/soc/msm/qdsp6v2/msm-lsm-client.c
|
||||
+++ b/sound/soc/msm/qdsp6v2/msm-lsm-client.c
|
||||
@@ -730,8 +730,13 @@ static int msm_lsm_ioctl_shared(struct snd_pcm_substream *substream,
|
||||
switch (cmd) {
|
||||
case SNDRV_LSM_SET_SESSION_DATA:
|
||||
dev_dbg(rtd->dev, "%s: set session data\n", __func__);
|
||||
- memcpy(&session_data, arg,
|
||||
- sizeof(struct snd_lsm_session_data));
|
||||
+ if (copy_from_user(&session_data, arg,
|
||||
+ sizeof(session_data))) {
|
||||
+ dev_err(rtd->dev, "%s: %s: copy_from_user failed\n",
|
||||
+ __func__, "LSM_SET_SESSION_DATA");
|
||||
+ return -EFAULT;
|
||||
+ }
|
||||
+
|
||||
if (session_data.app_id != LSM_VOICE_WAKEUP_APP_ID_V2) {
|
||||
dev_err(rtd->dev,
|
||||
"%s:Invalid App id %d for Listen client\n",
|
||||
@@ -820,13 +825,6 @@ static int msm_lsm_ioctl_shared(struct snd_pcm_substream *substream,
|
||||
break;
|
||||
|
||||
case SNDRV_LSM_SET_PARAMS:
|
||||
- if (!arg) {
|
||||
- dev_err(rtd->dev,
|
||||
- "%s: %s Invalid argument\n",
|
||||
- __func__, "SNDRV_LSM_SET_PARAMS");
|
||||
- return -EINVAL;
|
||||
- }
|
||||
-
|
||||
dev_dbg(rtd->dev, "%s: set_params\n", __func__);
|
||||
memcpy(&det_params, arg,
|
||||
sizeof(det_params));
|
||||
@@ -978,45 +976,43 @@ static int msm_lsm_ioctl_shared(struct snd_pcm_substream *substream,
|
||||
break;
|
||||
}
|
||||
case SNDRV_LSM_LAB_CONTROL: {
|
||||
- u32 *enable = NULL;
|
||||
- if (!arg) {
|
||||
- dev_err(rtd->dev,
|
||||
- "%s: Invalid param arg for ioctl %s session %d\n",
|
||||
- __func__, "SNDRV_LSM_LAB_CONTROL",
|
||||
- prtd->lsm_client->session);
|
||||
- rc = -EINVAL;
|
||||
- break;
|
||||
+ u32 enable;
|
||||
+
|
||||
+ if (copy_from_user(&enable, arg, sizeof(enable))) {
|
||||
+ dev_err(rtd->dev, "%s: %s: copy_frm_user failed\n",
|
||||
+ __func__, "LSM_LAB_CONTROL");
|
||||
+ return -EFAULT;
|
||||
}
|
||||
- enable = (int *)arg;
|
||||
+
|
||||
dev_dbg(rtd->dev, "%s: ioctl %s, enable = %d\n",
|
||||
- __func__, "SNDRV_LSM_LAB_CONTROL", *enable);
|
||||
+ __func__, "SNDRV_LSM_LAB_CONTROL", enable);
|
||||
if (!prtd->lsm_client->started) {
|
||||
- if (prtd->lsm_client->lab_enable == *enable) {
|
||||
+ if (prtd->lsm_client->lab_enable == enable) {
|
||||
dev_dbg(rtd->dev,
|
||||
"%s: Lab for session %d already %s\n",
|
||||
__func__, prtd->lsm_client->session,
|
||||
- ((*enable) ? "enabled" : "disabled"));
|
||||
+ enable ? "enabled" : "disabled");
|
||||
rc = 0;
|
||||
break;
|
||||
}
|
||||
- rc = q6lsm_lab_control(prtd->lsm_client, *enable);
|
||||
+ rc = q6lsm_lab_control(prtd->lsm_client, enable);
|
||||
if (rc) {
|
||||
dev_err(rtd->dev,
|
||||
"%s: ioctl %s failed rc %d to %s lab for session %d\n",
|
||||
__func__, "SNDRV_LAB_CONTROL", rc,
|
||||
- ((*enable) ? "enable" : "disable"),
|
||||
+ enable ? "enable" : "disable",
|
||||
prtd->lsm_client->session);
|
||||
} else {
|
||||
rc = msm_lsm_lab_buffer_alloc(prtd,
|
||||
- ((*enable) ? LAB_BUFFER_ALLOC
|
||||
- : LAB_BUFFER_DEALLOC));
|
||||
+ enable ? LAB_BUFFER_ALLOC
|
||||
+ : LAB_BUFFER_DEALLOC);
|
||||
if (rc)
|
||||
dev_err(rtd->dev,
|
||||
"%s: msm_lsm_lab_buffer_alloc failed rc %d for %s",
|
||||
__func__, rc,
|
||||
- ((*enable) ? "ALLOC" : "DEALLOC"));
|
||||
+ enable ? "ALLOC" : "DEALLOC");
|
||||
if (!rc)
|
||||
- prtd->lsm_client->lab_enable = *enable;
|
||||
+ prtd->lsm_client->lab_enable = enable;
|
||||
}
|
||||
} else {
|
||||
dev_err(rtd->dev, "%s: ioctl %s issued after start",
|
||||
@@ -1057,12 +1053,6 @@ static int msm_lsm_ioctl_shared(struct snd_pcm_substream *substream,
|
||||
return rc;
|
||||
}
|
||||
#ifdef CONFIG_COMPAT
|
||||
-struct snd_lsm_event_status32 {
|
||||
- u16 status;
|
||||
- u16 payload_size;
|
||||
- u8 payload[0];
|
||||
-};
|
||||
-
|
||||
struct snd_lsm_sound_model_v2_32 {
|
||||
compat_uptr_t data;
|
||||
compat_uptr_t confidence_level;
|
||||
@@ -1094,8 +1084,6 @@ struct snd_lsm_module_params_32 {
|
||||
};
|
||||
|
||||
enum {
|
||||
- SNDRV_LSM_EVENT_STATUS32 =
|
||||
- _IOW('U', 0x02, struct snd_lsm_event_status32),
|
||||
SNDRV_LSM_REG_SND_MODEL_V2_32 =
|
||||
_IOW('U', 0x07, struct snd_lsm_sound_model_v2_32),
|
||||
SNDRV_LSM_SET_PARAMS_32 =
|
||||
@@ -1126,12 +1114,12 @@ static int msm_lsm_ioctl_compat(struct snd_pcm_substream *substream,
|
||||
prtd = runtime->private_data;
|
||||
|
||||
switch (cmd) {
|
||||
- case SNDRV_LSM_EVENT_STATUS32: {
|
||||
- struct snd_lsm_event_status32 userarg32, *user32 = NULL;
|
||||
- struct snd_lsm_event_status *user = NULL;
|
||||
+ case SNDRV_LSM_EVENT_STATUS: {
|
||||
+ struct snd_lsm_event_status *user = NULL, userarg32;
|
||||
+ struct snd_lsm_event_status *user32 = NULL;
|
||||
if (copy_from_user(&userarg32, arg, sizeof(userarg32))) {
|
||||
dev_err(rtd->dev, "%s: err copyuser ioctl %s\n",
|
||||
- __func__, "SNDRV_LSM_EVENT_STATUS32");
|
||||
+ __func__, "SNDRV_LSM_EVENT_STATUS");
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
@@ -1285,13 +1273,6 @@ static int msm_lsm_ioctl_compat(struct snd_pcm_substream *substream,
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
- if (!arg) {
|
||||
- dev_err(rtd->dev,
|
||||
- "%s: %s: No Param data to set\n",
|
||||
- __func__, "SET_MODULE_PARAMS_32");
|
||||
- return -EINVAL;
|
||||
- }
|
||||
-
|
||||
if (copy_from_user(&p_data_32, arg,
|
||||
sizeof(p_data_32))) {
|
||||
dev_err(rtd->dev,
|
||||
@@ -1376,6 +1357,19 @@ static int msm_lsm_ioctl_compat(struct snd_pcm_substream *substream,
|
||||
kfree(params32);
|
||||
break;
|
||||
}
|
||||
+ case SNDRV_LSM_REG_SND_MODEL_V2:
|
||||
+ case SNDRV_LSM_SET_PARAMS:
|
||||
+ case SNDRV_LSM_SET_MODULE_PARAMS:
|
||||
+ /*
|
||||
+ * In ideal cases, the compat_ioctl should never be called
|
||||
+ * with the above unlocked ioctl commands. Print error
|
||||
+ * and return error if it does.
|
||||
+ */
|
||||
+ dev_err(rtd->dev,
|
||||
+ "%s: Invalid cmd for compat_ioctl\n",
|
||||
+ __func__);
|
||||
+ err = -EINVAL;
|
||||
+ break;
|
||||
default:
|
||||
err = msm_lsm_ioctl_shared(substream, cmd, arg);
|
||||
break;
|
||||
@@ -1391,7 +1385,6 @@ static int msm_lsm_ioctl(struct snd_pcm_substream *substream,
|
||||
{
|
||||
int err = 0;
|
||||
u32 size = 0;
|
||||
- struct snd_lsm_session_data session_data;
|
||||
struct snd_pcm_runtime *runtime;
|
||||
struct snd_soc_pcm_runtime *rtd;
|
||||
struct lsm_priv *prtd;
|
||||
@@ -1406,26 +1399,6 @@ static int msm_lsm_ioctl(struct snd_pcm_substream *substream,
|
||||
rtd = substream->private_data;
|
||||
|
||||
switch (cmd) {
|
||||
- case SNDRV_LSM_SET_SESSION_DATA:
|
||||
- dev_dbg(rtd->dev,
|
||||
- "%s: SNDRV_LSM_SET_SESSION_DATA\n",
|
||||
- __func__);
|
||||
- if (copy_from_user(&session_data, (void *)arg,
|
||||
- sizeof(struct snd_lsm_session_data))) {
|
||||
- err = -EFAULT;
|
||||
- dev_err(rtd->dev,
|
||||
- "%s: copy from user failed, size %zd\n",
|
||||
- __func__, sizeof(struct snd_lsm_session_data));
|
||||
- break;
|
||||
- }
|
||||
- if (!err)
|
||||
- err = msm_lsm_ioctl_shared(substream,
|
||||
- cmd, &session_data);
|
||||
- if (err)
|
||||
- dev_err(rtd->dev,
|
||||
- "%s REG_SND_MODEL failed err %d\n",
|
||||
- __func__, err);
|
||||
- break;
|
||||
case SNDRV_LSM_REG_SND_MODEL_V2: {
|
||||
struct snd_lsm_sound_model_v2 snd_model_v2;
|
||||
|
||||
@@ -1436,11 +1409,6 @@ static int msm_lsm_ioctl(struct snd_pcm_substream *substream,
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
- if (!arg) {
|
||||
- dev_err(rtd->dev,
|
||||
- "%s: Invalid params snd_model\n", __func__);
|
||||
- return -EINVAL;
|
||||
- }
|
||||
if (copy_from_user(&snd_model_v2, arg, sizeof(snd_model_v2))) {
|
||||
err = -EFAULT;
|
||||
dev_err(rtd->dev,
|
||||
@@ -1469,12 +1437,6 @@ static int msm_lsm_ioctl(struct snd_pcm_substream *substream,
|
||||
}
|
||||
|
||||
pr_debug("%s: SNDRV_LSM_SET_PARAMS\n", __func__);
|
||||
- if (!arg) {
|
||||
- dev_err(rtd->dev,
|
||||
- "%s: %s, Invalid params\n",
|
||||
- __func__, "SNDRV_LSM_SET_PARAMS");
|
||||
- return -EINVAL;
|
||||
- }
|
||||
|
||||
if (copy_from_user(&det_params, arg,
|
||||
sizeof(det_params))) {
|
||||
@@ -1507,13 +1469,6 @@ static int msm_lsm_ioctl(struct snd_pcm_substream *substream,
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
- if (!arg) {
|
||||
- dev_err(rtd->dev,
|
||||
- "%s: %s: No Param data to set\n",
|
||||
- __func__, "SET_MODULE_PARAMS");
|
||||
- return -EINVAL;
|
||||
- }
|
||||
-
|
||||
if (copy_from_user(&p_data, arg,
|
||||
sizeof(p_data))) {
|
||||
dev_err(rtd->dev,
|
||||
@@ -1571,12 +1526,6 @@ static int msm_lsm_ioctl(struct snd_pcm_substream *substream,
|
||||
struct snd_lsm_event_status *user = NULL, userarg;
|
||||
dev_dbg(rtd->dev,
|
||||
"%s: SNDRV_LSM_EVENT_STATUS\n", __func__);
|
||||
- if (!arg) {
|
||||
- dev_err(rtd->dev,
|
||||
- "%s: Invalid params event status\n",
|
||||
- __func__);
|
||||
- return -EINVAL;
|
||||
- }
|
||||
if (copy_from_user(&userarg, arg, sizeof(userarg))) {
|
||||
dev_err(rtd->dev,
|
||||
"%s: err copyuser event_status\n",
|
||||
--
|
||||
cgit v1.1
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue