Merge tag 'v3.10.78' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / sound / core / control.c
1 /*
2 * Routines for driver control interface
3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
4 *
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22 #include <linux/threads.h>
23 #include <linux/interrupt.h>
24 #include <linux/module.h>
25 #include <linux/slab.h>
26 #include <linux/vmalloc.h>
27 #include <linux/time.h>
28 #include <sound/core.h>
29 #include <sound/minors.h>
30 #include <sound/info.h>
31 #include <sound/control.h>
32
33 /* max number of user-defined controls */
34 #define MAX_USER_CONTROLS 32
35 #define MAX_CONTROL_COUNT 1028
36
37 struct snd_kctl_ioctl {
38 struct list_head list; /* list of all ioctls */
39 snd_kctl_ioctl_func_t fioctl;
40 };
41
42 static DECLARE_RWSEM(snd_ioctl_rwsem);
43 static LIST_HEAD(snd_control_ioctls);
44 #ifdef CONFIG_COMPAT
45 static LIST_HEAD(snd_control_compat_ioctls);
46 #endif
47
48 static int snd_ctl_open(struct inode *inode, struct file *file)
49 {
50 unsigned long flags;
51 struct snd_card *card;
52 struct snd_ctl_file *ctl;
53 int err;
54
55 err = nonseekable_open(inode, file);
56 if (err < 0)
57 return err;
58
59 card = snd_lookup_minor_data(iminor(inode), SNDRV_DEVICE_TYPE_CONTROL);
60 if (!card) {
61 err = -ENODEV;
62 goto __error1;
63 }
64 err = snd_card_file_add(card, file);
65 if (err < 0) {
66 err = -ENODEV;
67 goto __error1;
68 }
69 if (!try_module_get(card->module)) {
70 err = -EFAULT;
71 goto __error2;
72 }
73 ctl = kzalloc(sizeof(*ctl), GFP_KERNEL);
74 if (ctl == NULL) {
75 err = -ENOMEM;
76 goto __error;
77 }
78 INIT_LIST_HEAD(&ctl->events);
79 init_waitqueue_head(&ctl->change_sleep);
80 spin_lock_init(&ctl->read_lock);
81 ctl->card = card;
82 ctl->prefer_pcm_subdevice = -1;
83 ctl->prefer_rawmidi_subdevice = -1;
84 ctl->pid = get_pid(task_pid(current));
85 file->private_data = ctl;
86 write_lock_irqsave(&card->ctl_files_rwlock, flags);
87 list_add_tail(&ctl->list, &card->ctl_files);
88 write_unlock_irqrestore(&card->ctl_files_rwlock, flags);
89 snd_card_unref(card);
90 return 0;
91
92 __error:
93 module_put(card->module);
94 __error2:
95 snd_card_file_remove(card, file);
96 __error1:
97 if (card)
98 snd_card_unref(card);
99 return err;
100 }
101
102 static void snd_ctl_empty_read_queue(struct snd_ctl_file * ctl)
103 {
104 unsigned long flags;
105 struct snd_kctl_event *cread;
106
107 spin_lock_irqsave(&ctl->read_lock, flags);
108 while (!list_empty(&ctl->events)) {
109 cread = snd_kctl_event(ctl->events.next);
110 list_del(&cread->list);
111 kfree(cread);
112 }
113 spin_unlock_irqrestore(&ctl->read_lock, flags);
114 }
115
116 static int snd_ctl_release(struct inode *inode, struct file *file)
117 {
118 unsigned long flags;
119 struct snd_card *card;
120 struct snd_ctl_file *ctl;
121 struct snd_kcontrol *control;
122 unsigned int idx;
123
124 ctl = file->private_data;
125 file->private_data = NULL;
126 card = ctl->card;
127 write_lock_irqsave(&card->ctl_files_rwlock, flags);
128 list_del(&ctl->list);
129 write_unlock_irqrestore(&card->ctl_files_rwlock, flags);
130 down_write(&card->controls_rwsem);
131 list_for_each_entry(control, &card->controls, list)
132 for (idx = 0; idx < control->count; idx++)
133 if (control->vd[idx].owner == ctl)
134 control->vd[idx].owner = NULL;
135 up_write(&card->controls_rwsem);
136 snd_ctl_empty_read_queue(ctl);
137 put_pid(ctl->pid);
138 kfree(ctl);
139 module_put(card->module);
140 snd_card_file_remove(card, file);
141 return 0;
142 }
143
144 void snd_ctl_notify(struct snd_card *card, unsigned int mask,
145 struct snd_ctl_elem_id *id)
146 {
147 unsigned long flags;
148 struct snd_ctl_file *ctl;
149 struct snd_kctl_event *ev;
150
151 if (snd_BUG_ON(!card || !id))
152 return;
153 read_lock(&card->ctl_files_rwlock);
154 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
155 card->mixer_oss_change_count++;
156 #endif
157 list_for_each_entry(ctl, &card->ctl_files, list) {
158 if (!ctl->subscribed)
159 continue;
160 spin_lock_irqsave(&ctl->read_lock, flags);
161 list_for_each_entry(ev, &ctl->events, list) {
162 if (ev->id.numid == id->numid) {
163 ev->mask |= mask;
164 goto _found;
165 }
166 }
167 ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
168 if (ev) {
169 ev->id = *id;
170 ev->mask = mask;
171 list_add_tail(&ev->list, &ctl->events);
172 } else {
173 snd_printk(KERN_ERR "No memory available to allocate event\n");
174 }
175 _found:
176 wake_up(&ctl->change_sleep);
177 spin_unlock_irqrestore(&ctl->read_lock, flags);
178 kill_fasync(&ctl->fasync, SIGIO, POLL_IN);
179 }
180 read_unlock(&card->ctl_files_rwlock);
181 }
182
183 EXPORT_SYMBOL(snd_ctl_notify);
184
185 /**
186 * snd_ctl_new - create a control instance from the template
187 * @control: the control template
188 * @access: the default control access
189 *
190 * Allocates a new struct snd_kcontrol instance and copies the given template
191 * to the new instance. It does not copy volatile data (access).
192 *
193 * Return: The pointer of the new instance, or %NULL on failure.
194 */
195 static struct snd_kcontrol *snd_ctl_new(struct snd_kcontrol *control,
196 unsigned int access)
197 {
198 struct snd_kcontrol *kctl;
199 unsigned int idx;
200
201 if (snd_BUG_ON(!control || !control->count))
202 return NULL;
203
204 if (control->count > MAX_CONTROL_COUNT)
205 return NULL;
206
207 kctl = kzalloc(sizeof(*kctl) + sizeof(struct snd_kcontrol_volatile) * control->count, GFP_KERNEL);
208 if (kctl == NULL) {
209 snd_printk(KERN_ERR "Cannot allocate control instance\n");
210 return NULL;
211 }
212 *kctl = *control;
213 for (idx = 0; idx < kctl->count; idx++)
214 kctl->vd[idx].access = access;
215 return kctl;
216 }
217
218 /**
219 * snd_ctl_new1 - create a control instance from the template
220 * @ncontrol: the initialization record
221 * @private_data: the private data to set
222 *
223 * Allocates a new struct snd_kcontrol instance and initialize from the given
224 * template. When the access field of ncontrol is 0, it's assumed as
225 * READWRITE access. When the count field is 0, it's assumes as one.
226 *
227 * Return: The pointer of the newly generated instance, or %NULL on failure.
228 */
229 struct snd_kcontrol *snd_ctl_new1(const struct snd_kcontrol_new *ncontrol,
230 void *private_data)
231 {
232 struct snd_kcontrol kctl;
233 unsigned int access;
234
235 if (snd_BUG_ON(!ncontrol || !ncontrol->info))
236 return NULL;
237 memset(&kctl, 0, sizeof(kctl));
238 kctl.id.iface = ncontrol->iface;
239 kctl.id.device = ncontrol->device;
240 kctl.id.subdevice = ncontrol->subdevice;
241 if (ncontrol->name) {
242 strlcpy(kctl.id.name, ncontrol->name, sizeof(kctl.id.name));
243 if (strcmp(ncontrol->name, kctl.id.name) != 0)
244 snd_printk(KERN_WARNING
245 "Control name '%s' truncated to '%s'\n",
246 ncontrol->name, kctl.id.name);
247 }
248 kctl.id.index = ncontrol->index;
249 kctl.count = ncontrol->count ? ncontrol->count : 1;
250 access = ncontrol->access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
251 (ncontrol->access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|
252 SNDRV_CTL_ELEM_ACCESS_VOLATILE|
253 SNDRV_CTL_ELEM_ACCESS_INACTIVE|
254 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE|
255 SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND|
256 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK));
257 kctl.info = ncontrol->info;
258 kctl.get = ncontrol->get;
259 kctl.put = ncontrol->put;
260 kctl.tlv.p = ncontrol->tlv.p;
261 kctl.private_value = ncontrol->private_value;
262 kctl.private_data = private_data;
263 return snd_ctl_new(&kctl, access);
264 }
265
266 EXPORT_SYMBOL(snd_ctl_new1);
267
268 /**
269 * snd_ctl_free_one - release the control instance
270 * @kcontrol: the control instance
271 *
272 * Releases the control instance created via snd_ctl_new()
273 * or snd_ctl_new1().
274 * Don't call this after the control was added to the card.
275 */
276 void snd_ctl_free_one(struct snd_kcontrol *kcontrol)
277 {
278 if (kcontrol) {
279 if (kcontrol->private_free)
280 kcontrol->private_free(kcontrol);
281 kfree(kcontrol);
282 }
283 }
284
285 EXPORT_SYMBOL(snd_ctl_free_one);
286
287 static bool snd_ctl_remove_numid_conflict(struct snd_card *card,
288 unsigned int count)
289 {
290 struct snd_kcontrol *kctl;
291
292 /* Make sure that the ids assigned to the control do not wrap around */
293 if (card->last_numid >= UINT_MAX - count)
294 card->last_numid = 0;
295
296 list_for_each_entry(kctl, &card->controls, list) {
297 if (kctl->id.numid < card->last_numid + 1 + count &&
298 kctl->id.numid + kctl->count > card->last_numid + 1) {
299 card->last_numid = kctl->id.numid + kctl->count - 1;
300 return true;
301 }
302 }
303 return false;
304 }
305
306 static int snd_ctl_find_hole(struct snd_card *card, unsigned int count)
307 {
308 unsigned int iter = 100000;
309
310 while (snd_ctl_remove_numid_conflict(card, count)) {
311 if (--iter == 0) {
312 /* this situation is very unlikely */
313 snd_printk(KERN_ERR "unable to allocate new control numid\n");
314 return -ENOMEM;
315 }
316 }
317 return 0;
318 }
319
320 /**
321 * snd_ctl_add - add the control instance to the card
322 * @card: the card instance
323 * @kcontrol: the control instance to add
324 *
325 * Adds the control instance created via snd_ctl_new() or
326 * snd_ctl_new1() to the given card. Assigns also an unique
327 * numid used for fast search.
328 *
329 * It frees automatically the control which cannot be added.
330 *
331 * Return: Zero if successful, or a negative error code on failure.
332 *
333 */
334 int snd_ctl_add(struct snd_card *card, struct snd_kcontrol *kcontrol)
335 {
336 struct snd_ctl_elem_id id;
337 unsigned int idx;
338 unsigned int count;
339 int err = -EINVAL;
340
341 if (! kcontrol)
342 return err;
343 if (snd_BUG_ON(!card || !kcontrol->info))
344 goto error;
345 id = kcontrol->id;
346 if (id.index > UINT_MAX - kcontrol->count)
347 goto error;
348
349 down_write(&card->controls_rwsem);
350 if (snd_ctl_find_id(card, &id)) {
351 up_write(&card->controls_rwsem);
352 snd_printd(KERN_ERR "control %i:%i:%i:%s:%i is already present\n",
353 id.iface,
354 id.device,
355 id.subdevice,
356 id.name,
357 id.index);
358 err = -EBUSY;
359 goto error;
360 }
361 if (snd_ctl_find_hole(card, kcontrol->count) < 0) {
362 up_write(&card->controls_rwsem);
363 err = -ENOMEM;
364 goto error;
365 }
366 list_add_tail(&kcontrol->list, &card->controls);
367 card->controls_count += kcontrol->count;
368 kcontrol->id.numid = card->last_numid + 1;
369 card->last_numid += kcontrol->count;
370 count = kcontrol->count;
371 up_write(&card->controls_rwsem);
372 for (idx = 0; idx < count; idx++, id.index++, id.numid++)
373 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_ADD, &id);
374 return 0;
375
376 error:
377 snd_ctl_free_one(kcontrol);
378 return err;
379 }
380
381 EXPORT_SYMBOL(snd_ctl_add);
382
383 /**
384 * snd_ctl_replace - replace the control instance of the card
385 * @card: the card instance
386 * @kcontrol: the control instance to replace
387 * @add_on_replace: add the control if not already added
388 *
389 * Replaces the given control. If the given control does not exist
390 * and the add_on_replace flag is set, the control is added. If the
391 * control exists, it is destroyed first.
392 *
393 * It frees automatically the control which cannot be added or replaced.
394 *
395 * Return: Zero if successful, or a negative error code on failure.
396 */
397 int snd_ctl_replace(struct snd_card *card, struct snd_kcontrol *kcontrol,
398 bool add_on_replace)
399 {
400 struct snd_ctl_elem_id id;
401 unsigned int count;
402 unsigned int idx;
403 struct snd_kcontrol *old;
404 int ret;
405
406 if (!kcontrol)
407 return -EINVAL;
408 if (snd_BUG_ON(!card || !kcontrol->info)) {
409 ret = -EINVAL;
410 goto error;
411 }
412 id = kcontrol->id;
413 down_write(&card->controls_rwsem);
414 old = snd_ctl_find_id(card, &id);
415 if (!old) {
416 if (add_on_replace)
417 goto add;
418 up_write(&card->controls_rwsem);
419 ret = -EINVAL;
420 goto error;
421 }
422 ret = snd_ctl_remove(card, old);
423 if (ret < 0) {
424 up_write(&card->controls_rwsem);
425 goto error;
426 }
427 add:
428 if (snd_ctl_find_hole(card, kcontrol->count) < 0) {
429 up_write(&card->controls_rwsem);
430 ret = -ENOMEM;
431 goto error;
432 }
433 list_add_tail(&kcontrol->list, &card->controls);
434 card->controls_count += kcontrol->count;
435 kcontrol->id.numid = card->last_numid + 1;
436 card->last_numid += kcontrol->count;
437 count = kcontrol->count;
438 up_write(&card->controls_rwsem);
439 for (idx = 0; idx < count; idx++, id.index++, id.numid++)
440 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_ADD, &id);
441 return 0;
442
443 error:
444 snd_ctl_free_one(kcontrol);
445 return ret;
446 }
447 EXPORT_SYMBOL(snd_ctl_replace);
448
449 /**
450 * snd_ctl_remove - remove the control from the card and release it
451 * @card: the card instance
452 * @kcontrol: the control instance to remove
453 *
454 * Removes the control from the card and then releases the instance.
455 * You don't need to call snd_ctl_free_one(). You must be in
456 * the write lock - down_write(&card->controls_rwsem).
457 *
458 * Return: 0 if successful, or a negative error code on failure.
459 */
460 int snd_ctl_remove(struct snd_card *card, struct snd_kcontrol *kcontrol)
461 {
462 struct snd_ctl_elem_id id;
463 unsigned int idx;
464
465 if (snd_BUG_ON(!card || !kcontrol))
466 return -EINVAL;
467 list_del(&kcontrol->list);
468 card->controls_count -= kcontrol->count;
469 id = kcontrol->id;
470 for (idx = 0; idx < kcontrol->count; idx++, id.index++, id.numid++)
471 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_REMOVE, &id);
472 snd_ctl_free_one(kcontrol);
473 return 0;
474 }
475
476 EXPORT_SYMBOL(snd_ctl_remove);
477
478 /**
479 * snd_ctl_remove_id - remove the control of the given id and release it
480 * @card: the card instance
481 * @id: the control id to remove
482 *
483 * Finds the control instance with the given id, removes it from the
484 * card list and releases it.
485 *
486 * Return: 0 if successful, or a negative error code on failure.
487 */
488 int snd_ctl_remove_id(struct snd_card *card, struct snd_ctl_elem_id *id)
489 {
490 struct snd_kcontrol *kctl;
491 int ret;
492
493 down_write(&card->controls_rwsem);
494 kctl = snd_ctl_find_id(card, id);
495 if (kctl == NULL) {
496 up_write(&card->controls_rwsem);
497 return -ENOENT;
498 }
499 ret = snd_ctl_remove(card, kctl);
500 up_write(&card->controls_rwsem);
501 return ret;
502 }
503
504 EXPORT_SYMBOL(snd_ctl_remove_id);
505
506 /**
507 * snd_ctl_remove_user_ctl - remove and release the unlocked user control
508 * @file: active control handle
509 * @id: the control id to remove
510 *
511 * Finds the control instance with the given id, removes it from the
512 * card list and releases it.
513 *
514 * Return: 0 if successful, or a negative error code on failure.
515 */
516 static int snd_ctl_remove_user_ctl(struct snd_ctl_file * file,
517 struct snd_ctl_elem_id *id)
518 {
519 struct snd_card *card = file->card;
520 struct snd_kcontrol *kctl;
521 int idx, ret;
522
523 down_write(&card->controls_rwsem);
524 kctl = snd_ctl_find_id(card, id);
525 if (kctl == NULL) {
526 ret = -ENOENT;
527 goto error;
528 }
529 if (!(kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_USER)) {
530 ret = -EINVAL;
531 goto error;
532 }
533 for (idx = 0; idx < kctl->count; idx++)
534 if (kctl->vd[idx].owner != NULL && kctl->vd[idx].owner != file) {
535 ret = -EBUSY;
536 goto error;
537 }
538 ret = snd_ctl_remove(card, kctl);
539 if (ret < 0)
540 goto error;
541 card->user_ctl_count--;
542 error:
543 up_write(&card->controls_rwsem);
544 return ret;
545 }
546
547 /**
548 * snd_ctl_activate_id - activate/inactivate the control of the given id
549 * @card: the card instance
550 * @id: the control id to activate/inactivate
551 * @active: non-zero to activate
552 *
553 * Finds the control instance with the given id, and activate or
554 * inactivate the control together with notification, if changed.
555 *
556 * Return: 0 if unchanged, 1 if changed, or a negative error code on failure.
557 */
558 int snd_ctl_activate_id(struct snd_card *card, struct snd_ctl_elem_id *id,
559 int active)
560 {
561 struct snd_kcontrol *kctl;
562 struct snd_kcontrol_volatile *vd;
563 unsigned int index_offset;
564 int ret;
565
566 down_write(&card->controls_rwsem);
567 kctl = snd_ctl_find_id(card, id);
568 if (kctl == NULL) {
569 ret = -ENOENT;
570 goto unlock;
571 }
572 index_offset = snd_ctl_get_ioff(kctl, &kctl->id);
573 vd = &kctl->vd[index_offset];
574 ret = 0;
575 if (active) {
576 if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE))
577 goto unlock;
578 vd->access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
579 } else {
580 if (vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE)
581 goto unlock;
582 vd->access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
583 }
584 ret = 1;
585 unlock:
586 up_write(&card->controls_rwsem);
587 if (ret > 0)
588 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_INFO, id);
589 return ret;
590 }
591 EXPORT_SYMBOL_GPL(snd_ctl_activate_id);
592
593 /**
594 * snd_ctl_rename_id - replace the id of a control on the card
595 * @card: the card instance
596 * @src_id: the old id
597 * @dst_id: the new id
598 *
599 * Finds the control with the old id from the card, and replaces the
600 * id with the new one.
601 *
602 * Return: Zero if successful, or a negative error code on failure.
603 */
604 int snd_ctl_rename_id(struct snd_card *card, struct snd_ctl_elem_id *src_id,
605 struct snd_ctl_elem_id *dst_id)
606 {
607 struct snd_kcontrol *kctl;
608
609 down_write(&card->controls_rwsem);
610 kctl = snd_ctl_find_id(card, src_id);
611 if (kctl == NULL) {
612 up_write(&card->controls_rwsem);
613 return -ENOENT;
614 }
615 kctl->id = *dst_id;
616 kctl->id.numid = card->last_numid + 1;
617 card->last_numid += kctl->count;
618 up_write(&card->controls_rwsem);
619 return 0;
620 }
621
622 EXPORT_SYMBOL(snd_ctl_rename_id);
623
624 /**
625 * snd_ctl_find_numid - find the control instance with the given number-id
626 * @card: the card instance
627 * @numid: the number-id to search
628 *
629 * Finds the control instance with the given number-id from the card.
630 *
631 * The caller must down card->controls_rwsem before calling this function
632 * (if the race condition can happen).
633 *
634 * Return: The pointer of the instance if found, or %NULL if not.
635 *
636 */
637 struct snd_kcontrol *snd_ctl_find_numid(struct snd_card *card, unsigned int numid)
638 {
639 struct snd_kcontrol *kctl;
640
641 if (snd_BUG_ON(!card || !numid))
642 return NULL;
643 list_for_each_entry(kctl, &card->controls, list) {
644 if (kctl->id.numid <= numid && kctl->id.numid + kctl->count > numid)
645 return kctl;
646 }
647 return NULL;
648 }
649
650 EXPORT_SYMBOL(snd_ctl_find_numid);
651
652 /**
653 * snd_ctl_find_id - find the control instance with the given id
654 * @card: the card instance
655 * @id: the id to search
656 *
657 * Finds the control instance with the given id from the card.
658 *
659 * The caller must down card->controls_rwsem before calling this function
660 * (if the race condition can happen).
661 *
662 * Return: The pointer of the instance if found, or %NULL if not.
663 *
664 */
665 struct snd_kcontrol *snd_ctl_find_id(struct snd_card *card,
666 struct snd_ctl_elem_id *id)
667 {
668 struct snd_kcontrol *kctl;
669
670 if (snd_BUG_ON(!card || !id))
671 return NULL;
672 if (id->numid != 0)
673 return snd_ctl_find_numid(card, id->numid);
674 list_for_each_entry(kctl, &card->controls, list) {
675 if (kctl->id.iface != id->iface)
676 continue;
677 if (kctl->id.device != id->device)
678 continue;
679 if (kctl->id.subdevice != id->subdevice)
680 continue;
681 if (strncmp(kctl->id.name, id->name, sizeof(kctl->id.name)))
682 continue;
683 if (kctl->id.index > id->index)
684 continue;
685 if (kctl->id.index + kctl->count <= id->index)
686 continue;
687 return kctl;
688 }
689 return NULL;
690 }
691
692 EXPORT_SYMBOL(snd_ctl_find_id);
693
694 static int snd_ctl_card_info(struct snd_card *card, struct snd_ctl_file * ctl,
695 unsigned int cmd, void __user *arg)
696 {
697 struct snd_ctl_card_info *info;
698
699 info = kzalloc(sizeof(*info), GFP_KERNEL);
700 if (! info)
701 return -ENOMEM;
702 down_read(&snd_ioctl_rwsem);
703 info->card = card->number;
704 strlcpy(info->id, card->id, sizeof(info->id));
705 strlcpy(info->driver, card->driver, sizeof(info->driver));
706 strlcpy(info->name, card->shortname, sizeof(info->name));
707 strlcpy(info->longname, card->longname, sizeof(info->longname));
708 strlcpy(info->mixername, card->mixername, sizeof(info->mixername));
709 strlcpy(info->components, card->components, sizeof(info->components));
710 up_read(&snd_ioctl_rwsem);
711 if (copy_to_user(arg, info, sizeof(struct snd_ctl_card_info))) {
712 kfree(info);
713 return -EFAULT;
714 }
715 kfree(info);
716 return 0;
717 }
718
719 static int snd_ctl_elem_list(struct snd_card *card,
720 struct snd_ctl_elem_list __user *_list)
721 {
722 struct list_head *plist;
723 struct snd_ctl_elem_list list;
724 struct snd_kcontrol *kctl;
725 struct snd_ctl_elem_id *dst, *id;
726 unsigned int offset, space, jidx;
727
728 if (copy_from_user(&list, _list, sizeof(list)))
729 return -EFAULT;
730 offset = list.offset;
731 space = list.space;
732 /* try limit maximum space */
733 if (space > 16384)
734 return -ENOMEM;
735 if (space > 0) {
736 /* allocate temporary buffer for atomic operation */
737 dst = vmalloc(space * sizeof(struct snd_ctl_elem_id));
738 if (dst == NULL)
739 return -ENOMEM;
740 down_read(&card->controls_rwsem);
741 list.count = card->controls_count;
742 plist = card->controls.next;
743 while (plist != &card->controls) {
744 if (offset == 0)
745 break;
746 kctl = snd_kcontrol(plist);
747 if (offset < kctl->count)
748 break;
749 offset -= kctl->count;
750 plist = plist->next;
751 }
752 list.used = 0;
753 id = dst;
754 while (space > 0 && plist != &card->controls) {
755 kctl = snd_kcontrol(plist);
756 for (jidx = offset; space > 0 && jidx < kctl->count; jidx++) {
757 snd_ctl_build_ioff(id, kctl, jidx);
758 id++;
759 space--;
760 list.used++;
761 }
762 plist = plist->next;
763 offset = 0;
764 }
765 up_read(&card->controls_rwsem);
766 if (list.used > 0 &&
767 copy_to_user(list.pids, dst,
768 list.used * sizeof(struct snd_ctl_elem_id))) {
769 vfree(dst);
770 return -EFAULT;
771 }
772 vfree(dst);
773 } else {
774 down_read(&card->controls_rwsem);
775 list.count = card->controls_count;
776 up_read(&card->controls_rwsem);
777 }
778 if (copy_to_user(_list, &list, sizeof(list)))
779 return -EFAULT;
780 return 0;
781 }
782
783 static int snd_ctl_elem_info(struct snd_ctl_file *ctl,
784 struct snd_ctl_elem_info *info)
785 {
786 struct snd_card *card = ctl->card;
787 struct snd_kcontrol *kctl;
788 struct snd_kcontrol_volatile *vd;
789 unsigned int index_offset;
790 int result;
791
792 down_read(&card->controls_rwsem);
793 kctl = snd_ctl_find_id(card, &info->id);
794 if (kctl == NULL) {
795 up_read(&card->controls_rwsem);
796 return -ENOENT;
797 }
798 #ifdef CONFIG_SND_DEBUG
799 info->access = 0;
800 #endif
801 result = kctl->info(kctl, info);
802 if (result >= 0) {
803 snd_BUG_ON(info->access);
804 index_offset = snd_ctl_get_ioff(kctl, &info->id);
805 vd = &kctl->vd[index_offset];
806 snd_ctl_build_ioff(&info->id, kctl, index_offset);
807 info->access = vd->access;
808 if (vd->owner) {
809 info->access |= SNDRV_CTL_ELEM_ACCESS_LOCK;
810 if (vd->owner == ctl)
811 info->access |= SNDRV_CTL_ELEM_ACCESS_OWNER;
812 info->owner = pid_vnr(vd->owner->pid);
813 } else {
814 info->owner = -1;
815 }
816 }
817 up_read(&card->controls_rwsem);
818 return result;
819 }
820
821 static int snd_ctl_elem_info_user(struct snd_ctl_file *ctl,
822 struct snd_ctl_elem_info __user *_info)
823 {
824 struct snd_ctl_elem_info info;
825 int result;
826
827 if (copy_from_user(&info, _info, sizeof(info)))
828 return -EFAULT;
829 snd_power_lock(ctl->card);
830 result = snd_power_wait(ctl->card, SNDRV_CTL_POWER_D0);
831 if (result >= 0)
832 result = snd_ctl_elem_info(ctl, &info);
833 snd_power_unlock(ctl->card);
834 if (result >= 0)
835 if (copy_to_user(_info, &info, sizeof(info)))
836 return -EFAULT;
837 return result;
838 }
839
840 static int snd_ctl_elem_read(struct snd_card *card,
841 struct snd_ctl_elem_value *control)
842 {
843 struct snd_kcontrol *kctl;
844 struct snd_kcontrol_volatile *vd;
845 unsigned int index_offset;
846 int result;
847
848 down_read(&card->controls_rwsem);
849 kctl = snd_ctl_find_id(card, &control->id);
850 if (kctl == NULL) {
851 result = -ENOENT;
852 } else {
853 index_offset = snd_ctl_get_ioff(kctl, &control->id);
854 vd = &kctl->vd[index_offset];
855 if ((vd->access & SNDRV_CTL_ELEM_ACCESS_READ) &&
856 kctl->get != NULL) {
857 snd_ctl_build_ioff(&control->id, kctl, index_offset);
858 result = kctl->get(kctl, control);
859 } else
860 result = -EPERM;
861 }
862 up_read(&card->controls_rwsem);
863 return result;
864 }
865
866 static int snd_ctl_elem_read_user(struct snd_card *card,
867 struct snd_ctl_elem_value __user *_control)
868 {
869 struct snd_ctl_elem_value *control;
870 int result;
871
872 control = memdup_user(_control, sizeof(*control));
873 if (IS_ERR(control))
874 return PTR_ERR(control);
875
876 snd_power_lock(card);
877 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
878 if (result >= 0)
879 result = snd_ctl_elem_read(card, control);
880 snd_power_unlock(card);
881 if (result >= 0)
882 if (copy_to_user(_control, control, sizeof(*control)))
883 result = -EFAULT;
884 kfree(control);
885 return result;
886 }
887
888 static int snd_ctl_elem_write(struct snd_card *card, struct snd_ctl_file *file,
889 struct snd_ctl_elem_value *control)
890 {
891 struct snd_kcontrol *kctl;
892 struct snd_kcontrol_volatile *vd;
893 unsigned int index_offset;
894 int result;
895
896 down_read(&card->controls_rwsem);
897 kctl = snd_ctl_find_id(card, &control->id);
898 if (kctl == NULL) {
899 result = -ENOENT;
900 } else {
901 index_offset = snd_ctl_get_ioff(kctl, &control->id);
902 vd = &kctl->vd[index_offset];
903 if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_WRITE) ||
904 kctl->put == NULL ||
905 (file && vd->owner && vd->owner != file)) {
906 result = -EPERM;
907 } else {
908 snd_ctl_build_ioff(&control->id, kctl, index_offset);
909 result = kctl->put(kctl, control);
910 }
911 if (result > 0) {
912 struct snd_ctl_elem_id id = control->id;
913 up_read(&card->controls_rwsem);
914 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &id);
915 return 0;
916 }
917 }
918 up_read(&card->controls_rwsem);
919 return result;
920 }
921
922 static int snd_ctl_elem_write_user(struct snd_ctl_file *file,
923 struct snd_ctl_elem_value __user *_control)
924 {
925 struct snd_ctl_elem_value *control;
926 struct snd_card *card;
927 int result;
928
929 control = memdup_user(_control, sizeof(*control));
930 if (IS_ERR(control))
931 return PTR_ERR(control);
932
933 card = file->card;
934 snd_power_lock(card);
935 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
936 if (result >= 0)
937 result = snd_ctl_elem_write(card, file, control);
938 snd_power_unlock(card);
939 if (result >= 0)
940 if (copy_to_user(_control, control, sizeof(*control)))
941 result = -EFAULT;
942 kfree(control);
943 return result;
944 }
945
946 static int snd_ctl_elem_lock(struct snd_ctl_file *file,
947 struct snd_ctl_elem_id __user *_id)
948 {
949 struct snd_card *card = file->card;
950 struct snd_ctl_elem_id id;
951 struct snd_kcontrol *kctl;
952 struct snd_kcontrol_volatile *vd;
953 int result;
954
955 if (copy_from_user(&id, _id, sizeof(id)))
956 return -EFAULT;
957 down_write(&card->controls_rwsem);
958 kctl = snd_ctl_find_id(card, &id);
959 if (kctl == NULL) {
960 result = -ENOENT;
961 } else {
962 vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
963 if (vd->owner != NULL)
964 result = -EBUSY;
965 else {
966 vd->owner = file;
967 result = 0;
968 }
969 }
970 up_write(&card->controls_rwsem);
971 return result;
972 }
973
974 static int snd_ctl_elem_unlock(struct snd_ctl_file *file,
975 struct snd_ctl_elem_id __user *_id)
976 {
977 struct snd_card *card = file->card;
978 struct snd_ctl_elem_id id;
979 struct snd_kcontrol *kctl;
980 struct snd_kcontrol_volatile *vd;
981 int result;
982
983 if (copy_from_user(&id, _id, sizeof(id)))
984 return -EFAULT;
985 down_write(&card->controls_rwsem);
986 kctl = snd_ctl_find_id(card, &id);
987 if (kctl == NULL) {
988 result = -ENOENT;
989 } else {
990 vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
991 if (vd->owner == NULL)
992 result = -EINVAL;
993 else if (vd->owner != file)
994 result = -EPERM;
995 else {
996 vd->owner = NULL;
997 result = 0;
998 }
999 }
1000 up_write(&card->controls_rwsem);
1001 return result;
1002 }
1003
1004 struct user_element {
1005 struct snd_ctl_elem_info info;
1006 struct snd_card *card;
1007 void *elem_data; /* element data */
1008 unsigned long elem_data_size; /* size of element data in bytes */
1009 void *tlv_data; /* TLV data */
1010 unsigned long tlv_data_size; /* TLV data size */
1011 void *priv_data; /* private data (like strings for enumerated type) */
1012 };
1013
1014 static int snd_ctl_elem_user_info(struct snd_kcontrol *kcontrol,
1015 struct snd_ctl_elem_info *uinfo)
1016 {
1017 struct user_element *ue = kcontrol->private_data;
1018
1019 *uinfo = ue->info;
1020 return 0;
1021 }
1022
1023 static int snd_ctl_elem_user_enum_info(struct snd_kcontrol *kcontrol,
1024 struct snd_ctl_elem_info *uinfo)
1025 {
1026 struct user_element *ue = kcontrol->private_data;
1027 const char *names;
1028 unsigned int item;
1029
1030 item = uinfo->value.enumerated.item;
1031
1032 *uinfo = ue->info;
1033
1034 item = min(item, uinfo->value.enumerated.items - 1);
1035 uinfo->value.enumerated.item = item;
1036
1037 names = ue->priv_data;
1038 for (; item > 0; --item)
1039 names += strlen(names) + 1;
1040 strcpy(uinfo->value.enumerated.name, names);
1041
1042 return 0;
1043 }
1044
1045 static int snd_ctl_elem_user_get(struct snd_kcontrol *kcontrol,
1046 struct snd_ctl_elem_value *ucontrol)
1047 {
1048 struct user_element *ue = kcontrol->private_data;
1049
1050 mutex_lock(&ue->card->user_ctl_lock);
1051 memcpy(&ucontrol->value, ue->elem_data, ue->elem_data_size);
1052 mutex_unlock(&ue->card->user_ctl_lock);
1053 return 0;
1054 }
1055
1056 static int snd_ctl_elem_user_put(struct snd_kcontrol *kcontrol,
1057 struct snd_ctl_elem_value *ucontrol)
1058 {
1059 int change;
1060 struct user_element *ue = kcontrol->private_data;
1061
1062 mutex_lock(&ue->card->user_ctl_lock);
1063 change = memcmp(&ucontrol->value, ue->elem_data, ue->elem_data_size) != 0;
1064 if (change)
1065 memcpy(ue->elem_data, &ucontrol->value, ue->elem_data_size);
1066 mutex_unlock(&ue->card->user_ctl_lock);
1067 return change;
1068 }
1069
1070 static int snd_ctl_elem_user_tlv(struct snd_kcontrol *kcontrol,
1071 int op_flag,
1072 unsigned int size,
1073 unsigned int __user *tlv)
1074 {
1075 struct user_element *ue = kcontrol->private_data;
1076 int change = 0;
1077 void *new_data;
1078
1079 if (op_flag > 0) {
1080 if (size > 1024 * 128) /* sane value */
1081 return -EINVAL;
1082
1083 new_data = memdup_user(tlv, size);
1084 if (IS_ERR(new_data))
1085 return PTR_ERR(new_data);
1086 mutex_lock(&ue->card->user_ctl_lock);
1087 change = ue->tlv_data_size != size;
1088 if (!change)
1089 change = memcmp(ue->tlv_data, new_data, size);
1090 kfree(ue->tlv_data);
1091 ue->tlv_data = new_data;
1092 ue->tlv_data_size = size;
1093 mutex_unlock(&ue->card->user_ctl_lock);
1094 } else {
1095 int ret = 0;
1096
1097 mutex_lock(&ue->card->user_ctl_lock);
1098 if (!ue->tlv_data_size || !ue->tlv_data) {
1099 ret = -ENXIO;
1100 goto err_unlock;
1101 }
1102 if (size < ue->tlv_data_size) {
1103 ret = -ENOSPC;
1104 goto err_unlock;
1105 }
1106 if (copy_to_user(tlv, ue->tlv_data, ue->tlv_data_size))
1107 ret = -EFAULT;
1108 err_unlock:
1109 mutex_unlock(&ue->card->user_ctl_lock);
1110 if (ret)
1111 return ret;
1112 }
1113 return change;
1114 }
1115
1116 static int snd_ctl_elem_init_enum_names(struct user_element *ue)
1117 {
1118 char *names, *p;
1119 size_t buf_len, name_len;
1120 unsigned int i;
1121 const uintptr_t user_ptrval = ue->info.value.enumerated.names_ptr;
1122
1123 if (ue->info.value.enumerated.names_length > 64 * 1024)
1124 return -EINVAL;
1125
1126 names = memdup_user((const void __user *)user_ptrval,
1127 ue->info.value.enumerated.names_length);
1128 if (IS_ERR(names))
1129 return PTR_ERR(names);
1130
1131 /* check that there are enough valid names */
1132 buf_len = ue->info.value.enumerated.names_length;
1133 p = names;
1134 for (i = 0; i < ue->info.value.enumerated.items; ++i) {
1135 name_len = strnlen(p, buf_len);
1136 if (name_len == 0 || name_len >= 64 || name_len == buf_len) {
1137 kfree(names);
1138 return -EINVAL;
1139 }
1140 p += name_len + 1;
1141 buf_len -= name_len + 1;
1142 }
1143
1144 ue->priv_data = names;
1145 ue->info.value.enumerated.names_ptr = 0;
1146
1147 return 0;
1148 }
1149
1150 static void snd_ctl_elem_user_free(struct snd_kcontrol *kcontrol)
1151 {
1152 struct user_element *ue = kcontrol->private_data;
1153
1154 kfree(ue->tlv_data);
1155 kfree(ue->priv_data);
1156 kfree(ue);
1157 }
1158
1159 static int snd_ctl_elem_add(struct snd_ctl_file *file,
1160 struct snd_ctl_elem_info *info, int replace)
1161 {
1162 struct snd_card *card = file->card;
1163 struct snd_kcontrol kctl, *_kctl;
1164 unsigned int access;
1165 long private_size;
1166 struct user_element *ue;
1167 int idx, err;
1168
1169 if (info->count < 1)
1170 return -EINVAL;
1171 if (!*info->id.name)
1172 return -EINVAL;
1173 if (strnlen(info->id.name, sizeof(info->id.name)) >= sizeof(info->id.name))
1174 return -EINVAL;
1175 access = info->access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
1176 (info->access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|
1177 SNDRV_CTL_ELEM_ACCESS_INACTIVE|
1178 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE));
1179 info->id.numid = 0;
1180 memset(&kctl, 0, sizeof(kctl));
1181
1182 if (replace) {
1183 err = snd_ctl_remove_user_ctl(file, &info->id);
1184 if (err)
1185 return err;
1186 }
1187
1188 if (card->user_ctl_count >= MAX_USER_CONTROLS)
1189 return -ENOMEM;
1190
1191 memcpy(&kctl.id, &info->id, sizeof(info->id));
1192 kctl.count = info->owner ? info->owner : 1;
1193 access |= SNDRV_CTL_ELEM_ACCESS_USER;
1194 if (info->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED)
1195 kctl.info = snd_ctl_elem_user_enum_info;
1196 else
1197 kctl.info = snd_ctl_elem_user_info;
1198 if (access & SNDRV_CTL_ELEM_ACCESS_READ)
1199 kctl.get = snd_ctl_elem_user_get;
1200 if (access & SNDRV_CTL_ELEM_ACCESS_WRITE)
1201 kctl.put = snd_ctl_elem_user_put;
1202 if (access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE) {
1203 kctl.tlv.c = snd_ctl_elem_user_tlv;
1204 access |= SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1205 }
1206 switch (info->type) {
1207 case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
1208 case SNDRV_CTL_ELEM_TYPE_INTEGER:
1209 private_size = sizeof(long);
1210 if (info->count > 128)
1211 return -EINVAL;
1212 break;
1213 case SNDRV_CTL_ELEM_TYPE_INTEGER64:
1214 private_size = sizeof(long long);
1215 if (info->count > 64)
1216 return -EINVAL;
1217 break;
1218 case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
1219 private_size = sizeof(unsigned int);
1220 if (info->count > 128 || info->value.enumerated.items == 0)
1221 return -EINVAL;
1222 break;
1223 case SNDRV_CTL_ELEM_TYPE_BYTES:
1224 private_size = sizeof(unsigned char);
1225 if (info->count > 512)
1226 return -EINVAL;
1227 break;
1228 case SNDRV_CTL_ELEM_TYPE_IEC958:
1229 private_size = sizeof(struct snd_aes_iec958);
1230 if (info->count != 1)
1231 return -EINVAL;
1232 break;
1233 default:
1234 return -EINVAL;
1235 }
1236 private_size *= info->count;
1237 ue = kzalloc(sizeof(struct user_element) + private_size, GFP_KERNEL);
1238 if (ue == NULL)
1239 return -ENOMEM;
1240 ue->card = card;
1241 ue->info = *info;
1242 ue->info.access = 0;
1243 ue->elem_data = (char *)ue + sizeof(*ue);
1244 ue->elem_data_size = private_size;
1245 if (ue->info.type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) {
1246 err = snd_ctl_elem_init_enum_names(ue);
1247 if (err < 0) {
1248 kfree(ue);
1249 return err;
1250 }
1251 }
1252 kctl.private_free = snd_ctl_elem_user_free;
1253 _kctl = snd_ctl_new(&kctl, access);
1254 if (_kctl == NULL) {
1255 kfree(ue->priv_data);
1256 kfree(ue);
1257 return -ENOMEM;
1258 }
1259 _kctl->private_data = ue;
1260 for (idx = 0; idx < _kctl->count; idx++)
1261 _kctl->vd[idx].owner = file;
1262 err = snd_ctl_add(card, _kctl);
1263 if (err < 0)
1264 return err;
1265
1266 down_write(&card->controls_rwsem);
1267 card->user_ctl_count++;
1268 up_write(&card->controls_rwsem);
1269
1270 return 0;
1271 }
1272
1273 static int snd_ctl_elem_add_user(struct snd_ctl_file *file,
1274 struct snd_ctl_elem_info __user *_info, int replace)
1275 {
1276 struct snd_ctl_elem_info info;
1277 if (copy_from_user(&info, _info, sizeof(info)))
1278 return -EFAULT;
1279 return snd_ctl_elem_add(file, &info, replace);
1280 }
1281
1282 static int snd_ctl_elem_remove(struct snd_ctl_file *file,
1283 struct snd_ctl_elem_id __user *_id)
1284 {
1285 struct snd_ctl_elem_id id;
1286
1287 if (copy_from_user(&id, _id, sizeof(id)))
1288 return -EFAULT;
1289 return snd_ctl_remove_user_ctl(file, &id);
1290 }
1291
1292 static int snd_ctl_subscribe_events(struct snd_ctl_file *file, int __user *ptr)
1293 {
1294 int subscribe;
1295 if (get_user(subscribe, ptr))
1296 return -EFAULT;
1297 if (subscribe < 0) {
1298 subscribe = file->subscribed;
1299 if (put_user(subscribe, ptr))
1300 return -EFAULT;
1301 return 0;
1302 }
1303 if (subscribe) {
1304 file->subscribed = 1;
1305 return 0;
1306 } else if (file->subscribed) {
1307 snd_ctl_empty_read_queue(file);
1308 file->subscribed = 0;
1309 }
1310 return 0;
1311 }
1312
1313 static int snd_ctl_tlv_ioctl(struct snd_ctl_file *file,
1314 struct snd_ctl_tlv __user *_tlv,
1315 int op_flag)
1316 {
1317 struct snd_card *card = file->card;
1318 struct snd_ctl_tlv tlv;
1319 struct snd_kcontrol *kctl;
1320 struct snd_kcontrol_volatile *vd;
1321 unsigned int len;
1322 int err = 0;
1323
1324 if (copy_from_user(&tlv, _tlv, sizeof(tlv)))
1325 return -EFAULT;
1326 if (tlv.length < sizeof(unsigned int) * 2)
1327 return -EINVAL;
1328 down_read(&card->controls_rwsem);
1329 kctl = snd_ctl_find_numid(card, tlv.numid);
1330 if (kctl == NULL) {
1331 err = -ENOENT;
1332 goto __kctl_end;
1333 }
1334 if (kctl->tlv.p == NULL) {
1335 err = -ENXIO;
1336 goto __kctl_end;
1337 }
1338 vd = &kctl->vd[tlv.numid - kctl->id.numid];
1339 if ((op_flag == 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) == 0) ||
1340 (op_flag > 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE) == 0) ||
1341 (op_flag < 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND) == 0)) {
1342 err = -ENXIO;
1343 goto __kctl_end;
1344 }
1345 if (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
1346 if (vd->owner != NULL && vd->owner != file) {
1347 err = -EPERM;
1348 goto __kctl_end;
1349 }
1350 err = kctl->tlv.c(kctl, op_flag, tlv.length, _tlv->tlv);
1351 if (err > 0) {
1352 struct snd_ctl_elem_id id = kctl->id;
1353 up_read(&card->controls_rwsem);
1354 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_TLV, &id);
1355 return 0;
1356 }
1357 } else {
1358 if (op_flag) {
1359 err = -ENXIO;
1360 goto __kctl_end;
1361 }
1362 len = kctl->tlv.p[1] + 2 * sizeof(unsigned int);
1363 if (tlv.length < len) {
1364 err = -ENOMEM;
1365 goto __kctl_end;
1366 }
1367 if (copy_to_user(_tlv->tlv, kctl->tlv.p, len))
1368 err = -EFAULT;
1369 }
1370 __kctl_end:
1371 up_read(&card->controls_rwsem);
1372 return err;
1373 }
1374
1375 static long snd_ctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1376 {
1377 struct snd_ctl_file *ctl;
1378 struct snd_card *card;
1379 struct snd_kctl_ioctl *p;
1380 void __user *argp = (void __user *)arg;
1381 int __user *ip = argp;
1382 int err;
1383
1384 ctl = file->private_data;
1385 card = ctl->card;
1386 if (snd_BUG_ON(!card))
1387 return -ENXIO;
1388 switch (cmd) {
1389 case SNDRV_CTL_IOCTL_PVERSION:
1390 return put_user(SNDRV_CTL_VERSION, ip) ? -EFAULT : 0;
1391 case SNDRV_CTL_IOCTL_CARD_INFO:
1392 return snd_ctl_card_info(card, ctl, cmd, argp);
1393 case SNDRV_CTL_IOCTL_ELEM_LIST:
1394 return snd_ctl_elem_list(card, argp);
1395 case SNDRV_CTL_IOCTL_ELEM_INFO:
1396 return snd_ctl_elem_info_user(ctl, argp);
1397 case SNDRV_CTL_IOCTL_ELEM_READ:
1398 return snd_ctl_elem_read_user(card, argp);
1399 case SNDRV_CTL_IOCTL_ELEM_WRITE:
1400 return snd_ctl_elem_write_user(ctl, argp);
1401 case SNDRV_CTL_IOCTL_ELEM_LOCK:
1402 return snd_ctl_elem_lock(ctl, argp);
1403 case SNDRV_CTL_IOCTL_ELEM_UNLOCK:
1404 return snd_ctl_elem_unlock(ctl, argp);
1405 case SNDRV_CTL_IOCTL_ELEM_ADD:
1406 return snd_ctl_elem_add_user(ctl, argp, 0);
1407 case SNDRV_CTL_IOCTL_ELEM_REPLACE:
1408 return snd_ctl_elem_add_user(ctl, argp, 1);
1409 case SNDRV_CTL_IOCTL_ELEM_REMOVE:
1410 return snd_ctl_elem_remove(ctl, argp);
1411 case SNDRV_CTL_IOCTL_SUBSCRIBE_EVENTS:
1412 return snd_ctl_subscribe_events(ctl, ip);
1413 case SNDRV_CTL_IOCTL_TLV_READ:
1414 return snd_ctl_tlv_ioctl(ctl, argp, 0);
1415 case SNDRV_CTL_IOCTL_TLV_WRITE:
1416 return snd_ctl_tlv_ioctl(ctl, argp, 1);
1417 case SNDRV_CTL_IOCTL_TLV_COMMAND:
1418 return snd_ctl_tlv_ioctl(ctl, argp, -1);
1419 case SNDRV_CTL_IOCTL_POWER:
1420 return -ENOPROTOOPT;
1421 case SNDRV_CTL_IOCTL_POWER_STATE:
1422 #ifdef CONFIG_PM
1423 return put_user(card->power_state, ip) ? -EFAULT : 0;
1424 #else
1425 return put_user(SNDRV_CTL_POWER_D0, ip) ? -EFAULT : 0;
1426 #endif
1427 }
1428 down_read(&snd_ioctl_rwsem);
1429 list_for_each_entry(p, &snd_control_ioctls, list) {
1430 err = p->fioctl(card, ctl, cmd, arg);
1431 if (err != -ENOIOCTLCMD) {
1432 up_read(&snd_ioctl_rwsem);
1433 return err;
1434 }
1435 }
1436 up_read(&snd_ioctl_rwsem);
1437 snd_printdd("unknown ioctl = 0x%x\n", cmd);
1438 return -ENOTTY;
1439 }
1440
1441 static ssize_t snd_ctl_read(struct file *file, char __user *buffer,
1442 size_t count, loff_t * offset)
1443 {
1444 struct snd_ctl_file *ctl;
1445 int err = 0;
1446 ssize_t result = 0;
1447
1448 ctl = file->private_data;
1449 if (snd_BUG_ON(!ctl || !ctl->card))
1450 return -ENXIO;
1451 if (!ctl->subscribed)
1452 return -EBADFD;
1453 if (count < sizeof(struct snd_ctl_event))
1454 return -EINVAL;
1455 spin_lock_irq(&ctl->read_lock);
1456 while (count >= sizeof(struct snd_ctl_event)) {
1457 struct snd_ctl_event ev;
1458 struct snd_kctl_event *kev;
1459 while (list_empty(&ctl->events)) {
1460 wait_queue_t wait;
1461 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1462 err = -EAGAIN;
1463 goto __end_lock;
1464 }
1465 init_waitqueue_entry(&wait, current);
1466 add_wait_queue(&ctl->change_sleep, &wait);
1467 set_current_state(TASK_INTERRUPTIBLE);
1468 spin_unlock_irq(&ctl->read_lock);
1469 schedule();
1470 remove_wait_queue(&ctl->change_sleep, &wait);
1471 if (ctl->card->shutdown)
1472 return -ENODEV;
1473 if (signal_pending(current))
1474 return -ERESTARTSYS;
1475 spin_lock_irq(&ctl->read_lock);
1476 }
1477 kev = snd_kctl_event(ctl->events.next);
1478 ev.type = SNDRV_CTL_EVENT_ELEM;
1479 ev.data.elem.mask = kev->mask;
1480 ev.data.elem.id = kev->id;
1481 list_del(&kev->list);
1482 spin_unlock_irq(&ctl->read_lock);
1483 kfree(kev);
1484 if (copy_to_user(buffer, &ev, sizeof(struct snd_ctl_event))) {
1485 err = -EFAULT;
1486 goto __end;
1487 }
1488 spin_lock_irq(&ctl->read_lock);
1489 buffer += sizeof(struct snd_ctl_event);
1490 count -= sizeof(struct snd_ctl_event);
1491 result += sizeof(struct snd_ctl_event);
1492 }
1493 __end_lock:
1494 spin_unlock_irq(&ctl->read_lock);
1495 __end:
1496 return result > 0 ? result : err;
1497 }
1498
1499 static unsigned int snd_ctl_poll(struct file *file, poll_table * wait)
1500 {
1501 unsigned int mask;
1502 struct snd_ctl_file *ctl;
1503
1504 ctl = file->private_data;
1505 if (!ctl->subscribed)
1506 return 0;
1507 poll_wait(file, &ctl->change_sleep, wait);
1508
1509 mask = 0;
1510 if (!list_empty(&ctl->events))
1511 mask |= POLLIN | POLLRDNORM;
1512
1513 return mask;
1514 }
1515
1516 /*
1517 * register the device-specific control-ioctls.
1518 * called from each device manager like pcm.c, hwdep.c, etc.
1519 */
1520 static int _snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn, struct list_head *lists)
1521 {
1522 struct snd_kctl_ioctl *pn;
1523
1524 pn = kzalloc(sizeof(struct snd_kctl_ioctl), GFP_KERNEL);
1525 if (pn == NULL)
1526 return -ENOMEM;
1527 pn->fioctl = fcn;
1528 down_write(&snd_ioctl_rwsem);
1529 list_add_tail(&pn->list, lists);
1530 up_write(&snd_ioctl_rwsem);
1531 return 0;
1532 }
1533
1534 int snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn)
1535 {
1536 return _snd_ctl_register_ioctl(fcn, &snd_control_ioctls);
1537 }
1538
1539 EXPORT_SYMBOL(snd_ctl_register_ioctl);
1540
1541 #ifdef CONFIG_COMPAT
1542 int snd_ctl_register_ioctl_compat(snd_kctl_ioctl_func_t fcn)
1543 {
1544 return _snd_ctl_register_ioctl(fcn, &snd_control_compat_ioctls);
1545 }
1546
1547 EXPORT_SYMBOL(snd_ctl_register_ioctl_compat);
1548 #endif
1549
1550 /*
1551 * de-register the device-specific control-ioctls.
1552 */
1553 static int _snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn,
1554 struct list_head *lists)
1555 {
1556 struct snd_kctl_ioctl *p;
1557
1558 if (snd_BUG_ON(!fcn))
1559 return -EINVAL;
1560 down_write(&snd_ioctl_rwsem);
1561 list_for_each_entry(p, lists, list) {
1562 if (p->fioctl == fcn) {
1563 list_del(&p->list);
1564 up_write(&snd_ioctl_rwsem);
1565 kfree(p);
1566 return 0;
1567 }
1568 }
1569 up_write(&snd_ioctl_rwsem);
1570 snd_BUG();
1571 return -EINVAL;
1572 }
1573
1574 int snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn)
1575 {
1576 return _snd_ctl_unregister_ioctl(fcn, &snd_control_ioctls);
1577 }
1578
1579 EXPORT_SYMBOL(snd_ctl_unregister_ioctl);
1580
1581 #ifdef CONFIG_COMPAT
1582 int snd_ctl_unregister_ioctl_compat(snd_kctl_ioctl_func_t fcn)
1583 {
1584 return _snd_ctl_unregister_ioctl(fcn, &snd_control_compat_ioctls);
1585 }
1586
1587 EXPORT_SYMBOL(snd_ctl_unregister_ioctl_compat);
1588 #endif
1589
1590 static int snd_ctl_fasync(int fd, struct file * file, int on)
1591 {
1592 struct snd_ctl_file *ctl;
1593
1594 ctl = file->private_data;
1595 return fasync_helper(fd, file, on, &ctl->fasync);
1596 }
1597
1598 /*
1599 * ioctl32 compat
1600 */
1601 #ifdef CONFIG_COMPAT
1602 #include "control_compat.c"
1603 #else
1604 #define snd_ctl_ioctl_compat NULL
1605 #endif
1606
1607 /*
1608 * INIT PART
1609 */
1610
1611 static const struct file_operations snd_ctl_f_ops =
1612 {
1613 .owner = THIS_MODULE,
1614 .read = snd_ctl_read,
1615 .open = snd_ctl_open,
1616 .release = snd_ctl_release,
1617 .llseek = no_llseek,
1618 .poll = snd_ctl_poll,
1619 .unlocked_ioctl = snd_ctl_ioctl,
1620 .compat_ioctl = snd_ctl_ioctl_compat,
1621 .fasync = snd_ctl_fasync,
1622 };
1623
1624 /*
1625 * registration of the control device
1626 */
1627 static int snd_ctl_dev_register(struct snd_device *device)
1628 {
1629 struct snd_card *card = device->device_data;
1630 int err, cardnum;
1631 char name[16];
1632
1633 if (snd_BUG_ON(!card))
1634 return -ENXIO;
1635 cardnum = card->number;
1636 if (snd_BUG_ON(cardnum < 0 || cardnum >= SNDRV_CARDS))
1637 return -ENXIO;
1638 sprintf(name, "controlC%i", cardnum);
1639 if ((err = snd_register_device(SNDRV_DEVICE_TYPE_CONTROL, card, -1,
1640 &snd_ctl_f_ops, card, name)) < 0)
1641 return err;
1642 return 0;
1643 }
1644
1645 /*
1646 * disconnection of the control device
1647 */
1648 static int snd_ctl_dev_disconnect(struct snd_device *device)
1649 {
1650 struct snd_card *card = device->device_data;
1651 struct snd_ctl_file *ctl;
1652 int err, cardnum;
1653
1654 if (snd_BUG_ON(!card))
1655 return -ENXIO;
1656 cardnum = card->number;
1657 if (snd_BUG_ON(cardnum < 0 || cardnum >= SNDRV_CARDS))
1658 return -ENXIO;
1659
1660 read_lock(&card->ctl_files_rwlock);
1661 list_for_each_entry(ctl, &card->ctl_files, list) {
1662 wake_up(&ctl->change_sleep);
1663 kill_fasync(&ctl->fasync, SIGIO, POLL_ERR);
1664 }
1665 read_unlock(&card->ctl_files_rwlock);
1666
1667 if ((err = snd_unregister_device(SNDRV_DEVICE_TYPE_CONTROL,
1668 card, -1)) < 0)
1669 return err;
1670 return 0;
1671 }
1672
1673 /*
1674 * free all controls
1675 */
1676 static int snd_ctl_dev_free(struct snd_device *device)
1677 {
1678 struct snd_card *card = device->device_data;
1679 struct snd_kcontrol *control;
1680
1681 down_write(&card->controls_rwsem);
1682 while (!list_empty(&card->controls)) {
1683 control = snd_kcontrol(card->controls.next);
1684 snd_ctl_remove(card, control);
1685 }
1686 up_write(&card->controls_rwsem);
1687 return 0;
1688 }
1689
1690 /*
1691 * create control core:
1692 * called from init.c
1693 */
1694 int snd_ctl_create(struct snd_card *card)
1695 {
1696 static struct snd_device_ops ops = {
1697 .dev_free = snd_ctl_dev_free,
1698 .dev_register = snd_ctl_dev_register,
1699 .dev_disconnect = snd_ctl_dev_disconnect,
1700 };
1701
1702 if (snd_BUG_ON(!card))
1703 return -ENXIO;
1704 return snd_device_new(card, SNDRV_DEV_CONTROL, card, &ops);
1705 }
1706
1707 /*
1708 * Frequently used control callbacks/helpers
1709 */
1710 int snd_ctl_boolean_mono_info(struct snd_kcontrol *kcontrol,
1711 struct snd_ctl_elem_info *uinfo)
1712 {
1713 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1714 uinfo->count = 1;
1715 uinfo->value.integer.min = 0;
1716 uinfo->value.integer.max = 1;
1717 return 0;
1718 }
1719
1720 EXPORT_SYMBOL(snd_ctl_boolean_mono_info);
1721
1722 int snd_ctl_boolean_stereo_info(struct snd_kcontrol *kcontrol,
1723 struct snd_ctl_elem_info *uinfo)
1724 {
1725 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1726 uinfo->count = 2;
1727 uinfo->value.integer.min = 0;
1728 uinfo->value.integer.max = 1;
1729 return 0;
1730 }
1731
1732 EXPORT_SYMBOL(snd_ctl_boolean_stereo_info);
1733
1734 /**
1735 * snd_ctl_enum_info - fills the info structure for an enumerated control
1736 * @info: the structure to be filled
1737 * @channels: the number of the control's channels; often one
1738 * @items: the number of control values; also the size of @names
1739 * @names: an array containing the names of all control values
1740 *
1741 * Sets all required fields in @info to their appropriate values.
1742 * If the control's accessibility is not the default (readable and writable),
1743 * the caller has to fill @info->access.
1744 *
1745 * Return: Zero.
1746 */
1747 int snd_ctl_enum_info(struct snd_ctl_elem_info *info, unsigned int channels,
1748 unsigned int items, const char *const names[])
1749 {
1750 info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1751 info->count = channels;
1752 info->value.enumerated.items = items;
1753 if (info->value.enumerated.item >= items)
1754 info->value.enumerated.item = items - 1;
1755 strlcpy(info->value.enumerated.name,
1756 names[info->value.enumerated.item],
1757 sizeof(info->value.enumerated.name));
1758 return 0;
1759 }
1760 EXPORT_SYMBOL(snd_ctl_enum_info);