Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * ALSA sequencer Ports
4 * Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
5 * Jaroslav Kysela <perex@perex.cz>
6 */
7
8#include <sound/core.h>
9#include <linux/slab.h>
10#include <linux/module.h>
11#include "seq_system.h"
12#include "seq_ports.h"
13#include "seq_clientmgr.h"
14
15/*
16
17 registration of client ports
18
19 */
20
21
22/*
23
24NOTE: the current implementation of the port structure as a linked list is
25not optimal for clients that have many ports. For sending messages to all
26subscribers of a port we first need to find the address of the port
27structure, which means we have to traverse the list. A direct access table
28(array) would be better, but big preallocated arrays waste memory.
29
30Possible actions:
31
321) leave it this way, a client does normaly does not have more than a few
33ports
34
352) replace the linked list of ports by a array of pointers which is
36dynamicly kmalloced. When a port is added or deleted we can simply allocate
37a new array, copy the corresponding pointers, and delete the old one. We
38then only need a pointer to this array, and an integer that tells us how
39much elements are in array.
40
41*/
42
43/* return pointer to port structure - port is locked if found */
44struct snd_seq_client_port *snd_seq_port_use_ptr(struct snd_seq_client *client,
45 int num)
46{
47 struct snd_seq_client_port *port;
48
49 if (client == NULL)
50 return NULL;
51 read_lock(&client->ports_lock);
52 list_for_each_entry(port, &client->ports_list_head, list) {
53 if (port->addr.port == num) {
54 if (port->closing)
55 break; /* deleting now */
56 snd_use_lock_use(&port->use_lock);
57 read_unlock(&client->ports_lock);
58 return port;
59 }
60 }
61 read_unlock(&client->ports_lock);
62 return NULL; /* not found */
63}
64
65
66/* search for the next port - port is locked if found */
67struct snd_seq_client_port *snd_seq_port_query_nearest(struct snd_seq_client *client,
68 struct snd_seq_port_info *pinfo)
69{
70 int num;
71 struct snd_seq_client_port *port, *found;
72
73 num = pinfo->addr.port;
74 found = NULL;
75 read_lock(&client->ports_lock);
76 list_for_each_entry(port, &client->ports_list_head, list) {
77 if (port->addr.port < num)
78 continue;
79 if (port->addr.port == num) {
80 found = port;
81 break;
82 }
83 if (found == NULL || port->addr.port < found->addr.port)
84 found = port;
85 }
86 if (found) {
87 if (found->closing)
88 found = NULL;
89 else
90 snd_use_lock_use(&found->use_lock);
91 }
92 read_unlock(&client->ports_lock);
93 return found;
94}
95
96
97/* initialize snd_seq_port_subs_info */
98static void port_subs_info_init(struct snd_seq_port_subs_info *grp)
99{
100 INIT_LIST_HEAD(&grp->list_head);
101 grp->count = 0;
102 grp->exclusive = 0;
103 rwlock_init(&grp->list_lock);
104 init_rwsem(&grp->list_mutex);
105 grp->open = NULL;
106 grp->close = NULL;
107}
108
109
110/* create a port, port number is returned (-1 on failure);
111 * the caller needs to unref the port via snd_seq_port_unlock() appropriately
112 */
113struct snd_seq_client_port *snd_seq_create_port(struct snd_seq_client *client,
114 int port)
115{
116 struct snd_seq_client_port *new_port, *p;
117 int num = -1;
118
119 /* sanity check */
120 if (snd_BUG_ON(!client))
121 return NULL;
122
123 if (client->num_ports >= SNDRV_SEQ_MAX_PORTS) {
124 pr_warn("ALSA: seq: too many ports for client %d\n", client->number);
125 return NULL;
126 }
127
128 /* create a new port */
129 new_port = kzalloc(sizeof(*new_port), GFP_KERNEL);
130 if (!new_port)
131 return NULL; /* failure, out of memory */
132 /* init port data */
133 new_port->addr.client = client->number;
134 new_port->addr.port = -1;
135 new_port->owner = THIS_MODULE;
136 sprintf(new_port->name, "port-%d", num);
137 snd_use_lock_init(&new_port->use_lock);
138 port_subs_info_init(&new_port->c_src);
139 port_subs_info_init(&new_port->c_dest);
140 snd_use_lock_use(&new_port->use_lock);
141
142 num = port >= 0 ? port : 0;
143 mutex_lock(&client->ports_mutex);
144 write_lock_irq(&client->ports_lock);
145 list_for_each_entry(p, &client->ports_list_head, list) {
146 if (p->addr.port > num)
147 break;
148 if (port < 0) /* auto-probe mode */
149 num = p->addr.port + 1;
150 }
151 /* insert the new port */
152 list_add_tail(&new_port->list, &p->list);
153 client->num_ports++;
154 new_port->addr.port = num; /* store the port number in the port */
155 sprintf(new_port->name, "port-%d", num);
156 write_unlock_irq(&client->ports_lock);
157 mutex_unlock(&client->ports_mutex);
158
159 return new_port;
160}
161
162/* */
163static int subscribe_port(struct snd_seq_client *client,
164 struct snd_seq_client_port *port,
165 struct snd_seq_port_subs_info *grp,
166 struct snd_seq_port_subscribe *info, int send_ack);
167static int unsubscribe_port(struct snd_seq_client *client,
168 struct snd_seq_client_port *port,
169 struct snd_seq_port_subs_info *grp,
170 struct snd_seq_port_subscribe *info, int send_ack);
171
172
173static struct snd_seq_client_port *get_client_port(struct snd_seq_addr *addr,
174 struct snd_seq_client **cp)
175{
176 struct snd_seq_client_port *p;
177 *cp = snd_seq_client_use_ptr(addr->client);
178 if (*cp) {
179 p = snd_seq_port_use_ptr(*cp, addr->port);
180 if (! p) {
181 snd_seq_client_unlock(*cp);
182 *cp = NULL;
183 }
184 return p;
185 }
186 return NULL;
187}
188
189static void delete_and_unsubscribe_port(struct snd_seq_client *client,
190 struct snd_seq_client_port *port,
191 struct snd_seq_subscribers *subs,
192 bool is_src, bool ack);
193
194static inline struct snd_seq_subscribers *
195get_subscriber(struct list_head *p, bool is_src)
196{
197 if (is_src)
198 return list_entry(p, struct snd_seq_subscribers, src_list);
199 else
200 return list_entry(p, struct snd_seq_subscribers, dest_list);
201}
202
203/*
204 * remove all subscribers on the list
205 * this is called from port_delete, for each src and dest list.
206 */
207static void clear_subscriber_list(struct snd_seq_client *client,
208 struct snd_seq_client_port *port,
209 struct snd_seq_port_subs_info *grp,
210 int is_src)
211{
212 struct list_head *p, *n;
213
214 list_for_each_safe(p, n, &grp->list_head) {
215 struct snd_seq_subscribers *subs;
216 struct snd_seq_client *c;
217 struct snd_seq_client_port *aport;
218
219 subs = get_subscriber(p, is_src);
220 if (is_src)
221 aport = get_client_port(&subs->info.dest, &c);
222 else
223 aport = get_client_port(&subs->info.sender, &c);
224 delete_and_unsubscribe_port(client, port, subs, is_src, false);
225
226 if (!aport) {
227 /* looks like the connected port is being deleted.
228 * we decrease the counter, and when both ports are deleted
229 * remove the subscriber info
230 */
231 if (atomic_dec_and_test(&subs->ref_count))
232 kfree(subs);
233 continue;
234 }
235
236 /* ok we got the connected port */
237 delete_and_unsubscribe_port(c, aport, subs, !is_src, true);
238 kfree(subs);
239 snd_seq_port_unlock(aport);
240 snd_seq_client_unlock(c);
241 }
242}
243
244/* delete port data */
245static int port_delete(struct snd_seq_client *client,
246 struct snd_seq_client_port *port)
247{
248 /* set closing flag and wait for all port access are gone */
249 port->closing = 1;
250 snd_use_lock_sync(&port->use_lock);
251
252 /* clear subscribers info */
253 clear_subscriber_list(client, port, &port->c_src, true);
254 clear_subscriber_list(client, port, &port->c_dest, false);
255
256 if (port->private_free)
257 port->private_free(port->private_data);
258
259 snd_BUG_ON(port->c_src.count != 0);
260 snd_BUG_ON(port->c_dest.count != 0);
261
262 kfree(port);
263 return 0;
264}
265
266
267/* delete a port with the given port id */
268int snd_seq_delete_port(struct snd_seq_client *client, int port)
269{
270 struct snd_seq_client_port *found = NULL, *p;
271
272 mutex_lock(&client->ports_mutex);
273 write_lock_irq(&client->ports_lock);
274 list_for_each_entry(p, &client->ports_list_head, list) {
275 if (p->addr.port == port) {
276 /* ok found. delete from the list at first */
277 list_del(&p->list);
278 client->num_ports--;
279 found = p;
280 break;
281 }
282 }
283 write_unlock_irq(&client->ports_lock);
284 mutex_unlock(&client->ports_mutex);
285 if (found)
286 return port_delete(client, found);
287 else
288 return -ENOENT;
289}
290
291/* delete the all ports belonging to the given client */
292int snd_seq_delete_all_ports(struct snd_seq_client *client)
293{
294 struct list_head deleted_list;
295 struct snd_seq_client_port *port, *tmp;
296
297 /* move the port list to deleted_list, and
298 * clear the port list in the client data.
299 */
300 mutex_lock(&client->ports_mutex);
301 write_lock_irq(&client->ports_lock);
302 if (! list_empty(&client->ports_list_head)) {
303 list_add(&deleted_list, &client->ports_list_head);
304 list_del_init(&client->ports_list_head);
305 } else {
306 INIT_LIST_HEAD(&deleted_list);
307 }
308 client->num_ports = 0;
309 write_unlock_irq(&client->ports_lock);
310
311 /* remove each port in deleted_list */
312 list_for_each_entry_safe(port, tmp, &deleted_list, list) {
313 list_del(&port->list);
314 snd_seq_system_client_ev_port_exit(port->addr.client, port->addr.port);
315 port_delete(client, port);
316 }
317 mutex_unlock(&client->ports_mutex);
318 return 0;
319}
320
321/* set port info fields */
322int snd_seq_set_port_info(struct snd_seq_client_port * port,
323 struct snd_seq_port_info * info)
324{
325 if (snd_BUG_ON(!port || !info))
326 return -EINVAL;
327
328 /* set port name */
329 if (info->name[0])
330 strlcpy(port->name, info->name, sizeof(port->name));
331
332 /* set capabilities */
333 port->capability = info->capability;
334
335 /* get port type */
336 port->type = info->type;
337
338 /* information about supported channels/voices */
339 port->midi_channels = info->midi_channels;
340 port->midi_voices = info->midi_voices;
341 port->synth_voices = info->synth_voices;
342
343 /* timestamping */
344 port->timestamping = (info->flags & SNDRV_SEQ_PORT_FLG_TIMESTAMP) ? 1 : 0;
345 port->time_real = (info->flags & SNDRV_SEQ_PORT_FLG_TIME_REAL) ? 1 : 0;
346 port->time_queue = info->time_queue;
347
348 return 0;
349}
350
351/* get port info fields */
352int snd_seq_get_port_info(struct snd_seq_client_port * port,
353 struct snd_seq_port_info * info)
354{
355 if (snd_BUG_ON(!port || !info))
356 return -EINVAL;
357
358 /* get port name */
359 strlcpy(info->name, port->name, sizeof(info->name));
360
361 /* get capabilities */
362 info->capability = port->capability;
363
364 /* get port type */
365 info->type = port->type;
366
367 /* information about supported channels/voices */
368 info->midi_channels = port->midi_channels;
369 info->midi_voices = port->midi_voices;
370 info->synth_voices = port->synth_voices;
371
372 /* get subscriber counts */
373 info->read_use = port->c_src.count;
374 info->write_use = port->c_dest.count;
375
376 /* timestamping */
377 info->flags = 0;
378 if (port->timestamping) {
379 info->flags |= SNDRV_SEQ_PORT_FLG_TIMESTAMP;
380 if (port->time_real)
381 info->flags |= SNDRV_SEQ_PORT_FLG_TIME_REAL;
382 info->time_queue = port->time_queue;
383 }
384
385 return 0;
386}
387
388
389
390/*
391 * call callback functions (if any):
392 * the callbacks are invoked only when the first (for connection) or
393 * the last subscription (for disconnection) is done. Second or later
394 * subscription results in increment of counter, but no callback is
395 * invoked.
396 * This feature is useful if these callbacks are associated with
397 * initialization or termination of devices (see seq_midi.c).
398 */
399
400static int subscribe_port(struct snd_seq_client *client,
401 struct snd_seq_client_port *port,
402 struct snd_seq_port_subs_info *grp,
403 struct snd_seq_port_subscribe *info,
404 int send_ack)
405{
406 int err = 0;
407
408 if (!try_module_get(port->owner))
409 return -EFAULT;
410 grp->count++;
411 if (grp->open && grp->count == 1) {
412 err = grp->open(port->private_data, info);
413 if (err < 0) {
414 module_put(port->owner);
415 grp->count--;
416 }
417 }
418 if (err >= 0 && send_ack && client->type == USER_CLIENT)
419 snd_seq_client_notify_subscription(port->addr.client, port->addr.port,
420 info, SNDRV_SEQ_EVENT_PORT_SUBSCRIBED);
421
422 return err;
423}
424
425static int unsubscribe_port(struct snd_seq_client *client,
426 struct snd_seq_client_port *port,
427 struct snd_seq_port_subs_info *grp,
428 struct snd_seq_port_subscribe *info,
429 int send_ack)
430{
431 int err = 0;
432
433 if (! grp->count)
434 return -EINVAL;
435 grp->count--;
436 if (grp->close && grp->count == 0)
437 err = grp->close(port->private_data, info);
438 if (send_ack && client->type == USER_CLIENT)
439 snd_seq_client_notify_subscription(port->addr.client, port->addr.port,
440 info, SNDRV_SEQ_EVENT_PORT_UNSUBSCRIBED);
441 module_put(port->owner);
442 return err;
443}
444
445
446
447/* check if both addresses are identical */
448static inline int addr_match(struct snd_seq_addr *r, struct snd_seq_addr *s)
449{
450 return (r->client == s->client) && (r->port == s->port);
451}
452
453/* check the two subscribe info match */
454/* if flags is zero, checks only sender and destination addresses */
455static int match_subs_info(struct snd_seq_port_subscribe *r,
456 struct snd_seq_port_subscribe *s)
457{
458 if (addr_match(&r->sender, &s->sender) &&
459 addr_match(&r->dest, &s->dest)) {
460 if (r->flags && r->flags == s->flags)
461 return r->queue == s->queue;
462 else if (! r->flags)
463 return 1;
464 }
465 return 0;
466}
467
468static int check_and_subscribe_port(struct snd_seq_client *client,
469 struct snd_seq_client_port *port,
470 struct snd_seq_subscribers *subs,
471 bool is_src, bool exclusive, bool ack)
472{
473 struct snd_seq_port_subs_info *grp;
474 struct list_head *p;
475 struct snd_seq_subscribers *s;
476 int err;
477
478 grp = is_src ? &port->c_src : &port->c_dest;
479 err = -EBUSY;
480 down_write(&grp->list_mutex);
481 if (exclusive) {
482 if (!list_empty(&grp->list_head))
483 goto __error;
484 } else {
485 if (grp->exclusive)
486 goto __error;
487 /* check whether already exists */
488 list_for_each(p, &grp->list_head) {
489 s = get_subscriber(p, is_src);
490 if (match_subs_info(&subs->info, &s->info))
491 goto __error;
492 }
493 }
494
495 err = subscribe_port(client, port, grp, &subs->info, ack);
496 if (err < 0) {
497 grp->exclusive = 0;
498 goto __error;
499 }
500
501 /* add to list */
502 write_lock_irq(&grp->list_lock);
503 if (is_src)
504 list_add_tail(&subs->src_list, &grp->list_head);
505 else
506 list_add_tail(&subs->dest_list, &grp->list_head);
507 grp->exclusive = exclusive;
508 atomic_inc(&subs->ref_count);
509 write_unlock_irq(&grp->list_lock);
510 err = 0;
511
512 __error:
513 up_write(&grp->list_mutex);
514 return err;
515}
516
517static void delete_and_unsubscribe_port(struct snd_seq_client *client,
518 struct snd_seq_client_port *port,
519 struct snd_seq_subscribers *subs,
520 bool is_src, bool ack)
521{
522 struct snd_seq_port_subs_info *grp;
523 struct list_head *list;
524 bool empty;
525
526 grp = is_src ? &port->c_src : &port->c_dest;
527 list = is_src ? &subs->src_list : &subs->dest_list;
528 down_write(&grp->list_mutex);
529 write_lock_irq(&grp->list_lock);
530 empty = list_empty(list);
531 if (!empty)
532 list_del_init(list);
533 grp->exclusive = 0;
534 write_unlock_irq(&grp->list_lock);
535
536 if (!empty)
537 unsubscribe_port(client, port, grp, &subs->info, ack);
538 up_write(&grp->list_mutex);
539}
540
541/* connect two ports */
542int snd_seq_port_connect(struct snd_seq_client *connector,
543 struct snd_seq_client *src_client,
544 struct snd_seq_client_port *src_port,
545 struct snd_seq_client *dest_client,
546 struct snd_seq_client_port *dest_port,
547 struct snd_seq_port_subscribe *info)
548{
549 struct snd_seq_subscribers *subs;
550 bool exclusive;
551 int err;
552
553 subs = kzalloc(sizeof(*subs), GFP_KERNEL);
554 if (!subs)
555 return -ENOMEM;
556
557 subs->info = *info;
558 atomic_set(&subs->ref_count, 0);
559 INIT_LIST_HEAD(&subs->src_list);
560 INIT_LIST_HEAD(&subs->dest_list);
561
562 exclusive = !!(info->flags & SNDRV_SEQ_PORT_SUBS_EXCLUSIVE);
563
564 err = check_and_subscribe_port(src_client, src_port, subs, true,
565 exclusive,
566 connector->number != src_client->number);
567 if (err < 0)
568 goto error;
569 err = check_and_subscribe_port(dest_client, dest_port, subs, false,
570 exclusive,
571 connector->number != dest_client->number);
572 if (err < 0)
573 goto error_dest;
574
575 return 0;
576
577 error_dest:
578 delete_and_unsubscribe_port(src_client, src_port, subs, true,
579 connector->number != src_client->number);
580 error:
581 kfree(subs);
582 return err;
583}
584
585/* remove the connection */
586int snd_seq_port_disconnect(struct snd_seq_client *connector,
587 struct snd_seq_client *src_client,
588 struct snd_seq_client_port *src_port,
589 struct snd_seq_client *dest_client,
590 struct snd_seq_client_port *dest_port,
591 struct snd_seq_port_subscribe *info)
592{
593 struct snd_seq_port_subs_info *src = &src_port->c_src;
594 struct snd_seq_subscribers *subs;
595 int err = -ENOENT;
596
597 down_write(&src->list_mutex);
598 /* look for the connection */
599 list_for_each_entry(subs, &src->list_head, src_list) {
600 if (match_subs_info(info, &subs->info)) {
601 atomic_dec(&subs->ref_count); /* mark as not ready */
602 err = 0;
603 break;
604 }
605 }
606 up_write(&src->list_mutex);
607 if (err < 0)
608 return err;
609
610 delete_and_unsubscribe_port(src_client, src_port, subs, true,
611 connector->number != src_client->number);
612 delete_and_unsubscribe_port(dest_client, dest_port, subs, false,
613 connector->number != dest_client->number);
614 kfree(subs);
615 return 0;
616}
617
618
619/* get matched subscriber */
620int snd_seq_port_get_subscription(struct snd_seq_port_subs_info *src_grp,
621 struct snd_seq_addr *dest_addr,
622 struct snd_seq_port_subscribe *subs)
623{
624 struct snd_seq_subscribers *s;
625 int err = -ENOENT;
626
627 down_read(&src_grp->list_mutex);
628 list_for_each_entry(s, &src_grp->list_head, src_list) {
629 if (addr_match(dest_addr, &s->info.dest)) {
630 *subs = s->info;
631 err = 0;
632 break;
633 }
634 }
635 up_read(&src_grp->list_mutex);
636 return err;
637}
638
639/*
640 * Attach a device driver that wants to receive events from the
641 * sequencer. Returns the new port number on success.
642 * A driver that wants to receive the events converted to midi, will
643 * use snd_seq_midisynth_register_port().
644 */
645/* exported */
646int snd_seq_event_port_attach(int client,
647 struct snd_seq_port_callback *pcbp,
648 int cap, int type, int midi_channels,
649 int midi_voices, char *portname)
650{
651 struct snd_seq_port_info portinfo;
652 int ret;
653
654 /* Set up the port */
655 memset(&portinfo, 0, sizeof(portinfo));
656 portinfo.addr.client = client;
657 strlcpy(portinfo.name, portname ? portname : "Unnamed port",
658 sizeof(portinfo.name));
659
660 portinfo.capability = cap;
661 portinfo.type = type;
662 portinfo.kernel = pcbp;
663 portinfo.midi_channels = midi_channels;
664 portinfo.midi_voices = midi_voices;
665
666 /* Create it */
667 ret = snd_seq_kernel_client_ctl(client,
668 SNDRV_SEQ_IOCTL_CREATE_PORT,
669 &portinfo);
670
671 if (ret >= 0)
672 ret = portinfo.addr.port;
673
674 return ret;
675}
676EXPORT_SYMBOL(snd_seq_event_port_attach);
677
678/*
679 * Detach the driver from a port.
680 */
681/* exported */
682int snd_seq_event_port_detach(int client, int port)
683{
684 struct snd_seq_port_info portinfo;
685 int err;
686
687 memset(&portinfo, 0, sizeof(portinfo));
688 portinfo.addr.client = client;
689 portinfo.addr.port = port;
690 err = snd_seq_kernel_client_ctl(client,
691 SNDRV_SEQ_IOCTL_DELETE_PORT,
692 &portinfo);
693
694 return err;
695}
696EXPORT_SYMBOL(snd_seq_event_port_detach);
1/*
2 * ALSA sequencer Ports
3 * Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
4 * Jaroslav Kysela <perex@perex.cz>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#include <sound/core.h>
24#include <linux/slab.h>
25#include <linux/module.h>
26#include "seq_system.h"
27#include "seq_ports.h"
28#include "seq_clientmgr.h"
29
30/*
31
32 registration of client ports
33
34 */
35
36
37/*
38
39NOTE: the current implementation of the port structure as a linked list is
40not optimal for clients that have many ports. For sending messages to all
41subscribers of a port we first need to find the address of the port
42structure, which means we have to traverse the list. A direct access table
43(array) would be better, but big preallocated arrays waste memory.
44
45Possible actions:
46
471) leave it this way, a client does normaly does not have more than a few
48ports
49
502) replace the linked list of ports by a array of pointers which is
51dynamicly kmalloced. When a port is added or deleted we can simply allocate
52a new array, copy the corresponding pointers, and delete the old one. We
53then only need a pointer to this array, and an integer that tells us how
54much elements are in array.
55
56*/
57
58/* return pointer to port structure - port is locked if found */
59struct snd_seq_client_port *snd_seq_port_use_ptr(struct snd_seq_client *client,
60 int num)
61{
62 struct snd_seq_client_port *port;
63
64 if (client == NULL)
65 return NULL;
66 read_lock(&client->ports_lock);
67 list_for_each_entry(port, &client->ports_list_head, list) {
68 if (port->addr.port == num) {
69 if (port->closing)
70 break; /* deleting now */
71 snd_use_lock_use(&port->use_lock);
72 read_unlock(&client->ports_lock);
73 return port;
74 }
75 }
76 read_unlock(&client->ports_lock);
77 return NULL; /* not found */
78}
79
80
81/* search for the next port - port is locked if found */
82struct snd_seq_client_port *snd_seq_port_query_nearest(struct snd_seq_client *client,
83 struct snd_seq_port_info *pinfo)
84{
85 int num;
86 struct snd_seq_client_port *port, *found;
87
88 num = pinfo->addr.port;
89 found = NULL;
90 read_lock(&client->ports_lock);
91 list_for_each_entry(port, &client->ports_list_head, list) {
92 if (port->addr.port < num)
93 continue;
94 if (port->addr.port == num) {
95 found = port;
96 break;
97 }
98 if (found == NULL || port->addr.port < found->addr.port)
99 found = port;
100 }
101 if (found) {
102 if (found->closing)
103 found = NULL;
104 else
105 snd_use_lock_use(&found->use_lock);
106 }
107 read_unlock(&client->ports_lock);
108 return found;
109}
110
111
112/* initialize snd_seq_port_subs_info */
113static void port_subs_info_init(struct snd_seq_port_subs_info *grp)
114{
115 INIT_LIST_HEAD(&grp->list_head);
116 grp->count = 0;
117 grp->exclusive = 0;
118 rwlock_init(&grp->list_lock);
119 init_rwsem(&grp->list_mutex);
120 grp->open = NULL;
121 grp->close = NULL;
122}
123
124
125/* create a port, port number is returned (-1 on failure) */
126struct snd_seq_client_port *snd_seq_create_port(struct snd_seq_client *client,
127 int port)
128{
129 unsigned long flags;
130 struct snd_seq_client_port *new_port, *p;
131 int num = -1;
132
133 /* sanity check */
134 if (snd_BUG_ON(!client))
135 return NULL;
136
137 if (client->num_ports >= SNDRV_SEQ_MAX_PORTS - 1) {
138 pr_warn("ALSA: seq: too many ports for client %d\n", client->number);
139 return NULL;
140 }
141
142 /* create a new port */
143 new_port = kzalloc(sizeof(*new_port), GFP_KERNEL);
144 if (! new_port) {
145 pr_debug("ALSA: seq: malloc failed for registering client port\n");
146 return NULL; /* failure, out of memory */
147 }
148 /* init port data */
149 new_port->addr.client = client->number;
150 new_port->addr.port = -1;
151 new_port->owner = THIS_MODULE;
152 sprintf(new_port->name, "port-%d", num);
153 snd_use_lock_init(&new_port->use_lock);
154 port_subs_info_init(&new_port->c_src);
155 port_subs_info_init(&new_port->c_dest);
156
157 num = port >= 0 ? port : 0;
158 mutex_lock(&client->ports_mutex);
159 write_lock_irqsave(&client->ports_lock, flags);
160 list_for_each_entry(p, &client->ports_list_head, list) {
161 if (p->addr.port > num)
162 break;
163 if (port < 0) /* auto-probe mode */
164 num = p->addr.port + 1;
165 }
166 /* insert the new port */
167 list_add_tail(&new_port->list, &p->list);
168 client->num_ports++;
169 new_port->addr.port = num; /* store the port number in the port */
170 write_unlock_irqrestore(&client->ports_lock, flags);
171 mutex_unlock(&client->ports_mutex);
172 sprintf(new_port->name, "port-%d", num);
173
174 return new_port;
175}
176
177/* */
178enum group_type {
179 SRC_LIST, DEST_LIST
180};
181
182static int subscribe_port(struct snd_seq_client *client,
183 struct snd_seq_client_port *port,
184 struct snd_seq_port_subs_info *grp,
185 struct snd_seq_port_subscribe *info, int send_ack);
186static int unsubscribe_port(struct snd_seq_client *client,
187 struct snd_seq_client_port *port,
188 struct snd_seq_port_subs_info *grp,
189 struct snd_seq_port_subscribe *info, int send_ack);
190
191
192static struct snd_seq_client_port *get_client_port(struct snd_seq_addr *addr,
193 struct snd_seq_client **cp)
194{
195 struct snd_seq_client_port *p;
196 *cp = snd_seq_client_use_ptr(addr->client);
197 if (*cp) {
198 p = snd_seq_port_use_ptr(*cp, addr->port);
199 if (! p) {
200 snd_seq_client_unlock(*cp);
201 *cp = NULL;
202 }
203 return p;
204 }
205 return NULL;
206}
207
208/*
209 * remove all subscribers on the list
210 * this is called from port_delete, for each src and dest list.
211 */
212static void clear_subscriber_list(struct snd_seq_client *client,
213 struct snd_seq_client_port *port,
214 struct snd_seq_port_subs_info *grp,
215 int grptype)
216{
217 struct list_head *p, *n;
218
219 list_for_each_safe(p, n, &grp->list_head) {
220 struct snd_seq_subscribers *subs;
221 struct snd_seq_client *c;
222 struct snd_seq_client_port *aport;
223
224 if (grptype == SRC_LIST) {
225 subs = list_entry(p, struct snd_seq_subscribers, src_list);
226 aport = get_client_port(&subs->info.dest, &c);
227 } else {
228 subs = list_entry(p, struct snd_seq_subscribers, dest_list);
229 aport = get_client_port(&subs->info.sender, &c);
230 }
231 list_del(p);
232 unsubscribe_port(client, port, grp, &subs->info, 0);
233 if (!aport) {
234 /* looks like the connected port is being deleted.
235 * we decrease the counter, and when both ports are deleted
236 * remove the subscriber info
237 */
238 if (atomic_dec_and_test(&subs->ref_count))
239 kfree(subs);
240 } else {
241 /* ok we got the connected port */
242 struct snd_seq_port_subs_info *agrp;
243 agrp = (grptype == SRC_LIST) ? &aport->c_dest : &aport->c_src;
244 down_write(&agrp->list_mutex);
245 if (grptype == SRC_LIST)
246 list_del(&subs->dest_list);
247 else
248 list_del(&subs->src_list);
249 up_write(&agrp->list_mutex);
250 unsubscribe_port(c, aport, agrp, &subs->info, 1);
251 kfree(subs);
252 snd_seq_port_unlock(aport);
253 snd_seq_client_unlock(c);
254 }
255 }
256}
257
258/* delete port data */
259static int port_delete(struct snd_seq_client *client,
260 struct snd_seq_client_port *port)
261{
262 /* set closing flag and wait for all port access are gone */
263 port->closing = 1;
264 snd_use_lock_sync(&port->use_lock);
265
266 /* clear subscribers info */
267 clear_subscriber_list(client, port, &port->c_src, SRC_LIST);
268 clear_subscriber_list(client, port, &port->c_dest, DEST_LIST);
269
270 if (port->private_free)
271 port->private_free(port->private_data);
272
273 snd_BUG_ON(port->c_src.count != 0);
274 snd_BUG_ON(port->c_dest.count != 0);
275
276 kfree(port);
277 return 0;
278}
279
280
281/* delete a port with the given port id */
282int snd_seq_delete_port(struct snd_seq_client *client, int port)
283{
284 unsigned long flags;
285 struct snd_seq_client_port *found = NULL, *p;
286
287 mutex_lock(&client->ports_mutex);
288 write_lock_irqsave(&client->ports_lock, flags);
289 list_for_each_entry(p, &client->ports_list_head, list) {
290 if (p->addr.port == port) {
291 /* ok found. delete from the list at first */
292 list_del(&p->list);
293 client->num_ports--;
294 found = p;
295 break;
296 }
297 }
298 write_unlock_irqrestore(&client->ports_lock, flags);
299 mutex_unlock(&client->ports_mutex);
300 if (found)
301 return port_delete(client, found);
302 else
303 return -ENOENT;
304}
305
306/* delete the all ports belonging to the given client */
307int snd_seq_delete_all_ports(struct snd_seq_client *client)
308{
309 unsigned long flags;
310 struct list_head deleted_list;
311 struct snd_seq_client_port *port, *tmp;
312
313 /* move the port list to deleted_list, and
314 * clear the port list in the client data.
315 */
316 mutex_lock(&client->ports_mutex);
317 write_lock_irqsave(&client->ports_lock, flags);
318 if (! list_empty(&client->ports_list_head)) {
319 list_add(&deleted_list, &client->ports_list_head);
320 list_del_init(&client->ports_list_head);
321 } else {
322 INIT_LIST_HEAD(&deleted_list);
323 }
324 client->num_ports = 0;
325 write_unlock_irqrestore(&client->ports_lock, flags);
326
327 /* remove each port in deleted_list */
328 list_for_each_entry_safe(port, tmp, &deleted_list, list) {
329 list_del(&port->list);
330 snd_seq_system_client_ev_port_exit(port->addr.client, port->addr.port);
331 port_delete(client, port);
332 }
333 mutex_unlock(&client->ports_mutex);
334 return 0;
335}
336
337/* set port info fields */
338int snd_seq_set_port_info(struct snd_seq_client_port * port,
339 struct snd_seq_port_info * info)
340{
341 if (snd_BUG_ON(!port || !info))
342 return -EINVAL;
343
344 /* set port name */
345 if (info->name[0])
346 strlcpy(port->name, info->name, sizeof(port->name));
347
348 /* set capabilities */
349 port->capability = info->capability;
350
351 /* get port type */
352 port->type = info->type;
353
354 /* information about supported channels/voices */
355 port->midi_channels = info->midi_channels;
356 port->midi_voices = info->midi_voices;
357 port->synth_voices = info->synth_voices;
358
359 /* timestamping */
360 port->timestamping = (info->flags & SNDRV_SEQ_PORT_FLG_TIMESTAMP) ? 1 : 0;
361 port->time_real = (info->flags & SNDRV_SEQ_PORT_FLG_TIME_REAL) ? 1 : 0;
362 port->time_queue = info->time_queue;
363
364 return 0;
365}
366
367/* get port info fields */
368int snd_seq_get_port_info(struct snd_seq_client_port * port,
369 struct snd_seq_port_info * info)
370{
371 if (snd_BUG_ON(!port || !info))
372 return -EINVAL;
373
374 /* get port name */
375 strlcpy(info->name, port->name, sizeof(info->name));
376
377 /* get capabilities */
378 info->capability = port->capability;
379
380 /* get port type */
381 info->type = port->type;
382
383 /* information about supported channels/voices */
384 info->midi_channels = port->midi_channels;
385 info->midi_voices = port->midi_voices;
386 info->synth_voices = port->synth_voices;
387
388 /* get subscriber counts */
389 info->read_use = port->c_src.count;
390 info->write_use = port->c_dest.count;
391
392 /* timestamping */
393 info->flags = 0;
394 if (port->timestamping) {
395 info->flags |= SNDRV_SEQ_PORT_FLG_TIMESTAMP;
396 if (port->time_real)
397 info->flags |= SNDRV_SEQ_PORT_FLG_TIME_REAL;
398 info->time_queue = port->time_queue;
399 }
400
401 return 0;
402}
403
404
405
406/*
407 * call callback functions (if any):
408 * the callbacks are invoked only when the first (for connection) or
409 * the last subscription (for disconnection) is done. Second or later
410 * subscription results in increment of counter, but no callback is
411 * invoked.
412 * This feature is useful if these callbacks are associated with
413 * initialization or termination of devices (see seq_midi.c).
414 *
415 * If callback_all option is set, the callback function is invoked
416 * at each connection/disconnection.
417 */
418
419static int subscribe_port(struct snd_seq_client *client,
420 struct snd_seq_client_port *port,
421 struct snd_seq_port_subs_info *grp,
422 struct snd_seq_port_subscribe *info,
423 int send_ack)
424{
425 int err = 0;
426
427 if (!try_module_get(port->owner))
428 return -EFAULT;
429 grp->count++;
430 if (grp->open && (port->callback_all || grp->count == 1)) {
431 err = grp->open(port->private_data, info);
432 if (err < 0) {
433 module_put(port->owner);
434 grp->count--;
435 }
436 }
437 if (err >= 0 && send_ack && client->type == USER_CLIENT)
438 snd_seq_client_notify_subscription(port->addr.client, port->addr.port,
439 info, SNDRV_SEQ_EVENT_PORT_SUBSCRIBED);
440
441 return err;
442}
443
444static int unsubscribe_port(struct snd_seq_client *client,
445 struct snd_seq_client_port *port,
446 struct snd_seq_port_subs_info *grp,
447 struct snd_seq_port_subscribe *info,
448 int send_ack)
449{
450 int err = 0;
451
452 if (! grp->count)
453 return -EINVAL;
454 grp->count--;
455 if (grp->close && (port->callback_all || grp->count == 0))
456 err = grp->close(port->private_data, info);
457 if (send_ack && client->type == USER_CLIENT)
458 snd_seq_client_notify_subscription(port->addr.client, port->addr.port,
459 info, SNDRV_SEQ_EVENT_PORT_UNSUBSCRIBED);
460 module_put(port->owner);
461 return err;
462}
463
464
465
466/* check if both addresses are identical */
467static inline int addr_match(struct snd_seq_addr *r, struct snd_seq_addr *s)
468{
469 return (r->client == s->client) && (r->port == s->port);
470}
471
472/* check the two subscribe info match */
473/* if flags is zero, checks only sender and destination addresses */
474static int match_subs_info(struct snd_seq_port_subscribe *r,
475 struct snd_seq_port_subscribe *s)
476{
477 if (addr_match(&r->sender, &s->sender) &&
478 addr_match(&r->dest, &s->dest)) {
479 if (r->flags && r->flags == s->flags)
480 return r->queue == s->queue;
481 else if (! r->flags)
482 return 1;
483 }
484 return 0;
485}
486
487
488/* connect two ports */
489int snd_seq_port_connect(struct snd_seq_client *connector,
490 struct snd_seq_client *src_client,
491 struct snd_seq_client_port *src_port,
492 struct snd_seq_client *dest_client,
493 struct snd_seq_client_port *dest_port,
494 struct snd_seq_port_subscribe *info)
495{
496 struct snd_seq_port_subs_info *src = &src_port->c_src;
497 struct snd_seq_port_subs_info *dest = &dest_port->c_dest;
498 struct snd_seq_subscribers *subs, *s;
499 int err, src_called = 0;
500 unsigned long flags;
501 int exclusive;
502
503 subs = kzalloc(sizeof(*subs), GFP_KERNEL);
504 if (! subs)
505 return -ENOMEM;
506
507 subs->info = *info;
508 atomic_set(&subs->ref_count, 2);
509
510 down_write(&src->list_mutex);
511 down_write_nested(&dest->list_mutex, SINGLE_DEPTH_NESTING);
512
513 exclusive = info->flags & SNDRV_SEQ_PORT_SUBS_EXCLUSIVE ? 1 : 0;
514 err = -EBUSY;
515 if (exclusive) {
516 if (! list_empty(&src->list_head) || ! list_empty(&dest->list_head))
517 goto __error;
518 } else {
519 if (src->exclusive || dest->exclusive)
520 goto __error;
521 /* check whether already exists */
522 list_for_each_entry(s, &src->list_head, src_list) {
523 if (match_subs_info(info, &s->info))
524 goto __error;
525 }
526 list_for_each_entry(s, &dest->list_head, dest_list) {
527 if (match_subs_info(info, &s->info))
528 goto __error;
529 }
530 }
531
532 if ((err = subscribe_port(src_client, src_port, src, info,
533 connector->number != src_client->number)) < 0)
534 goto __error;
535 src_called = 1;
536
537 if ((err = subscribe_port(dest_client, dest_port, dest, info,
538 connector->number != dest_client->number)) < 0)
539 goto __error;
540
541 /* add to list */
542 write_lock_irqsave(&src->list_lock, flags);
543 // write_lock(&dest->list_lock); // no other lock yet
544 list_add_tail(&subs->src_list, &src->list_head);
545 list_add_tail(&subs->dest_list, &dest->list_head);
546 // write_unlock(&dest->list_lock); // no other lock yet
547 write_unlock_irqrestore(&src->list_lock, flags);
548
549 src->exclusive = dest->exclusive = exclusive;
550
551 up_write(&dest->list_mutex);
552 up_write(&src->list_mutex);
553 return 0;
554
555 __error:
556 if (src_called)
557 unsubscribe_port(src_client, src_port, src, info,
558 connector->number != src_client->number);
559 kfree(subs);
560 up_write(&dest->list_mutex);
561 up_write(&src->list_mutex);
562 return err;
563}
564
565
566/* remove the connection */
567int snd_seq_port_disconnect(struct snd_seq_client *connector,
568 struct snd_seq_client *src_client,
569 struct snd_seq_client_port *src_port,
570 struct snd_seq_client *dest_client,
571 struct snd_seq_client_port *dest_port,
572 struct snd_seq_port_subscribe *info)
573{
574 struct snd_seq_port_subs_info *src = &src_port->c_src;
575 struct snd_seq_port_subs_info *dest = &dest_port->c_dest;
576 struct snd_seq_subscribers *subs;
577 int err = -ENOENT;
578 unsigned long flags;
579
580 down_write(&src->list_mutex);
581 down_write_nested(&dest->list_mutex, SINGLE_DEPTH_NESTING);
582
583 /* look for the connection */
584 list_for_each_entry(subs, &src->list_head, src_list) {
585 if (match_subs_info(info, &subs->info)) {
586 write_lock_irqsave(&src->list_lock, flags);
587 // write_lock(&dest->list_lock); // no lock yet
588 list_del(&subs->src_list);
589 list_del(&subs->dest_list);
590 // write_unlock(&dest->list_lock);
591 write_unlock_irqrestore(&src->list_lock, flags);
592 src->exclusive = dest->exclusive = 0;
593 unsubscribe_port(src_client, src_port, src, info,
594 connector->number != src_client->number);
595 unsubscribe_port(dest_client, dest_port, dest, info,
596 connector->number != dest_client->number);
597 kfree(subs);
598 err = 0;
599 break;
600 }
601 }
602
603 up_write(&dest->list_mutex);
604 up_write(&src->list_mutex);
605 return err;
606}
607
608
609/* get matched subscriber */
610struct snd_seq_subscribers *snd_seq_port_get_subscription(struct snd_seq_port_subs_info *src_grp,
611 struct snd_seq_addr *dest_addr)
612{
613 struct snd_seq_subscribers *s, *found = NULL;
614
615 down_read(&src_grp->list_mutex);
616 list_for_each_entry(s, &src_grp->list_head, src_list) {
617 if (addr_match(dest_addr, &s->info.dest)) {
618 found = s;
619 break;
620 }
621 }
622 up_read(&src_grp->list_mutex);
623 return found;
624}
625
626/*
627 * Attach a device driver that wants to receive events from the
628 * sequencer. Returns the new port number on success.
629 * A driver that wants to receive the events converted to midi, will
630 * use snd_seq_midisynth_register_port().
631 */
632/* exported */
633int snd_seq_event_port_attach(int client,
634 struct snd_seq_port_callback *pcbp,
635 int cap, int type, int midi_channels,
636 int midi_voices, char *portname)
637{
638 struct snd_seq_port_info portinfo;
639 int ret;
640
641 /* Set up the port */
642 memset(&portinfo, 0, sizeof(portinfo));
643 portinfo.addr.client = client;
644 strlcpy(portinfo.name, portname ? portname : "Unamed port",
645 sizeof(portinfo.name));
646
647 portinfo.capability = cap;
648 portinfo.type = type;
649 portinfo.kernel = pcbp;
650 portinfo.midi_channels = midi_channels;
651 portinfo.midi_voices = midi_voices;
652
653 /* Create it */
654 ret = snd_seq_kernel_client_ctl(client,
655 SNDRV_SEQ_IOCTL_CREATE_PORT,
656 &portinfo);
657
658 if (ret >= 0)
659 ret = portinfo.addr.port;
660
661 return ret;
662}
663
664EXPORT_SYMBOL(snd_seq_event_port_attach);
665
666/*
667 * Detach the driver from a port.
668 */
669/* exported */
670int snd_seq_event_port_detach(int client, int port)
671{
672 struct snd_seq_port_info portinfo;
673 int err;
674
675 memset(&portinfo, 0, sizeof(portinfo));
676 portinfo.addr.client = client;
677 portinfo.addr.port = port;
678 err = snd_seq_kernel_client_ctl(client,
679 SNDRV_SEQ_IOCTL_DELETE_PORT,
680 &portinfo);
681
682 return err;
683}
684
685EXPORT_SYMBOL(snd_seq_event_port_detach);