mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
ASoC: msm: qdsp6v2: return error when copy from userspace fails
A copy_from_user is not always expected to succeed. Therefore, check for an error before operating on the buffer post copy. CRs-Fixed: 1116070 Change-Id: I21032719e6e85f280ca0cda875c84ac8dee8916b Signed-off-by: Siena Richard <sienar@codeaurora.org>
This commit is contained in:
parent
81d457e978
commit
3face8d88b
1 changed files with 11 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
|
||||
/* Copyright (c) 2012-2017, The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 and
|
||||
|
@ -819,20 +819,25 @@ static int msm_pcm_playback_copy(struct snd_pcm_substream *substream, int a,
|
|||
if (prtd->mode == MODE_PCM) {
|
||||
ret = copy_from_user(&buf_node->frame.voc_pkt,
|
||||
buf, count);
|
||||
if (ret) {
|
||||
pr_err("%s: copy from user failed %d\n",
|
||||
__func__, ret);
|
||||
return -EFAULT;
|
||||
}
|
||||
buf_node->frame.pktlen = count;
|
||||
} else {
|
||||
ret = copy_from_user(&buf_node->frame,
|
||||
buf, count);
|
||||
if (ret) {
|
||||
pr_err("%s: copy from user failed %d\n",
|
||||
__func__, ret);
|
||||
return -EFAULT;
|
||||
}
|
||||
if (buf_node->frame.pktlen >= count)
|
||||
buf_node->frame.pktlen = count -
|
||||
(sizeof(buf_node->frame.frm_hdr) +
|
||||
sizeof(buf_node->frame.pktlen));
|
||||
}
|
||||
if (ret) {
|
||||
pr_err("%s: copy from user failed %d\n",
|
||||
__func__, ret);
|
||||
return -EFAULT;
|
||||
}
|
||||
spin_lock_irqsave(&prtd->dsp_lock, dsp_flags);
|
||||
list_add_tail(&buf_node->list, &prtd->in_queue);
|
||||
spin_unlock_irqrestore(&prtd->dsp_lock, dsp_flags);
|
||||
|
|
Loading…
Reference in a new issue