blob: 16580a82e1c8cad912ff7368a0cb0e5abd539aa8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA sequencer Client Manager
3 * Copyright (c) 1998-2001 by Frank van de Pol <fvdpol@coil.demon.nl>
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Takashi Iwai <tiwai@suse.de>
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
Paul Gortmakerd81a6d72011-09-22 09:34:58 -040025#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/slab.h>
27#include <sound/core.h>
28#include <sound/minors.h>
29#include <linux/kmod.h>
30
31#include <sound/seq_kernel.h>
32#include "seq_clientmgr.h"
33#include "seq_memory.h"
34#include "seq_queue.h"
35#include "seq_timer.h"
36#include "seq_info.h"
37#include "seq_system.h"
38#include <sound/seq_device.h>
39#ifdef CONFIG_COMPAT
40#include <linux/compat.h>
41#endif
42
43/* Client Manager
44
45 * this module handles the connections of userland and kernel clients
46 *
47 */
48
Clemens Ladischaa1e77e2005-12-12 09:36:01 +010049/*
50 * There are four ranges of client numbers (last two shared):
51 * 0..15: global clients
52 * 16..127: statically allocated client numbers for cards 0..27
53 * 128..191: dynamically allocated client numbers for cards 28..31
54 * 128..191: dynamically allocated client numbers for applications
55 */
56
57/* number of kernel non-card clients */
58#define SNDRV_SEQ_GLOBAL_CLIENTS 16
59/* clients per cards, for static clients */
60#define SNDRV_SEQ_CLIENTS_PER_CARD 4
61/* dynamically allocated client numbers (both kernel drivers and user space) */
62#define SNDRV_SEQ_DYNAMIC_CLIENTS_BEGIN 128
Clemens Ladischd0015442005-11-20 14:09:05 +010063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define SNDRV_SEQ_LFLG_INPUT 0x0001
65#define SNDRV_SEQ_LFLG_OUTPUT 0x0002
66#define SNDRV_SEQ_LFLG_OPEN (SNDRV_SEQ_LFLG_INPUT|SNDRV_SEQ_LFLG_OUTPUT)
67
68static DEFINE_SPINLOCK(clients_lock);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010069static DEFINE_MUTEX(register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/*
72 * client table
73 */
74static char clienttablock[SNDRV_SEQ_MAX_CLIENTS];
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010075static struct snd_seq_client *clienttab[SNDRV_SEQ_MAX_CLIENTS];
76static struct snd_seq_usage client_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * prototypes
80 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +010081static int bounce_error_event(struct snd_seq_client *client,
82 struct snd_seq_event *event,
83 int err, int atomic, int hop);
84static int snd_seq_deliver_single_event(struct snd_seq_client *client,
85 struct snd_seq_event *event,
86 int filter, int atomic, int hop);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88/*
89 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static inline unsigned short snd_seq_file_flags(struct file *file)
91{
92 switch (file->f_mode & (FMODE_READ | FMODE_WRITE)) {
93 case FMODE_WRITE:
94 return SNDRV_SEQ_LFLG_OUTPUT;
95 case FMODE_READ:
96 return SNDRV_SEQ_LFLG_INPUT;
97 default:
98 return SNDRV_SEQ_LFLG_OPEN;
99 }
100}
101
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100102static inline int snd_seq_write_pool_allocated(struct snd_seq_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 return snd_seq_total_cells(client->pool) > 0;
105}
106
107/* return pointer to client structure for specified id */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100108static struct snd_seq_client *clientptr(int clientid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 if (clientid < 0 || clientid >= SNDRV_SEQ_MAX_CLIENTS) {
Takashi Iwai04cc79a2014-02-04 18:24:34 +0100111 pr_debug("ALSA: seq: oops. Trying to get pointer to client %d\n",
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100112 clientid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return NULL;
114 }
115 return clienttab[clientid];
116}
117
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100118struct snd_seq_client *snd_seq_client_use_ptr(int clientid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 unsigned long flags;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100121 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (clientid < 0 || clientid >= SNDRV_SEQ_MAX_CLIENTS) {
Takashi Iwai04cc79a2014-02-04 18:24:34 +0100124 pr_debug("ALSA: seq: oops. Trying to get pointer to client %d\n",
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100125 clientid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return NULL;
127 }
128 spin_lock_irqsave(&clients_lock, flags);
129 client = clientptr(clientid);
130 if (client)
131 goto __lock;
132 if (clienttablock[clientid]) {
133 spin_unlock_irqrestore(&clients_lock, flags);
134 return NULL;
135 }
136 spin_unlock_irqrestore(&clients_lock, flags);
Johannes Bergee2da992008-07-09 10:28:41 +0200137#ifdef CONFIG_MODULES
Jan Blunck0d63e4f2008-02-14 19:34:28 -0800138 if (!in_interrupt()) {
Clemens Ladischaa1e77e2005-12-12 09:36:01 +0100139 static char client_requested[SNDRV_SEQ_GLOBAL_CLIENTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 static char card_requested[SNDRV_CARDS];
Clemens Ladischaa1e77e2005-12-12 09:36:01 +0100141 if (clientid < SNDRV_SEQ_GLOBAL_CLIENTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 int idx;
143
Jan Blunck0d63e4f2008-02-14 19:34:28 -0800144 if (!client_requested[clientid]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 client_requested[clientid] = 1;
Clemens Ladischaa1e77e2005-12-12 09:36:01 +0100146 for (idx = 0; idx < 15; idx++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (seq_client_load[idx] < 0)
148 break;
149 if (seq_client_load[idx] == clientid) {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100150 request_module("snd-seq-client-%i",
151 clientid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 break;
153 }
154 }
155 }
Clemens Ladischaa1e77e2005-12-12 09:36:01 +0100156 } else if (clientid < SNDRV_SEQ_DYNAMIC_CLIENTS_BEGIN) {
157 int card = (clientid - SNDRV_SEQ_GLOBAL_CLIENTS) /
158 SNDRV_SEQ_CLIENTS_PER_CARD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (card < snd_ecards_limit) {
160 if (! card_requested[card]) {
161 card_requested[card] = 1;
162 snd_request_card(card);
163 }
164 snd_seq_device_load_drivers();
165 }
166 }
167 spin_lock_irqsave(&clients_lock, flags);
168 client = clientptr(clientid);
169 if (client)
170 goto __lock;
171 spin_unlock_irqrestore(&clients_lock, flags);
172 }
173#endif
174 return NULL;
175
176 __lock:
177 snd_use_lock_use(&client->use_lock);
178 spin_unlock_irqrestore(&clients_lock, flags);
179 return client;
180}
181
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100182static void usage_alloc(struct snd_seq_usage *res, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 res->cur += num;
185 if (res->cur > res->peak)
186 res->peak = res->cur;
187}
188
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100189static void usage_free(struct snd_seq_usage *res, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 res->cur -= num;
192}
193
194/* initialise data structures */
195int __init client_init_data(void)
196{
197 /* zap out the client table */
198 memset(&clienttablock, 0, sizeof(clienttablock));
199 memset(&clienttab, 0, sizeof(clienttab));
200 return 0;
201}
202
203
Clemens Ladischaa1e77e2005-12-12 09:36:01 +0100204static struct snd_seq_client *seq_create_client1(int client_index, int poolsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 unsigned long flags;
207 int c;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100208 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* init client data */
Takashi Iwaiecca82b2005-09-09 14:20:49 +0200211 client = kzalloc(sizeof(*client), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (client == NULL)
213 return NULL;
214 client->pool = snd_seq_pool_new(poolsize);
215 if (client->pool == NULL) {
216 kfree(client);
217 return NULL;
218 }
219 client->type = NO_CLIENT;
220 snd_use_lock_init(&client->use_lock);
221 rwlock_init(&client->ports_lock);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100222 mutex_init(&client->ports_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 INIT_LIST_HEAD(&client->ports_list_head);
Takashi Iwaie4ff9f22018-01-09 23:11:03 +0100224 mutex_init(&client->ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* find free slot in the client table */
227 spin_lock_irqsave(&clients_lock, flags);
228 if (client_index < 0) {
Clemens Ladischaa1e77e2005-12-12 09:36:01 +0100229 for (c = SNDRV_SEQ_DYNAMIC_CLIENTS_BEGIN;
230 c < SNDRV_SEQ_MAX_CLIENTS;
231 c++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (clienttab[c] || clienttablock[c])
233 continue;
234 clienttab[client->number = c] = client;
235 spin_unlock_irqrestore(&clients_lock, flags);
236 return client;
237 }
238 } else {
239 if (clienttab[client_index] == NULL && !clienttablock[client_index]) {
240 clienttab[client->number = client_index] = client;
241 spin_unlock_irqrestore(&clients_lock, flags);
242 return client;
243 }
244 }
245 spin_unlock_irqrestore(&clients_lock, flags);
246 snd_seq_pool_delete(&client->pool);
247 kfree(client);
248 return NULL; /* no free slot found or busy, return failure code */
249}
250
251
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100252static int seq_free_client1(struct snd_seq_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 unsigned long flags;
255
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200256 if (!client)
257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 snd_seq_delete_all_ports(client);
259 snd_seq_queue_client_leave(client->number);
260 spin_lock_irqsave(&clients_lock, flags);
261 clienttablock[client->number] = 1;
262 clienttab[client->number] = NULL;
263 spin_unlock_irqrestore(&clients_lock, flags);
264 snd_use_lock_sync(&client->use_lock);
265 snd_seq_queue_client_termination(client->number);
266 if (client->pool)
267 snd_seq_pool_delete(&client->pool);
268 spin_lock_irqsave(&clients_lock, flags);
269 clienttablock[client->number] = 0;
270 spin_unlock_irqrestore(&clients_lock, flags);
271 return 0;
272}
273
274
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100275static void seq_free_client(struct snd_seq_client * client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100277 mutex_lock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 switch (client->type) {
279 case NO_CLIENT:
Takashi Iwai04cc79a2014-02-04 18:24:34 +0100280 pr_warn("ALSA: seq: Trying to free unused client %d\n",
281 client->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 break;
283 case USER_CLIENT:
284 case KERNEL_CLIENT:
285 seq_free_client1(client);
286 usage_free(&client_usage, 1);
287 break;
288
289 default:
Takashi Iwai04cc79a2014-02-04 18:24:34 +0100290 pr_err("ALSA: seq: Trying to free client %d with undefined type = %d\n",
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100291 client->number, client->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100293 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 snd_seq_system_client_ev_client_exit(client->number);
296}
297
298
299
300/* -------------------------------------------------------- */
301
302/* create a user client */
303static int snd_seq_open(struct inode *inode, struct file *file)
304{
305 int c, mode; /* client id */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100306 struct snd_seq_client *client;
307 struct snd_seq_user_client *user;
Takashi Iwai02f48652010-04-13 11:49:04 +0200308 int err;
309
310 err = nonseekable_open(inode, file);
311 if (err < 0)
312 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100314 if (mutex_lock_interruptible(&register_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return -ERESTARTSYS;
Clemens Ladischaa1e77e2005-12-12 09:36:01 +0100316 client = seq_create_client1(-1, SNDRV_SEQ_DEFAULT_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (client == NULL) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100318 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return -ENOMEM; /* failure code */
320 }
321
322 mode = snd_seq_file_flags(file);
323 if (mode & SNDRV_SEQ_LFLG_INPUT)
324 client->accept_input = 1;
325 if (mode & SNDRV_SEQ_LFLG_OUTPUT)
326 client->accept_output = 1;
327
328 user = &client->data.user;
329 user->fifo = NULL;
330 user->fifo_pool_size = 0;
331
332 if (mode & SNDRV_SEQ_LFLG_INPUT) {
333 user->fifo_pool_size = SNDRV_SEQ_DEFAULT_CLIENT_EVENTS;
334 user->fifo = snd_seq_fifo_new(user->fifo_pool_size);
335 if (user->fifo == NULL) {
336 seq_free_client1(client);
337 kfree(client);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100338 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return -ENOMEM;
340 }
341 }
342
343 usage_alloc(&client_usage, 1);
344 client->type = USER_CLIENT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100345 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 c = client->number;
348 file->private_data = client;
349
350 /* fill client data */
351 user->file = file;
352 sprintf(client->name, "Client-%d", c);
Martin Koeglera1ce94d2016-03-02 19:26:28 +0100353 client->data.user.owner = get_pid(task_pid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 /* make others aware this new client */
356 snd_seq_system_client_ev_client_start(c);
357
358 return 0;
359}
360
361/* delete a user client */
362static int snd_seq_release(struct inode *inode, struct file *file)
363{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100364 struct snd_seq_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 if (client) {
367 seq_free_client(client);
368 if (client->data.user.fifo)
369 snd_seq_fifo_delete(&client->data.user.fifo);
Martin Koeglera1ce94d2016-03-02 19:26:28 +0100370 put_pid(client->data.user.owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 kfree(client);
372 }
373
374 return 0;
375}
376
377
378/* handle client read() */
379/* possible error values:
380 * -ENXIO invalid client or file open mode
381 * -ENOSPC FIFO overflow (the flag is cleared after this error report)
382 * -EINVAL no enough user-space buffer to write the whole event
383 * -EFAULT seg. fault during copy to user space
384 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100385static ssize_t snd_seq_read(struct file *file, char __user *buf, size_t count,
386 loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100388 struct snd_seq_client *client = file->private_data;
389 struct snd_seq_fifo *fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int err;
391 long result = 0;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100392 struct snd_seq_event_cell *cell;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 if (!(snd_seq_file_flags(file) & SNDRV_SEQ_LFLG_INPUT))
395 return -ENXIO;
396
397 if (!access_ok(VERIFY_WRITE, buf, count))
398 return -EFAULT;
399
400 /* check client structures are in place */
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200401 if (snd_BUG_ON(!client))
402 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 if (!client->accept_input || (fifo = client->data.user.fifo) == NULL)
405 return -ENXIO;
406
407 if (atomic_read(&fifo->overflow) > 0) {
408 /* buffer overflow is detected */
409 snd_seq_fifo_clear(fifo);
410 /* return error code */
411 return -ENOSPC;
412 }
413
414 cell = NULL;
415 err = 0;
416 snd_seq_fifo_lock(fifo);
417
418 /* while data available in queue */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100419 while (count >= sizeof(struct snd_seq_event)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int nonblock;
421
422 nonblock = (file->f_flags & O_NONBLOCK) || result > 0;
423 if ((err = snd_seq_fifo_cell_out(fifo, &cell, nonblock)) < 0) {
424 break;
425 }
426 if (snd_seq_ev_is_variable(&cell->event)) {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100427 struct snd_seq_event tmpev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 tmpev = cell->event;
429 tmpev.data.ext.len &= ~SNDRV_SEQ_EXT_MASK;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100430 if (copy_to_user(buf, &tmpev, sizeof(struct snd_seq_event))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 err = -EFAULT;
432 break;
433 }
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100434 count -= sizeof(struct snd_seq_event);
435 buf += sizeof(struct snd_seq_event);
Clemens Ladisch4d233592005-09-05 10:35:20 +0200436 err = snd_seq_expand_var_event(&cell->event, count,
437 (char __force *)buf, 0,
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100438 sizeof(struct snd_seq_event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (err < 0)
440 break;
441 result += err;
442 count -= err;
443 buf += err;
444 } else {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100445 if (copy_to_user(buf, &cell->event, sizeof(struct snd_seq_event))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 err = -EFAULT;
447 break;
448 }
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100449 count -= sizeof(struct snd_seq_event);
450 buf += sizeof(struct snd_seq_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 snd_seq_cell_free(cell);
453 cell = NULL; /* to be sure */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100454 result += sizeof(struct snd_seq_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456
457 if (err < 0) {
458 if (cell)
459 snd_seq_fifo_cell_putback(fifo, cell);
460 if (err == -EAGAIN && result > 0)
461 err = 0;
462 }
463 snd_seq_fifo_unlock(fifo);
464
465 return (err < 0) ? err : result;
466}
467
468
469/*
470 * check access permission to the port
471 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100472static int check_port_perm(struct snd_seq_client_port *port, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 if ((port->capability & flags) != flags)
475 return 0;
476 return flags;
477}
478
479/*
480 * check if the destination client is available, and return the pointer
481 * if filter is non-zero, client filter bitmap is tested.
482 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100483static struct snd_seq_client *get_event_dest_client(struct snd_seq_event *event,
484 int filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100486 struct snd_seq_client *dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 dest = snd_seq_client_use_ptr(event->dest.client);
489 if (dest == NULL)
490 return NULL;
491 if (! dest->accept_input)
492 goto __not_avail;
493 if ((dest->filter & SNDRV_SEQ_FILTER_USE_EVENT) &&
494 ! test_bit(event->type, dest->event_filter))
495 goto __not_avail;
496 if (filter && !(dest->filter & filter))
497 goto __not_avail;
498
499 return dest; /* ok - accessible */
500__not_avail:
501 snd_seq_client_unlock(dest);
502 return NULL;
503}
504
505
506/*
507 * Return the error event.
508 *
509 * If the receiver client is a user client, the original event is
510 * encapsulated in SNDRV_SEQ_EVENT_BOUNCE as variable length event. If
511 * the original event is also variable length, the external data is
512 * copied after the event record.
513 * If the receiver client is a kernel client, the original event is
514 * quoted in SNDRV_SEQ_EVENT_KERNEL_ERROR, since this requires no extra
515 * kmalloc.
516 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100517static int bounce_error_event(struct snd_seq_client *client,
518 struct snd_seq_event *event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 int err, int atomic, int hop)
520{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100521 struct snd_seq_event bounce_ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 int result;
523
524 if (client == NULL ||
525 ! (client->filter & SNDRV_SEQ_FILTER_BOUNCE) ||
526 ! client->accept_input)
527 return 0; /* ignored */
528
529 /* set up quoted error */
530 memset(&bounce_ev, 0, sizeof(bounce_ev));
531 bounce_ev.type = SNDRV_SEQ_EVENT_KERNEL_ERROR;
532 bounce_ev.flags = SNDRV_SEQ_EVENT_LENGTH_FIXED;
533 bounce_ev.queue = SNDRV_SEQ_QUEUE_DIRECT;
534 bounce_ev.source.client = SNDRV_SEQ_CLIENT_SYSTEM;
535 bounce_ev.source.port = SNDRV_SEQ_PORT_SYSTEM_ANNOUNCE;
536 bounce_ev.dest.client = client->number;
537 bounce_ev.dest.port = event->source.port;
538 bounce_ev.data.quote.origin = event->dest;
539 bounce_ev.data.quote.event = event;
540 bounce_ev.data.quote.value = -err; /* use positive value */
541 result = snd_seq_deliver_single_event(NULL, &bounce_ev, 0, atomic, hop + 1);
542 if (result < 0) {
543 client->event_lost++;
544 return result;
545 }
546
547 return result;
548}
549
550
551/*
552 * rewrite the time-stamp of the event record with the curren time
553 * of the given queue.
554 * return non-zero if updated.
555 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100556static int update_timestamp_of_queue(struct snd_seq_event *event,
557 int queue, int real_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100559 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 q = queueptr(queue);
562 if (! q)
563 return 0;
564 event->queue = queue;
565 event->flags &= ~SNDRV_SEQ_TIME_STAMP_MASK;
566 if (real_time) {
567 event->time.time = snd_seq_timer_get_cur_time(q->timer);
568 event->flags |= SNDRV_SEQ_TIME_STAMP_REAL;
569 } else {
570 event->time.tick = snd_seq_timer_get_cur_tick(q->timer);
571 event->flags |= SNDRV_SEQ_TIME_STAMP_TICK;
572 }
573 queuefree(q);
574 return 1;
575}
576
577
578/*
579 * deliver an event to the specified destination.
580 * if filter is non-zero, client filter bitmap is tested.
581 *
582 * RETURN VALUE: 0 : if succeeded
583 * <0 : error
584 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100585static int snd_seq_deliver_single_event(struct snd_seq_client *client,
586 struct snd_seq_event *event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 int filter, int atomic, int hop)
588{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100589 struct snd_seq_client *dest = NULL;
590 struct snd_seq_client_port *dest_port = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int result = -ENOENT;
592 int direct;
593
594 direct = snd_seq_ev_is_direct(event);
595
596 dest = get_event_dest_client(event, filter);
597 if (dest == NULL)
598 goto __skip;
599 dest_port = snd_seq_port_use_ptr(dest, event->dest.port);
600 if (dest_port == NULL)
601 goto __skip;
602
603 /* check permission */
604 if (! check_port_perm(dest_port, SNDRV_SEQ_PORT_CAP_WRITE)) {
605 result = -EPERM;
606 goto __skip;
607 }
608
609 if (dest_port->timestamping)
610 update_timestamp_of_queue(event, dest_port->time_queue,
611 dest_port->time_real);
612
613 switch (dest->type) {
614 case USER_CLIENT:
615 if (dest->data.user.fifo)
616 result = snd_seq_fifo_event_in(dest->data.user.fifo, event);
617 break;
618
619 case KERNEL_CLIENT:
620 if (dest_port->event_input == NULL)
621 break;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100622 result = dest_port->event_input(event, direct,
623 dest_port->private_data,
624 atomic, hop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 break;
626 default:
627 break;
628 }
629
630 __skip:
631 if (dest_port)
632 snd_seq_port_unlock(dest_port);
633 if (dest)
634 snd_seq_client_unlock(dest);
635
636 if (result < 0 && !direct) {
637 result = bounce_error_event(client, event, result, atomic, hop);
638 }
639 return result;
640}
641
642
643/*
644 * send the event to all subscribers:
645 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100646static int deliver_to_subscribers(struct snd_seq_client *client,
647 struct snd_seq_event *event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int atomic, int hop)
649{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100650 struct snd_seq_subscribers *subs;
Adam Goode27423252014-06-04 11:20:55 -0400651 int err, result = 0, num_ev = 0;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100652 struct snd_seq_event event_saved;
653 struct snd_seq_client_port *src_port;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100654 struct snd_seq_port_subs_info *grp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 src_port = snd_seq_port_use_ptr(client, event->source.port);
657 if (src_port == NULL)
658 return -EINVAL; /* invalid source port */
659 /* save original event record */
660 event_saved = *event;
661 grp = &src_port->c_src;
662
663 /* lock list */
664 if (atomic)
665 read_lock(&grp->list_lock);
666 else
Takashi Iwaiffb76bb2017-10-29 11:10:43 +0100667 down_read_nested(&grp->list_mutex, hop);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200668 list_for_each_entry(subs, &grp->list_head, src_list) {
Takashi Iwai7f0973e2016-02-03 08:32:44 +0100669 /* both ports ready? */
670 if (atomic_read(&subs->ref_count) != 2)
671 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 event->dest = subs->info.dest;
673 if (subs->info.flags & SNDRV_SEQ_PORT_SUBS_TIMESTAMP)
674 /* convert time according to flag with subscription */
675 update_timestamp_of_queue(event, subs->info.queue,
676 subs->info.flags & SNDRV_SEQ_PORT_SUBS_TIME_REAL);
677 err = snd_seq_deliver_single_event(client, event,
678 0, atomic, hop);
Adam Goode27423252014-06-04 11:20:55 -0400679 if (err < 0) {
680 /* save first error that occurs and continue */
681 if (!result)
682 result = err;
683 continue;
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 num_ev++;
686 /* restore original event record */
687 *event = event_saved;
688 }
689 if (atomic)
690 read_unlock(&grp->list_lock);
691 else
692 up_read(&grp->list_mutex);
693 *event = event_saved; /* restore */
694 snd_seq_port_unlock(src_port);
Adam Goode27423252014-06-04 11:20:55 -0400695 return (result < 0) ? result : num_ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698
699#ifdef SUPPORT_BROADCAST
700/*
701 * broadcast to all ports:
702 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100703static int port_broadcast_event(struct snd_seq_client *client,
704 struct snd_seq_event *event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 int atomic, int hop)
706{
Adam Goode27423252014-06-04 11:20:55 -0400707 int num_ev = 0, err, result = 0;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100708 struct snd_seq_client *dest_client;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200709 struct snd_seq_client_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 dest_client = get_event_dest_client(event, SNDRV_SEQ_FILTER_BROADCAST);
712 if (dest_client == NULL)
713 return 0; /* no matching destination */
714
715 read_lock(&dest_client->ports_lock);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200716 list_for_each_entry(port, &dest_client->ports_list_head, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 event->dest.port = port->addr.port;
718 /* pass NULL as source client to avoid error bounce */
719 err = snd_seq_deliver_single_event(NULL, event,
720 SNDRV_SEQ_FILTER_BROADCAST,
721 atomic, hop);
Adam Goode27423252014-06-04 11:20:55 -0400722 if (err < 0) {
723 /* save first error that occurs and continue */
724 if (!result)
725 result = err;
726 continue;
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 num_ev++;
729 }
730 read_unlock(&dest_client->ports_lock);
731 snd_seq_client_unlock(dest_client);
732 event->dest.port = SNDRV_SEQ_ADDRESS_BROADCAST; /* restore */
Adam Goode27423252014-06-04 11:20:55 -0400733 return (result < 0) ? result : num_ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
736/*
737 * send the event to all clients:
738 * if destination port is also ADDRESS_BROADCAST, deliver to all ports.
739 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100740static int broadcast_event(struct snd_seq_client *client,
741 struct snd_seq_event *event, int atomic, int hop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Adam Goode27423252014-06-04 11:20:55 -0400743 int err, result = 0, num_ev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 int dest;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100745 struct snd_seq_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 addr = event->dest; /* save */
748
749 for (dest = 0; dest < SNDRV_SEQ_MAX_CLIENTS; dest++) {
750 /* don't send to itself */
751 if (dest == client->number)
752 continue;
753 event->dest.client = dest;
754 event->dest.port = addr.port;
755 if (addr.port == SNDRV_SEQ_ADDRESS_BROADCAST)
756 err = port_broadcast_event(client, event, atomic, hop);
757 else
758 /* pass NULL as source client to avoid error bounce */
759 err = snd_seq_deliver_single_event(NULL, event,
760 SNDRV_SEQ_FILTER_BROADCAST,
761 atomic, hop);
Adam Goode27423252014-06-04 11:20:55 -0400762 if (err < 0) {
763 /* save first error that occurs and continue */
764 if (!result)
765 result = err;
766 continue;
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 num_ev += err;
769 }
770 event->dest = addr; /* restore */
Adam Goode27423252014-06-04 11:20:55 -0400771 return (result < 0) ? result : num_ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774
775/* multicast - not supported yet */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100776static int multicast_event(struct snd_seq_client *client, struct snd_seq_event *event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 int atomic, int hop)
778{
Takashi Iwai04cc79a2014-02-04 18:24:34 +0100779 pr_debug("ALSA: seq: multicast not supported yet.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return 0; /* ignored */
781}
782#endif /* SUPPORT_BROADCAST */
783
784
785/* deliver an event to the destination port(s).
786 * if the event is to subscribers or broadcast, the event is dispatched
787 * to multiple targets.
788 *
789 * RETURN VALUE: n > 0 : the number of delivered events.
790 * n == 0 : the event was not passed to any client.
791 * n < 0 : error - event was not processed.
792 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100793static int snd_seq_deliver_event(struct snd_seq_client *client, struct snd_seq_event *event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int atomic, int hop)
795{
796 int result;
797
798 hop++;
799 if (hop >= SNDRV_SEQ_MAX_HOPS) {
Takashi Iwai04cc79a2014-02-04 18:24:34 +0100800 pr_debug("ALSA: seq: too long delivery path (%d:%d->%d:%d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 event->source.client, event->source.port,
802 event->dest.client, event->dest.port);
803 return -EMLINK;
804 }
805
806 if (event->queue == SNDRV_SEQ_ADDRESS_SUBSCRIBERS ||
807 event->dest.client == SNDRV_SEQ_ADDRESS_SUBSCRIBERS)
808 result = deliver_to_subscribers(client, event, atomic, hop);
809#ifdef SUPPORT_BROADCAST
810 else if (event->queue == SNDRV_SEQ_ADDRESS_BROADCAST ||
811 event->dest.client == SNDRV_SEQ_ADDRESS_BROADCAST)
812 result = broadcast_event(client, event, atomic, hop);
813 else if (event->dest.client >= SNDRV_SEQ_MAX_CLIENTS)
814 result = multicast_event(client, event, atomic, hop);
815 else if (event->dest.port == SNDRV_SEQ_ADDRESS_BROADCAST)
816 result = port_broadcast_event(client, event, atomic, hop);
817#endif
818 else
819 result = snd_seq_deliver_single_event(client, event, 0, atomic, hop);
820
821 return result;
822}
823
824/*
825 * dispatch an event cell:
826 * This function is called only from queue check routines in timer
827 * interrupts or after enqueued.
828 * The event cell shall be released or re-queued in this function.
829 *
830 * RETURN VALUE: n > 0 : the number of delivered events.
831 * n == 0 : the event was not passed to any client.
832 * n < 0 : error - event was not processed.
833 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100834int snd_seq_dispatch_event(struct snd_seq_event_cell *cell, int atomic, int hop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100836 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 int result;
838
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200839 if (snd_BUG_ON(!cell))
840 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 client = snd_seq_client_use_ptr(cell->event.source.client);
843 if (client == NULL) {
844 snd_seq_cell_free(cell); /* release this cell */
845 return -EINVAL;
846 }
847
848 if (cell->event.type == SNDRV_SEQ_EVENT_NOTE) {
849 /* NOTE event:
850 * the event cell is re-used as a NOTE-OFF event and
851 * enqueued again.
852 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100853 struct snd_seq_event tmpev, *ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /* reserve this event to enqueue note-off later */
856 tmpev = cell->event;
857 tmpev.type = SNDRV_SEQ_EVENT_NOTEON;
858 result = snd_seq_deliver_event(client, &tmpev, atomic, hop);
859
860 /*
861 * This was originally a note event. We now re-use the
862 * cell for the note-off event.
863 */
864
865 ev = &cell->event;
866 ev->type = SNDRV_SEQ_EVENT_NOTEOFF;
867 ev->flags |= SNDRV_SEQ_PRIORITY_HIGH;
868
869 /* add the duration time */
870 switch (ev->flags & SNDRV_SEQ_TIME_STAMP_MASK) {
871 case SNDRV_SEQ_TIME_STAMP_TICK:
872 ev->time.tick += ev->data.note.duration;
873 break;
874 case SNDRV_SEQ_TIME_STAMP_REAL:
875 /* unit for duration is ms */
876 ev->time.time.tv_nsec += 1000000 * (ev->data.note.duration % 1000);
877 ev->time.time.tv_sec += ev->data.note.duration / 1000 +
878 ev->time.time.tv_nsec / 1000000000;
879 ev->time.time.tv_nsec %= 1000000000;
880 break;
881 }
882 ev->data.note.velocity = ev->data.note.off_velocity;
883
884 /* Now queue this cell as the note off event */
885 if (snd_seq_enqueue_event(cell, atomic, hop) < 0)
886 snd_seq_cell_free(cell); /* release this cell */
887
888 } else {
889 /* Normal events:
890 * event cell is freed after processing the event
891 */
892
893 result = snd_seq_deliver_event(client, &cell->event, atomic, hop);
894 snd_seq_cell_free(cell);
895 }
896
897 snd_seq_client_unlock(client);
898 return result;
899}
900
901
902/* Allocate a cell from client pool and enqueue it to queue:
903 * if pool is empty and blocking is TRUE, sleep until a new cell is
904 * available.
905 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100906static int snd_seq_client_enqueue_event(struct snd_seq_client *client,
907 struct snd_seq_event *event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 struct file *file, int blocking,
909 int atomic, int hop)
910{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100911 struct snd_seq_event_cell *cell;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 int err;
913
914 /* special queue values - force direct passing */
915 if (event->queue == SNDRV_SEQ_ADDRESS_SUBSCRIBERS) {
916 event->dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS;
917 event->queue = SNDRV_SEQ_QUEUE_DIRECT;
918 } else
919#ifdef SUPPORT_BROADCAST
920 if (event->queue == SNDRV_SEQ_ADDRESS_BROADCAST) {
921 event->dest.client = SNDRV_SEQ_ADDRESS_BROADCAST;
922 event->queue = SNDRV_SEQ_QUEUE_DIRECT;
923 }
924#endif
925 if (event->dest.client == SNDRV_SEQ_ADDRESS_SUBSCRIBERS) {
926 /* check presence of source port */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100927 struct snd_seq_client_port *src_port = snd_seq_port_use_ptr(client, event->source.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (src_port == NULL)
929 return -EINVAL;
930 snd_seq_port_unlock(src_port);
931 }
932
933 /* direct event processing without enqueued */
934 if (snd_seq_ev_is_direct(event)) {
935 if (event->type == SNDRV_SEQ_EVENT_NOTE)
936 return -EINVAL; /* this event must be enqueued! */
937 return snd_seq_deliver_event(client, event, atomic, hop);
938 }
939
940 /* Not direct, normal queuing */
941 if (snd_seq_queue_is_used(event->queue, client->number) <= 0)
942 return -EINVAL; /* invalid queue */
943 if (! snd_seq_write_pool_allocated(client))
944 return -ENXIO; /* queue is not allocated */
945
946 /* allocate an event cell */
947 err = snd_seq_event_dup(client->pool, event, &cell, !blocking || atomic, file);
948 if (err < 0)
949 return err;
950
951 /* we got a cell. enqueue it. */
952 if ((err = snd_seq_enqueue_event(cell, atomic, hop)) < 0) {
953 snd_seq_cell_free(cell);
954 return err;
955 }
956
957 return 0;
958}
959
960
961/*
962 * check validity of event type and data length.
963 * return non-zero if invalid.
964 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100965static int check_event_type_and_length(struct snd_seq_event *ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 switch (snd_seq_ev_length_type(ev)) {
968 case SNDRV_SEQ_EVENT_LENGTH_FIXED:
969 if (snd_seq_ev_is_variable_type(ev))
970 return -EINVAL;
971 break;
972 case SNDRV_SEQ_EVENT_LENGTH_VARIABLE:
973 if (! snd_seq_ev_is_variable_type(ev) ||
974 (ev->data.ext.len & ~SNDRV_SEQ_EXT_MASK) >= SNDRV_SEQ_MAX_EVENT_LEN)
975 return -EINVAL;
976 break;
977 case SNDRV_SEQ_EVENT_LENGTH_VARUSR:
Takashi Iwaie5723b42007-10-30 12:17:17 +0100978 if (! snd_seq_ev_is_direct(ev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return -EINVAL;
980 break;
981 }
982 return 0;
983}
984
985
986/* handle write() */
987/* possible error values:
988 * -ENXIO invalid client or file open mode
989 * -ENOMEM malloc failed
990 * -EFAULT seg. fault during copy from user space
991 * -EINVAL invalid event
992 * -EAGAIN no space in output pool
993 * -EINTR interrupts while sleep
994 * -EMLINK too many hops
995 * others depends on return value from driver callback
996 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100997static ssize_t snd_seq_write(struct file *file, const char __user *buf,
998 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001000 struct snd_seq_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 int written = 0, len;
1002 int err = -EINVAL;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001003 struct snd_seq_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 if (!(snd_seq_file_flags(file) & SNDRV_SEQ_LFLG_OUTPUT))
1006 return -ENXIO;
1007
1008 /* check client structures are in place */
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001009 if (snd_BUG_ON(!client))
1010 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 if (!client->accept_output || client->pool == NULL)
1013 return -ENXIO;
1014
1015 /* allocate the pool now if the pool is not allocated yet */
1016 if (client->pool->size > 0 && !snd_seq_write_pool_allocated(client)) {
1017 if (snd_seq_pool_init(client->pool) < 0)
1018 return -ENOMEM;
1019 }
1020
1021 /* only process whole events */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001022 while (count >= sizeof(struct snd_seq_event)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 /* Read in the event header from the user */
1024 len = sizeof(event);
1025 if (copy_from_user(&event, buf, len)) {
1026 err = -EFAULT;
1027 break;
1028 }
1029 event.source.client = client->number; /* fill in client number */
1030 /* Check for extension data length */
1031 if (check_event_type_and_length(&event)) {
1032 err = -EINVAL;
1033 break;
1034 }
1035
1036 /* check for special events */
1037 if (event.type == SNDRV_SEQ_EVENT_NONE)
1038 goto __skip_event;
1039 else if (snd_seq_ev_is_reserved(&event)) {
1040 err = -EINVAL;
1041 break;
1042 }
1043
1044 if (snd_seq_ev_is_variable(&event)) {
1045 int extlen = event.data.ext.len & ~SNDRV_SEQ_EXT_MASK;
1046 if ((size_t)(extlen + len) > count) {
1047 /* back out, will get an error this time or next */
1048 err = -EINVAL;
1049 break;
1050 }
1051 /* set user space pointer */
1052 event.data.ext.len = extlen | SNDRV_SEQ_EXT_USRPTR;
Clemens Ladisch4d233592005-09-05 10:35:20 +02001053 event.data.ext.ptr = (char __force *)buf
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001054 + sizeof(struct snd_seq_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 len += extlen; /* increment data length */
1056 } else {
1057#ifdef CONFIG_COMPAT
1058 if (client->convert32 && snd_seq_ev_is_varusr(&event)) {
Clemens Ladischfea952e2011-02-14 11:00:47 +01001059 void *ptr = (void __force *)compat_ptr(event.data.raw32.d[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 event.data.ext.ptr = ptr;
1061 }
1062#endif
1063 }
1064
1065 /* ok, enqueue it */
1066 err = snd_seq_client_enqueue_event(client, &event, file,
1067 !(file->f_flags & O_NONBLOCK),
1068 0, 0);
1069 if (err < 0)
1070 break;
1071
1072 __skip_event:
1073 /* Update pointers and counts */
1074 count -= len;
1075 buf += len;
1076 written += len;
1077 }
1078
1079 return written ? written : err;
1080}
1081
1082
1083/*
1084 * handle polling
1085 */
1086static unsigned int snd_seq_poll(struct file *file, poll_table * wait)
1087{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001088 struct snd_seq_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 unsigned int mask = 0;
1090
1091 /* check client structures are in place */
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001092 if (snd_BUG_ON(!client))
1093 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 if ((snd_seq_file_flags(file) & SNDRV_SEQ_LFLG_INPUT) &&
1096 client->data.user.fifo) {
1097
1098 /* check if data is available in the outqueue */
1099 if (snd_seq_fifo_poll_wait(client->data.user.fifo, file, wait))
1100 mask |= POLLIN | POLLRDNORM;
1101 }
1102
1103 if (snd_seq_file_flags(file) & SNDRV_SEQ_LFLG_OUTPUT) {
1104
1105 /* check if data is available in the pool */
1106 if (!snd_seq_write_pool_allocated(client) ||
1107 snd_seq_pool_poll_wait(client->pool, file, wait))
1108 mask |= POLLOUT | POLLWRNORM;
1109 }
1110
1111 return mask;
1112}
1113
1114
1115/*-----------------------------------------------------*/
1116
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001117static int snd_seq_ioctl_pversion(struct snd_seq_client *client, void *arg)
1118{
1119 int *pversion = arg;
1120
1121 *pversion = SNDRV_SEQ_VERSION;
1122 return 0;
1123}
1124
1125static int snd_seq_ioctl_client_id(struct snd_seq_client *client, void *arg)
1126{
1127 int *client_id = arg;
1128
1129 *client_id = client->number;
1130 return 0;
1131}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133/* SYSTEM_INFO ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001134static int snd_seq_ioctl_system_info(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001136 struct snd_seq_system_info *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001138 memset(info, 0, sizeof(*info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 /* fill the info fields */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001140 info->queues = SNDRV_SEQ_MAX_QUEUES;
1141 info->clients = SNDRV_SEQ_MAX_CLIENTS;
1142 info->ports = SNDRV_SEQ_MAX_PORTS;
1143 info->channels = 256; /* fixed limit */
1144 info->cur_clients = client_usage.cur;
1145 info->cur_queues = snd_seq_queue_get_cur_queues();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return 0;
1148}
1149
1150
1151/* RUNNING_MODE ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001152static int snd_seq_ioctl_running_mode(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001154 struct snd_seq_running_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001155 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 int err = 0;
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 /* requested client number */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001159 cptr = snd_seq_client_use_ptr(info->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (cptr == NULL)
1161 return -ENOENT; /* don't change !!! */
1162
1163#ifdef SNDRV_BIG_ENDIAN
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001164 if (!info->big_endian) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 err = -EINVAL;
1166 goto __err;
1167 }
1168#else
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001169 if (info->big_endian) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 err = -EINVAL;
1171 goto __err;
1172 }
1173
1174#endif
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001175 if (info->cpu_mode > sizeof(long)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 err = -EINVAL;
1177 goto __err;
1178 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001179 cptr->convert32 = (info->cpu_mode < sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 __err:
1181 snd_seq_client_unlock(cptr);
1182 return err;
1183}
1184
1185/* CLIENT_INFO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001186static void get_client_info(struct snd_seq_client *cptr,
1187 struct snd_seq_client_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
1189 info->client = cptr->number;
1190
1191 /* fill the info fields */
1192 info->type = cptr->type;
1193 strcpy(info->name, cptr->name);
1194 info->filter = cptr->filter;
1195 info->event_lost = cptr->event_lost;
1196 memcpy(info->event_filter, cptr->event_filter, 32);
1197 info->num_ports = cptr->num_ports;
Martin Koeglera1ce94d2016-03-02 19:26:28 +01001198
1199 if (cptr->type == USER_CLIENT)
1200 info->pid = pid_vnr(cptr->data.user.owner);
1201 else
1202 info->pid = -1;
1203
1204 if (cptr->type == KERNEL_CLIENT)
1205 info->card = cptr->data.kernel.card ? cptr->data.kernel.card->number : -1;
1206 else
1207 info->card = -1;
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 memset(info->reserved, 0, sizeof(info->reserved));
1210}
1211
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001212static int snd_seq_ioctl_get_client_info(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001213 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001215 struct snd_seq_client_info *client_info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001216 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 /* requested client number */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001219 cptr = snd_seq_client_use_ptr(client_info->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (cptr == NULL)
1221 return -ENOENT; /* don't change !!! */
1222
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001223 get_client_info(cptr, client_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 snd_seq_client_unlock(cptr);
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return 0;
1227}
1228
1229
1230/* CLIENT_INFO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001231static int snd_seq_ioctl_set_client_info(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001232 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001234 struct snd_seq_client_info *client_info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 /* it is not allowed to set the info fields for an another client */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001237 if (client->number != client_info->client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 return -EPERM;
1239 /* also client type must be set now */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001240 if (client->type != client_info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return -EINVAL;
1242
1243 /* fill the info fields */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001244 if (client_info->name[0])
1245 strlcpy(client->name, client_info->name, sizeof(client->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001247 client->filter = client_info->filter;
1248 client->event_lost = client_info->event_lost;
1249 memcpy(client->event_filter, client_info->event_filter, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 return 0;
1252}
1253
1254
1255/*
1256 * CREATE PORT ioctl()
1257 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001258static int snd_seq_ioctl_create_port(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001260 struct snd_seq_port_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001261 struct snd_seq_client_port *port;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001262 struct snd_seq_port_callback *callback;
Takashi Iwai35b84862017-10-09 11:09:20 +02001263 int port_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* it is not allowed to create the port for an another client */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001266 if (info->addr.client != client->number)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return -EPERM;
1268
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001269 port = snd_seq_create_port(client, (info->flags & SNDRV_SEQ_PORT_FLG_GIVEN_PORT) ? info->addr.port : -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (port == NULL)
1271 return -ENOMEM;
1272
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001273 if (client->type == USER_CLIENT && info->kernel) {
Takashi Iwai35b84862017-10-09 11:09:20 +02001274 port_idx = port->addr.port;
1275 snd_seq_port_unlock(port);
1276 snd_seq_delete_port(client, port_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return -EINVAL;
1278 }
1279 if (client->type == KERNEL_CLIENT) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001280 if ((callback = info->kernel) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (callback->owner)
1282 port->owner = callback->owner;
1283 port->private_data = callback->private_data;
1284 port->private_free = callback->private_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 port->event_input = callback->event_input;
1286 port->c_src.open = callback->subscribe;
1287 port->c_src.close = callback->unsubscribe;
1288 port->c_dest.open = callback->use;
1289 port->c_dest.close = callback->unuse;
1290 }
1291 }
1292
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001293 info->addr = port->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001295 snd_seq_set_port_info(port, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 snd_seq_system_client_ev_port_start(port->addr.client, port->addr.port);
Takashi Iwai35b84862017-10-09 11:09:20 +02001297 snd_seq_port_unlock(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return 0;
1300}
1301
1302/*
1303 * DELETE PORT ioctl()
1304 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001305static int snd_seq_ioctl_delete_port(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001307 struct snd_seq_port_info *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 int err;
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 /* it is not allowed to remove the port for an another client */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001311 if (info->addr.client != client->number)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return -EPERM;
1313
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001314 err = snd_seq_delete_port(client, info->addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (err >= 0)
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001316 snd_seq_system_client_ev_port_exit(client->number, info->addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return err;
1318}
1319
1320
1321/*
1322 * GET_PORT_INFO ioctl() (on any client)
1323 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001324static int snd_seq_ioctl_get_port_info(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001326 struct snd_seq_port_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001327 struct snd_seq_client *cptr;
1328 struct snd_seq_client_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001330 cptr = snd_seq_client_use_ptr(info->addr.client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (cptr == NULL)
1332 return -ENXIO;
1333
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001334 port = snd_seq_port_use_ptr(cptr, info->addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if (port == NULL) {
1336 snd_seq_client_unlock(cptr);
1337 return -ENOENT; /* don't change */
1338 }
1339
1340 /* get port info */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001341 snd_seq_get_port_info(port, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 snd_seq_port_unlock(port);
1343 snd_seq_client_unlock(cptr);
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return 0;
1346}
1347
1348
1349/*
1350 * SET_PORT_INFO ioctl() (only ports on this/own client)
1351 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001352static int snd_seq_ioctl_set_port_info(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001354 struct snd_seq_port_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001355 struct snd_seq_client_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001357 if (info->addr.client != client->number) /* only set our own ports ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return -EPERM;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001359 port = snd_seq_port_use_ptr(client, info->addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (port) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001361 snd_seq_set_port_info(port, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 snd_seq_port_unlock(port);
1363 }
1364 return 0;
1365}
1366
1367
1368/*
1369 * port subscription (connection)
1370 */
1371#define PERM_RD (SNDRV_SEQ_PORT_CAP_READ|SNDRV_SEQ_PORT_CAP_SUBS_READ)
1372#define PERM_WR (SNDRV_SEQ_PORT_CAP_WRITE|SNDRV_SEQ_PORT_CAP_SUBS_WRITE)
1373
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001374static int check_subscription_permission(struct snd_seq_client *client,
1375 struct snd_seq_client_port *sport,
1376 struct snd_seq_client_port *dport,
1377 struct snd_seq_port_subscribe *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 if (client->number != subs->sender.client &&
1380 client->number != subs->dest.client) {
1381 /* connection by third client - check export permission */
1382 if (check_port_perm(sport, SNDRV_SEQ_PORT_CAP_NO_EXPORT))
1383 return -EPERM;
1384 if (check_port_perm(dport, SNDRV_SEQ_PORT_CAP_NO_EXPORT))
1385 return -EPERM;
1386 }
1387
1388 /* check read permission */
1389 /* if sender or receiver is the subscribing client itself,
1390 * no permission check is necessary
1391 */
1392 if (client->number != subs->sender.client) {
1393 if (! check_port_perm(sport, PERM_RD))
1394 return -EPERM;
1395 }
1396 /* check write permission */
1397 if (client->number != subs->dest.client) {
1398 if (! check_port_perm(dport, PERM_WR))
1399 return -EPERM;
1400 }
1401 return 0;
1402}
1403
1404/*
1405 * send an subscription notify event to user client:
1406 * client must be user client.
1407 */
1408int snd_seq_client_notify_subscription(int client, int port,
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001409 struct snd_seq_port_subscribe *info,
1410 int evtype)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001412 struct snd_seq_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 memset(&event, 0, sizeof(event));
1415 event.type = evtype;
1416 event.data.connect.dest = info->dest;
1417 event.data.connect.sender = info->sender;
1418
1419 return snd_seq_system_notify(client, port, &event); /* non-atomic */
1420}
1421
1422
1423/*
1424 * add to port's subscription list IOCTL interface
1425 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001426static int snd_seq_ioctl_subscribe_port(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001427 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001429 struct snd_seq_port_subscribe *subs = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 int result = -EINVAL;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001431 struct snd_seq_client *receiver = NULL, *sender = NULL;
1432 struct snd_seq_client_port *sport = NULL, *dport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001434 if ((receiver = snd_seq_client_use_ptr(subs->dest.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001436 if ((sender = snd_seq_client_use_ptr(subs->sender.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001438 if ((sport = snd_seq_port_use_ptr(sender, subs->sender.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001440 if ((dport = snd_seq_port_use_ptr(receiver, subs->dest.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 goto __end;
1442
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001443 result = check_subscription_permission(client, sport, dport, subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (result < 0)
1445 goto __end;
1446
1447 /* connect them */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001448 result = snd_seq_port_connect(client, sender, sport, receiver, dport, subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (! result) /* broadcast announce */
1450 snd_seq_client_notify_subscription(SNDRV_SEQ_ADDRESS_SUBSCRIBERS, 0,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001451 subs, SNDRV_SEQ_EVENT_PORT_SUBSCRIBED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 __end:
1453 if (sport)
1454 snd_seq_port_unlock(sport);
1455 if (dport)
1456 snd_seq_port_unlock(dport);
1457 if (sender)
1458 snd_seq_client_unlock(sender);
1459 if (receiver)
1460 snd_seq_client_unlock(receiver);
1461 return result;
1462}
1463
1464
1465/*
1466 * remove from port's subscription list
1467 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001468static int snd_seq_ioctl_unsubscribe_port(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001469 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001471 struct snd_seq_port_subscribe *subs = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 int result = -ENXIO;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001473 struct snd_seq_client *receiver = NULL, *sender = NULL;
1474 struct snd_seq_client_port *sport = NULL, *dport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001476 if ((receiver = snd_seq_client_use_ptr(subs->dest.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001478 if ((sender = snd_seq_client_use_ptr(subs->sender.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001480 if ((sport = snd_seq_port_use_ptr(sender, subs->sender.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001482 if ((dport = snd_seq_port_use_ptr(receiver, subs->dest.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 goto __end;
1484
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001485 result = check_subscription_permission(client, sport, dport, subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (result < 0)
1487 goto __end;
1488
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001489 result = snd_seq_port_disconnect(client, sender, sport, receiver, dport, subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (! result) /* broadcast announce */
1491 snd_seq_client_notify_subscription(SNDRV_SEQ_ADDRESS_SUBSCRIBERS, 0,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001492 subs, SNDRV_SEQ_EVENT_PORT_UNSUBSCRIBED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 __end:
1494 if (sport)
1495 snd_seq_port_unlock(sport);
1496 if (dport)
1497 snd_seq_port_unlock(dport);
1498 if (sender)
1499 snd_seq_client_unlock(sender);
1500 if (receiver)
1501 snd_seq_client_unlock(receiver);
1502 return result;
1503}
1504
1505
1506/* CREATE_QUEUE ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001507static int snd_seq_ioctl_create_queue(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001509 struct snd_seq_queue_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001510 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Daniel Mentzbafb25c2017-08-14 14:46:01 -07001512 q = snd_seq_queue_alloc(client->number, info->locked, info->flags);
1513 if (IS_ERR(q))
1514 return PTR_ERR(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001516 info->queue = q->queue;
1517 info->locked = q->locked;
1518 info->owner = q->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 /* set queue name */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001521 if (!info->name[0])
1522 snprintf(info->name, sizeof(info->name), "Queue-%d", q->queue);
1523 strlcpy(q->name, info->name, sizeof(q->name));
Daniel Mentzbafb25c2017-08-14 14:46:01 -07001524 snd_use_lock_free(&q->use_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 return 0;
1527}
1528
1529/* DELETE_QUEUE ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001530static int snd_seq_ioctl_delete_queue(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001532 struct snd_seq_queue_info *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001534 return snd_seq_queue_delete(client->number, info->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
1537/* GET_QUEUE_INFO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001538static int snd_seq_ioctl_get_queue_info(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001539 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001541 struct snd_seq_queue_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001542 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001544 q = queueptr(info->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if (q == NULL)
1546 return -EINVAL;
1547
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001548 memset(info, 0, sizeof(*info));
1549 info->queue = q->queue;
1550 info->owner = q->owner;
1551 info->locked = q->locked;
1552 strlcpy(info->name, q->name, sizeof(info->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 queuefree(q);
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return 0;
1556}
1557
1558/* SET_QUEUE_INFO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001559static int snd_seq_ioctl_set_queue_info(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001560 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001562 struct snd_seq_queue_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001563 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001565 if (info->owner != client->number)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return -EINVAL;
1567
1568 /* change owner/locked permission */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001569 if (snd_seq_queue_check_access(info->queue, client->number)) {
1570 if (snd_seq_queue_set_owner(info->queue, client->number, info->locked) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return -EPERM;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001572 if (info->locked)
1573 snd_seq_queue_use(info->queue, client->number, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 } else {
1575 return -EPERM;
1576 }
1577
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001578 q = queueptr(info->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (! q)
1580 return -EINVAL;
1581 if (q->owner != client->number) {
1582 queuefree(q);
1583 return -EPERM;
1584 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001585 strlcpy(q->name, info->name, sizeof(q->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 queuefree(q);
1587
1588 return 0;
1589}
1590
1591/* GET_NAMED_QUEUE ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001592static int snd_seq_ioctl_get_named_queue(struct snd_seq_client *client,
1593 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001595 struct snd_seq_queue_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001596 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001598 q = snd_seq_queue_find_name(info->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 if (q == NULL)
1600 return -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001601 info->queue = q->queue;
1602 info->owner = q->owner;
1603 info->locked = q->locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 queuefree(q);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return 0;
1607}
1608
1609/* GET_QUEUE_STATUS ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001610static int snd_seq_ioctl_get_queue_status(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001611 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001613 struct snd_seq_queue_status *status = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001614 struct snd_seq_queue *queue;
1615 struct snd_seq_timer *tmr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001617 queue = queueptr(status->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (queue == NULL)
1619 return -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001620 memset(status, 0, sizeof(*status));
1621 status->queue = queue->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 tmr = queue->timer;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001624 status->events = queue->tickq->cells + queue->timeq->cells;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001626 status->time = snd_seq_timer_get_cur_time(tmr);
1627 status->tick = snd_seq_timer_get_cur_tick(tmr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001629 status->running = tmr->running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001631 status->flags = queue->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 queuefree(queue);
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 return 0;
1635}
1636
1637
1638/* GET_QUEUE_TEMPO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001639static int snd_seq_ioctl_get_queue_tempo(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001640 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001642 struct snd_seq_queue_tempo *tempo = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001643 struct snd_seq_queue *queue;
1644 struct snd_seq_timer *tmr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001646 queue = queueptr(tempo->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (queue == NULL)
1648 return -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001649 memset(tempo, 0, sizeof(*tempo));
1650 tempo->queue = queue->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 tmr = queue->timer;
1653
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001654 tempo->tempo = tmr->tempo;
1655 tempo->ppq = tmr->ppq;
1656 tempo->skew_value = tmr->skew;
1657 tempo->skew_base = tmr->skew_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 queuefree(queue);
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return 0;
1661}
1662
1663
1664/* SET_QUEUE_TEMPO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001665int snd_seq_set_queue_tempo(int client, struct snd_seq_queue_tempo *tempo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
1667 if (!snd_seq_queue_check_access(tempo->queue, client))
1668 return -EPERM;
1669 return snd_seq_queue_timer_set_tempo(tempo->queue, client, tempo);
1670}
1671
Takashi Iwai91715ed2006-04-28 15:13:39 +02001672EXPORT_SYMBOL(snd_seq_set_queue_tempo);
1673
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001674static int snd_seq_ioctl_set_queue_tempo(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001675 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001677 struct snd_seq_queue_tempo *tempo = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001680 result = snd_seq_set_queue_tempo(client->number, tempo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return result < 0 ? result : 0;
1682}
1683
1684
1685/* GET_QUEUE_TIMER ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001686static int snd_seq_ioctl_get_queue_timer(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001687 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001689 struct snd_seq_queue_timer *timer = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001690 struct snd_seq_queue *queue;
1691 struct snd_seq_timer *tmr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001693 queue = queueptr(timer->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (queue == NULL)
1695 return -EINVAL;
1696
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001697 if (mutex_lock_interruptible(&queue->timer_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 queuefree(queue);
1699 return -ERESTARTSYS;
1700 }
1701 tmr = queue->timer;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001702 memset(timer, 0, sizeof(*timer));
1703 timer->queue = queue->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001705 timer->type = tmr->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (tmr->type == SNDRV_SEQ_TIMER_ALSA) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001707 timer->u.alsa.id = tmr->alsa_id;
1708 timer->u.alsa.resolution = tmr->preferred_resolution;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001710 mutex_unlock(&queue->timer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 queuefree(queue);
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return 0;
1714}
1715
1716
1717/* SET_QUEUE_TIMER ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001718static int snd_seq_ioctl_set_queue_timer(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001719 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001721 struct snd_seq_queue_timer *timer = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001724 if (timer->type != SNDRV_SEQ_TIMER_ALSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 return -EINVAL;
1726
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001727 if (snd_seq_queue_check_access(timer->queue, client->number)) {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001728 struct snd_seq_queue *q;
1729 struct snd_seq_timer *tmr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001731 q = queueptr(timer->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (q == NULL)
1733 return -ENXIO;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001734 if (mutex_lock_interruptible(&q->timer_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 queuefree(q);
1736 return -ERESTARTSYS;
1737 }
1738 tmr = q->timer;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001739 snd_seq_queue_timer_close(timer->queue);
1740 tmr->type = timer->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if (tmr->type == SNDRV_SEQ_TIMER_ALSA) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001742 tmr->alsa_id = timer->u.alsa.id;
1743 tmr->preferred_resolution = timer->u.alsa.resolution;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001745 result = snd_seq_queue_timer_open(timer->queue);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001746 mutex_unlock(&q->timer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 queuefree(q);
1748 } else {
1749 return -EPERM;
1750 }
1751
1752 return result;
1753}
1754
1755
1756/* GET_QUEUE_CLIENT ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001757static int snd_seq_ioctl_get_queue_client(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001758 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001760 struct snd_seq_queue_client *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 int used;
1762
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001763 used = snd_seq_queue_is_used(info->queue, client->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (used < 0)
1765 return -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001766 info->used = used;
1767 info->client = client->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return 0;
1770}
1771
1772
1773/* SET_QUEUE_CLIENT ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001774static int snd_seq_ioctl_set_queue_client(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001775 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001777 struct snd_seq_queue_client *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001780 if (info->used >= 0) {
1781 err = snd_seq_queue_use(info->queue, client->number, info->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (err < 0)
1783 return err;
1784 }
1785
1786 return snd_seq_ioctl_get_queue_client(client, arg);
1787}
1788
1789
1790/* GET_CLIENT_POOL ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001791static int snd_seq_ioctl_get_client_pool(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001792 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001794 struct snd_seq_client_pool *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001795 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001797 cptr = snd_seq_client_use_ptr(info->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 if (cptr == NULL)
1799 return -ENOENT;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001800 memset(info, 0, sizeof(*info));
1801 info->client = cptr->number;
1802 info->output_pool = cptr->pool->size;
1803 info->output_room = cptr->pool->room;
1804 info->output_free = info->output_pool;
1805 info->output_free = snd_seq_unused_cells(cptr->pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (cptr->type == USER_CLIENT) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001807 info->input_pool = cptr->data.user.fifo_pool_size;
1808 info->input_free = info->input_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 if (cptr->data.user.fifo)
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001810 info->input_free = snd_seq_unused_cells(cptr->data.user.fifo->pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 } else {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001812 info->input_pool = 0;
1813 info->input_free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815 snd_seq_client_unlock(cptr);
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return 0;
1818}
1819
1820/* SET_CLIENT_POOL ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001821static int snd_seq_ioctl_set_client_pool(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001822 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001824 struct snd_seq_client_pool *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 int rc;
1826
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001827 if (client->number != info->client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return -EINVAL; /* can't change other clients */
1829
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001830 if (info->output_pool >= 1 && info->output_pool <= SNDRV_SEQ_MAX_EVENTS &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 (! snd_seq_write_pool_allocated(client) ||
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001832 info->output_pool != client->pool->size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (snd_seq_write_pool_allocated(client)) {
1834 /* remove all existing cells */
Takashi Iwaica799522017-03-21 13:56:04 +01001835 snd_seq_pool_mark_closing(client->pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 snd_seq_queue_client_leave_cells(client->number);
1837 snd_seq_pool_done(client->pool);
1838 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001839 client->pool->size = info->output_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 rc = snd_seq_pool_init(client->pool);
1841 if (rc < 0)
1842 return rc;
1843 }
1844 if (client->type == USER_CLIENT && client->data.user.fifo != NULL &&
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001845 info->input_pool >= 1 &&
1846 info->input_pool <= SNDRV_SEQ_MAX_CLIENT_EVENTS &&
1847 info->input_pool != client->data.user.fifo_pool_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 /* change pool size */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001849 rc = snd_seq_fifo_resize(client->data.user.fifo, info->input_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 if (rc < 0)
1851 return rc;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001852 client->data.user.fifo_pool_size = info->input_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001854 if (info->output_room >= 1 &&
1855 info->output_room <= client->pool->size) {
1856 client->pool->room = info->output_room;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858
1859 return snd_seq_ioctl_get_client_pool(client, arg);
1860}
1861
1862
1863/* REMOVE_EVENTS ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001864static int snd_seq_ioctl_remove_events(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001865 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001867 struct snd_seq_remove_events *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869 /*
1870 * Input mostly not implemented XXX.
1871 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001872 if (info->remove_mode & SNDRV_SEQ_REMOVE_INPUT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 /*
1874 * No restrictions so for a user client we can clear
1875 * the whole fifo
1876 */
Takashi Iwai030e2c72016-01-12 12:38:02 +01001877 if (client->type == USER_CLIENT && client->data.user.fifo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 snd_seq_fifo_clear(client->data.user.fifo);
1879 }
1880
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001881 if (info->remove_mode & SNDRV_SEQ_REMOVE_OUTPUT)
1882 snd_seq_queue_remove_cells(client->number, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 return 0;
1885}
1886
1887
1888/*
1889 * get subscription info
1890 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001891static int snd_seq_ioctl_get_subscription(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001892 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001894 struct snd_seq_port_subscribe *subs = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 int result;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001896 struct snd_seq_client *sender = NULL;
1897 struct snd_seq_client_port *sport = NULL;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001898 struct snd_seq_subscribers *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 result = -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001901 if ((sender = snd_seq_client_use_ptr(subs->sender.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001903 if ((sport = snd_seq_port_use_ptr(sender, subs->sender.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001905 p = snd_seq_port_get_subscription(&sport->c_src, &subs->dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (p) {
1907 result = 0;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001908 *subs = p->info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 } else
1910 result = -ENOENT;
1911
1912 __end:
1913 if (sport)
1914 snd_seq_port_unlock(sport);
1915 if (sender)
1916 snd_seq_client_unlock(sender);
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return result;
1919}
1920
1921
1922/*
1923 * get subscription info - check only its presence
1924 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001925static int snd_seq_ioctl_query_subs(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001927 struct snd_seq_query_subs *subs = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 int result = -ENXIO;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001929 struct snd_seq_client *cptr = NULL;
1930 struct snd_seq_client_port *port = NULL;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001931 struct snd_seq_port_subs_info *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 struct list_head *p;
1933 int i;
1934
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001935 if ((cptr = snd_seq_client_use_ptr(subs->root.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001937 if ((port = snd_seq_port_use_ptr(cptr, subs->root.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 goto __end;
1939
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001940 switch (subs->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 case SNDRV_SEQ_QUERY_SUBS_READ:
1942 group = &port->c_src;
1943 break;
1944 case SNDRV_SEQ_QUERY_SUBS_WRITE:
1945 group = &port->c_dest;
1946 break;
1947 default:
1948 goto __end;
1949 }
1950
1951 down_read(&group->list_mutex);
1952 /* search for the subscriber */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001953 subs->num_subs = group->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 i = 0;
1955 result = -ENOENT;
1956 list_for_each(p, &group->list_head) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001957 if (i++ == subs->index) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 /* found! */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001959 struct snd_seq_subscribers *s;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001960 if (subs->type == SNDRV_SEQ_QUERY_SUBS_READ) {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001961 s = list_entry(p, struct snd_seq_subscribers, src_list);
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001962 subs->addr = s->info.dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 } else {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001964 s = list_entry(p, struct snd_seq_subscribers, dest_list);
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001965 subs->addr = s->info.sender;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001967 subs->flags = s->info.flags;
1968 subs->queue = s->info.queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 result = 0;
1970 break;
1971 }
1972 }
1973 up_read(&group->list_mutex);
1974
1975 __end:
1976 if (port)
1977 snd_seq_port_unlock(port);
1978 if (cptr)
1979 snd_seq_client_unlock(cptr);
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return result;
1982}
1983
1984
1985/*
1986 * query next client
1987 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001988static int snd_seq_ioctl_query_next_client(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001989 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001991 struct snd_seq_client_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001992 struct snd_seq_client *cptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 /* search for next client */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001995 info->client++;
1996 if (info->client < 0)
1997 info->client = 0;
1998 for (; info->client < SNDRV_SEQ_MAX_CLIENTS; info->client++) {
1999 cptr = snd_seq_client_use_ptr(info->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (cptr)
2001 break; /* found */
2002 }
2003 if (cptr == NULL)
2004 return -ENOENT;
2005
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002006 get_client_info(cptr, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 snd_seq_client_unlock(cptr);
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return 0;
2010}
2011
2012/*
2013 * query next port
2014 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002015static int snd_seq_ioctl_query_next_port(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002016 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002018 struct snd_seq_port_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002019 struct snd_seq_client *cptr;
2020 struct snd_seq_client_port *port = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002022 cptr = snd_seq_client_use_ptr(info->addr.client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 if (cptr == NULL)
2024 return -ENXIO;
2025
2026 /* search for next port */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002027 info->addr.port++;
2028 port = snd_seq_port_query_nearest(cptr, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (port == NULL) {
2030 snd_seq_client_unlock(cptr);
2031 return -ENOENT;
2032 }
2033
2034 /* get port info */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002035 info->addr = port->addr;
2036 snd_seq_get_port_info(port, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 snd_seq_port_unlock(port);
2038 snd_seq_client_unlock(cptr);
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return 0;
2041}
2042
2043/* -------------------------------------------------------- */
2044
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002045static const struct ioctl_handler {
2046 unsigned int cmd;
2047 int (*func)(struct snd_seq_client *client, void *arg);
2048} ioctl_handlers[] = {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002049 { SNDRV_SEQ_IOCTL_PVERSION, snd_seq_ioctl_pversion },
2050 { SNDRV_SEQ_IOCTL_CLIENT_ID, snd_seq_ioctl_client_id },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 { SNDRV_SEQ_IOCTL_SYSTEM_INFO, snd_seq_ioctl_system_info },
2052 { SNDRV_SEQ_IOCTL_RUNNING_MODE, snd_seq_ioctl_running_mode },
2053 { SNDRV_SEQ_IOCTL_GET_CLIENT_INFO, snd_seq_ioctl_get_client_info },
2054 { SNDRV_SEQ_IOCTL_SET_CLIENT_INFO, snd_seq_ioctl_set_client_info },
2055 { SNDRV_SEQ_IOCTL_CREATE_PORT, snd_seq_ioctl_create_port },
2056 { SNDRV_SEQ_IOCTL_DELETE_PORT, snd_seq_ioctl_delete_port },
2057 { SNDRV_SEQ_IOCTL_GET_PORT_INFO, snd_seq_ioctl_get_port_info },
2058 { SNDRV_SEQ_IOCTL_SET_PORT_INFO, snd_seq_ioctl_set_port_info },
2059 { SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT, snd_seq_ioctl_subscribe_port },
2060 { SNDRV_SEQ_IOCTL_UNSUBSCRIBE_PORT, snd_seq_ioctl_unsubscribe_port },
2061 { SNDRV_SEQ_IOCTL_CREATE_QUEUE, snd_seq_ioctl_create_queue },
2062 { SNDRV_SEQ_IOCTL_DELETE_QUEUE, snd_seq_ioctl_delete_queue },
2063 { SNDRV_SEQ_IOCTL_GET_QUEUE_INFO, snd_seq_ioctl_get_queue_info },
2064 { SNDRV_SEQ_IOCTL_SET_QUEUE_INFO, snd_seq_ioctl_set_queue_info },
2065 { SNDRV_SEQ_IOCTL_GET_NAMED_QUEUE, snd_seq_ioctl_get_named_queue },
2066 { SNDRV_SEQ_IOCTL_GET_QUEUE_STATUS, snd_seq_ioctl_get_queue_status },
2067 { SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO, snd_seq_ioctl_get_queue_tempo },
2068 { SNDRV_SEQ_IOCTL_SET_QUEUE_TEMPO, snd_seq_ioctl_set_queue_tempo },
2069 { SNDRV_SEQ_IOCTL_GET_QUEUE_TIMER, snd_seq_ioctl_get_queue_timer },
2070 { SNDRV_SEQ_IOCTL_SET_QUEUE_TIMER, snd_seq_ioctl_set_queue_timer },
2071 { SNDRV_SEQ_IOCTL_GET_QUEUE_CLIENT, snd_seq_ioctl_get_queue_client },
2072 { SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT, snd_seq_ioctl_set_queue_client },
2073 { SNDRV_SEQ_IOCTL_GET_CLIENT_POOL, snd_seq_ioctl_get_client_pool },
2074 { SNDRV_SEQ_IOCTL_SET_CLIENT_POOL, snd_seq_ioctl_set_client_pool },
2075 { SNDRV_SEQ_IOCTL_GET_SUBSCRIPTION, snd_seq_ioctl_get_subscription },
2076 { SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT, snd_seq_ioctl_query_next_client },
2077 { SNDRV_SEQ_IOCTL_QUERY_NEXT_PORT, snd_seq_ioctl_query_next_port },
2078 { SNDRV_SEQ_IOCTL_REMOVE_EVENTS, snd_seq_ioctl_remove_events },
2079 { SNDRV_SEQ_IOCTL_QUERY_SUBS, snd_seq_ioctl_query_subs },
2080 { 0, NULL },
2081};
2082
Takashi Sakamotoe12ec252016-08-13 10:13:36 +09002083static long snd_seq_ioctl(struct file *file, unsigned int cmd,
2084 unsigned long arg)
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002085{
2086 struct snd_seq_client *client = file->private_data;
2087 /* To use kernel stack for ioctl data. */
Takashi Sakamoto4127e802016-08-31 21:02:13 +09002088 union {
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002089 int pversion;
2090 int client_id;
2091 struct snd_seq_system_info system_info;
2092 struct snd_seq_running_info running_info;
2093 struct snd_seq_client_info client_info;
2094 struct snd_seq_port_info port_info;
2095 struct snd_seq_port_subscribe port_subscribe;
2096 struct snd_seq_queue_info queue_info;
2097 struct snd_seq_queue_status queue_status;
2098 struct snd_seq_queue_tempo tempo;
2099 struct snd_seq_queue_timer queue_timer;
2100 struct snd_seq_queue_client queue_client;
2101 struct snd_seq_client_pool client_pool;
2102 struct snd_seq_remove_events remove_events;
2103 struct snd_seq_query_subs query_subs;
Takashi Sakamoto4127e802016-08-31 21:02:13 +09002104 } buf;
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002105 const struct ioctl_handler *handler;
2106 unsigned long size;
2107 int err;
2108
2109 if (snd_BUG_ON(!client))
2110 return -ENXIO;
2111
2112 for (handler = ioctl_handlers; handler->cmd > 0; ++handler) {
2113 if (handler->cmd == cmd)
2114 break;
2115 }
2116 if (handler->cmd == 0)
2117 return -ENOTTY;
Takashi Sakamoto4127e802016-08-31 21:02:13 +09002118
2119 memset(&buf, 0, sizeof(buf));
2120
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002121 /*
2122 * All of ioctl commands for ALSA sequencer get an argument of size
2123 * within 13 bits. We can safely pick up the size from the command.
2124 */
2125 size = _IOC_SIZE(handler->cmd);
Takashi Sakamoto69b05822016-09-13 19:37:53 +09002126 if (handler->cmd & IOC_IN) {
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002127 if (copy_from_user(&buf, (const void __user *)arg, size))
2128 return -EFAULT;
2129 }
2130
Takashi Iwaie4ff9f22018-01-09 23:11:03 +01002131 mutex_lock(&client->ioctl_mutex);
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002132 err = handler->func(client, &buf);
Takashi Iwaie4ff9f22018-01-09 23:11:03 +01002133 mutex_unlock(&client->ioctl_mutex);
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002134 if (err >= 0) {
2135 /* Some commands includes a bug in 'dir' field. */
2136 if (handler->cmd == SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT ||
2137 handler->cmd == SNDRV_SEQ_IOCTL_SET_CLIENT_POOL ||
Takashi Sakamoto69b05822016-09-13 19:37:53 +09002138 (handler->cmd & IOC_OUT))
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002139 if (copy_to_user((void __user *)arg, &buf, size))
2140 return -EFAULT;
2141 }
2142
2143 return err;
2144}
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146#ifdef CONFIG_COMPAT
2147#include "seq_compat.c"
2148#else
2149#define snd_seq_ioctl_compat NULL
2150#endif
2151
2152/* -------------------------------------------------------- */
2153
2154
2155/* exported to kernel modules */
Clemens Ladisch7b6d9242005-12-12 09:33:37 +01002156int snd_seq_create_kernel_client(struct snd_card *card, int client_index,
2157 const char *name_fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002159 struct snd_seq_client *client;
Clemens Ladisch7b6d9242005-12-12 09:33:37 +01002160 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002162 if (snd_BUG_ON(in_interrupt()))
2163 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Clemens Ladischaa1e77e2005-12-12 09:36:01 +01002165 if (card && client_index >= SNDRV_SEQ_CLIENTS_PER_CARD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 return -EINVAL;
Clemens Ladischaa1e77e2005-12-12 09:36:01 +01002167 if (card == NULL && client_index >= SNDRV_SEQ_GLOBAL_CLIENTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002170 if (mutex_lock_interruptible(&register_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 return -ERESTARTSYS;
Clemens Ladischd0015442005-11-20 14:09:05 +01002172
2173 if (card) {
Clemens Ladischaa1e77e2005-12-12 09:36:01 +01002174 client_index += SNDRV_SEQ_GLOBAL_CLIENTS
2175 + card->number * SNDRV_SEQ_CLIENTS_PER_CARD;
2176 if (client_index >= SNDRV_SEQ_DYNAMIC_CLIENTS_BEGIN)
Clemens Ladischd0015442005-11-20 14:09:05 +01002177 client_index = -1;
2178 }
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 /* empty write queue as default */
Clemens Ladischaa1e77e2005-12-12 09:36:01 +01002181 client = seq_create_client1(client_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (client == NULL) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002183 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 return -EBUSY; /* failure code */
2185 }
2186 usage_alloc(&client_usage, 1);
2187
Clemens Ladisch83e8ad62005-12-12 09:30:43 +01002188 client->accept_input = 1;
2189 client->accept_output = 1;
Martin Koeglera1ce94d2016-03-02 19:26:28 +01002190 client->data.kernel.card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Clemens Ladisch7b6d9242005-12-12 09:33:37 +01002192 va_start(args, name_fmt);
2193 vsnprintf(client->name, sizeof(client->name), name_fmt, args);
2194 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 client->type = KERNEL_CLIENT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002197 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 /* make others aware this new client */
2200 snd_seq_system_client_ev_client_start(client->number);
2201
2202 /* return client number to caller */
2203 return client->number;
2204}
2205
Takashi Iwai91715ed2006-04-28 15:13:39 +02002206EXPORT_SYMBOL(snd_seq_create_kernel_client);
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208/* exported to kernel modules */
2209int snd_seq_delete_kernel_client(int client)
2210{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002211 struct snd_seq_client *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002213 if (snd_BUG_ON(in_interrupt()))
2214 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 ptr = clientptr(client);
2217 if (ptr == NULL)
2218 return -EINVAL;
2219
2220 seq_free_client(ptr);
2221 kfree(ptr);
2222 return 0;
2223}
2224
Takashi Iwai91715ed2006-04-28 15:13:39 +02002225EXPORT_SYMBOL(snd_seq_delete_kernel_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227/* skeleton to enqueue event, called from snd_seq_kernel_client_enqueue
2228 * and snd_seq_kernel_client_enqueue_blocking
2229 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002230static int kernel_client_enqueue(int client, struct snd_seq_event *ev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 struct file *file, int blocking,
2232 int atomic, int hop)
2233{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002234 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 int result;
2236
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002237 if (snd_BUG_ON(!ev))
2238 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 if (ev->type == SNDRV_SEQ_EVENT_NONE)
2241 return 0; /* ignore this */
2242 if (ev->type == SNDRV_SEQ_EVENT_KERNEL_ERROR)
2243 return -EINVAL; /* quoted events can't be enqueued */
2244
2245 /* fill in client number */
2246 ev->source.client = client;
2247
2248 if (check_event_type_and_length(ev))
2249 return -EINVAL;
2250
2251 cptr = snd_seq_client_use_ptr(client);
2252 if (cptr == NULL)
2253 return -EINVAL;
2254
2255 if (! cptr->accept_output)
2256 result = -EPERM;
2257 else /* send it */
2258 result = snd_seq_client_enqueue_event(cptr, ev, file, blocking, atomic, hop);
2259
2260 snd_seq_client_unlock(cptr);
2261 return result;
2262}
2263
2264/*
2265 * exported, called by kernel clients to enqueue events (w/o blocking)
2266 *
2267 * RETURN VALUE: zero if succeed, negative if error
2268 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002269int snd_seq_kernel_client_enqueue(int client, struct snd_seq_event * ev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 int atomic, int hop)
2271{
2272 return kernel_client_enqueue(client, ev, NULL, 0, atomic, hop);
2273}
2274
Takashi Iwai91715ed2006-04-28 15:13:39 +02002275EXPORT_SYMBOL(snd_seq_kernel_client_enqueue);
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277/*
2278 * exported, called by kernel clients to enqueue events (with blocking)
2279 *
2280 * RETURN VALUE: zero if succeed, negative if error
2281 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002282int snd_seq_kernel_client_enqueue_blocking(int client, struct snd_seq_event * ev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 struct file *file,
2284 int atomic, int hop)
2285{
2286 return kernel_client_enqueue(client, ev, file, 1, atomic, hop);
2287}
2288
Takashi Iwai91715ed2006-04-28 15:13:39 +02002289EXPORT_SYMBOL(snd_seq_kernel_client_enqueue_blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291/*
2292 * exported, called by kernel clients to dispatch events directly to other
2293 * clients, bypassing the queues. Event time-stamp will be updated.
2294 *
2295 * RETURN VALUE: negative = delivery failed,
2296 * zero, or positive: the number of delivered events
2297 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002298int snd_seq_kernel_client_dispatch(int client, struct snd_seq_event * ev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 int atomic, int hop)
2300{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002301 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 int result;
2303
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002304 if (snd_BUG_ON(!ev))
2305 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 /* fill in client number */
2308 ev->queue = SNDRV_SEQ_QUEUE_DIRECT;
2309 ev->source.client = client;
2310
2311 if (check_event_type_and_length(ev))
2312 return -EINVAL;
2313
2314 cptr = snd_seq_client_use_ptr(client);
2315 if (cptr == NULL)
2316 return -EINVAL;
2317
2318 if (!cptr->accept_output)
2319 result = -EPERM;
2320 else
2321 result = snd_seq_deliver_event(cptr, ev, atomic, hop);
2322
2323 snd_seq_client_unlock(cptr);
2324 return result;
2325}
2326
Takashi Iwai91715ed2006-04-28 15:13:39 +02002327EXPORT_SYMBOL(snd_seq_kernel_client_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Takashi Sakamoto77dfa8d2016-08-13 10:13:33 +09002329/**
2330 * snd_seq_kernel_client_ctl - operate a command for a client with data in
2331 * kernel space.
2332 * @clientid: A numerical ID for a client.
2333 * @cmd: An ioctl(2) command for ALSA sequencer operation.
2334 * @arg: A pointer to data in kernel space.
2335 *
2336 * Against its name, both kernel/application client can be handled by this
2337 * kernel API. A pointer of 'arg' argument should be in kernel space.
2338 *
2339 * Return: 0 at success. Negative error code at failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 */
2341int snd_seq_kernel_client_ctl(int clientid, unsigned int cmd, void *arg)
2342{
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002343 const struct ioctl_handler *handler;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002344 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 client = clientptr(clientid);
2347 if (client == NULL)
2348 return -ENXIO;
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002349
2350 for (handler = ioctl_handlers; handler->cmd > 0; ++handler) {
2351 if (handler->cmd == cmd)
2352 return handler->func(client, arg);
2353 }
2354
Takashi Sakamotoe12ec252016-08-13 10:13:36 +09002355 pr_debug("ALSA: seq unknown ioctl() 0x%x (type='%c', number=0x%02x)\n",
2356 cmd, _IOC_TYPE(cmd), _IOC_NR(cmd));
2357 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
Takashi Iwai91715ed2006-04-28 15:13:39 +02002360EXPORT_SYMBOL(snd_seq_kernel_client_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362/* exported (for OSS emulator) */
2363int snd_seq_kernel_client_write_poll(int clientid, struct file *file, poll_table *wait)
2364{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002365 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 client = clientptr(clientid);
2368 if (client == NULL)
2369 return -ENXIO;
2370
2371 if (! snd_seq_write_pool_allocated(client))
2372 return 1;
2373 if (snd_seq_pool_poll_wait(client->pool, file, wait))
2374 return 1;
2375 return 0;
2376}
2377
Takashi Iwai91715ed2006-04-28 15:13:39 +02002378EXPORT_SYMBOL(snd_seq_kernel_client_write_poll);
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380/*---------------------------------------------------------------------------*/
2381
Jie Yangcd6a6502015-05-27 19:45:45 +08002382#ifdef CONFIG_SND_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383/*
2384 * /proc interface
2385 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002386static void snd_seq_info_dump_subscribers(struct snd_info_buffer *buffer,
2387 struct snd_seq_port_subs_info *group,
2388 int is_src, char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
2390 struct list_head *p;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002391 struct snd_seq_subscribers *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 int count = 0;
2393
2394 down_read(&group->list_mutex);
2395 if (list_empty(&group->list_head)) {
2396 up_read(&group->list_mutex);
2397 return;
2398 }
2399 snd_iprintf(buffer, msg);
2400 list_for_each(p, &group->list_head) {
2401 if (is_src)
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002402 s = list_entry(p, struct snd_seq_subscribers, src_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 else
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002404 s = list_entry(p, struct snd_seq_subscribers, dest_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 if (count++)
2406 snd_iprintf(buffer, ", ");
2407 snd_iprintf(buffer, "%d:%d",
2408 is_src ? s->info.dest.client : s->info.sender.client,
2409 is_src ? s->info.dest.port : s->info.sender.port);
2410 if (s->info.flags & SNDRV_SEQ_PORT_SUBS_TIMESTAMP)
2411 snd_iprintf(buffer, "[%c:%d]", ((s->info.flags & SNDRV_SEQ_PORT_SUBS_TIME_REAL) ? 'r' : 't'), s->info.queue);
2412 if (group->exclusive)
2413 snd_iprintf(buffer, "[ex]");
2414 }
2415 up_read(&group->list_mutex);
2416 snd_iprintf(buffer, "\n");
2417}
2418
2419#define FLAG_PERM_RD(perm) ((perm) & SNDRV_SEQ_PORT_CAP_READ ? ((perm) & SNDRV_SEQ_PORT_CAP_SUBS_READ ? 'R' : 'r') : '-')
2420#define FLAG_PERM_WR(perm) ((perm) & SNDRV_SEQ_PORT_CAP_WRITE ? ((perm) & SNDRV_SEQ_PORT_CAP_SUBS_WRITE ? 'W' : 'w') : '-')
2421#define FLAG_PERM_EX(perm) ((perm) & SNDRV_SEQ_PORT_CAP_NO_EXPORT ? '-' : 'e')
2422
2423#define FLAG_PERM_DUPLEX(perm) ((perm) & SNDRV_SEQ_PORT_CAP_DUPLEX ? 'X' : '-')
2424
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002425static void snd_seq_info_dump_ports(struct snd_info_buffer *buffer,
2426 struct snd_seq_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
Johannes Berg9244b2c2006-10-05 16:02:22 +02002428 struct snd_seq_client_port *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002430 mutex_lock(&client->ports_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02002431 list_for_each_entry(p, &client->ports_list_head, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 snd_iprintf(buffer, " Port %3d : \"%s\" (%c%c%c%c)\n",
2433 p->addr.port, p->name,
2434 FLAG_PERM_RD(p->capability),
2435 FLAG_PERM_WR(p->capability),
2436 FLAG_PERM_EX(p->capability),
2437 FLAG_PERM_DUPLEX(p->capability));
2438 snd_seq_info_dump_subscribers(buffer, &p->c_src, 1, " Connecting To: ");
2439 snd_seq_info_dump_subscribers(buffer, &p->c_dest, 0, " Connected From: ");
2440 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002441 mutex_unlock(&client->ports_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
2443
2444
2445/* exported to seq_info.c */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002446void snd_seq_info_clients_read(struct snd_info_entry *entry,
2447 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 int c;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002450 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 snd_iprintf(buffer, "Client info\n");
2453 snd_iprintf(buffer, " cur clients : %d\n", client_usage.cur);
2454 snd_iprintf(buffer, " peak clients : %d\n", client_usage.peak);
2455 snd_iprintf(buffer, " max clients : %d\n", SNDRV_SEQ_MAX_CLIENTS);
2456 snd_iprintf(buffer, "\n");
2457
2458 /* list the client table */
2459 for (c = 0; c < SNDRV_SEQ_MAX_CLIENTS; c++) {
2460 client = snd_seq_client_use_ptr(c);
2461 if (client == NULL)
2462 continue;
2463 if (client->type == NO_CLIENT) {
2464 snd_seq_client_unlock(client);
2465 continue;
2466 }
2467
2468 snd_iprintf(buffer, "Client %3d : \"%s\" [%s]\n",
2469 c, client->name,
2470 client->type == USER_CLIENT ? "User" : "Kernel");
2471 snd_seq_info_dump_ports(buffer, client);
2472 if (snd_seq_write_pool_allocated(client)) {
2473 snd_iprintf(buffer, " Output pool :\n");
2474 snd_seq_info_pool(buffer, client->pool, " ");
2475 }
2476 if (client->type == USER_CLIENT && client->data.user.fifo &&
2477 client->data.user.fifo->pool) {
2478 snd_iprintf(buffer, " Input pool :\n");
2479 snd_seq_info_pool(buffer, client->data.user.fifo->pool, " ");
2480 }
2481 snd_seq_client_unlock(client);
2482 }
2483}
Jie Yangcd6a6502015-05-27 19:45:45 +08002484#endif /* CONFIG_SND_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486/*---------------------------------------------------------------------------*/
2487
2488
2489/*
2490 * REGISTRATION PART
2491 */
2492
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08002493static const struct file_operations snd_seq_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
2495 .owner = THIS_MODULE,
2496 .read = snd_seq_read,
2497 .write = snd_seq_write,
2498 .open = snd_seq_open,
2499 .release = snd_seq_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02002500 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 .poll = snd_seq_poll,
2502 .unlocked_ioctl = snd_seq_ioctl,
2503 .compat_ioctl = snd_seq_ioctl_compat,
2504};
2505
Takashi Iwai52053882015-01-30 08:04:21 +01002506static struct device seq_dev;
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508/*
2509 * register sequencer device
2510 */
2511int __init snd_sequencer_device_init(void)
2512{
2513 int err;
2514
Takashi Iwai52053882015-01-30 08:04:21 +01002515 snd_device_initialize(&seq_dev, NULL);
2516 dev_set_name(&seq_dev, "seq");
2517
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002518 if (mutex_lock_interruptible(&register_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 return -ERESTARTSYS;
2520
Takashi Iwai40a4b262015-01-30 08:34:58 +01002521 err = snd_register_device(SNDRV_DEVICE_TYPE_SEQUENCER, NULL, 0,
2522 &snd_seq_f_ops, NULL, &seq_dev);
Takashi Iwai52053882015-01-30 08:04:21 +01002523 if (err < 0) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002524 mutex_unlock(&register_mutex);
Takashi Iwai52053882015-01-30 08:04:21 +01002525 put_device(&seq_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 return err;
2527 }
2528
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002529 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531 return 0;
2532}
2533
2534
2535
2536/*
2537 * unregister sequencer device
2538 */
2539void __exit snd_sequencer_device_done(void)
2540{
Takashi Iwai40a4b262015-01-30 08:34:58 +01002541 snd_unregister_device(&seq_dev);
Takashi Iwai52053882015-01-30 08:04:21 +01002542 put_device(&seq_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543}