2 * ALSA sequencer Client Manager
3 * Copyright (c) 1998-2001 by Frank van de Pol <fvdpol@coil.demon.nl>
4 * Jaroslav Kysela <perex@perex.cz>
5 * Takashi Iwai <tiwai@suse.de>
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.
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.
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
24 #include <sound/driver.h>
25 #include <linux/init.h>
26 #include <linux/slab.h>
27 #include <sound/core.h>
28 #include <sound/minors.h>
29 #include <linux/kmod.h>
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"
37 #include "seq_system.h"
38 #include <sound/seq_device.h>
40 #include <linux/compat.h>
45 * this module handles the connections of userland and kernel clients
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
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
64 #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)
68 static DEFINE_SPINLOCK(clients_lock
);
69 static DEFINE_MUTEX(register_mutex
);
74 static char clienttablock
[SNDRV_SEQ_MAX_CLIENTS
];
75 static struct snd_seq_client
*clienttab
[SNDRV_SEQ_MAX_CLIENTS
];
76 static struct snd_seq_usage client_usage
;
81 static int bounce_error_event(struct snd_seq_client
*client
,
82 struct snd_seq_event
*event
,
83 int err
, int atomic
, int hop
);
84 static int snd_seq_deliver_single_event(struct snd_seq_client
*client
,
85 struct snd_seq_event
*event
,
86 int filter
, int atomic
, int hop
);
91 static inline mm_segment_t
snd_enter_user(void)
93 mm_segment_t fs
= get_fs();
98 static inline void snd_leave_user(mm_segment_t fs
)
105 static inline unsigned short snd_seq_file_flags(struct file
*file
)
107 switch (file
->f_mode
& (FMODE_READ
| FMODE_WRITE
)) {
109 return SNDRV_SEQ_LFLG_OUTPUT
;
111 return SNDRV_SEQ_LFLG_INPUT
;
113 return SNDRV_SEQ_LFLG_OPEN
;
117 static inline int snd_seq_write_pool_allocated(struct snd_seq_client
*client
)
119 return snd_seq_total_cells(client
->pool
) > 0;
122 /* return pointer to client structure for specified id */
123 static struct snd_seq_client
*clientptr(int clientid
)
125 if (clientid
< 0 || clientid
>= SNDRV_SEQ_MAX_CLIENTS
) {
126 snd_printd("Seq: oops. Trying to get pointer to client %d\n",
130 return clienttab
[clientid
];
133 extern int seq_client_load
[];
135 struct snd_seq_client
*snd_seq_client_use_ptr(int clientid
)
138 struct snd_seq_client
*client
;
140 if (clientid
< 0 || clientid
>= SNDRV_SEQ_MAX_CLIENTS
) {
141 snd_printd("Seq: oops. Trying to get pointer to client %d\n",
145 spin_lock_irqsave(&clients_lock
, flags
);
146 client
= clientptr(clientid
);
149 if (clienttablock
[clientid
]) {
150 spin_unlock_irqrestore(&clients_lock
, flags
);
153 spin_unlock_irqrestore(&clients_lock
, flags
);
155 if (!in_interrupt() && current
->fs
->root
) {
156 static char client_requested
[SNDRV_SEQ_GLOBAL_CLIENTS
];
157 static char card_requested
[SNDRV_CARDS
];
158 if (clientid
< SNDRV_SEQ_GLOBAL_CLIENTS
) {
161 if (! client_requested
[clientid
] && current
->fs
->root
) {
162 client_requested
[clientid
] = 1;
163 for (idx
= 0; idx
< 15; idx
++) {
164 if (seq_client_load
[idx
] < 0)
166 if (seq_client_load
[idx
] == clientid
) {
167 request_module("snd-seq-client-%i",
173 } else if (clientid
< SNDRV_SEQ_DYNAMIC_CLIENTS_BEGIN
) {
174 int card
= (clientid
- SNDRV_SEQ_GLOBAL_CLIENTS
) /
175 SNDRV_SEQ_CLIENTS_PER_CARD
;
176 if (card
< snd_ecards_limit
) {
177 if (! card_requested
[card
]) {
178 card_requested
[card
] = 1;
179 snd_request_card(card
);
181 snd_seq_device_load_drivers();
184 spin_lock_irqsave(&clients_lock
, flags
);
185 client
= clientptr(clientid
);
188 spin_unlock_irqrestore(&clients_lock
, flags
);
194 snd_use_lock_use(&client
->use_lock
);
195 spin_unlock_irqrestore(&clients_lock
, flags
);
199 static void usage_alloc(struct snd_seq_usage
*res
, int num
)
202 if (res
->cur
> res
->peak
)
203 res
->peak
= res
->cur
;
206 static void usage_free(struct snd_seq_usage
*res
, int num
)
211 /* initialise data structures */
212 int __init
client_init_data(void)
214 /* zap out the client table */
215 memset(&clienttablock
, 0, sizeof(clienttablock
));
216 memset(&clienttab
, 0, sizeof(clienttab
));
221 static struct snd_seq_client
*seq_create_client1(int client_index
, int poolsize
)
225 struct snd_seq_client
*client
;
227 /* init client data */
228 client
= kzalloc(sizeof(*client
), GFP_KERNEL
);
231 client
->pool
= snd_seq_pool_new(poolsize
);
232 if (client
->pool
== NULL
) {
236 client
->type
= NO_CLIENT
;
237 snd_use_lock_init(&client
->use_lock
);
238 rwlock_init(&client
->ports_lock
);
239 mutex_init(&client
->ports_mutex
);
240 INIT_LIST_HEAD(&client
->ports_list_head
);
242 /* find free slot in the client table */
243 spin_lock_irqsave(&clients_lock
, flags
);
244 if (client_index
< 0) {
245 for (c
= SNDRV_SEQ_DYNAMIC_CLIENTS_BEGIN
;
246 c
< SNDRV_SEQ_MAX_CLIENTS
;
248 if (clienttab
[c
] || clienttablock
[c
])
250 clienttab
[client
->number
= c
] = client
;
251 spin_unlock_irqrestore(&clients_lock
, flags
);
255 if (clienttab
[client_index
] == NULL
&& !clienttablock
[client_index
]) {
256 clienttab
[client
->number
= client_index
] = client
;
257 spin_unlock_irqrestore(&clients_lock
, flags
);
261 spin_unlock_irqrestore(&clients_lock
, flags
);
262 snd_seq_pool_delete(&client
->pool
);
264 return NULL
; /* no free slot found or busy, return failure code */
268 static int seq_free_client1(struct snd_seq_client
*client
)
272 snd_assert(client
!= NULL
, return -EINVAL
);
273 snd_seq_delete_all_ports(client
);
274 snd_seq_queue_client_leave(client
->number
);
275 spin_lock_irqsave(&clients_lock
, flags
);
276 clienttablock
[client
->number
] = 1;
277 clienttab
[client
->number
] = NULL
;
278 spin_unlock_irqrestore(&clients_lock
, flags
);
279 snd_use_lock_sync(&client
->use_lock
);
280 snd_seq_queue_client_termination(client
->number
);
282 snd_seq_pool_delete(&client
->pool
);
283 spin_lock_irqsave(&clients_lock
, flags
);
284 clienttablock
[client
->number
] = 0;
285 spin_unlock_irqrestore(&clients_lock
, flags
);
290 static void seq_free_client(struct snd_seq_client
* client
)
292 mutex_lock(®ister_mutex
);
293 switch (client
->type
) {
295 snd_printk(KERN_WARNING
"Seq: Trying to free unused client %d\n",
300 seq_free_client1(client
);
301 usage_free(&client_usage
, 1);
305 snd_printk(KERN_ERR
"Seq: Trying to free client %d with undefined type = %d\n",
306 client
->number
, client
->type
);
308 mutex_unlock(®ister_mutex
);
310 snd_seq_system_client_ev_client_exit(client
->number
);
315 /* -------------------------------------------------------- */
317 /* create a user client */
318 static int snd_seq_open(struct inode
*inode
, struct file
*file
)
320 int c
, mode
; /* client id */
321 struct snd_seq_client
*client
;
322 struct snd_seq_user_client
*user
;
324 if (mutex_lock_interruptible(®ister_mutex
))
326 client
= seq_create_client1(-1, SNDRV_SEQ_DEFAULT_EVENTS
);
327 if (client
== NULL
) {
328 mutex_unlock(®ister_mutex
);
329 return -ENOMEM
; /* failure code */
332 mode
= snd_seq_file_flags(file
);
333 if (mode
& SNDRV_SEQ_LFLG_INPUT
)
334 client
->accept_input
= 1;
335 if (mode
& SNDRV_SEQ_LFLG_OUTPUT
)
336 client
->accept_output
= 1;
338 user
= &client
->data
.user
;
340 user
->fifo_pool_size
= 0;
342 if (mode
& SNDRV_SEQ_LFLG_INPUT
) {
343 user
->fifo_pool_size
= SNDRV_SEQ_DEFAULT_CLIENT_EVENTS
;
344 user
->fifo
= snd_seq_fifo_new(user
->fifo_pool_size
);
345 if (user
->fifo
== NULL
) {
346 seq_free_client1(client
);
348 mutex_unlock(®ister_mutex
);
353 usage_alloc(&client_usage
, 1);
354 client
->type
= USER_CLIENT
;
355 mutex_unlock(®ister_mutex
);
358 file
->private_data
= client
;
360 /* fill client data */
362 sprintf(client
->name
, "Client-%d", c
);
364 /* make others aware this new client */
365 snd_seq_system_client_ev_client_start(c
);
370 /* delete a user client */
371 static int snd_seq_release(struct inode
*inode
, struct file
*file
)
373 struct snd_seq_client
*client
= file
->private_data
;
376 seq_free_client(client
);
377 if (client
->data
.user
.fifo
)
378 snd_seq_fifo_delete(&client
->data
.user
.fifo
);
386 /* handle client read() */
387 /* possible error values:
388 * -ENXIO invalid client or file open mode
389 * -ENOSPC FIFO overflow (the flag is cleared after this error report)
390 * -EINVAL no enough user-space buffer to write the whole event
391 * -EFAULT seg. fault during copy to user space
393 static ssize_t
snd_seq_read(struct file
*file
, char __user
*buf
, size_t count
,
396 struct snd_seq_client
*client
= file
->private_data
;
397 struct snd_seq_fifo
*fifo
;
400 struct snd_seq_event_cell
*cell
;
402 if (!(snd_seq_file_flags(file
) & SNDRV_SEQ_LFLG_INPUT
))
405 if (!access_ok(VERIFY_WRITE
, buf
, count
))
408 /* check client structures are in place */
409 snd_assert(client
!= NULL
, return -ENXIO
);
411 if (!client
->accept_input
|| (fifo
= client
->data
.user
.fifo
) == NULL
)
414 if (atomic_read(&fifo
->overflow
) > 0) {
415 /* buffer overflow is detected */
416 snd_seq_fifo_clear(fifo
);
417 /* return error code */
423 snd_seq_fifo_lock(fifo
);
425 /* while data available in queue */
426 while (count
>= sizeof(struct snd_seq_event
)) {
429 nonblock
= (file
->f_flags
& O_NONBLOCK
) || result
> 0;
430 if ((err
= snd_seq_fifo_cell_out(fifo
, &cell
, nonblock
)) < 0) {
433 if (snd_seq_ev_is_variable(&cell
->event
)) {
434 struct snd_seq_event tmpev
;
436 tmpev
.data
.ext
.len
&= ~SNDRV_SEQ_EXT_MASK
;
437 if (copy_to_user(buf
, &tmpev
, sizeof(struct snd_seq_event
))) {
441 count
-= sizeof(struct snd_seq_event
);
442 buf
+= sizeof(struct snd_seq_event
);
443 err
= snd_seq_expand_var_event(&cell
->event
, count
,
444 (char __force
*)buf
, 0,
445 sizeof(struct snd_seq_event
));
452 if (copy_to_user(buf
, &cell
->event
, sizeof(struct snd_seq_event
))) {
456 count
-= sizeof(struct snd_seq_event
);
457 buf
+= sizeof(struct snd_seq_event
);
459 snd_seq_cell_free(cell
);
460 cell
= NULL
; /* to be sure */
461 result
+= sizeof(struct snd_seq_event
);
466 snd_seq_fifo_cell_putback(fifo
, cell
);
467 if (err
== -EAGAIN
&& result
> 0)
470 snd_seq_fifo_unlock(fifo
);
472 return (err
< 0) ? err
: result
;
477 * check access permission to the port
479 static int check_port_perm(struct snd_seq_client_port
*port
, unsigned int flags
)
481 if ((port
->capability
& flags
) != flags
)
487 * check if the destination client is available, and return the pointer
488 * if filter is non-zero, client filter bitmap is tested.
490 static struct snd_seq_client
*get_event_dest_client(struct snd_seq_event
*event
,
493 struct snd_seq_client
*dest
;
495 dest
= snd_seq_client_use_ptr(event
->dest
.client
);
498 if (! dest
->accept_input
)
500 if ((dest
->filter
& SNDRV_SEQ_FILTER_USE_EVENT
) &&
501 ! test_bit(event
->type
, dest
->event_filter
))
503 if (filter
&& !(dest
->filter
& filter
))
506 return dest
; /* ok - accessible */
508 snd_seq_client_unlock(dest
);
514 * Return the error event.
516 * If the receiver client is a user client, the original event is
517 * encapsulated in SNDRV_SEQ_EVENT_BOUNCE as variable length event. If
518 * the original event is also variable length, the external data is
519 * copied after the event record.
520 * If the receiver client is a kernel client, the original event is
521 * quoted in SNDRV_SEQ_EVENT_KERNEL_ERROR, since this requires no extra
524 static int bounce_error_event(struct snd_seq_client
*client
,
525 struct snd_seq_event
*event
,
526 int err
, int atomic
, int hop
)
528 struct snd_seq_event bounce_ev
;
531 if (client
== NULL
||
532 ! (client
->filter
& SNDRV_SEQ_FILTER_BOUNCE
) ||
533 ! client
->accept_input
)
534 return 0; /* ignored */
536 /* set up quoted error */
537 memset(&bounce_ev
, 0, sizeof(bounce_ev
));
538 bounce_ev
.type
= SNDRV_SEQ_EVENT_KERNEL_ERROR
;
539 bounce_ev
.flags
= SNDRV_SEQ_EVENT_LENGTH_FIXED
;
540 bounce_ev
.queue
= SNDRV_SEQ_QUEUE_DIRECT
;
541 bounce_ev
.source
.client
= SNDRV_SEQ_CLIENT_SYSTEM
;
542 bounce_ev
.source
.port
= SNDRV_SEQ_PORT_SYSTEM_ANNOUNCE
;
543 bounce_ev
.dest
.client
= client
->number
;
544 bounce_ev
.dest
.port
= event
->source
.port
;
545 bounce_ev
.data
.quote
.origin
= event
->dest
;
546 bounce_ev
.data
.quote
.event
= event
;
547 bounce_ev
.data
.quote
.value
= -err
; /* use positive value */
548 result
= snd_seq_deliver_single_event(NULL
, &bounce_ev
, 0, atomic
, hop
+ 1);
550 client
->event_lost
++;
559 * rewrite the time-stamp of the event record with the curren time
560 * of the given queue.
561 * return non-zero if updated.
563 static int update_timestamp_of_queue(struct snd_seq_event
*event
,
564 int queue
, int real_time
)
566 struct snd_seq_queue
*q
;
571 event
->queue
= queue
;
572 event
->flags
&= ~SNDRV_SEQ_TIME_STAMP_MASK
;
574 event
->time
.time
= snd_seq_timer_get_cur_time(q
->timer
);
575 event
->flags
|= SNDRV_SEQ_TIME_STAMP_REAL
;
577 event
->time
.tick
= snd_seq_timer_get_cur_tick(q
->timer
);
578 event
->flags
|= SNDRV_SEQ_TIME_STAMP_TICK
;
586 * deliver an event to the specified destination.
587 * if filter is non-zero, client filter bitmap is tested.
589 * RETURN VALUE: 0 : if succeeded
592 static int snd_seq_deliver_single_event(struct snd_seq_client
*client
,
593 struct snd_seq_event
*event
,
594 int filter
, int atomic
, int hop
)
596 struct snd_seq_client
*dest
= NULL
;
597 struct snd_seq_client_port
*dest_port
= NULL
;
598 int result
= -ENOENT
;
601 direct
= snd_seq_ev_is_direct(event
);
603 dest
= get_event_dest_client(event
, filter
);
606 dest_port
= snd_seq_port_use_ptr(dest
, event
->dest
.port
);
607 if (dest_port
== NULL
)
610 /* check permission */
611 if (! check_port_perm(dest_port
, SNDRV_SEQ_PORT_CAP_WRITE
)) {
616 if (dest_port
->timestamping
)
617 update_timestamp_of_queue(event
, dest_port
->time_queue
,
618 dest_port
->time_real
);
620 switch (dest
->type
) {
622 if (dest
->data
.user
.fifo
)
623 result
= snd_seq_fifo_event_in(dest
->data
.user
.fifo
, event
);
627 if (dest_port
->event_input
== NULL
)
629 result
= dest_port
->event_input(event
, direct
,
630 dest_port
->private_data
,
639 snd_seq_port_unlock(dest_port
);
641 snd_seq_client_unlock(dest
);
643 if (result
< 0 && !direct
) {
644 result
= bounce_error_event(client
, event
, result
, atomic
, hop
);
651 * send the event to all subscribers:
653 static int deliver_to_subscribers(struct snd_seq_client
*client
,
654 struct snd_seq_event
*event
,
657 struct snd_seq_subscribers
*subs
;
658 int err
= 0, num_ev
= 0;
659 struct snd_seq_event event_saved
;
660 struct snd_seq_client_port
*src_port
;
661 struct snd_seq_port_subs_info
*grp
;
663 src_port
= snd_seq_port_use_ptr(client
, event
->source
.port
);
664 if (src_port
== NULL
)
665 return -EINVAL
; /* invalid source port */
666 /* save original event record */
667 event_saved
= *event
;
668 grp
= &src_port
->c_src
;
672 read_lock(&grp
->list_lock
);
674 down_read(&grp
->list_mutex
);
675 list_for_each_entry(subs
, &grp
->list_head
, src_list
) {
676 event
->dest
= subs
->info
.dest
;
677 if (subs
->info
.flags
& SNDRV_SEQ_PORT_SUBS_TIMESTAMP
)
678 /* convert time according to flag with subscription */
679 update_timestamp_of_queue(event
, subs
->info
.queue
,
680 subs
->info
.flags
& SNDRV_SEQ_PORT_SUBS_TIME_REAL
);
681 err
= snd_seq_deliver_single_event(client
, event
,
686 /* restore original event record */
687 *event
= event_saved
;
690 read_unlock(&grp
->list_lock
);
692 up_read(&grp
->list_mutex
);
693 *event
= event_saved
; /* restore */
694 snd_seq_port_unlock(src_port
);
695 return (err
< 0) ? err
: num_ev
;
699 #ifdef SUPPORT_BROADCAST
701 * broadcast to all ports:
703 static int port_broadcast_event(struct snd_seq_client
*client
,
704 struct snd_seq_event
*event
,
707 int num_ev
= 0, err
= 0;
708 struct snd_seq_client
*dest_client
;
709 struct snd_seq_client_port
*port
;
711 dest_client
= get_event_dest_client(event
, SNDRV_SEQ_FILTER_BROADCAST
);
712 if (dest_client
== NULL
)
713 return 0; /* no matching destination */
715 read_lock(&dest_client
->ports_lock
);
716 list_for_each_entry(port
, &dest_client
->ports_list_head
, list
) {
717 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
,
726 read_unlock(&dest_client
->ports_lock
);
727 snd_seq_client_unlock(dest_client
);
728 event
->dest
.port
= SNDRV_SEQ_ADDRESS_BROADCAST
; /* restore */
729 return (err
< 0) ? err
: num_ev
;
733 * send the event to all clients:
734 * if destination port is also ADDRESS_BROADCAST, deliver to all ports.
736 static int broadcast_event(struct snd_seq_client
*client
,
737 struct snd_seq_event
*event
, int atomic
, int hop
)
739 int err
= 0, num_ev
= 0;
741 struct snd_seq_addr addr
;
743 addr
= event
->dest
; /* save */
745 for (dest
= 0; dest
< SNDRV_SEQ_MAX_CLIENTS
; dest
++) {
746 /* don't send to itself */
747 if (dest
== client
->number
)
749 event
->dest
.client
= dest
;
750 event
->dest
.port
= addr
.port
;
751 if (addr
.port
== SNDRV_SEQ_ADDRESS_BROADCAST
)
752 err
= port_broadcast_event(client
, event
, atomic
, hop
);
754 /* pass NULL as source client to avoid error bounce */
755 err
= snd_seq_deliver_single_event(NULL
, event
,
756 SNDRV_SEQ_FILTER_BROADCAST
,
762 event
->dest
= addr
; /* restore */
763 return (err
< 0) ? err
: num_ev
;
767 /* multicast - not supported yet */
768 static int multicast_event(struct snd_seq_client
*client
, struct snd_seq_event
*event
,
771 snd_printd("seq: multicast not supported yet.\n");
772 return 0; /* ignored */
774 #endif /* SUPPORT_BROADCAST */
777 /* deliver an event to the destination port(s).
778 * if the event is to subscribers or broadcast, the event is dispatched
779 * to multiple targets.
781 * RETURN VALUE: n > 0 : the number of delivered events.
782 * n == 0 : the event was not passed to any client.
783 * n < 0 : error - event was not processed.
785 static int snd_seq_deliver_event(struct snd_seq_client
*client
, struct snd_seq_event
*event
,
791 if (hop
>= SNDRV_SEQ_MAX_HOPS
) {
792 snd_printd("too long delivery path (%d:%d->%d:%d)\n",
793 event
->source
.client
, event
->source
.port
,
794 event
->dest
.client
, event
->dest
.port
);
798 if (event
->queue
== SNDRV_SEQ_ADDRESS_SUBSCRIBERS
||
799 event
->dest
.client
== SNDRV_SEQ_ADDRESS_SUBSCRIBERS
)
800 result
= deliver_to_subscribers(client
, event
, atomic
, hop
);
801 #ifdef SUPPORT_BROADCAST
802 else if (event
->queue
== SNDRV_SEQ_ADDRESS_BROADCAST
||
803 event
->dest
.client
== SNDRV_SEQ_ADDRESS_BROADCAST
)
804 result
= broadcast_event(client
, event
, atomic
, hop
);
805 else if (event
->dest
.client
>= SNDRV_SEQ_MAX_CLIENTS
)
806 result
= multicast_event(client
, event
, atomic
, hop
);
807 else if (event
->dest
.port
== SNDRV_SEQ_ADDRESS_BROADCAST
)
808 result
= port_broadcast_event(client
, event
, atomic
, hop
);
811 result
= snd_seq_deliver_single_event(client
, event
, 0, atomic
, hop
);
817 * dispatch an event cell:
818 * This function is called only from queue check routines in timer
819 * interrupts or after enqueued.
820 * The event cell shall be released or re-queued in this function.
822 * RETURN VALUE: n > 0 : the number of delivered events.
823 * n == 0 : the event was not passed to any client.
824 * n < 0 : error - event was not processed.
826 int snd_seq_dispatch_event(struct snd_seq_event_cell
*cell
, int atomic
, int hop
)
828 struct snd_seq_client
*client
;
831 snd_assert(cell
!= NULL
, return -EINVAL
);
833 client
= snd_seq_client_use_ptr(cell
->event
.source
.client
);
834 if (client
== NULL
) {
835 snd_seq_cell_free(cell
); /* release this cell */
839 if (cell
->event
.type
== SNDRV_SEQ_EVENT_NOTE
) {
841 * the event cell is re-used as a NOTE-OFF event and
844 struct snd_seq_event tmpev
, *ev
;
846 /* reserve this event to enqueue note-off later */
848 tmpev
.type
= SNDRV_SEQ_EVENT_NOTEON
;
849 result
= snd_seq_deliver_event(client
, &tmpev
, atomic
, hop
);
852 * This was originally a note event. We now re-use the
853 * cell for the note-off event.
857 ev
->type
= SNDRV_SEQ_EVENT_NOTEOFF
;
858 ev
->flags
|= SNDRV_SEQ_PRIORITY_HIGH
;
860 /* add the duration time */
861 switch (ev
->flags
& SNDRV_SEQ_TIME_STAMP_MASK
) {
862 case SNDRV_SEQ_TIME_STAMP_TICK
:
863 ev
->time
.tick
+= ev
->data
.note
.duration
;
865 case SNDRV_SEQ_TIME_STAMP_REAL
:
866 /* unit for duration is ms */
867 ev
->time
.time
.tv_nsec
+= 1000000 * (ev
->data
.note
.duration
% 1000);
868 ev
->time
.time
.tv_sec
+= ev
->data
.note
.duration
/ 1000 +
869 ev
->time
.time
.tv_nsec
/ 1000000000;
870 ev
->time
.time
.tv_nsec
%= 1000000000;
873 ev
->data
.note
.velocity
= ev
->data
.note
.off_velocity
;
875 /* Now queue this cell as the note off event */
876 if (snd_seq_enqueue_event(cell
, atomic
, hop
) < 0)
877 snd_seq_cell_free(cell
); /* release this cell */
881 * event cell is freed after processing the event
884 result
= snd_seq_deliver_event(client
, &cell
->event
, atomic
, hop
);
885 snd_seq_cell_free(cell
);
888 snd_seq_client_unlock(client
);
893 /* Allocate a cell from client pool and enqueue it to queue:
894 * if pool is empty and blocking is TRUE, sleep until a new cell is
897 static int snd_seq_client_enqueue_event(struct snd_seq_client
*client
,
898 struct snd_seq_event
*event
,
899 struct file
*file
, int blocking
,
902 struct snd_seq_event_cell
*cell
;
905 /* special queue values - force direct passing */
906 if (event
->queue
== SNDRV_SEQ_ADDRESS_SUBSCRIBERS
) {
907 event
->dest
.client
= SNDRV_SEQ_ADDRESS_SUBSCRIBERS
;
908 event
->queue
= SNDRV_SEQ_QUEUE_DIRECT
;
910 #ifdef SUPPORT_BROADCAST
911 if (event
->queue
== SNDRV_SEQ_ADDRESS_BROADCAST
) {
912 event
->dest
.client
= SNDRV_SEQ_ADDRESS_BROADCAST
;
913 event
->queue
= SNDRV_SEQ_QUEUE_DIRECT
;
916 if (event
->dest
.client
== SNDRV_SEQ_ADDRESS_SUBSCRIBERS
) {
917 /* check presence of source port */
918 struct snd_seq_client_port
*src_port
= snd_seq_port_use_ptr(client
, event
->source
.port
);
919 if (src_port
== NULL
)
921 snd_seq_port_unlock(src_port
);
924 /* direct event processing without enqueued */
925 if (snd_seq_ev_is_direct(event
)) {
926 if (event
->type
== SNDRV_SEQ_EVENT_NOTE
)
927 return -EINVAL
; /* this event must be enqueued! */
928 return snd_seq_deliver_event(client
, event
, atomic
, hop
);
931 /* Not direct, normal queuing */
932 if (snd_seq_queue_is_used(event
->queue
, client
->number
) <= 0)
933 return -EINVAL
; /* invalid queue */
934 if (! snd_seq_write_pool_allocated(client
))
935 return -ENXIO
; /* queue is not allocated */
937 /* allocate an event cell */
938 err
= snd_seq_event_dup(client
->pool
, event
, &cell
, !blocking
|| atomic
, file
);
942 /* we got a cell. enqueue it. */
943 if ((err
= snd_seq_enqueue_event(cell
, atomic
, hop
)) < 0) {
944 snd_seq_cell_free(cell
);
953 * check validity of event type and data length.
954 * return non-zero if invalid.
956 static int check_event_type_and_length(struct snd_seq_event
*ev
)
958 switch (snd_seq_ev_length_type(ev
)) {
959 case SNDRV_SEQ_EVENT_LENGTH_FIXED
:
960 if (snd_seq_ev_is_variable_type(ev
))
963 case SNDRV_SEQ_EVENT_LENGTH_VARIABLE
:
964 if (! snd_seq_ev_is_variable_type(ev
) ||
965 (ev
->data
.ext
.len
& ~SNDRV_SEQ_EXT_MASK
) >= SNDRV_SEQ_MAX_EVENT_LEN
)
968 case SNDRV_SEQ_EVENT_LENGTH_VARUSR
:
969 if (! snd_seq_ev_is_instr_type(ev
) ||
970 ! snd_seq_ev_is_direct(ev
))
979 /* possible error values:
980 * -ENXIO invalid client or file open mode
981 * -ENOMEM malloc failed
982 * -EFAULT seg. fault during copy from user space
983 * -EINVAL invalid event
984 * -EAGAIN no space in output pool
985 * -EINTR interrupts while sleep
986 * -EMLINK too many hops
987 * others depends on return value from driver callback
989 static ssize_t
snd_seq_write(struct file
*file
, const char __user
*buf
,
990 size_t count
, loff_t
*offset
)
992 struct snd_seq_client
*client
= file
->private_data
;
993 int written
= 0, len
;
995 struct snd_seq_event event
;
997 if (!(snd_seq_file_flags(file
) & SNDRV_SEQ_LFLG_OUTPUT
))
1000 /* check client structures are in place */
1001 snd_assert(client
!= NULL
, return -ENXIO
);
1003 if (!client
->accept_output
|| client
->pool
== NULL
)
1006 /* allocate the pool now if the pool is not allocated yet */
1007 if (client
->pool
->size
> 0 && !snd_seq_write_pool_allocated(client
)) {
1008 if (snd_seq_pool_init(client
->pool
) < 0)
1012 /* only process whole events */
1013 while (count
>= sizeof(struct snd_seq_event
)) {
1014 /* Read in the event header from the user */
1015 len
= sizeof(event
);
1016 if (copy_from_user(&event
, buf
, len
)) {
1020 event
.source
.client
= client
->number
; /* fill in client number */
1021 /* Check for extension data length */
1022 if (check_event_type_and_length(&event
)) {
1027 /* check for special events */
1028 if (event
.type
== SNDRV_SEQ_EVENT_NONE
)
1030 else if (snd_seq_ev_is_reserved(&event
)) {
1035 if (snd_seq_ev_is_variable(&event
)) {
1036 int extlen
= event
.data
.ext
.len
& ~SNDRV_SEQ_EXT_MASK
;
1037 if ((size_t)(extlen
+ len
) > count
) {
1038 /* back out, will get an error this time or next */
1042 /* set user space pointer */
1043 event
.data
.ext
.len
= extlen
| SNDRV_SEQ_EXT_USRPTR
;
1044 event
.data
.ext
.ptr
= (char __force
*)buf
1045 + sizeof(struct snd_seq_event
);
1046 len
+= extlen
; /* increment data length */
1048 #ifdef CONFIG_COMPAT
1049 if (client
->convert32
&& snd_seq_ev_is_varusr(&event
)) {
1050 void *ptr
= compat_ptr(event
.data
.raw32
.d
[1]);
1051 event
.data
.ext
.ptr
= ptr
;
1056 /* ok, enqueue it */
1057 err
= snd_seq_client_enqueue_event(client
, &event
, file
,
1058 !(file
->f_flags
& O_NONBLOCK
),
1064 /* Update pointers and counts */
1070 return written
? written
: err
;
1077 static unsigned int snd_seq_poll(struct file
*file
, poll_table
* wait
)
1079 struct snd_seq_client
*client
= file
->private_data
;
1080 unsigned int mask
= 0;
1082 /* check client structures are in place */
1083 snd_assert(client
!= NULL
, return -ENXIO
);
1085 if ((snd_seq_file_flags(file
) & SNDRV_SEQ_LFLG_INPUT
) &&
1086 client
->data
.user
.fifo
) {
1088 /* check if data is available in the outqueue */
1089 if (snd_seq_fifo_poll_wait(client
->data
.user
.fifo
, file
, wait
))
1090 mask
|= POLLIN
| POLLRDNORM
;
1093 if (snd_seq_file_flags(file
) & SNDRV_SEQ_LFLG_OUTPUT
) {
1095 /* check if data is available in the pool */
1096 if (!snd_seq_write_pool_allocated(client
) ||
1097 snd_seq_pool_poll_wait(client
->pool
, file
, wait
))
1098 mask
|= POLLOUT
| POLLWRNORM
;
1105 /*-----------------------------------------------------*/
1108 /* SYSTEM_INFO ioctl() */
1109 static int snd_seq_ioctl_system_info(struct snd_seq_client
*client
, void __user
*arg
)
1111 struct snd_seq_system_info info
;
1113 memset(&info
, 0, sizeof(info
));
1114 /* fill the info fields */
1115 info
.queues
= SNDRV_SEQ_MAX_QUEUES
;
1116 info
.clients
= SNDRV_SEQ_MAX_CLIENTS
;
1117 info
.ports
= 256; /* fixed limit */
1118 info
.channels
= 256; /* fixed limit */
1119 info
.cur_clients
= client_usage
.cur
;
1120 info
.cur_queues
= snd_seq_queue_get_cur_queues();
1122 if (copy_to_user(arg
, &info
, sizeof(info
)))
1128 /* RUNNING_MODE ioctl() */
1129 static int snd_seq_ioctl_running_mode(struct snd_seq_client
*client
, void __user
*arg
)
1131 struct snd_seq_running_info info
;
1132 struct snd_seq_client
*cptr
;
1135 if (copy_from_user(&info
, arg
, sizeof(info
)))
1138 /* requested client number */
1139 cptr
= snd_seq_client_use_ptr(info
.client
);
1141 return -ENOENT
; /* don't change !!! */
1143 #ifdef SNDRV_BIG_ENDIAN
1144 if (! info
.big_endian
) {
1149 if (info
.big_endian
) {
1155 if (info
.cpu_mode
> sizeof(long)) {
1159 cptr
->convert32
= (info
.cpu_mode
< sizeof(long));
1161 snd_seq_client_unlock(cptr
);
1165 /* CLIENT_INFO ioctl() */
1166 static void get_client_info(struct snd_seq_client
*cptr
,
1167 struct snd_seq_client_info
*info
)
1169 info
->client
= cptr
->number
;
1171 /* fill the info fields */
1172 info
->type
= cptr
->type
;
1173 strcpy(info
->name
, cptr
->name
);
1174 info
->filter
= cptr
->filter
;
1175 info
->event_lost
= cptr
->event_lost
;
1176 memcpy(info
->event_filter
, cptr
->event_filter
, 32);
1177 info
->num_ports
= cptr
->num_ports
;
1178 memset(info
->reserved
, 0, sizeof(info
->reserved
));
1181 static int snd_seq_ioctl_get_client_info(struct snd_seq_client
*client
,
1184 struct snd_seq_client
*cptr
;
1185 struct snd_seq_client_info client_info
;
1187 if (copy_from_user(&client_info
, arg
, sizeof(client_info
)))
1190 /* requested client number */
1191 cptr
= snd_seq_client_use_ptr(client_info
.client
);
1193 return -ENOENT
; /* don't change !!! */
1195 get_client_info(cptr
, &client_info
);
1196 snd_seq_client_unlock(cptr
);
1198 if (copy_to_user(arg
, &client_info
, sizeof(client_info
)))
1204 /* CLIENT_INFO ioctl() */
1205 static int snd_seq_ioctl_set_client_info(struct snd_seq_client
*client
,
1208 struct snd_seq_client_info client_info
;
1210 if (copy_from_user(&client_info
, arg
, sizeof(client_info
)))
1213 /* it is not allowed to set the info fields for an another client */
1214 if (client
->number
!= client_info
.client
)
1216 /* also client type must be set now */
1217 if (client
->type
!= client_info
.type
)
1220 /* fill the info fields */
1221 if (client_info
.name
[0])
1222 strlcpy(client
->name
, client_info
.name
, sizeof(client
->name
));
1224 client
->filter
= client_info
.filter
;
1225 client
->event_lost
= client_info
.event_lost
;
1226 memcpy(client
->event_filter
, client_info
.event_filter
, 32);
1233 * CREATE PORT ioctl()
1235 static int snd_seq_ioctl_create_port(struct snd_seq_client
*client
,
1238 struct snd_seq_client_port
*port
;
1239 struct snd_seq_port_info info
;
1240 struct snd_seq_port_callback
*callback
;
1242 if (copy_from_user(&info
, arg
, sizeof(info
)))
1245 /* it is not allowed to create the port for an another client */
1246 if (info
.addr
.client
!= client
->number
)
1249 port
= snd_seq_create_port(client
, (info
.flags
& SNDRV_SEQ_PORT_FLG_GIVEN_PORT
) ? info
.addr
.port
: -1);
1253 if (client
->type
== USER_CLIENT
&& info
.kernel
) {
1254 snd_seq_delete_port(client
, port
->addr
.port
);
1257 if (client
->type
== KERNEL_CLIENT
) {
1258 if ((callback
= info
.kernel
) != NULL
) {
1259 if (callback
->owner
)
1260 port
->owner
= callback
->owner
;
1261 port
->private_data
= callback
->private_data
;
1262 port
->private_free
= callback
->private_free
;
1263 port
->callback_all
= callback
->callback_all
;
1264 port
->event_input
= callback
->event_input
;
1265 port
->c_src
.open
= callback
->subscribe
;
1266 port
->c_src
.close
= callback
->unsubscribe
;
1267 port
->c_dest
.open
= callback
->use
;
1268 port
->c_dest
.close
= callback
->unuse
;
1272 info
.addr
= port
->addr
;
1274 snd_seq_set_port_info(port
, &info
);
1275 snd_seq_system_client_ev_port_start(port
->addr
.client
, port
->addr
.port
);
1277 if (copy_to_user(arg
, &info
, sizeof(info
)))
1284 * DELETE PORT ioctl()
1286 static int snd_seq_ioctl_delete_port(struct snd_seq_client
*client
,
1289 struct snd_seq_port_info info
;
1292 /* set passed parameters */
1293 if (copy_from_user(&info
, arg
, sizeof(info
)))
1296 /* it is not allowed to remove the port for an another client */
1297 if (info
.addr
.client
!= client
->number
)
1300 err
= snd_seq_delete_port(client
, info
.addr
.port
);
1302 snd_seq_system_client_ev_port_exit(client
->number
, info
.addr
.port
);
1308 * GET_PORT_INFO ioctl() (on any client)
1310 static int snd_seq_ioctl_get_port_info(struct snd_seq_client
*client
,
1313 struct snd_seq_client
*cptr
;
1314 struct snd_seq_client_port
*port
;
1315 struct snd_seq_port_info info
;
1317 if (copy_from_user(&info
, arg
, sizeof(info
)))
1319 cptr
= snd_seq_client_use_ptr(info
.addr
.client
);
1323 port
= snd_seq_port_use_ptr(cptr
, info
.addr
.port
);
1325 snd_seq_client_unlock(cptr
);
1326 return -ENOENT
; /* don't change */
1330 snd_seq_get_port_info(port
, &info
);
1331 snd_seq_port_unlock(port
);
1332 snd_seq_client_unlock(cptr
);
1334 if (copy_to_user(arg
, &info
, sizeof(info
)))
1341 * SET_PORT_INFO ioctl() (only ports on this/own client)
1343 static int snd_seq_ioctl_set_port_info(struct snd_seq_client
*client
,
1346 struct snd_seq_client_port
*port
;
1347 struct snd_seq_port_info info
;
1349 if (copy_from_user(&info
, arg
, sizeof(info
)))
1352 if (info
.addr
.client
!= client
->number
) /* only set our own ports ! */
1354 port
= snd_seq_port_use_ptr(client
, info
.addr
.port
);
1356 snd_seq_set_port_info(port
, &info
);
1357 snd_seq_port_unlock(port
);
1364 * port subscription (connection)
1366 #define PERM_RD (SNDRV_SEQ_PORT_CAP_READ|SNDRV_SEQ_PORT_CAP_SUBS_READ)
1367 #define PERM_WR (SNDRV_SEQ_PORT_CAP_WRITE|SNDRV_SEQ_PORT_CAP_SUBS_WRITE)
1369 static int check_subscription_permission(struct snd_seq_client
*client
,
1370 struct snd_seq_client_port
*sport
,
1371 struct snd_seq_client_port
*dport
,
1372 struct snd_seq_port_subscribe
*subs
)
1374 if (client
->number
!= subs
->sender
.client
&&
1375 client
->number
!= subs
->dest
.client
) {
1376 /* connection by third client - check export permission */
1377 if (check_port_perm(sport
, SNDRV_SEQ_PORT_CAP_NO_EXPORT
))
1379 if (check_port_perm(dport
, SNDRV_SEQ_PORT_CAP_NO_EXPORT
))
1383 /* check read permission */
1384 /* if sender or receiver is the subscribing client itself,
1385 * no permission check is necessary
1387 if (client
->number
!= subs
->sender
.client
) {
1388 if (! check_port_perm(sport
, PERM_RD
))
1391 /* check write permission */
1392 if (client
->number
!= subs
->dest
.client
) {
1393 if (! check_port_perm(dport
, PERM_WR
))
1400 * send an subscription notify event to user client:
1401 * client must be user client.
1403 int snd_seq_client_notify_subscription(int client
, int port
,
1404 struct snd_seq_port_subscribe
*info
,
1407 struct snd_seq_event event
;
1409 memset(&event
, 0, sizeof(event
));
1410 event
.type
= evtype
;
1411 event
.data
.connect
.dest
= info
->dest
;
1412 event
.data
.connect
.sender
= info
->sender
;
1414 return snd_seq_system_notify(client
, port
, &event
); /* non-atomic */
1419 * add to port's subscription list IOCTL interface
1421 static int snd_seq_ioctl_subscribe_port(struct snd_seq_client
*client
,
1424 int result
= -EINVAL
;
1425 struct snd_seq_client
*receiver
= NULL
, *sender
= NULL
;
1426 struct snd_seq_client_port
*sport
= NULL
, *dport
= NULL
;
1427 struct snd_seq_port_subscribe subs
;
1429 if (copy_from_user(&subs
, arg
, sizeof(subs
)))
1432 if ((receiver
= snd_seq_client_use_ptr(subs
.dest
.client
)) == NULL
)
1434 if ((sender
= snd_seq_client_use_ptr(subs
.sender
.client
)) == NULL
)
1436 if ((sport
= snd_seq_port_use_ptr(sender
, subs
.sender
.port
)) == NULL
)
1438 if ((dport
= snd_seq_port_use_ptr(receiver
, subs
.dest
.port
)) == NULL
)
1441 result
= check_subscription_permission(client
, sport
, dport
, &subs
);
1446 result
= snd_seq_port_connect(client
, sender
, sport
, receiver
, dport
, &subs
);
1447 if (! result
) /* broadcast announce */
1448 snd_seq_client_notify_subscription(SNDRV_SEQ_ADDRESS_SUBSCRIBERS
, 0,
1449 &subs
, SNDRV_SEQ_EVENT_PORT_SUBSCRIBED
);
1452 snd_seq_port_unlock(sport
);
1454 snd_seq_port_unlock(dport
);
1456 snd_seq_client_unlock(sender
);
1458 snd_seq_client_unlock(receiver
);
1464 * remove from port's subscription list
1466 static int snd_seq_ioctl_unsubscribe_port(struct snd_seq_client
*client
,
1469 int result
= -ENXIO
;
1470 struct snd_seq_client
*receiver
= NULL
, *sender
= NULL
;
1471 struct snd_seq_client_port
*sport
= NULL
, *dport
= NULL
;
1472 struct snd_seq_port_subscribe subs
;
1474 if (copy_from_user(&subs
, arg
, sizeof(subs
)))
1477 if ((receiver
= snd_seq_client_use_ptr(subs
.dest
.client
)) == NULL
)
1479 if ((sender
= snd_seq_client_use_ptr(subs
.sender
.client
)) == NULL
)
1481 if ((sport
= snd_seq_port_use_ptr(sender
, subs
.sender
.port
)) == NULL
)
1483 if ((dport
= snd_seq_port_use_ptr(receiver
, subs
.dest
.port
)) == NULL
)
1486 result
= check_subscription_permission(client
, sport
, dport
, &subs
);
1490 result
= snd_seq_port_disconnect(client
, sender
, sport
, receiver
, dport
, &subs
);
1491 if (! result
) /* broadcast announce */
1492 snd_seq_client_notify_subscription(SNDRV_SEQ_ADDRESS_SUBSCRIBERS
, 0,
1493 &subs
, SNDRV_SEQ_EVENT_PORT_UNSUBSCRIBED
);
1496 snd_seq_port_unlock(sport
);
1498 snd_seq_port_unlock(dport
);
1500 snd_seq_client_unlock(sender
);
1502 snd_seq_client_unlock(receiver
);
1507 /* CREATE_QUEUE ioctl() */
1508 static int snd_seq_ioctl_create_queue(struct snd_seq_client
*client
,
1511 struct snd_seq_queue_info info
;
1513 struct snd_seq_queue
*q
;
1515 if (copy_from_user(&info
, arg
, sizeof(info
)))
1518 result
= snd_seq_queue_alloc(client
->number
, info
.locked
, info
.flags
);
1522 q
= queueptr(result
);
1526 info
.queue
= q
->queue
;
1527 info
.locked
= q
->locked
;
1528 info
.owner
= q
->owner
;
1530 /* set queue name */
1532 snprintf(info
.name
, sizeof(info
.name
), "Queue-%d", q
->queue
);
1533 strlcpy(q
->name
, info
.name
, sizeof(q
->name
));
1536 if (copy_to_user(arg
, &info
, sizeof(info
)))
1542 /* DELETE_QUEUE ioctl() */
1543 static int snd_seq_ioctl_delete_queue(struct snd_seq_client
*client
,
1546 struct snd_seq_queue_info info
;
1548 if (copy_from_user(&info
, arg
, sizeof(info
)))
1551 return snd_seq_queue_delete(client
->number
, info
.queue
);
1554 /* GET_QUEUE_INFO ioctl() */
1555 static int snd_seq_ioctl_get_queue_info(struct snd_seq_client
*client
,
1558 struct snd_seq_queue_info info
;
1559 struct snd_seq_queue
*q
;
1561 if (copy_from_user(&info
, arg
, sizeof(info
)))
1564 q
= queueptr(info
.queue
);
1568 memset(&info
, 0, sizeof(info
));
1569 info
.queue
= q
->queue
;
1570 info
.owner
= q
->owner
;
1571 info
.locked
= q
->locked
;
1572 strlcpy(info
.name
, q
->name
, sizeof(info
.name
));
1575 if (copy_to_user(arg
, &info
, sizeof(info
)))
1581 /* SET_QUEUE_INFO ioctl() */
1582 static int snd_seq_ioctl_set_queue_info(struct snd_seq_client
*client
,
1585 struct snd_seq_queue_info info
;
1586 struct snd_seq_queue
*q
;
1588 if (copy_from_user(&info
, arg
, sizeof(info
)))
1591 if (info
.owner
!= client
->number
)
1594 /* change owner/locked permission */
1595 if (snd_seq_queue_check_access(info
.queue
, client
->number
)) {
1596 if (snd_seq_queue_set_owner(info
.queue
, client
->number
, info
.locked
) < 0)
1599 snd_seq_queue_use(info
.queue
, client
->number
, 1);
1604 q
= queueptr(info
.queue
);
1607 if (q
->owner
!= client
->number
) {
1611 strlcpy(q
->name
, info
.name
, sizeof(q
->name
));
1617 /* GET_NAMED_QUEUE ioctl() */
1618 static int snd_seq_ioctl_get_named_queue(struct snd_seq_client
*client
, void __user
*arg
)
1620 struct snd_seq_queue_info info
;
1621 struct snd_seq_queue
*q
;
1623 if (copy_from_user(&info
, arg
, sizeof(info
)))
1626 q
= snd_seq_queue_find_name(info
.name
);
1629 info
.queue
= q
->queue
;
1630 info
.owner
= q
->owner
;
1631 info
.locked
= q
->locked
;
1634 if (copy_to_user(arg
, &info
, sizeof(info
)))
1640 /* GET_QUEUE_STATUS ioctl() */
1641 static int snd_seq_ioctl_get_queue_status(struct snd_seq_client
*client
,
1644 struct snd_seq_queue_status status
;
1645 struct snd_seq_queue
*queue
;
1646 struct snd_seq_timer
*tmr
;
1648 if (copy_from_user(&status
, arg
, sizeof(status
)))
1651 queue
= queueptr(status
.queue
);
1654 memset(&status
, 0, sizeof(status
));
1655 status
.queue
= queue
->queue
;
1658 status
.events
= queue
->tickq
->cells
+ queue
->timeq
->cells
;
1660 status
.time
= snd_seq_timer_get_cur_time(tmr
);
1661 status
.tick
= snd_seq_timer_get_cur_tick(tmr
);
1663 status
.running
= tmr
->running
;
1665 status
.flags
= queue
->flags
;
1668 if (copy_to_user(arg
, &status
, sizeof(status
)))
1674 /* GET_QUEUE_TEMPO ioctl() */
1675 static int snd_seq_ioctl_get_queue_tempo(struct snd_seq_client
*client
,
1678 struct snd_seq_queue_tempo tempo
;
1679 struct snd_seq_queue
*queue
;
1680 struct snd_seq_timer
*tmr
;
1682 if (copy_from_user(&tempo
, arg
, sizeof(tempo
)))
1685 queue
= queueptr(tempo
.queue
);
1688 memset(&tempo
, 0, sizeof(tempo
));
1689 tempo
.queue
= queue
->queue
;
1693 tempo
.tempo
= tmr
->tempo
;
1694 tempo
.ppq
= tmr
->ppq
;
1695 tempo
.skew_value
= tmr
->skew
;
1696 tempo
.skew_base
= tmr
->skew_base
;
1699 if (copy_to_user(arg
, &tempo
, sizeof(tempo
)))
1705 /* SET_QUEUE_TEMPO ioctl() */
1706 int snd_seq_set_queue_tempo(int client
, struct snd_seq_queue_tempo
*tempo
)
1708 if (!snd_seq_queue_check_access(tempo
->queue
, client
))
1710 return snd_seq_queue_timer_set_tempo(tempo
->queue
, client
, tempo
);
1713 EXPORT_SYMBOL(snd_seq_set_queue_tempo
);
1715 static int snd_seq_ioctl_set_queue_tempo(struct snd_seq_client
*client
,
1719 struct snd_seq_queue_tempo tempo
;
1721 if (copy_from_user(&tempo
, arg
, sizeof(tempo
)))
1724 result
= snd_seq_set_queue_tempo(client
->number
, &tempo
);
1725 return result
< 0 ? result
: 0;
1729 /* GET_QUEUE_TIMER ioctl() */
1730 static int snd_seq_ioctl_get_queue_timer(struct snd_seq_client
*client
,
1733 struct snd_seq_queue_timer timer
;
1734 struct snd_seq_queue
*queue
;
1735 struct snd_seq_timer
*tmr
;
1737 if (copy_from_user(&timer
, arg
, sizeof(timer
)))
1740 queue
= queueptr(timer
.queue
);
1744 if (mutex_lock_interruptible(&queue
->timer_mutex
)) {
1746 return -ERESTARTSYS
;
1749 memset(&timer
, 0, sizeof(timer
));
1750 timer
.queue
= queue
->queue
;
1752 timer
.type
= tmr
->type
;
1753 if (tmr
->type
== SNDRV_SEQ_TIMER_ALSA
) {
1754 timer
.u
.alsa
.id
= tmr
->alsa_id
;
1755 timer
.u
.alsa
.resolution
= tmr
->preferred_resolution
;
1757 mutex_unlock(&queue
->timer_mutex
);
1760 if (copy_to_user(arg
, &timer
, sizeof(timer
)))
1766 /* SET_QUEUE_TIMER ioctl() */
1767 static int snd_seq_ioctl_set_queue_timer(struct snd_seq_client
*client
,
1771 struct snd_seq_queue_timer timer
;
1773 if (copy_from_user(&timer
, arg
, sizeof(timer
)))
1776 if (timer
.type
!= SNDRV_SEQ_TIMER_ALSA
)
1779 if (snd_seq_queue_check_access(timer
.queue
, client
->number
)) {
1780 struct snd_seq_queue
*q
;
1781 struct snd_seq_timer
*tmr
;
1783 q
= queueptr(timer
.queue
);
1786 if (mutex_lock_interruptible(&q
->timer_mutex
)) {
1788 return -ERESTARTSYS
;
1791 snd_seq_queue_timer_close(timer
.queue
);
1792 tmr
->type
= timer
.type
;
1793 if (tmr
->type
== SNDRV_SEQ_TIMER_ALSA
) {
1794 tmr
->alsa_id
= timer
.u
.alsa
.id
;
1795 tmr
->preferred_resolution
= timer
.u
.alsa
.resolution
;
1797 result
= snd_seq_queue_timer_open(timer
.queue
);
1798 mutex_unlock(&q
->timer_mutex
);
1808 /* GET_QUEUE_CLIENT ioctl() */
1809 static int snd_seq_ioctl_get_queue_client(struct snd_seq_client
*client
,
1812 struct snd_seq_queue_client info
;
1815 if (copy_from_user(&info
, arg
, sizeof(info
)))
1818 used
= snd_seq_queue_is_used(info
.queue
, client
->number
);
1822 info
.client
= client
->number
;
1824 if (copy_to_user(arg
, &info
, sizeof(info
)))
1830 /* SET_QUEUE_CLIENT ioctl() */
1831 static int snd_seq_ioctl_set_queue_client(struct snd_seq_client
*client
,
1835 struct snd_seq_queue_client info
;
1837 if (copy_from_user(&info
, arg
, sizeof(info
)))
1840 if (info
.used
>= 0) {
1841 err
= snd_seq_queue_use(info
.queue
, client
->number
, info
.used
);
1846 return snd_seq_ioctl_get_queue_client(client
, arg
);
1850 /* GET_CLIENT_POOL ioctl() */
1851 static int snd_seq_ioctl_get_client_pool(struct snd_seq_client
*client
,
1854 struct snd_seq_client_pool info
;
1855 struct snd_seq_client
*cptr
;
1857 if (copy_from_user(&info
, arg
, sizeof(info
)))
1860 cptr
= snd_seq_client_use_ptr(info
.client
);
1863 memset(&info
, 0, sizeof(info
));
1864 info
.output_pool
= cptr
->pool
->size
;
1865 info
.output_room
= cptr
->pool
->room
;
1866 info
.output_free
= info
.output_pool
;
1867 info
.output_free
= snd_seq_unused_cells(cptr
->pool
);
1868 if (cptr
->type
== USER_CLIENT
) {
1869 info
.input_pool
= cptr
->data
.user
.fifo_pool_size
;
1870 info
.input_free
= info
.input_pool
;
1871 if (cptr
->data
.user
.fifo
)
1872 info
.input_free
= snd_seq_unused_cells(cptr
->data
.user
.fifo
->pool
);
1874 info
.input_pool
= 0;
1875 info
.input_free
= 0;
1877 snd_seq_client_unlock(cptr
);
1879 if (copy_to_user(arg
, &info
, sizeof(info
)))
1884 /* SET_CLIENT_POOL ioctl() */
1885 static int snd_seq_ioctl_set_client_pool(struct snd_seq_client
*client
,
1888 struct snd_seq_client_pool info
;
1891 if (copy_from_user(&info
, arg
, sizeof(info
)))
1894 if (client
->number
!= info
.client
)
1895 return -EINVAL
; /* can't change other clients */
1897 if (info
.output_pool
>= 1 && info
.output_pool
<= SNDRV_SEQ_MAX_EVENTS
&&
1898 (! snd_seq_write_pool_allocated(client
) ||
1899 info
.output_pool
!= client
->pool
->size
)) {
1900 if (snd_seq_write_pool_allocated(client
)) {
1901 /* remove all existing cells */
1902 snd_seq_queue_client_leave_cells(client
->number
);
1903 snd_seq_pool_done(client
->pool
);
1905 client
->pool
->size
= info
.output_pool
;
1906 rc
= snd_seq_pool_init(client
->pool
);
1910 if (client
->type
== USER_CLIENT
&& client
->data
.user
.fifo
!= NULL
&&
1911 info
.input_pool
>= 1 &&
1912 info
.input_pool
<= SNDRV_SEQ_MAX_CLIENT_EVENTS
&&
1913 info
.input_pool
!= client
->data
.user
.fifo_pool_size
) {
1914 /* change pool size */
1915 rc
= snd_seq_fifo_resize(client
->data
.user
.fifo
, info
.input_pool
);
1918 client
->data
.user
.fifo_pool_size
= info
.input_pool
;
1920 if (info
.output_room
>= 1 &&
1921 info
.output_room
<= client
->pool
->size
) {
1922 client
->pool
->room
= info
.output_room
;
1925 return snd_seq_ioctl_get_client_pool(client
, arg
);
1929 /* REMOVE_EVENTS ioctl() */
1930 static int snd_seq_ioctl_remove_events(struct snd_seq_client
*client
,
1933 struct snd_seq_remove_events info
;
1935 if (copy_from_user(&info
, arg
, sizeof(info
)))
1939 * Input mostly not implemented XXX.
1941 if (info
.remove_mode
& SNDRV_SEQ_REMOVE_INPUT
) {
1943 * No restrictions so for a user client we can clear
1946 if (client
->type
== USER_CLIENT
)
1947 snd_seq_fifo_clear(client
->data
.user
.fifo
);
1950 if (info
.remove_mode
& SNDRV_SEQ_REMOVE_OUTPUT
)
1951 snd_seq_queue_remove_cells(client
->number
, &info
);
1958 * get subscription info
1960 static int snd_seq_ioctl_get_subscription(struct snd_seq_client
*client
,
1964 struct snd_seq_client
*sender
= NULL
;
1965 struct snd_seq_client_port
*sport
= NULL
;
1966 struct snd_seq_port_subscribe subs
;
1967 struct snd_seq_subscribers
*p
;
1969 if (copy_from_user(&subs
, arg
, sizeof(subs
)))
1973 if ((sender
= snd_seq_client_use_ptr(subs
.sender
.client
)) == NULL
)
1975 if ((sport
= snd_seq_port_use_ptr(sender
, subs
.sender
.port
)) == NULL
)
1977 p
= snd_seq_port_get_subscription(&sport
->c_src
, &subs
.dest
);
1986 snd_seq_port_unlock(sport
);
1988 snd_seq_client_unlock(sender
);
1990 if (copy_to_user(arg
, &subs
, sizeof(subs
)))
1998 * get subscription info - check only its presence
2000 static int snd_seq_ioctl_query_subs(struct snd_seq_client
*client
,
2003 int result
= -ENXIO
;
2004 struct snd_seq_client
*cptr
= NULL
;
2005 struct snd_seq_client_port
*port
= NULL
;
2006 struct snd_seq_query_subs subs
;
2007 struct snd_seq_port_subs_info
*group
;
2008 struct list_head
*p
;
2011 if (copy_from_user(&subs
, arg
, sizeof(subs
)))
2014 if ((cptr
= snd_seq_client_use_ptr(subs
.root
.client
)) == NULL
)
2016 if ((port
= snd_seq_port_use_ptr(cptr
, subs
.root
.port
)) == NULL
)
2019 switch (subs
.type
) {
2020 case SNDRV_SEQ_QUERY_SUBS_READ
:
2021 group
= &port
->c_src
;
2023 case SNDRV_SEQ_QUERY_SUBS_WRITE
:
2024 group
= &port
->c_dest
;
2030 down_read(&group
->list_mutex
);
2031 /* search for the subscriber */
2032 subs
.num_subs
= group
->count
;
2035 list_for_each(p
, &group
->list_head
) {
2036 if (i
++ == subs
.index
) {
2038 struct snd_seq_subscribers
*s
;
2039 if (subs
.type
== SNDRV_SEQ_QUERY_SUBS_READ
) {
2040 s
= list_entry(p
, struct snd_seq_subscribers
, src_list
);
2041 subs
.addr
= s
->info
.dest
;
2043 s
= list_entry(p
, struct snd_seq_subscribers
, dest_list
);
2044 subs
.addr
= s
->info
.sender
;
2046 subs
.flags
= s
->info
.flags
;
2047 subs
.queue
= s
->info
.queue
;
2052 up_read(&group
->list_mutex
);
2056 snd_seq_port_unlock(port
);
2058 snd_seq_client_unlock(cptr
);
2060 if (copy_to_user(arg
, &subs
, sizeof(subs
)))
2070 static int snd_seq_ioctl_query_next_client(struct snd_seq_client
*client
,
2073 struct snd_seq_client
*cptr
= NULL
;
2074 struct snd_seq_client_info info
;
2076 if (copy_from_user(&info
, arg
, sizeof(info
)))
2079 /* search for next client */
2081 if (info
.client
< 0)
2083 for (; info
.client
< SNDRV_SEQ_MAX_CLIENTS
; info
.client
++) {
2084 cptr
= snd_seq_client_use_ptr(info
.client
);
2091 get_client_info(cptr
, &info
);
2092 snd_seq_client_unlock(cptr
);
2094 if (copy_to_user(arg
, &info
, sizeof(info
)))
2102 static int snd_seq_ioctl_query_next_port(struct snd_seq_client
*client
,
2105 struct snd_seq_client
*cptr
;
2106 struct snd_seq_client_port
*port
= NULL
;
2107 struct snd_seq_port_info info
;
2109 if (copy_from_user(&info
, arg
, sizeof(info
)))
2111 cptr
= snd_seq_client_use_ptr(info
.addr
.client
);
2115 /* search for next port */
2117 port
= snd_seq_port_query_nearest(cptr
, &info
);
2119 snd_seq_client_unlock(cptr
);
2124 info
.addr
= port
->addr
;
2125 snd_seq_get_port_info(port
, &info
);
2126 snd_seq_port_unlock(port
);
2127 snd_seq_client_unlock(cptr
);
2129 if (copy_to_user(arg
, &info
, sizeof(info
)))
2134 /* -------------------------------------------------------- */
2136 static struct seq_ioctl_table
{
2138 int (*func
)(struct snd_seq_client
*client
, void __user
* arg
);
2139 } ioctl_tables
[] = {
2140 { SNDRV_SEQ_IOCTL_SYSTEM_INFO
, snd_seq_ioctl_system_info
},
2141 { SNDRV_SEQ_IOCTL_RUNNING_MODE
, snd_seq_ioctl_running_mode
},
2142 { SNDRV_SEQ_IOCTL_GET_CLIENT_INFO
, snd_seq_ioctl_get_client_info
},
2143 { SNDRV_SEQ_IOCTL_SET_CLIENT_INFO
, snd_seq_ioctl_set_client_info
},
2144 { SNDRV_SEQ_IOCTL_CREATE_PORT
, snd_seq_ioctl_create_port
},
2145 { SNDRV_SEQ_IOCTL_DELETE_PORT
, snd_seq_ioctl_delete_port
},
2146 { SNDRV_SEQ_IOCTL_GET_PORT_INFO
, snd_seq_ioctl_get_port_info
},
2147 { SNDRV_SEQ_IOCTL_SET_PORT_INFO
, snd_seq_ioctl_set_port_info
},
2148 { SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT
, snd_seq_ioctl_subscribe_port
},
2149 { SNDRV_SEQ_IOCTL_UNSUBSCRIBE_PORT
, snd_seq_ioctl_unsubscribe_port
},
2150 { SNDRV_SEQ_IOCTL_CREATE_QUEUE
, snd_seq_ioctl_create_queue
},
2151 { SNDRV_SEQ_IOCTL_DELETE_QUEUE
, snd_seq_ioctl_delete_queue
},
2152 { SNDRV_SEQ_IOCTL_GET_QUEUE_INFO
, snd_seq_ioctl_get_queue_info
},
2153 { SNDRV_SEQ_IOCTL_SET_QUEUE_INFO
, snd_seq_ioctl_set_queue_info
},
2154 { SNDRV_SEQ_IOCTL_GET_NAMED_QUEUE
, snd_seq_ioctl_get_named_queue
},
2155 { SNDRV_SEQ_IOCTL_GET_QUEUE_STATUS
, snd_seq_ioctl_get_queue_status
},
2156 { SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO
, snd_seq_ioctl_get_queue_tempo
},
2157 { SNDRV_SEQ_IOCTL_SET_QUEUE_TEMPO
, snd_seq_ioctl_set_queue_tempo
},
2158 { SNDRV_SEQ_IOCTL_GET_QUEUE_TIMER
, snd_seq_ioctl_get_queue_timer
},
2159 { SNDRV_SEQ_IOCTL_SET_QUEUE_TIMER
, snd_seq_ioctl_set_queue_timer
},
2160 { SNDRV_SEQ_IOCTL_GET_QUEUE_CLIENT
, snd_seq_ioctl_get_queue_client
},
2161 { SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT
, snd_seq_ioctl_set_queue_client
},
2162 { SNDRV_SEQ_IOCTL_GET_CLIENT_POOL
, snd_seq_ioctl_get_client_pool
},
2163 { SNDRV_SEQ_IOCTL_SET_CLIENT_POOL
, snd_seq_ioctl_set_client_pool
},
2164 { SNDRV_SEQ_IOCTL_GET_SUBSCRIPTION
, snd_seq_ioctl_get_subscription
},
2165 { SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT
, snd_seq_ioctl_query_next_client
},
2166 { SNDRV_SEQ_IOCTL_QUERY_NEXT_PORT
, snd_seq_ioctl_query_next_port
},
2167 { SNDRV_SEQ_IOCTL_REMOVE_EVENTS
, snd_seq_ioctl_remove_events
},
2168 { SNDRV_SEQ_IOCTL_QUERY_SUBS
, snd_seq_ioctl_query_subs
},
2172 static int snd_seq_do_ioctl(struct snd_seq_client
*client
, unsigned int cmd
,
2175 struct seq_ioctl_table
*p
;
2178 case SNDRV_SEQ_IOCTL_PVERSION
:
2179 /* return sequencer version number */
2180 return put_user(SNDRV_SEQ_VERSION
, (int __user
*)arg
) ? -EFAULT
: 0;
2181 case SNDRV_SEQ_IOCTL_CLIENT_ID
:
2182 /* return the id of this client */
2183 return put_user(client
->number
, (int __user
*)arg
) ? -EFAULT
: 0;
2188 for (p
= ioctl_tables
; p
->cmd
; p
++) {
2190 return p
->func(client
, arg
);
2192 snd_printd("seq unknown ioctl() 0x%x (type='%c', number=0x%2x)\n",
2193 cmd
, _IOC_TYPE(cmd
), _IOC_NR(cmd
));
2198 static long snd_seq_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
2200 struct snd_seq_client
*client
= file
->private_data
;
2202 snd_assert(client
!= NULL
, return -ENXIO
);
2204 return snd_seq_do_ioctl(client
, cmd
, (void __user
*) arg
);
2207 #ifdef CONFIG_COMPAT
2208 #include "seq_compat.c"
2210 #define snd_seq_ioctl_compat NULL
2213 /* -------------------------------------------------------- */
2216 /* exported to kernel modules */
2217 int snd_seq_create_kernel_client(struct snd_card
*card
, int client_index
,
2218 const char *name_fmt
, ...)
2220 struct snd_seq_client
*client
;
2223 snd_assert(! in_interrupt(), return -EBUSY
);
2225 if (card
&& client_index
>= SNDRV_SEQ_CLIENTS_PER_CARD
)
2227 if (card
== NULL
&& client_index
>= SNDRV_SEQ_GLOBAL_CLIENTS
)
2230 if (mutex_lock_interruptible(®ister_mutex
))
2231 return -ERESTARTSYS
;
2234 client_index
+= SNDRV_SEQ_GLOBAL_CLIENTS
2235 + card
->number
* SNDRV_SEQ_CLIENTS_PER_CARD
;
2236 if (client_index
>= SNDRV_SEQ_DYNAMIC_CLIENTS_BEGIN
)
2240 /* empty write queue as default */
2241 client
= seq_create_client1(client_index
, 0);
2242 if (client
== NULL
) {
2243 mutex_unlock(®ister_mutex
);
2244 return -EBUSY
; /* failure code */
2246 usage_alloc(&client_usage
, 1);
2248 client
->accept_input
= 1;
2249 client
->accept_output
= 1;
2251 va_start(args
, name_fmt
);
2252 vsnprintf(client
->name
, sizeof(client
->name
), name_fmt
, args
);
2255 client
->type
= KERNEL_CLIENT
;
2256 mutex_unlock(®ister_mutex
);
2258 /* make others aware this new client */
2259 snd_seq_system_client_ev_client_start(client
->number
);
2261 /* return client number to caller */
2262 return client
->number
;
2265 EXPORT_SYMBOL(snd_seq_create_kernel_client
);
2267 /* exported to kernel modules */
2268 int snd_seq_delete_kernel_client(int client
)
2270 struct snd_seq_client
*ptr
;
2272 snd_assert(! in_interrupt(), return -EBUSY
);
2274 ptr
= clientptr(client
);
2278 seq_free_client(ptr
);
2283 EXPORT_SYMBOL(snd_seq_delete_kernel_client
);
2285 /* skeleton to enqueue event, called from snd_seq_kernel_client_enqueue
2286 * and snd_seq_kernel_client_enqueue_blocking
2288 static int kernel_client_enqueue(int client
, struct snd_seq_event
*ev
,
2289 struct file
*file
, int blocking
,
2290 int atomic
, int hop
)
2292 struct snd_seq_client
*cptr
;
2295 snd_assert(ev
!= NULL
, return -EINVAL
);
2297 if (ev
->type
== SNDRV_SEQ_EVENT_NONE
)
2298 return 0; /* ignore this */
2299 if (ev
->type
== SNDRV_SEQ_EVENT_KERNEL_ERROR
)
2300 return -EINVAL
; /* quoted events can't be enqueued */
2302 /* fill in client number */
2303 ev
->source
.client
= client
;
2305 if (check_event_type_and_length(ev
))
2308 cptr
= snd_seq_client_use_ptr(client
);
2312 if (! cptr
->accept_output
)
2315 result
= snd_seq_client_enqueue_event(cptr
, ev
, file
, blocking
, atomic
, hop
);
2317 snd_seq_client_unlock(cptr
);
2322 * exported, called by kernel clients to enqueue events (w/o blocking)
2324 * RETURN VALUE: zero if succeed, negative if error
2326 int snd_seq_kernel_client_enqueue(int client
, struct snd_seq_event
* ev
,
2327 int atomic
, int hop
)
2329 return kernel_client_enqueue(client
, ev
, NULL
, 0, atomic
, hop
);
2332 EXPORT_SYMBOL(snd_seq_kernel_client_enqueue
);
2335 * exported, called by kernel clients to enqueue events (with blocking)
2337 * RETURN VALUE: zero if succeed, negative if error
2339 int snd_seq_kernel_client_enqueue_blocking(int client
, struct snd_seq_event
* ev
,
2341 int atomic
, int hop
)
2343 return kernel_client_enqueue(client
, ev
, file
, 1, atomic
, hop
);
2346 EXPORT_SYMBOL(snd_seq_kernel_client_enqueue_blocking
);
2349 * exported, called by kernel clients to dispatch events directly to other
2350 * clients, bypassing the queues. Event time-stamp will be updated.
2352 * RETURN VALUE: negative = delivery failed,
2353 * zero, or positive: the number of delivered events
2355 int snd_seq_kernel_client_dispatch(int client
, struct snd_seq_event
* ev
,
2356 int atomic
, int hop
)
2358 struct snd_seq_client
*cptr
;
2361 snd_assert(ev
!= NULL
, return -EINVAL
);
2363 /* fill in client number */
2364 ev
->queue
= SNDRV_SEQ_QUEUE_DIRECT
;
2365 ev
->source
.client
= client
;
2367 if (check_event_type_and_length(ev
))
2370 cptr
= snd_seq_client_use_ptr(client
);
2374 if (!cptr
->accept_output
)
2377 result
= snd_seq_deliver_event(cptr
, ev
, atomic
, hop
);
2379 snd_seq_client_unlock(cptr
);
2383 EXPORT_SYMBOL(snd_seq_kernel_client_dispatch
);
2386 * exported, called by kernel clients to perform same functions as with
2389 int snd_seq_kernel_client_ctl(int clientid
, unsigned int cmd
, void *arg
)
2391 struct snd_seq_client
*client
;
2395 client
= clientptr(clientid
);
2398 fs
= snd_enter_user();
2399 result
= snd_seq_do_ioctl(client
, cmd
, (void __user
*)arg
);
2404 EXPORT_SYMBOL(snd_seq_kernel_client_ctl
);
2406 /* exported (for OSS emulator) */
2407 int snd_seq_kernel_client_write_poll(int clientid
, struct file
*file
, poll_table
*wait
)
2409 struct snd_seq_client
*client
;
2411 client
= clientptr(clientid
);
2415 if (! snd_seq_write_pool_allocated(client
))
2417 if (snd_seq_pool_poll_wait(client
->pool
, file
, wait
))
2422 EXPORT_SYMBOL(snd_seq_kernel_client_write_poll
);
2424 /*---------------------------------------------------------------------------*/
2426 #ifdef CONFIG_PROC_FS
2430 static void snd_seq_info_dump_subscribers(struct snd_info_buffer
*buffer
,
2431 struct snd_seq_port_subs_info
*group
,
2432 int is_src
, char *msg
)
2434 struct list_head
*p
;
2435 struct snd_seq_subscribers
*s
;
2438 down_read(&group
->list_mutex
);
2439 if (list_empty(&group
->list_head
)) {
2440 up_read(&group
->list_mutex
);
2443 snd_iprintf(buffer
, msg
);
2444 list_for_each(p
, &group
->list_head
) {
2446 s
= list_entry(p
, struct snd_seq_subscribers
, src_list
);
2448 s
= list_entry(p
, struct snd_seq_subscribers
, dest_list
);
2450 snd_iprintf(buffer
, ", ");
2451 snd_iprintf(buffer
, "%d:%d",
2452 is_src
? s
->info
.dest
.client
: s
->info
.sender
.client
,
2453 is_src
? s
->info
.dest
.port
: s
->info
.sender
.port
);
2454 if (s
->info
.flags
& SNDRV_SEQ_PORT_SUBS_TIMESTAMP
)
2455 snd_iprintf(buffer
, "[%c:%d]", ((s
->info
.flags
& SNDRV_SEQ_PORT_SUBS_TIME_REAL
) ? 'r' : 't'), s
->info
.queue
);
2456 if (group
->exclusive
)
2457 snd_iprintf(buffer
, "[ex]");
2459 up_read(&group
->list_mutex
);
2460 snd_iprintf(buffer
, "\n");
2463 #define FLAG_PERM_RD(perm) ((perm) & SNDRV_SEQ_PORT_CAP_READ ? ((perm) & SNDRV_SEQ_PORT_CAP_SUBS_READ ? 'R' : 'r') : '-')
2464 #define FLAG_PERM_WR(perm) ((perm) & SNDRV_SEQ_PORT_CAP_WRITE ? ((perm) & SNDRV_SEQ_PORT_CAP_SUBS_WRITE ? 'W' : 'w') : '-')
2465 #define FLAG_PERM_EX(perm) ((perm) & SNDRV_SEQ_PORT_CAP_NO_EXPORT ? '-' : 'e')
2467 #define FLAG_PERM_DUPLEX(perm) ((perm) & SNDRV_SEQ_PORT_CAP_DUPLEX ? 'X' : '-')
2469 static void snd_seq_info_dump_ports(struct snd_info_buffer
*buffer
,
2470 struct snd_seq_client
*client
)
2472 struct snd_seq_client_port
*p
;
2474 mutex_lock(&client
->ports_mutex
);
2475 list_for_each_entry(p
, &client
->ports_list_head
, list
) {
2476 snd_iprintf(buffer
, " Port %3d : \"%s\" (%c%c%c%c)\n",
2477 p
->addr
.port
, p
->name
,
2478 FLAG_PERM_RD(p
->capability
),
2479 FLAG_PERM_WR(p
->capability
),
2480 FLAG_PERM_EX(p
->capability
),
2481 FLAG_PERM_DUPLEX(p
->capability
));
2482 snd_seq_info_dump_subscribers(buffer
, &p
->c_src
, 1, " Connecting To: ");
2483 snd_seq_info_dump_subscribers(buffer
, &p
->c_dest
, 0, " Connected From: ");
2485 mutex_unlock(&client
->ports_mutex
);
2489 void snd_seq_info_pool(struct snd_info_buffer
*buffer
,
2490 struct snd_seq_pool
*pool
, char *space
);
2492 /* exported to seq_info.c */
2493 void snd_seq_info_clients_read(struct snd_info_entry
*entry
,
2494 struct snd_info_buffer
*buffer
)
2497 struct snd_seq_client
*client
;
2499 snd_iprintf(buffer
, "Client info\n");
2500 snd_iprintf(buffer
, " cur clients : %d\n", client_usage
.cur
);
2501 snd_iprintf(buffer
, " peak clients : %d\n", client_usage
.peak
);
2502 snd_iprintf(buffer
, " max clients : %d\n", SNDRV_SEQ_MAX_CLIENTS
);
2503 snd_iprintf(buffer
, "\n");
2505 /* list the client table */
2506 for (c
= 0; c
< SNDRV_SEQ_MAX_CLIENTS
; c
++) {
2507 client
= snd_seq_client_use_ptr(c
);
2510 if (client
->type
== NO_CLIENT
) {
2511 snd_seq_client_unlock(client
);
2515 snd_iprintf(buffer
, "Client %3d : \"%s\" [%s]\n",
2517 client
->type
== USER_CLIENT
? "User" : "Kernel");
2518 snd_seq_info_dump_ports(buffer
, client
);
2519 if (snd_seq_write_pool_allocated(client
)) {
2520 snd_iprintf(buffer
, " Output pool :\n");
2521 snd_seq_info_pool(buffer
, client
->pool
, " ");
2523 if (client
->type
== USER_CLIENT
&& client
->data
.user
.fifo
&&
2524 client
->data
.user
.fifo
->pool
) {
2525 snd_iprintf(buffer
, " Input pool :\n");
2526 snd_seq_info_pool(buffer
, client
->data
.user
.fifo
->pool
, " ");
2528 snd_seq_client_unlock(client
);
2531 #endif /* CONFIG_PROC_FS */
2533 /*---------------------------------------------------------------------------*/
2540 static const struct file_operations snd_seq_f_ops
=
2542 .owner
= THIS_MODULE
,
2543 .read
= snd_seq_read
,
2544 .write
= snd_seq_write
,
2545 .open
= snd_seq_open
,
2546 .release
= snd_seq_release
,
2547 .poll
= snd_seq_poll
,
2548 .unlocked_ioctl
= snd_seq_ioctl
,
2549 .compat_ioctl
= snd_seq_ioctl_compat
,
2553 * register sequencer device
2555 int __init
snd_sequencer_device_init(void)
2559 if (mutex_lock_interruptible(®ister_mutex
))
2560 return -ERESTARTSYS
;
2562 if ((err
= snd_register_device(SNDRV_DEVICE_TYPE_SEQUENCER
, NULL
, 0,
2563 &snd_seq_f_ops
, NULL
, "seq")) < 0) {
2564 mutex_unlock(®ister_mutex
);
2568 mutex_unlock(®ister_mutex
);
2576 * unregister sequencer device
2578 void __exit
snd_sequencer_device_done(void)
2580 snd_unregister_device(SNDRV_DEVICE_TYPE_SEQUENCER
, NULL
, 0);