GNU Linux-libre 4.9.337-gnu1
[releases.git] / sound / core / seq / seq_memory.c
1 /*
2  *  ALSA sequencer Memory Manager
3  *  Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
4  *                        Jaroslav Kysela <perex@perex.cz>
5  *                2000 by Takashi Iwai <tiwai@suse.de>
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 <linux/init.h>
24 #include <linux/export.h>
25 #include <linux/slab.h>
26 #include <linux/vmalloc.h>
27 #include <sound/core.h>
28
29 #include <sound/seq_kernel.h>
30 #include "seq_memory.h"
31 #include "seq_queue.h"
32 #include "seq_info.h"
33 #include "seq_lock.h"
34
35 static inline int snd_seq_pool_available(struct snd_seq_pool *pool)
36 {
37         return pool->total_elements - atomic_read(&pool->counter);
38 }
39
40 static inline int snd_seq_output_ok(struct snd_seq_pool *pool)
41 {
42         return snd_seq_pool_available(pool) >= pool->room;
43 }
44
45 /*
46  * Variable length event:
47  * The event like sysex uses variable length type.
48  * The external data may be stored in three different formats.
49  * 1) kernel space
50  *    This is the normal case.
51  *      ext.data.len = length
52  *      ext.data.ptr = buffer pointer
53  * 2) user space
54  *    When an event is generated via read(), the external data is
55  *    kept in user space until expanded.
56  *      ext.data.len = length | SNDRV_SEQ_EXT_USRPTR
57  *      ext.data.ptr = userspace pointer
58  * 3) chained cells
59  *    When the variable length event is enqueued (in prioq or fifo),
60  *    the external data is decomposed to several cells.
61  *      ext.data.len = length | SNDRV_SEQ_EXT_CHAINED
62  *      ext.data.ptr = the additiona cell head
63  *         -> cell.next -> cell.next -> ..
64  */
65
66 /*
67  * exported:
68  * call dump function to expand external data.
69  */
70
71 static int get_var_len(const struct snd_seq_event *event)
72 {
73         if ((event->flags & SNDRV_SEQ_EVENT_LENGTH_MASK) != SNDRV_SEQ_EVENT_LENGTH_VARIABLE)
74                 return -EINVAL;
75
76         return event->data.ext.len & ~SNDRV_SEQ_EXT_MASK;
77 }
78
79 int snd_seq_dump_var_event(const struct snd_seq_event *event,
80                            snd_seq_dump_func_t func, void *private_data)
81 {
82         int len, err;
83         struct snd_seq_event_cell *cell;
84
85         if ((len = get_var_len(event)) <= 0)
86                 return len;
87
88         if (event->data.ext.len & SNDRV_SEQ_EXT_USRPTR) {
89                 char buf[32];
90                 char __user *curptr = (char __force __user *)event->data.ext.ptr;
91                 while (len > 0) {
92                         int size = sizeof(buf);
93                         if (len < size)
94                                 size = len;
95                         if (copy_from_user(buf, curptr, size))
96                                 return -EFAULT;
97                         err = func(private_data, buf, size);
98                         if (err < 0)
99                                 return err;
100                         curptr += size;
101                         len -= size;
102                 }
103                 return 0;
104         }
105         if (!(event->data.ext.len & SNDRV_SEQ_EXT_CHAINED))
106                 return func(private_data, event->data.ext.ptr, len);
107
108         cell = (struct snd_seq_event_cell *)event->data.ext.ptr;
109         for (; len > 0 && cell; cell = cell->next) {
110                 int size = sizeof(struct snd_seq_event);
111                 if (len < size)
112                         size = len;
113                 err = func(private_data, &cell->event, size);
114                 if (err < 0)
115                         return err;
116                 len -= size;
117         }
118         return 0;
119 }
120
121 EXPORT_SYMBOL(snd_seq_dump_var_event);
122
123
124 /*
125  * exported:
126  * expand the variable length event to linear buffer space.
127  */
128
129 static int seq_copy_in_kernel(void *ptr, void *src, int size)
130 {
131         char **bufptr = ptr;
132
133         memcpy(*bufptr, src, size);
134         *bufptr += size;
135         return 0;
136 }
137
138 static int seq_copy_in_user(void *ptr, void *src, int size)
139 {
140         char __user **bufptr = ptr;
141
142         if (copy_to_user(*bufptr, src, size))
143                 return -EFAULT;
144         *bufptr += size;
145         return 0;
146 }
147
148 int snd_seq_expand_var_event(const struct snd_seq_event *event, int count, char *buf,
149                              int in_kernel, int size_aligned)
150 {
151         int len, newlen;
152         int err;
153
154         if ((len = get_var_len(event)) < 0)
155                 return len;
156         newlen = len;
157         if (size_aligned > 0)
158                 newlen = roundup(len, size_aligned);
159         if (count < newlen)
160                 return -EAGAIN;
161
162         if (event->data.ext.len & SNDRV_SEQ_EXT_USRPTR) {
163                 if (! in_kernel)
164                         return -EINVAL;
165                 if (copy_from_user(buf, (void __force __user *)event->data.ext.ptr, len))
166                         return -EFAULT;
167                 return newlen;
168         }
169         err = snd_seq_dump_var_event(event,
170                                      in_kernel ? seq_copy_in_kernel : seq_copy_in_user,
171                                      &buf);
172         return err < 0 ? err : newlen;
173 }
174
175 EXPORT_SYMBOL(snd_seq_expand_var_event);
176
177 /*
178  * release this cell, free extended data if available
179  */
180
181 static inline void free_cell(struct snd_seq_pool *pool,
182                              struct snd_seq_event_cell *cell)
183 {
184         cell->next = pool->free;
185         pool->free = cell;
186         atomic_dec(&pool->counter);
187 }
188
189 void snd_seq_cell_free(struct snd_seq_event_cell * cell)
190 {
191         unsigned long flags;
192         struct snd_seq_pool *pool;
193
194         if (snd_BUG_ON(!cell))
195                 return;
196         pool = cell->pool;
197         if (snd_BUG_ON(!pool))
198                 return;
199
200         spin_lock_irqsave(&pool->lock, flags);
201         free_cell(pool, cell);
202         if (snd_seq_ev_is_variable(&cell->event)) {
203                 if (cell->event.data.ext.len & SNDRV_SEQ_EXT_CHAINED) {
204                         struct snd_seq_event_cell *curp, *nextptr;
205                         curp = cell->event.data.ext.ptr;
206                         for (; curp; curp = nextptr) {
207                                 nextptr = curp->next;
208                                 curp->next = pool->free;
209                                 free_cell(pool, curp);
210                         }
211                 }
212         }
213         if (waitqueue_active(&pool->output_sleep)) {
214                 /* has enough space now? */
215                 if (snd_seq_output_ok(pool))
216                         wake_up(&pool->output_sleep);
217         }
218         spin_unlock_irqrestore(&pool->lock, flags);
219 }
220
221
222 /*
223  * allocate an event cell.
224  */
225 static int snd_seq_cell_alloc(struct snd_seq_pool *pool,
226                               struct snd_seq_event_cell **cellp,
227                               int nonblock, struct file *file,
228                               struct mutex *mutexp)
229 {
230         struct snd_seq_event_cell *cell;
231         unsigned long flags;
232         int err = -EAGAIN;
233         wait_queue_t wait;
234
235         if (pool == NULL)
236                 return -EINVAL;
237
238         *cellp = NULL;
239
240         init_waitqueue_entry(&wait, current);
241         spin_lock_irqsave(&pool->lock, flags);
242         if (pool->ptr == NULL) {        /* not initialized */
243                 pr_debug("ALSA: seq: pool is not initialized\n");
244                 err = -EINVAL;
245                 goto __error;
246         }
247         while (pool->free == NULL && ! nonblock && ! pool->closing) {
248
249                 set_current_state(TASK_INTERRUPTIBLE);
250                 add_wait_queue(&pool->output_sleep, &wait);
251                 spin_unlock_irq(&pool->lock);
252                 if (mutexp)
253                         mutex_unlock(mutexp);
254                 schedule();
255                 if (mutexp)
256                         mutex_lock(mutexp);
257                 spin_lock_irq(&pool->lock);
258                 remove_wait_queue(&pool->output_sleep, &wait);
259                 /* interrupted? */
260                 if (signal_pending(current)) {
261                         err = -ERESTARTSYS;
262                         goto __error;
263                 }
264         }
265         if (pool->closing) { /* closing.. */
266                 err = -ENOMEM;
267                 goto __error;
268         }
269
270         cell = pool->free;
271         if (cell) {
272                 int used;
273                 pool->free = cell->next;
274                 atomic_inc(&pool->counter);
275                 used = atomic_read(&pool->counter);
276                 if (pool->max_used < used)
277                         pool->max_used = used;
278                 pool->event_alloc_success++;
279                 /* clear cell pointers */
280                 cell->next = NULL;
281                 err = 0;
282         } else
283                 pool->event_alloc_failures++;
284         *cellp = cell;
285
286 __error:
287         spin_unlock_irqrestore(&pool->lock, flags);
288         return err;
289 }
290
291
292 /*
293  * duplicate the event to a cell.
294  * if the event has external data, the data is decomposed to additional
295  * cells.
296  */
297 int snd_seq_event_dup(struct snd_seq_pool *pool, struct snd_seq_event *event,
298                       struct snd_seq_event_cell **cellp, int nonblock,
299                       struct file *file, struct mutex *mutexp)
300 {
301         int ncells, err;
302         unsigned int extlen;
303         struct snd_seq_event_cell *cell;
304
305         *cellp = NULL;
306
307         ncells = 0;
308         extlen = 0;
309         if (snd_seq_ev_is_variable(event)) {
310                 extlen = event->data.ext.len & ~SNDRV_SEQ_EXT_MASK;
311                 ncells = (extlen + sizeof(struct snd_seq_event) - 1) / sizeof(struct snd_seq_event);
312         }
313         if (ncells >= pool->total_elements)
314                 return -ENOMEM;
315
316         err = snd_seq_cell_alloc(pool, &cell, nonblock, file, mutexp);
317         if (err < 0)
318                 return err;
319
320         /* copy the event */
321         cell->event = *event;
322
323         /* decompose */
324         if (snd_seq_ev_is_variable(event)) {
325                 int len = extlen;
326                 int is_chained = event->data.ext.len & SNDRV_SEQ_EXT_CHAINED;
327                 int is_usrptr = event->data.ext.len & SNDRV_SEQ_EXT_USRPTR;
328                 struct snd_seq_event_cell *src, *tmp, *tail;
329                 char *buf;
330
331                 cell->event.data.ext.len = extlen | SNDRV_SEQ_EXT_CHAINED;
332                 cell->event.data.ext.ptr = NULL;
333
334                 src = (struct snd_seq_event_cell *)event->data.ext.ptr;
335                 buf = (char *)event->data.ext.ptr;
336                 tail = NULL;
337
338                 while (ncells-- > 0) {
339                         int size = sizeof(struct snd_seq_event);
340                         if (len < size)
341                                 size = len;
342                         err = snd_seq_cell_alloc(pool, &tmp, nonblock, file,
343                                                  mutexp);
344                         if (err < 0)
345                                 goto __error;
346                         if (cell->event.data.ext.ptr == NULL)
347                                 cell->event.data.ext.ptr = tmp;
348                         if (tail)
349                                 tail->next = tmp;
350                         tail = tmp;
351                         /* copy chunk */
352                         if (is_chained && src) {
353                                 tmp->event = src->event;
354                                 src = src->next;
355                         } else if (is_usrptr) {
356                                 if (copy_from_user(&tmp->event, (char __force __user *)buf, size)) {
357                                         err = -EFAULT;
358                                         goto __error;
359                                 }
360                         } else {
361                                 memcpy(&tmp->event, buf, size);
362                         }
363                         buf += size;
364                         len -= size;
365                 }
366         }
367
368         *cellp = cell;
369         return 0;
370
371 __error:
372         snd_seq_cell_free(cell);
373         return err;
374 }
375   
376
377 /* poll wait */
378 int snd_seq_pool_poll_wait(struct snd_seq_pool *pool, struct file *file,
379                            poll_table *wait)
380 {
381         poll_wait(file, &pool->output_sleep, wait);
382         return snd_seq_output_ok(pool);
383 }
384
385
386 /* allocate room specified number of events */
387 int snd_seq_pool_init(struct snd_seq_pool *pool)
388 {
389         int cell;
390         struct snd_seq_event_cell *cellptr;
391         unsigned long flags;
392
393         if (snd_BUG_ON(!pool))
394                 return -EINVAL;
395
396         cellptr = vmalloc(sizeof(struct snd_seq_event_cell) * pool->size);
397         if (!cellptr)
398                 return -ENOMEM;
399
400         /* add new cells to the free cell list */
401         spin_lock_irqsave(&pool->lock, flags);
402         if (pool->ptr) {
403                 spin_unlock_irqrestore(&pool->lock, flags);
404                 vfree(cellptr);
405                 return 0;
406         }
407
408         pool->ptr = cellptr;
409         pool->free = NULL;
410
411         for (cell = 0; cell < pool->size; cell++) {
412                 cellptr = pool->ptr + cell;
413                 cellptr->pool = pool;
414                 cellptr->next = pool->free;
415                 pool->free = cellptr;
416         }
417         pool->room = (pool->size + 1) / 2;
418
419         /* init statistics */
420         pool->max_used = 0;
421         pool->total_elements = pool->size;
422         spin_unlock_irqrestore(&pool->lock, flags);
423         return 0;
424 }
425
426 /* refuse the further insertion to the pool */
427 void snd_seq_pool_mark_closing(struct snd_seq_pool *pool)
428 {
429         unsigned long flags;
430
431         if (snd_BUG_ON(!pool))
432                 return;
433         spin_lock_irqsave(&pool->lock, flags);
434         pool->closing = 1;
435         spin_unlock_irqrestore(&pool->lock, flags);
436 }
437
438 /* remove events */
439 int snd_seq_pool_done(struct snd_seq_pool *pool)
440 {
441         unsigned long flags;
442         struct snd_seq_event_cell *ptr;
443
444         if (snd_BUG_ON(!pool))
445                 return -EINVAL;
446
447         /* wait for closing all threads */
448         if (waitqueue_active(&pool->output_sleep))
449                 wake_up(&pool->output_sleep);
450
451         while (atomic_read(&pool->counter) > 0)
452                 schedule_timeout_uninterruptible(1);
453         
454         /* release all resources */
455         spin_lock_irqsave(&pool->lock, flags);
456         ptr = pool->ptr;
457         pool->ptr = NULL;
458         pool->free = NULL;
459         pool->total_elements = 0;
460         spin_unlock_irqrestore(&pool->lock, flags);
461
462         vfree(ptr);
463
464         spin_lock_irqsave(&pool->lock, flags);
465         pool->closing = 0;
466         spin_unlock_irqrestore(&pool->lock, flags);
467
468         return 0;
469 }
470
471
472 /* init new memory pool */
473 struct snd_seq_pool *snd_seq_pool_new(int poolsize)
474 {
475         struct snd_seq_pool *pool;
476
477         /* create pool block */
478         pool = kzalloc(sizeof(*pool), GFP_KERNEL);
479         if (!pool)
480                 return NULL;
481         spin_lock_init(&pool->lock);
482         pool->ptr = NULL;
483         pool->free = NULL;
484         pool->total_elements = 0;
485         atomic_set(&pool->counter, 0);
486         pool->closing = 0;
487         init_waitqueue_head(&pool->output_sleep);
488         
489         pool->size = poolsize;
490
491         /* init statistics */
492         pool->max_used = 0;
493         return pool;
494 }
495
496 /* remove memory pool */
497 int snd_seq_pool_delete(struct snd_seq_pool **ppool)
498 {
499         struct snd_seq_pool *pool = *ppool;
500
501         *ppool = NULL;
502         if (pool == NULL)
503                 return 0;
504         snd_seq_pool_mark_closing(pool);
505         snd_seq_pool_done(pool);
506         kfree(pool);
507         return 0;
508 }
509
510 /* initialize sequencer memory */
511 int __init snd_sequencer_memory_init(void)
512 {
513         return 0;
514 }
515
516 /* release sequencer memory */
517 void __exit snd_sequencer_memory_done(void)
518 {
519 }
520
521
522 /* exported to seq_clientmgr.c */
523 void snd_seq_info_pool(struct snd_info_buffer *buffer,
524                        struct snd_seq_pool *pool, char *space)
525 {
526         if (pool == NULL)
527                 return;
528         snd_iprintf(buffer, "%sPool size          : %d\n", space, pool->total_elements);
529         snd_iprintf(buffer, "%sCells in use       : %d\n", space, atomic_read(&pool->counter));
530         snd_iprintf(buffer, "%sPeak cells in use  : %d\n", space, pool->max_used);
531         snd_iprintf(buffer, "%sAlloc success      : %d\n", space, pool->event_alloc_success);
532         snd_iprintf(buffer, "%sAlloc failures     : %d\n", space, pool->event_alloc_failures);
533 }