Blame view

sound/core/control_compat.c 11.5 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  /*
   * compat ioctls for control API
   *
   *   Copyright (c) by Takashi Iwai <tiwai@suse.de>
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation; either version 2 of the License, or
   *   (at your option) any later version.
   *
   *   This program is distributed in the hope that it will be useful,
   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   *   GNU General Public License for more details.
   *
   *   You should have received a copy of the GNU General Public License
   *   along with this program; if not, write to the Free Software
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   */
  
  /* this file included from control.c */
  
  #include <linux/compat.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
24
  #include <linux/slab.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25

82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
26
  struct snd_ctl_elem_list32 {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
29
30
31
32
33
  	u32 offset;
  	u32 space;
  	u32 used;
  	u32 count;
  	u32 pids;
  	unsigned char reserved[50];
  } /* don't set packed attribute here */;
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
34
35
  static int snd_ctl_elem_list_compat(struct snd_card *card,
  				    struct snd_ctl_elem_list32 __user *data32)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
37
  	struct snd_ctl_elem_list __user *data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  	compat_caddr_t ptr;
  	int err;
  
  	data = compat_alloc_user_space(sizeof(*data));
  
  	/* offset, space, used, count */
  	if (copy_in_user(data, data32, 4 * sizeof(u32)))
  		return -EFAULT;
  	/* pids */
  	if (get_user(ptr, &data32->pids) ||
  	    put_user(compat_ptr(ptr), &data->pids))
  		return -EFAULT;
  	err = snd_ctl_elem_list(card, data);
  	if (err < 0)
  		return err;
  	/* copy the result */
  	if (copy_in_user(data32, data, 4 * sizeof(u32)))
  		return -EFAULT;
  	return 0;
  }
  
  /*
   * control element info
   * it uses union, so the things are not easy..
   */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
63
64
  struct snd_ctl_elem_info32 {
  	struct snd_ctl_elem_id id; // the size of struct is same
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  	s32 type;
  	u32 access;
  	u32 count;
  	s32 owner;
  	union {
  		struct {
  			s32 min;
  			s32 max;
  			s32 step;
  		} integer;
  		struct {
  			u64 min;
  			u64 max;
  			u64 step;
  		} integer64;
  		struct {
  			u32 items;
  			u32 item;
  			char name[64];
8d448162b   Clemens Ladisch   ALSA: control: ad...
84
85
  			u64 names_ptr;
  			u32 names_length;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
86
87
88
89
90
  		} enumerated;
  		unsigned char reserved[128];
  	} value;
  	unsigned char reserved[64];
  } __attribute__((packed));
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
91
92
  static int snd_ctl_elem_info_compat(struct snd_ctl_file *ctl,
  				    struct snd_ctl_elem_info32 __user *data32)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
94
  	struct snd_ctl_elem_info *data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
  	int err;
