Skip to content

Commit

Permalink
ALSA: timer: Fix race at concurrent reads
Browse files Browse the repository at this point in the history
commit 4dff5c7b7093b19c19d3a100f8a3ad87cb7cd9e7 upstream.

snd_timer_user_read() has a potential race among parallel reads, as
qhead and qused are updated outside the critical section due to
copy_to_user() calls.  Move them into the critical section, and also
sanitize the relevant code a bit.

Change-Id: I79e7ce81a59ede1c8eba62dffa65f30f8ecf2a73
Signed-off-by: Takashi Iwai <[email protected]>
[bwh: Backported to 3.2: there's no check for tu->connected to fix up]
Signed-off-by: Ben Hutchings <[email protected]>
Signed-off-by: Francisco Franco <[email protected]>
  • Loading branch information
tiwai authored and franciscofranco committed Nov 7, 2017
1 parent 683f3e4 commit f3c5d94
Showing 1 changed file with 14 additions and 18 deletions.
32 changes: 14 additions & 18 deletions sound/core/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1864,6 +1864,7 @@ static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,
{
struct snd_timer_user *tu;
long result = 0, unit;
int qhead;
int err = 0;

tu = file->private_data;
Expand All @@ -1875,7 +1876,7 @@ static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,

if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
err = -EAGAIN;
break;
goto _error;
}

set_current_state(TASK_INTERRUPTIBLE);
Expand All @@ -1890,38 +1891,33 @@ static ssize_t snd_timer_user_read(struct file *file, char __user *buffer,

if (signal_pending(current)) {
err = -ERESTARTSYS;
break;
goto _error;
}
}

qhead = tu->qhead++;
tu->qhead %= tu->queue_size;
spin_unlock_irq(&tu->qlock);
if (err < 0)
goto _error;

if (tu->tread) {
if (copy_to_user(buffer, &tu->tqueue[tu->qhead++],
sizeof(struct snd_timer_tread))) {
if (copy_to_user(buffer, &tu->tqueue[qhead],
sizeof(struct snd_timer_tread)))
err = -EFAULT;
goto _error;
}
} else {
if (copy_to_user(buffer, &tu->queue[tu->qhead++],
sizeof(struct snd_timer_read))) {
if (copy_to_user(buffer, &tu->queue[qhead],
sizeof(struct snd_timer_read)))
err = -EFAULT;
goto _error;
}
}

tu->qhead %= tu->queue_size;

result += unit;
buffer += unit;

spin_lock_irq(&tu->qlock);
tu->qused--;
if (err < 0)
goto _error;
result += unit;
buffer += unit;
}
spin_unlock_irq(&tu->qlock);
_error:
spin_unlock_irq(&tu->qlock);
return result > 0 ? result : err;
}

Expand Down

0 comments on commit f3c5d94

Please sign in to comment.