mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2025-08-03 20:04:21 -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
49
Patches/Linux_CVEs/CVE-2016-9794/ANY/0001.patch
Normal file
49
Patches/Linux_CVEs/CVE-2016-9794/ANY/0001.patch
Normal file
|
@ -0,0 +1,49 @@
|
|||
From a27178e05b7c332522df40904f27674e36ee3757 Mon Sep 17 00:00:00 2001
|
||||
From: Takashi Iwai <tiwai@suse.de>
|
||||
Date: Mon, 12 Dec 2016 17:33:06 +0100
|
||||
Subject: ALSA: pcm : Call kill_fasync() in stream lock
|
||||
|
||||
commit 3aa02cb664c5fb1042958c8d1aa8c35055a2ebc4 upstream.
|
||||
|
||||
Currently kill_fasync() is called outside the stream lock in
|
||||
snd_pcm_period_elapsed(). This is potentially racy, since the stream
|
||||
may get released even during the irq handler is running. Although
|
||||
snd_pcm_release_substream() calls snd_pcm_drop(), this doesn't
|
||||
guarantee that the irq handler finishes, thus the kill_fasync() call
|
||||
outside the stream spin lock may be invoked after the substream is
|
||||
detached, as recently reported by KASAN.
|
||||
|
||||
As a quick workaround, move kill_fasync() call inside the stream
|
||||
lock. The fasync is rarely used interface, so this shouldn't have a
|
||||
big impact from the performance POV.
|
||||
|
||||
Ideally, we should implement some sync mechanism for the proper finish
|
||||
of stream and irq handler. But this oneliner should suffice for most
|
||||
cases, so far.
|
||||
|
||||
Reported-by: Baozeng Ding <sploving1@gmail.com>
|
||||
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
||||
Signed-off-by: Willy Tarreau <w@1wt.eu>
|
||||
---
|
||||
sound/core/pcm_lib.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c
|
||||
index 8eddece..dfed3ef 100644
|
||||
--- a/sound/core/pcm_lib.c
|
||||
+++ b/sound/core/pcm_lib.c
|
||||
@@ -1856,10 +1856,10 @@ void snd_pcm_period_elapsed(struct snd_pcm_substream *substream)
|
||||
if (substream->timer_running)
|
||||
snd_timer_interrupt(substream->timer, 1);
|
||||
_end:
|
||||
+ kill_fasync(&runtime->fasync, SIGIO, POLL_IN);
|
||||
snd_pcm_stream_unlock_irqrestore(substream, flags);
|
||||
if (runtime->transfer_ack_end)
|
||||
runtime->transfer_ack_end(substream);
|
||||
- kill_fasync(&runtime->fasync, SIGIO, POLL_IN);
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(snd_pcm_period_elapsed);
|
||||
--
|
||||
cgit v1.1
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue