Blame view

sound/core/control.c 55.3 KB
1a59d1b8e   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
  /*
   *  Routines for driver control interface
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
4
   *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
  #include <linux/threads.h>
  #include <linux/interrupt.h>
da155d5b4   Paul Gortmaker   sound: Add module...
8
  #include <linux/module.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
  #include <linux/slab.h>
  #include <linux/vmalloc.h>
  #include <linux/time.h>
88a890375   Al Viro   replace_user_tlv(...
12
  #include <linux/mm.h>
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
13
  #include <linux/math64.h>
174cd4b1e   Ingo Molnar   sched/headers: Pr...
14
  #include <linux/sched/signal.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
19
20
21
  #include <sound/core.h>
  #include <sound/minors.h>
  #include <sound/info.h>
  #include <sound/control.h>
  
  /* max number of user-defined controls */
  #define MAX_USER_CONTROLS	32
5591bf072   Dan Rosenberg   ALSA: prevent hea...
22
  #define MAX_CONTROL_COUNT	1028
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23

82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
24
  struct snd_kctl_ioctl {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
  	struct list_head list;		/* list of all ioctls */
  	snd_kctl_ioctl_func_t fioctl;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
27
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
29
30
31
32
33
34
35
36
  
  static DECLARE_RWSEM(snd_ioctl_rwsem);
  static LIST_HEAD(snd_control_ioctls);
  #ifdef CONFIG_COMPAT
  static LIST_HEAD(snd_control_compat_ioctls);
  #endif
  
  static int snd_ctl_open(struct inode *inode, struct file *file)
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
  	unsigned long flags;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
38
39
  	struct snd_card *card;
  	struct snd_ctl_file *ctl;
23c18d4bf   Takashi Iwai   ALSA: control: Pr...
40
  	int i, err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41

c5bf68fe0   Kirill Smelkov   *: convert stream...
42
  	err = stream_open(inode, file);
02f4865fa   Takashi Iwai   ALSA: core - Defi...
43
44
  	if (err < 0)
  		return err;
f87135f56   Clemens Ladisch   [ALSA] dynamic mi...
45
  	card = snd_lookup_minor_data(iminor(inode), SNDRV_DEVICE_TYPE_CONTROL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
48
49
50
51
52
53
54
55
56
57
58
  	if (!card) {
  		err = -ENODEV;
  		goto __error1;
  	}
  	err = snd_card_file_add(card, file);
  	if (err < 0) {
  		err = -ENODEV;
  		goto __error1;
  	}
  	if (!try_module_get(card->module)) {
  		err = -EFAULT;
  		goto __error2;
  	}
ca2c09665   Takashi Iwai   [ALSA] Replace wi...
59
  	ctl = kzalloc(sizeof(*ctl), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
61
62
63
64
65
66
67
  	if (ctl == NULL) {
  		err = -ENOMEM;
  		goto __error;
  	}
  	INIT_LIST_HEAD(&ctl->events);
  	init_waitqueue_head(&ctl->change_sleep);
  	spin_lock_init(&ctl->read_lock);
  	ctl->card = card;
23c18d4bf   Takashi Iwai   ALSA: control: Pr...
68
69
  	for (i = 0; i < SND_CTL_SUBDEV_ITEMS; i++)
  		ctl->preferred_subdevice[i] = -1;
25d27eded   Clemens Ladisch   control: use refe...
70
  	ctl->pid = get_pid(task_pid(current));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71
72
73
74
  	file->private_data = ctl;
  	write_lock_irqsave(&card->ctl_files_rwlock, flags);
  	list_add_tail(&ctl->list, &card->ctl_files);
  	write_unlock_irqrestore(&card->ctl_files_rwlock, flags);
a0830dbd4   Takashi Iwai   ALSA: Add a refer...
75
  	snd_card_unref(card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
76
77
78
79
80
81
82
  	return 0;
  
        __error:
  	module_put(card->module);
        __error2:
  	snd_card_file_remove(card, file);
        __error1:
a0830dbd4   Takashi Iwai   ALSA: Add a refer...
83
84
  	if (card)
  		snd_card_unref(card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
86
        	return err;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
87
  static void snd_ctl_empty_read_queue(struct snd_ctl_file * ctl)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
88
  {
7507e8da2   Borislav Petkov   [ALSA] sound/core...
89
  	unsigned long flags;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
90
  	struct snd_kctl_event *cread;
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
91

7507e8da2   Borislav Petkov   [ALSA] sound/core...
92
  	spin_lock_irqsave(&ctl->read_lock, flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93
94
95
96
97
  	while (!list_empty(&ctl->events)) {
  		cread = snd_kctl_event(ctl->events.next);
  		list_del(&cread->list);
  		kfree(cread);
  	}
7507e8da2   Borislav Petkov   [ALSA] sound/core...
98
  	spin_unlock_irqrestore(&ctl->read_lock, flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
100
101
102
103
  }
  
  static int snd_ctl_release(struct inode *inode, struct file *file)
  {
  	unsigned long flags;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
104
105
106
  	struct snd_card *card;
  	struct snd_ctl_file *ctl;
  	struct snd_kcontrol *control;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
109
  	unsigned int idx;
  
  	ctl = file->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110
111
112
113
114
115
  	file->private_data = NULL;
  	card = ctl->card;
  	write_lock_irqsave(&card->ctl_files_rwlock, flags);
  	list_del(&ctl->list);
  	write_unlock_irqrestore(&card->ctl_files_rwlock, flags);
  	down_write(&card->controls_rwsem);
9244b2c30   Johannes Berg   [ALSA] alsa core:...
116
  	list_for_each_entry(control, &card->controls, list)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
117
118
119
  		for (idx = 0; idx < control->count; idx++)
  			if (control->vd[idx].owner == ctl)
  				control->vd[idx].owner = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
120
121
  	up_write(&card->controls_rwsem);
  	snd_ctl_empty_read_queue(ctl);
25d27eded   Clemens Ladisch   control: use refe...
122
  	put_pid(ctl->pid);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
124
125
126
127
  	kfree(ctl);
  	module_put(card->module);
  	snd_card_file_remove(card, file);
  	return 0;
  }
12cddbd86   Takashi Iwai   ALSA: control: Ad...
128
129
130
131
132
133
134
135
136
137
  /**
   * snd_ctl_notify - Send notification to user-space for a control change
   * @card: the card to send notification
   * @mask: the event mask, SNDRV_CTL_EVENT_*
   * @id: the ctl element id to send notification
   *
   * This function adds an event record with the given id and mask, appends
   * to the list and wakes up the user-space for notification.  This can be
   * called in the atomic context.
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
138
139
  void snd_ctl_notify(struct snd_card *card, unsigned int mask,
  		    struct snd_ctl_elem_id *id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
140
141
  {
  	unsigned long flags;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
142
143
  	struct snd_ctl_file *ctl;
  	struct snd_kctl_event *ev;
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
144

7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
145
146
  	if (snd_BUG_ON(!card || !id))
  		return;
f388cdcdd   Takashi Iwai   ALSA: ctl: Stop n...
147
148
  	if (card->shutdown)
  		return;
6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
149
  	read_lock_irqsave(&card->ctl_files_rwlock, flags);
8eeaa2f9e   Takashi Iwai   ALSA: Replace wit...
150
  #if IS_ENABLED(CONFIG_SND_MIXER_OSS)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
152
  	card->mixer_oss_change_count++;
  #endif
9244b2c30   Johannes Berg   [ALSA] alsa core:...
153
  	list_for_each_entry(ctl, &card->ctl_files, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
154
155
  		if (!ctl->subscribed)
  			continue;
6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
156
  		spin_lock(&ctl->read_lock);
9244b2c30   Johannes Berg   [ALSA] alsa core:...
157
  		list_for_each_entry(ev, &ctl->events, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
158
159
160
161
162
  			if (ev->id.numid == id->numid) {
  				ev->mask |= mask;
  				goto _found;
  			}
  		}
ca2c09665   Takashi Iwai   [ALSA] Replace wi...
163
  		ev = kzalloc(sizeof(*ev), GFP_ATOMIC);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
164
165
166
167
168
  		if (ev) {
  			ev->id = *id;
  			ev->mask = mask;
  			list_add_tail(&ev->list, &ctl->events);
  		} else {
bb0094574   Takashi Iwai   ALSA: control: Us...
169
170
  			dev_err(card->dev, "No memory available to allocate event
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
171
172
173
  		}
  	_found:
  		wake_up(&ctl->change_sleep);
6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
174
  		spin_unlock(&ctl->read_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
175
176
  		kill_fasync(&ctl->fasync, SIGIO, POLL_IN);
  	}
6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
177
  	read_unlock_irqrestore(&card->ctl_files_rwlock, flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
178
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
179
  EXPORT_SYMBOL(snd_ctl_notify);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
180
  /**
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
181
182
183
184
185
   * snd_ctl_new - create a new control instance with some elements
   * @kctl: the pointer to store new control instance
   * @count: the number of elements in this control
   * @access: the default access flags for elements in this control
   * @file: given when locking these elements
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
186
   *
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
187
188
189
   * Allocates a memory object for a new control instance. The instance has
   * elements as many as the given number (@count). Each element has given
   * access permissions (@access). Each element is locked when @file is given.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
190
   *
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
191
   * Return: 0 on success, error code on failure
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
192
   */
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
193
194
  static int snd_ctl_new(struct snd_kcontrol **kctl, unsigned int count,
  		       unsigned int access, struct snd_ctl_file *file)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
195
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
196
  	unsigned int idx;
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
197

2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
198
199
  	if (count == 0 || count > MAX_CONTROL_COUNT)
  		return -EINVAL;
5591bf072   Dan Rosenberg   ALSA: prevent hea...
200

65be95808   Takashi Iwai   ALSA: control: Us...
201
  	*kctl = kzalloc(struct_size(*kctl, vd, count), GFP_KERNEL);
ec0e9937a   Takashi Iwai   ALSA: core: Drop ...
202
  	if (!*kctl)
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
203
  		return -ENOMEM;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
204
205
206
207
208
209
210
211
  
  	for (idx = 0; idx < count; idx++) {
  		(*kctl)->vd[idx].access = access;
  		(*kctl)->vd[idx].owner = file;
  	}
  	(*kctl)->count = count;
  
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
212
213
214
215
216
217
218
  }
  
  /**
   * snd_ctl_new1 - create a control instance from the template
   * @ncontrol: the initialization record
   * @private_data: the private data to set
   *
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
219
   * Allocates a new struct snd_kcontrol instance and initialize from the given
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
220
221
222
   * template.  When the access field of ncontrol is 0, it's assumed as
   * READWRITE access. When the count field is 0, it's assumes as one.
   *
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
223
   * Return: The pointer of the newly generated instance, or %NULL on failure.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
224
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
225
226
  struct snd_kcontrol *snd_ctl_new1(const struct snd_kcontrol_new *ncontrol,
  				  void *private_data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227
  {
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
228
229
  	struct snd_kcontrol *kctl;
  	unsigned int count;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
230
  	unsigned int access;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
231
  	int err;
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
232

7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
233
234
  	if (snd_BUG_ON(!ncontrol || !ncontrol->info))
  		return NULL;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
235
236
237
238
239
240
241
242
243
244
245
246
247
  
  	count = ncontrol->count;
  	if (count == 0)
  		count = 1;
  
  	access = ncontrol->access;
  	if (access == 0)
  		access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
  	access &= (SNDRV_CTL_ELEM_ACCESS_READWRITE |
  		   SNDRV_CTL_ELEM_ACCESS_VOLATILE |
  		   SNDRV_CTL_ELEM_ACCESS_INACTIVE |
  		   SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE |
  		   SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND |
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
248
249
  		   SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK |
  		   SNDRV_CTL_ELEM_ACCESS_SKIP_CHECK);
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
250
251
252
253
254
255
256
257
258
  
  	err = snd_ctl_new(&kctl, count, access, NULL);
  	if (err < 0)
  		return NULL;
  
  	/* The 'numid' member is decided when calling snd_ctl_add(). */
  	kctl->id.iface = ncontrol->iface;
  	kctl->id.device = ncontrol->device;
  	kctl->id.subdevice = ncontrol->subdevice;
366840d7e   Mark Brown   ALSA: Warn when c...
259
  	if (ncontrol->name) {
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
260
261
  		strlcpy(kctl->id.name, ncontrol->name, sizeof(kctl->id.name));
  		if (strcmp(ncontrol->name, kctl->id.name) != 0)
bb0094574   Takashi Iwai   ALSA: control: Us...
262
263
  			pr_warn("ALSA: Control name '%s' truncated to '%s'
  ",
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
264
  				ncontrol->name, kctl->id.name);
366840d7e   Mark Brown   ALSA: Warn when c...
265
  	}
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
266
267
268
269
270
271
272
273
274
275
276
  	kctl->id.index = ncontrol->index;
  
  	kctl->info = ncontrol->info;
  	kctl->get = ncontrol->get;
  	kctl->put = ncontrol->put;
  	kctl->tlv.p = ncontrol->tlv.p;
  
  	kctl->private_value = ncontrol->private_value;
  	kctl->private_data = private_data;
  
  	return kctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
277
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
278
  EXPORT_SYMBOL(snd_ctl_new1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
279
280
281
282
283
284
285
286
  /**
   * snd_ctl_free_one - release the control instance
   * @kcontrol: the control instance
   *
   * Releases the control instance created via snd_ctl_new()
   * or snd_ctl_new1().
   * Don't call this after the control was added to the card.
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
287
  void snd_ctl_free_one(struct snd_kcontrol *kcontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
288
289
290
291
292
293
294
  {
  	if (kcontrol) {
  		if (kcontrol->private_free)
  			kcontrol->private_free(kcontrol);
  		kfree(kcontrol);
  	}
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
295
  EXPORT_SYMBOL(snd_ctl_free_one);
0e82e5fa9   Clemens Ladisch   ALSA: control: cl...
296
297
  static bool snd_ctl_remove_numid_conflict(struct snd_card *card,
  					  unsigned int count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
298
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
299
  	struct snd_kcontrol *kctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
300

ac902c112   Lars-Peter Clausen   ALSA: control: Ha...
301
302
303
  	/* Make sure that the ids assigned to the control do not wrap around */
  	if (card->last_numid >= UINT_MAX - count)
  		card->last_numid = 0;
9244b2c30   Johannes Berg   [ALSA] alsa core:...
304
  	list_for_each_entry(kctl, &card->controls, list) {
7c7335877   Clemens Ladisch   ALSA: control: fi...
305
  		if (kctl->id.numid < card->last_numid + 1 + count &&
0e82e5fa9   Clemens Ladisch   ALSA: control: cl...
306
307
308
309
  		    kctl->id.numid + kctl->count > card->last_numid + 1) {
  		    	card->last_numid = kctl->id.numid + kctl->count - 1;
  			return true;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310
  	}
0e82e5fa9   Clemens Ladisch   ALSA: control: cl...
311
  	return false;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
312
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
313
  static int snd_ctl_find_hole(struct snd_card *card, unsigned int count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
314
  {
0e82e5fa9   Clemens Ladisch   ALSA: control: cl...
315
  	unsigned int iter = 100000;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
316

0e82e5fa9   Clemens Ladisch   ALSA: control: cl...
317
  	while (snd_ctl_remove_numid_conflict(card, count)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
318
319
  		if (--iter == 0) {
  			/* this situation is very unlikely */
bb0094574   Takashi Iwai   ALSA: control: Us...
320
321
  			dev_err(card->dev, "unable to allocate new control numid
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
322
323
  			return -ENOMEM;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
324
325
326
  	}
  	return 0;
  }
3103c08f9   Takashi Iwai   ALSA: control: Co...
327
328
329
330
331
332
333
334
  enum snd_ctl_add_mode {
  	CTL_ADD_EXCLUSIVE, CTL_REPLACE, CTL_ADD_ON_REPLACE,
  };
  
  /* add/replace a new kcontrol object; call with card->controls_rwsem locked */
  static int __snd_ctl_add_replace(struct snd_card *card,
  				 struct snd_kcontrol *kcontrol,
  				 enum snd_ctl_add_mode mode)
e1a7bfe38   Takashi Iwai   ALSA: control: Fi...
335
336
337
338
  {
  	struct snd_ctl_elem_id id;
  	unsigned int idx;
  	unsigned int count;
3103c08f9   Takashi Iwai   ALSA: control: Co...
339
340
  	struct snd_kcontrol *old;
  	int err;
e1a7bfe38   Takashi Iwai   ALSA: control: Fi...
341
342
343
344
  
  	id = kcontrol->id;
  	if (id.index > UINT_MAX - kcontrol->count)
  		return -EINVAL;
3103c08f9   Takashi Iwai   ALSA: control: Co...
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
  	old = snd_ctl_find_id(card, &id);
  	if (!old) {
  		if (mode == CTL_REPLACE)
  			return -EINVAL;
  	} else {
  		if (mode == CTL_ADD_EXCLUSIVE) {
  			dev_err(card->dev,
  				"control %i:%i:%i:%s:%i is already present
  ",
  				id.iface, id.device, id.subdevice, id.name,
  				id.index);
  			return -EBUSY;
  		}
  
  		err = snd_ctl_remove(card, old);
  		if (err < 0)
  			return err;
e1a7bfe38   Takashi Iwai   ALSA: control: Fi...
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
  	}
  
  	if (snd_ctl_find_hole(card, kcontrol->count) < 0)
  		return -ENOMEM;
  
  	list_add_tail(&kcontrol->list, &card->controls);
  	card->controls_count += kcontrol->count;
  	kcontrol->id.numid = card->last_numid + 1;
  	card->last_numid += kcontrol->count;
  
  	id = kcontrol->id;
  	count = kcontrol->count;
  	for (idx = 0; idx < count; idx++, id.index++, id.numid++)
  		snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_ADD, &id);
  
  	return 0;
  }
3103c08f9   Takashi Iwai   ALSA: control: Co...
379
380
381
  static int snd_ctl_add_replace(struct snd_card *card,
  			       struct snd_kcontrol *kcontrol,
  			       enum snd_ctl_add_mode mode)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
382
  {
c6077b300   Takashi Iwai   [ALSA] Fix memory...
383
  	int err = -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
384

73e77ba02   Takashi Iwai   [ALSA] Add error ...
385
  	if (! kcontrol)
c6077b300   Takashi Iwai   [ALSA] Fix memory...
386
  		return err;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
387
388
  	if (snd_BUG_ON(!card || !kcontrol->info))
  		goto error;
883a1d49f   Lars-Peter Clausen   ALSA: control: Ma...
389

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
390
  	down_write(&card->controls_rwsem);
3103c08f9   Takashi Iwai   ALSA: control: Co...
391
  	err = __snd_ctl_add_replace(card, kcontrol, mode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
392
  	up_write(&card->controls_rwsem);
e1a7bfe38   Takashi Iwai   ALSA: control: Fi...
393
394
  	if (err < 0)
  		goto error;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
395
  	return 0;
c6077b300   Takashi Iwai   [ALSA] Fix memory...
396
397
398
399
  
   error:
  	snd_ctl_free_one(kcontrol);
  	return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
400
  }
3103c08f9   Takashi Iwai   ALSA: control: Co...
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
  
  /**
   * snd_ctl_add - add the control instance to the card
   * @card: the card instance
   * @kcontrol: the control instance to add
   *
   * Adds the control instance created via snd_ctl_new() or
   * snd_ctl_new1() to the given card. Assigns also an unique
   * numid used for fast search.
   *
   * It frees automatically the control which cannot be added.
   *
   * Return: Zero if successful, or a negative error code on failure.
   *
   */
  int snd_ctl_add(struct snd_card *card, struct snd_kcontrol *kcontrol)
  {
  	return snd_ctl_add_replace(card, kcontrol, CTL_ADD_EXCLUSIVE);
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
420
  EXPORT_SYMBOL(snd_ctl_add);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
421
  /**
66b5b9722   Dimitris Papastamos   ALSA: Add snd_ctl...
422
423
424
425
426
427
428
429
430
   * snd_ctl_replace - replace the control instance of the card
   * @card: the card instance
   * @kcontrol: the control instance to replace
   * @add_on_replace: add the control if not already added
   *
   * Replaces the given control.  If the given control does not exist
   * and the add_on_replace flag is set, the control is added.  If the
   * control exists, it is destroyed first.
   *
66b5b9722   Dimitris Papastamos   ALSA: Add snd_ctl...
431
   * It frees automatically the control which cannot be added or replaced.
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
432
433
   *
   * Return: Zero if successful, or a negative error code on failure.
66b5b9722   Dimitris Papastamos   ALSA: Add snd_ctl...
434
435
436
437
   */
  int snd_ctl_replace(struct snd_card *card, struct snd_kcontrol *kcontrol,
  		    bool add_on_replace)
  {
3103c08f9   Takashi Iwai   ALSA: control: Co...
438
439
  	return snd_ctl_add_replace(card, kcontrol,
  				   add_on_replace ? CTL_ADD_ON_REPLACE : CTL_REPLACE);
66b5b9722   Dimitris Papastamos   ALSA: Add snd_ctl...
440
441
442
443
  }
  EXPORT_SYMBOL(snd_ctl_replace);
  
  /**
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
444
445
446
447
448
449
450
   * snd_ctl_remove - remove the control from the card and release it
   * @card: the card instance
   * @kcontrol: the control instance to remove
   *
   * Removes the control from the card and then releases the instance.
   * You don't need to call snd_ctl_free_one(). You must be in
   * the write lock - down_write(&card->controls_rwsem).
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
451
452
   *
   * Return: 0 if successful, or a negative error code on failure.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
453
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
454
  int snd_ctl_remove(struct snd_card *card, struct snd_kcontrol *kcontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
455
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
456
  	struct snd_ctl_elem_id id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
457
  	unsigned int idx;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
458
459
  	if (snd_BUG_ON(!card || !kcontrol))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
460
461
462
463
464
465
466
467
  	list_del(&kcontrol->list);
  	card->controls_count -= kcontrol->count;
  	id = kcontrol->id;
  	for (idx = 0; idx < kcontrol->count; idx++, id.index++, id.numid++)
  		snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_REMOVE, &id);
  	snd_ctl_free_one(kcontrol);
  	return 0;
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
468
  EXPORT_SYMBOL(snd_ctl_remove);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
469
470
471
472
473
474
475
  /**
   * snd_ctl_remove_id - remove the control of the given id and release it
   * @card: the card instance
   * @id: the control id to remove
   *
   * Finds the control instance with the given id, removes it from the
   * card list and releases it.
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
476
477
   *
   * Return: 0 if successful, or a negative error code on failure.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
478
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
479
  int snd_ctl_remove_id(struct snd_card *card, struct snd_ctl_elem_id *id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
480
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
481
  	struct snd_kcontrol *kctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
482
483
484
485
486
487
488
489
490
491
492
493
  	int ret;
  
  	down_write(&card->controls_rwsem);
  	kctl = snd_ctl_find_id(card, id);
  	if (kctl == NULL) {
  		up_write(&card->controls_rwsem);
  		return -ENOENT;
  	}
  	ret = snd_ctl_remove(card, kctl);
  	up_write(&card->controls_rwsem);
  	return ret;
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
494
  EXPORT_SYMBOL(snd_ctl_remove_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
495
  /**
f217ac59b   Clemens Ladisch   sound: snd_ctl_re...
496
   * snd_ctl_remove_user_ctl - remove and release the unlocked user control
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
497
498
499
500
501
   * @file: active control handle
   * @id: the control id to remove
   *
   * Finds the control instance with the given id, removes it from the
   * card list and releases it.
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
502
503
   *
   * Return: 0 if successful, or a negative error code on failure.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
504
   */
f217ac59b   Clemens Ladisch   sound: snd_ctl_re...
505
506
  static int snd_ctl_remove_user_ctl(struct snd_ctl_file * file,
  				   struct snd_ctl_elem_id *id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
507
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
508
509
  	struct snd_card *card = file->card;
  	struct snd_kcontrol *kctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
510
511
512
513
514
  	int idx, ret;
  
  	down_write(&card->controls_rwsem);
  	kctl = snd_ctl_find_id(card, id);
  	if (kctl == NULL) {
317b80817   Clemens Ladisch   sound: snd_ctl_re...
515
516
  		ret = -ENOENT;
  		goto error;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
517
  	}
18dd0aa5a   Clemens Ladisch   sound: snd_ctl_re...
518
519
520
521
  	if (!(kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_USER)) {
  		ret = -EINVAL;
  		goto error;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
522
523
  	for (idx = 0; idx < kctl->count; idx++)
  		if (kctl->vd[idx].owner != NULL && kctl->vd[idx].owner != file) {
317b80817   Clemens Ladisch   sound: snd_ctl_re...
524
525
  			ret = -EBUSY;
  			goto error;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
526
527
  		}
  	ret = snd_ctl_remove(card, kctl);
f217ac59b   Clemens Ladisch   sound: snd_ctl_re...
528
529
530
  	if (ret < 0)
  		goto error;
  	card->user_ctl_count--;
317b80817   Clemens Ladisch   sound: snd_ctl_re...
531
  error:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
532
533
534
535
536
  	up_write(&card->controls_rwsem);
  	return ret;
  }
  
  /**
3cbdd7533   Takashi Iwai   ALSA: Add snd_ctl...
537
538
539
540
541
542
543
   * snd_ctl_activate_id - activate/inactivate the control of the given id
   * @card: the card instance
   * @id: the control id to activate/inactivate
   * @active: non-zero to activate
   *
   * Finds the control instance with the given id, and activate or
   * inactivate the control together with notification, if changed.
c78497e01   Takashi Sakamoto   ALSA: ctl: confir...
544
   * The given ID data is filled with full information.
3cbdd7533   Takashi Iwai   ALSA: Add snd_ctl...
545
   *
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
546
   * Return: 0 if unchanged, 1 if changed, or a negative error code on failure.
3cbdd7533   Takashi Iwai   ALSA: Add snd_ctl...
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
   */
  int snd_ctl_activate_id(struct snd_card *card, struct snd_ctl_elem_id *id,
  			int active)
  {
  	struct snd_kcontrol *kctl;
  	struct snd_kcontrol_volatile *vd;
  	unsigned int index_offset;
  	int ret;
  
  	down_write(&card->controls_rwsem);
  	kctl = snd_ctl_find_id(card, id);
  	if (kctl == NULL) {
  		ret = -ENOENT;
  		goto unlock;
  	}
31584ed18   Lars-Peter Clausen   ALSA: snd_ctl_act...
562
  	index_offset = snd_ctl_get_ioff(kctl, id);
3cbdd7533   Takashi Iwai   ALSA: Add snd_ctl...
563
564
565
566
567
568
569
570
571
572
573
  	vd = &kctl->vd[index_offset];
  	ret = 0;
  	if (active) {
  		if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE))
  			goto unlock;
  		vd->access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
  	} else {
  		if (vd->access & SNDRV_CTL_ELEM_ACCESS_INACTIVE)
  			goto unlock;
  		vd->access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
  	}
c78497e01   Takashi Sakamoto   ALSA: ctl: confir...
574
  	snd_ctl_build_ioff(id, kctl, index_offset);
3cbdd7533   Takashi Iwai   ALSA: Add snd_ctl...
575
576
577
578
579
580
581
582
583
584
  	ret = 1;
   unlock:
  	up_write(&card->controls_rwsem);
  	if (ret > 0)
  		snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_INFO, id);
  	return ret;
  }
  EXPORT_SYMBOL_GPL(snd_ctl_activate_id);
  
  /**
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
585
586
587
588
589
590
591
592
   * snd_ctl_rename_id - replace the id of a control on the card
   * @card: the card instance
   * @src_id: the old id
   * @dst_id: the new id
   *
   * Finds the control with the old id from the card, and replaces the
   * id with the new one.
   *
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
593
   * Return: Zero if successful, or a negative error code on failure.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
594
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
595
596
  int snd_ctl_rename_id(struct snd_card *card, struct snd_ctl_elem_id *src_id,
  		      struct snd_ctl_elem_id *dst_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
597
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
598
  	struct snd_kcontrol *kctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
599
600
601
602
603
604
605
606
607
608
609
610
611
  
  	down_write(&card->controls_rwsem);
  	kctl = snd_ctl_find_id(card, src_id);
  	if (kctl == NULL) {
  		up_write(&card->controls_rwsem);
  		return -ENOENT;
  	}
  	kctl->id = *dst_id;
  	kctl->id.numid = card->last_numid + 1;
  	card->last_numid += kctl->count;
  	up_write(&card->controls_rwsem);
  	return 0;
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
612
  EXPORT_SYMBOL(snd_ctl_rename_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
613
614
615
616
617
618
619
  /**
   * snd_ctl_find_numid - find the control instance with the given number-id
   * @card: the card instance
   * @numid: the number-id to search
   *
   * Finds the control instance with the given number-id from the card.
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
620
621
   * The caller must down card->controls_rwsem before calling this function
   * (if the race condition can happen).
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
622
623
624
   *
   * Return: The pointer of the instance if found, or %NULL if not.
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
625
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
626
  struct snd_kcontrol *snd_ctl_find_numid(struct snd_card *card, unsigned int numid)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
627
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
628
  	struct snd_kcontrol *kctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
629

7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
630
631
  	if (snd_BUG_ON(!card || !numid))
  		return NULL;
9244b2c30   Johannes Berg   [ALSA] alsa core:...
632
  	list_for_each_entry(kctl, &card->controls, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
633
634
635
636
637
  		if (kctl->id.numid <= numid && kctl->id.numid + kctl->count > numid)
  			return kctl;
  	}
  	return NULL;
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
638
  EXPORT_SYMBOL(snd_ctl_find_numid);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
639
640
641
642
643
644
645
  /**
   * snd_ctl_find_id - find the control instance with the given id
   * @card: the card instance
   * @id: the id to search
   *
   * Finds the control instance with the given id from the card.
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
646
647
   * The caller must down card->controls_rwsem before calling this function
   * (if the race condition can happen).
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
648
649
650
   *
   * Return: The pointer of the instance if found, or %NULL if not.
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
651
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
652
653
  struct snd_kcontrol *snd_ctl_find_id(struct snd_card *card,
  				     struct snd_ctl_elem_id *id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
654
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
655
  	struct snd_kcontrol *kctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
656

7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
657
658
  	if (snd_BUG_ON(!card || !id))
  		return NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
659
660
  	if (id->numid != 0)
  		return snd_ctl_find_numid(card, id->numid);
9244b2c30   Johannes Berg   [ALSA] alsa core:...
661
  	list_for_each_entry(kctl, &card->controls, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
  		if (kctl->id.iface != id->iface)
  			continue;
  		if (kctl->id.device != id->device)
  			continue;
  		if (kctl->id.subdevice != id->subdevice)
  			continue;
  		if (strncmp(kctl->id.name, id->name, sizeof(kctl->id.name)))
  			continue;
  		if (kctl->id.index > id->index)
  			continue;
  		if (kctl->id.index + kctl->count <= id->index)
  			continue;
  		return kctl;
  	}
  	return NULL;
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
678
  EXPORT_SYMBOL(snd_ctl_find_id);
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
679
  static int snd_ctl_card_info(struct snd_card *card, struct snd_ctl_file * ctl,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
680
681
  			     unsigned int cmd, void __user *arg)
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
682
  	struct snd_ctl_card_info *info;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
683

ca2c09665   Takashi Iwai   [ALSA] Replace wi...
684
  	info = kzalloc(sizeof(*info), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
685
686
687
688
689
690
691
692
693
694
695
  	if (! info)
  		return -ENOMEM;
  	down_read(&snd_ioctl_rwsem);
  	info->card = card->number;
  	strlcpy(info->id, card->id, sizeof(info->id));
  	strlcpy(info->driver, card->driver, sizeof(info->driver));
  	strlcpy(info->name, card->shortname, sizeof(info->name));
  	strlcpy(info->longname, card->longname, sizeof(info->longname));
  	strlcpy(info->mixername, card->mixername, sizeof(info->mixername));
  	strlcpy(info->components, card->components, sizeof(info->components));
  	up_read(&snd_ioctl_rwsem);
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
696
  	if (copy_to_user(arg, info, sizeof(struct snd_ctl_card_info))) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
697
698
699
700
701
702
  		kfree(info);
  		return -EFAULT;
  	}
  	kfree(info);
  	return 0;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
703
  static int snd_ctl_elem_list(struct snd_card *card,
18d122c02   Arnd Bergmann   ALSA: compat_ioct...
704
  			     struct snd_ctl_elem_list *list)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
705
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
706
  	struct snd_kcontrol *kctl;
53e7bf452   Takashi Iwai   ALSA: control: Si...
707
  	struct snd_ctl_elem_id id;
78fa2c4d2   Luca Tettamanti   ALSA: core: remov...
708
  	unsigned int offset, space, jidx;
53e7bf452   Takashi Iwai   ALSA: control: Si...
709
  	int err = 0;
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
710

18d122c02   Arnd Bergmann   ALSA: compat_ioct...
711
712
  	offset = list->offset;
  	space = list->space;
4e361d3c9   Takashi Sakamoto   ALSA: control: re...
713

53e7bf452   Takashi Iwai   ALSA: control: Si...
714
  	down_read(&card->controls_rwsem);
18d122c02   Arnd Bergmann   ALSA: compat_ioct...
715
716
  	list->count = card->controls_count;
  	list->used = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
717
  	if (space > 0) {
53e7bf452   Takashi Iwai   ALSA: control: Si...
718
719
720
721
722
723
724
  		list_for_each_entry(kctl, &card->controls, list) {
  			if (offset >= kctl->count) {
  				offset -= kctl->count;
  				continue;
  			}
  			for (jidx = offset; jidx < kctl->count; jidx++) {
  				snd_ctl_build_ioff(&id, kctl, jidx);
18d122c02   Arnd Bergmann   ALSA: compat_ioct...
725
  				if (copy_to_user(list->pids + list->used, &id,
53e7bf452   Takashi Iwai   ALSA: control: Si...
726
727
728
729
  						 sizeof(id))) {
  					err = -EFAULT;
  					goto out;
  				}
18d122c02   Arnd Bergmann   ALSA: compat_ioct...
730
  				list->used++;
53e7bf452   Takashi Iwai   ALSA: control: Si...
731
732
  				if (!--space)
  					goto out;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
733
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
734
735
  			offset = 0;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
736
  	}
53e7bf452   Takashi Iwai   ALSA: control: Si...
737
738
   out:
  	up_read(&card->controls_rwsem);
53e7bf452   Takashi Iwai   ALSA: control: Si...
739
  	return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
740
  }
18d122c02   Arnd Bergmann   ALSA: compat_ioct...
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
  static int snd_ctl_elem_list_user(struct snd_card *card,
  				  struct snd_ctl_elem_list __user *_list)
  {
  	struct snd_ctl_elem_list list;
  	int err;
  
  	if (copy_from_user(&list, _list, sizeof(list)))
  		return -EFAULT;
  	err = snd_ctl_elem_list(card, &list);
  	if (err)
  		return err;
  	if (copy_to_user(_list, &list, sizeof(list)))
  		return -EFAULT;
  
  	return 0;
  }
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
  /* Check whether the given kctl info is valid */
  static int snd_ctl_check_elem_info(struct snd_card *card,
  				   const struct snd_ctl_elem_info *info)
  {
  	static const unsigned int max_value_counts[] = {
  		[SNDRV_CTL_ELEM_TYPE_BOOLEAN]	= 128,
  		[SNDRV_CTL_ELEM_TYPE_INTEGER]	= 128,
  		[SNDRV_CTL_ELEM_TYPE_ENUMERATED] = 128,
  		[SNDRV_CTL_ELEM_TYPE_BYTES]	= 512,
  		[SNDRV_CTL_ELEM_TYPE_IEC958]	= 1,
  		[SNDRV_CTL_ELEM_TYPE_INTEGER64] = 64,
  	};
  
  	if (info->type < SNDRV_CTL_ELEM_TYPE_BOOLEAN ||
  	    info->type > SNDRV_CTL_ELEM_TYPE_INTEGER64) {
  		if (card)
  			dev_err(card->dev,
  				"control %i:%i:%i:%s:%i: invalid type %d
  ",
  				info->id.iface, info->id.device,
  				info->id.subdevice, info->id.name,
  				info->id.index, info->type);
  		return -EINVAL;
  	}
  	if (info->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED &&
  	    info->value.enumerated.items == 0) {
  		if (card)
  			dev_err(card->dev,
  				"control %i:%i:%i:%s:%i: zero enum items
  ",
  				info->id.iface, info->id.device,
  				info->id.subdevice, info->id.name,
  				info->id.index);
  		return -EINVAL;
  	}
  	if (info->count > max_value_counts[info->type]) {
  		if (card)
  			dev_err(card->dev,
  				"control %i:%i:%i:%s:%i: invalid count %d
  ",
  				info->id.iface, info->id.device,
  				info->id.subdevice, info->id.name,
  				info->id.index, info->count);
  		return -EINVAL;
  	}
  
  	return 0;
  }
  
  /* The capacity of struct snd_ctl_elem_value.value.*/
  static const unsigned int value_sizes[] = {
  	[SNDRV_CTL_ELEM_TYPE_BOOLEAN]	= sizeof(long),
  	[SNDRV_CTL_ELEM_TYPE_INTEGER]	= sizeof(long),
  	[SNDRV_CTL_ELEM_TYPE_ENUMERATED] = sizeof(unsigned int),
  	[SNDRV_CTL_ELEM_TYPE_BYTES]	= sizeof(unsigned char),
  	[SNDRV_CTL_ELEM_TYPE_IEC958]	= sizeof(struct snd_aes_iec958),
  	[SNDRV_CTL_ELEM_TYPE_INTEGER64] = sizeof(long long),
  };
  
  #ifdef CONFIG_SND_CTL_VALIDATION
  /* fill the remaining snd_ctl_elem_value data with the given pattern */
  static void fill_remaining_elem_value(struct snd_ctl_elem_value *control,
  				      struct snd_ctl_elem_info *info,
  				      u32 pattern)
  {
  	size_t offset = value_sizes[info->type] * info->count;
  
  	offset = (offset + sizeof(u32) - 1) / sizeof(u32);
  	memset32((u32 *)control->value.bytes.data + offset, pattern,
  		 sizeof(control->value) / sizeof(u32) - offset);
  }
  
  /* check whether the given integer ctl value is valid */
  static int sanity_check_int_value(struct snd_card *card,
  				  const struct snd_ctl_elem_value *control,
  				  const struct snd_ctl_elem_info *info,
  				  int i)
  {
  	long long lval, lmin, lmax, lstep;
  	u64 rem;
  
  	switch (info->type) {
  	default:
  	case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
  		lval = control->value.integer.value[i];
  		lmin = 0;
  		lmax = 1;
  		lstep = 0;
  		break;
  	case SNDRV_CTL_ELEM_TYPE_INTEGER:
  		lval = control->value.integer.value[i];
  		lmin = info->value.integer.min;
  		lmax = info->value.integer.max;
  		lstep = info->value.integer.step;
  		break;
  	case SNDRV_CTL_ELEM_TYPE_INTEGER64:
  		lval = control->value.integer64.value[i];
  		lmin = info->value.integer64.min;
  		lmax = info->value.integer64.max;
  		lstep = info->value.integer64.step;
  		break;
  	case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
  		lval = control->value.enumerated.item[i];
  		lmin = 0;
  		lmax = info->value.enumerated.items - 1;
  		lstep = 0;
  		break;
  	}
  
  	if (lval < lmin || lval > lmax) {
  		dev_err(card->dev,
  			"control %i:%i:%i:%s:%i: value out of range %lld (%lld/%lld) at count %i
  ",
  			control->id.iface, control->id.device,
  			control->id.subdevice, control->id.name,
  			control->id.index, lval, lmin, lmax, i);
  		return -EINVAL;
  	}
  	if (lstep) {
  		div64_u64_rem(lval, lstep, &rem);
  		if (rem) {
  			dev_err(card->dev,
  				"control %i:%i:%i:%s:%i: unaligned value %lld (step %lld) at count %i
  ",
  				control->id.iface, control->id.device,
  				control->id.subdevice, control->id.name,
  				control->id.index, lval, lstep, i);
  			return -EINVAL;
  		}
  	}
  
  	return 0;
  }
  
  /* perform sanity checks to the given snd_ctl_elem_value object */
  static int sanity_check_elem_value(struct snd_card *card,
  				   const struct snd_ctl_elem_value *control,
  				   const struct snd_ctl_elem_info *info,
  				   u32 pattern)
  {
  	size_t offset;
3b2549a37   Dan Carpenter   ALSA: control: po...
898
  	int i, ret = 0;
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
  	u32 *p;
  
  	switch (info->type) {
  	case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
  	case SNDRV_CTL_ELEM_TYPE_INTEGER:
  	case SNDRV_CTL_ELEM_TYPE_INTEGER64:
  	case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
  		for (i = 0; i < info->count; i++) {
  			ret = sanity_check_int_value(card, control, info, i);
  			if (ret < 0)
  				return ret;
  		}
  		break;
  	default:
  		break;
  	}
  
  	/* check whether the remaining area kept untouched */
  	offset = value_sizes[info->type] * info->count;
  	offset = (offset + sizeof(u32) - 1) / sizeof(u32);
  	p = (u32 *)control->value.bytes.data + offset;
  	for (; offset < sizeof(control->value) / sizeof(u32); offset++, p++) {
  		if (*p != pattern) {
  			ret = -EINVAL;
  			break;
  		}
  		*p = 0; /* clear the checked area */
  	}
  
  	return ret;
  }
  #else
  static inline void fill_remaining_elem_value(struct snd_ctl_elem_value *control,
  					     struct snd_ctl_elem_info *info,
  					     u32 pattern)
  {
  }
  
  static inline int sanity_check_elem_value(struct snd_card *card,
  					  struct snd_ctl_elem_value *control,
  					  struct snd_ctl_elem_info *info,
  					  u32 pattern)
  {
  	return 0;
  }
  #endif
  
  static int __snd_ctl_elem_info(struct snd_card *card,
  			       struct snd_kcontrol *kctl,
  			       struct snd_ctl_elem_info *info,
  			       struct snd_ctl_file *ctl)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
950
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
951
  	struct snd_kcontrol_volatile *vd;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
952
953
  	unsigned int index_offset;
  	int result;
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
954

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
955
956
957
958
959
  #ifdef CONFIG_SND_DEBUG
  	info->access = 0;
  #endif
  	result = kctl->info(kctl, info);
  	if (result >= 0) {
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
960
  		snd_BUG_ON(info->access);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
961
962
963
964
965
966
967
968
  		index_offset = snd_ctl_get_ioff(kctl, &info->id);
  		vd = &kctl->vd[index_offset];
  		snd_ctl_build_ioff(&info->id, kctl, index_offset);
  		info->access = vd->access;
  		if (vd->owner) {
  			info->access |= SNDRV_CTL_ELEM_ACCESS_LOCK;
  			if (vd->owner == ctl)
  				info->access |= SNDRV_CTL_ELEM_ACCESS_OWNER;
25d27eded   Clemens Ladisch   control: use refe...
969
  			info->owner = pid_vnr(vd->owner->pid);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
970
971
972
  		} else {
  			info->owner = -1;
  		}
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
973
974
975
  		if (!snd_ctl_skip_validation(info) &&
  		    snd_ctl_check_elem_info(card, info) < 0)
  			result = -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
976
  	}
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
  	return result;
  }
  
  static int snd_ctl_elem_info(struct snd_ctl_file *ctl,
  			     struct snd_ctl_elem_info *info)
  {
  	struct snd_card *card = ctl->card;
  	struct snd_kcontrol *kctl;
  	int result;
  
  	down_read(&card->controls_rwsem);
  	kctl = snd_ctl_find_id(card, &info->id);
  	if (kctl == NULL)
  		result = -ENOENT;
  	else
  		result = __snd_ctl_elem_info(card, kctl, info, ctl);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
993
994
995
  	up_read(&card->controls_rwsem);
  	return result;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
996
997
  static int snd_ctl_elem_info_user(struct snd_ctl_file *ctl,
  				  struct snd_ctl_elem_info __user *_info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
998
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
999
  	struct snd_ctl_elem_info info;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1000
1001
1002
1003
  	int result;
  
  	if (copy_from_user(&info, _info, sizeof(info)))
  		return -EFAULT;
cbac4b0cb   Takashi Iwai   [ALSA] Cleanup un...
1004
  	result = snd_power_wait(ctl->card, SNDRV_CTL_POWER_D0);
7d8e82920   Takashi Iwai   ALSA: Get rid of ...
1005
1006
1007
1008
1009
  	if (result < 0)
  		return result;
  	result = snd_ctl_elem_info(ctl, &info);
  	if (result < 0)
  		return result;
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
1010
1011
  	/* drop internal access flags */
  	info.access &= ~SNDRV_CTL_ELEM_ACCESS_SKIP_CHECK;
7d8e82920   Takashi Iwai   ALSA: Get rid of ...
1012
1013
  	if (copy_to_user(_info, &info, sizeof(info)))
  		return -EFAULT;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1014
1015
  	return result;
  }
d3bd67cdb   Takashi Iwai   ALSA: make snd_ct...
1016
1017
  static int snd_ctl_elem_read(struct snd_card *card,
  			     struct snd_ctl_elem_value *control)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1018
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1019
1020
  	struct snd_kcontrol *kctl;
  	struct snd_kcontrol_volatile *vd;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1021
  	unsigned int index_offset;
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
1022
1023
1024
  	struct snd_ctl_elem_info info;
  	const u32 pattern = 0xdeadbeef;
  	int ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1025

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1026
  	kctl = snd_ctl_find_id(card, &control->id);
becf9e5d5   Takashi Sakamoto   ALSA: control: co...
1027
1028
1029
1030
1031
  	if (kctl == NULL)
  		return -ENOENT;
  
  	index_offset = snd_ctl_get_ioff(kctl, &control->id);
  	vd = &kctl->vd[index_offset];
5a23699a3   Richard Fitzgerald   ALSA: control: Fi...
1032
  	if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_READ) || kctl->get == NULL)
becf9e5d5   Takashi Sakamoto   ALSA: control: co...
1033
1034
1035
  		return -EPERM;
  
  	snd_ctl_build_ioff(&control->id, kctl, index_offset);
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
  
  #ifdef CONFIG_SND_CTL_VALIDATION
  	/* info is needed only for validation */
  	memset(&info, 0, sizeof(info));
  	info.id = control->id;
  	ret = __snd_ctl_elem_info(card, kctl, &info, NULL);
  	if (ret < 0)
  		return ret;
  #endif
  
  	if (!snd_ctl_skip_validation(&info))
  		fill_remaining_elem_value(control, &info, pattern);
  	ret = kctl->get(kctl, control);
  	if (ret < 0)
  		return ret;
  	if (!snd_ctl_skip_validation(&info) &&
  	    sanity_check_elem_value(card, control, &info, pattern) < 0) {
  		dev_err(card->dev,
  			"control %i:%i:%i:%s:%i: access overflow
  ",
  			control->id.iface, control->id.device,
  			control->id.subdevice, control->id.name,
  			control->id.index);
  		return -EINVAL;
  	}
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1062
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1063
1064
  static int snd_ctl_elem_read_user(struct snd_card *card,
  				  struct snd_ctl_elem_value __user *_control)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1065
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1066
  	struct snd_ctl_elem_value *control;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1067
  	int result;
ef44a1ec6   Li Zefan   ALSA: sound/core:...
1068
1069
1070
1071
  
  	control = memdup_user(_control, sizeof(*control));
  	if (IS_ERR(control))
  		return PTR_ERR(control);
cbac4b0cb   Takashi Iwai   [ALSA] Cleanup un...
1072
  	result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
7d8e82920   Takashi Iwai   ALSA: Get rid of ...
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
  	if (result < 0)
  		goto error;
  
  	down_read(&card->controls_rwsem);
  	result = snd_ctl_elem_read(card, control);
  	up_read(&card->controls_rwsem);
  	if (result < 0)
  		goto error;
  
  	if (copy_to_user(_control, control, sizeof(*control)))
  		result = -EFAULT;
   error:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1085
1086
1087
  	kfree(control);
  	return result;
  }
d3bd67cdb   Takashi Iwai   ALSA: make snd_ct...
1088
1089
  static int snd_ctl_elem_write(struct snd_card *card, struct snd_ctl_file *file,
  			      struct snd_ctl_elem_value *control)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1090
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1091
1092
  	struct snd_kcontrol *kctl;
  	struct snd_kcontrol_volatile *vd;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1093
  	unsigned int index_offset;
8ace4f3c9   Takashi Iwai   [ALSA] Remove ind...
1094
  	int result;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1095

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1096
  	kctl = snd_ctl_find_id(card, &control->id);
becf9e5d5   Takashi Sakamoto   ALSA: control: co...
1097
1098
1099
1100
1101
1102
1103
1104
  	if (kctl == NULL)
  		return -ENOENT;
  
  	index_offset = snd_ctl_get_ioff(kctl, &control->id);
  	vd = &kctl->vd[index_offset];
  	if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_WRITE) || kctl->put == NULL ||
  	    (file && vd->owner && vd->owner != file)) {
  		return -EPERM;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1105
  	}
becf9e5d5   Takashi Sakamoto   ALSA: control: co...
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
  
  	snd_ctl_build_ioff(&control->id, kctl, index_offset);
  	result = kctl->put(kctl, control);
  	if (result < 0)
  		return result;
  
  	if (result > 0) {
  		struct snd_ctl_elem_id id = control->id;
  		snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &id);
  	}
  
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1118
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1119
1120
  static int snd_ctl_elem_write_user(struct snd_ctl_file *file,
  				   struct snd_ctl_elem_value __user *_control)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1121
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1122
  	struct snd_ctl_elem_value *control;
646494007   Giuliano Pochini   [ALSA] make contr...
1123
  	struct snd_card *card;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1124
  	int result;
ef44a1ec6   Li Zefan   ALSA: sound/core:...
1125
1126
1127
  	control = memdup_user(_control, sizeof(*control));
  	if (IS_ERR(control))
  		return PTR_ERR(control);
646494007   Giuliano Pochini   [ALSA] make contr...
1128
  	card = file->card;
cbac4b0cb   Takashi Iwai   [ALSA] Cleanup un...
1129
  	result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
7d8e82920   Takashi Iwai   ALSA: Get rid of ...
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
  	if (result < 0)
  		goto error;
  
  	down_write(&card->controls_rwsem);
  	result = snd_ctl_elem_write(card, file, control);
  	up_write(&card->controls_rwsem);
  	if (result < 0)
  		goto error;
  
  	if (copy_to_user(_control, control, sizeof(*control)))
  		result = -EFAULT;
   error:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1142
1143
1144
  	kfree(control);
  	return result;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1145
1146
  static int snd_ctl_elem_lock(struct snd_ctl_file *file,
  			     struct snd_ctl_elem_id __user *_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1147
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1148
1149
1150
1151
  	struct snd_card *card = file->card;
  	struct snd_ctl_elem_id id;
  	struct snd_kcontrol *kctl;
  	struct snd_kcontrol_volatile *vd;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1152
  	int result;
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
1153

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
  	if (copy_from_user(&id, _id, sizeof(id)))
  		return -EFAULT;
  	down_write(&card->controls_rwsem);
  	kctl = snd_ctl_find_id(card, &id);
  	if (kctl == NULL) {
  		result = -ENOENT;
  	} else {
  		vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
  		if (vd->owner != NULL)
  			result = -EBUSY;
  		else {
  			vd->owner = file;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1166
1167
1168
1169
1170
1171
  			result = 0;
  		}
  	}
  	up_write(&card->controls_rwsem);
  	return result;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1172
1173
  static int snd_ctl_elem_unlock(struct snd_ctl_file *file,
  			       struct snd_ctl_elem_id __user *_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1174
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1175
1176
1177
1178
  	struct snd_card *card = file->card;
  	struct snd_ctl_elem_id id;
  	struct snd_kcontrol *kctl;
  	struct snd_kcontrol_volatile *vd;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1179
  	int result;
dd5f313be   Richard Fitzgerald   ALSA: control: Fi...
1180

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
  	if (copy_from_user(&id, _id, sizeof(id)))
  		return -EFAULT;
  	down_write(&card->controls_rwsem);
  	kctl = snd_ctl_find_id(card, &id);
  	if (kctl == NULL) {
  		result = -ENOENT;
  	} else {
  		vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
  		if (vd->owner == NULL)
  			result = -EINVAL;
  		else if (vd->owner != file)
  			result = -EPERM;
  		else {
  			vd->owner = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1195
1196
1197
1198
1199
1200
1201
1202
  			result = 0;
  		}
  	}
  	up_write(&card->controls_rwsem);
  	return result;
  }
  
  struct user_element {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1203
  	struct snd_ctl_elem_info info;
07f4d9d74   Lars-Peter Clausen   ALSA: control: Pr...
1204
  	struct snd_card *card;
e1c78df1d   Takashi Sakamoto   ALSA: ctl: fix to...
1205
  	char *elem_data;		/* element data */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1206
  	unsigned long elem_data_size;	/* size of element data in bytes */
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1207
1208
  	void *tlv_data;			/* TLV data */
  	unsigned long tlv_data_size;	/* TLV data size */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1209
  	void *priv_data;		/* private data (like strings for enumerated type) */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1210
  };
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1211
1212
  static int snd_ctl_elem_user_info(struct snd_kcontrol *kcontrol,
  				  struct snd_ctl_elem_info *uinfo)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1213
1214
  {
  	struct user_element *ue = kcontrol->private_data;
c378c3b03   Takashi Sakamoto   ALSA: ctl: fix a ...
1215
  	unsigned int offset;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1216

c378c3b03   Takashi Sakamoto   ALSA: ctl: fix a ...
1217
  	offset = snd_ctl_get_ioff(kcontrol, &uinfo->id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1218
  	*uinfo = ue->info;
c378c3b03   Takashi Sakamoto   ALSA: ctl: fix a ...
1219
  	snd_ctl_build_ioff(&uinfo->id, kcontrol, offset);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1220
1221
  	return 0;
  }
8d448162b   Clemens Ladisch   ALSA: control: ad...
1222
1223
1224
1225
1226
1227
  static int snd_ctl_elem_user_enum_info(struct snd_kcontrol *kcontrol,
  				       struct snd_ctl_elem_info *uinfo)
  {
  	struct user_element *ue = kcontrol->private_data;
  	const char *names;
  	unsigned int item;
c378c3b03   Takashi Sakamoto   ALSA: ctl: fix a ...
1228
  	unsigned int offset;
8d448162b   Clemens Ladisch   ALSA: control: ad...
1229
1230
  
  	item = uinfo->value.enumerated.item;
c378c3b03   Takashi Sakamoto   ALSA: ctl: fix a ...
1231
  	offset = snd_ctl_get_ioff(kcontrol, &uinfo->id);
8d448162b   Clemens Ladisch   ALSA: control: ad...
1232
  	*uinfo = ue->info;
c378c3b03   Takashi Sakamoto   ALSA: ctl: fix a ...
1233
  	snd_ctl_build_ioff(&uinfo->id, kcontrol, offset);
8d448162b   Clemens Ladisch   ALSA: control: ad...
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
  
  	item = min(item, uinfo->value.enumerated.items - 1);
  	uinfo->value.enumerated.item = item;
  
  	names = ue->priv_data;
  	for (; item > 0; --item)
  		names += strlen(names) + 1;
  	strcpy(uinfo->value.enumerated.name, names);
  
  	return 0;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1245
1246
  static int snd_ctl_elem_user_get(struct snd_kcontrol *kcontrol,
  				 struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1247
1248
  {
  	struct user_element *ue = kcontrol->private_data;
e1c78df1d   Takashi Sakamoto   ALSA: ctl: fix to...
1249
1250
1251
  	unsigned int size = ue->elem_data_size;
  	char *src = ue->elem_data +
  			snd_ctl_get_ioff(kcontrol, &ucontrol->id) * size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1252

e1c78df1d   Takashi Sakamoto   ALSA: ctl: fix to...
1253
  	memcpy(&ucontrol->value, src, size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1254
1255
  	return 0;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1256
1257
  static int snd_ctl_elem_user_put(struct snd_kcontrol *kcontrol,
  				 struct snd_ctl_elem_value *ucontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1258
1259
1260
  {
  	int change;
  	struct user_element *ue = kcontrol->private_data;
e1c78df1d   Takashi Sakamoto   ALSA: ctl: fix to...
1261
1262
1263
  	unsigned int size = ue->elem_data_size;
  	char *dst = ue->elem_data +
  			snd_ctl_get_ioff(kcontrol, &ucontrol->id) * size;
07f4d9d74   Lars-Peter Clausen   ALSA: control: Pr...
1264

e1c78df1d   Takashi Sakamoto   ALSA: ctl: fix to...
1265
  	change = memcmp(&ucontrol->value, dst, size) != 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1266
  	if (change)
e1c78df1d   Takashi Sakamoto   ALSA: ctl: fix to...
1267
  		memcpy(dst, &ucontrol->value, size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1268
1269
  	return change;
  }
6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1270
1271
  static int replace_user_tlv(struct snd_kcontrol *kctl, unsigned int __user *buf,
  			    unsigned int size)
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1272
  {
6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1273
1274
  	struct user_element *ue = kctl->private_data;
  	unsigned int *container;
da4288287   Takashi Sakamoto   ALSA: control: qu...
1275
  	struct snd_ctl_elem_id id;
b8e2204b2   Takashi Sakamoto   ALSA: control: TL...
1276
  	unsigned int mask = 0;
da4288287   Takashi Sakamoto   ALSA: control: qu...
1277
  	int i;
6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1278
  	int change;
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1279

6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1280
1281
  	if (size > 1024 * 128)	/* sane value */
  		return -EINVAL;
30d8340b5   Takashi Sakamoto   ALSA: control: ob...
1282

88a890375   Al Viro   replace_user_tlv(...
1283
  	container = vmemdup_user(buf, size);
6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1284
1285
  	if (IS_ERR(container))
  		return PTR_ERR(container);
ef44a1ec6   Li Zefan   ALSA: sound/core:...
1286

6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1287
1288
  	change = ue->tlv_data_size != size;
  	if (!change)
241bc82e6   Takashi Iwai   Merge branch 'for...
1289
  		change = memcmp(ue->tlv_data, container, size) != 0;
6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1290
  	if (!change) {
88a890375   Al Viro   replace_user_tlv(...
1291
  		kvfree(container);
6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1292
1293
  		return 0;
  	}
30d8340b5   Takashi Sakamoto   ALSA: control: ob...
1294

b8e2204b2   Takashi Sakamoto   ALSA: control: TL...
1295
1296
1297
1298
1299
1300
  	if (ue->tlv_data == NULL) {
  		/* Now TLV data is available. */
  		for (i = 0; i < kctl->count; ++i)
  			kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_TLV_READ;
  		mask = SNDRV_CTL_EVENT_MASK_INFO;
  	}
88a890375   Al Viro   replace_user_tlv(...
1301
  	kvfree(ue->tlv_data);
6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1302
1303
  	ue->tlv_data = container;
  	ue->tlv_data_size = size;
07f4d9d74   Lars-Peter Clausen   ALSA: control: Pr...
1304

b8e2204b2   Takashi Sakamoto   ALSA: control: TL...
1305
  	mask |= SNDRV_CTL_EVENT_MASK_TLV;
da4288287   Takashi Sakamoto   ALSA: control: qu...
1306
1307
  	for (i = 0; i < kctl->count; ++i) {
  		snd_ctl_build_ioff(&id, kctl, i);
b8e2204b2   Takashi Sakamoto   ALSA: control: TL...
1308
  		snd_ctl_notify(ue->card, mask, &id);
da4288287   Takashi Sakamoto   ALSA: control: qu...
1309
  	}
fb8027ebf   Takashi Sakamoto   ALSA: control: de...
1310

6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1311
1312
  	return change;
  }
30d8340b5   Takashi Sakamoto   ALSA: control: ob...
1313

6d4d41f01   Takashi Sakamoto   ALSA: control: co...
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
  static int read_user_tlv(struct snd_kcontrol *kctl, unsigned int __user *buf,
  			 unsigned int size)
  {
  	struct user_element *ue = kctl->private_data;
  
  	if (ue->tlv_data_size == 0 || ue->tlv_data == NULL)
  		return -ENXIO;
  
  	if (size < ue->tlv_data_size)
  		return -ENOSPC;
  
  	if (copy_to_user(buf, ue->tlv_data, ue->tlv_data_size))
  		return -EFAULT;
  
  	return 0;
  }
  
  static int snd_ctl_elem_user_tlv(struct snd_kcontrol *kctl, int op_flag,
  				 unsigned int size, unsigned int __user *buf)
  {
  	if (op_flag == SNDRV_CTL_TLV_OP_WRITE)
  		return replace_user_tlv(kctl, buf, size);
  	else
  		return read_user_tlv(kctl, buf, size);
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1338
  }
8d448162b   Clemens Ladisch   ALSA: control: ad...
1339
1340
1341
1342
1343
  static int snd_ctl_elem_init_enum_names(struct user_element *ue)
  {
  	char *names, *p;
  	size_t buf_len, name_len;
  	unsigned int i;
447c6f93a   Olof Johansson   ALSA: control: re...
1344
  	const uintptr_t user_ptrval = ue->info.value.enumerated.names_ptr;
8d448162b   Clemens Ladisch   ALSA: control: ad...
1345
1346
1347
  
  	if (ue->info.value.enumerated.names_length > 64 * 1024)
  		return -EINVAL;
59aeaf3fe   Al Viro   snd_ctl_elem_init...
1348
  	names = vmemdup_user((const void __user *)user_ptrval,
8d448162b   Clemens Ladisch   ALSA: control: ad...
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
  		ue->info.value.enumerated.names_length);
  	if (IS_ERR(names))
  		return PTR_ERR(names);
  
  	/* check that there are enough valid names */
  	buf_len = ue->info.value.enumerated.names_length;
  	p = names;
  	for (i = 0; i < ue->info.value.enumerated.items; ++i) {
  		name_len = strnlen(p, buf_len);
  		if (name_len == 0 || name_len >= 64 || name_len == buf_len) {
59aeaf3fe   Al Viro   snd_ctl_elem_init...
1359
  			kvfree(names);
8d448162b   Clemens Ladisch   ALSA: control: ad...
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
  			return -EINVAL;
  		}
  		p += name_len + 1;
  		buf_len -= name_len + 1;
  	}
  
  	ue->priv_data = names;
  	ue->info.value.enumerated.names_ptr = 0;
  
  	return 0;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1371
  static void snd_ctl_elem_user_free(struct snd_kcontrol *kcontrol)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1372
  {
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1373
  	struct user_element *ue = kcontrol->private_data;
8d448162b   Clemens Ladisch   ALSA: control: ad...
1374

88a890375   Al Viro   replace_user_tlv(...
1375
  	kvfree(ue->tlv_data);
59aeaf3fe   Al Viro   snd_ctl_elem_init...
1376
  	kvfree(ue->priv_data);
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1377
  	kfree(ue);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1378
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1379
1380
  static int snd_ctl_elem_add(struct snd_ctl_file *file,
  			    struct snd_ctl_elem_info *info, int replace)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1381
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1382
  	struct snd_card *card = file->card;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1383
1384
  	struct snd_kcontrol *kctl;
  	unsigned int count;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1385
1386
1387
  	unsigned int access;
  	long private_size;
  	struct user_element *ue;
cab2ed747   Takashi Sakamoto   ALSA: ctl: fill i...
1388
  	unsigned int offset;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1389
  	int err;
82262a466   Lars-Peter Clausen   ALSA: control: Fi...
1390

be3bb8236   Takashi Iwai   ALSA: control: Ad...
1391
1392
1393
1394
  	if (!*info->id.name)
  		return -EINVAL;
  	if (strnlen(info->id.name, sizeof(info->id.name)) >= sizeof(info->id.name))
  		return -EINVAL;
82262a466   Lars-Peter Clausen   ALSA: control: Fi...
1395

2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1396
  	/* Delete a control to replace them if needed. */
82262a466   Lars-Peter Clausen   ALSA: control: Fi...
1397
  	if (replace) {
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1398
  		info->id.numid = 0;
82262a466   Lars-Peter Clausen   ALSA: control: Fi...
1399
1400
1401
  		err = snd_ctl_remove_user_ctl(file, &info->id);
  		if (err)
  			return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1402
  	}
82262a466   Lars-Peter Clausen   ALSA: control: Fi...
1403

2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1404
1405
1406
1407
1408
  	/*
  	 * The number of userspace controls are counted control by control,
  	 * not element by element.
  	 */
  	if (card->user_ctl_count + 1 > MAX_USER_CONTROLS)
82262a466   Lars-Peter Clausen   ALSA: control: Fi...
1409
  		return -ENOMEM;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
  	/* Check the number of elements for this userspace control. */
  	count = info->owner;
  	if (count == 0)
  		count = 1;
  
  	/* Arrange access permissions if needed. */
  	access = info->access;
  	if (access == 0)
  		access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
  	access &= (SNDRV_CTL_ELEM_ACCESS_READWRITE |
  		   SNDRV_CTL_ELEM_ACCESS_INACTIVE |
b8e2204b2   Takashi Sakamoto   ALSA: control: TL...
1421
1422
1423
1424
  		   SNDRV_CTL_ELEM_ACCESS_TLV_WRITE);
  
  	/* In initial state, nothing is available as TLV container. */
  	if (access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE)
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1425
  		access |= SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1426
  	access |= SNDRV_CTL_ELEM_ACCESS_USER;
4ed56666b   Takashi Sakamoto   ALSA: core: use p...
1427

2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1428
1429
1430
1431
  	/*
  	 * Check information and calculate the size of data specific to
  	 * this userspace control.
  	 */
fbd3eb7f6   Takashi Iwai   ALSA: control: Ad...
1432
1433
1434
1435
1436
1437
  	/* pass NULL to card for suppressing error messages */
  	err = snd_ctl_check_elem_info(NULL, info);
  	if (err < 0)
  		return err;
  	/* user-space control doesn't allow zero-size data */
  	if (info->count < 1)
4ed56666b   Takashi Sakamoto   ALSA: core: use p...
1438
  		return -EINVAL;
4ed56666b   Takashi Sakamoto   ALSA: core: use p...
1439
  	private_size = value_sizes[info->type] * info->count;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
  
  	/*
  	 * Keep memory object for this userspace control. After passing this
  	 * code block, the instance should be freed by snd_ctl_free_one().
  	 *
  	 * Note that these elements in this control are locked.
  	 */
  	err = snd_ctl_new(&kctl, count, access, file);
  	if (err < 0)
  		return err;
e79d74ab2   Takashi Iwai   ALSA: control: Fi...
1450
  	memcpy(&kctl->id, &info->id, sizeof(kctl->id));
e1c78df1d   Takashi Sakamoto   ALSA: ctl: fix to...
1451
  	kctl->private_data = kzalloc(sizeof(struct user_element) + private_size * count,
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1452
1453
1454
  				     GFP_KERNEL);
  	if (kctl->private_data == NULL) {
  		kfree(kctl);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1455
  		return -ENOMEM;
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1456
1457
1458
1459
1460
  	}
  	kctl->private_free = snd_ctl_elem_user_free;
  
  	/* Set private data for this userspace control. */
  	ue = (struct user_element *)kctl->private_data;
07f4d9d74   Lars-Peter Clausen   ALSA: control: Pr...
1461
  	ue->card = card;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1462
  	ue->info = *info;
86148e84c   Takashi Iwai   [ALSA] Fix errors...
1463
  	ue->info.access = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1464
1465
  	ue->elem_data = (char *)ue + sizeof(*ue);
  	ue->elem_data_size = private_size;
8d448162b   Clemens Ladisch   ALSA: control: ad...
1466
1467
1468
  	if (ue->info.type == SNDRV_CTL_ELEM_TYPE_ENUMERATED) {
  		err = snd_ctl_elem_init_enum_names(ue);
  		if (err < 0) {
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1469
  			snd_ctl_free_one(kctl);
8d448162b   Clemens Ladisch   ALSA: control: ad...
1470
1471
1472
  			return err;
  		}
  	}
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
  
  	/* Set callback functions. */
  	if (info->type == SNDRV_CTL_ELEM_TYPE_ENUMERATED)
  		kctl->info = snd_ctl_elem_user_enum_info;
  	else
  		kctl->info = snd_ctl_elem_user_info;
  	if (access & SNDRV_CTL_ELEM_ACCESS_READ)
  		kctl->get = snd_ctl_elem_user_get;
  	if (access & SNDRV_CTL_ELEM_ACCESS_WRITE)
  		kctl->put = snd_ctl_elem_user_put;
b8e2204b2   Takashi Sakamoto   ALSA: control: TL...
1483
  	if (access & SNDRV_CTL_ELEM_ACCESS_TLV_WRITE)
2225e79b9   Takashi Sakamoto   ALSA: core: reduc...
1484
1485
1486
  		kctl->tlv.c = snd_ctl_elem_user_tlv;
  
  	/* This function manage to free the instance on failure. */
e1a7bfe38   Takashi Iwai   ALSA: control: Fi...
1487
  	down_write(&card->controls_rwsem);
3103c08f9   Takashi Iwai   ALSA: control: Co...
1488
  	err = __snd_ctl_add_replace(card, kctl, CTL_ADD_EXCLUSIVE);
e1a7bfe38   Takashi Iwai   ALSA: control: Fi...
1489
1490
1491
1492
  	if (err < 0) {
  		snd_ctl_free_one(kctl);
  		goto unlock;
  	}
cab2ed747   Takashi Sakamoto   ALSA: ctl: fill i...
1493
1494
1495
1496
1497
1498
1499
1500
1501
  	offset = snd_ctl_get_ioff(kctl, &info->id);
  	snd_ctl_build_ioff(&info->id, kctl, offset);
  	/*
  	 * Here we cannot fill any field for the number of elements added by
  	 * this operation because there're no specific fields. The usage of
  	 * 'owner' field for this purpose may cause any bugs to userspace
  	 * applications because the field originally means PID of a process
  	 * which locks the element.
  	 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1502

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1503
  	card->user_ctl_count++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1504

e1a7bfe38   Takashi Iwai   ALSA: control: Fi...
1505
1506
   unlock:
  	up_write(&card->controls_rwsem);
95a793c3b   Takashi Sakamoto   ALSA: ctl: fix er...
1507
  	return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1508
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1509
1510
  static int snd_ctl_elem_add_user(struct snd_ctl_file *file,
  				 struct snd_ctl_elem_info __user *_info, int replace)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1511
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1512
  	struct snd_ctl_elem_info info;
cab2ed747   Takashi Sakamoto   ALSA: ctl: fill i...
1513
  	int err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1514
1515
  	if (copy_from_user(&info, _info, sizeof(info)))
  		return -EFAULT;
cab2ed747   Takashi Sakamoto   ALSA: ctl: fill i...
1516
1517
1518
1519
1520
1521
1522
1523
1524
  	err = snd_ctl_elem_add(file, &info, replace);
  	if (err < 0)
  		return err;
  	if (copy_to_user(_info, &info, sizeof(info))) {
  		snd_ctl_remove_user_ctl(file, &info.id);
  		return -EFAULT;
  	}
  
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1525
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1526
1527
  static int snd_ctl_elem_remove(struct snd_ctl_file *file,
  			       struct snd_ctl_elem_id __user *_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1528
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1529
  	struct snd_ctl_elem_id id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1530
1531
1532
  
  	if (copy_from_user(&id, _id, sizeof(id)))
  		return -EFAULT;
f217ac59b   Clemens Ladisch   sound: snd_ctl_re...
1533
  	return snd_ctl_remove_user_ctl(file, &id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1534
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1535
  static int snd_ctl_subscribe_events(struct snd_ctl_file *file, int __user *ptr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
  {
  	int subscribe;
  	if (get_user(subscribe, ptr))
  		return -EFAULT;
  	if (subscribe < 0) {
  		subscribe = file->subscribed;
  		if (put_user(subscribe, ptr))
  			return -EFAULT;
  		return 0;
  	}
  	if (subscribe) {
  		file->subscribed = 1;
  		return 0;
  	} else if (file->subscribed) {
  		snd_ctl_empty_read_queue(file);
  		file->subscribed = 0;
  	}
  	return 0;
  }
450296f30   Takashi Sakamoto   ALSA: control: co...
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
  static int call_tlv_handler(struct snd_ctl_file *file, int op_flag,
  			    struct snd_kcontrol *kctl,
  			    struct snd_ctl_elem_id *id,
  			    unsigned int __user *buf, unsigned int size)
  {
  	static const struct {
  		int op;
  		int perm;
  	} pairs[] = {
  		{SNDRV_CTL_TLV_OP_READ,  SNDRV_CTL_ELEM_ACCESS_TLV_READ},
  		{SNDRV_CTL_TLV_OP_WRITE, SNDRV_CTL_ELEM_ACCESS_TLV_WRITE},
  		{SNDRV_CTL_TLV_OP_CMD,   SNDRV_CTL_ELEM_ACCESS_TLV_COMMAND},
  	};
  	struct snd_kcontrol_volatile *vd = &kctl->vd[snd_ctl_get_ioff(kctl, id)];
  	int i;
450296f30   Takashi Sakamoto   ALSA: control: co...
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
  
  	/* Check support of the request for this element. */
  	for (i = 0; i < ARRAY_SIZE(pairs); ++i) {
  		if (op_flag == pairs[i].op && (vd->access & pairs[i].perm))
  			break;
  	}
  	if (i == ARRAY_SIZE(pairs))
  		return -ENXIO;
  
  	if (kctl->tlv.c == NULL)
  		return -ENXIO;
d61fe22c2   Takashi Sakamoto   ALSA: ctl: allow ...
1581
1582
1583
  	/* Write and command operations are not allowed for locked element. */
  	if (op_flag != SNDRV_CTL_TLV_OP_READ &&
  	    vd->owner != NULL && vd->owner != file)
450296f30   Takashi Sakamoto   ALSA: control: co...
1584
  		return -EPERM;
fb8027ebf   Takashi Sakamoto   ALSA: control: de...
1585
  	return kctl->tlv.c(kctl, op_flag, size, buf);
450296f30   Takashi Sakamoto   ALSA: control: co...
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
  }
  
  static int read_tlv_buf(struct snd_kcontrol *kctl, struct snd_ctl_elem_id *id,
  			unsigned int __user *buf, unsigned int size)
  {
  	struct snd_kcontrol_volatile *vd = &kctl->vd[snd_ctl_get_ioff(kctl, id)];
  	unsigned int len;
  
  	if (!(vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_READ))
  		return -ENXIO;
  
  	if (kctl->tlv.p == NULL)
  		return -ENXIO;
  
  	len = sizeof(unsigned int) * 2 + kctl->tlv.p[1];
  	if (size < len)
  		return -ENOMEM;
  
  	if (copy_to_user(buf, kctl->tlv.p, len))
  		return -EFAULT;
  
  	return 0;
  }
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1609
  static int snd_ctl_tlv_ioctl(struct snd_ctl_file *file,
450296f30   Takashi Sakamoto   ALSA: control: co...
1610
  			     struct snd_ctl_tlv __user *buf,
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1611
                               int op_flag)
42750b04c   Jaroslav Kysela   [ALSA] Control AP...
1612
  {
450296f30   Takashi Sakamoto   ALSA: control: co...
1613
  	struct snd_ctl_tlv header;
1ba7862f1   Takashi Iwai   ALSA: control: Fi...
1614
  	unsigned int __user *container;
450296f30   Takashi Sakamoto   ALSA: control: co...
1615
  	unsigned int container_size;
42750b04c   Jaroslav Kysela   [ALSA] Control AP...
1616
  	struct snd_kcontrol *kctl;
450296f30   Takashi Sakamoto   ALSA: control: co...
1617
  	struct snd_ctl_elem_id id;
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1618
  	struct snd_kcontrol_volatile *vd;
42750b04c   Jaroslav Kysela   [ALSA] Control AP...
1619

450296f30   Takashi Sakamoto   ALSA: control: co...
1620
  	if (copy_from_user(&header, buf, sizeof(header)))
42750b04c   Jaroslav Kysela   [ALSA] Control AP...
1621
  		return -EFAULT;
450296f30   Takashi Sakamoto   ALSA: control: co...
1622
1623
1624
  
  	/* In design of control core, numerical ID starts at 1. */
  	if (header.numid == 0)
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1625
  		return -EINVAL;
450296f30   Takashi Sakamoto   ALSA: control: co...
1626
1627
1628
  
  	/* At least, container should include type and length fields.  */
  	if (header.length < sizeof(unsigned int) * 2)
c0bcdbdff   Takashi Iwai   ALSA: control: Av...
1629
  		return -EINVAL;
450296f30   Takashi Sakamoto   ALSA: control: co...
1630
1631
  	container_size = header.length;
  	container = buf->tlv;
4c8099e9c   Takashi Sakamoto   ALSA: control: us...
1632

450296f30   Takashi Sakamoto   ALSA: control: co...
1633
  	kctl = snd_ctl_find_numid(file->card, header.numid);
4c8099e9c   Takashi Sakamoto   ALSA: control: us...
1634
1635
  	if (kctl == NULL)
  		return -ENOENT;
450296f30   Takashi Sakamoto   ALSA: control: co...
1636
1637
1638
1639
  	/* Calculate index of the element in this set. */
  	id = kctl->id;
  	snd_ctl_build_ioff(&id, kctl, header.numid - id.numid);
  	vd = &kctl->vd[snd_ctl_get_ioff(kctl, &id)];
4c8099e9c   Takashi Sakamoto   ALSA: control: us...
1640

8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1641
  	if (vd->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
450296f30   Takashi Sakamoto   ALSA: control: co...
1642
1643
  		return call_tlv_handler(file, op_flag, kctl, &id, container,
  					container_size);
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1644
  	} else {
450296f30   Takashi Sakamoto   ALSA: control: co...
1645
1646
1647
1648
  		if (op_flag == SNDRV_CTL_TLV_OP_READ) {
  			return read_tlv_buf(kctl, &id, container,
  					    container_size);
  		}
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1649
  	}
4c8099e9c   Takashi Sakamoto   ALSA: control: us...
1650

450296f30   Takashi Sakamoto   ALSA: control: co...
1651
1652
  	/* Not supported. */
  	return -ENXIO;
42750b04c   Jaroslav Kysela   [ALSA] Control AP...
1653
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1654
1655
  static long snd_ctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1656
1657
  	struct snd_ctl_file *ctl;
  	struct snd_card *card;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1658
  	struct snd_kctl_ioctl *p;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1659
1660
1661
1662
1663
1664
  	void __user *argp = (void __user *)arg;
  	int __user *ip = argp;
  	int err;
  
  	ctl = file->private_data;
  	card = ctl->card;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
1665
1666
  	if (snd_BUG_ON(!card))
  		return -ENXIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1667
1668
1669
1670
1671
1672
  	switch (cmd) {
  	case SNDRV_CTL_IOCTL_PVERSION:
  		return put_user(SNDRV_CTL_VERSION, ip) ? -EFAULT : 0;
  	case SNDRV_CTL_IOCTL_CARD_INFO:
  		return snd_ctl_card_info(card, ctl, cmd, argp);
  	case SNDRV_CTL_IOCTL_ELEM_LIST:
18d122c02   Arnd Bergmann   ALSA: compat_ioct...
1673
  		return snd_ctl_elem_list_user(card, argp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1674
1675
1676
  	case SNDRV_CTL_IOCTL_ELEM_INFO:
  		return snd_ctl_elem_info_user(ctl, argp);
  	case SNDRV_CTL_IOCTL_ELEM_READ:
42750b04c   Jaroslav Kysela   [ALSA] Control AP...
1677
  		return snd_ctl_elem_read_user(card, argp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
  	case SNDRV_CTL_IOCTL_ELEM_WRITE:
  		return snd_ctl_elem_write_user(ctl, argp);
  	case SNDRV_CTL_IOCTL_ELEM_LOCK:
  		return snd_ctl_elem_lock(ctl, argp);
  	case SNDRV_CTL_IOCTL_ELEM_UNLOCK:
  		return snd_ctl_elem_unlock(ctl, argp);
  	case SNDRV_CTL_IOCTL_ELEM_ADD:
  		return snd_ctl_elem_add_user(ctl, argp, 0);
  	case SNDRV_CTL_IOCTL_ELEM_REPLACE:
  		return snd_ctl_elem_add_user(ctl, argp, 1);
  	case SNDRV_CTL_IOCTL_ELEM_REMOVE:
  		return snd_ctl_elem_remove(ctl, argp);
  	case SNDRV_CTL_IOCTL_SUBSCRIBE_EVENTS:
  		return snd_ctl_subscribe_events(ctl, ip);
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1692
  	case SNDRV_CTL_IOCTL_TLV_READ:
4c8099e9c   Takashi Sakamoto   ALSA: control: us...
1693
1694
1695
1696
  		down_read(&ctl->card->controls_rwsem);
  		err = snd_ctl_tlv_ioctl(ctl, argp, SNDRV_CTL_TLV_OP_READ);
  		up_read(&ctl->card->controls_rwsem);
  		return err;
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1697
  	case SNDRV_CTL_IOCTL_TLV_WRITE:
4c8099e9c   Takashi Sakamoto   ALSA: control: us...
1698
1699
1700
1701
  		down_write(&ctl->card->controls_rwsem);
  		err = snd_ctl_tlv_ioctl(ctl, argp, SNDRV_CTL_TLV_OP_WRITE);
  		up_write(&ctl->card->controls_rwsem);
  		return err;
8aa9b586e   Jaroslav Kysela   [ALSA] Control AP...
1702
  	case SNDRV_CTL_IOCTL_TLV_COMMAND:
4c8099e9c   Takashi Sakamoto   ALSA: control: us...
1703
1704
1705
1706
  		down_write(&ctl->card->controls_rwsem);
  		err = snd_ctl_tlv_ioctl(ctl, argp, SNDRV_CTL_TLV_OP_CMD);
  		up_write(&ctl->card->controls_rwsem);
  		return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1707
  	case SNDRV_CTL_IOCTL_POWER:
a381a7a66   Takashi Iwai   [ALSA] Decentrali...
1708
  		return -ENOPROTOOPT;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1709
1710
1711
1712
1713
1714
1715
1716
  	case SNDRV_CTL_IOCTL_POWER_STATE:
  #ifdef CONFIG_PM
  		return put_user(card->power_state, ip) ? -EFAULT : 0;
  #else
  		return put_user(SNDRV_CTL_POWER_D0, ip) ? -EFAULT : 0;
  #endif
  	}
  	down_read(&snd_ioctl_rwsem);
9244b2c30   Johannes Berg   [ALSA] alsa core:...
1717
  	list_for_each_entry(p, &snd_control_ioctls, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1718
1719
1720
1721
1722
1723
1724
  		err = p->fioctl(card, ctl, cmd, arg);
  		if (err != -ENOIOCTLCMD) {
  			up_read(&snd_ioctl_rwsem);
  			return err;
  		}
  	}
  	up_read(&snd_ioctl_rwsem);
bb0094574   Takashi Iwai   ALSA: control: Us...
1725
1726
  	dev_dbg(card->dev, "unknown ioctl = 0x%x
  ", cmd);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1727
1728
  	return -ENOTTY;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1729
1730
  static ssize_t snd_ctl_read(struct file *file, char __user *buffer,
  			    size_t count, loff_t * offset)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1731
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1732
  	struct snd_ctl_file *ctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1733
1734
1735
1736
  	int err = 0;
  	ssize_t result = 0;
  
  	ctl = file->private_data;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
1737
1738
  	if (snd_BUG_ON(!ctl || !ctl->card))
  		return -ENXIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1739
1740
  	if (!ctl->subscribed)
  		return -EBADFD;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1741
  	if (count < sizeof(struct snd_ctl_event))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1742
1743
  		return -EINVAL;
  	spin_lock_irq(&ctl->read_lock);
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1744
1745
1746
  	while (count >= sizeof(struct snd_ctl_event)) {
  		struct snd_ctl_event ev;
  		struct snd_kctl_event *kev;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1747
  		while (list_empty(&ctl->events)) {
ac6424b98   Ingo Molnar   sched/wait: Renam...
1748
  			wait_queue_entry_t wait;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
  			if ((file->f_flags & O_NONBLOCK) != 0 || result > 0) {
  				err = -EAGAIN;
  				goto __end_lock;
  			}
  			init_waitqueue_entry(&wait, current);
  			add_wait_queue(&ctl->change_sleep, &wait);
  			set_current_state(TASK_INTERRUPTIBLE);
  			spin_unlock_irq(&ctl->read_lock);
  			schedule();
  			remove_wait_queue(&ctl->change_sleep, &wait);
0914f7961   Takashi Iwai   ALSA: Avoid endle...
1759
1760
  			if (ctl->card->shutdown)
  				return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1761
  			if (signal_pending(current))
0e5d720ce   Adrian Bunk   [ALSA] sound/core...
1762
  				return -ERESTARTSYS;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1763
1764
1765
1766
1767
1768
1769
1770
1771
  			spin_lock_irq(&ctl->read_lock);
  		}
  		kev = snd_kctl_event(ctl->events.next);
  		ev.type = SNDRV_CTL_EVENT_ELEM;
  		ev.data.elem.mask = kev->mask;
  		ev.data.elem.id = kev->id;
  		list_del(&kev->list);
  		spin_unlock_irq(&ctl->read_lock);
  		kfree(kev);
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1772
  		if (copy_to_user(buffer, &ev, sizeof(struct snd_ctl_event))) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1773
1774
1775
1776
  			err = -EFAULT;
  			goto __end;
  		}
  		spin_lock_irq(&ctl->read_lock);
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1777
1778
1779
  		buffer += sizeof(struct snd_ctl_event);
  		count -= sizeof(struct snd_ctl_event);
  		result += sizeof(struct snd_ctl_event);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1780
1781
1782
1783
1784
1785
  	}
        __end_lock:
  	spin_unlock_irq(&ctl->read_lock);
        __end:
        	return result > 0 ? result : err;
  }
680ef72ab   Al Viro   sound: annotate -...
1786
  static __poll_t snd_ctl_poll(struct file *file, poll_table * wait)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1787
  {
680ef72ab   Al Viro   sound: annotate -...
1788
  	__poll_t mask;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1789
  	struct snd_ctl_file *ctl;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1790
1791
1792
1793
1794
1795
1796
1797
  
  	ctl = file->private_data;
  	if (!ctl->subscribed)
  		return 0;
  	poll_wait(file, &ctl->change_sleep, wait);
  
  	mask = 0;
  	if (!list_empty(&ctl->events))
a9a08845e   Linus Torvalds   vfs: do bulk POLL...
1798
  		mask |= EPOLLIN | EPOLLRDNORM;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
  
  	return mask;
  }
  
  /*
   * register the device-specific control-ioctls.
   * called from each device manager like pcm.c, hwdep.c, etc.
   */
  static int _snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn, struct list_head *lists)
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1809
  	struct snd_kctl_ioctl *pn;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1810

82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1811
  	pn = kzalloc(sizeof(struct snd_kctl_ioctl), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1812
1813
1814
1815
1816
1817
1818
1819
  	if (pn == NULL)
  		return -ENOMEM;
  	pn->fioctl = fcn;
  	down_write(&snd_ioctl_rwsem);
  	list_add_tail(&pn->list, lists);
  	up_write(&snd_ioctl_rwsem);
  	return 0;
  }
12cddbd86   Takashi Iwai   ALSA: control: Ad...
1820
1821
1822
1823
1824
1825
  /**
   * snd_ctl_register_ioctl - register the device-specific control-ioctls
   * @fcn: ioctl callback function
   *
   * called from each device manager like pcm.c, hwdep.c, etc.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1826
1827
1828
1829
  int snd_ctl_register_ioctl(snd_kctl_ioctl_func_t fcn)
  {
  	return _snd_ctl_register_ioctl(fcn, &snd_control_ioctls);
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
1830
  EXPORT_SYMBOL(snd_ctl_register_ioctl);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1831
  #ifdef CONFIG_COMPAT
12cddbd86   Takashi Iwai   ALSA: control: Ad...
1832
1833
1834
1835
1836
  /**
   * snd_ctl_register_ioctl_compat - register the device-specific 32bit compat
   * control-ioctls
   * @fcn: ioctl callback function
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1837
1838
1839
1840
  int snd_ctl_register_ioctl_compat(snd_kctl_ioctl_func_t fcn)
  {
  	return _snd_ctl_register_ioctl(fcn, &snd_control_compat_ioctls);
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
1841
  EXPORT_SYMBOL(snd_ctl_register_ioctl_compat);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1842
1843
1844
1845
1846
  #endif
  
  /*
   * de-register the device-specific control-ioctls.
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1847
1848
  static int _snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn,
  				     struct list_head *lists)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1849
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1850
  	struct snd_kctl_ioctl *p;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1851

7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
1852
1853
  	if (snd_BUG_ON(!fcn))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1854
  	down_write(&snd_ioctl_rwsem);
9244b2c30   Johannes Berg   [ALSA] alsa core:...
1855
  	list_for_each_entry(p, lists, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
  		if (p->fioctl == fcn) {
  			list_del(&p->list);
  			up_write(&snd_ioctl_rwsem);
  			kfree(p);
  			return 0;
  		}
  	}
  	up_write(&snd_ioctl_rwsem);
  	snd_BUG();
  	return -EINVAL;
  }
12cddbd86   Takashi Iwai   ALSA: control: Ad...
1867
1868
1869
1870
  /**
   * snd_ctl_unregister_ioctl - de-register the device-specific control-ioctls
   * @fcn: ioctl callback function to unregister
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1871
1872
1873
1874
  int snd_ctl_unregister_ioctl(snd_kctl_ioctl_func_t fcn)
  {
  	return _snd_ctl_unregister_ioctl(fcn, &snd_control_ioctls);
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
1875
  EXPORT_SYMBOL(snd_ctl_unregister_ioctl);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1876
  #ifdef CONFIG_COMPAT
12cddbd86   Takashi Iwai   ALSA: control: Ad...
1877
  /**
f7b6603c6   Mauro Carvalho Chehab   ALSA: fix kernel-...
1878
1879
   * snd_ctl_unregister_ioctl_compat - de-register the device-specific compat
   * 32bit control-ioctls
12cddbd86   Takashi Iwai   ALSA: control: Ad...
1880
1881
   * @fcn: ioctl callback function to unregister
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1882
1883
1884
1885
  int snd_ctl_unregister_ioctl_compat(snd_kctl_ioctl_func_t fcn)
  {
  	return _snd_ctl_unregister_ioctl(fcn, &snd_control_compat_ioctls);
  }
c0d3fb39e   Takashi Iwai   [ALSA] Clean up E...
1886
  EXPORT_SYMBOL(snd_ctl_unregister_ioctl_compat);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1887
1888
1889
1890
  #endif
  
  static int snd_ctl_fasync(int fd, struct file * file, int on)
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1891
  	struct snd_ctl_file *ctl;
60aa49243   Jonathan Corbet   Rationalize fasyn...
1892

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1893
  	ctl = file->private_data;
60aa49243   Jonathan Corbet   Rationalize fasyn...
1894
  	return fasync_helper(fd, file, on, &ctl->fasync);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1895
  }
23c18d4bf   Takashi Iwai   ALSA: control: Pr...
1896
1897
1898
1899
1900
1901
1902
  /* return the preferred subdevice number if already assigned;
   * otherwise return -1
   */
  int snd_ctl_get_preferred_subdevice(struct snd_card *card, int type)
  {
  	struct snd_ctl_file *kctl;
  	int subdevice = -1;
6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
1903
  	unsigned long flags;
23c18d4bf   Takashi Iwai   ALSA: control: Pr...
1904

6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
1905
  	read_lock_irqsave(&card->ctl_files_rwlock, flags);
23c18d4bf   Takashi Iwai   ALSA: control: Pr...
1906
1907
1908
1909
1910
1911
1912
  	list_for_each_entry(kctl, &card->ctl_files, list) {
  		if (kctl->pid == task_pid(current)) {
  			subdevice = kctl->preferred_subdevice[type];
  			if (subdevice != -1)
  				break;
  		}
  	}
6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
1913
  	read_unlock_irqrestore(&card->ctl_files_rwlock, flags);
23c18d4bf   Takashi Iwai   ALSA: control: Pr...
1914
1915
1916
  	return subdevice;
  }
  EXPORT_SYMBOL_GPL(snd_ctl_get_preferred_subdevice);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
  /*
   * ioctl32 compat
   */
  #ifdef CONFIG_COMPAT
  #include "control_compat.c"
  #else
  #define snd_ctl_ioctl_compat	NULL
  #endif
  
  /*
   *  INIT PART
   */
9c2e08c59   Arjan van de Ven   [PATCH] mark stru...
1929
  static const struct file_operations snd_ctl_f_ops =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1930
1931
1932
1933
1934
  {
  	.owner =	THIS_MODULE,
  	.read =		snd_ctl_read,
  	.open =		snd_ctl_open,
  	.release =	snd_ctl_release,
02f4865fa   Takashi Iwai   ALSA: core - Defi...
1935
  	.llseek =	no_llseek,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1936
1937
1938
1939
1940
  	.poll =		snd_ctl_poll,
  	.unlocked_ioctl =	snd_ctl_ioctl,
  	.compat_ioctl =	snd_ctl_ioctl_compat,
  	.fasync =	snd_ctl_fasync,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1941
1942
1943
  /*
   * registration of the control device
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1944
  static int snd_ctl_dev_register(struct snd_device *device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1945
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1946
  	struct snd_card *card = device->device_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1947

40a4b2638   Takashi Iwai   ALSA: Simplify sn...
1948
1949
  	return snd_register_device(SNDRV_DEVICE_TYPE_CONTROL, card, -1,
  				   &snd_ctl_f_ops, card, &card->ctl_dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1950
1951
1952
1953
1954
  }
  
  /*
   * disconnection of the control device
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1955
  static int snd_ctl_dev_disconnect(struct snd_device *device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1956
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1957
  	struct snd_card *card = device->device_data;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1958
  	struct snd_ctl_file *ctl;
6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
1959
  	unsigned long flags;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1960

6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
1961
  	read_lock_irqsave(&card->ctl_files_rwlock, flags);
9244b2c30   Johannes Berg   [ALSA] alsa core:...
1962
  	list_for_each_entry(ctl, &card->ctl_files, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1963
1964
1965
  		wake_up(&ctl->change_sleep);
  		kill_fasync(&ctl->fasync, SIGIO, POLL_ERR);
  	}
6564d0ad6   Takashi Iwai   ALSA: ctl: Workar...
1966
  	read_unlock_irqrestore(&card->ctl_files_rwlock, flags);
c461482c8   Takashi Iwai   [ALSA] Unregister...
1967

40a4b2638   Takashi Iwai   ALSA: Simplify sn...
1968
  	return snd_unregister_device(&card->ctl_dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1969
1970
1971
1972
1973
  }
  
  /*
   * free all controls
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1974
  static int snd_ctl_dev_free(struct snd_device *device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1975
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1976
1977
  	struct snd_card *card = device->device_data;
  	struct snd_kcontrol *control;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1978
1979
1980
1981
1982
1983
1984
  
  	down_write(&card->controls_rwsem);
  	while (!list_empty(&card->controls)) {
  		control = snd_kcontrol(card->controls.next);
  		snd_ctl_remove(card, control);
  	}
  	up_write(&card->controls_rwsem);
0fcd9f4b3   Takashi Iwai   ALSA: control: Em...
1985
  	put_device(&card->ctl_dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1986
1987
1988
1989
  	return 0;
  }
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1990
1991
1992
   * create control core:
   * called from init.c
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
1993
  int snd_ctl_create(struct snd_card *card)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1994
  {
f15ee210c   Takashi Iwai   ALSA: core: Const...
1995
  	static const struct snd_device_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1996
1997
1998
  		.dev_free = snd_ctl_dev_free,
  		.dev_register =	snd_ctl_dev_register,
  		.dev_disconnect = snd_ctl_dev_disconnect,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1999
  	};
0fcd9f4b3   Takashi Iwai   ALSA: control: Em...
2000
  	int err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2001

7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
2002
2003
  	if (snd_BUG_ON(!card))
  		return -ENXIO;
0fcd9f4b3   Takashi Iwai   ALSA: control: Em...
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
  	if (snd_BUG_ON(card->number < 0 || card->number >= SNDRV_CARDS))
  		return -ENXIO;
  
  	snd_device_initialize(&card->ctl_dev, card);
  	dev_set_name(&card->ctl_dev, "controlC%d", card->number);
  
  	err = snd_device_new(card, SNDRV_DEV_CONTROL, card, &ops);
  	if (err < 0)
  		put_device(&card->ctl_dev);
  	return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2014
  }
b9ed4f2b6   Takashi Iwai   [ALSA] Add helper...
2015
2016
  
  /*
9600732b6   Clemens Ladisch   ALSA: core, oxyge...
2017
   * Frequently used control callbacks/helpers
b9ed4f2b6   Takashi Iwai   [ALSA] Add helper...
2018
   */
12cddbd86   Takashi Iwai   ALSA: control: Ad...
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
  
  /**
   * snd_ctl_boolean_mono_info - Helper function for a standard boolean info
   * callback with a mono channel
   * @kcontrol: the kcontrol instance
   * @uinfo: info to store
   *
   * This is a function that can be used as info callback for a standard
   * boolean control with a single mono channel.
   */
b9ed4f2b6   Takashi Iwai   [ALSA] Add helper...
2029
2030
2031
2032
2033
2034
2035
2036
2037
  int snd_ctl_boolean_mono_info(struct snd_kcontrol *kcontrol,
  			      struct snd_ctl_elem_info *uinfo)
  {
  	uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
  	uinfo->count = 1;
  	uinfo->value.integer.min = 0;
  	uinfo->value.integer.max = 1;
  	return 0;
  }
b9ed4f2b6   Takashi Iwai   [ALSA] Add helper...
2038
  EXPORT_SYMBOL(snd_ctl_boolean_mono_info);
12cddbd86   Takashi Iwai   ALSA: control: Ad...
2039
2040
2041
2042
2043
2044
2045
2046
2047
  /**
   * snd_ctl_boolean_stereo_info - Helper function for a standard boolean info
   * callback with stereo two channels
   * @kcontrol: the kcontrol instance
   * @uinfo: info to store
   *
   * This is a function that can be used as info callback for a standard
   * boolean control with stereo two channels.
   */
b9ed4f2b6   Takashi Iwai   [ALSA] Add helper...
2048
2049
2050
2051
2052
2053
2054
2055
2056
  int snd_ctl_boolean_stereo_info(struct snd_kcontrol *kcontrol,
  				struct snd_ctl_elem_info *uinfo)
  {
  	uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
  	uinfo->count = 2;
  	uinfo->value.integer.min = 0;
  	uinfo->value.integer.max = 1;
  	return 0;
  }
b9ed4f2b6   Takashi Iwai   [ALSA] Add helper...
2057
  EXPORT_SYMBOL(snd_ctl_boolean_stereo_info);
9600732b6   Clemens Ladisch   ALSA: core, oxyge...
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
  
  /**
   * snd_ctl_enum_info - fills the info structure for an enumerated control
   * @info: the structure to be filled
   * @channels: the number of the control's channels; often one
   * @items: the number of control values; also the size of @names
   * @names: an array containing the names of all control values
   *
   * Sets all required fields in @info to their appropriate values.
   * If the control's accessibility is not the default (readable and writable),
   * the caller has to fill @info->access.
eb7c06e8e   Yacine Belkadi   ALSA: add/change ...
2069
2070
   *
   * Return: Zero.
9600732b6   Clemens Ladisch   ALSA: core, oxyge...
2071
2072
2073
2074
2075
2076
2077
   */
  int snd_ctl_enum_info(struct snd_ctl_elem_info *info, unsigned int channels,
  		      unsigned int items, const char *const names[])
  {
  	info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  	info->count = channels;
  	info->value.enumerated.items = items;
a7e6fb991   Takashi Iwai   ALSA: control: Al...
2078
2079
  	if (!items)
  		return 0;
9600732b6   Clemens Ladisch   ALSA: core, oxyge...
2080
2081
  	if (info->value.enumerated.item >= items)
  		info->value.enumerated.item = items - 1;
df803e138   Takashi Iwai   ALSA: control: Wa...
2082
2083
2084
2085
  	WARN(strlen(names[info->value.enumerated.item]) >= sizeof(info->value.enumerated.name),
  	     "ALSA: too long item name '%s'
  ",
  	     names[info->value.enumerated.item]);
9600732b6   Clemens Ladisch   ALSA: core, oxyge...
2086
2087
2088
2089
2090
2091
  	strlcpy(info->value.enumerated.name,
  		names[info->value.enumerated.item],
  		sizeof(info->value.enumerated.name));
  	return 0;
  }
  EXPORT_SYMBOL(snd_ctl_enum_info);