projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f92eb7
)
ALSA: seq: Prohibit creating ports with special numbers
author
Takashi Iwai
<tiwai@suse.de>
Tue, 23 May 2023 07:53:44 +0000
(09:53 +0200)
committer
Takashi Iwai
<tiwai@suse.de>
Tue, 23 May 2023 10:11:19 +0000
(12:11 +0200)
Some port numbers are special, such as 254 for subscribers and 255 for
broadcast. Return error if application tries to create such a port.
Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Link:
https://lore.kernel.org/r/20230523075358.9672-24-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/seq/seq_clientmgr.c
patch
|
blob
|
history
diff --git
a/sound/core/seq/seq_clientmgr.c
b/sound/core/seq/seq_clientmgr.c
index 2dac8c3355fd252b48700cca70e2e00ae4c00535..0f26f20596d7a6cba1dcb61c76a0f22d5683146c 100644
(file)
--- a/
sound/core/seq/seq_clientmgr.c
+++ b/
sound/core/seq/seq_clientmgr.c
@@
-1206,6
+1206,8
@@
static int snd_seq_ioctl_create_port(struct snd_seq_client *client, void *arg)
port_idx = info->addr.port;
else
port_idx = -1;
+ if (port_idx >= SNDRV_SEQ_ADDRESS_UNKNOWN)
+ return -EINVAL;
err = snd_seq_create_port(client, port_idx, &port);
if (err < 0)
return err;