blob: 130e22742137a61923ad723e131e387bb312756a [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 spin_lock_irqsave(&clients_lock, flags);
259 clienttablock[client->number] = 1;
260 clienttab[client->number] = NULL;
261 spin_unlock_irqrestore(&clients_lock, flags);
Takashi Iwaic706def2018-03-09 22:23:31 +0100262 snd_seq_delete_all_ports(client);
263 snd_seq_queue_client_leave(client->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 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,
Takashi Iwaiec001162018-03-05 22:06:09 +0100909 int atomic, int hop,
910 struct mutex *mutexp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100912 struct snd_seq_event_cell *cell;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 int err;
914
915 /* special queue values - force direct passing */
916 if (event->queue == SNDRV_SEQ_ADDRESS_SUBSCRIBERS) {
917 event->dest.client = SNDRV_SEQ_ADDRESS_SUBSCRIBERS;
918 event->queue = SNDRV_SEQ_QUEUE_DIRECT;
919 } else
920#ifdef SUPPORT_BROADCAST
921 if (event->queue == SNDRV_SEQ_ADDRESS_BROADCAST) {
922 event->dest.client = SNDRV_SEQ_ADDRESS_BROADCAST;
923 event->queue = SNDRV_SEQ_QUEUE_DIRECT;
924 }
925#endif
926 if (event->dest.client == SNDRV_SEQ_ADDRESS_SUBSCRIBERS) {
927 /* check presence of source port */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100928 struct snd_seq_client_port *src_port = snd_seq_port_use_ptr(client, event->source.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (src_port == NULL)
930 return -EINVAL;
931 snd_seq_port_unlock(src_port);
932 }
933
934 /* direct event processing without enqueued */
935 if (snd_seq_ev_is_direct(event)) {
936 if (event->type == SNDRV_SEQ_EVENT_NOTE)
937 return -EINVAL; /* this event must be enqueued! */
938 return snd_seq_deliver_event(client, event, atomic, hop);
939 }
940
941 /* Not direct, normal queuing */
942 if (snd_seq_queue_is_used(event->queue, client->number) <= 0)
943 return -EINVAL; /* invalid queue */
944 if (! snd_seq_write_pool_allocated(client))
945 return -ENXIO; /* queue is not allocated */
946
947 /* allocate an event cell */
Takashi Iwaiec001162018-03-05 22:06:09 +0100948 err = snd_seq_event_dup(client->pool, event, &cell, !blocking || atomic,
949 file, mutexp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (err < 0)
951 return err;
952
953 /* we got a cell. enqueue it. */
954 if ((err = snd_seq_enqueue_event(cell, atomic, hop)) < 0) {
955 snd_seq_cell_free(cell);
956 return err;
957 }
958
959 return 0;
960}
961
962
963/*
964 * check validity of event type and data length.
965 * return non-zero if invalid.
966 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100967static int check_event_type_and_length(struct snd_seq_event *ev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 switch (snd_seq_ev_length_type(ev)) {
970 case SNDRV_SEQ_EVENT_LENGTH_FIXED:
971 if (snd_seq_ev_is_variable_type(ev))
972 return -EINVAL;
973 break;
974 case SNDRV_SEQ_EVENT_LENGTH_VARIABLE:
975 if (! snd_seq_ev_is_variable_type(ev) ||
976 (ev->data.ext.len & ~SNDRV_SEQ_EXT_MASK) >= SNDRV_SEQ_MAX_EVENT_LEN)
977 return -EINVAL;
978 break;
979 case SNDRV_SEQ_EVENT_LENGTH_VARUSR:
Takashi Iwaie5723b42007-10-30 12:17:17 +0100980 if (! snd_seq_ev_is_direct(ev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return -EINVAL;
982 break;
983 }
984 return 0;
985}
986
987
988/* handle write() */
989/* possible error values:
990 * -ENXIO invalid client or file open mode
991 * -ENOMEM malloc failed
992 * -EFAULT seg. fault during copy from user space
993 * -EINVAL invalid event
994 * -EAGAIN no space in output pool
995 * -EINTR interrupts while sleep
996 * -EMLINK too many hops
997 * others depends on return value from driver callback
998 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +0100999static ssize_t snd_seq_write(struct file *file, const char __user *buf,
1000 size_t count, loff_t *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001002 struct snd_seq_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 int written = 0, len;
Takashi Iwai3dd2b242019-07-15 22:50:27 +02001004 int err, handled;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001005 struct snd_seq_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 if (!(snd_seq_file_flags(file) & SNDRV_SEQ_LFLG_OUTPUT))
1008 return -ENXIO;
1009
1010 /* check client structures are in place */
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001011 if (snd_BUG_ON(!client))
1012 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 if (!client->accept_output || client->pool == NULL)
1015 return -ENXIO;
1016
Takashi Iwai3dd2b242019-07-15 22:50:27 +02001017 repeat:
1018 handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 /* allocate the pool now if the pool is not allocated yet */
Takashi Iwaiec001162018-03-05 22:06:09 +01001020 mutex_lock(&client->ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (client->pool->size > 0 && !snd_seq_write_pool_allocated(client)) {
Takashi Iwai869182f2018-02-12 15:20:51 +01001022 err = snd_seq_pool_init(client->pool);
Takashi Iwai869182f2018-02-12 15:20:51 +01001023 if (err < 0)
Takashi Iwaiec001162018-03-05 22:06:09 +01001024 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 }
1026
1027 /* only process whole events */
Takashi Iwai869182f2018-02-12 15:20:51 +01001028 err = -EINVAL;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001029 while (count >= sizeof(struct snd_seq_event)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 /* Read in the event header from the user */
1031 len = sizeof(event);
1032 if (copy_from_user(&event, buf, len)) {
1033 err = -EFAULT;
1034 break;
1035 }
1036 event.source.client = client->number; /* fill in client number */
1037 /* Check for extension data length */
1038 if (check_event_type_and_length(&event)) {
1039 err = -EINVAL;
1040 break;
1041 }
1042
1043 /* check for special events */
1044 if (event.type == SNDRV_SEQ_EVENT_NONE)
1045 goto __skip_event;
1046 else if (snd_seq_ev_is_reserved(&event)) {
1047 err = -EINVAL;
1048 break;
1049 }
1050
1051 if (snd_seq_ev_is_variable(&event)) {
1052 int extlen = event.data.ext.len & ~SNDRV_SEQ_EXT_MASK;
1053 if ((size_t)(extlen + len) > count) {
1054 /* back out, will get an error this time or next */
1055 err = -EINVAL;
1056 break;
1057 }
1058 /* set user space pointer */
1059 event.data.ext.len = extlen | SNDRV_SEQ_EXT_USRPTR;
Clemens Ladisch4d233592005-09-05 10:35:20 +02001060 event.data.ext.ptr = (char __force *)buf
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001061 + sizeof(struct snd_seq_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 len += extlen; /* increment data length */
1063 } else {
1064#ifdef CONFIG_COMPAT
1065 if (client->convert32 && snd_seq_ev_is_varusr(&event)) {
Clemens Ladischfea952e2011-02-14 11:00:47 +01001066 void *ptr = (void __force *)compat_ptr(event.data.raw32.d[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 event.data.ext.ptr = ptr;
1068 }
1069#endif
1070 }
1071
1072 /* ok, enqueue it */
1073 err = snd_seq_client_enqueue_event(client, &event, file,
1074 !(file->f_flags & O_NONBLOCK),
Takashi Iwaiec001162018-03-05 22:06:09 +01001075 0, 0, &client->ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (err < 0)
1077 break;
Takashi Iwai3dd2b242019-07-15 22:50:27 +02001078 handled++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 __skip_event:
1081 /* Update pointers and counts */
1082 count -= len;
1083 buf += len;
1084 written += len;
Takashi Iwai3dd2b242019-07-15 22:50:27 +02001085
1086 /* let's have a coffee break if too many events are queued */
1087 if (++handled >= 200) {
1088 mutex_unlock(&client->ioctl_mutex);
1089 goto repeat;
1090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092
Takashi Iwaiec001162018-03-05 22:06:09 +01001093 out:
1094 mutex_unlock(&client->ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return written ? written : err;
1096}
1097
1098
1099/*
1100 * handle polling
1101 */
1102static unsigned int snd_seq_poll(struct file *file, poll_table * wait)
1103{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001104 struct snd_seq_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 unsigned int mask = 0;
1106
1107 /* check client structures are in place */
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001108 if (snd_BUG_ON(!client))
1109 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 if ((snd_seq_file_flags(file) & SNDRV_SEQ_LFLG_INPUT) &&
1112 client->data.user.fifo) {
1113
1114 /* check if data is available in the outqueue */
1115 if (snd_seq_fifo_poll_wait(client->data.user.fifo, file, wait))
1116 mask |= POLLIN | POLLRDNORM;
1117 }
1118
1119 if (snd_seq_file_flags(file) & SNDRV_SEQ_LFLG_OUTPUT) {
1120
1121 /* check if data is available in the pool */
1122 if (!snd_seq_write_pool_allocated(client) ||
1123 snd_seq_pool_poll_wait(client->pool, file, wait))
1124 mask |= POLLOUT | POLLWRNORM;
1125 }
1126
1127 return mask;
1128}
1129
1130
1131/*-----------------------------------------------------*/
1132
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001133static int snd_seq_ioctl_pversion(struct snd_seq_client *client, void *arg)
1134{
1135 int *pversion = arg;
1136
1137 *pversion = SNDRV_SEQ_VERSION;
1138 return 0;
1139}
1140
1141static int snd_seq_ioctl_client_id(struct snd_seq_client *client, void *arg)
1142{
1143 int *client_id = arg;
1144
1145 *client_id = client->number;
1146 return 0;
1147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149/* SYSTEM_INFO ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001150static int snd_seq_ioctl_system_info(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001152 struct snd_seq_system_info *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001154 memset(info, 0, sizeof(*info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 /* fill the info fields */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001156 info->queues = SNDRV_SEQ_MAX_QUEUES;
1157 info->clients = SNDRV_SEQ_MAX_CLIENTS;
1158 info->ports = SNDRV_SEQ_MAX_PORTS;
1159 info->channels = 256; /* fixed limit */
1160 info->cur_clients = client_usage.cur;
1161 info->cur_queues = snd_seq_queue_get_cur_queues();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 return 0;
1164}
1165
1166
1167/* RUNNING_MODE ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001168static int snd_seq_ioctl_running_mode(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001170 struct snd_seq_running_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001171 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 int err = 0;
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 /* requested client number */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001175 cptr = snd_seq_client_use_ptr(info->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (cptr == NULL)
1177 return -ENOENT; /* don't change !!! */
1178
1179#ifdef SNDRV_BIG_ENDIAN
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001180 if (!info->big_endian) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 err = -EINVAL;
1182 goto __err;
1183 }
1184#else
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001185 if (info->big_endian) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 err = -EINVAL;
1187 goto __err;
1188 }
1189
1190#endif
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001191 if (info->cpu_mode > sizeof(long)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 err = -EINVAL;
1193 goto __err;
1194 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001195 cptr->convert32 = (info->cpu_mode < sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 __err:
1197 snd_seq_client_unlock(cptr);
1198 return err;
1199}
1200
1201/* CLIENT_INFO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001202static void get_client_info(struct snd_seq_client *cptr,
1203 struct snd_seq_client_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
1205 info->client = cptr->number;
1206
1207 /* fill the info fields */
1208 info->type = cptr->type;
1209 strcpy(info->name, cptr->name);
1210 info->filter = cptr->filter;
1211 info->event_lost = cptr->event_lost;
1212 memcpy(info->event_filter, cptr->event_filter, 32);
1213 info->num_ports = cptr->num_ports;
Martin Koeglera1ce94d2016-03-02 19:26:28 +01001214
1215 if (cptr->type == USER_CLIENT)
1216 info->pid = pid_vnr(cptr->data.user.owner);
1217 else
1218 info->pid = -1;
1219
1220 if (cptr->type == KERNEL_CLIENT)
1221 info->card = cptr->data.kernel.card ? cptr->data.kernel.card->number : -1;
1222 else
1223 info->card = -1;
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 memset(info->reserved, 0, sizeof(info->reserved));
1226}
1227
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001228static int snd_seq_ioctl_get_client_info(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001229 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001231 struct snd_seq_client_info *client_info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001232 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 /* requested client number */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001235 cptr = snd_seq_client_use_ptr(client_info->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (cptr == NULL)
1237 return -ENOENT; /* don't change !!! */
1238
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001239 get_client_info(cptr, client_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 snd_seq_client_unlock(cptr);
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return 0;
1243}
1244
1245
1246/* CLIENT_INFO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001247static int snd_seq_ioctl_set_client_info(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001248 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001250 struct snd_seq_client_info *client_info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 /* it is not allowed to set the info fields for an another client */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001253 if (client->number != client_info->client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return -EPERM;
1255 /* also client type must be set now */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001256 if (client->type != client_info->type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return -EINVAL;
1258
1259 /* fill the info fields */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001260 if (client_info->name[0])
Zubin Mithrac35bf962019-04-04 14:33:55 -07001261 strscpy(client->name, client_info->name, sizeof(client->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001263 client->filter = client_info->filter;
1264 client->event_lost = client_info->event_lost;
1265 memcpy(client->event_filter, client_info->event_filter, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 return 0;
1268}
1269
1270
1271/*
1272 * CREATE PORT ioctl()
1273 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001274static int snd_seq_ioctl_create_port(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001276 struct snd_seq_port_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001277 struct snd_seq_client_port *port;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001278 struct snd_seq_port_callback *callback;
Takashi Iwai35b84862017-10-09 11:09:20 +02001279 int port_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 /* it is not allowed to create the port for an another client */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001282 if (info->addr.client != client->number)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return -EPERM;
1284
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001285 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 -07001286 if (port == NULL)
1287 return -ENOMEM;
1288
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001289 if (client->type == USER_CLIENT && info->kernel) {
Takashi Iwai35b84862017-10-09 11:09:20 +02001290 port_idx = port->addr.port;
1291 snd_seq_port_unlock(port);
1292 snd_seq_delete_port(client, port_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return -EINVAL;
1294 }
1295 if (client->type == KERNEL_CLIENT) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001296 if ((callback = info->kernel) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (callback->owner)
1298 port->owner = callback->owner;
1299 port->private_data = callback->private_data;
1300 port->private_free = callback->private_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 port->event_input = callback->event_input;
1302 port->c_src.open = callback->subscribe;
1303 port->c_src.close = callback->unsubscribe;
1304 port->c_dest.open = callback->use;
1305 port->c_dest.close = callback->unuse;
1306 }
1307 }
1308
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001309 info->addr = port->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001311 snd_seq_set_port_info(port, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 snd_seq_system_client_ev_port_start(port->addr.client, port->addr.port);
Takashi Iwai35b84862017-10-09 11:09:20 +02001313 snd_seq_port_unlock(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return 0;
1316}
1317
1318/*
1319 * DELETE PORT ioctl()
1320 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001321static int snd_seq_ioctl_delete_port(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001323 struct snd_seq_port_info *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 int err;
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /* it is not allowed to remove the port for an another client */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001327 if (info->addr.client != client->number)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return -EPERM;
1329
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001330 err = snd_seq_delete_port(client, info->addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (err >= 0)
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001332 snd_seq_system_client_ev_port_exit(client->number, info->addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return err;
1334}
1335
1336
1337/*
1338 * GET_PORT_INFO ioctl() (on any client)
1339 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001340static int snd_seq_ioctl_get_port_info(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001342 struct snd_seq_port_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001343 struct snd_seq_client *cptr;
1344 struct snd_seq_client_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001346 cptr = snd_seq_client_use_ptr(info->addr.client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (cptr == NULL)
1348 return -ENXIO;
1349
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001350 port = snd_seq_port_use_ptr(cptr, info->addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 if (port == NULL) {
1352 snd_seq_client_unlock(cptr);
1353 return -ENOENT; /* don't change */
1354 }
1355
1356 /* get port info */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001357 snd_seq_get_port_info(port, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 snd_seq_port_unlock(port);
1359 snd_seq_client_unlock(cptr);
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return 0;
1362}
1363
1364
1365/*
1366 * SET_PORT_INFO ioctl() (only ports on this/own client)
1367 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001368static int snd_seq_ioctl_set_port_info(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001370 struct snd_seq_port_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001371 struct snd_seq_client_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001373 if (info->addr.client != client->number) /* only set our own ports ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 return -EPERM;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001375 port = snd_seq_port_use_ptr(client, info->addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (port) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001377 snd_seq_set_port_info(port, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 snd_seq_port_unlock(port);
1379 }
1380 return 0;
1381}
1382
1383
1384/*
1385 * port subscription (connection)
1386 */
1387#define PERM_RD (SNDRV_SEQ_PORT_CAP_READ|SNDRV_SEQ_PORT_CAP_SUBS_READ)
1388#define PERM_WR (SNDRV_SEQ_PORT_CAP_WRITE|SNDRV_SEQ_PORT_CAP_SUBS_WRITE)
1389
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001390static int check_subscription_permission(struct snd_seq_client *client,
1391 struct snd_seq_client_port *sport,
1392 struct snd_seq_client_port *dport,
1393 struct snd_seq_port_subscribe *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 if (client->number != subs->sender.client &&
1396 client->number != subs->dest.client) {
1397 /* connection by third client - check export permission */
1398 if (check_port_perm(sport, SNDRV_SEQ_PORT_CAP_NO_EXPORT))
1399 return -EPERM;
1400 if (check_port_perm(dport, SNDRV_SEQ_PORT_CAP_NO_EXPORT))
1401 return -EPERM;
1402 }
1403
1404 /* check read permission */
1405 /* if sender or receiver is the subscribing client itself,
1406 * no permission check is necessary
1407 */
1408 if (client->number != subs->sender.client) {
1409 if (! check_port_perm(sport, PERM_RD))
1410 return -EPERM;
1411 }
1412 /* check write permission */
1413 if (client->number != subs->dest.client) {
1414 if (! check_port_perm(dport, PERM_WR))
1415 return -EPERM;
1416 }
1417 return 0;
1418}
1419
1420/*
1421 * send an subscription notify event to user client:
1422 * client must be user client.
1423 */
1424int snd_seq_client_notify_subscription(int client, int port,
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001425 struct snd_seq_port_subscribe *info,
1426 int evtype)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001428 struct snd_seq_event event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 memset(&event, 0, sizeof(event));
1431 event.type = evtype;
1432 event.data.connect.dest = info->dest;
1433 event.data.connect.sender = info->sender;
1434
1435 return snd_seq_system_notify(client, port, &event); /* non-atomic */
1436}
1437
1438
1439/*
1440 * add to port's subscription list IOCTL interface
1441 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001442static int snd_seq_ioctl_subscribe_port(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001443 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001445 struct snd_seq_port_subscribe *subs = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 int result = -EINVAL;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001447 struct snd_seq_client *receiver = NULL, *sender = NULL;
1448 struct snd_seq_client_port *sport = NULL, *dport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001450 if ((receiver = snd_seq_client_use_ptr(subs->dest.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001452 if ((sender = snd_seq_client_use_ptr(subs->sender.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001454 if ((sport = snd_seq_port_use_ptr(sender, subs->sender.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001456 if ((dport = snd_seq_port_use_ptr(receiver, subs->dest.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 goto __end;
1458
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001459 result = check_subscription_permission(client, sport, dport, subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (result < 0)
1461 goto __end;
1462
1463 /* connect them */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001464 result = snd_seq_port_connect(client, sender, sport, receiver, dport, subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (! result) /* broadcast announce */
1466 snd_seq_client_notify_subscription(SNDRV_SEQ_ADDRESS_SUBSCRIBERS, 0,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001467 subs, SNDRV_SEQ_EVENT_PORT_SUBSCRIBED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 __end:
1469 if (sport)
1470 snd_seq_port_unlock(sport);
1471 if (dport)
1472 snd_seq_port_unlock(dport);
1473 if (sender)
1474 snd_seq_client_unlock(sender);
1475 if (receiver)
1476 snd_seq_client_unlock(receiver);
1477 return result;
1478}
1479
1480
1481/*
1482 * remove from port's subscription list
1483 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001484static int snd_seq_ioctl_unsubscribe_port(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001485 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001487 struct snd_seq_port_subscribe *subs = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 int result = -ENXIO;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001489 struct snd_seq_client *receiver = NULL, *sender = NULL;
1490 struct snd_seq_client_port *sport = NULL, *dport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001492 if ((receiver = snd_seq_client_use_ptr(subs->dest.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001494 if ((sender = snd_seq_client_use_ptr(subs->sender.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001496 if ((sport = snd_seq_port_use_ptr(sender, subs->sender.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001498 if ((dport = snd_seq_port_use_ptr(receiver, subs->dest.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 goto __end;
1500
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001501 result = check_subscription_permission(client, sport, dport, subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (result < 0)
1503 goto __end;
1504
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001505 result = snd_seq_port_disconnect(client, sender, sport, receiver, dport, subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (! result) /* broadcast announce */
1507 snd_seq_client_notify_subscription(SNDRV_SEQ_ADDRESS_SUBSCRIBERS, 0,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001508 subs, SNDRV_SEQ_EVENT_PORT_UNSUBSCRIBED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 __end:
1510 if (sport)
1511 snd_seq_port_unlock(sport);
1512 if (dport)
1513 snd_seq_port_unlock(dport);
1514 if (sender)
1515 snd_seq_client_unlock(sender);
1516 if (receiver)
1517 snd_seq_client_unlock(receiver);
1518 return result;
1519}
1520
1521
1522/* CREATE_QUEUE ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001523static int snd_seq_ioctl_create_queue(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001525 struct snd_seq_queue_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001526 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Daniel Mentzbafb25c2017-08-14 14:46:01 -07001528 q = snd_seq_queue_alloc(client->number, info->locked, info->flags);
1529 if (IS_ERR(q))
1530 return PTR_ERR(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001532 info->queue = q->queue;
1533 info->locked = q->locked;
1534 info->owner = q->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 /* set queue name */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001537 if (!info->name[0])
1538 snprintf(info->name, sizeof(info->name), "Queue-%d", q->queue);
Zubin Mithrac35bf962019-04-04 14:33:55 -07001539 strscpy(q->name, info->name, sizeof(q->name));
Daniel Mentzbafb25c2017-08-14 14:46:01 -07001540 snd_use_lock_free(&q->use_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return 0;
1543}
1544
1545/* DELETE_QUEUE ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001546static int snd_seq_ioctl_delete_queue(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001548 struct snd_seq_queue_info *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001550 return snd_seq_queue_delete(client->number, info->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552
1553/* GET_QUEUE_INFO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001554static int snd_seq_ioctl_get_queue_info(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001555 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001557 struct snd_seq_queue_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001558 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001560 q = queueptr(info->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (q == NULL)
1562 return -EINVAL;
1563
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001564 memset(info, 0, sizeof(*info));
1565 info->queue = q->queue;
1566 info->owner = q->owner;
1567 info->locked = q->locked;
1568 strlcpy(info->name, q->name, sizeof(info->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 queuefree(q);
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return 0;
1572}
1573
1574/* SET_QUEUE_INFO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001575static int snd_seq_ioctl_set_queue_info(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001576 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001578 struct snd_seq_queue_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001579 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001581 if (info->owner != client->number)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 return -EINVAL;
1583
1584 /* change owner/locked permission */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001585 if (snd_seq_queue_check_access(info->queue, client->number)) {
1586 if (snd_seq_queue_set_owner(info->queue, client->number, info->locked) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return -EPERM;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001588 if (info->locked)
1589 snd_seq_queue_use(info->queue, client->number, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 } else {
1591 return -EPERM;
1592 }
1593
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001594 q = queueptr(info->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (! q)
1596 return -EINVAL;
1597 if (q->owner != client->number) {
1598 queuefree(q);
1599 return -EPERM;
1600 }
Zubin Mithrac35bf962019-04-04 14:33:55 -07001601 strscpy(q->name, info->name, sizeof(q->name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 queuefree(q);
1603
1604 return 0;
1605}
1606
1607/* GET_NAMED_QUEUE ioctl() */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001608static int snd_seq_ioctl_get_named_queue(struct snd_seq_client *client,
1609 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001611 struct snd_seq_queue_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001612 struct snd_seq_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001614 q = snd_seq_queue_find_name(info->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (q == NULL)
1616 return -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001617 info->queue = q->queue;
1618 info->owner = q->owner;
1619 info->locked = q->locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 queuefree(q);
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return 0;
1623}
1624
1625/* GET_QUEUE_STATUS ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001626static int snd_seq_ioctl_get_queue_status(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001627 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001629 struct snd_seq_queue_status *status = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001630 struct snd_seq_queue *queue;
1631 struct snd_seq_timer *tmr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001633 queue = queueptr(status->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (queue == NULL)
1635 return -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001636 memset(status, 0, sizeof(*status));
1637 status->queue = queue->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 tmr = queue->timer;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001640 status->events = queue->tickq->cells + queue->timeq->cells;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001642 status->time = snd_seq_timer_get_cur_time(tmr);
1643 status->tick = snd_seq_timer_get_cur_tick(tmr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001645 status->running = tmr->running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001647 status->flags = queue->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 queuefree(queue);
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 return 0;
1651}
1652
1653
1654/* GET_QUEUE_TEMPO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001655static int snd_seq_ioctl_get_queue_tempo(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001656 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001658 struct snd_seq_queue_tempo *tempo = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001659 struct snd_seq_queue *queue;
1660 struct snd_seq_timer *tmr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001662 queue = queueptr(tempo->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (queue == NULL)
1664 return -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001665 memset(tempo, 0, sizeof(*tempo));
1666 tempo->queue = queue->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 tmr = queue->timer;
1669
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001670 tempo->tempo = tmr->tempo;
1671 tempo->ppq = tmr->ppq;
1672 tempo->skew_value = tmr->skew;
1673 tempo->skew_base = tmr->skew_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 queuefree(queue);
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return 0;
1677}
1678
1679
1680/* SET_QUEUE_TEMPO ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001681int snd_seq_set_queue_tempo(int client, struct snd_seq_queue_tempo *tempo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
1683 if (!snd_seq_queue_check_access(tempo->queue, client))
1684 return -EPERM;
1685 return snd_seq_queue_timer_set_tempo(tempo->queue, client, tempo);
1686}
1687
Takashi Iwai91715ed2006-04-28 15:13:39 +02001688EXPORT_SYMBOL(snd_seq_set_queue_tempo);
1689
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001690static int snd_seq_ioctl_set_queue_tempo(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001691 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001693 struct snd_seq_queue_tempo *tempo = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001696 result = snd_seq_set_queue_tempo(client->number, tempo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return result < 0 ? result : 0;
1698}
1699
1700
1701/* GET_QUEUE_TIMER ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001702static int snd_seq_ioctl_get_queue_timer(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001703 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001705 struct snd_seq_queue_timer *timer = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001706 struct snd_seq_queue *queue;
1707 struct snd_seq_timer *tmr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001709 queue = queueptr(timer->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 if (queue == NULL)
1711 return -EINVAL;
1712
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001713 if (mutex_lock_interruptible(&queue->timer_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 queuefree(queue);
1715 return -ERESTARTSYS;
1716 }
1717 tmr = queue->timer;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001718 memset(timer, 0, sizeof(*timer));
1719 timer->queue = queue->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001721 timer->type = tmr->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (tmr->type == SNDRV_SEQ_TIMER_ALSA) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001723 timer->u.alsa.id = tmr->alsa_id;
1724 timer->u.alsa.resolution = tmr->preferred_resolution;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001726 mutex_unlock(&queue->timer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 queuefree(queue);
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return 0;
1730}
1731
1732
1733/* SET_QUEUE_TIMER ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001734static int snd_seq_ioctl_set_queue_timer(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001735 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001737 struct snd_seq_queue_timer *timer = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001740 if (timer->type != SNDRV_SEQ_TIMER_ALSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return -EINVAL;
1742
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001743 if (snd_seq_queue_check_access(timer->queue, client->number)) {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001744 struct snd_seq_queue *q;
1745 struct snd_seq_timer *tmr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001747 q = queueptr(timer->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (q == NULL)
1749 return -ENXIO;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001750 if (mutex_lock_interruptible(&q->timer_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 queuefree(q);
1752 return -ERESTARTSYS;
1753 }
1754 tmr = q->timer;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001755 snd_seq_queue_timer_close(timer->queue);
1756 tmr->type = timer->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (tmr->type == SNDRV_SEQ_TIMER_ALSA) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001758 tmr->alsa_id = timer->u.alsa.id;
1759 tmr->preferred_resolution = timer->u.alsa.resolution;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001761 result = snd_seq_queue_timer_open(timer->queue);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01001762 mutex_unlock(&q->timer_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 queuefree(q);
1764 } else {
1765 return -EPERM;
1766 }
1767
1768 return result;
1769}
1770
1771
1772/* GET_QUEUE_CLIENT ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001773static int snd_seq_ioctl_get_queue_client(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001774 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001776 struct snd_seq_queue_client *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 int used;
1778
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001779 used = snd_seq_queue_is_used(info->queue, client->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (used < 0)
1781 return -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001782 info->used = used;
1783 info->client = client->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return 0;
1786}
1787
1788
1789/* SET_QUEUE_CLIENT ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001790static int snd_seq_ioctl_set_queue_client(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001791 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001793 struct snd_seq_queue_client *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001796 if (info->used >= 0) {
1797 err = snd_seq_queue_use(info->queue, client->number, info->used);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 if (err < 0)
1799 return err;
1800 }
1801
1802 return snd_seq_ioctl_get_queue_client(client, arg);
1803}
1804
1805
1806/* GET_CLIENT_POOL ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001807static int snd_seq_ioctl_get_client_pool(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001808 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001810 struct snd_seq_client_pool *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001811 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001813 cptr = snd_seq_client_use_ptr(info->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (cptr == NULL)
1815 return -ENOENT;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001816 memset(info, 0, sizeof(*info));
1817 info->client = cptr->number;
1818 info->output_pool = cptr->pool->size;
1819 info->output_room = cptr->pool->room;
1820 info->output_free = info->output_pool;
1821 info->output_free = snd_seq_unused_cells(cptr->pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (cptr->type == USER_CLIENT) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001823 info->input_pool = cptr->data.user.fifo_pool_size;
1824 info->input_free = info->input_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (cptr->data.user.fifo)
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001826 info->input_free = snd_seq_unused_cells(cptr->data.user.fifo->pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 } else {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001828 info->input_pool = 0;
1829 info->input_free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
1831 snd_seq_client_unlock(cptr);
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return 0;
1834}
1835
1836/* SET_CLIENT_POOL ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001837static int snd_seq_ioctl_set_client_pool(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001838 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001840 struct snd_seq_client_pool *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 int rc;
1842
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001843 if (client->number != info->client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return -EINVAL; /* can't change other clients */
1845
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001846 if (info->output_pool >= 1 && info->output_pool <= SNDRV_SEQ_MAX_EVENTS &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 (! snd_seq_write_pool_allocated(client) ||
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001848 info->output_pool != client->pool->size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 if (snd_seq_write_pool_allocated(client)) {
Takashi Iwai0d7252d32018-03-05 22:00:55 +01001850 /* is the pool in use? */
1851 if (atomic_read(&client->pool->counter))
1852 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 /* remove all existing cells */
Takashi Iwaica799522017-03-21 13:56:04 +01001854 snd_seq_pool_mark_closing(client->pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 snd_seq_queue_client_leave_cells(client->number);
1856 snd_seq_pool_done(client->pool);
1857 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001858 client->pool->size = info->output_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 rc = snd_seq_pool_init(client->pool);
1860 if (rc < 0)
1861 return rc;
1862 }
1863 if (client->type == USER_CLIENT && client->data.user.fifo != NULL &&
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001864 info->input_pool >= 1 &&
1865 info->input_pool <= SNDRV_SEQ_MAX_CLIENT_EVENTS &&
1866 info->input_pool != client->data.user.fifo_pool_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* change pool size */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001868 rc = snd_seq_fifo_resize(client->data.user.fifo, info->input_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 if (rc < 0)
1870 return rc;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001871 client->data.user.fifo_pool_size = info->input_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001873 if (info->output_room >= 1 &&
1874 info->output_room <= client->pool->size) {
1875 client->pool->room = info->output_room;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877
1878 return snd_seq_ioctl_get_client_pool(client, arg);
1879}
1880
1881
1882/* REMOVE_EVENTS ioctl() */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001883static int snd_seq_ioctl_remove_events(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001884 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001886 struct snd_seq_remove_events *info = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888 /*
1889 * Input mostly not implemented XXX.
1890 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001891 if (info->remove_mode & SNDRV_SEQ_REMOVE_INPUT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 /*
1893 * No restrictions so for a user client we can clear
1894 * the whole fifo
1895 */
Takashi Iwai030e2c72016-01-12 12:38:02 +01001896 if (client->type == USER_CLIENT && client->data.user.fifo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 snd_seq_fifo_clear(client->data.user.fifo);
1898 }
1899
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001900 if (info->remove_mode & SNDRV_SEQ_REMOVE_OUTPUT)
1901 snd_seq_queue_remove_cells(client->number, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 return 0;
1904}
1905
1906
1907/*
1908 * get subscription info
1909 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001910static int snd_seq_ioctl_get_subscription(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001911 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001913 struct snd_seq_port_subscribe *subs = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 int result;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001915 struct snd_seq_client *sender = NULL;
1916 struct snd_seq_client_port *sport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 result = -EINVAL;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001919 if ((sender = snd_seq_client_use_ptr(subs->sender.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001921 if ((sport = snd_seq_port_use_ptr(sender, subs->sender.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 goto __end;
Takashi Iwai8763ac72019-04-09 18:04:17 +02001923 result = snd_seq_port_get_subscription(&sport->c_src, &subs->dest,
1924 subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 __end:
1926 if (sport)
1927 snd_seq_port_unlock(sport);
1928 if (sender)
1929 snd_seq_client_unlock(sender);
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 return result;
1932}
1933
1934
1935/*
1936 * get subscription info - check only its presence
1937 */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001938static int snd_seq_ioctl_query_subs(struct snd_seq_client *client, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001940 struct snd_seq_query_subs *subs = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 int result = -ENXIO;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001942 struct snd_seq_client *cptr = NULL;
1943 struct snd_seq_client_port *port = NULL;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001944 struct snd_seq_port_subs_info *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 struct list_head *p;
1946 int i;
1947
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001948 if ((cptr = snd_seq_client_use_ptr(subs->root.client)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 goto __end;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001950 if ((port = snd_seq_port_use_ptr(cptr, subs->root.port)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 goto __end;
1952
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001953 switch (subs->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 case SNDRV_SEQ_QUERY_SUBS_READ:
1955 group = &port->c_src;
1956 break;
1957 case SNDRV_SEQ_QUERY_SUBS_WRITE:
1958 group = &port->c_dest;
1959 break;
1960 default:
1961 goto __end;
1962 }
1963
1964 down_read(&group->list_mutex);
1965 /* search for the subscriber */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001966 subs->num_subs = group->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 i = 0;
1968 result = -ENOENT;
1969 list_for_each(p, &group->list_head) {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001970 if (i++ == subs->index) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 /* found! */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001972 struct snd_seq_subscribers *s;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001973 if (subs->type == SNDRV_SEQ_QUERY_SUBS_READ) {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001974 s = list_entry(p, struct snd_seq_subscribers, src_list);
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001975 subs->addr = s->info.dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 } else {
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01001977 s = list_entry(p, struct snd_seq_subscribers, dest_list);
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001978 subs->addr = s->info.sender;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001980 subs->flags = s->info.flags;
1981 subs->queue = s->info.queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 result = 0;
1983 break;
1984 }
1985 }
1986 up_read(&group->list_mutex);
1987
1988 __end:
1989 if (port)
1990 snd_seq_port_unlock(port);
1991 if (cptr)
1992 snd_seq_client_unlock(cptr);
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09001993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return result;
1995}
1996
1997
1998/*
1999 * query next client
2000 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002001static int snd_seq_ioctl_query_next_client(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002002 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002004 struct snd_seq_client_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002005 struct snd_seq_client *cptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 /* search for next client */
Takashi Iwai2f483f92018-06-25 11:13:59 +02002008 if (info->client < INT_MAX)
2009 info->client++;
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002010 if (info->client < 0)
2011 info->client = 0;
2012 for (; info->client < SNDRV_SEQ_MAX_CLIENTS; info->client++) {
2013 cptr = snd_seq_client_use_ptr(info->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (cptr)
2015 break; /* found */
2016 }
2017 if (cptr == NULL)
2018 return -ENOENT;
2019
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002020 get_client_info(cptr, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 snd_seq_client_unlock(cptr);
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return 0;
2024}
2025
2026/*
2027 * query next port
2028 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002029static int snd_seq_ioctl_query_next_port(struct snd_seq_client *client,
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002030 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002032 struct snd_seq_port_info *info = arg;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002033 struct snd_seq_client *cptr;
2034 struct snd_seq_client_port *port = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002036 cptr = snd_seq_client_use_ptr(info->addr.client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (cptr == NULL)
2038 return -ENXIO;
2039
2040 /* search for next port */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002041 info->addr.port++;
2042 port = snd_seq_port_query_nearest(cptr, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (port == NULL) {
2044 snd_seq_client_unlock(cptr);
2045 return -ENOENT;
2046 }
2047
2048 /* get port info */
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002049 info->addr = port->addr;
2050 snd_seq_get_port_info(port, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 snd_seq_port_unlock(port);
2052 snd_seq_client_unlock(cptr);
2053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 return 0;
2055}
2056
2057/* -------------------------------------------------------- */
2058
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002059static const struct ioctl_handler {
2060 unsigned int cmd;
2061 int (*func)(struct snd_seq_client *client, void *arg);
2062} ioctl_handlers[] = {
Takashi Sakamoto04a56dd2016-08-13 10:13:35 +09002063 { SNDRV_SEQ_IOCTL_PVERSION, snd_seq_ioctl_pversion },
2064 { SNDRV_SEQ_IOCTL_CLIENT_ID, snd_seq_ioctl_client_id },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 { SNDRV_SEQ_IOCTL_SYSTEM_INFO, snd_seq_ioctl_system_info },
2066 { SNDRV_SEQ_IOCTL_RUNNING_MODE, snd_seq_ioctl_running_mode },
2067 { SNDRV_SEQ_IOCTL_GET_CLIENT_INFO, snd_seq_ioctl_get_client_info },
2068 { SNDRV_SEQ_IOCTL_SET_CLIENT_INFO, snd_seq_ioctl_set_client_info },
2069 { SNDRV_SEQ_IOCTL_CREATE_PORT, snd_seq_ioctl_create_port },
2070 { SNDRV_SEQ_IOCTL_DELETE_PORT, snd_seq_ioctl_delete_port },
2071 { SNDRV_SEQ_IOCTL_GET_PORT_INFO, snd_seq_ioctl_get_port_info },
2072 { SNDRV_SEQ_IOCTL_SET_PORT_INFO, snd_seq_ioctl_set_port_info },
2073 { SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT, snd_seq_ioctl_subscribe_port },
2074 { SNDRV_SEQ_IOCTL_UNSUBSCRIBE_PORT, snd_seq_ioctl_unsubscribe_port },
2075 { SNDRV_SEQ_IOCTL_CREATE_QUEUE, snd_seq_ioctl_create_queue },
2076 { SNDRV_SEQ_IOCTL_DELETE_QUEUE, snd_seq_ioctl_delete_queue },
2077 { SNDRV_SEQ_IOCTL_GET_QUEUE_INFO, snd_seq_ioctl_get_queue_info },
2078 { SNDRV_SEQ_IOCTL_SET_QUEUE_INFO, snd_seq_ioctl_set_queue_info },
2079 { SNDRV_SEQ_IOCTL_GET_NAMED_QUEUE, snd_seq_ioctl_get_named_queue },
2080 { SNDRV_SEQ_IOCTL_GET_QUEUE_STATUS, snd_seq_ioctl_get_queue_status },
2081 { SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO, snd_seq_ioctl_get_queue_tempo },
2082 { SNDRV_SEQ_IOCTL_SET_QUEUE_TEMPO, snd_seq_ioctl_set_queue_tempo },
2083 { SNDRV_SEQ_IOCTL_GET_QUEUE_TIMER, snd_seq_ioctl_get_queue_timer },
2084 { SNDRV_SEQ_IOCTL_SET_QUEUE_TIMER, snd_seq_ioctl_set_queue_timer },
2085 { SNDRV_SEQ_IOCTL_GET_QUEUE_CLIENT, snd_seq_ioctl_get_queue_client },
2086 { SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT, snd_seq_ioctl_set_queue_client },
2087 { SNDRV_SEQ_IOCTL_GET_CLIENT_POOL, snd_seq_ioctl_get_client_pool },
2088 { SNDRV_SEQ_IOCTL_SET_CLIENT_POOL, snd_seq_ioctl_set_client_pool },
2089 { SNDRV_SEQ_IOCTL_GET_SUBSCRIPTION, snd_seq_ioctl_get_subscription },
2090 { SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT, snd_seq_ioctl_query_next_client },
2091 { SNDRV_SEQ_IOCTL_QUERY_NEXT_PORT, snd_seq_ioctl_query_next_port },
2092 { SNDRV_SEQ_IOCTL_REMOVE_EVENTS, snd_seq_ioctl_remove_events },
2093 { SNDRV_SEQ_IOCTL_QUERY_SUBS, snd_seq_ioctl_query_subs },
2094 { 0, NULL },
2095};
2096
Takashi Sakamotoe12ec252016-08-13 10:13:36 +09002097static long snd_seq_ioctl(struct file *file, unsigned int cmd,
2098 unsigned long arg)
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002099{
2100 struct snd_seq_client *client = file->private_data;
2101 /* To use kernel stack for ioctl data. */
Takashi Sakamoto4127e802016-08-31 21:02:13 +09002102 union {
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002103 int pversion;
2104 int client_id;
2105 struct snd_seq_system_info system_info;
2106 struct snd_seq_running_info running_info;
2107 struct snd_seq_client_info client_info;
2108 struct snd_seq_port_info port_info;
2109 struct snd_seq_port_subscribe port_subscribe;
2110 struct snd_seq_queue_info queue_info;
2111 struct snd_seq_queue_status queue_status;
2112 struct snd_seq_queue_tempo tempo;
2113 struct snd_seq_queue_timer queue_timer;
2114 struct snd_seq_queue_client queue_client;
2115 struct snd_seq_client_pool client_pool;
2116 struct snd_seq_remove_events remove_events;
2117 struct snd_seq_query_subs query_subs;
Takashi Sakamoto4127e802016-08-31 21:02:13 +09002118 } buf;
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002119 const struct ioctl_handler *handler;
2120 unsigned long size;
2121 int err;
2122
2123 if (snd_BUG_ON(!client))
2124 return -ENXIO;
2125
2126 for (handler = ioctl_handlers; handler->cmd > 0; ++handler) {
2127 if (handler->cmd == cmd)
2128 break;
2129 }
2130 if (handler->cmd == 0)
2131 return -ENOTTY;
Takashi Sakamoto4127e802016-08-31 21:02:13 +09002132
2133 memset(&buf, 0, sizeof(buf));
2134
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002135 /*
2136 * All of ioctl commands for ALSA sequencer get an argument of size
2137 * within 13 bits. We can safely pick up the size from the command.
2138 */
2139 size = _IOC_SIZE(handler->cmd);
Takashi Sakamoto69b05822016-09-13 19:37:53 +09002140 if (handler->cmd & IOC_IN) {
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002141 if (copy_from_user(&buf, (const void __user *)arg, size))
2142 return -EFAULT;
2143 }
2144
Takashi Iwaie4ff9f22018-01-09 23:11:03 +01002145 mutex_lock(&client->ioctl_mutex);
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002146 err = handler->func(client, &buf);
Takashi Iwaie4ff9f22018-01-09 23:11:03 +01002147 mutex_unlock(&client->ioctl_mutex);
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002148 if (err >= 0) {
2149 /* Some commands includes a bug in 'dir' field. */
2150 if (handler->cmd == SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT ||
2151 handler->cmd == SNDRV_SEQ_IOCTL_SET_CLIENT_POOL ||
Takashi Sakamoto69b05822016-09-13 19:37:53 +09002152 (handler->cmd & IOC_OUT))
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002153 if (copy_to_user((void __user *)arg, &buf, size))
2154 return -EFAULT;
2155 }
2156
2157 return err;
2158}
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160#ifdef CONFIG_COMPAT
2161#include "seq_compat.c"
2162#else
2163#define snd_seq_ioctl_compat NULL
2164#endif
2165
2166/* -------------------------------------------------------- */
2167
2168
2169/* exported to kernel modules */
Clemens Ladisch7b6d9242005-12-12 09:33:37 +01002170int snd_seq_create_kernel_client(struct snd_card *card, int client_index,
2171 const char *name_fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002173 struct snd_seq_client *client;
Clemens Ladisch7b6d9242005-12-12 09:33:37 +01002174 va_list args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002176 if (snd_BUG_ON(in_interrupt()))
2177 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Clemens Ladischaa1e77e2005-12-12 09:36:01 +01002179 if (card && client_index >= SNDRV_SEQ_CLIENTS_PER_CARD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 return -EINVAL;
Clemens Ladischaa1e77e2005-12-12 09:36:01 +01002181 if (card == NULL && client_index >= SNDRV_SEQ_GLOBAL_CLIENTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002184 if (mutex_lock_interruptible(&register_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return -ERESTARTSYS;
Clemens Ladischd0015442005-11-20 14:09:05 +01002186
2187 if (card) {
Clemens Ladischaa1e77e2005-12-12 09:36:01 +01002188 client_index += SNDRV_SEQ_GLOBAL_CLIENTS
2189 + card->number * SNDRV_SEQ_CLIENTS_PER_CARD;
2190 if (client_index >= SNDRV_SEQ_DYNAMIC_CLIENTS_BEGIN)
Clemens Ladischd0015442005-11-20 14:09:05 +01002191 client_index = -1;
2192 }
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 /* empty write queue as default */
Clemens Ladischaa1e77e2005-12-12 09:36:01 +01002195 client = seq_create_client1(client_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 if (client == NULL) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002197 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 return -EBUSY; /* failure code */
2199 }
2200 usage_alloc(&client_usage, 1);
2201
Clemens Ladisch83e8ad62005-12-12 09:30:43 +01002202 client->accept_input = 1;
2203 client->accept_output = 1;
Martin Koeglera1ce94d2016-03-02 19:26:28 +01002204 client->data.kernel.card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Clemens Ladisch7b6d9242005-12-12 09:33:37 +01002206 va_start(args, name_fmt);
2207 vsnprintf(client->name, sizeof(client->name), name_fmt, args);
2208 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 client->type = KERNEL_CLIENT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002211 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 /* make others aware this new client */
2214 snd_seq_system_client_ev_client_start(client->number);
2215
2216 /* return client number to caller */
2217 return client->number;
2218}
2219
Takashi Iwai91715ed2006-04-28 15:13:39 +02002220EXPORT_SYMBOL(snd_seq_create_kernel_client);
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222/* exported to kernel modules */
2223int snd_seq_delete_kernel_client(int client)
2224{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002225 struct snd_seq_client *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002227 if (snd_BUG_ON(in_interrupt()))
2228 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 ptr = clientptr(client);
2231 if (ptr == NULL)
2232 return -EINVAL;
2233
2234 seq_free_client(ptr);
2235 kfree(ptr);
2236 return 0;
2237}
2238
Takashi Iwai91715ed2006-04-28 15:13:39 +02002239EXPORT_SYMBOL(snd_seq_delete_kernel_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241/* skeleton to enqueue event, called from snd_seq_kernel_client_enqueue
2242 * and snd_seq_kernel_client_enqueue_blocking
2243 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002244static int kernel_client_enqueue(int client, struct snd_seq_event *ev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 struct file *file, int blocking,
2246 int atomic, int hop)
2247{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002248 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 int result;
2250
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002251 if (snd_BUG_ON(!ev))
2252 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254 if (ev->type == SNDRV_SEQ_EVENT_NONE)
2255 return 0; /* ignore this */
2256 if (ev->type == SNDRV_SEQ_EVENT_KERNEL_ERROR)
2257 return -EINVAL; /* quoted events can't be enqueued */
2258
2259 /* fill in client number */
2260 ev->source.client = client;
2261
2262 if (check_event_type_and_length(ev))
2263 return -EINVAL;
2264
2265 cptr = snd_seq_client_use_ptr(client);
2266 if (cptr == NULL)
2267 return -EINVAL;
2268
2269 if (! cptr->accept_output)
2270 result = -EPERM;
2271 else /* send it */
Takashi Iwaiec001162018-03-05 22:06:09 +01002272 result = snd_seq_client_enqueue_event(cptr, ev, file, blocking,
2273 atomic, hop, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 snd_seq_client_unlock(cptr);
2276 return result;
2277}
2278
2279/*
2280 * exported, called by kernel clients to enqueue events (w/o blocking)
2281 *
2282 * RETURN VALUE: zero if succeed, negative if error
2283 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002284int snd_seq_kernel_client_enqueue(int client, struct snd_seq_event * ev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 int atomic, int hop)
2286{
2287 return kernel_client_enqueue(client, ev, NULL, 0, atomic, hop);
2288}
2289
Takashi Iwai91715ed2006-04-28 15:13:39 +02002290EXPORT_SYMBOL(snd_seq_kernel_client_enqueue);
2291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292/*
2293 * exported, called by kernel clients to enqueue events (with blocking)
2294 *
2295 * RETURN VALUE: zero if succeed, negative if error
2296 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002297int snd_seq_kernel_client_enqueue_blocking(int client, struct snd_seq_event * ev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 struct file *file,
2299 int atomic, int hop)
2300{
2301 return kernel_client_enqueue(client, ev, file, 1, atomic, hop);
2302}
2303
Takashi Iwai91715ed2006-04-28 15:13:39 +02002304EXPORT_SYMBOL(snd_seq_kernel_client_enqueue_blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306/*
2307 * exported, called by kernel clients to dispatch events directly to other
2308 * clients, bypassing the queues. Event time-stamp will be updated.
2309 *
2310 * RETURN VALUE: negative = delivery failed,
2311 * zero, or positive: the number of delivered events
2312 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002313int snd_seq_kernel_client_dispatch(int client, struct snd_seq_event * ev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 int atomic, int hop)
2315{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002316 struct snd_seq_client *cptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 int result;
2318
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002319 if (snd_BUG_ON(!ev))
2320 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 /* fill in client number */
2323 ev->queue = SNDRV_SEQ_QUEUE_DIRECT;
2324 ev->source.client = client;
2325
2326 if (check_event_type_and_length(ev))
2327 return -EINVAL;
2328
2329 cptr = snd_seq_client_use_ptr(client);
2330 if (cptr == NULL)
2331 return -EINVAL;
2332
2333 if (!cptr->accept_output)
2334 result = -EPERM;
2335 else
2336 result = snd_seq_deliver_event(cptr, ev, atomic, hop);
2337
2338 snd_seq_client_unlock(cptr);
2339 return result;
2340}
2341
Takashi Iwai91715ed2006-04-28 15:13:39 +02002342EXPORT_SYMBOL(snd_seq_kernel_client_dispatch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Takashi Sakamoto77dfa8d2016-08-13 10:13:33 +09002344/**
2345 * snd_seq_kernel_client_ctl - operate a command for a client with data in
2346 * kernel space.
2347 * @clientid: A numerical ID for a client.
2348 * @cmd: An ioctl(2) command for ALSA sequencer operation.
2349 * @arg: A pointer to data in kernel space.
2350 *
2351 * Against its name, both kernel/application client can be handled by this
2352 * kernel API. A pointer of 'arg' argument should be in kernel space.
2353 *
2354 * Return: 0 at success. Negative error code at failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 */
2356int snd_seq_kernel_client_ctl(int clientid, unsigned int cmd, void *arg)
2357{
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002358 const struct ioctl_handler *handler;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002359 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 client = clientptr(clientid);
2362 if (client == NULL)
2363 return -ENXIO;
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002364
2365 for (handler = ioctl_handlers; handler->cmd > 0; ++handler) {
Takashi Iwai881a09f2019-04-11 19:58:32 +02002366 if (handler->cmd == cmd)
2367 return handler->func(client, arg);
Takashi Sakamoto8ce8eb62016-08-13 10:13:34 +09002368 }
2369
Takashi Sakamotoe12ec252016-08-13 10:13:36 +09002370 pr_debug("ALSA: seq unknown ioctl() 0x%x (type='%c', number=0x%02x)\n",
2371 cmd, _IOC_TYPE(cmd), _IOC_NR(cmd));
2372 return -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373}
2374
Takashi Iwai91715ed2006-04-28 15:13:39 +02002375EXPORT_SYMBOL(snd_seq_kernel_client_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377/* exported (for OSS emulator) */
2378int snd_seq_kernel_client_write_poll(int clientid, struct file *file, poll_table *wait)
2379{
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002380 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382 client = clientptr(clientid);
2383 if (client == NULL)
2384 return -ENXIO;
2385
2386 if (! snd_seq_write_pool_allocated(client))
2387 return 1;
2388 if (snd_seq_pool_poll_wait(client->pool, file, wait))
2389 return 1;
2390 return 0;
2391}
2392
Takashi Iwai91715ed2006-04-28 15:13:39 +02002393EXPORT_SYMBOL(snd_seq_kernel_client_write_poll);
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395/*---------------------------------------------------------------------------*/
2396
Jie Yangcd6a6502015-05-27 19:45:45 +08002397#ifdef CONFIG_SND_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398/*
2399 * /proc interface
2400 */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002401static void snd_seq_info_dump_subscribers(struct snd_info_buffer *buffer,
2402 struct snd_seq_port_subs_info *group,
2403 int is_src, char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
2405 struct list_head *p;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002406 struct snd_seq_subscribers *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 int count = 0;
2408
2409 down_read(&group->list_mutex);
2410 if (list_empty(&group->list_head)) {
2411 up_read(&group->list_mutex);
2412 return;
2413 }
2414 snd_iprintf(buffer, msg);
2415 list_for_each(p, &group->list_head) {
2416 if (is_src)
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002417 s = list_entry(p, struct snd_seq_subscribers, src_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 else
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002419 s = list_entry(p, struct snd_seq_subscribers, dest_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 if (count++)
2421 snd_iprintf(buffer, ", ");
2422 snd_iprintf(buffer, "%d:%d",
2423 is_src ? s->info.dest.client : s->info.sender.client,
2424 is_src ? s->info.dest.port : s->info.sender.port);
2425 if (s->info.flags & SNDRV_SEQ_PORT_SUBS_TIMESTAMP)
2426 snd_iprintf(buffer, "[%c:%d]", ((s->info.flags & SNDRV_SEQ_PORT_SUBS_TIME_REAL) ? 'r' : 't'), s->info.queue);
2427 if (group->exclusive)
2428 snd_iprintf(buffer, "[ex]");
2429 }
2430 up_read(&group->list_mutex);
2431 snd_iprintf(buffer, "\n");
2432}
2433
2434#define FLAG_PERM_RD(perm) ((perm) & SNDRV_SEQ_PORT_CAP_READ ? ((perm) & SNDRV_SEQ_PORT_CAP_SUBS_READ ? 'R' : 'r') : '-')
2435#define FLAG_PERM_WR(perm) ((perm) & SNDRV_SEQ_PORT_CAP_WRITE ? ((perm) & SNDRV_SEQ_PORT_CAP_SUBS_WRITE ? 'W' : 'w') : '-')
2436#define FLAG_PERM_EX(perm) ((perm) & SNDRV_SEQ_PORT_CAP_NO_EXPORT ? '-' : 'e')
2437
2438#define FLAG_PERM_DUPLEX(perm) ((perm) & SNDRV_SEQ_PORT_CAP_DUPLEX ? 'X' : '-')
2439
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002440static void snd_seq_info_dump_ports(struct snd_info_buffer *buffer,
2441 struct snd_seq_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
Johannes Berg9244b2c2006-10-05 16:02:22 +02002443 struct snd_seq_client_port *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002445 mutex_lock(&client->ports_mutex);
Johannes Berg9244b2c2006-10-05 16:02:22 +02002446 list_for_each_entry(p, &client->ports_list_head, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 snd_iprintf(buffer, " Port %3d : \"%s\" (%c%c%c%c)\n",
2448 p->addr.port, p->name,
2449 FLAG_PERM_RD(p->capability),
2450 FLAG_PERM_WR(p->capability),
2451 FLAG_PERM_EX(p->capability),
2452 FLAG_PERM_DUPLEX(p->capability));
2453 snd_seq_info_dump_subscribers(buffer, &p->c_src, 1, " Connecting To: ");
2454 snd_seq_info_dump_subscribers(buffer, &p->c_dest, 0, " Connected From: ");
2455 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002456 mutex_unlock(&client->ports_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457}
2458
2459
2460/* exported to seq_info.c */
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002461void snd_seq_info_clients_read(struct snd_info_entry *entry,
2462 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 int c;
Takashi Iwaic7e0b5b2005-11-17 14:04:02 +01002465 struct snd_seq_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467 snd_iprintf(buffer, "Client info\n");
2468 snd_iprintf(buffer, " cur clients : %d\n", client_usage.cur);
2469 snd_iprintf(buffer, " peak clients : %d\n", client_usage.peak);
2470 snd_iprintf(buffer, " max clients : %d\n", SNDRV_SEQ_MAX_CLIENTS);
2471 snd_iprintf(buffer, "\n");
2472
2473 /* list the client table */
2474 for (c = 0; c < SNDRV_SEQ_MAX_CLIENTS; c++) {
2475 client = snd_seq_client_use_ptr(c);
2476 if (client == NULL)
2477 continue;
2478 if (client->type == NO_CLIENT) {
2479 snd_seq_client_unlock(client);
2480 continue;
2481 }
2482
2483 snd_iprintf(buffer, "Client %3d : \"%s\" [%s]\n",
2484 c, client->name,
2485 client->type == USER_CLIENT ? "User" : "Kernel");
2486 snd_seq_info_dump_ports(buffer, client);
2487 if (snd_seq_write_pool_allocated(client)) {
2488 snd_iprintf(buffer, " Output pool :\n");
2489 snd_seq_info_pool(buffer, client->pool, " ");
2490 }
2491 if (client->type == USER_CLIENT && client->data.user.fifo &&
2492 client->data.user.fifo->pool) {
2493 snd_iprintf(buffer, " Input pool :\n");
2494 snd_seq_info_pool(buffer, client->data.user.fifo->pool, " ");
2495 }
2496 snd_seq_client_unlock(client);
2497 }
2498}
Jie Yangcd6a6502015-05-27 19:45:45 +08002499#endif /* CONFIG_SND_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
2501/*---------------------------------------------------------------------------*/
2502
2503
2504/*
2505 * REGISTRATION PART
2506 */
2507
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08002508static const struct file_operations snd_seq_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
2510 .owner = THIS_MODULE,
2511 .read = snd_seq_read,
2512 .write = snd_seq_write,
2513 .open = snd_seq_open,
2514 .release = snd_seq_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02002515 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 .poll = snd_seq_poll,
2517 .unlocked_ioctl = snd_seq_ioctl,
2518 .compat_ioctl = snd_seq_ioctl_compat,
2519};
2520
Takashi Iwai52053882015-01-30 08:04:21 +01002521static struct device seq_dev;
2522
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523/*
2524 * register sequencer device
2525 */
2526int __init snd_sequencer_device_init(void)
2527{
2528 int err;
2529
Takashi Iwai52053882015-01-30 08:04:21 +01002530 snd_device_initialize(&seq_dev, NULL);
2531 dev_set_name(&seq_dev, "seq");
2532
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002533 if (mutex_lock_interruptible(&register_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 return -ERESTARTSYS;
2535
Takashi Iwai40a4b262015-01-30 08:34:58 +01002536 err = snd_register_device(SNDRV_DEVICE_TYPE_SEQUENCER, NULL, 0,
2537 &snd_seq_f_ops, NULL, &seq_dev);
Takashi Iwai52053882015-01-30 08:04:21 +01002538 if (err < 0) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002539 mutex_unlock(&register_mutex);
Takashi Iwai52053882015-01-30 08:04:21 +01002540 put_device(&seq_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 return err;
2542 }
2543
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002544 mutex_unlock(&register_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 return 0;
2547}
2548
2549
2550
2551/*
2552 * unregister sequencer device
2553 */
2554void __exit snd_sequencer_device_done(void)
2555{
Takashi Iwai40a4b262015-01-30 08:34:58 +01002556 snd_unregister_device(&seq_dev);
Takashi Iwai52053882015-01-30 08:04:21 +01002557 put_device(&seq_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}