blob: 183fab277b69632a5264c0bc98441abc8428ba0c [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>
Paul Gortmakerda155d52011-07-15 12:38:28 -040024#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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
Dan Rosenberg5591bf02010-09-28 14:18:20 -040035#define MAX_CONTROL_COUNT 1028
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Takashi Iwai82e9bae2005-11-17 13:53:23 +010037struct snd_kctl_ioctl {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 struct list_head list; /* list of all ioctls */
39 snd_kctl_ioctl_func_t fioctl;
Takashi Iwai82e9bae2005-11-17 13:53:23 +010040};
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42static DECLARE_RWSEM(snd_ioctl_rwsem);
43static LIST_HEAD(snd_control_ioctls);
44#ifdef CONFIG_COMPAT
45static LIST_HEAD(snd_control_compat_ioctls);
46#endif
47
48static int snd_ctl_open(struct inode *inode, struct file *file)
49{
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +010051 struct snd_card *card;
52 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 int err;
54
Takashi Iwai02f48652010-04-13 11:49:04 +020055 err = nonseekable_open(inode, file);
56 if (err < 0)
57 return err;
58
Clemens Ladischf87135f2005-11-20 14:06:59 +010059 card = snd_lookup_minor_data(iminor(inode), SNDRV_DEVICE_TYPE_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 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 }
Takashi Iwaica2c0962005-09-09 14:20:23 +020073 ctl = kzalloc(sizeof(*ctl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 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;
Takashi Iwai2529bba2006-08-04 12:57:19 +020082 ctl->prefer_pcm_subdevice = -1;
83 ctl->prefer_rawmidi_subdevice = -1;
Clemens Ladisch25d27ed2009-11-02 09:35:44 +010084 ctl->pid = get_pid(task_pid(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 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);
Takashi Iwaia0830db2012-10-16 13:05:59 +020089 snd_card_unref(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return 0;
91
92 __error:
93 module_put(card->module);
94 __error2:
95 snd_card_file_remove(card, file);
96 __error1:
Takashi Iwaia0830db2012-10-16 13:05:59 +020097 if (card)
98 snd_card_unref(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return err;
100}
101
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100102static void snd_ctl_empty_read_queue(struct snd_ctl_file * ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Borislav Petkov7507e8d2007-10-22 17:11:09 +0200104 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100105 struct snd_kctl_event *cread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Borislav Petkov7507e8d2007-10-22 17:11:09 +0200107 spin_lock_irqsave(&ctl->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 while (!list_empty(&ctl->events)) {
109 cread = snd_kctl_event(ctl->events.next);
110 list_del(&cread->list);
111 kfree(cread);
112 }
Borislav Petkov7507e8d2007-10-22 17:11:09 +0200113 spin_unlock_irqrestore(&ctl->read_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static int snd_ctl_release(struct inode *inode, struct file *file)
117{
118 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100119 struct snd_card *card;
120 struct snd_ctl_file *ctl;
121 struct snd_kcontrol *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 unsigned int idx;
123
124 ctl = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 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);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200131 list_for_each_entry(control, &card->controls, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 for (idx = 0; idx < control->count; idx++)
133 if (control->vd[idx].owner == ctl)
134 control->vd[idx].owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 up_write(&card->controls_rwsem);
136 snd_ctl_empty_read_queue(ctl);
Clemens Ladisch25d27ed2009-11-02 09:35:44 +0100137 put_pid(ctl->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 kfree(ctl);
139 module_put(card->module);
140 snd_card_file_remove(card, file);
141 return 0;
142}
143
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100144void snd_ctl_notify(struct snd_card *card, unsigned int mask,
145 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100148 struct snd_ctl_file *ctl;
149 struct snd_kctl_event *ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200151 if (snd_BUG_ON(!card || !id))
152 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 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
Johannes Berg9244b2c2006-10-05 16:02:22 +0200157 list_for_each_entry(ctl, &card->ctl_files, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (!ctl->subscribed)
159 continue;
160 spin_lock_irqsave(&ctl->read_lock, flags);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200161 list_for_each_entry(ev, &ctl->events, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (ev->id.numid == id->numid) {
163 ev->mask |= mask;
164 goto _found;
165 }
166 }
Takashi Iwaica2c0962005-09-09 14:20:23 +0200167 ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 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
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200183EXPORT_SYMBOL(snd_ctl_notify);
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/**
186 * snd_ctl_new - create a control instance from the template
187 * @control: the control template
188 * @access: the default control access
189 *
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100190 * Allocates a new struct snd_kcontrol instance and copies the given template
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * to the new instance. It does not copy volatile data (access).
192 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100193 * Return: The pointer of the new instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 */
Adrian Bunk0b51ba02006-11-20 17:50:17 +0100195static struct snd_kcontrol *snd_ctl_new(struct snd_kcontrol *control,
196 unsigned int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100198 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 unsigned int idx;
200
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200201 if (snd_BUG_ON(!control || !control->count))
202 return NULL;
Dan Rosenberg5591bf02010-09-28 14:18:20 -0400203
204 if (control->count > MAX_CONTROL_COUNT)
205 return NULL;
206
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100207 kctl = kzalloc(sizeof(*kctl) + sizeof(struct snd_kcontrol_volatile) * control->count, GFP_KERNEL);
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100208 if (kctl == NULL) {
209 snd_printk(KERN_ERR "Cannot allocate control instance\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return NULL;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 *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 *
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100223 * Allocates a new struct snd_kcontrol instance and initialize from the given
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 * 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 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100227 * Return: The pointer of the newly generated instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100229struct snd_kcontrol *snd_ctl_new1(const struct snd_kcontrol_new *ncontrol,
230 void *private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100232 struct snd_kcontrol kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 unsigned int access;
234
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200235 if (snd_BUG_ON(!ncontrol || !ncontrol->info))
236 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 memset(&kctl, 0, sizeof(kctl));
238 kctl.id.iface = ncontrol->iface;
239 kctl.id.device = ncontrol->device;
240 kctl.id.subdevice = ncontrol->subdevice;
Mark Brown366840d2008-10-29 14:40:30 +0000241 if (ncontrol->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 strlcpy(kctl.id.name, ncontrol->name, sizeof(kctl.id.name));
Mark Brown366840d2008-10-29 14:40:30 +0000243 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 kctl.id.index = ncontrol->index;
249 kctl.count = ncontrol->count ? ncontrol->count : 1;
250 access = ncontrol->access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200251 (ncontrol->access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|
Takashi Iwaia8d372f2012-07-30 13:47:07 +0200252 SNDRV_CTL_ELEM_ACCESS_VOLATILE|
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200253 SNDRV_CTL_ELEM_ACCESS_INACTIVE|
Clemens Ladischa75d7a42010-02-01 13:29:50 +0100254 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE|
255 SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND|
256 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 kctl.info = ncontrol->info;
258 kctl.get = ncontrol->get;
259 kctl.put = ncontrol->put;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200260 kctl.tlv.p = ncontrol->tlv.p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 kctl.private_value = ncontrol->private_value;
262 kctl.private_data = private_data;
263 return snd_ctl_new(&kctl, access);
264}
265
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200266EXPORT_SYMBOL(snd_ctl_new1);
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/**
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 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100276void snd_ctl_free_one(struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 if (kcontrol) {
279 if (kcontrol->private_free)
280 kcontrol->private_free(kcontrol);
281 kfree(kcontrol);
282 }
283}
284
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200285EXPORT_SYMBOL(snd_ctl_free_one);
286
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100287static bool snd_ctl_remove_numid_conflict(struct snd_card *card,
288 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100290 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Johannes Berg9244b2c2006-10-05 16:02:22 +0200292 list_for_each_entry(kctl, &card->controls, list) {
Clemens Ladisch7c733582011-03-07 13:22:50 +0100293 if (kctl->id.numid < card->last_numid + 1 + count &&
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100294 kctl->id.numid + kctl->count > card->last_numid + 1) {
295 card->last_numid = kctl->id.numid + kctl->count - 1;
296 return true;
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100299 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100302static int snd_ctl_find_hole(struct snd_card *card, unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100304 unsigned int iter = 100000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100306 while (snd_ctl_remove_numid_conflict(card, count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (--iter == 0) {
308 /* this situation is very unlikely */
309 snd_printk(KERN_ERR "unable to allocate new control numid\n");
310 return -ENOMEM;
311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313 return 0;
314}
315
316/**
317 * snd_ctl_add - add the control instance to the card
318 * @card: the card instance
319 * @kcontrol: the control instance to add
320 *
321 * Adds the control instance created via snd_ctl_new() or
322 * snd_ctl_new1() to the given card. Assigns also an unique
323 * numid used for fast search.
324 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * It frees automatically the control which cannot be added.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100326 *
327 * Return: Zero if successful, or a negative error code on failure.
328 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100330int snd_ctl_add(struct snd_card *card, struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100332 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 unsigned int idx;
Takashi Iwaic6077b32006-03-21 16:07:13 +0100334 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100336 if (! kcontrol)
Takashi Iwaic6077b32006-03-21 16:07:13 +0100337 return err;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200338 if (snd_BUG_ON(!card || !kcontrol->info))
339 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 id = kcontrol->id;
341 down_write(&card->controls_rwsem);
342 if (snd_ctl_find_id(card, &id)) {
343 up_write(&card->controls_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 snd_printd(KERN_ERR "control %i:%i:%i:%s:%i is already present\n",
345 id.iface,
346 id.device,
347 id.subdevice,
348 id.name,
349 id.index);
Takashi Iwaic6077b32006-03-21 16:07:13 +0100350 err = -EBUSY;
351 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353 if (snd_ctl_find_hole(card, kcontrol->count) < 0) {
354 up_write(&card->controls_rwsem);
Takashi Iwaic6077b32006-03-21 16:07:13 +0100355 err = -ENOMEM;
356 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358 list_add_tail(&kcontrol->list, &card->controls);
359 card->controls_count += kcontrol->count;
360 kcontrol->id.numid = card->last_numid + 1;
361 card->last_numid += kcontrol->count;
362 up_write(&card->controls_rwsem);
363 for (idx = 0; idx < kcontrol->count; idx++, id.index++, id.numid++)
364 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_ADD, &id);
365 return 0;
Takashi Iwaic6077b32006-03-21 16:07:13 +0100366
367 error:
368 snd_ctl_free_one(kcontrol);
369 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200372EXPORT_SYMBOL(snd_ctl_add);
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/**
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000375 * snd_ctl_replace - replace the control instance of the card
376 * @card: the card instance
377 * @kcontrol: the control instance to replace
378 * @add_on_replace: add the control if not already added
379 *
380 * Replaces the given control. If the given control does not exist
381 * and the add_on_replace flag is set, the control is added. If the
382 * control exists, it is destroyed first.
383 *
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000384 * It frees automatically the control which cannot be added or replaced.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100385 *
386 * Return: Zero if successful, or a negative error code on failure.
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000387 */
388int snd_ctl_replace(struct snd_card *card, struct snd_kcontrol *kcontrol,
389 bool add_on_replace)
390{
391 struct snd_ctl_elem_id id;
392 unsigned int idx;
393 struct snd_kcontrol *old;
394 int ret;
395
396 if (!kcontrol)
397 return -EINVAL;
398 if (snd_BUG_ON(!card || !kcontrol->info)) {
399 ret = -EINVAL;
400 goto error;
401 }
402 id = kcontrol->id;
403 down_write(&card->controls_rwsem);
404 old = snd_ctl_find_id(card, &id);
405 if (!old) {
406 if (add_on_replace)
407 goto add;
408 up_write(&card->controls_rwsem);
409 ret = -EINVAL;
410 goto error;
411 }
412 ret = snd_ctl_remove(card, old);
413 if (ret < 0) {
414 up_write(&card->controls_rwsem);
415 goto error;
416 }
417add:
418 if (snd_ctl_find_hole(card, kcontrol->count) < 0) {
419 up_write(&card->controls_rwsem);
420 ret = -ENOMEM;
421 goto error;
422 }
423 list_add_tail(&kcontrol->list, &card->controls);
424 card->controls_count += kcontrol->count;
425 kcontrol->id.numid = card->last_numid + 1;
426 card->last_numid += kcontrol->count;
427 up_write(&card->controls_rwsem);
428 for (idx = 0; idx < kcontrol->count; idx++, id.index++, id.numid++)
429 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_ADD, &id);
430 return 0;
431
432error:
433 snd_ctl_free_one(kcontrol);
434 return ret;
435}
436EXPORT_SYMBOL(snd_ctl_replace);
437
438/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * snd_ctl_remove - remove the control from the card and release it
440 * @card: the card instance
441 * @kcontrol: the control instance to remove
442 *
443 * Removes the control from the card and then releases the instance.
444 * You don't need to call snd_ctl_free_one(). You must be in
445 * the write lock - down_write(&card->controls_rwsem).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100446 *
447 * Return: 0 if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100449int snd_ctl_remove(struct snd_card *card, struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100451 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 unsigned int idx;
453
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200454 if (snd_BUG_ON(!card || !kcontrol))
455 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 list_del(&kcontrol->list);
457 card->controls_count -= kcontrol->count;
458 id = kcontrol->id;
459 for (idx = 0; idx < kcontrol->count; idx++, id.index++, id.numid++)
460 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_REMOVE, &id);
461 snd_ctl_free_one(kcontrol);
462 return 0;
463}
464
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200465EXPORT_SYMBOL(snd_ctl_remove);
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/**
468 * snd_ctl_remove_id - remove the control of the given id and release it
469 * @card: the card instance
470 * @id: the control id to remove
471 *
472 * Finds the control instance with the given id, removes it from the
473 * card list and releases it.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100474 *
475 * Return: 0 if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100477int snd_ctl_remove_id(struct snd_card *card, struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100479 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 int ret;
481
482 down_write(&card->controls_rwsem);
483 kctl = snd_ctl_find_id(card, id);
484 if (kctl == NULL) {
485 up_write(&card->controls_rwsem);
486 return -ENOENT;
487 }
488 ret = snd_ctl_remove(card, kctl);
489 up_write(&card->controls_rwsem);
490 return ret;
491}
492
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200493EXPORT_SYMBOL(snd_ctl_remove_id);
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495/**
Clemens Ladischf217ac52009-08-17 12:27:22 +0200496 * snd_ctl_remove_user_ctl - remove and release the unlocked user control
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * @file: active control handle
498 * @id: the control id to remove
499 *
500 * Finds the control instance with the given id, removes it from the
501 * card list and releases it.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100502 *
503 * Return: 0 if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 */
Clemens Ladischf217ac52009-08-17 12:27:22 +0200505static int snd_ctl_remove_user_ctl(struct snd_ctl_file * file,
506 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100508 struct snd_card *card = file->card;
509 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 int idx, ret;
511
512 down_write(&card->controls_rwsem);
513 kctl = snd_ctl_find_id(card, id);
514 if (kctl == NULL) {
Clemens Ladisch317b8082009-08-17 12:26:34 +0200515 ret = -ENOENT;
516 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
Clemens Ladisch18dd0aa2009-08-17 12:28:09 +0200518 if (!(kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_USER)) {
519 ret = -EINVAL;
520 goto error;
521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 for (idx = 0; idx < kctl->count; idx++)
523 if (kctl->vd[idx].owner != NULL && kctl->vd[idx].owner != file) {
Clemens Ladisch317b8082009-08-17 12:26:34 +0200524 ret = -EBUSY;
525 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527 ret = snd_ctl_remove(card, kctl);
Clemens Ladischf217ac52009-08-17 12:27:22 +0200528 if (ret < 0)
529 goto error;
530 card->user_ctl_count--;
Clemens Ladisch317b8082009-08-17 12:26:34 +0200531error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 up_write(&card->controls_rwsem);
533 return ret;
534}
535
536/**
Takashi Iwai3cbdd752008-08-29 16:09:01 +0200537 * snd_ctl_activate_id - activate/inactivate the control of the given id
538 * @card: the card instance
539 * @id: the control id to activate/inactivate
540 * @active: non-zero to activate
541 *
542 * Finds the control instance with the given id, and activate or
543 * inactivate the control together with notification, if changed.
544 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100545 * Return: 0 if unchanged, 1 if changed, or a negative error code on failure.
Takashi Iwai3cbdd752008-08-29 16:09:01 +0200546 */
547int snd_ctl_activate_id(struct snd_card *card, struct snd_ctl_elem_id *id,
548 int active)
549{
550 struct snd_kcontrol *kctl;
551 struct snd_kcontrol_volatile *vd;
552 unsigned int index_offset;
553 int ret;
554
555 down_write(&card->controls_rwsem);
556 kctl = snd_ctl_find_id(card, id);
557 if (kctl == NULL) {
558 ret = -ENOENT;
559 goto unlock;
560 }
561 index_offset = snd_ctl_get_ioff(kctl, &kctl->id);
562 vd = &kctl->vd[index_offset];
563 ret = 0;
564 if (active) {
565 if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE))
566 goto unlock;
567 vd->access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
568 } else {
569 if (vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE)
570 goto unlock;
571 vd->access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
572 }
573 ret = 1;
574 unlock:
575 up_write(&card->controls_rwsem);
576 if (ret > 0)
577 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_INFO, id);
578 return ret;
579}
580EXPORT_SYMBOL_GPL(snd_ctl_activate_id);
581
582/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 * snd_ctl_rename_id - replace the id of a control on the card
584 * @card: the card instance
585 * @src_id: the old id
586 * @dst_id: the new id
587 *
588 * Finds the control with the old id from the card, and replaces the
589 * id with the new one.
590 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100591 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100593int snd_ctl_rename_id(struct snd_card *card, struct snd_ctl_elem_id *src_id,
594 struct snd_ctl_elem_id *dst_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100596 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 down_write(&card->controls_rwsem);
599 kctl = snd_ctl_find_id(card, src_id);
600 if (kctl == NULL) {
601 up_write(&card->controls_rwsem);
602 return -ENOENT;
603 }
604 kctl->id = *dst_id;
605 kctl->id.numid = card->last_numid + 1;
606 card->last_numid += kctl->count;
607 up_write(&card->controls_rwsem);
608 return 0;
609}
610
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200611EXPORT_SYMBOL(snd_ctl_rename_id);
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613/**
614 * snd_ctl_find_numid - find the control instance with the given number-id
615 * @card: the card instance
616 * @numid: the number-id to search
617 *
618 * Finds the control instance with the given number-id from the card.
619 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 * The caller must down card->controls_rwsem before calling this function
621 * (if the race condition can happen).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100622 *
623 * Return: The pointer of the instance if found, or %NULL if not.
624 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100626struct snd_kcontrol *snd_ctl_find_numid(struct snd_card *card, unsigned int numid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100628 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200630 if (snd_BUG_ON(!card || !numid))
631 return NULL;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200632 list_for_each_entry(kctl, &card->controls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (kctl->id.numid <= numid && kctl->id.numid + kctl->count > numid)
634 return kctl;
635 }
636 return NULL;
637}
638
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200639EXPORT_SYMBOL(snd_ctl_find_numid);
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641/**
642 * snd_ctl_find_id - find the control instance with the given id
643 * @card: the card instance
644 * @id: the id to search
645 *
646 * Finds the control instance with the given id from the card.
647 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 * The caller must down card->controls_rwsem before calling this function
649 * (if the race condition can happen).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100650 *
651 * Return: The pointer of the instance if found, or %NULL if not.
652 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100654struct snd_kcontrol *snd_ctl_find_id(struct snd_card *card,
655 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100657 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200659 if (snd_BUG_ON(!card || !id))
660 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (id->numid != 0)
662 return snd_ctl_find_numid(card, id->numid);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200663 list_for_each_entry(kctl, &card->controls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (kctl->id.iface != id->iface)
665 continue;
666 if (kctl->id.device != id->device)
667 continue;
668 if (kctl->id.subdevice != id->subdevice)
669 continue;
670 if (strncmp(kctl->id.name, id->name, sizeof(kctl->id.name)))
671 continue;
672 if (kctl->id.index > id->index)
673 continue;
674 if (kctl->id.index + kctl->count <= id->index)
675 continue;
676 return kctl;
677 }
678 return NULL;
679}
680
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200681EXPORT_SYMBOL(snd_ctl_find_id);
682
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100683static int snd_ctl_card_info(struct snd_card *card, struct snd_ctl_file * ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 unsigned int cmd, void __user *arg)
685{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100686 struct snd_ctl_card_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Takashi Iwaica2c0962005-09-09 14:20:23 +0200688 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (! info)
690 return -ENOMEM;
691 down_read(&snd_ioctl_rwsem);
692 info->card = card->number;
693 strlcpy(info->id, card->id, sizeof(info->id));
694 strlcpy(info->driver, card->driver, sizeof(info->driver));
695 strlcpy(info->name, card->shortname, sizeof(info->name));
696 strlcpy(info->longname, card->longname, sizeof(info->longname));
697 strlcpy(info->mixername, card->mixername, sizeof(info->mixername));
698 strlcpy(info->components, card->components, sizeof(info->components));
699 up_read(&snd_ioctl_rwsem);
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100700 if (copy_to_user(arg, info, sizeof(struct snd_ctl_card_info))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 kfree(info);
702 return -EFAULT;
703 }
704 kfree(info);
705 return 0;
706}
707
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100708static int snd_ctl_elem_list(struct snd_card *card,
709 struct snd_ctl_elem_list __user *_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 struct list_head *plist;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100712 struct snd_ctl_elem_list list;
713 struct snd_kcontrol *kctl;
714 struct snd_ctl_elem_id *dst, *id;
Luca Tettamanti78fa2c42011-05-25 22:43:27 +0200715 unsigned int offset, space, jidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 if (copy_from_user(&list, _list, sizeof(list)))
718 return -EFAULT;
719 offset = list.offset;
720 space = list.space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* try limit maximum space */
722 if (space > 16384)
723 return -ENOMEM;
724 if (space > 0) {
725 /* allocate temporary buffer for atomic operation */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100726 dst = vmalloc(space * sizeof(struct snd_ctl_elem_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (dst == NULL)
728 return -ENOMEM;
729 down_read(&card->controls_rwsem);
730 list.count = card->controls_count;
731 plist = card->controls.next;
732 while (plist != &card->controls) {
733 if (offset == 0)
734 break;
735 kctl = snd_kcontrol(plist);
736 if (offset < kctl->count)
737 break;
738 offset -= kctl->count;
739 plist = plist->next;
740 }
741 list.used = 0;
742 id = dst;
743 while (space > 0 && plist != &card->controls) {
744 kctl = snd_kcontrol(plist);
745 for (jidx = offset; space > 0 && jidx < kctl->count; jidx++) {
746 snd_ctl_build_ioff(id, kctl, jidx);
747 id++;
748 space--;
749 list.used++;
750 }
751 plist = plist->next;
752 offset = 0;
753 }
754 up_read(&card->controls_rwsem);
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100755 if (list.used > 0 &&
756 copy_to_user(list.pids, dst,
757 list.used * sizeof(struct snd_ctl_elem_id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 vfree(dst);
759 return -EFAULT;
760 }
761 vfree(dst);
762 } else {
763 down_read(&card->controls_rwsem);
764 list.count = card->controls_count;
765 up_read(&card->controls_rwsem);
766 }
767 if (copy_to_user(_list, &list, sizeof(list)))
768 return -EFAULT;
769 return 0;
770}
771
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100772static int snd_ctl_elem_info(struct snd_ctl_file *ctl,
773 struct snd_ctl_elem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100775 struct snd_card *card = ctl->card;
776 struct snd_kcontrol *kctl;
777 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 unsigned int index_offset;
779 int result;
780
781 down_read(&card->controls_rwsem);
782 kctl = snd_ctl_find_id(card, &info->id);
783 if (kctl == NULL) {
784 up_read(&card->controls_rwsem);
785 return -ENOENT;
786 }
787#ifdef CONFIG_SND_DEBUG
788 info->access = 0;
789#endif
790 result = kctl->info(kctl, info);
791 if (result >= 0) {
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200792 snd_BUG_ON(info->access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 index_offset = snd_ctl_get_ioff(kctl, &info->id);
794 vd = &kctl->vd[index_offset];
795 snd_ctl_build_ioff(&info->id, kctl, index_offset);
796 info->access = vd->access;
797 if (vd->owner) {
798 info->access |= SNDRV_CTL_ELEM_ACCESS_LOCK;
799 if (vd->owner == ctl)
800 info->access |= SNDRV_CTL_ELEM_ACCESS_OWNER;
Clemens Ladisch25d27ed2009-11-02 09:35:44 +0100801 info->owner = pid_vnr(vd->owner->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 } else {
803 info->owner = -1;
804 }
805 }
806 up_read(&card->controls_rwsem);
807 return result;
808}
809
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100810static int snd_ctl_elem_info_user(struct snd_ctl_file *ctl,
811 struct snd_ctl_elem_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100813 struct snd_ctl_elem_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 int result;
815
816 if (copy_from_user(&info, _info, sizeof(info)))
817 return -EFAULT;
Giuliano Pochini64649402006-03-13 14:11:11 +0100818 snd_power_lock(ctl->card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200819 result = snd_power_wait(ctl->card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100820 if (result >= 0)
821 result = snd_ctl_elem_info(ctl, &info);
822 snd_power_unlock(ctl->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (result >= 0)
824 if (copy_to_user(_info, &info, sizeof(info)))
825 return -EFAULT;
826 return result;
827}
828
Takashi Iwaid3bd67c2008-06-12 18:17:26 +0200829static int snd_ctl_elem_read(struct snd_card *card,
830 struct snd_ctl_elem_value *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100832 struct snd_kcontrol *kctl;
833 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 unsigned int index_offset;
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100835 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 down_read(&card->controls_rwsem);
838 kctl = snd_ctl_find_id(card, &control->id);
839 if (kctl == NULL) {
840 result = -ENOENT;
841 } else {
842 index_offset = snd_ctl_get_ioff(kctl, &control->id);
843 vd = &kctl->vd[index_offset];
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100844 if ((vd->access & SNDRV_CTL_ELEM_ACCESS_READ) &&
845 kctl->get != NULL) {
846 snd_ctl_build_ioff(&control->id, kctl, index_offset);
847 result = kctl->get(kctl, control);
848 } else
849 result = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851 up_read(&card->controls_rwsem);
852 return result;
853}
854
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100855static int snd_ctl_elem_read_user(struct snd_card *card,
856 struct snd_ctl_elem_value __user *_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100858 struct snd_ctl_elem_value *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 int result;
Li Zefanef44a1e2009-04-10 09:43:08 +0800860
861 control = memdup_user(_control, sizeof(*control));
862 if (IS_ERR(control))
863 return PTR_ERR(control);
864
Giuliano Pochini64649402006-03-13 14:11:11 +0100865 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200866 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100867 if (result >= 0)
868 result = snd_ctl_elem_read(card, control);
869 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (result >= 0)
871 if (copy_to_user(_control, control, sizeof(*control)))
872 result = -EFAULT;
873 kfree(control);
874 return result;
875}
876
Takashi Iwaid3bd67c2008-06-12 18:17:26 +0200877static int snd_ctl_elem_write(struct snd_card *card, struct snd_ctl_file *file,
878 struct snd_ctl_elem_value *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100880 struct snd_kcontrol *kctl;
881 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 unsigned int index_offset;
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100883 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 down_read(&card->controls_rwsem);
886 kctl = snd_ctl_find_id(card, &control->id);
887 if (kctl == NULL) {
888 result = -ENOENT;
889 } else {
890 index_offset = snd_ctl_get_ioff(kctl, &control->id);
891 vd = &kctl->vd[index_offset];
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100892 if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_WRITE) ||
893 kctl->put == NULL ||
894 (file && vd->owner && vd->owner != file)) {
895 result = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 } else {
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100897 snd_ctl_build_ioff(&control->id, kctl, index_offset);
898 result = kctl->put(kctl, control);
899 }
900 if (result > 0) {
901 up_read(&card->controls_rwsem);
902 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
903 &control->id);
904 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906 }
907 up_read(&card->controls_rwsem);
908 return result;
909}
910
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100911static int snd_ctl_elem_write_user(struct snd_ctl_file *file,
912 struct snd_ctl_elem_value __user *_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100914 struct snd_ctl_elem_value *control;
Giuliano Pochini64649402006-03-13 14:11:11 +0100915 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 int result;
917
Li Zefanef44a1e2009-04-10 09:43:08 +0800918 control = memdup_user(_control, sizeof(*control));
919 if (IS_ERR(control))
920 return PTR_ERR(control);
921
Giuliano Pochini64649402006-03-13 14:11:11 +0100922 card = file->card;
923 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200924 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100925 if (result >= 0)
926 result = snd_ctl_elem_write(card, file, control);
927 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (result >= 0)
929 if (copy_to_user(_control, control, sizeof(*control)))
930 result = -EFAULT;
931 kfree(control);
932 return result;
933}
934
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100935static int snd_ctl_elem_lock(struct snd_ctl_file *file,
936 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100938 struct snd_card *card = file->card;
939 struct snd_ctl_elem_id id;
940 struct snd_kcontrol *kctl;
941 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 int result;
943
944 if (copy_from_user(&id, _id, sizeof(id)))
945 return -EFAULT;
946 down_write(&card->controls_rwsem);
947 kctl = snd_ctl_find_id(card, &id);
948 if (kctl == NULL) {
949 result = -ENOENT;
950 } else {
951 vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
952 if (vd->owner != NULL)
953 result = -EBUSY;
954 else {
955 vd->owner = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 result = 0;
957 }
958 }
959 up_write(&card->controls_rwsem);
960 return result;
961}
962
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100963static int snd_ctl_elem_unlock(struct snd_ctl_file *file,
964 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100966 struct snd_card *card = file->card;
967 struct snd_ctl_elem_id id;
968 struct snd_kcontrol *kctl;
969 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int result;
971
972 if (copy_from_user(&id, _id, sizeof(id)))
973 return -EFAULT;
974 down_write(&card->controls_rwsem);
975 kctl = snd_ctl_find_id(card, &id);
976 if (kctl == NULL) {
977 result = -ENOENT;
978 } else {
979 vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
980 if (vd->owner == NULL)
981 result = -EINVAL;
982 else if (vd->owner != file)
983 result = -EPERM;
984 else {
985 vd->owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 result = 0;
987 }
988 }
989 up_write(&card->controls_rwsem);
990 return result;
991}
992
993struct user_element {
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100994 struct snd_ctl_elem_info info;
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +0200995 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 void *elem_data; /* element data */
997 unsigned long elem_data_size; /* size of element data in bytes */
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200998 void *tlv_data; /* TLV data */
999 unsigned long tlv_data_size; /* TLV data size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 void *priv_data; /* private data (like strings for enumerated type) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001};
1002
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001003static int snd_ctl_elem_user_info(struct snd_kcontrol *kcontrol,
1004 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 struct user_element *ue = kcontrol->private_data;
1007
1008 *uinfo = ue->info;
1009 return 0;
1010}
1011
Clemens Ladisch8d448162011-10-07 22:38:59 +02001012static int snd_ctl_elem_user_enum_info(struct snd_kcontrol *kcontrol,
1013 struct snd_ctl_elem_info *uinfo)
1014{
1015 struct user_element *ue = kcontrol->private_data;
1016 const char *names;
1017 unsigned int item;
1018
1019 item = uinfo->value.enumerated.item;
1020
1021 *uinfo = ue->info;
1022
1023 item = min(item, uinfo->value.enumerated.items - 1);
1024 uinfo->value.enumerated.item = item;
1025
1026 names = ue->priv_data;
1027 for (; item > 0; --item)
1028 names += strlen(names) + 1;
1029 strcpy(uinfo->value.enumerated.name, names);
1030
1031 return 0;
1032}
1033
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001034static int snd_ctl_elem_user_get(struct snd_kcontrol *kcontrol,
1035 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
1037 struct user_element *ue = kcontrol->private_data;
1038
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001039 mutex_lock(&ue->card->user_ctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 memcpy(&ucontrol->value, ue->elem_data, ue->elem_data_size);
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001041 mutex_unlock(&ue->card->user_ctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return 0;
1043}
1044
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001045static int snd_ctl_elem_user_put(struct snd_kcontrol *kcontrol,
1046 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 int change;
1049 struct user_element *ue = kcontrol->private_data;
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001050
1051 mutex_lock(&ue->card->user_ctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 change = memcmp(&ucontrol->value, ue->elem_data, ue->elem_data_size) != 0;
1053 if (change)
1054 memcpy(ue->elem_data, &ucontrol->value, ue->elem_data_size);
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001055 mutex_unlock(&ue->card->user_ctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return change;
1057}
1058
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001059static int snd_ctl_elem_user_tlv(struct snd_kcontrol *kcontrol,
1060 int op_flag,
1061 unsigned int size,
1062 unsigned int __user *tlv)
1063{
1064 struct user_element *ue = kcontrol->private_data;
1065 int change = 0;
1066 void *new_data;
1067
1068 if (op_flag > 0) {
1069 if (size > 1024 * 128) /* sane value */
1070 return -EINVAL;
Li Zefanef44a1e2009-04-10 09:43:08 +08001071
1072 new_data = memdup_user(tlv, size);
1073 if (IS_ERR(new_data))
1074 return PTR_ERR(new_data);
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001075 mutex_lock(&ue->card->user_ctl_lock);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001076 change = ue->tlv_data_size != size;
1077 if (!change)
1078 change = memcmp(ue->tlv_data, new_data, size);
1079 kfree(ue->tlv_data);
1080 ue->tlv_data = new_data;
1081 ue->tlv_data_size = size;
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001082 mutex_unlock(&ue->card->user_ctl_lock);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001083 } else {
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001084 int ret = 0;
1085
1086 mutex_lock(&ue->card->user_ctl_lock);
1087 if (!ue->tlv_data_size || !ue->tlv_data) {
1088 ret = -ENXIO;
1089 goto err_unlock;
1090 }
1091 if (size < ue->tlv_data_size) {
1092 ret = -ENOSPC;
1093 goto err_unlock;
1094 }
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001095 if (copy_to_user(tlv, ue->tlv_data, ue->tlv_data_size))
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001096 ret = -EFAULT;
1097err_unlock:
1098 mutex_unlock(&ue->card->user_ctl_lock);
1099 if (ret)
1100 return ret;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001101 }
1102 return change;
1103}
1104
Clemens Ladisch8d448162011-10-07 22:38:59 +02001105static int snd_ctl_elem_init_enum_names(struct user_element *ue)
1106{
1107 char *names, *p;
1108 size_t buf_len, name_len;
1109 unsigned int i;
Olof Johansson447c6f92011-11-05 22:51:54 +01001110 const uintptr_t user_ptrval = ue->info.value.enumerated.names_ptr;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001111
1112 if (ue->info.value.enumerated.names_length > 64 * 1024)
1113 return -EINVAL;
1114
Olof Johansson447c6f92011-11-05 22:51:54 +01001115 names = memdup_user((const void __user *)user_ptrval,
Clemens Ladisch8d448162011-10-07 22:38:59 +02001116 ue->info.value.enumerated.names_length);
1117 if (IS_ERR(names))
1118 return PTR_ERR(names);
1119
1120 /* check that there are enough valid names */
1121 buf_len = ue->info.value.enumerated.names_length;
1122 p = names;
1123 for (i = 0; i < ue->info.value.enumerated.items; ++i) {
1124 name_len = strnlen(p, buf_len);
1125 if (name_len == 0 || name_len >= 64 || name_len == buf_len) {
1126 kfree(names);
1127 return -EINVAL;
1128 }
1129 p += name_len + 1;
1130 buf_len -= name_len + 1;
1131 }
1132
1133 ue->priv_data = names;
1134 ue->info.value.enumerated.names_ptr = 0;
1135
1136 return 0;
1137}
1138
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001139static void snd_ctl_elem_user_free(struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001141 struct user_element *ue = kcontrol->private_data;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001142
1143 kfree(ue->tlv_data);
1144 kfree(ue->priv_data);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001145 kfree(ue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001148static int snd_ctl_elem_add(struct snd_ctl_file *file,
1149 struct snd_ctl_elem_info *info, int replace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001151 struct snd_card *card = file->card;
1152 struct snd_kcontrol kctl, *_kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 unsigned int access;
1154 long private_size;
1155 struct user_element *ue;
1156 int idx, err;
Lu Guanqun983929c2011-08-24 11:12:34 +08001157
Lu Guanqun08ede032011-08-24 14:45:10 +08001158 if (!replace && card->user_ctl_count >= MAX_USER_CONTROLS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return -ENOMEM;
Clemens Ladisch2a031ae2009-08-17 12:25:52 +02001160 if (info->count < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return -EINVAL;
1162 access = info->access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001163 (info->access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001164 SNDRV_CTL_ELEM_ACCESS_INACTIVE|
1165 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 info->id.numid = 0;
1167 memset(&kctl, 0, sizeof(kctl));
1168 down_write(&card->controls_rwsem);
1169 _kctl = snd_ctl_find_id(card, &info->id);
1170 err = 0;
1171 if (_kctl) {
1172 if (replace)
1173 err = snd_ctl_remove(card, _kctl);
1174 else
1175 err = -EBUSY;
1176 } else {
1177 if (replace)
1178 err = -ENOENT;
1179 }
1180 up_write(&card->controls_rwsem);
1181 if (err < 0)
1182 return err;
1183 memcpy(&kctl.id, &info->id, sizeof(info->id));
1184 kctl.count = info->owner ? info->owner : 1;
1185 access |= SNDRV_CTL_ELEM_ACCESS_USER;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001186 if (info->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED)
1187 kctl.info = snd_ctl_elem_user_enum_info;
1188 else
1189 kctl.info = snd_ctl_elem_user_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (access & SNDRV_CTL_ELEM_ACCESS_READ)
1191 kctl.get = snd_ctl_elem_user_get;
1192 if (access & SNDRV_CTL_ELEM_ACCESS_WRITE)
1193 kctl.put = snd_ctl_elem_user_put;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001194 if (access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE) {
1195 kctl.tlv.c = snd_ctl_elem_user_tlv;
1196 access |= SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 switch (info->type) {
1199 case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 case SNDRV_CTL_ELEM_TYPE_INTEGER:
1201 private_size = sizeof(long);
1202 if (info->count > 128)
1203 return -EINVAL;
1204 break;
1205 case SNDRV_CTL_ELEM_TYPE_INTEGER64:
1206 private_size = sizeof(long long);
1207 if (info->count > 64)
1208 return -EINVAL;
1209 break;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001210 case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
1211 private_size = sizeof(unsigned int);
1212 if (info->count > 128 || info->value.enumerated.items == 0)
1213 return -EINVAL;
1214 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 case SNDRV_CTL_ELEM_TYPE_BYTES:
1216 private_size = sizeof(unsigned char);
1217 if (info->count > 512)
1218 return -EINVAL;
1219 break;
1220 case SNDRV_CTL_ELEM_TYPE_IEC958:
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001221 private_size = sizeof(struct snd_aes_iec958);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (info->count != 1)
1223 return -EINVAL;
1224 break;
1225 default:
1226 return -EINVAL;
1227 }
1228 private_size *= info->count;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001229 ue = kzalloc(sizeof(struct user_element) + private_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (ue == NULL)
1231 return -ENOMEM;
Lars-Peter Clausenbe3bae52014-06-18 13:32:31 +02001232 ue->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 ue->info = *info;
Takashi Iwai86148e82006-08-24 12:36:36 +02001234 ue->info.access = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 ue->elem_data = (char *)ue + sizeof(*ue);
1236 ue->elem_data_size = private_size;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001237 if (ue->info.type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) {
1238 err = snd_ctl_elem_init_enum_names(ue);
1239 if (err < 0) {
1240 kfree(ue);
1241 return err;
1242 }
1243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 kctl.private_free = snd_ctl_elem_user_free;
1245 _kctl = snd_ctl_new(&kctl, access);
1246 if (_kctl == NULL) {
Clemens Ladisch8d448162011-10-07 22:38:59 +02001247 kfree(ue->priv_data);
Takashi Iwai2fbf1822006-03-06 15:42:51 -08001248 kfree(ue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return -ENOMEM;
1250 }
1251 _kctl->private_data = ue;
1252 for (idx = 0; idx < _kctl->count; idx++)
1253 _kctl->vd[idx].owner = file;
1254 err = snd_ctl_add(card, _kctl);
Takashi Iwai2fbf1822006-03-06 15:42:51 -08001255 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 down_write(&card->controls_rwsem);
1259 card->user_ctl_count++;
1260 up_write(&card->controls_rwsem);
1261
1262 return 0;
1263}
1264
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001265static int snd_ctl_elem_add_user(struct snd_ctl_file *file,
1266 struct snd_ctl_elem_info __user *_info, int replace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001268 struct snd_ctl_elem_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (copy_from_user(&info, _info, sizeof(info)))
1270 return -EFAULT;
1271 return snd_ctl_elem_add(file, &info, replace);
1272}
1273
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001274static int snd_ctl_elem_remove(struct snd_ctl_file *file,
1275 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001277 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 if (copy_from_user(&id, _id, sizeof(id)))
1280 return -EFAULT;
Clemens Ladischf217ac52009-08-17 12:27:22 +02001281 return snd_ctl_remove_user_ctl(file, &id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001284static int snd_ctl_subscribe_events(struct snd_ctl_file *file, int __user *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
1286 int subscribe;
1287 if (get_user(subscribe, ptr))
1288 return -EFAULT;
1289 if (subscribe < 0) {
1290 subscribe = file->subscribed;
1291 if (put_user(subscribe, ptr))
1292 return -EFAULT;
1293 return 0;
1294 }
1295 if (subscribe) {
1296 file->subscribed = 1;
1297 return 0;
1298 } else if (file->subscribed) {
1299 snd_ctl_empty_read_queue(file);
1300 file->subscribed = 0;
1301 }
1302 return 0;
1303}
1304
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001305static int snd_ctl_tlv_ioctl(struct snd_ctl_file *file,
1306 struct snd_ctl_tlv __user *_tlv,
1307 int op_flag)
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001308{
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001309 struct snd_card *card = file->card;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001310 struct snd_ctl_tlv tlv;
1311 struct snd_kcontrol *kctl;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001312 struct snd_kcontrol_volatile *vd;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001313 unsigned int len;
1314 int err = 0;
1315
1316 if (copy_from_user(&tlv, _tlv, sizeof(tlv)))
1317 return -EFAULT;
Clemens Ladisch61236372010-02-01 13:30:56 +01001318 if (tlv.length < sizeof(unsigned int) * 2)
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001319 return -EINVAL;
1320 down_read(&card->controls_rwsem);
1321 kctl = snd_ctl_find_numid(card, tlv.numid);
1322 if (kctl == NULL) {
1323 err = -ENOENT;
1324 goto __kctl_end;
1325 }
1326 if (kctl->tlv.p == NULL) {
1327 err = -ENXIO;
1328 goto __kctl_end;
1329 }
1330 vd = &kctl->vd[tlv.numid - kctl->id.numid];
1331 if ((op_flag == 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) == 0) ||
1332 (op_flag > 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE) == 0) ||
1333 (op_flag < 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND) == 0)) {
1334 err = -ENXIO;
1335 goto __kctl_end;
1336 }
1337 if (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
Dan Carpenterbec145a2009-11-18 10:31:57 +02001338 if (vd->owner != NULL && vd->owner != file) {
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001339 err = -EPERM;
1340 goto __kctl_end;
1341 }
Jeffrin Josebd483d42012-03-07 22:57:39 +05301342 err = kctl->tlv.c(kctl, op_flag, tlv.length, _tlv->tlv);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001343 if (err > 0) {
1344 up_read(&card->controls_rwsem);
1345 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_TLV, &kctl->id);
1346 return 0;
1347 }
1348 } else {
1349 if (op_flag) {
1350 err = -ENXIO;
1351 goto __kctl_end;
1352 }
1353 len = kctl->tlv.p[1] + 2 * sizeof(unsigned int);
1354 if (tlv.length < len) {
1355 err = -ENOMEM;
1356 goto __kctl_end;
1357 }
1358 if (copy_to_user(_tlv->tlv, kctl->tlv.p, len))
1359 err = -EFAULT;
1360 }
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001361 __kctl_end:
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001362 up_read(&card->controls_rwsem);
1363 return err;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001364}
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366static long snd_ctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1367{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001368 struct snd_ctl_file *ctl;
1369 struct snd_card *card;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001370 struct snd_kctl_ioctl *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 void __user *argp = (void __user *)arg;
1372 int __user *ip = argp;
1373 int err;
1374
1375 ctl = file->private_data;
1376 card = ctl->card;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001377 if (snd_BUG_ON(!card))
1378 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 switch (cmd) {
1380 case SNDRV_CTL_IOCTL_PVERSION:
1381 return put_user(SNDRV_CTL_VERSION, ip) ? -EFAULT : 0;
1382 case SNDRV_CTL_IOCTL_CARD_INFO:
1383 return snd_ctl_card_info(card, ctl, cmd, argp);
1384 case SNDRV_CTL_IOCTL_ELEM_LIST:
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001385 return snd_ctl_elem_list(card, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 case SNDRV_CTL_IOCTL_ELEM_INFO:
1387 return snd_ctl_elem_info_user(ctl, argp);
1388 case SNDRV_CTL_IOCTL_ELEM_READ:
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001389 return snd_ctl_elem_read_user(card, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 case SNDRV_CTL_IOCTL_ELEM_WRITE:
1391 return snd_ctl_elem_write_user(ctl, argp);
1392 case SNDRV_CTL_IOCTL_ELEM_LOCK:
1393 return snd_ctl_elem_lock(ctl, argp);
1394 case SNDRV_CTL_IOCTL_ELEM_UNLOCK:
1395 return snd_ctl_elem_unlock(ctl, argp);
1396 case SNDRV_CTL_IOCTL_ELEM_ADD:
1397 return snd_ctl_elem_add_user(ctl, argp, 0);
1398 case SNDRV_CTL_IOCTL_ELEM_REPLACE:
1399 return snd_ctl_elem_add_user(ctl, argp, 1);
1400 case SNDRV_CTL_IOCTL_ELEM_REMOVE:
1401 return snd_ctl_elem_remove(ctl, argp);
1402 case SNDRV_CTL_IOCTL_SUBSCRIBE_EVENTS:
1403 return snd_ctl_subscribe_events(ctl, ip);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001404 case SNDRV_CTL_IOCTL_TLV_READ:
1405 return snd_ctl_tlv_ioctl(ctl, argp, 0);
1406 case SNDRV_CTL_IOCTL_TLV_WRITE:
1407 return snd_ctl_tlv_ioctl(ctl, argp, 1);
1408 case SNDRV_CTL_IOCTL_TLV_COMMAND:
1409 return snd_ctl_tlv_ioctl(ctl, argp, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 case SNDRV_CTL_IOCTL_POWER:
Takashi Iwaia381a7a2005-11-17 15:55:49 +01001411 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 case SNDRV_CTL_IOCTL_POWER_STATE:
1413#ifdef CONFIG_PM
1414 return put_user(card->power_state, ip) ? -EFAULT : 0;
1415#else
1416 return put_user(SNDRV_CTL_POWER_D0, ip) ? -EFAULT : 0;
1417#endif
1418 }
1419 down_read(&snd_ioctl_rwsem);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001420 list_for_each_entry(p, &snd_control_ioctls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 err = p->fioctl(card, ctl, cmd, arg);
1422 if (err != -ENOIOCTLCMD) {
1423 up_read(&snd_ioctl_rwsem);
1424 return err;
1425 }
1426 }
1427 up_read(&snd_ioctl_rwsem);
Takashi Iwai6d85be62005-05-15 14:32:50 +02001428 snd_printdd("unknown ioctl = 0x%x\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 return -ENOTTY;
1430}
1431
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001432static ssize_t snd_ctl_read(struct file *file, char __user *buffer,
1433 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001435 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 int err = 0;
1437 ssize_t result = 0;
1438
1439 ctl = file->private_data;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001440 if (snd_BUG_ON(!ctl || !ctl->card))
1441 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (!ctl->subscribed)
1443 return -EBADFD;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001444 if (count < sizeof(struct snd_ctl_event))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return -EINVAL;
1446 spin_lock_irq(&ctl->read_lock);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001447 while (count >= sizeof(struct snd_ctl_event)) {
1448 struct snd_ctl_event ev;
1449 struct snd_kctl_event *kev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 while (list_empty(&ctl->events)) {
1451 wait_queue_t wait;
1452 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1453 err = -EAGAIN;
1454 goto __end_lock;
1455 }
1456 init_waitqueue_entry(&wait, current);
1457 add_wait_queue(&ctl->change_sleep, &wait);
1458 set_current_state(TASK_INTERRUPTIBLE);
1459 spin_unlock_irq(&ctl->read_lock);
1460 schedule();
1461 remove_wait_queue(&ctl->change_sleep, &wait);
Takashi Iwai0914f792012-10-16 16:43:39 +02001462 if (ctl->card->shutdown)
1463 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (signal_pending(current))
Adrian Bunk0e5d7202006-11-07 13:42:54 +01001465 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 spin_lock_irq(&ctl->read_lock);
1467 }
1468 kev = snd_kctl_event(ctl->events.next);
1469 ev.type = SNDRV_CTL_EVENT_ELEM;
1470 ev.data.elem.mask = kev->mask;
1471 ev.data.elem.id = kev->id;
1472 list_del(&kev->list);
1473 spin_unlock_irq(&ctl->read_lock);
1474 kfree(kev);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001475 if (copy_to_user(buffer, &ev, sizeof(struct snd_ctl_event))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 err = -EFAULT;
1477 goto __end;
1478 }
1479 spin_lock_irq(&ctl->read_lock);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001480 buffer += sizeof(struct snd_ctl_event);
1481 count -= sizeof(struct snd_ctl_event);
1482 result += sizeof(struct snd_ctl_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484 __end_lock:
1485 spin_unlock_irq(&ctl->read_lock);
1486 __end:
1487 return result > 0 ? result : err;
1488}
1489
1490static unsigned int snd_ctl_poll(struct file *file, poll_table * wait)
1491{
1492 unsigned int mask;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001493 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 ctl = file->private_data;
1496 if (!ctl->subscribed)
1497 return 0;
1498 poll_wait(file, &ctl->change_sleep, wait);
1499
1500 mask = 0;
1501 if (!list_empty(&ctl->events))
1502 mask |= POLLIN | POLLRDNORM;
1503
1504 return mask;
1505}
1506
1507/*
1508 * register the device-specific control-ioctls.
1509 * called from each device manager like pcm.c, hwdep.c, etc.
1510 */
1511static int _snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn, struct list_head *lists)
1512{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001513 struct snd_kctl_ioctl *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001515 pn = kzalloc(sizeof(struct snd_kctl_ioctl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (pn == NULL)
1517 return -ENOMEM;
1518 pn->fioctl = fcn;
1519 down_write(&snd_ioctl_rwsem);
1520 list_add_tail(&pn->list, lists);
1521 up_write(&snd_ioctl_rwsem);
1522 return 0;
1523}
1524
1525int snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn)
1526{
1527 return _snd_ctl_register_ioctl(fcn, &snd_control_ioctls);
1528}
1529
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001530EXPORT_SYMBOL(snd_ctl_register_ioctl);
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532#ifdef CONFIG_COMPAT
1533int snd_ctl_register_ioctl_compat(snd_kctl_ioctl_func_t fcn)
1534{
1535 return _snd_ctl_register_ioctl(fcn, &snd_control_compat_ioctls);
1536}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001537
1538EXPORT_SYMBOL(snd_ctl_register_ioctl_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539#endif
1540
1541/*
1542 * de-register the device-specific control-ioctls.
1543 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001544static int _snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn,
1545 struct list_head *lists)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001547 struct snd_kctl_ioctl *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001549 if (snd_BUG_ON(!fcn))
1550 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 down_write(&snd_ioctl_rwsem);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001552 list_for_each_entry(p, lists, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (p->fioctl == fcn) {
1554 list_del(&p->list);
1555 up_write(&snd_ioctl_rwsem);
1556 kfree(p);
1557 return 0;
1558 }
1559 }
1560 up_write(&snd_ioctl_rwsem);
1561 snd_BUG();
1562 return -EINVAL;
1563}
1564
1565int snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn)
1566{
1567 return _snd_ctl_unregister_ioctl(fcn, &snd_control_ioctls);
1568}
1569
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001570EXPORT_SYMBOL(snd_ctl_unregister_ioctl);
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572#ifdef CONFIG_COMPAT
1573int snd_ctl_unregister_ioctl_compat(snd_kctl_ioctl_func_t fcn)
1574{
1575 return _snd_ctl_unregister_ioctl(fcn, &snd_control_compat_ioctls);
1576}
1577
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001578EXPORT_SYMBOL(snd_ctl_unregister_ioctl_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579#endif
1580
1581static int snd_ctl_fasync(int fd, struct file * file, int on)
1582{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001583 struct snd_ctl_file *ctl;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 ctl = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001586 return fasync_helper(fd, file, on, &ctl->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
1589/*
1590 * ioctl32 compat
1591 */
1592#ifdef CONFIG_COMPAT
1593#include "control_compat.c"
1594#else
1595#define snd_ctl_ioctl_compat NULL
1596#endif
1597
1598/*
1599 * INIT PART
1600 */
1601
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001602static const struct file_operations snd_ctl_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
1604 .owner = THIS_MODULE,
1605 .read = snd_ctl_read,
1606 .open = snd_ctl_open,
1607 .release = snd_ctl_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02001608 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 .poll = snd_ctl_poll,
1610 .unlocked_ioctl = snd_ctl_ioctl,
1611 .compat_ioctl = snd_ctl_ioctl_compat,
1612 .fasync = snd_ctl_fasync,
1613};
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615/*
1616 * registration of the control device
1617 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001618static int snd_ctl_dev_register(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001620 struct snd_card *card = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 int err, cardnum;
1622 char name[16];
1623
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001624 if (snd_BUG_ON(!card))
1625 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 cardnum = card->number;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001627 if (snd_BUG_ON(cardnum < 0 || cardnum >= SNDRV_CARDS))
1628 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 sprintf(name, "controlC%i", cardnum);
Clemens Ladischf87135f2005-11-20 14:06:59 +01001630 if ((err = snd_register_device(SNDRV_DEVICE_TYPE_CONTROL, card, -1,
1631 &snd_ctl_f_ops, card, name)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return err;
1633 return 0;
1634}
1635
1636/*
1637 * disconnection of the control device
1638 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001639static int snd_ctl_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001641 struct snd_card *card = device->device_data;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001642 struct snd_ctl_file *ctl;
Takashi Iwaic4614822006-06-23 14:38:23 +02001643 int err, cardnum;
1644
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001645 if (snd_BUG_ON(!card))
1646 return -ENXIO;
Takashi Iwaic4614822006-06-23 14:38:23 +02001647 cardnum = card->number;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001648 if (snd_BUG_ON(cardnum < 0 || cardnum >= SNDRV_CARDS))
1649 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Takashi Iwaid8009882008-09-07 12:51:13 +02001651 read_lock(&card->ctl_files_rwlock);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001652 list_for_each_entry(ctl, &card->ctl_files, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 wake_up(&ctl->change_sleep);
1654 kill_fasync(&ctl->fasync, SIGIO, POLL_ERR);
1655 }
Takashi Iwaid8009882008-09-07 12:51:13 +02001656 read_unlock(&card->ctl_files_rwlock);
Takashi Iwaic4614822006-06-23 14:38:23 +02001657
1658 if ((err = snd_unregister_device(SNDRV_DEVICE_TYPE_CONTROL,
1659 card, -1)) < 0)
1660 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 return 0;
1662}
1663
1664/*
1665 * free all controls
1666 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001667static int snd_ctl_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001669 struct snd_card *card = device->device_data;
1670 struct snd_kcontrol *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 down_write(&card->controls_rwsem);
1673 while (!list_empty(&card->controls)) {
1674 control = snd_kcontrol(card->controls.next);
1675 snd_ctl_remove(card, control);
1676 }
1677 up_write(&card->controls_rwsem);
1678 return 0;
1679}
1680
1681/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 * create control core:
1683 * called from init.c
1684 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001685int snd_ctl_create(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001687 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 .dev_free = snd_ctl_dev_free,
1689 .dev_register = snd_ctl_dev_register,
1690 .dev_disconnect = snd_ctl_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 };
1692
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001693 if (snd_BUG_ON(!card))
1694 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 return snd_device_new(card, SNDRV_DEV_CONTROL, card, &ops);
1696}
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001697
1698/*
Clemens Ladisch96007322011-01-10 16:25:44 +01001699 * Frequently used control callbacks/helpers
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001700 */
1701int snd_ctl_boolean_mono_info(struct snd_kcontrol *kcontrol,
1702 struct snd_ctl_elem_info *uinfo)
1703{
1704 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1705 uinfo->count = 1;
1706 uinfo->value.integer.min = 0;
1707 uinfo->value.integer.max = 1;
1708 return 0;
1709}
1710
1711EXPORT_SYMBOL(snd_ctl_boolean_mono_info);
1712
1713int snd_ctl_boolean_stereo_info(struct snd_kcontrol *kcontrol,
1714 struct snd_ctl_elem_info *uinfo)
1715{
1716 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1717 uinfo->count = 2;
1718 uinfo->value.integer.min = 0;
1719 uinfo->value.integer.max = 1;
1720 return 0;
1721}
1722
1723EXPORT_SYMBOL(snd_ctl_boolean_stereo_info);
Clemens Ladisch96007322011-01-10 16:25:44 +01001724
1725/**
1726 * snd_ctl_enum_info - fills the info structure for an enumerated control
1727 * @info: the structure to be filled
1728 * @channels: the number of the control's channels; often one
1729 * @items: the number of control values; also the size of @names
1730 * @names: an array containing the names of all control values
1731 *
1732 * Sets all required fields in @info to their appropriate values.
1733 * If the control's accessibility is not the default (readable and writable),
1734 * the caller has to fill @info->access.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001735 *
1736 * Return: Zero.
Clemens Ladisch96007322011-01-10 16:25:44 +01001737 */
1738int snd_ctl_enum_info(struct snd_ctl_elem_info *info, unsigned int channels,
1739 unsigned int items, const char *const names[])
1740{
1741 info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1742 info->count = channels;
1743 info->value.enumerated.items = items;
1744 if (info->value.enumerated.item >= items)
1745 info->value.enumerated.item = items - 1;
1746 strlcpy(info->value.enumerated.name,
1747 names[info->value.enumerated.item],
1748 sizeof(info->value.enumerated.name));
1749 return 0;
1750}
1751EXPORT_SYMBOL(snd_ctl_enum_info);