blob: 814d2cf1a34cab0649750acaaecb47e80e7e688e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines for driver control interface
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/threads.h>
23#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/slab.h>
25#include <linux/vmalloc.h>
26#include <linux/time.h>
27#include <sound/core.h>
28#include <sound/minors.h>
29#include <sound/info.h>
30#include <sound/control.h>
31
32/* max number of user-defined controls */
33#define MAX_USER_CONTROLS 32
34
Takashi Iwai82e9bae2005-11-17 13:53:23 +010035struct snd_kctl_ioctl {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 struct list_head list; /* list of all ioctls */
37 snd_kctl_ioctl_func_t fioctl;
Takashi Iwai82e9bae2005-11-17 13:53:23 +010038};
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40static DECLARE_RWSEM(snd_ioctl_rwsem);
41static LIST_HEAD(snd_control_ioctls);
42#ifdef CONFIG_COMPAT
43static LIST_HEAD(snd_control_compat_ioctls);
44#endif
45
46static int snd_ctl_open(struct inode *inode, struct file *file)
47{
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +010049 struct snd_card *card;
50 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int err;
52
Clemens Ladischf87135f2005-11-20 14:06:59 +010053 card = snd_lookup_minor_data(iminor(inode), SNDRV_DEVICE_TYPE_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (!card) {
55 err = -ENODEV;
56 goto __error1;
57 }
58 err = snd_card_file_add(card, file);
59 if (err < 0) {
60 err = -ENODEV;
61 goto __error1;
62 }
63 if (!try_module_get(card->module)) {
64 err = -EFAULT;
65 goto __error2;
66 }
Takashi Iwaica2c0962005-09-09 14:20:23 +020067 ctl = kzalloc(sizeof(*ctl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (ctl == NULL) {
69 err = -ENOMEM;
70 goto __error;
71 }
72 INIT_LIST_HEAD(&ctl->events);
73 init_waitqueue_head(&ctl->change_sleep);
74 spin_lock_init(&ctl->read_lock);
75 ctl->card = card;
Takashi Iwai2529bba2006-08-04 12:57:19 +020076 ctl->prefer_pcm_subdevice = -1;
77 ctl->prefer_rawmidi_subdevice = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 ctl->pid = current->pid;
79 file->private_data = ctl;
80 write_lock_irqsave(&card->ctl_files_rwlock, flags);
81 list_add_tail(&ctl->list, &card->ctl_files);
82 write_unlock_irqrestore(&card->ctl_files_rwlock, flags);
83 return 0;
84
85 __error:
86 module_put(card->module);
87 __error2:
88 snd_card_file_remove(card, file);
89 __error1:
90 return err;
91}
92
Takashi Iwai82e9bae2005-11-17 13:53:23 +010093static void snd_ctl_empty_read_queue(struct snd_ctl_file * ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Borislav Petkov7507e8d2007-10-22 17:11:09 +020095 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +010096 struct snd_kctl_event *cread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Borislav Petkov7507e8d2007-10-22 17:11:09 +020098 spin_lock_irqsave(&ctl->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 while (!list_empty(&ctl->events)) {
100 cread = snd_kctl_event(ctl->events.next);
101 list_del(&cread->list);
102 kfree(cread);
103 }
Borislav Petkov7507e8d2007-10-22 17:11:09 +0200104 spin_unlock_irqrestore(&ctl->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static int snd_ctl_release(struct inode *inode, struct file *file)
108{
109 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100110 struct snd_card *card;
111 struct snd_ctl_file *ctl;
112 struct snd_kcontrol *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unsigned int idx;
114
115 ctl = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 file->private_data = NULL;
117 card = ctl->card;
118 write_lock_irqsave(&card->ctl_files_rwlock, flags);
119 list_del(&ctl->list);
120 write_unlock_irqrestore(&card->ctl_files_rwlock, flags);
121 down_write(&card->controls_rwsem);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200122 list_for_each_entry(control, &card->controls, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 for (idx = 0; idx < control->count; idx++)
124 if (control->vd[idx].owner == ctl)
125 control->vd[idx].owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 up_write(&card->controls_rwsem);
127 snd_ctl_empty_read_queue(ctl);
128 kfree(ctl);
129 module_put(card->module);
130 snd_card_file_remove(card, file);
131 return 0;
132}
133
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100134void snd_ctl_notify(struct snd_card *card, unsigned int mask,
135 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100138 struct snd_ctl_file *ctl;
139 struct snd_kctl_event *ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200141 if (snd_BUG_ON(!card || !id))
142 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 read_lock(&card->ctl_files_rwlock);
144#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
145 card->mixer_oss_change_count++;
146#endif
Johannes Berg9244b2c2006-10-05 16:02:22 +0200147 list_for_each_entry(ctl, &card->ctl_files, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (!ctl->subscribed)
149 continue;
150 spin_lock_irqsave(&ctl->read_lock, flags);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200151 list_for_each_entry(ev, &ctl->events, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (ev->id.numid == id->numid) {
153 ev->mask |= mask;
154 goto _found;
155 }
156 }
Takashi Iwaica2c0962005-09-09 14:20:23 +0200157 ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (ev) {
159 ev->id = *id;
160 ev->mask = mask;
161 list_add_tail(&ev->list, &ctl->events);
162 } else {
163 snd_printk(KERN_ERR "No memory available to allocate event\n");
164 }
165 _found:
166 wake_up(&ctl->change_sleep);
167 spin_unlock_irqrestore(&ctl->read_lock, flags);
168 kill_fasync(&ctl->fasync, SIGIO, POLL_IN);
169 }
170 read_unlock(&card->ctl_files_rwlock);
171}
172
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200173EXPORT_SYMBOL(snd_ctl_notify);
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/**
176 * snd_ctl_new - create a control instance from the template
177 * @control: the control template
178 * @access: the default control access
179 *
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100180 * Allocates a new struct snd_kcontrol instance and copies the given template
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * to the new instance. It does not copy volatile data (access).
182 *
183 * Returns the pointer of the new instance, or NULL on failure.
184 */
Adrian Bunk0b51ba02006-11-20 17:50:17 +0100185static struct snd_kcontrol *snd_ctl_new(struct snd_kcontrol *control,
186 unsigned int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100188 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 unsigned int idx;
190
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200191 if (snd_BUG_ON(!control || !control->count))
192 return NULL;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100193 kctl = kzalloc(sizeof(*kctl) + sizeof(struct snd_kcontrol_volatile) * control->count, GFP_KERNEL);
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100194 if (kctl == NULL) {
195 snd_printk(KERN_ERR "Cannot allocate control instance\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return NULL;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 *kctl = *control;
199 for (idx = 0; idx < kctl->count; idx++)
200 kctl->vd[idx].access = access;
201 return kctl;
202}
203
204/**
205 * snd_ctl_new1 - create a control instance from the template
206 * @ncontrol: the initialization record
207 * @private_data: the private data to set
208 *
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100209 * Allocates a new struct snd_kcontrol instance and initialize from the given
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * template. When the access field of ncontrol is 0, it's assumed as
211 * READWRITE access. When the count field is 0, it's assumes as one.
212 *
213 * Returns the pointer of the newly generated instance, or NULL on failure.
214 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100215struct snd_kcontrol *snd_ctl_new1(const struct snd_kcontrol_new *ncontrol,
216 void *private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100218 struct snd_kcontrol kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 unsigned int access;
220
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200221 if (snd_BUG_ON(!ncontrol || !ncontrol->info))
222 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 memset(&kctl, 0, sizeof(kctl));
224 kctl.id.iface = ncontrol->iface;
225 kctl.id.device = ncontrol->device;
226 kctl.id.subdevice = ncontrol->subdevice;
Mark Brown366840d2008-10-29 14:40:30 +0000227 if (ncontrol->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 strlcpy(kctl.id.name, ncontrol->name, sizeof(kctl.id.name));
Mark Brown366840d2008-10-29 14:40:30 +0000229 if (strcmp(ncontrol->name, kctl.id.name) != 0)
230 snd_printk(KERN_WARNING
231 "Control name '%s' truncated to '%s'\n",
232 ncontrol->name, kctl.id.name);
233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 kctl.id.index = ncontrol->index;
235 kctl.count = ncontrol->count ? ncontrol->count : 1;
236 access = ncontrol->access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200237 (ncontrol->access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|
238 SNDRV_CTL_ELEM_ACCESS_INACTIVE|
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200239 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE|
240 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 kctl.info = ncontrol->info;
242 kctl.get = ncontrol->get;
243 kctl.put = ncontrol->put;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200244 kctl.tlv.p = ncontrol->tlv.p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 kctl.private_value = ncontrol->private_value;
246 kctl.private_data = private_data;
247 return snd_ctl_new(&kctl, access);
248}
249
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200250EXPORT_SYMBOL(snd_ctl_new1);
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/**
253 * snd_ctl_free_one - release the control instance
254 * @kcontrol: the control instance
255 *
256 * Releases the control instance created via snd_ctl_new()
257 * or snd_ctl_new1().
258 * Don't call this after the control was added to the card.
259 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100260void snd_ctl_free_one(struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 if (kcontrol) {
263 if (kcontrol->private_free)
264 kcontrol->private_free(kcontrol);
265 kfree(kcontrol);
266 }
267}
268
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200269EXPORT_SYMBOL(snd_ctl_free_one);
270
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100271static unsigned int snd_ctl_hole_check(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 unsigned int count)
273{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100274 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Johannes Berg9244b2c2006-10-05 16:02:22 +0200276 list_for_each_entry(kctl, &card->controls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if ((kctl->id.numid <= card->last_numid &&
278 kctl->id.numid + kctl->count > card->last_numid) ||
279 (kctl->id.numid <= card->last_numid + count - 1 &&
280 kctl->id.numid + kctl->count > card->last_numid + count - 1))
281 return card->last_numid = kctl->id.numid + kctl->count - 1;
282 }
283 return card->last_numid;
284}
285
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100286static int snd_ctl_find_hole(struct snd_card *card, unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 unsigned int last_numid, iter = 100000;
289
290 last_numid = card->last_numid;
291 while (last_numid != snd_ctl_hole_check(card, count)) {
292 if (--iter == 0) {
293 /* this situation is very unlikely */
294 snd_printk(KERN_ERR "unable to allocate new control numid\n");
295 return -ENOMEM;
296 }
297 last_numid = card->last_numid;
298 }
299 return 0;
300}
301
302/**
303 * snd_ctl_add - add the control instance to the card
304 * @card: the card instance
305 * @kcontrol: the control instance to add
306 *
307 * Adds the control instance created via snd_ctl_new() or
308 * snd_ctl_new1() to the given card. Assigns also an unique
309 * numid used for fast search.
310 *
311 * Returns zero if successful, or a negative error code on failure.
312 *
313 * It frees automatically the control which cannot be added.
314 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100315int snd_ctl_add(struct snd_card *card, struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100317 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 unsigned int idx;
Takashi Iwaic6077b32006-03-21 16:07:13 +0100319 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100321 if (! kcontrol)
Takashi Iwaic6077b32006-03-21 16:07:13 +0100322 return err;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200323 if (snd_BUG_ON(!card || !kcontrol->info))
324 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 id = kcontrol->id;
326 down_write(&card->controls_rwsem);
327 if (snd_ctl_find_id(card, &id)) {
328 up_write(&card->controls_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 snd_printd(KERN_ERR "control %i:%i:%i:%s:%i is already present\n",
330 id.iface,
331 id.device,
332 id.subdevice,
333 id.name,
334 id.index);
Takashi Iwaic6077b32006-03-21 16:07:13 +0100335 err = -EBUSY;
336 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338 if (snd_ctl_find_hole(card, kcontrol->count) < 0) {
339 up_write(&card->controls_rwsem);
Takashi Iwaic6077b32006-03-21 16:07:13 +0100340 err = -ENOMEM;
341 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 list_add_tail(&kcontrol->list, &card->controls);
344 card->controls_count += kcontrol->count;
345 kcontrol->id.numid = card->last_numid + 1;
346 card->last_numid += kcontrol->count;
347 up_write(&card->controls_rwsem);
348 for (idx = 0; idx < kcontrol->count; idx++, id.index++, id.numid++)
349 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_ADD, &id);
350 return 0;
Takashi Iwaic6077b32006-03-21 16:07:13 +0100351
352 error:
353 snd_ctl_free_one(kcontrol);
354 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200357EXPORT_SYMBOL(snd_ctl_add);
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359/**
360 * snd_ctl_remove - remove the control from the card and release it
361 * @card: the card instance
362 * @kcontrol: the control instance to remove
363 *
364 * Removes the control from the card and then releases the instance.
365 * You don't need to call snd_ctl_free_one(). You must be in
366 * the write lock - down_write(&card->controls_rwsem).
367 *
368 * Returns 0 if successful, or a negative error code on failure.
369 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100370int snd_ctl_remove(struct snd_card *card, struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100372 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 unsigned int idx;
374
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200375 if (snd_BUG_ON(!card || !kcontrol))
376 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 list_del(&kcontrol->list);
378 card->controls_count -= kcontrol->count;
379 id = kcontrol->id;
380 for (idx = 0; idx < kcontrol->count; idx++, id.index++, id.numid++)
381 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_REMOVE, &id);
382 snd_ctl_free_one(kcontrol);
383 return 0;
384}
385
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200386EXPORT_SYMBOL(snd_ctl_remove);
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/**
389 * snd_ctl_remove_id - remove the control of the given id and release it
390 * @card: the card instance
391 * @id: the control id to remove
392 *
393 * Finds the control instance with the given id, removes it from the
394 * card list and releases it.
395 *
396 * Returns 0 if successful, or a negative error code on failure.
397 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100398int snd_ctl_remove_id(struct snd_card *card, struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100400 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 int ret;
402
403 down_write(&card->controls_rwsem);
404 kctl = snd_ctl_find_id(card, id);
405 if (kctl == NULL) {
406 up_write(&card->controls_rwsem);
407 return -ENOENT;
408 }
409 ret = snd_ctl_remove(card, kctl);
410 up_write(&card->controls_rwsem);
411 return ret;
412}
413
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200414EXPORT_SYMBOL(snd_ctl_remove_id);
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/**
Clemens Ladischf217ac52009-08-17 12:27:22 +0200417 * snd_ctl_remove_user_ctl - remove and release the unlocked user control
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * @file: active control handle
419 * @id: the control id to remove
420 *
421 * Finds the control instance with the given id, removes it from the
422 * card list and releases it.
423 *
424 * Returns 0 if successful, or a negative error code on failure.
425 */
Clemens Ladischf217ac52009-08-17 12:27:22 +0200426static int snd_ctl_remove_user_ctl(struct snd_ctl_file * file,
427 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100429 struct snd_card *card = file->card;
430 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 int idx, ret;
432
433 down_write(&card->controls_rwsem);
434 kctl = snd_ctl_find_id(card, id);
435 if (kctl == NULL) {
Clemens Ladisch317b8082009-08-17 12:26:34 +0200436 ret = -ENOENT;
437 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Clemens Ladisch18dd0aa2009-08-17 12:28:09 +0200439 if (!(kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_USER)) {
440 ret = -EINVAL;
441 goto error;
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 for (idx = 0; idx < kctl->count; idx++)
444 if (kctl->vd[idx].owner != NULL && kctl->vd[idx].owner != file) {
Clemens Ladisch317b8082009-08-17 12:26:34 +0200445 ret = -EBUSY;
446 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448 ret = snd_ctl_remove(card, kctl);
Clemens Ladischf217ac52009-08-17 12:27:22 +0200449 if (ret < 0)
450 goto error;
451 card->user_ctl_count--;
Clemens Ladisch317b8082009-08-17 12:26:34 +0200452error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 up_write(&card->controls_rwsem);
454 return ret;
455}
456
457/**
458 * snd_ctl_rename_id - replace the id of a control on the card
459 * @card: the card instance
460 * @src_id: the old id
461 * @dst_id: the new id
462 *
463 * Finds the control with the old id from the card, and replaces the
464 * id with the new one.
465 *
466 * Returns zero if successful, or a negative error code on failure.
467 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100468int snd_ctl_rename_id(struct snd_card *card, struct snd_ctl_elem_id *src_id,
469 struct snd_ctl_elem_id *dst_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100471 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 down_write(&card->controls_rwsem);
474 kctl = snd_ctl_find_id(card, src_id);
475 if (kctl == NULL) {
476 up_write(&card->controls_rwsem);
477 return -ENOENT;
478 }
479 kctl->id = *dst_id;
480 kctl->id.numid = card->last_numid + 1;
481 card->last_numid += kctl->count;
482 up_write(&card->controls_rwsem);
483 return 0;
484}
485
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200486EXPORT_SYMBOL(snd_ctl_rename_id);
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/**
489 * snd_ctl_find_numid - find the control instance with the given number-id
490 * @card: the card instance
491 * @numid: the number-id to search
492 *
493 * Finds the control instance with the given number-id from the card.
494 *
495 * Returns the pointer of the instance if found, or NULL if not.
496 *
497 * The caller must down card->controls_rwsem before calling this function
498 * (if the race condition can happen).
499 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100500struct snd_kcontrol *snd_ctl_find_numid(struct snd_card *card, unsigned int numid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100502 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200504 if (snd_BUG_ON(!card || !numid))
505 return NULL;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200506 list_for_each_entry(kctl, &card->controls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (kctl->id.numid <= numid && kctl->id.numid + kctl->count > numid)
508 return kctl;
509 }
510 return NULL;
511}
512
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200513EXPORT_SYMBOL(snd_ctl_find_numid);
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515/**
516 * snd_ctl_find_id - find the control instance with the given id
517 * @card: the card instance
518 * @id: the id to search
519 *
520 * Finds the control instance with the given id from the card.
521 *
522 * Returns the pointer of the instance if found, or NULL if not.
523 *
524 * The caller must down card->controls_rwsem before calling this function
525 * (if the race condition can happen).
526 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100527struct snd_kcontrol *snd_ctl_find_id(struct snd_card *card,
528 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100530 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200532 if (snd_BUG_ON(!card || !id))
533 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (id->numid != 0)
535 return snd_ctl_find_numid(card, id->numid);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200536 list_for_each_entry(kctl, &card->controls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (kctl->id.iface != id->iface)
538 continue;
539 if (kctl->id.device != id->device)
540 continue;
541 if (kctl->id.subdevice != id->subdevice)
542 continue;
543 if (strncmp(kctl->id.name, id->name, sizeof(kctl->id.name)))
544 continue;
545 if (kctl->id.index > id->index)
546 continue;
547 if (kctl->id.index + kctl->count <= id->index)
548 continue;
549 return kctl;
550 }
551 return NULL;
552}
553
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200554EXPORT_SYMBOL(snd_ctl_find_id);
555
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100556static int snd_ctl_card_info(struct snd_card *card, struct snd_ctl_file * ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 unsigned int cmd, void __user *arg)
558{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100559 struct snd_ctl_card_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Takashi Iwaica2c0962005-09-09 14:20:23 +0200561 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (! info)
563 return -ENOMEM;
564 down_read(&snd_ioctl_rwsem);
565 info->card = card->number;
566 strlcpy(info->id, card->id, sizeof(info->id));
567 strlcpy(info->driver, card->driver, sizeof(info->driver));
568 strlcpy(info->name, card->shortname, sizeof(info->name));
569 strlcpy(info->longname, card->longname, sizeof(info->longname));
570 strlcpy(info->mixername, card->mixername, sizeof(info->mixername));
571 strlcpy(info->components, card->components, sizeof(info->components));
572 up_read(&snd_ioctl_rwsem);
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100573 if (copy_to_user(arg, info, sizeof(struct snd_ctl_card_info))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 kfree(info);
575 return -EFAULT;
576 }
577 kfree(info);
578 return 0;
579}
580
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100581static int snd_ctl_elem_list(struct snd_card *card,
582 struct snd_ctl_elem_list __user *_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 struct list_head *plist;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100585 struct snd_ctl_elem_list list;
586 struct snd_kcontrol *kctl;
587 struct snd_ctl_elem_id *dst, *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 unsigned int offset, space, first, jidx;
589
590 if (copy_from_user(&list, _list, sizeof(list)))
591 return -EFAULT;
592 offset = list.offset;
593 space = list.space;
594 first = 0;
595 /* try limit maximum space */
596 if (space > 16384)
597 return -ENOMEM;
598 if (space > 0) {
599 /* allocate temporary buffer for atomic operation */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100600 dst = vmalloc(space * sizeof(struct snd_ctl_elem_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (dst == NULL)
602 return -ENOMEM;
603 down_read(&card->controls_rwsem);
604 list.count = card->controls_count;
605 plist = card->controls.next;
606 while (plist != &card->controls) {
607 if (offset == 0)
608 break;
609 kctl = snd_kcontrol(plist);
610 if (offset < kctl->count)
611 break;
612 offset -= kctl->count;
613 plist = plist->next;
614 }
615 list.used = 0;
616 id = dst;
617 while (space > 0 && plist != &card->controls) {
618 kctl = snd_kcontrol(plist);
619 for (jidx = offset; space > 0 && jidx < kctl->count; jidx++) {
620 snd_ctl_build_ioff(id, kctl, jidx);
621 id++;
622 space--;
623 list.used++;
624 }
625 plist = plist->next;
626 offset = 0;
627 }
628 up_read(&card->controls_rwsem);
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100629 if (list.used > 0 &&
630 copy_to_user(list.pids, dst,
631 list.used * sizeof(struct snd_ctl_elem_id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 vfree(dst);
633 return -EFAULT;
634 }
635 vfree(dst);
636 } else {
637 down_read(&card->controls_rwsem);
638 list.count = card->controls_count;
639 up_read(&card->controls_rwsem);
640 }
641 if (copy_to_user(_list, &list, sizeof(list)))
642 return -EFAULT;
643 return 0;
644}
645
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100646static int snd_ctl_elem_info(struct snd_ctl_file *ctl,
647 struct snd_ctl_elem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100649 struct snd_card *card = ctl->card;
650 struct snd_kcontrol *kctl;
651 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 unsigned int index_offset;
653 int result;
654
655 down_read(&card->controls_rwsem);
656 kctl = snd_ctl_find_id(card, &info->id);
657 if (kctl == NULL) {
658 up_read(&card->controls_rwsem);
659 return -ENOENT;
660 }
661#ifdef CONFIG_SND_DEBUG
662 info->access = 0;
663#endif
664 result = kctl->info(kctl, info);
665 if (result >= 0) {
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200666 snd_BUG_ON(info->access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 index_offset = snd_ctl_get_ioff(kctl, &info->id);
668 vd = &kctl->vd[index_offset];
669 snd_ctl_build_ioff(&info->id, kctl, index_offset);
670 info->access = vd->access;
671 if (vd->owner) {
672 info->access |= SNDRV_CTL_ELEM_ACCESS_LOCK;
673 if (vd->owner == ctl)
674 info->access |= SNDRV_CTL_ELEM_ACCESS_OWNER;
Clemens Ladisch31cef702009-11-02 09:34:16 +0100675 info->owner = vd->owner->pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 } else {
677 info->owner = -1;
678 }
679 }
680 up_read(&card->controls_rwsem);
681 return result;
682}
683
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100684static int snd_ctl_elem_info_user(struct snd_ctl_file *ctl,
685 struct snd_ctl_elem_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100687 struct snd_ctl_elem_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 int result;
689
690 if (copy_from_user(&info, _info, sizeof(info)))
691 return -EFAULT;
Giuliano Pochini64649402006-03-13 14:11:11 +0100692 snd_power_lock(ctl->card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200693 result = snd_power_wait(ctl->card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100694 if (result >= 0)
695 result = snd_ctl_elem_info(ctl, &info);
696 snd_power_unlock(ctl->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (result >= 0)
698 if (copy_to_user(_info, &info, sizeof(info)))
699 return -EFAULT;
700 return result;
701}
702
Takashi Iwaid3bd67c2008-06-12 18:17:26 +0200703static int snd_ctl_elem_read(struct snd_card *card,
704 struct snd_ctl_elem_value *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100706 struct snd_kcontrol *kctl;
707 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 unsigned int index_offset;
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100709 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 down_read(&card->controls_rwsem);
712 kctl = snd_ctl_find_id(card, &control->id);
713 if (kctl == NULL) {
714 result = -ENOENT;
715 } else {
716 index_offset = snd_ctl_get_ioff(kctl, &control->id);
717 vd = &kctl->vd[index_offset];
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100718 if ((vd->access & SNDRV_CTL_ELEM_ACCESS_READ) &&
719 kctl->get != NULL) {
720 snd_ctl_build_ioff(&control->id, kctl, index_offset);
721 result = kctl->get(kctl, control);
722 } else
723 result = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725 up_read(&card->controls_rwsem);
726 return result;
727}
728
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100729static int snd_ctl_elem_read_user(struct snd_card *card,
730 struct snd_ctl_elem_value __user *_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100732 struct snd_ctl_elem_value *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 int result;
Li Zefanef44a1e2009-04-10 09:43:08 +0800734
735 control = memdup_user(_control, sizeof(*control));
736 if (IS_ERR(control))
737 return PTR_ERR(control);
738
Giuliano Pochini64649402006-03-13 14:11:11 +0100739 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200740 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100741 if (result >= 0)
742 result = snd_ctl_elem_read(card, control);
743 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (result >= 0)
745 if (copy_to_user(_control, control, sizeof(*control)))
746 result = -EFAULT;
747 kfree(control);
748 return result;
749}
750
Takashi Iwaid3bd67c2008-06-12 18:17:26 +0200751static int snd_ctl_elem_write(struct snd_card *card, struct snd_ctl_file *file,
752 struct snd_ctl_elem_value *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100754 struct snd_kcontrol *kctl;
755 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 unsigned int index_offset;
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100757 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 down_read(&card->controls_rwsem);
760 kctl = snd_ctl_find_id(card, &control->id);
761 if (kctl == NULL) {
762 result = -ENOENT;
763 } else {
764 index_offset = snd_ctl_get_ioff(kctl, &control->id);
765 vd = &kctl->vd[index_offset];
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100766 if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_WRITE) ||
767 kctl->put == NULL ||
768 (file && vd->owner && vd->owner != file)) {
769 result = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 } else {
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100771 snd_ctl_build_ioff(&control->id, kctl, index_offset);
772 result = kctl->put(kctl, control);
773 }
774 if (result > 0) {
775 up_read(&card->controls_rwsem);
776 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
777 &control->id);
778 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780 }
781 up_read(&card->controls_rwsem);
782 return result;
783}
784
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100785static int snd_ctl_elem_write_user(struct snd_ctl_file *file,
786 struct snd_ctl_elem_value __user *_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100788 struct snd_ctl_elem_value *control;
Giuliano Pochini64649402006-03-13 14:11:11 +0100789 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 int result;
791
Li Zefanef44a1e2009-04-10 09:43:08 +0800792 control = memdup_user(_control, sizeof(*control));
793 if (IS_ERR(control))
794 return PTR_ERR(control);
795
Giuliano Pochini64649402006-03-13 14:11:11 +0100796 card = file->card;
797 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200798 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100799 if (result >= 0)
800 result = snd_ctl_elem_write(card, file, control);
801 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (result >= 0)
803 if (copy_to_user(_control, control, sizeof(*control)))
804 result = -EFAULT;
805 kfree(control);
806 return result;
807}
808
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100809static int snd_ctl_elem_lock(struct snd_ctl_file *file,
810 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100812 struct snd_card *card = file->card;
813 struct snd_ctl_elem_id id;
814 struct snd_kcontrol *kctl;
815 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 int result;
817
818 if (copy_from_user(&id, _id, sizeof(id)))
819 return -EFAULT;
820 down_write(&card->controls_rwsem);
821 kctl = snd_ctl_find_id(card, &id);
822 if (kctl == NULL) {
823 result = -ENOENT;
824 } else {
825 vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
826 if (vd->owner != NULL)
827 result = -EBUSY;
828 else {
829 vd->owner = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 result = 0;
831 }
832 }
833 up_write(&card->controls_rwsem);
834 return result;
835}
836
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100837static int snd_ctl_elem_unlock(struct snd_ctl_file *file,
838 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100840 struct snd_card *card = file->card;
841 struct snd_ctl_elem_id id;
842 struct snd_kcontrol *kctl;
843 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 int result;
845
846 if (copy_from_user(&id, _id, sizeof(id)))
847 return -EFAULT;
848 down_write(&card->controls_rwsem);
849 kctl = snd_ctl_find_id(card, &id);
850 if (kctl == NULL) {
851 result = -ENOENT;
852 } else {
853 vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
854 if (vd->owner == NULL)
855 result = -EINVAL;
856 else if (vd->owner != file)
857 result = -EPERM;
858 else {
859 vd->owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 result = 0;
861 }
862 }
863 up_write(&card->controls_rwsem);
864 return result;
865}
866
867struct user_element {
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100868 struct snd_ctl_elem_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 void *elem_data; /* element data */
870 unsigned long elem_data_size; /* size of element data in bytes */
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200871 void *tlv_data; /* TLV data */
872 unsigned long tlv_data_size; /* TLV data size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 void *priv_data; /* private data (like strings for enumerated type) */
874 unsigned long priv_data_size; /* size of private data in bytes */
875};
876
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100877static int snd_ctl_elem_user_info(struct snd_kcontrol *kcontrol,
878 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 struct user_element *ue = kcontrol->private_data;
881
882 *uinfo = ue->info;
883 return 0;
884}
885
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100886static int snd_ctl_elem_user_get(struct snd_kcontrol *kcontrol,
887 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 struct user_element *ue = kcontrol->private_data;
890
891 memcpy(&ucontrol->value, ue->elem_data, ue->elem_data_size);
892 return 0;
893}
894
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100895static int snd_ctl_elem_user_put(struct snd_kcontrol *kcontrol,
896 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 int change;
899 struct user_element *ue = kcontrol->private_data;
900
901 change = memcmp(&ucontrol->value, ue->elem_data, ue->elem_data_size) != 0;
902 if (change)
903 memcpy(ue->elem_data, &ucontrol->value, ue->elem_data_size);
904 return change;
905}
906
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200907static int snd_ctl_elem_user_tlv(struct snd_kcontrol *kcontrol,
908 int op_flag,
909 unsigned int size,
910 unsigned int __user *tlv)
911{
912 struct user_element *ue = kcontrol->private_data;
913 int change = 0;
914 void *new_data;
915
916 if (op_flag > 0) {
917 if (size > 1024 * 128) /* sane value */
918 return -EINVAL;
Li Zefanef44a1e2009-04-10 09:43:08 +0800919
920 new_data = memdup_user(tlv, size);
921 if (IS_ERR(new_data))
922 return PTR_ERR(new_data);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200923 change = ue->tlv_data_size != size;
924 if (!change)
925 change = memcmp(ue->tlv_data, new_data, size);
926 kfree(ue->tlv_data);
927 ue->tlv_data = new_data;
928 ue->tlv_data_size = size;
929 } else {
Takashi Iwai18c1c3f2006-08-25 11:39:34 +0200930 if (! ue->tlv_data_size || ! ue->tlv_data)
931 return -ENXIO;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200932 if (size < ue->tlv_data_size)
933 return -ENOSPC;
934 if (copy_to_user(tlv, ue->tlv_data, ue->tlv_data_size))
935 return -EFAULT;
936 }
937 return change;
938}
939
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100940static void snd_ctl_elem_user_free(struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200942 struct user_element *ue = kcontrol->private_data;
943 if (ue->tlv_data)
944 kfree(ue->tlv_data);
945 kfree(ue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100948static int snd_ctl_elem_add(struct snd_ctl_file *file,
949 struct snd_ctl_elem_info *info, int replace)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100951 struct snd_card *card = file->card;
952 struct snd_kcontrol kctl, *_kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 unsigned int access;
954 long private_size;
955 struct user_element *ue;
956 int idx, err;
957
958 if (card->user_ctl_count >= MAX_USER_CONTROLS)
959 return -ENOMEM;
Clemens Ladisch2a031ae2009-08-17 12:25:52 +0200960 if (info->count < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return -EINVAL;
962 access = info->access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100963 (info->access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200964 SNDRV_CTL_ELEM_ACCESS_INACTIVE|
965 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 info->id.numid = 0;
967 memset(&kctl, 0, sizeof(kctl));
968 down_write(&card->controls_rwsem);
969 _kctl = snd_ctl_find_id(card, &info->id);
970 err = 0;
971 if (_kctl) {
972 if (replace)
973 err = snd_ctl_remove(card, _kctl);
974 else
975 err = -EBUSY;
976 } else {
977 if (replace)
978 err = -ENOENT;
979 }
980 up_write(&card->controls_rwsem);
981 if (err < 0)
982 return err;
983 memcpy(&kctl.id, &info->id, sizeof(info->id));
984 kctl.count = info->owner ? info->owner : 1;
985 access |= SNDRV_CTL_ELEM_ACCESS_USER;
986 kctl.info = snd_ctl_elem_user_info;
987 if (access & SNDRV_CTL_ELEM_ACCESS_READ)
988 kctl.get = snd_ctl_elem_user_get;
989 if (access & SNDRV_CTL_ELEM_ACCESS_WRITE)
990 kctl.put = snd_ctl_elem_user_put;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200991 if (access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE) {
992 kctl.tlv.c = snd_ctl_elem_user_tlv;
993 access |= SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 switch (info->type) {
996 case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 case SNDRV_CTL_ELEM_TYPE_INTEGER:
998 private_size = sizeof(long);
999 if (info->count > 128)
1000 return -EINVAL;
1001 break;
1002 case SNDRV_CTL_ELEM_TYPE_INTEGER64:
1003 private_size = sizeof(long long);
1004 if (info->count > 64)
1005 return -EINVAL;
1006 break;
1007 case SNDRV_CTL_ELEM_TYPE_BYTES:
1008 private_size = sizeof(unsigned char);
1009 if (info->count > 512)
1010 return -EINVAL;
1011 break;
1012 case SNDRV_CTL_ELEM_TYPE_IEC958:
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001013 private_size = sizeof(struct snd_aes_iec958);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (info->count != 1)
1015 return -EINVAL;
1016 break;
1017 default:
1018 return -EINVAL;
1019 }
1020 private_size *= info->count;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001021 ue = kzalloc(sizeof(struct user_element) + private_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (ue == NULL)
1023 return -ENOMEM;
1024 ue->info = *info;
Takashi Iwai86148e82006-08-24 12:36:36 +02001025 ue->info.access = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 ue->elem_data = (char *)ue + sizeof(*ue);
1027 ue->elem_data_size = private_size;
1028 kctl.private_free = snd_ctl_elem_user_free;
1029 _kctl = snd_ctl_new(&kctl, access);
1030 if (_kctl == NULL) {
Takashi Iwai2fbf1822006-03-06 15:42:51 -08001031 kfree(ue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return -ENOMEM;
1033 }
1034 _kctl->private_data = ue;
1035 for (idx = 0; idx < _kctl->count; idx++)
1036 _kctl->vd[idx].owner = file;
1037 err = snd_ctl_add(card, _kctl);
Takashi Iwai2fbf1822006-03-06 15:42:51 -08001038 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 down_write(&card->controls_rwsem);
1042 card->user_ctl_count++;
1043 up_write(&card->controls_rwsem);
1044
1045 return 0;
1046}
1047
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001048static int snd_ctl_elem_add_user(struct snd_ctl_file *file,
1049 struct snd_ctl_elem_info __user *_info, int replace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001051 struct snd_ctl_elem_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (copy_from_user(&info, _info, sizeof(info)))
1053 return -EFAULT;
1054 return snd_ctl_elem_add(file, &info, replace);
1055}
1056
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001057static int snd_ctl_elem_remove(struct snd_ctl_file *file,
1058 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001060 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 if (copy_from_user(&id, _id, sizeof(id)))
1063 return -EFAULT;
Clemens Ladischf217ac52009-08-17 12:27:22 +02001064 return snd_ctl_remove_user_ctl(file, &id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001067static int snd_ctl_subscribe_events(struct snd_ctl_file *file, int __user *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 int subscribe;
1070 if (get_user(subscribe, ptr))
1071 return -EFAULT;
1072 if (subscribe < 0) {
1073 subscribe = file->subscribed;
1074 if (put_user(subscribe, ptr))
1075 return -EFAULT;
1076 return 0;
1077 }
1078 if (subscribe) {
1079 file->subscribed = 1;
1080 return 0;
1081 } else if (file->subscribed) {
1082 snd_ctl_empty_read_queue(file);
1083 file->subscribed = 0;
1084 }
1085 return 0;
1086}
1087
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001088static int snd_ctl_tlv_ioctl(struct snd_ctl_file *file,
1089 struct snd_ctl_tlv __user *_tlv,
1090 int op_flag)
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001091{
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001092 struct snd_card *card = file->card;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001093 struct snd_ctl_tlv tlv;
1094 struct snd_kcontrol *kctl;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001095 struct snd_kcontrol_volatile *vd;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001096 unsigned int len;
1097 int err = 0;
1098
1099 if (copy_from_user(&tlv, _tlv, sizeof(tlv)))
1100 return -EFAULT;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001101 if (tlv.length < sizeof(unsigned int) * 3)
1102 return -EINVAL;
1103 down_read(&card->controls_rwsem);
1104 kctl = snd_ctl_find_numid(card, tlv.numid);
1105 if (kctl == NULL) {
1106 err = -ENOENT;
1107 goto __kctl_end;
1108 }
1109 if (kctl->tlv.p == NULL) {
1110 err = -ENXIO;
1111 goto __kctl_end;
1112 }
1113 vd = &kctl->vd[tlv.numid - kctl->id.numid];
1114 if ((op_flag == 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) == 0) ||
1115 (op_flag > 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE) == 0) ||
1116 (op_flag < 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND) == 0)) {
1117 err = -ENXIO;
1118 goto __kctl_end;
1119 }
1120 if (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
1121 if (file && vd->owner != NULL && vd->owner != file) {
1122 err = -EPERM;
1123 goto __kctl_end;
1124 }
1125 err = kctl->tlv.c(kctl, op_flag, tlv.length, _tlv->tlv);
1126 if (err > 0) {
1127 up_read(&card->controls_rwsem);
1128 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_TLV, &kctl->id);
1129 return 0;
1130 }
1131 } else {
1132 if (op_flag) {
1133 err = -ENXIO;
1134 goto __kctl_end;
1135 }
1136 len = kctl->tlv.p[1] + 2 * sizeof(unsigned int);
1137 if (tlv.length < len) {
1138 err = -ENOMEM;
1139 goto __kctl_end;
1140 }
1141 if (copy_to_user(_tlv->tlv, kctl->tlv.p, len))
1142 err = -EFAULT;
1143 }
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001144 __kctl_end:
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001145 up_read(&card->controls_rwsem);
1146 return err;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001147}
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149static long snd_ctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1150{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001151 struct snd_ctl_file *ctl;
1152 struct snd_card *card;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001153 struct snd_kctl_ioctl *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 void __user *argp = (void __user *)arg;
1155 int __user *ip = argp;
1156 int err;
1157
1158 ctl = file->private_data;
1159 card = ctl->card;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001160 if (snd_BUG_ON(!card))
1161 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 switch (cmd) {
1163 case SNDRV_CTL_IOCTL_PVERSION:
1164 return put_user(SNDRV_CTL_VERSION, ip) ? -EFAULT : 0;
1165 case SNDRV_CTL_IOCTL_CARD_INFO:
1166 return snd_ctl_card_info(card, ctl, cmd, argp);
1167 case SNDRV_CTL_IOCTL_ELEM_LIST:
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001168 return snd_ctl_elem_list(card, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 case SNDRV_CTL_IOCTL_ELEM_INFO:
1170 return snd_ctl_elem_info_user(ctl, argp);
1171 case SNDRV_CTL_IOCTL_ELEM_READ:
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001172 return snd_ctl_elem_read_user(card, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 case SNDRV_CTL_IOCTL_ELEM_WRITE:
1174 return snd_ctl_elem_write_user(ctl, argp);
1175 case SNDRV_CTL_IOCTL_ELEM_LOCK:
1176 return snd_ctl_elem_lock(ctl, argp);
1177 case SNDRV_CTL_IOCTL_ELEM_UNLOCK:
1178 return snd_ctl_elem_unlock(ctl, argp);
1179 case SNDRV_CTL_IOCTL_ELEM_ADD:
1180 return snd_ctl_elem_add_user(ctl, argp, 0);
1181 case SNDRV_CTL_IOCTL_ELEM_REPLACE:
1182 return snd_ctl_elem_add_user(ctl, argp, 1);
1183 case SNDRV_CTL_IOCTL_ELEM_REMOVE:
1184 return snd_ctl_elem_remove(ctl, argp);
1185 case SNDRV_CTL_IOCTL_SUBSCRIBE_EVENTS:
1186 return snd_ctl_subscribe_events(ctl, ip);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001187 case SNDRV_CTL_IOCTL_TLV_READ:
1188 return snd_ctl_tlv_ioctl(ctl, argp, 0);
1189 case SNDRV_CTL_IOCTL_TLV_WRITE:
1190 return snd_ctl_tlv_ioctl(ctl, argp, 1);
1191 case SNDRV_CTL_IOCTL_TLV_COMMAND:
1192 return snd_ctl_tlv_ioctl(ctl, argp, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 case SNDRV_CTL_IOCTL_POWER:
Takashi Iwaia381a7a2005-11-17 15:55:49 +01001194 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 case SNDRV_CTL_IOCTL_POWER_STATE:
1196#ifdef CONFIG_PM
1197 return put_user(card->power_state, ip) ? -EFAULT : 0;
1198#else
1199 return put_user(SNDRV_CTL_POWER_D0, ip) ? -EFAULT : 0;
1200#endif
1201 }
1202 down_read(&snd_ioctl_rwsem);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001203 list_for_each_entry(p, &snd_control_ioctls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 err = p->fioctl(card, ctl, cmd, arg);
1205 if (err != -ENOIOCTLCMD) {
1206 up_read(&snd_ioctl_rwsem);
1207 return err;
1208 }
1209 }
1210 up_read(&snd_ioctl_rwsem);
Takashi Iwai6d85be62005-05-15 14:32:50 +02001211 snd_printdd("unknown ioctl = 0x%x\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return -ENOTTY;
1213}
1214
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001215static ssize_t snd_ctl_read(struct file *file, char __user *buffer,
1216 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001218 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int err = 0;
1220 ssize_t result = 0;
1221
1222 ctl = file->private_data;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001223 if (snd_BUG_ON(!ctl || !ctl->card))
1224 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (!ctl->subscribed)
1226 return -EBADFD;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001227 if (count < sizeof(struct snd_ctl_event))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return -EINVAL;
1229 spin_lock_irq(&ctl->read_lock);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001230 while (count >= sizeof(struct snd_ctl_event)) {
1231 struct snd_ctl_event ev;
1232 struct snd_kctl_event *kev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 while (list_empty(&ctl->events)) {
1234 wait_queue_t wait;
1235 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1236 err = -EAGAIN;
1237 goto __end_lock;
1238 }
1239 init_waitqueue_entry(&wait, current);
1240 add_wait_queue(&ctl->change_sleep, &wait);
1241 set_current_state(TASK_INTERRUPTIBLE);
1242 spin_unlock_irq(&ctl->read_lock);
1243 schedule();
1244 remove_wait_queue(&ctl->change_sleep, &wait);
1245 if (signal_pending(current))
Adrian Bunk0e5d7202006-11-07 13:42:54 +01001246 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 spin_lock_irq(&ctl->read_lock);
1248 }
1249 kev = snd_kctl_event(ctl->events.next);
1250 ev.type = SNDRV_CTL_EVENT_ELEM;
1251 ev.data.elem.mask = kev->mask;
1252 ev.data.elem.id = kev->id;
1253 list_del(&kev->list);
1254 spin_unlock_irq(&ctl->read_lock);
1255 kfree(kev);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001256 if (copy_to_user(buffer, &ev, sizeof(struct snd_ctl_event))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 err = -EFAULT;
1258 goto __end;
1259 }
1260 spin_lock_irq(&ctl->read_lock);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001261 buffer += sizeof(struct snd_ctl_event);
1262 count -= sizeof(struct snd_ctl_event);
1263 result += sizeof(struct snd_ctl_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265 __end_lock:
1266 spin_unlock_irq(&ctl->read_lock);
1267 __end:
1268 return result > 0 ? result : err;
1269}
1270
1271static unsigned int snd_ctl_poll(struct file *file, poll_table * wait)
1272{
1273 unsigned int mask;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001274 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 ctl = file->private_data;
1277 if (!ctl->subscribed)
1278 return 0;
1279 poll_wait(file, &ctl->change_sleep, wait);
1280
1281 mask = 0;
1282 if (!list_empty(&ctl->events))
1283 mask |= POLLIN | POLLRDNORM;
1284
1285 return mask;
1286}
1287
1288/*
1289 * register the device-specific control-ioctls.
1290 * called from each device manager like pcm.c, hwdep.c, etc.
1291 */
1292static int _snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn, struct list_head *lists)
1293{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001294 struct snd_kctl_ioctl *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001296 pn = kzalloc(sizeof(struct snd_kctl_ioctl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (pn == NULL)
1298 return -ENOMEM;
1299 pn->fioctl = fcn;
1300 down_write(&snd_ioctl_rwsem);
1301 list_add_tail(&pn->list, lists);
1302 up_write(&snd_ioctl_rwsem);
1303 return 0;
1304}
1305
1306int snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn)
1307{
1308 return _snd_ctl_register_ioctl(fcn, &snd_control_ioctls);
1309}
1310
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001311EXPORT_SYMBOL(snd_ctl_register_ioctl);
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313#ifdef CONFIG_COMPAT
1314int snd_ctl_register_ioctl_compat(snd_kctl_ioctl_func_t fcn)
1315{
1316 return _snd_ctl_register_ioctl(fcn, &snd_control_compat_ioctls);
1317}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001318
1319EXPORT_SYMBOL(snd_ctl_register_ioctl_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320#endif
1321
1322/*
1323 * de-register the device-specific control-ioctls.
1324 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001325static int _snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn,
1326 struct list_head *lists)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001328 struct snd_kctl_ioctl *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001330 if (snd_BUG_ON(!fcn))
1331 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 down_write(&snd_ioctl_rwsem);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001333 list_for_each_entry(p, lists, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (p->fioctl == fcn) {
1335 list_del(&p->list);
1336 up_write(&snd_ioctl_rwsem);
1337 kfree(p);
1338 return 0;
1339 }
1340 }
1341 up_write(&snd_ioctl_rwsem);
1342 snd_BUG();
1343 return -EINVAL;
1344}
1345
1346int snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn)
1347{
1348 return _snd_ctl_unregister_ioctl(fcn, &snd_control_ioctls);
1349}
1350
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001351EXPORT_SYMBOL(snd_ctl_unregister_ioctl);
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353#ifdef CONFIG_COMPAT
1354int snd_ctl_unregister_ioctl_compat(snd_kctl_ioctl_func_t fcn)
1355{
1356 return _snd_ctl_unregister_ioctl(fcn, &snd_control_compat_ioctls);
1357}
1358
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001359EXPORT_SYMBOL(snd_ctl_unregister_ioctl_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360#endif
1361
1362static int snd_ctl_fasync(int fd, struct file * file, int on)
1363{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001364 struct snd_ctl_file *ctl;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 ctl = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001367 return fasync_helper(fd, file, on, &ctl->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
1370/*
1371 * ioctl32 compat
1372 */
1373#ifdef CONFIG_COMPAT
1374#include "control_compat.c"
1375#else
1376#define snd_ctl_ioctl_compat NULL
1377#endif
1378
1379/*
1380 * INIT PART
1381 */
1382
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001383static const struct file_operations snd_ctl_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 .owner = THIS_MODULE,
1386 .read = snd_ctl_read,
1387 .open = snd_ctl_open,
1388 .release = snd_ctl_release,
1389 .poll = snd_ctl_poll,
1390 .unlocked_ioctl = snd_ctl_ioctl,
1391 .compat_ioctl = snd_ctl_ioctl_compat,
1392 .fasync = snd_ctl_fasync,
1393};
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395/*
1396 * registration of the control device
1397 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001398static int snd_ctl_dev_register(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001400 struct snd_card *card = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 int err, cardnum;
1402 char name[16];
1403
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001404 if (snd_BUG_ON(!card))
1405 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 cardnum = card->number;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001407 if (snd_BUG_ON(cardnum < 0 || cardnum >= SNDRV_CARDS))
1408 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 sprintf(name, "controlC%i", cardnum);
Clemens Ladischf87135f2005-11-20 14:06:59 +01001410 if ((err = snd_register_device(SNDRV_DEVICE_TYPE_CONTROL, card, -1,
1411 &snd_ctl_f_ops, card, name)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 return err;
1413 return 0;
1414}
1415
1416/*
1417 * disconnection of the control device
1418 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001419static int snd_ctl_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001421 struct snd_card *card = device->device_data;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001422 struct snd_ctl_file *ctl;
Takashi Iwaic4614822006-06-23 14:38:23 +02001423 int err, cardnum;
1424
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001425 if (snd_BUG_ON(!card))
1426 return -ENXIO;
Takashi Iwaic4614822006-06-23 14:38:23 +02001427 cardnum = card->number;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001428 if (snd_BUG_ON(cardnum < 0 || cardnum >= SNDRV_CARDS))
1429 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Takashi Iwaid8009882008-09-07 12:51:13 +02001431 read_lock(&card->ctl_files_rwlock);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001432 list_for_each_entry(ctl, &card->ctl_files, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 wake_up(&ctl->change_sleep);
1434 kill_fasync(&ctl->fasync, SIGIO, POLL_ERR);
1435 }
Takashi Iwaid8009882008-09-07 12:51:13 +02001436 read_unlock(&card->ctl_files_rwlock);
Takashi Iwaic4614822006-06-23 14:38:23 +02001437
1438 if ((err = snd_unregister_device(SNDRV_DEVICE_TYPE_CONTROL,
1439 card, -1)) < 0)
1440 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return 0;
1442}
1443
1444/*
1445 * free all controls
1446 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001447static int snd_ctl_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001449 struct snd_card *card = device->device_data;
1450 struct snd_kcontrol *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452 down_write(&card->controls_rwsem);
1453 while (!list_empty(&card->controls)) {
1454 control = snd_kcontrol(card->controls.next);
1455 snd_ctl_remove(card, control);
1456 }
1457 up_write(&card->controls_rwsem);
1458 return 0;
1459}
1460
1461/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 * create control core:
1463 * called from init.c
1464 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001465int snd_ctl_create(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001467 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 .dev_free = snd_ctl_dev_free,
1469 .dev_register = snd_ctl_dev_register,
1470 .dev_disconnect = snd_ctl_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 };
1472
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001473 if (snd_BUG_ON(!card))
1474 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return snd_device_new(card, SNDRV_DEV_CONTROL, card, &ops);
1476}
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001477
1478/*
1479 * Frequently used control callbacks
1480 */
1481int snd_ctl_boolean_mono_info(struct snd_kcontrol *kcontrol,
1482 struct snd_ctl_elem_info *uinfo)
1483{
1484 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1485 uinfo->count = 1;
1486 uinfo->value.integer.min = 0;
1487 uinfo->value.integer.max = 1;
1488 return 0;
1489}
1490
1491EXPORT_SYMBOL(snd_ctl_boolean_mono_info);
1492
1493int snd_ctl_boolean_stereo_info(struct snd_kcontrol *kcontrol,
1494 struct snd_ctl_elem_info *uinfo)
1495{
1496 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1497 uinfo->count = 2;
1498 uinfo->value.integer.min = 0;
1499 uinfo->value.integer.max = 1;
1500 return 0;
1501}
1502
1503EXPORT_SYMBOL(snd_ctl_boolean_stereo_info);