aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/seq/seq_ports.h
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2019-04-09 18:04:17 +0200
committerTakashi Iwai <tiwai@suse.de>2019-04-09 18:54:13 +0200
commit2eabc5ec8ab4d4748a82050dfcb994119b983750 (patch)
tree13103ccf8a6c0f07e9200403fcd26a30b30200c6 /sound/core/seq/seq_ports.h
parentALSA: seq: Protect in-kernel ioctl calls with mutex (diff)
downloadlinux-dev-2eabc5ec8ab4d4748a82050dfcb994119b983750.tar.xz
linux-dev-2eabc5ec8ab4d4748a82050dfcb994119b983750.zip
ALSA: seq: Fix race of get-subscription call vs port-delete ioctls
The snd_seq_ioctl_get_subscription() retrieves the port subscriber information as a pointer, while the object isn't protected, hence it may be deleted before the actual reference. This race was spotted by syzkaller and may lead to a UAF. The fix is simply copying the data in the lookup function that performs in the rwsem to protect against the deletion. Reported-by: syzbot+9437020c82413d00222d@syzkaller.appspotmail.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r--sound/core/seq/seq_ports.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/core/seq/seq_ports.h b/sound/core/seq/seq_ports.h
index 26bd71f36c41..06003b36652e 100644
--- a/sound/core/seq/seq_ports.h
+++ b/sound/core/seq/seq_ports.h
@@ -135,7 +135,8 @@ int snd_seq_port_subscribe(struct snd_seq_client_port *port,
struct snd_seq_port_subscribe *info);
/* get matched subscriber */
-struct snd_seq_subscribers *snd_seq_port_get_subscription(struct snd_seq_port_subs_info *src_grp,
- struct snd_seq_addr *dest_addr);
+int snd_seq_port_get_subscription(struct snd_seq_port_subs_info *src_grp,
+ struct snd_seq_addr *dest_addr,
+ struct snd_seq_port_subscribe *subs);
#endif