blob: e214fabbc671445a4138ee864bcba8d3079baa16 [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;
Takashi Iwai23c18d42014-02-19 14:30:29 +010053 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
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 Iwai23c18d42014-02-19 14:30:29 +010082 for (i = 0; i < SND_CTL_SUBDEV_ITEMS; i++)
83 ctl->preferred_subdevice[i] = -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 Iwai12cddbd2014-10-30 13:44:34 +0100144/**
145 * snd_ctl_notify - Send notification to user-space for a control change
146 * @card: the card to send notification
147 * @mask: the event mask, SNDRV_CTL_EVENT_*
148 * @id: the ctl element id to send notification
149 *
150 * This function adds an event record with the given id and mask, appends
151 * to the list and wakes up the user-space for notification. This can be
152 * called in the atomic context.
153 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100154void snd_ctl_notify(struct snd_card *card, unsigned int mask,
155 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 unsigned long flags;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100158 struct snd_ctl_file *ctl;
159 struct snd_kctl_event *ev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200161 if (snd_BUG_ON(!card || !id))
162 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 read_lock(&card->ctl_files_rwlock);
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +0100164#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 card->mixer_oss_change_count++;
166#endif
Johannes Berg9244b2c2006-10-05 16:02:22 +0200167 list_for_each_entry(ctl, &card->ctl_files, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (!ctl->subscribed)
169 continue;
170 spin_lock_irqsave(&ctl->read_lock, flags);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200171 list_for_each_entry(ev, &ctl->events, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (ev->id.numid == id->numid) {
173 ev->mask |= mask;
174 goto _found;
175 }
176 }
Takashi Iwaica2c0962005-09-09 14:20:23 +0200177 ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (ev) {
179 ev->id = *id;
180 ev->mask = mask;
181 list_add_tail(&ev->list, &ctl->events);
182 } else {
Takashi Iwaibb009452014-02-04 18:18:16 +0100183 dev_err(card->dev, "No memory available to allocate event\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185 _found:
186 wake_up(&ctl->change_sleep);
187 spin_unlock_irqrestore(&ctl->read_lock, flags);
188 kill_fasync(&ctl->fasync, SIGIO, POLL_IN);
189 }
190 read_unlock(&card->ctl_files_rwlock);
191}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200192EXPORT_SYMBOL(snd_ctl_notify);
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/**
195 * snd_ctl_new - create a control instance from the template
196 * @control: the control template
197 * @access: the default control access
198 *
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100199 * Allocates a new struct snd_kcontrol instance and copies the given template
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * to the new instance. It does not copy volatile data (access).
201 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100202 * Return: The pointer of the new instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 */
Adrian Bunk0b51ba02006-11-20 17:50:17 +0100204static struct snd_kcontrol *snd_ctl_new(struct snd_kcontrol *control,
205 unsigned int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100207 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned int idx;
209
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200210 if (snd_BUG_ON(!control || !control->count))
211 return NULL;
Dan Rosenberg5591bf02010-09-28 14:18:20 -0400212
213 if (control->count > MAX_CONTROL_COUNT)
214 return NULL;
215
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100216 kctl = kzalloc(sizeof(*kctl) + sizeof(struct snd_kcontrol_volatile) * control->count, GFP_KERNEL);
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100217 if (kctl == NULL) {
Takashi Iwaibb009452014-02-04 18:18:16 +0100218 pr_err("ALSA: Cannot allocate control instance\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return NULL;
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 *kctl = *control;
222 for (idx = 0; idx < kctl->count; idx++)
223 kctl->vd[idx].access = access;
224 return kctl;
225}
226
227/**
228 * snd_ctl_new1 - create a control instance from the template
229 * @ncontrol: the initialization record
230 * @private_data: the private data to set
231 *
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100232 * Allocates a new struct snd_kcontrol instance and initialize from the given
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * template. When the access field of ncontrol is 0, it's assumed as
234 * READWRITE access. When the count field is 0, it's assumes as one.
235 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100236 * Return: The pointer of the newly generated instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100238struct snd_kcontrol *snd_ctl_new1(const struct snd_kcontrol_new *ncontrol,
239 void *private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100241 struct snd_kcontrol kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 unsigned int access;
243
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200244 if (snd_BUG_ON(!ncontrol || !ncontrol->info))
245 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 memset(&kctl, 0, sizeof(kctl));
247 kctl.id.iface = ncontrol->iface;
248 kctl.id.device = ncontrol->device;
249 kctl.id.subdevice = ncontrol->subdevice;
Mark Brown366840d2008-10-29 14:40:30 +0000250 if (ncontrol->name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 strlcpy(kctl.id.name, ncontrol->name, sizeof(kctl.id.name));
Mark Brown366840d2008-10-29 14:40:30 +0000252 if (strcmp(ncontrol->name, kctl.id.name) != 0)
Takashi Iwaibb009452014-02-04 18:18:16 +0100253 pr_warn("ALSA: Control name '%s' truncated to '%s'\n",
254 ncontrol->name, kctl.id.name);
Mark Brown366840d2008-10-29 14:40:30 +0000255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 kctl.id.index = ncontrol->index;
257 kctl.count = ncontrol->count ? ncontrol->count : 1;
258 access = ncontrol->access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200259 (ncontrol->access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|
Takashi Iwaia8d372f2012-07-30 13:47:07 +0200260 SNDRV_CTL_ELEM_ACCESS_VOLATILE|
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200261 SNDRV_CTL_ELEM_ACCESS_INACTIVE|
Clemens Ladischa75d7a42010-02-01 13:29:50 +0100262 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE|
263 SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND|
264 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 kctl.info = ncontrol->info;
266 kctl.get = ncontrol->get;
267 kctl.put = ncontrol->put;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +0200268 kctl.tlv.p = ncontrol->tlv.p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 kctl.private_value = ncontrol->private_value;
270 kctl.private_data = private_data;
271 return snd_ctl_new(&kctl, access);
272}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200273EXPORT_SYMBOL(snd_ctl_new1);
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/**
276 * snd_ctl_free_one - release the control instance
277 * @kcontrol: the control instance
278 *
279 * Releases the control instance created via snd_ctl_new()
280 * or snd_ctl_new1().
281 * Don't call this after the control was added to the card.
282 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100283void snd_ctl_free_one(struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 if (kcontrol) {
286 if (kcontrol->private_free)
287 kcontrol->private_free(kcontrol);
288 kfree(kcontrol);
289 }
290}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200291EXPORT_SYMBOL(snd_ctl_free_one);
292
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100293static bool snd_ctl_remove_numid_conflict(struct snd_card *card,
294 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100296 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Lars-Peter Clausenac902c12014-06-18 13:32:34 +0200298 /* Make sure that the ids assigned to the control do not wrap around */
299 if (card->last_numid >= UINT_MAX - count)
300 card->last_numid = 0;
301
Johannes Berg9244b2c2006-10-05 16:02:22 +0200302 list_for_each_entry(kctl, &card->controls, list) {
Clemens Ladisch7c733582011-03-07 13:22:50 +0100303 if (kctl->id.numid < card->last_numid + 1 + count &&
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100304 kctl->id.numid + kctl->count > card->last_numid + 1) {
305 card->last_numid = kctl->id.numid + kctl->count - 1;
306 return true;
307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100309 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100312static int snd_ctl_find_hole(struct snd_card *card, unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100314 unsigned int iter = 100000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Clemens Ladisch0e82e5f2011-03-07 13:24:30 +0100316 while (snd_ctl_remove_numid_conflict(card, count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (--iter == 0) {
318 /* this situation is very unlikely */
Takashi Iwaibb009452014-02-04 18:18:16 +0100319 dev_err(card->dev, "unable to allocate new control numid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return -ENOMEM;
321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 return 0;
324}
325
326/**
327 * snd_ctl_add - add the control instance to the card
328 * @card: the card instance
329 * @kcontrol: the control instance to add
330 *
331 * Adds the control instance created via snd_ctl_new() or
332 * snd_ctl_new1() to the given card. Assigns also an unique
333 * numid used for fast search.
334 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * It frees automatically the control which cannot be added.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100336 *
337 * Return: Zero if successful, or a negative error code on failure.
338 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100340int snd_ctl_add(struct snd_card *card, struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100342 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 unsigned int idx;
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +0200344 unsigned int count;
Takashi Iwaic6077b32006-03-21 16:07:13 +0100345 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Takashi Iwai73e77ba2005-11-17 17:44:01 +0100347 if (! kcontrol)
Takashi Iwaic6077b32006-03-21 16:07:13 +0100348 return err;
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200349 if (snd_BUG_ON(!card || !kcontrol->info))
350 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 id = kcontrol->id;
Lars-Peter Clausen883a1d42014-06-18 13:32:35 +0200352 if (id.index > UINT_MAX - kcontrol->count)
353 goto error;
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 down_write(&card->controls_rwsem);
356 if (snd_ctl_find_id(card, &id)) {
357 up_write(&card->controls_rwsem);
Takashi Iwaibb009452014-02-04 18:18:16 +0100358 dev_err(card->dev, "control %i:%i:%i:%s:%i is already present\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 id.iface,
360 id.device,
361 id.subdevice,
362 id.name,
363 id.index);
Takashi Iwaic6077b32006-03-21 16:07:13 +0100364 err = -EBUSY;
365 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367 if (snd_ctl_find_hole(card, kcontrol->count) < 0) {
368 up_write(&card->controls_rwsem);
Takashi Iwaic6077b32006-03-21 16:07:13 +0100369 err = -ENOMEM;
370 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 list_add_tail(&kcontrol->list, &card->controls);
373 card->controls_count += kcontrol->count;
374 kcontrol->id.numid = card->last_numid + 1;
375 card->last_numid += kcontrol->count;
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +0200376 count = kcontrol->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 up_write(&card->controls_rwsem);
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +0200378 for (idx = 0; idx < count; idx++, id.index++, id.numid++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_ADD, &id);
380 return 0;
Takashi Iwaic6077b32006-03-21 16:07:13 +0100381
382 error:
383 snd_ctl_free_one(kcontrol);
384 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200386EXPORT_SYMBOL(snd_ctl_add);
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/**
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000389 * snd_ctl_replace - replace the control instance of the card
390 * @card: the card instance
391 * @kcontrol: the control instance to replace
392 * @add_on_replace: add the control if not already added
393 *
394 * Replaces the given control. If the given control does not exist
395 * and the add_on_replace flag is set, the control is added. If the
396 * control exists, it is destroyed first.
397 *
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000398 * It frees automatically the control which cannot be added or replaced.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100399 *
400 * Return: Zero if successful, or a negative error code on failure.
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000401 */
402int snd_ctl_replace(struct snd_card *card, struct snd_kcontrol *kcontrol,
403 bool add_on_replace)
404{
405 struct snd_ctl_elem_id id;
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +0200406 unsigned int count;
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000407 unsigned int idx;
408 struct snd_kcontrol *old;
409 int ret;
410
411 if (!kcontrol)
412 return -EINVAL;
413 if (snd_BUG_ON(!card || !kcontrol->info)) {
414 ret = -EINVAL;
415 goto error;
416 }
417 id = kcontrol->id;
418 down_write(&card->controls_rwsem);
419 old = snd_ctl_find_id(card, &id);
420 if (!old) {
421 if (add_on_replace)
422 goto add;
423 up_write(&card->controls_rwsem);
424 ret = -EINVAL;
425 goto error;
426 }
427 ret = snd_ctl_remove(card, old);
428 if (ret < 0) {
429 up_write(&card->controls_rwsem);
430 goto error;
431 }
432add:
433 if (snd_ctl_find_hole(card, kcontrol->count) < 0) {
434 up_write(&card->controls_rwsem);
435 ret = -ENOMEM;
436 goto error;
437 }
438 list_add_tail(&kcontrol->list, &card->controls);
439 card->controls_count += kcontrol->count;
440 kcontrol->id.numid = card->last_numid + 1;
441 card->last_numid += kcontrol->count;
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +0200442 count = kcontrol->count;
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000443 up_write(&card->controls_rwsem);
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +0200444 for (idx = 0; idx < count; idx++, id.index++, id.numid++)
Dimitris Papastamos66b5b972011-03-16 12:16:39 +0000445 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_ADD, &id);
446 return 0;
447
448error:
449 snd_ctl_free_one(kcontrol);
450 return ret;
451}
452EXPORT_SYMBOL(snd_ctl_replace);
453
454/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * snd_ctl_remove - remove the control from the card and release it
456 * @card: the card instance
457 * @kcontrol: the control instance to remove
458 *
459 * Removes the control from the card and then releases the instance.
460 * You don't need to call snd_ctl_free_one(). You must be in
461 * the write lock - down_write(&card->controls_rwsem).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100462 *
463 * Return: 0 if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100465int snd_ctl_remove(struct snd_card *card, struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100467 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 unsigned int idx;
469
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200470 if (snd_BUG_ON(!card || !kcontrol))
471 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 list_del(&kcontrol->list);
473 card->controls_count -= kcontrol->count;
474 id = kcontrol->id;
475 for (idx = 0; idx < kcontrol->count; idx++, id.index++, id.numid++)
476 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_REMOVE, &id);
477 snd_ctl_free_one(kcontrol);
478 return 0;
479}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200480EXPORT_SYMBOL(snd_ctl_remove);
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/**
483 * snd_ctl_remove_id - remove the control of the given id and release it
484 * @card: the card instance
485 * @id: the control id to remove
486 *
487 * Finds the control instance with the given id, removes it from the
488 * card list and releases it.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100489 *
490 * Return: 0 if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100492int snd_ctl_remove_id(struct snd_card *card, struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100494 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 int ret;
496
497 down_write(&card->controls_rwsem);
498 kctl = snd_ctl_find_id(card, id);
499 if (kctl == NULL) {
500 up_write(&card->controls_rwsem);
501 return -ENOENT;
502 }
503 ret = snd_ctl_remove(card, kctl);
504 up_write(&card->controls_rwsem);
505 return ret;
506}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200507EXPORT_SYMBOL(snd_ctl_remove_id);
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/**
Clemens Ladischf217ac52009-08-17 12:27:22 +0200510 * snd_ctl_remove_user_ctl - remove and release the unlocked user control
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * @file: active control handle
512 * @id: the control id to remove
513 *
514 * Finds the control instance with the given id, removes it from the
515 * card list and releases it.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100516 *
517 * Return: 0 if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
Clemens Ladischf217ac52009-08-17 12:27:22 +0200519static int snd_ctl_remove_user_ctl(struct snd_ctl_file * file,
520 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100522 struct snd_card *card = file->card;
523 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 int idx, ret;
525
526 down_write(&card->controls_rwsem);
527 kctl = snd_ctl_find_id(card, id);
528 if (kctl == NULL) {
Clemens Ladisch317b8082009-08-17 12:26:34 +0200529 ret = -ENOENT;
530 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Clemens Ladisch18dd0aa2009-08-17 12:28:09 +0200532 if (!(kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_USER)) {
533 ret = -EINVAL;
534 goto error;
535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 for (idx = 0; idx < kctl->count; idx++)
537 if (kctl->vd[idx].owner != NULL && kctl->vd[idx].owner != file) {
Clemens Ladisch317b8082009-08-17 12:26:34 +0200538 ret = -EBUSY;
539 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541 ret = snd_ctl_remove(card, kctl);
Clemens Ladischf217ac52009-08-17 12:27:22 +0200542 if (ret < 0)
543 goto error;
544 card->user_ctl_count--;
Clemens Ladisch317b8082009-08-17 12:26:34 +0200545error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 up_write(&card->controls_rwsem);
547 return ret;
548}
549
550/**
Takashi Iwai3cbdd752008-08-29 16:09:01 +0200551 * snd_ctl_activate_id - activate/inactivate the control of the given id
552 * @card: the card instance
553 * @id: the control id to activate/inactivate
554 * @active: non-zero to activate
555 *
556 * Finds the control instance with the given id, and activate or
557 * inactivate the control together with notification, if changed.
558 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100559 * Return: 0 if unchanged, 1 if changed, or a negative error code on failure.
Takashi Iwai3cbdd752008-08-29 16:09:01 +0200560 */
561int snd_ctl_activate_id(struct snd_card *card, struct snd_ctl_elem_id *id,
562 int active)
563{
564 struct snd_kcontrol *kctl;
565 struct snd_kcontrol_volatile *vd;
566 unsigned int index_offset;
567 int ret;
568
569 down_write(&card->controls_rwsem);
570 kctl = snd_ctl_find_id(card, id);
571 if (kctl == NULL) {
572 ret = -ENOENT;
573 goto unlock;
574 }
Lars-Peter Clausen31584ed2014-11-07 14:12:34 +0100575 index_offset = snd_ctl_get_ioff(kctl, id);
Takashi Iwai3cbdd752008-08-29 16:09:01 +0200576 vd = &kctl->vd[index_offset];
577 ret = 0;
578 if (active) {
579 if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE))
580 goto unlock;
581 vd->access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
582 } else {
583 if (vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE)
584 goto unlock;
585 vd->access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
586 }
587 ret = 1;
588 unlock:
589 up_write(&card->controls_rwsem);
590 if (ret > 0)
591 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_INFO, id);
592 return ret;
593}
594EXPORT_SYMBOL_GPL(snd_ctl_activate_id);
595
596/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 * snd_ctl_rename_id - replace the id of a control on the card
598 * @card: the card instance
599 * @src_id: the old id
600 * @dst_id: the new id
601 *
602 * Finds the control with the old id from the card, and replaces the
603 * id with the new one.
604 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100605 * Return: Zero if successful, or a negative error code on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100607int snd_ctl_rename_id(struct snd_card *card, struct snd_ctl_elem_id *src_id,
608 struct snd_ctl_elem_id *dst_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100610 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 down_write(&card->controls_rwsem);
613 kctl = snd_ctl_find_id(card, src_id);
614 if (kctl == NULL) {
615 up_write(&card->controls_rwsem);
616 return -ENOENT;
617 }
618 kctl->id = *dst_id;
619 kctl->id.numid = card->last_numid + 1;
620 card->last_numid += kctl->count;
621 up_write(&card->controls_rwsem);
622 return 0;
623}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200624EXPORT_SYMBOL(snd_ctl_rename_id);
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626/**
627 * snd_ctl_find_numid - find the control instance with the given number-id
628 * @card: the card instance
629 * @numid: the number-id to search
630 *
631 * Finds the control instance with the given number-id from the card.
632 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * The caller must down card->controls_rwsem before calling this function
634 * (if the race condition can happen).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100635 *
636 * Return: The pointer of the instance if found, or %NULL if not.
637 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100639struct snd_kcontrol *snd_ctl_find_numid(struct snd_card *card, unsigned int numid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100641 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200643 if (snd_BUG_ON(!card || !numid))
644 return NULL;
Johannes Berg9244b2c2006-10-05 16:02:22 +0200645 list_for_each_entry(kctl, &card->controls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (kctl->id.numid <= numid && kctl->id.numid + kctl->count > numid)
647 return kctl;
648 }
649 return NULL;
650}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200651EXPORT_SYMBOL(snd_ctl_find_numid);
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653/**
654 * snd_ctl_find_id - find the control instance with the given id
655 * @card: the card instance
656 * @id: the id to search
657 *
658 * Finds the control instance with the given id from the card.
659 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 * The caller must down card->controls_rwsem before calling this function
661 * (if the race condition can happen).
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100662 *
663 * Return: The pointer of the instance if found, or %NULL if not.
664 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100666struct snd_kcontrol *snd_ctl_find_id(struct snd_card *card,
667 struct snd_ctl_elem_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100669 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200671 if (snd_BUG_ON(!card || !id))
672 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (id->numid != 0)
674 return snd_ctl_find_numid(card, id->numid);
Johannes Berg9244b2c2006-10-05 16:02:22 +0200675 list_for_each_entry(kctl, &card->controls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (kctl->id.iface != id->iface)
677 continue;
678 if (kctl->id.device != id->device)
679 continue;
680 if (kctl->id.subdevice != id->subdevice)
681 continue;
682 if (strncmp(kctl->id.name, id->name, sizeof(kctl->id.name)))
683 continue;
684 if (kctl->id.index > id->index)
685 continue;
686 if (kctl->id.index + kctl->count <= id->index)
687 continue;
688 return kctl;
689 }
690 return NULL;
691}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200692EXPORT_SYMBOL(snd_ctl_find_id);
693
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100694static int snd_ctl_card_info(struct snd_card *card, struct snd_ctl_file * ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 unsigned int cmd, void __user *arg)
696{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100697 struct snd_ctl_card_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Takashi Iwaica2c0962005-09-09 14:20:23 +0200699 info = kzalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (! info)
701 return -ENOMEM;
702 down_read(&snd_ioctl_rwsem);
703 info->card = card->number;
704 strlcpy(info->id, card->id, sizeof(info->id));
705 strlcpy(info->driver, card->driver, sizeof(info->driver));
706 strlcpy(info->name, card->shortname, sizeof(info->name));
707 strlcpy(info->longname, card->longname, sizeof(info->longname));
708 strlcpy(info->mixername, card->mixername, sizeof(info->mixername));
709 strlcpy(info->components, card->components, sizeof(info->components));
710 up_read(&snd_ioctl_rwsem);
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100711 if (copy_to_user(arg, info, sizeof(struct snd_ctl_card_info))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 kfree(info);
713 return -EFAULT;
714 }
715 kfree(info);
716 return 0;
717}
718
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100719static int snd_ctl_elem_list(struct snd_card *card,
720 struct snd_ctl_elem_list __user *_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 struct list_head *plist;
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100723 struct snd_ctl_elem_list list;
724 struct snd_kcontrol *kctl;
725 struct snd_ctl_elem_id *dst, *id;
Luca Tettamanti78fa2c42011-05-25 22:43:27 +0200726 unsigned int offset, space, jidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 if (copy_from_user(&list, _list, sizeof(list)))
729 return -EFAULT;
730 offset = list.offset;
731 space = list.space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 /* try limit maximum space */
733 if (space > 16384)
734 return -ENOMEM;
735 if (space > 0) {
736 /* allocate temporary buffer for atomic operation */
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100737 dst = vmalloc(space * sizeof(struct snd_ctl_elem_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (dst == NULL)
739 return -ENOMEM;
740 down_read(&card->controls_rwsem);
741 list.count = card->controls_count;
742 plist = card->controls.next;
743 while (plist != &card->controls) {
744 if (offset == 0)
745 break;
746 kctl = snd_kcontrol(plist);
747 if (offset < kctl->count)
748 break;
749 offset -= kctl->count;
750 plist = plist->next;
751 }
752 list.used = 0;
753 id = dst;
754 while (space > 0 && plist != &card->controls) {
755 kctl = snd_kcontrol(plist);
756 for (jidx = offset; space > 0 && jidx < kctl->count; jidx++) {
757 snd_ctl_build_ioff(id, kctl, jidx);
758 id++;
759 space--;
760 list.used++;
761 }
762 plist = plist->next;
763 offset = 0;
764 }
765 up_read(&card->controls_rwsem);
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100766 if (list.used > 0 &&
767 copy_to_user(list.pids, dst,
768 list.used * sizeof(struct snd_ctl_elem_id))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 vfree(dst);
770 return -EFAULT;
771 }
772 vfree(dst);
773 } else {
774 down_read(&card->controls_rwsem);
775 list.count = card->controls_count;
776 up_read(&card->controls_rwsem);
777 }
778 if (copy_to_user(_list, &list, sizeof(list)))
779 return -EFAULT;
780 return 0;
781}
782
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100783static int snd_ctl_elem_info(struct snd_ctl_file *ctl,
784 struct snd_ctl_elem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100786 struct snd_card *card = ctl->card;
787 struct snd_kcontrol *kctl;
788 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 unsigned int index_offset;
790 int result;
791
792 down_read(&card->controls_rwsem);
793 kctl = snd_ctl_find_id(card, &info->id);
794 if (kctl == NULL) {
795 up_read(&card->controls_rwsem);
796 return -ENOENT;
797 }
798#ifdef CONFIG_SND_DEBUG
799 info->access = 0;
800#endif
801 result = kctl->info(kctl, info);
802 if (result >= 0) {
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200803 snd_BUG_ON(info->access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 index_offset = snd_ctl_get_ioff(kctl, &info->id);
805 vd = &kctl->vd[index_offset];
806 snd_ctl_build_ioff(&info->id, kctl, index_offset);
807 info->access = vd->access;
808 if (vd->owner) {
809 info->access |= SNDRV_CTL_ELEM_ACCESS_LOCK;
810 if (vd->owner == ctl)
811 info->access |= SNDRV_CTL_ELEM_ACCESS_OWNER;
Clemens Ladisch25d27ed2009-11-02 09:35:44 +0100812 info->owner = pid_vnr(vd->owner->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 } else {
814 info->owner = -1;
815 }
816 }
817 up_read(&card->controls_rwsem);
818 return result;
819}
820
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100821static int snd_ctl_elem_info_user(struct snd_ctl_file *ctl,
822 struct snd_ctl_elem_info __user *_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100824 struct snd_ctl_elem_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 int result;
826
827 if (copy_from_user(&info, _info, sizeof(info)))
828 return -EFAULT;
Giuliano Pochini64649402006-03-13 14:11:11 +0100829 snd_power_lock(ctl->card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200830 result = snd_power_wait(ctl->card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100831 if (result >= 0)
832 result = snd_ctl_elem_info(ctl, &info);
833 snd_power_unlock(ctl->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (result >= 0)
835 if (copy_to_user(_info, &info, sizeof(info)))
836 return -EFAULT;
837 return result;
838}
839
Takashi Iwaid3bd67c2008-06-12 18:17:26 +0200840static int snd_ctl_elem_read(struct snd_card *card,
841 struct snd_ctl_elem_value *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100843 struct snd_kcontrol *kctl;
844 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 unsigned int index_offset;
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100846 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 down_read(&card->controls_rwsem);
849 kctl = snd_ctl_find_id(card, &control->id);
850 if (kctl == NULL) {
851 result = -ENOENT;
852 } else {
853 index_offset = snd_ctl_get_ioff(kctl, &control->id);
854 vd = &kctl->vd[index_offset];
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100855 if ((vd->access & SNDRV_CTL_ELEM_ACCESS_READ) &&
856 kctl->get != NULL) {
857 snd_ctl_build_ioff(&control->id, kctl, index_offset);
858 result = kctl->get(kctl, control);
859 } else
860 result = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862 up_read(&card->controls_rwsem);
863 return result;
864}
865
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100866static int snd_ctl_elem_read_user(struct snd_card *card,
867 struct snd_ctl_elem_value __user *_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100869 struct snd_ctl_elem_value *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 int result;
Li Zefanef44a1e2009-04-10 09:43:08 +0800871
872 control = memdup_user(_control, sizeof(*control));
873 if (IS_ERR(control))
874 return PTR_ERR(control);
875
Giuliano Pochini64649402006-03-13 14:11:11 +0100876 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200877 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100878 if (result >= 0)
879 result = snd_ctl_elem_read(card, control);
880 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (result >= 0)
882 if (copy_to_user(_control, control, sizeof(*control)))
883 result = -EFAULT;
884 kfree(control);
885 return result;
886}
887
Takashi Iwaid3bd67c2008-06-12 18:17:26 +0200888static int snd_ctl_elem_write(struct snd_card *card, struct snd_ctl_file *file,
889 struct snd_ctl_elem_value *control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100891 struct snd_kcontrol *kctl;
892 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 unsigned int index_offset;
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100894 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 down_read(&card->controls_rwsem);
897 kctl = snd_ctl_find_id(card, &control->id);
898 if (kctl == NULL) {
899 result = -ENOENT;
900 } else {
901 index_offset = snd_ctl_get_ioff(kctl, &control->id);
902 vd = &kctl->vd[index_offset];
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100903 if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_WRITE) ||
904 kctl->put == NULL ||
905 (file && vd->owner && vd->owner != file)) {
906 result = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 } else {
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100908 snd_ctl_build_ioff(&control->id, kctl, index_offset);
909 result = kctl->put(kctl, control);
910 }
911 if (result > 0) {
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +0200912 struct snd_ctl_elem_id id = control->id;
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100913 up_read(&card->controls_rwsem);
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +0200914 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &id);
Takashi Iwai8ace4f32008-01-08 17:57:26 +0100915 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917 }
918 up_read(&card->controls_rwsem);
919 return result;
920}
921
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100922static int snd_ctl_elem_write_user(struct snd_ctl_file *file,
923 struct snd_ctl_elem_value __user *_control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100925 struct snd_ctl_elem_value *control;
Giuliano Pochini64649402006-03-13 14:11:11 +0100926 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 int result;
928
Li Zefanef44a1e2009-04-10 09:43:08 +0800929 control = memdup_user(_control, sizeof(*control));
930 if (IS_ERR(control))
931 return PTR_ERR(control);
932
Giuliano Pochini64649402006-03-13 14:11:11 +0100933 card = file->card;
934 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +0200935 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Giuliano Pochini64649402006-03-13 14:11:11 +0100936 if (result >= 0)
937 result = snd_ctl_elem_write(card, file, control);
938 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (result >= 0)
940 if (copy_to_user(_control, control, sizeof(*control)))
941 result = -EFAULT;
942 kfree(control);
943 return result;
944}
945
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100946static int snd_ctl_elem_lock(struct snd_ctl_file *file,
947 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100949 struct snd_card *card = file->card;
950 struct snd_ctl_elem_id id;
951 struct snd_kcontrol *kctl;
952 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 int result;
954
955 if (copy_from_user(&id, _id, sizeof(id)))
956 return -EFAULT;
957 down_write(&card->controls_rwsem);
958 kctl = snd_ctl_find_id(card, &id);
959 if (kctl == NULL) {
960 result = -ENOENT;
961 } else {
962 vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
963 if (vd->owner != NULL)
964 result = -EBUSY;
965 else {
966 vd->owner = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 result = 0;
968 }
969 }
970 up_write(&card->controls_rwsem);
971 return result;
972}
973
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100974static int snd_ctl_elem_unlock(struct snd_ctl_file *file,
975 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Takashi Iwai82e9bae2005-11-17 13:53:23 +0100977 struct snd_card *card = file->card;
978 struct snd_ctl_elem_id id;
979 struct snd_kcontrol *kctl;
980 struct snd_kcontrol_volatile *vd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 int result;
982
983 if (copy_from_user(&id, _id, sizeof(id)))
984 return -EFAULT;
985 down_write(&card->controls_rwsem);
986 kctl = snd_ctl_find_id(card, &id);
987 if (kctl == NULL) {
988 result = -ENOENT;
989 } else {
990 vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
991 if (vd->owner == NULL)
992 result = -EINVAL;
993 else if (vd->owner != file)
994 result = -EPERM;
995 else {
996 vd->owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 result = 0;
998 }
999 }
1000 up_write(&card->controls_rwsem);
1001 return result;
1002}
1003
1004struct user_element {
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001005 struct snd_ctl_elem_info info;
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001006 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 void *elem_data; /* element data */
1008 unsigned long elem_data_size; /* size of element data in bytes */
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001009 void *tlv_data; /* TLV data */
1010 unsigned long tlv_data_size; /* TLV data size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 void *priv_data; /* private data (like strings for enumerated type) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012};
1013
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001014static int snd_ctl_elem_user_info(struct snd_kcontrol *kcontrol,
1015 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
1017 struct user_element *ue = kcontrol->private_data;
1018
1019 *uinfo = ue->info;
1020 return 0;
1021}
1022
Clemens Ladisch8d448162011-10-07 22:38:59 +02001023static int snd_ctl_elem_user_enum_info(struct snd_kcontrol *kcontrol,
1024 struct snd_ctl_elem_info *uinfo)
1025{
1026 struct user_element *ue = kcontrol->private_data;
1027 const char *names;
1028 unsigned int item;
1029
1030 item = uinfo->value.enumerated.item;
1031
1032 *uinfo = ue->info;
1033
1034 item = min(item, uinfo->value.enumerated.items - 1);
1035 uinfo->value.enumerated.item = item;
1036
1037 names = ue->priv_data;
1038 for (; item > 0; --item)
1039 names += strlen(names) + 1;
1040 strcpy(uinfo->value.enumerated.name, names);
1041
1042 return 0;
1043}
1044
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001045static int snd_ctl_elem_user_get(struct snd_kcontrol *kcontrol,
1046 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 struct user_element *ue = kcontrol->private_data;
1049
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001050 mutex_lock(&ue->card->user_ctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 memcpy(&ucontrol->value, ue->elem_data, ue->elem_data_size);
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001052 mutex_unlock(&ue->card->user_ctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 0;
1054}
1055
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001056static int snd_ctl_elem_user_put(struct snd_kcontrol *kcontrol,
1057 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 int change;
1060 struct user_element *ue = kcontrol->private_data;
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001061
1062 mutex_lock(&ue->card->user_ctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 change = memcmp(&ucontrol->value, ue->elem_data, ue->elem_data_size) != 0;
1064 if (change)
1065 memcpy(ue->elem_data, &ucontrol->value, ue->elem_data_size);
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001066 mutex_unlock(&ue->card->user_ctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return change;
1068}
1069
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001070static int snd_ctl_elem_user_tlv(struct snd_kcontrol *kcontrol,
1071 int op_flag,
1072 unsigned int size,
1073 unsigned int __user *tlv)
1074{
1075 struct user_element *ue = kcontrol->private_data;
1076 int change = 0;
1077 void *new_data;
1078
1079 if (op_flag > 0) {
1080 if (size > 1024 * 128) /* sane value */
1081 return -EINVAL;
Li Zefanef44a1e2009-04-10 09:43:08 +08001082
1083 new_data = memdup_user(tlv, size);
1084 if (IS_ERR(new_data))
1085 return PTR_ERR(new_data);
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001086 mutex_lock(&ue->card->user_ctl_lock);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001087 change = ue->tlv_data_size != size;
1088 if (!change)
1089 change = memcmp(ue->tlv_data, new_data, size);
1090 kfree(ue->tlv_data);
1091 ue->tlv_data = new_data;
1092 ue->tlv_data_size = size;
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001093 mutex_unlock(&ue->card->user_ctl_lock);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001094 } else {
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001095 int ret = 0;
1096
1097 mutex_lock(&ue->card->user_ctl_lock);
1098 if (!ue->tlv_data_size || !ue->tlv_data) {
1099 ret = -ENXIO;
1100 goto err_unlock;
1101 }
1102 if (size < ue->tlv_data_size) {
1103 ret = -ENOSPC;
1104 goto err_unlock;
1105 }
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001106 if (copy_to_user(tlv, ue->tlv_data, ue->tlv_data_size))
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001107 ret = -EFAULT;
1108err_unlock:
1109 mutex_unlock(&ue->card->user_ctl_lock);
1110 if (ret)
1111 return ret;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001112 }
1113 return change;
1114}
1115
Clemens Ladisch8d448162011-10-07 22:38:59 +02001116static int snd_ctl_elem_init_enum_names(struct user_element *ue)
1117{
1118 char *names, *p;
1119 size_t buf_len, name_len;
1120 unsigned int i;
Olof Johansson447c6f92011-11-05 22:51:54 +01001121 const uintptr_t user_ptrval = ue->info.value.enumerated.names_ptr;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001122
1123 if (ue->info.value.enumerated.names_length > 64 * 1024)
1124 return -EINVAL;
1125
Olof Johansson447c6f92011-11-05 22:51:54 +01001126 names = memdup_user((const void __user *)user_ptrval,
Clemens Ladisch8d448162011-10-07 22:38:59 +02001127 ue->info.value.enumerated.names_length);
1128 if (IS_ERR(names))
1129 return PTR_ERR(names);
1130
1131 /* check that there are enough valid names */
1132 buf_len = ue->info.value.enumerated.names_length;
1133 p = names;
1134 for (i = 0; i < ue->info.value.enumerated.items; ++i) {
1135 name_len = strnlen(p, buf_len);
1136 if (name_len == 0 || name_len >= 64 || name_len == buf_len) {
1137 kfree(names);
1138 return -EINVAL;
1139 }
1140 p += name_len + 1;
1141 buf_len -= name_len + 1;
1142 }
1143
1144 ue->priv_data = names;
1145 ue->info.value.enumerated.names_ptr = 0;
1146
1147 return 0;
1148}
1149
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001150static void snd_ctl_elem_user_free(struct snd_kcontrol *kcontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001152 struct user_element *ue = kcontrol->private_data;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001153
1154 kfree(ue->tlv_data);
1155 kfree(ue->priv_data);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001156 kfree(ue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001159static int snd_ctl_elem_add(struct snd_ctl_file *file,
1160 struct snd_ctl_elem_info *info, int replace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001162 struct snd_card *card = file->card;
1163 struct snd_kcontrol kctl, *_kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 unsigned int access;
1165 long private_size;
1166 struct user_element *ue;
1167 int idx, err;
Lu Guanqun983929c2011-08-24 11:12:34 +08001168
Clemens Ladisch2a031ae2009-08-17 12:25:52 +02001169 if (info->count < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return -EINVAL;
1171 access = info->access == 0 ? SNDRV_CTL_ELEM_ACCESS_READWRITE :
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001172 (info->access & (SNDRV_CTL_ELEM_ACCESS_READWRITE|
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001173 SNDRV_CTL_ELEM_ACCESS_INACTIVE|
1174 SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 info->id.numid = 0;
1176 memset(&kctl, 0, sizeof(kctl));
Lars-Peter Clausen82262a462014-06-18 13:32:32 +02001177
1178 if (replace) {
1179 err = snd_ctl_remove_user_ctl(file, &info->id);
1180 if (err)
1181 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
Lars-Peter Clausen82262a462014-06-18 13:32:32 +02001183
1184 if (card->user_ctl_count >= MAX_USER_CONTROLS)
1185 return -ENOMEM;
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 memcpy(&kctl.id, &info->id, sizeof(info->id));
1188 kctl.count = info->owner ? info->owner : 1;
1189 access |= SNDRV_CTL_ELEM_ACCESS_USER;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001190 if (info->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED)
1191 kctl.info = snd_ctl_elem_user_enum_info;
1192 else
1193 kctl.info = snd_ctl_elem_user_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (access & SNDRV_CTL_ELEM_ACCESS_READ)
1195 kctl.get = snd_ctl_elem_user_get;
1196 if (access & SNDRV_CTL_ELEM_ACCESS_WRITE)
1197 kctl.put = snd_ctl_elem_user_put;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001198 if (access & SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE) {
1199 kctl.tlv.c = snd_ctl_elem_user_tlv;
1200 access |= SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
1201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 switch (info->type) {
1203 case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 case SNDRV_CTL_ELEM_TYPE_INTEGER:
1205 private_size = sizeof(long);
1206 if (info->count > 128)
1207 return -EINVAL;
1208 break;
1209 case SNDRV_CTL_ELEM_TYPE_INTEGER64:
1210 private_size = sizeof(long long);
1211 if (info->count > 64)
1212 return -EINVAL;
1213 break;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001214 case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
1215 private_size = sizeof(unsigned int);
1216 if (info->count > 128 || info->value.enumerated.items == 0)
1217 return -EINVAL;
1218 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 case SNDRV_CTL_ELEM_TYPE_BYTES:
1220 private_size = sizeof(unsigned char);
1221 if (info->count > 512)
1222 return -EINVAL;
1223 break;
1224 case SNDRV_CTL_ELEM_TYPE_IEC958:
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001225 private_size = sizeof(struct snd_aes_iec958);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (info->count != 1)
1227 return -EINVAL;
1228 break;
1229 default:
1230 return -EINVAL;
1231 }
1232 private_size *= info->count;
Takashi Iwaica2c0962005-09-09 14:20:23 +02001233 ue = kzalloc(sizeof(struct user_element) + private_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (ue == NULL)
1235 return -ENOMEM;
Lars-Peter Clausen07f4d9d2014-06-18 13:32:31 +02001236 ue->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 ue->info = *info;
Takashi Iwai86148e82006-08-24 12:36:36 +02001238 ue->info.access = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 ue->elem_data = (char *)ue + sizeof(*ue);
1240 ue->elem_data_size = private_size;
Clemens Ladisch8d448162011-10-07 22:38:59 +02001241 if (ue->info.type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) {
1242 err = snd_ctl_elem_init_enum_names(ue);
1243 if (err < 0) {
1244 kfree(ue);
1245 return err;
1246 }
1247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 kctl.private_free = snd_ctl_elem_user_free;
1249 _kctl = snd_ctl_new(&kctl, access);
1250 if (_kctl == NULL) {
Clemens Ladisch8d448162011-10-07 22:38:59 +02001251 kfree(ue->priv_data);
Takashi Iwai2fbf1822006-03-06 15:42:51 -08001252 kfree(ue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return -ENOMEM;
1254 }
1255 _kctl->private_data = ue;
1256 for (idx = 0; idx < _kctl->count; idx++)
1257 _kctl->vd[idx].owner = file;
1258 err = snd_ctl_add(card, _kctl);
Takashi Iwai2fbf1822006-03-06 15:42:51 -08001259 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 down_write(&card->controls_rwsem);
1263 card->user_ctl_count++;
1264 up_write(&card->controls_rwsem);
1265
1266 return 0;
1267}
1268
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001269static int snd_ctl_elem_add_user(struct snd_ctl_file *file,
1270 struct snd_ctl_elem_info __user *_info, int replace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001272 struct snd_ctl_elem_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (copy_from_user(&info, _info, sizeof(info)))
1274 return -EFAULT;
1275 return snd_ctl_elem_add(file, &info, replace);
1276}
1277
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001278static int snd_ctl_elem_remove(struct snd_ctl_file *file,
1279 struct snd_ctl_elem_id __user *_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001281 struct snd_ctl_elem_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 if (copy_from_user(&id, _id, sizeof(id)))
1284 return -EFAULT;
Clemens Ladischf217ac52009-08-17 12:27:22 +02001285 return snd_ctl_remove_user_ctl(file, &id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001288static int snd_ctl_subscribe_events(struct snd_ctl_file *file, int __user *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290 int subscribe;
1291 if (get_user(subscribe, ptr))
1292 return -EFAULT;
1293 if (subscribe < 0) {
1294 subscribe = file->subscribed;
1295 if (put_user(subscribe, ptr))
1296 return -EFAULT;
1297 return 0;
1298 }
1299 if (subscribe) {
1300 file->subscribed = 1;
1301 return 0;
1302 } else if (file->subscribed) {
1303 snd_ctl_empty_read_queue(file);
1304 file->subscribed = 0;
1305 }
1306 return 0;
1307}
1308
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001309static int snd_ctl_tlv_ioctl(struct snd_ctl_file *file,
1310 struct snd_ctl_tlv __user *_tlv,
1311 int op_flag)
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001312{
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001313 struct snd_card *card = file->card;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001314 struct snd_ctl_tlv tlv;
1315 struct snd_kcontrol *kctl;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001316 struct snd_kcontrol_volatile *vd;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001317 unsigned int len;
1318 int err = 0;
1319
1320 if (copy_from_user(&tlv, _tlv, sizeof(tlv)))
1321 return -EFAULT;
Clemens Ladisch61236372010-02-01 13:30:56 +01001322 if (tlv.length < sizeof(unsigned int) * 2)
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001323 return -EINVAL;
1324 down_read(&card->controls_rwsem);
1325 kctl = snd_ctl_find_numid(card, tlv.numid);
1326 if (kctl == NULL) {
1327 err = -ENOENT;
1328 goto __kctl_end;
1329 }
1330 if (kctl->tlv.p == NULL) {
1331 err = -ENXIO;
1332 goto __kctl_end;
1333 }
1334 vd = &kctl->vd[tlv.numid - kctl->id.numid];
1335 if ((op_flag == 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) == 0) ||
1336 (op_flag > 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE) == 0) ||
1337 (op_flag < 0 && (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND) == 0)) {
1338 err = -ENXIO;
1339 goto __kctl_end;
1340 }
1341 if (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
Dan Carpenterbec145a2009-11-18 10:31:57 +02001342 if (vd->owner != NULL && vd->owner != file) {
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001343 err = -EPERM;
1344 goto __kctl_end;
1345 }
Jeffrin Josebd483d42012-03-07 22:57:39 +05301346 err = kctl->tlv.c(kctl, op_flag, tlv.length, _tlv->tlv);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001347 if (err > 0) {
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +02001348 struct snd_ctl_elem_id id = kctl->id;
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001349 up_read(&card->controls_rwsem);
Lars-Peter Clausenfd9f26e2014-06-18 13:32:33 +02001350 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_TLV, &id);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001351 return 0;
1352 }
1353 } else {
1354 if (op_flag) {
1355 err = -ENXIO;
1356 goto __kctl_end;
1357 }
1358 len = kctl->tlv.p[1] + 2 * sizeof(unsigned int);
1359 if (tlv.length < len) {
1360 err = -ENOMEM;
1361 goto __kctl_end;
1362 }
1363 if (copy_to_user(_tlv->tlv, kctl->tlv.p, len))
1364 err = -EFAULT;
1365 }
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001366 __kctl_end:
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001367 up_read(&card->controls_rwsem);
1368 return err;
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001369}
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371static long snd_ctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1372{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001373 struct snd_ctl_file *ctl;
1374 struct snd_card *card;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001375 struct snd_kctl_ioctl *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 void __user *argp = (void __user *)arg;
1377 int __user *ip = argp;
1378 int err;
1379
1380 ctl = file->private_data;
1381 card = ctl->card;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001382 if (snd_BUG_ON(!card))
1383 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 switch (cmd) {
1385 case SNDRV_CTL_IOCTL_PVERSION:
1386 return put_user(SNDRV_CTL_VERSION, ip) ? -EFAULT : 0;
1387 case SNDRV_CTL_IOCTL_CARD_INFO:
1388 return snd_ctl_card_info(card, ctl, cmd, argp);
1389 case SNDRV_CTL_IOCTL_ELEM_LIST:
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001390 return snd_ctl_elem_list(card, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 case SNDRV_CTL_IOCTL_ELEM_INFO:
1392 return snd_ctl_elem_info_user(ctl, argp);
1393 case SNDRV_CTL_IOCTL_ELEM_READ:
Jaroslav Kysela42750b02006-06-01 18:34:01 +02001394 return snd_ctl_elem_read_user(card, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 case SNDRV_CTL_IOCTL_ELEM_WRITE:
1396 return snd_ctl_elem_write_user(ctl, argp);
1397 case SNDRV_CTL_IOCTL_ELEM_LOCK:
1398 return snd_ctl_elem_lock(ctl, argp);
1399 case SNDRV_CTL_IOCTL_ELEM_UNLOCK:
1400 return snd_ctl_elem_unlock(ctl, argp);
1401 case SNDRV_CTL_IOCTL_ELEM_ADD:
1402 return snd_ctl_elem_add_user(ctl, argp, 0);
1403 case SNDRV_CTL_IOCTL_ELEM_REPLACE:
1404 return snd_ctl_elem_add_user(ctl, argp, 1);
1405 case SNDRV_CTL_IOCTL_ELEM_REMOVE:
1406 return snd_ctl_elem_remove(ctl, argp);
1407 case SNDRV_CTL_IOCTL_SUBSCRIBE_EVENTS:
1408 return snd_ctl_subscribe_events(ctl, ip);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001409 case SNDRV_CTL_IOCTL_TLV_READ:
Takashi Iwai0cea76f2014-07-15 16:31:01 +02001410 return snd_ctl_tlv_ioctl(ctl, argp, SNDRV_CTL_TLV_OP_READ);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001411 case SNDRV_CTL_IOCTL_TLV_WRITE:
Takashi Iwai0cea76f2014-07-15 16:31:01 +02001412 return snd_ctl_tlv_ioctl(ctl, argp, SNDRV_CTL_TLV_OP_WRITE);
Jaroslav Kysela8aa9b582006-07-05 17:34:51 +02001413 case SNDRV_CTL_IOCTL_TLV_COMMAND:
Takashi Iwai0cea76f2014-07-15 16:31:01 +02001414 return snd_ctl_tlv_ioctl(ctl, argp, SNDRV_CTL_TLV_OP_CMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 case SNDRV_CTL_IOCTL_POWER:
Takashi Iwaia381a7a2005-11-17 15:55:49 +01001416 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 case SNDRV_CTL_IOCTL_POWER_STATE:
1418#ifdef CONFIG_PM
1419 return put_user(card->power_state, ip) ? -EFAULT : 0;
1420#else
1421 return put_user(SNDRV_CTL_POWER_D0, ip) ? -EFAULT : 0;
1422#endif
1423 }
1424 down_read(&snd_ioctl_rwsem);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001425 list_for_each_entry(p, &snd_control_ioctls, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 err = p->fioctl(card, ctl, cmd, arg);
1427 if (err != -ENOIOCTLCMD) {
1428 up_read(&snd_ioctl_rwsem);
1429 return err;
1430 }
1431 }
1432 up_read(&snd_ioctl_rwsem);
Takashi Iwaibb009452014-02-04 18:18:16 +01001433 dev_dbg(card->dev, "unknown ioctl = 0x%x\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return -ENOTTY;
1435}
1436
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001437static ssize_t snd_ctl_read(struct file *file, char __user *buffer,
1438 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001440 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 int err = 0;
1442 ssize_t result = 0;
1443
1444 ctl = file->private_data;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001445 if (snd_BUG_ON(!ctl || !ctl->card))
1446 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (!ctl->subscribed)
1448 return -EBADFD;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001449 if (count < sizeof(struct snd_ctl_event))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return -EINVAL;
1451 spin_lock_irq(&ctl->read_lock);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001452 while (count >= sizeof(struct snd_ctl_event)) {
1453 struct snd_ctl_event ev;
1454 struct snd_kctl_event *kev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 while (list_empty(&ctl->events)) {
1456 wait_queue_t wait;
1457 if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
1458 err = -EAGAIN;
1459 goto __end_lock;
1460 }
1461 init_waitqueue_entry(&wait, current);
1462 add_wait_queue(&ctl->change_sleep, &wait);
1463 set_current_state(TASK_INTERRUPTIBLE);
1464 spin_unlock_irq(&ctl->read_lock);
1465 schedule();
1466 remove_wait_queue(&ctl->change_sleep, &wait);
Takashi Iwai0914f792012-10-16 16:43:39 +02001467 if (ctl->card->shutdown)
1468 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (signal_pending(current))
Adrian Bunk0e5d7202006-11-07 13:42:54 +01001470 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 spin_lock_irq(&ctl->read_lock);
1472 }
1473 kev = snd_kctl_event(ctl->events.next);
1474 ev.type = SNDRV_CTL_EVENT_ELEM;
1475 ev.data.elem.mask = kev->mask;
1476 ev.data.elem.id = kev->id;
1477 list_del(&kev->list);
1478 spin_unlock_irq(&ctl->read_lock);
1479 kfree(kev);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001480 if (copy_to_user(buffer, &ev, sizeof(struct snd_ctl_event))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 err = -EFAULT;
1482 goto __end;
1483 }
1484 spin_lock_irq(&ctl->read_lock);
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001485 buffer += sizeof(struct snd_ctl_event);
1486 count -= sizeof(struct snd_ctl_event);
1487 result += sizeof(struct snd_ctl_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
1489 __end_lock:
1490 spin_unlock_irq(&ctl->read_lock);
1491 __end:
1492 return result > 0 ? result : err;
1493}
1494
1495static unsigned int snd_ctl_poll(struct file *file, poll_table * wait)
1496{
1497 unsigned int mask;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001498 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 ctl = file->private_data;
1501 if (!ctl->subscribed)
1502 return 0;
1503 poll_wait(file, &ctl->change_sleep, wait);
1504
1505 mask = 0;
1506 if (!list_empty(&ctl->events))
1507 mask |= POLLIN | POLLRDNORM;
1508
1509 return mask;
1510}
1511
1512/*
1513 * register the device-specific control-ioctls.
1514 * called from each device manager like pcm.c, hwdep.c, etc.
1515 */
1516static int _snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn, struct list_head *lists)
1517{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001518 struct snd_kctl_ioctl *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001520 pn = kzalloc(sizeof(struct snd_kctl_ioctl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (pn == NULL)
1522 return -ENOMEM;
1523 pn->fioctl = fcn;
1524 down_write(&snd_ioctl_rwsem);
1525 list_add_tail(&pn->list, lists);
1526 up_write(&snd_ioctl_rwsem);
1527 return 0;
1528}
1529
Takashi Iwai12cddbd2014-10-30 13:44:34 +01001530/**
1531 * snd_ctl_register_ioctl - register the device-specific control-ioctls
1532 * @fcn: ioctl callback function
1533 *
1534 * called from each device manager like pcm.c, hwdep.c, etc.
1535 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536int snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn)
1537{
1538 return _snd_ctl_register_ioctl(fcn, &snd_control_ioctls);
1539}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001540EXPORT_SYMBOL(snd_ctl_register_ioctl);
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542#ifdef CONFIG_COMPAT
Takashi Iwai12cddbd2014-10-30 13:44:34 +01001543/**
1544 * snd_ctl_register_ioctl_compat - register the device-specific 32bit compat
1545 * control-ioctls
1546 * @fcn: ioctl callback function
1547 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548int snd_ctl_register_ioctl_compat(snd_kctl_ioctl_func_t fcn)
1549{
1550 return _snd_ctl_register_ioctl(fcn, &snd_control_compat_ioctls);
1551}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001552EXPORT_SYMBOL(snd_ctl_register_ioctl_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553#endif
1554
1555/*
1556 * de-register the device-specific control-ioctls.
1557 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001558static int _snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn,
1559 struct list_head *lists)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001561 struct snd_kctl_ioctl *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001563 if (snd_BUG_ON(!fcn))
1564 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 down_write(&snd_ioctl_rwsem);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001566 list_for_each_entry(p, lists, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (p->fioctl == fcn) {
1568 list_del(&p->list);
1569 up_write(&snd_ioctl_rwsem);
1570 kfree(p);
1571 return 0;
1572 }
1573 }
1574 up_write(&snd_ioctl_rwsem);
1575 snd_BUG();
1576 return -EINVAL;
1577}
1578
Takashi Iwai12cddbd2014-10-30 13:44:34 +01001579/**
1580 * snd_ctl_unregister_ioctl - de-register the device-specific control-ioctls
1581 * @fcn: ioctl callback function to unregister
1582 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583int snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn)
1584{
1585 return _snd_ctl_unregister_ioctl(fcn, &snd_control_ioctls);
1586}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001587EXPORT_SYMBOL(snd_ctl_unregister_ioctl);
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589#ifdef CONFIG_COMPAT
Takashi Iwai12cddbd2014-10-30 13:44:34 +01001590/**
1591 * snd_ctl_unregister_ioctl - de-register the device-specific compat 32bit
1592 * control-ioctls
1593 * @fcn: ioctl callback function to unregister
1594 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595int snd_ctl_unregister_ioctl_compat(snd_kctl_ioctl_func_t fcn)
1596{
1597 return _snd_ctl_unregister_ioctl(fcn, &snd_control_compat_ioctls);
1598}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +02001599EXPORT_SYMBOL(snd_ctl_unregister_ioctl_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600#endif
1601
1602static int snd_ctl_fasync(int fd, struct file * file, int on)
1603{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001604 struct snd_ctl_file *ctl;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 ctl = file->private_data;
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001607 return fasync_helper(fd, file, on, &ctl->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
Takashi Iwai23c18d42014-02-19 14:30:29 +01001610/* return the preferred subdevice number if already assigned;
1611 * otherwise return -1
1612 */
1613int snd_ctl_get_preferred_subdevice(struct snd_card *card, int type)
1614{
1615 struct snd_ctl_file *kctl;
1616 int subdevice = -1;
1617
1618 read_lock(&card->ctl_files_rwlock);
1619 list_for_each_entry(kctl, &card->ctl_files, list) {
1620 if (kctl->pid == task_pid(current)) {
1621 subdevice = kctl->preferred_subdevice[type];
1622 if (subdevice != -1)
1623 break;
1624 }
1625 }
1626 read_unlock(&card->ctl_files_rwlock);
1627 return subdevice;
1628}
1629EXPORT_SYMBOL_GPL(snd_ctl_get_preferred_subdevice);
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631/*
1632 * ioctl32 compat
1633 */
1634#ifdef CONFIG_COMPAT
1635#include "control_compat.c"
1636#else
1637#define snd_ctl_ioctl_compat NULL
1638#endif
1639
1640/*
1641 * INIT PART
1642 */
1643
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08001644static const struct file_operations snd_ctl_f_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
1646 .owner = THIS_MODULE,
1647 .read = snd_ctl_read,
1648 .open = snd_ctl_open,
1649 .release = snd_ctl_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02001650 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 .poll = snd_ctl_poll,
1652 .unlocked_ioctl = snd_ctl_ioctl,
1653 .compat_ioctl = snd_ctl_ioctl_compat,
1654 .fasync = snd_ctl_fasync,
1655};
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657/*
1658 * registration of the control device
1659 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001660static int snd_ctl_dev_register(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001662 struct snd_card *card = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Takashi Iwai0fcd9f42015-01-29 16:41:27 +01001664 return snd_register_device_for_dev(SNDRV_DEVICE_TYPE_CONTROL, card,
1665 -1, &snd_ctl_f_ops, card,
1666 &card->ctl_dev, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
1669/*
1670 * disconnection of the control device
1671 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001672static int snd_ctl_dev_disconnect(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001674 struct snd_card *card = device->device_data;
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001675 struct snd_ctl_file *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Takashi Iwaid8009882008-09-07 12:51:13 +02001677 read_lock(&card->ctl_files_rwlock);
Johannes Berg9244b2c2006-10-05 16:02:22 +02001678 list_for_each_entry(ctl, &card->ctl_files, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 wake_up(&ctl->change_sleep);
1680 kill_fasync(&ctl->fasync, SIGIO, POLL_ERR);
1681 }
Takashi Iwaid8009882008-09-07 12:51:13 +02001682 read_unlock(&card->ctl_files_rwlock);
Takashi Iwaic4614822006-06-23 14:38:23 +02001683
Takashi Iwai0fcd9f42015-01-29 16:41:27 +01001684 return snd_unregister_device(SNDRV_DEVICE_TYPE_CONTROL, card, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
1686
1687/*
1688 * free all controls
1689 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001690static int snd_ctl_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001692 struct snd_card *card = device->device_data;
1693 struct snd_kcontrol *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 down_write(&card->controls_rwsem);
1696 while (!list_empty(&card->controls)) {
1697 control = snd_kcontrol(card->controls.next);
1698 snd_ctl_remove(card, control);
1699 }
1700 up_write(&card->controls_rwsem);
Takashi Iwai0fcd9f42015-01-29 16:41:27 +01001701 put_device(&card->ctl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return 0;
1703}
1704
1705/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 * create control core:
1707 * called from init.c
1708 */
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001709int snd_ctl_create(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
Takashi Iwai82e9bae2005-11-17 13:53:23 +01001711 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 .dev_free = snd_ctl_dev_free,
1713 .dev_register = snd_ctl_dev_register,
1714 .dev_disconnect = snd_ctl_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 };
Takashi Iwai0fcd9f42015-01-29 16:41:27 +01001716 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001718 if (snd_BUG_ON(!card))
1719 return -ENXIO;
Takashi Iwai0fcd9f42015-01-29 16:41:27 +01001720 if (snd_BUG_ON(card->number < 0 || card->number >= SNDRV_CARDS))
1721 return -ENXIO;
1722
1723 snd_device_initialize(&card->ctl_dev, card);
1724 dev_set_name(&card->ctl_dev, "controlC%d", card->number);
1725
1726 err = snd_device_new(card, SNDRV_DEV_CONTROL, card, &ops);
1727 if (err < 0)
1728 put_device(&card->ctl_dev);
1729 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730}
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001731
1732/*
Clemens Ladisch96007322011-01-10 16:25:44 +01001733 * Frequently used control callbacks/helpers
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001734 */
Takashi Iwai12cddbd2014-10-30 13:44:34 +01001735
1736/**
1737 * snd_ctl_boolean_mono_info - Helper function for a standard boolean info
1738 * callback with a mono channel
1739 * @kcontrol: the kcontrol instance
1740 * @uinfo: info to store
1741 *
1742 * This is a function that can be used as info callback for a standard
1743 * boolean control with a single mono channel.
1744 */
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001745int snd_ctl_boolean_mono_info(struct snd_kcontrol *kcontrol,
1746 struct snd_ctl_elem_info *uinfo)
1747{
1748 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1749 uinfo->count = 1;
1750 uinfo->value.integer.min = 0;
1751 uinfo->value.integer.max = 1;
1752 return 0;
1753}
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001754EXPORT_SYMBOL(snd_ctl_boolean_mono_info);
1755
Takashi Iwai12cddbd2014-10-30 13:44:34 +01001756/**
1757 * snd_ctl_boolean_stereo_info - Helper function for a standard boolean info
1758 * callback with stereo two channels
1759 * @kcontrol: the kcontrol instance
1760 * @uinfo: info to store
1761 *
1762 * This is a function that can be used as info callback for a standard
1763 * boolean control with stereo two channels.
1764 */
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001765int snd_ctl_boolean_stereo_info(struct snd_kcontrol *kcontrol,
1766 struct snd_ctl_elem_info *uinfo)
1767{
1768 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1769 uinfo->count = 2;
1770 uinfo->value.integer.min = 0;
1771 uinfo->value.integer.max = 1;
1772 return 0;
1773}
Takashi Iwaib9ed4f22007-07-23 15:41:34 +02001774EXPORT_SYMBOL(snd_ctl_boolean_stereo_info);
Clemens Ladisch96007322011-01-10 16:25:44 +01001775
1776/**
1777 * snd_ctl_enum_info - fills the info structure for an enumerated control
1778 * @info: the structure to be filled
1779 * @channels: the number of the control's channels; often one
1780 * @items: the number of control values; also the size of @names
1781 * @names: an array containing the names of all control values
1782 *
1783 * Sets all required fields in @info to their appropriate values.
1784 * If the control's accessibility is not the default (readable and writable),
1785 * the caller has to fill @info->access.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001786 *
1787 * Return: Zero.
Clemens Ladisch96007322011-01-10 16:25:44 +01001788 */
1789int snd_ctl_enum_info(struct snd_ctl_elem_info *info, unsigned int channels,
1790 unsigned int items, const char *const names[])
1791{
1792 info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1793 info->count = channels;
1794 info->value.enumerated.items = items;
Takashi Iwaia7e6fb92014-10-20 18:08:50 +02001795 if (!items)
1796 return 0;
Clemens Ladisch96007322011-01-10 16:25:44 +01001797 if (info->value.enumerated.item >= items)
1798 info->value.enumerated.item = items - 1;
Takashi Iwaidf803e12014-10-20 18:07:21 +02001799 WARN(strlen(names[info->value.enumerated.item]) >= sizeof(info->value.enumerated.name),
1800 "ALSA: too long item name '%s'\n",
1801 names[info->value.enumerated.item]);
Clemens Ladisch96007322011-01-10 16:25:44 +01001802 strlcpy(info->value.enumerated.name,
1803 names[info->value.enumerated.item],
1804 sizeof(info->value.enumerated.name));
1805 return 0;
1806}
1807EXPORT_SYMBOL(snd_ctl_enum_info);