ca2c09665   Takashi Iwai   [ALSA] Replace wi...
96
  	data = kzalloc(sizeof(*data), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
97
98
99
100
101
102
103
104
105
106
107
108
  	if (! data)
  		return -ENOMEM;
  
  	err = -EFAULT;
  	/* copy id */
  	if (copy_from_user(&data->id, &data32->id, sizeof(data->id)))
  		goto error;
  	/* we need to copy the item index.
  	 * hope this doesn't break anything..
  	 */
  	if (get_user(data->value.enumerated.item, &data32->value.enumerated.item))
  		goto error;
646494007   Giuliano Pochini   [ALSA] make contr...
109
110
  
  	snd_power_lock(ctl->card);
cbac4b0cb   Takashi Iwai   [ALSA] Cleanup un...
111
  	err = snd_power_wait(ctl->card, SNDRV_CTL_POWER_D0);
646494007   Giuliano Pochini   [ALSA] make contr...
112
113
114
  	if (err >= 0)
  		err = snd_ctl_elem_info(ctl, data);
  	snd_power_unlock(ctl->card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
  	if (err < 0)
  		goto error;
  	/* restore info to 32bit */
  	err = -EFAULT;
  	/* id, type, access, count */
  	if (copy_to_user(&data32->id, &data->id, sizeof(data->id)) ||
  	    copy_to_user(&data32->type, &data->type, 3 * sizeof(u32)))
  		goto error;
  	if (put_user(data->owner, &data32->owner))
  		goto error;
  	switch (data->type) {
  	case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
  	case SNDRV_CTL_ELEM_TYPE_INTEGER:
  		if (put_user(data->value.integer.min, &data32->value.integer.min) ||
  		    put_user(data->value.integer.max, &data32->value.integer.max) ||
  		    put_user(data->value.integer.step, &data32->value.integer.step))
  			goto error;
  		break;
  	case SNDRV_CTL_ELEM_TYPE_INTEGER64:
  		if (copy_to_user(&data32->value.integer64,
  				 &data->value.integer64,
  				 sizeof(data->value.integer64)))
  			goto error;
  		break;
  	case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
  		if (copy_to_user(&data32->value.enumerated,
  				 &data->value.enumerated,
  				 sizeof(data->value.enumerated)))
  			goto error;
  		break;
  	default:
  		break;
  	}
  	err = 0;
   error:
  	kfree(data);
  	return err;
  }
  
  /* read / write */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
155
156
  struct snd_ctl_elem_value32 {
  	struct snd_ctl_elem_id id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
157
158
159
160
161
162
163
164
165
166
167
168
169
  	unsigned int indirect;	/* bit-field causes misalignment */
          union {
  		s32 integer[128];
  		unsigned char data[512];
  #ifndef CONFIG_X86_64
  		s64 integer64[64];
  #endif
          } value;
          unsigned char reserved[128];
  };
  
  
  /* get the value type and count of the control */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
170
171
  static int get_ctl_type(struct snd_card *card, struct snd_ctl_elem_id *id,
  			int *countp)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
172
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
173
  	struct snd_kcontrol *kctl;
aa657ca92   Juergen Kreileder   [PATCH] Fix snd-u...
174
  	struct snd_ctl_elem_info *info;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
175
176
177
178
179
180
181
182
  	int err;
  
  	down_read(&card->controls_rwsem);
  	kctl = snd_ctl_find_id(card, id);
  	if (! kctl) {
  		up_read(&card->controls_rwsem);
  		return -ENXIO;
  	}
aa657ca92   Juergen Kreileder   [PATCH] Fix snd-u...
183
184
185
186
187
188
189
  	info = kzalloc(sizeof(*info), GFP_KERNEL);
  	if (info == NULL) {
  		up_read(&card->controls_rwsem);
  		return -ENOMEM;
  	}
  	info->id = *id;
  	err = kctl->info(kctl, info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
190
191
  	up_read(&card->controls_rwsem);
  	if (err >= 0) {
aa657ca92   Juergen Kreileder   [PATCH] Fix snd-u...
192
193
  		err = info->type;
  		*countp = info->count;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
194
  	}
aa657ca92   Juergen Kreileder   [PATCH] Fix snd-u...
195
  	kfree(info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
196
197
198
199
200
201
202
203
204
205
206
207
208
  	return err;
  }
  
  static int get_elem_size(int type, int count)
  {
  	switch (type) {
  	case SNDRV_CTL_ELEM_TYPE_INTEGER64:
  		return sizeof(s64) * count;
  	case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
  		return sizeof(int) * count;
  	case SNDRV_CTL_ELEM_TYPE_BYTES:
  		return 512;
  	case SNDRV_CTL_ELEM_TYPE_IEC958:
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
209
  		return sizeof(struct snd_aes_iec958);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
210
211
212
213
  	default:
  		return -1;
  	}
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
214
215
216
  static int copy_ctl_value_from_user(struct snd_card *card,
  				    struct snd_ctl_elem_value *data,
  				    struct snd_ctl_elem_value32 __user *data32,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
217
218
  				    int *typep, int *countp)
  {
5050b0921   Andrew Morton   [ALSA] copy_ctl_v...
219
220
  	int i, type, size;
  	int uninitialized_var(count);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
  	unsigned int indirect;
  
  	if (copy_from_user(&data->id, &data32->id, sizeof(data->id)))
  		return -EFAULT;
  	if (get_user(indirect, &data32->indirect))
  		return -EFAULT;
  	if (indirect)
  		return -EINVAL;
  	type = get_ctl_type(card, &data->id, &count);
  	if (type < 0)
  		return type;
  
  	if (type == SNDRV_CTL_ELEM_TYPE_BOOLEAN ||
  	    type == SNDRV_CTL_ELEM_TYPE_INTEGER) {
  		for (i = 0; i < count; i++) {
  			int val;
  			if (get_user(val, &data32->value.integer[i]))
  				return -EFAULT;
  			data->value.integer.value[i] = val;
  		}
  	} else {
  		size = get_elem_size(type, count);
  		if (size < 0) {
  			printk(KERN_ERR "snd_ioctl32_ctl_elem_value: unknown type %d
  ", type);
  			return -EINVAL;
  		}
  		if (copy_from_user(data->value.bytes.data,
  				   data32->value.data, size))
  			return -EFAULT;
  	}
  
  	*typep = type;
  	*countp = count;
  	return 0;
  }
  
  /* restore the value to 32bit */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
259
260
  static int copy_ctl_value_to_user(struct snd_ctl_elem_value32 __user *data32,
  				  struct snd_ctl_elem_value *data,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
  				  int type, int count)
  {
  	int i, size;
  
  	if (type == SNDRV_CTL_ELEM_TYPE_BOOLEAN ||
  	    type == SNDRV_CTL_ELEM_TYPE_INTEGER) {
  		for (i = 0; i < count; i++) {
  			int val;
  			val = data->value.integer.value[i];
  			if (put_user(val, &data32->value.integer[i]))
  				return -EFAULT;
  		}
  	} else {
  		size = get_elem_size(type, count);
  		if (copy_to_user(data32->value.data,
  				 data->value.bytes.data, size))
  			return -EFAULT;
  	}
  	return 0;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
281
282
  static int snd_ctl_elem_read_user_compat(struct snd_card *card, 
  					 struct snd_ctl_elem_value32 __user *data32)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
283
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
284
  	struct snd_ctl_elem_value *data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
285
  	int err, type, count;
ca2c09665   Takashi Iwai   [ALSA] Replace wi...
286
  	data = kzalloc(sizeof(*data), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
287
288
289
290
291
  	if (data == NULL)
  		return -ENOMEM;
  
  	if ((err = copy_ctl_value_from_user(card, data, data32, &type, &count)) < 0)
  		goto error;
646494007   Giuliano Pochini   [ALSA] make contr...
292
293
  
  	snd_power_lock(card);
cbac4b0cb   Takashi Iwai   [ALSA] Cleanup un...
294
  	err = snd_power_wait(card, SNDRV_CTL_POWER_D0);
646494007   Giuliano Pochini   [ALSA] make contr...
295
296
297
298
299
  	if (err >= 0)
  		err = snd_ctl_elem_read(card, data);
  	snd_power_unlock(card);
  	if (err >= 0)
  		err = copy_ctl_value_to_user(data32, data, type, count);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
300
301
302
303
   error:
  	kfree(data);
  	return err;
  }
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
304
305
  static int snd_ctl_elem_write_user_compat(struct snd_ctl_file *file,
  					  struct snd_ctl_elem_value32 __user *data32)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
306
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
307
  	struct snd_ctl_elem_value *data;
646494007   Giuliano Pochini   [ALSA] make contr...
308
  	struct snd_card *card = file->card;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
309
  	int err, type, count;
ca2c09665   Takashi Iwai   [ALSA] Replace wi...
310
  	data = kzalloc(sizeof(*data), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
311
312
  	if (data == NULL)
  		return -ENOMEM;
646494007   Giuliano Pochini   [ALSA] make contr...
313
  	if ((err = copy_ctl_value_from_user(card, data, data32, &type, &count)) < 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
314
  		goto error;
646494007   Giuliano Pochini   [ALSA] make contr...
315
316
  
  	snd_power_lock(card);
cbac4b0cb   Takashi Iwai   [ALSA] Cleanup un...
317
  	err = snd_power_wait(card, SNDRV_CTL_POWER_D0);
646494007   Giuliano Pochini   [ALSA] make contr...
318
319
320
321
322
  	if (err >= 0)
  		err = snd_ctl_elem_write(card, file, data);
  	snd_power_unlock(card);
  	if (err >= 0)
  		err = copy_ctl_value_to_user(data32, data, type, count);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
323
324
325
326
327
328
   error:
  	kfree(data);
  	return err;
  }
  
  /* add or replace a user control */
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
329
330
  static int snd_ctl_elem_add_compat(struct snd_ctl_file *file,
  				   struct snd_ctl_elem_info32 __user *data32,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
331
332
  				   int replace)
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
333
  	struct snd_ctl_elem_info *data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
334
  	int err;
ca2c09665   Takashi Iwai   [ALSA] Replace wi...
335
  	data = kzalloc(sizeof(*data), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
  	if (! data)
  		return -ENOMEM;
  
  	err = -EFAULT;
  	/* id, type, access, count */ \
  	if (copy_from_user(&data->id, &data32->id, sizeof(data->id)) ||
  	    copy_from_user(&data->type, &data32->type, 3 * sizeof(u32)))
  		goto error;
  	if (get_user(data->owner, &data32->owner) ||
  	    get_user(data->type, &data32->type))
  		goto error;
  	switch (data->type) {
  	case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
  	case SNDRV_CTL_ELEM_TYPE_INTEGER:
  		if (get_user(data->value.integer.min, &data32->value.integer.min) ||
  		    get_user(data->value.integer.max, &data32->value.integer.max) ||
  		    get_user(data->value.integer.step, &data32->value.integer.step))
  			goto error;
  		break;
  	case SNDRV_CTL_ELEM_TYPE_INTEGER64:
  		if (copy_from_user(&data->value.integer64,
  				   &data32->value.integer64,
  				   sizeof(data->value.integer64)))
  			goto error;
  		break;
  	case SNDRV_CTL_ELEM_TYPE_ENUMERATED:
  		if (copy_from_user(&data->value.enumerated,
  				   &data32->value.enumerated,
  				   sizeof(data->value.enumerated)))
  			goto error;
8d448162b   Clemens Ladisch   ALSA: control: ad...
366
367
  		data->value.enumerated.names_ptr =
  			(uintptr_t)compat_ptr(data->value.enumerated.names_ptr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
368
369
370
371
372
373
374
375
376
377
378
  		break;
  	default:
  		break;
  	}
  	err = snd_ctl_elem_add(file, data, replace);
   error:
  	kfree(data);
  	return err;
  }  
  
  enum {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
379
380
381
382
383
384
  	SNDRV_CTL_IOCTL_ELEM_LIST32 = _IOWR('U', 0x10, struct snd_ctl_elem_list32),
  	SNDRV_CTL_IOCTL_ELEM_INFO32 = _IOWR('U', 0x11, struct snd_ctl_elem_info32),
  	SNDRV_CTL_IOCTL_ELEM_READ32 = _IOWR('U', 0x12, struct snd_ctl_elem_value32),
  	SNDRV_CTL_IOCTL_ELEM_WRITE32 = _IOWR('U', 0x13, struct snd_ctl_elem_value32),
  	SNDRV_CTL_IOCTL_ELEM_ADD32 = _IOWR('U', 0x17, struct snd_ctl_elem_info32),
  	SNDRV_CTL_IOCTL_ELEM_REPLACE32 = _IOWR('U', 0x18, struct snd_ctl_elem_info32),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
385
386
387
388
  };
  
  static inline long snd_ctl_ioctl_compat(struct file *file, unsigned int cmd, unsigned long arg)
  {
82e9bae6f   Takashi Iwai   [ALSA] Remove xxx...
389
  	struct snd_ctl_file *ctl;
9244b2c30   Johannes Berg   [ALSA] alsa core:...
390
  	struct snd_kctl_ioctl *p;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
391
392
393
394
  	void __user *argp = compat_ptr(arg);
  	int err;
  
  	ctl = file->private_data;
7eaa943c8   Takashi Iwai   ALSA: Kill snd_as...
395
396
  	if (snd_BUG_ON(!ctl || !ctl->card))
  		return -ENXIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397
398
399
400
401
402
403
404
405
  
  	switch (cmd) {
  	case SNDRV_CTL_IOCTL_PVERSION:
  	case SNDRV_CTL_IOCTL_CARD_INFO:
  	case SNDRV_CTL_IOCTL_SUBSCRIBE_EVENTS:
  	case SNDRV_CTL_IOCTL_POWER:
  	case SNDRV_CTL_IOCTL_POWER_STATE:
  	case SNDRV_CTL_IOCTL_ELEM_LOCK:
  	case SNDRV_CTL_IOCTL_ELEM_UNLOCK:
2b1181ed8   Takashi Iwai   [ALSA] Add missin...
406
407
408
409
  	case SNDRV_CTL_IOCTL_ELEM_REMOVE:
  	case SNDRV_CTL_IOCTL_TLV_READ:
  	case SNDRV_CTL_IOCTL_TLV_WRITE:
  	case SNDRV_CTL_IOCTL_TLV_COMMAND:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
  		return snd_ctl_ioctl(file, cmd, (unsigned long)argp);
  	case SNDRV_CTL_IOCTL_ELEM_LIST32:
  		return snd_ctl_elem_list_compat(ctl->card, argp);
  	case SNDRV_CTL_IOCTL_ELEM_INFO32:
  		return snd_ctl_elem_info_compat(ctl, argp);
  	case SNDRV_CTL_IOCTL_ELEM_READ32:
  		return snd_ctl_elem_read_user_compat(ctl->card, argp);
  	case SNDRV_CTL_IOCTL_ELEM_WRITE32:
  		return snd_ctl_elem_write_user_compat(ctl, argp);
  	case SNDRV_CTL_IOCTL_ELEM_ADD32:
  		return snd_ctl_elem_add_compat(ctl, argp, 0);
  	case SNDRV_CTL_IOCTL_ELEM_REPLACE32:
  		return snd_ctl_elem_add_compat(ctl, argp, 1);
  	}
  
  	down_read(&snd_ioctl_rwsem);
9244b2c30   Johannes Berg   [ALSA] alsa core:...
426
  	list_for_each_entry(p, &snd_control_compat_ioctls, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
427
428
429
430
431
432
433
434
435
436
437
  		if (p->fioctl) {
  			err = p->fioctl(ctl->card, ctl, cmd, arg);
  			if (err != -ENOIOCTLCMD) {
  				up_read(&snd_ioctl_rwsem);
  				return err;
  			}
  		}
  	}
  	up_read(&snd_ioctl_rwsem);
  	return -ENOIOCTLCMD;
  }