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