Branch data Line data Source code
1 : : /*
2 : : * Initialization routines
3 : : * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
4 : : *
5 : : *
6 : : * This program is free software; you can redistribute it and/or modify
7 : : * it under the terms of the GNU General Public License as published by
8 : : * the Free Software Foundation; either version 2 of the License, or
9 : : * (at your option) any later version.
10 : : *
11 : : * This program is distributed in the hope that it will be useful,
12 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : : * GNU General Public License for more details.
15 : : *
16 : : * You should have received a copy of the GNU General Public License
17 : : * along with this program; if not, write to the Free Software
18 : : * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 : : *
20 : : */
21 : :
22 : : #include <linux/init.h>
23 : : #include <linux/sched.h>
24 : : #include <linux/module.h>
25 : : #include <linux/device.h>
26 : : #include <linux/file.h>
27 : : #include <linux/slab.h>
28 : : #include <linux/time.h>
29 : : #include <linux/ctype.h>
30 : : #include <linux/pm.h>
31 : :
32 : : #include <sound/core.h>
33 : : #include <sound/control.h>
34 : : #include <sound/info.h>
35 : :
36 : : /* monitor files for graceful shutdown (hotplug) */
37 : : struct snd_monitor_file {
38 : : struct file *file;
39 : : const struct file_operations *disconnected_f_op;
40 : : struct list_head shutdown_list; /* still need to shutdown */
41 : : struct list_head list; /* link of monitor files */
42 : : };
43 : :
44 : : static DEFINE_SPINLOCK(shutdown_lock);
45 : : static LIST_HEAD(shutdown_files);
46 : :
47 : : static const struct file_operations snd_shutdown_f_ops;
48 : :
49 : : /* locked for registering/using */
50 : : static DECLARE_BITMAP(snd_cards_lock, SNDRV_CARDS);
51 : : struct snd_card *snd_cards[SNDRV_CARDS];
52 : : EXPORT_SYMBOL(snd_cards);
53 : :
54 : : static DEFINE_MUTEX(snd_card_mutex);
55 : :
56 : : static char *slots[SNDRV_CARDS];
57 : : module_param_array(slots, charp, NULL, 0444);
58 : : MODULE_PARM_DESC(slots, "Module names assigned to the slots.");
59 : :
60 : : /* return non-zero if the given index is reserved for the given
61 : : * module via slots option
62 : : */
63 : : static int module_slot_match(struct module *module, int idx)
64 : : {
65 : : int match = 1;
66 : : #ifdef MODULE
67 : : const char *s1, *s2;
68 : :
69 : : if (!module || !*module->name || !slots[idx])
70 : : return 0;
71 : :
72 : : s1 = module->name;
73 : : s2 = slots[idx];
74 : : if (*s2 == '!') {
75 : : match = 0; /* negative match */
76 : : s2++;
77 : : }
78 : : /* compare module name strings
79 : : * hyphens are handled as equivalent with underscore
80 : : */
81 : : for (;;) {
82 : : char c1 = *s1++;
83 : : char c2 = *s2++;
84 : : if (c1 == '-')
85 : : c1 = '_';
86 : : if (c2 == '-')
87 : : c2 = '_';
88 : : if (c1 != c2)
89 : : return !match;
90 : : if (!c1)
91 : : break;
92 : : }
93 : : #endif /* MODULE */
94 : : return match;
95 : : }
96 : :
97 : : #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
98 : : int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int free_flag);
99 : : EXPORT_SYMBOL(snd_mixer_oss_notify_callback);
100 : : #endif
101 : :
102 : : #ifdef CONFIG_PROC_FS
103 : 0 : static void snd_card_id_read(struct snd_info_entry *entry,
104 : : struct snd_info_buffer *buffer)
105 : : {
106 : 1 : snd_iprintf(buffer, "%s\n", entry->card->id);
107 : 1 : }
108 : :
109 : : static inline int init_info_for_card(struct snd_card *card)
110 : : {
111 : : int err;
112 : : struct snd_info_entry *entry;
113 : :
114 [ # # ]: 0 : if ((err = snd_info_card_register(card)) < 0) {
115 : : snd_printd("unable to create card info\n");
116 : : return err;
117 : : }
118 [ # # ]: 0 : if ((entry = snd_info_create_card_entry(card, "id", card->proc_root)) == NULL) {
119 : : snd_printd("unable to create card entry\n");
120 : : return err;
121 : : }
122 : 0 : entry->c.text.read = snd_card_id_read;
123 [ # # ]: 0 : if (snd_info_register(entry) < 0) {
124 : 0 : snd_info_free_entry(entry);
125 : : entry = NULL;
126 : : }
127 : 0 : card->proc_id = entry;
128 : : return 0;
129 : : }
130 : : #else /* !CONFIG_PROC_FS */
131 : : #define init_info_for_card(card)
132 : : #endif
133 : :
134 : : /**
135 : : * snd_card_create - create and initialize a soundcard structure
136 : : * @idx: card index (address) [0 ... (SNDRV_CARDS-1)]
137 : : * @xid: card identification (ASCII string)
138 : : * @module: top level module for locking
139 : : * @extra_size: allocate this extra size after the main soundcard structure
140 : : * @card_ret: the pointer to store the created card instance
141 : : *
142 : : * Creates and initializes a soundcard structure.
143 : : *
144 : : * The function allocates snd_card instance via kzalloc with the given
145 : : * space for the driver to use freely. The allocated struct is stored
146 : : * in the given card_ret pointer.
147 : : *
148 : : * Return: Zero if successful or a negative error code.
149 : : */
150 : 0 : int snd_card_create(int idx, const char *xid,
151 : : struct module *module, int extra_size,
152 : : struct snd_card **card_ret)
153 : : {
154 : : struct snd_card *card;
155 : : int err, idx2;
156 : :
157 [ # # ]: 0 : if (snd_BUG_ON(!card_ret))
158 : : return -EINVAL;
159 : 0 : *card_ret = NULL;
160 : :
161 [ # # ]: 0 : if (extra_size < 0)
162 : : extra_size = 0;
163 : 0 : card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL);
164 [ # # ]: 0 : if (!card)
165 : : return -ENOMEM;
166 [ # # ]: 0 : if (xid)
167 : 0 : strlcpy(card->id, xid, sizeof(card->id));
168 : : err = 0;
169 : 0 : mutex_lock(&snd_card_mutex);
170 [ # # ]: 0 : if (idx < 0) {
171 [ # # ]: 0 : for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++) {
172 : : /* idx == -1 == 0xffff means: take any free slot */
173 [ # # ][ # # ]: 0 : if (idx2 < sizeof(int) && !(idx & (1U << idx2)))
174 : 0 : continue;
175 [ # # ]: 0 : if (!test_bit(idx2, snd_cards_lock)) {
176 : : if (module_slot_match(module, idx2)) {
177 : : idx = idx2;
178 : : break;
179 : : }
180 : : }
181 : : }
182 : : }
183 [ # # ]: 0 : if (idx < 0) {
184 [ # # ]: 0 : for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++) {
185 : : /* idx == -1 == 0xffff means: take any free slot */
186 [ # # ][ # # ]: 0 : if (idx2 < sizeof(int) && !(idx & (1U << idx2)))
187 : 0 : continue;
188 [ # # ]: 0 : if (!test_bit(idx2, snd_cards_lock)) {
189 [ # # ][ # # ]: 0 : if (!slots[idx2] || !*slots[idx2]) {
190 : : idx = idx2;
191 : : break;
192 : : }
193 : : }
194 : : }
195 : : }
196 [ # # ]: 0 : if (idx < 0)
197 : : err = -ENODEV;
198 [ # # ]: 0 : else if (idx < snd_ecards_limit) {
199 [ # # ]: 0 : if (test_bit(idx, snd_cards_lock))
200 : : err = -EBUSY; /* invalid */
201 [ # # ]: 0 : } else if (idx >= SNDRV_CARDS)
202 : : err = -ENODEV;
203 [ # # ]: 0 : if (err < 0) {
204 : 0 : mutex_unlock(&snd_card_mutex);
205 : 0 : snd_printk(KERN_ERR "cannot find the slot for index %d (range 0-%i), error: %d\n",
206 : : idx, snd_ecards_limit - 1, err);
207 : 0 : goto __error;
208 : : }
209 : 0 : set_bit(idx, snd_cards_lock); /* lock it */
210 [ # # ]: 0 : if (idx >= snd_ecards_limit)
211 : 0 : snd_ecards_limit = idx + 1; /* increase the limit */
212 : 0 : mutex_unlock(&snd_card_mutex);
213 : 0 : card->number = idx;
214 : 0 : card->module = module;
215 : 0 : INIT_LIST_HEAD(&card->devices);
216 : 0 : init_rwsem(&card->controls_rwsem);
217 : 0 : rwlock_init(&card->ctl_files_rwlock);
218 : 0 : INIT_LIST_HEAD(&card->controls);
219 : 0 : INIT_LIST_HEAD(&card->ctl_files);
220 : 0 : spin_lock_init(&card->files_lock);
221 : 0 : INIT_LIST_HEAD(&card->files_list);
222 : 0 : init_waitqueue_head(&card->shutdown_sleep);
223 : 0 : atomic_set(&card->refcount, 0);
224 : : #ifdef CONFIG_PM
225 : 0 : mutex_init(&card->power_lock);
226 : 0 : init_waitqueue_head(&card->power_sleep);
227 : : #endif
228 : : /* the control interface cannot be accessed from the user space until */
229 : : /* snd_cards_bitmask and snd_cards are set with snd_card_register */
230 : 0 : err = snd_ctl_create(card);
231 [ # # ]: 0 : if (err < 0) {
232 : 0 : snd_printk(KERN_ERR "unable to register control minors\n");
233 : 0 : goto __error;
234 : : }
235 : 0 : err = snd_info_card_create(card);
236 [ # # ]: 0 : if (err < 0) {
237 : 0 : snd_printk(KERN_ERR "unable to create card info\n");
238 : : goto __error_ctl;
239 : : }
240 [ # # ]: 0 : if (extra_size > 0)
241 : 0 : card->private_data = (char *)card + sizeof(struct snd_card);
242 : 0 : *card_ret = card;
243 : 0 : return 0;
244 : :
245 : : __error_ctl:
246 : 0 : snd_device_free_all(card, SNDRV_DEV_CMD_PRE);
247 : : __error:
248 : 0 : kfree(card);
249 : 0 : return err;
250 : : }
251 : : EXPORT_SYMBOL(snd_card_create);
252 : :
253 : : /* return non-zero if a card is already locked */
254 : 0 : int snd_card_locked(int card)
255 : : {
256 : : int locked;
257 : :
258 : 0 : mutex_lock(&snd_card_mutex);
259 : : locked = test_bit(card, snd_cards_lock);
260 : 0 : mutex_unlock(&snd_card_mutex);
261 : 0 : return locked;
262 : : }
263 : :
264 : 0 : static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig)
265 : : {
266 : 0 : return -ENODEV;
267 : : }
268 : :
269 : 0 : static ssize_t snd_disconnect_read(struct file *file, char __user *buf,
270 : : size_t count, loff_t *offset)
271 : : {
272 : 0 : return -ENODEV;
273 : : }
274 : :
275 : 0 : static ssize_t snd_disconnect_write(struct file *file, const char __user *buf,
276 : : size_t count, loff_t *offset)
277 : : {
278 : 0 : return -ENODEV;
279 : : }
280 : :
281 : 0 : static int snd_disconnect_release(struct inode *inode, struct file *file)
282 : : {
283 : : struct snd_monitor_file *df = NULL, *_df;
284 : :
285 : : spin_lock(&shutdown_lock);
286 [ # # ]: 0 : list_for_each_entry(_df, &shutdown_files, shutdown_list) {
287 [ # # ]: 0 : if (_df->file == file) {
288 : : df = _df;
289 : : list_del_init(&df->shutdown_list);
290 : : break;
291 : : }
292 : : }
293 : : spin_unlock(&shutdown_lock);
294 : :
295 [ # # ]: 0 : if (likely(df)) {
296 [ # # ][ # # ]: 0 : if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync)
297 : 0 : df->disconnected_f_op->fasync(-1, file, 0);
298 : 0 : return df->disconnected_f_op->release(inode, file);
299 : : }
300 : :
301 : 0 : panic("%s(%p, %p) failed!", __func__, inode, file);
302 : : }
303 : :
304 : 0 : static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
305 : : {
306 : 0 : return POLLERR | POLLNVAL;
307 : : }
308 : :
309 : 0 : static long snd_disconnect_ioctl(struct file *file,
310 : : unsigned int cmd, unsigned long arg)
311 : : {
312 : 0 : return -ENODEV;
313 : : }
314 : :
315 : 0 : static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma)
316 : : {
317 : 0 : return -ENODEV;
318 : : }
319 : :
320 : 0 : static int snd_disconnect_fasync(int fd, struct file *file, int on)
321 : : {
322 : 0 : return -ENODEV;
323 : : }
324 : :
325 : : static const struct file_operations snd_shutdown_f_ops =
326 : : {
327 : : .owner = THIS_MODULE,
328 : : .llseek = snd_disconnect_llseek,
329 : : .read = snd_disconnect_read,
330 : : .write = snd_disconnect_write,
331 : : .release = snd_disconnect_release,
332 : : .poll = snd_disconnect_poll,
333 : : .unlocked_ioctl = snd_disconnect_ioctl,
334 : : #ifdef CONFIG_COMPAT
335 : : .compat_ioctl = snd_disconnect_ioctl,
336 : : #endif
337 : : .mmap = snd_disconnect_mmap,
338 : : .fasync = snd_disconnect_fasync
339 : : };
340 : :
341 : : /**
342 : : * snd_card_disconnect - disconnect all APIs from the file-operations (user space)
343 : : * @card: soundcard structure
344 : : *
345 : : * Disconnects all APIs from the file-operations (user space).
346 : : *
347 : : * Return: Zero, otherwise a negative error code.
348 : : *
349 : : * Note: The current implementation replaces all active file->f_op with special
350 : : * dummy file operations (they do nothing except release).
351 : : */
352 : 0 : int snd_card_disconnect(struct snd_card *card)
353 : : {
354 : : struct snd_monitor_file *mfile;
355 : : int err;
356 : :
357 [ # # ]: 0 : if (!card)
358 : : return -EINVAL;
359 : :
360 : : spin_lock(&card->files_lock);
361 [ # # ]: 0 : if (card->shutdown) {
362 : : spin_unlock(&card->files_lock);
363 : 0 : return 0;
364 : : }
365 : 0 : card->shutdown = 1;
366 : : spin_unlock(&card->files_lock);
367 : :
368 : : /* phase 1: disable fops (user space) operations for ALSA API */
369 : 0 : mutex_lock(&snd_card_mutex);
370 : 0 : snd_cards[card->number] = NULL;
371 : 0 : clear_bit(card->number, snd_cards_lock);
372 : 0 : mutex_unlock(&snd_card_mutex);
373 : :
374 : : /* phase 2: replace file->f_op with special dummy operations */
375 : :
376 : : spin_lock(&card->files_lock);
377 [ # # ]: 0 : list_for_each_entry(mfile, &card->files_list, list) {
378 : : /* it's critical part, use endless loop */
379 : : /* we have no room to fail */
380 : 0 : mfile->disconnected_f_op = mfile->file->f_op;
381 : :
382 : : spin_lock(&shutdown_lock);
383 : 0 : list_add(&mfile->shutdown_list, &shutdown_files);
384 : : spin_unlock(&shutdown_lock);
385 : :
386 : 0 : mfile->file->f_op = &snd_shutdown_f_ops;
387 [ # # ]: 0 : fops_get(mfile->file->f_op);
388 : : }
389 : : spin_unlock(&card->files_lock);
390 : :
391 : : /* phase 3: notify all connected devices about disconnection */
392 : : /* at this point, they cannot respond to any calls except release() */
393 : :
394 : : #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
395 : : if (snd_mixer_oss_notify_callback)
396 : : snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT);
397 : : #endif
398 : :
399 : : /* notify all devices that we are disconnected */
400 : 0 : err = snd_device_disconnect_all(card);
401 [ # # ]: 0 : if (err < 0)
402 : 0 : snd_printk(KERN_ERR "not all devices for card %i can be disconnected\n", card->number);
403 : :
404 : 0 : snd_info_card_disconnect(card);
405 [ # # ]: 0 : if (card->card_dev) {
406 : 0 : device_unregister(card->card_dev);
407 : 0 : card->card_dev = NULL;
408 : : }
409 : : #ifdef CONFIG_PM
410 : 0 : wake_up(&card->power_sleep);
411 : : #endif
412 : 0 : return 0;
413 : : }
414 : :
415 : : EXPORT_SYMBOL(snd_card_disconnect);
416 : :
417 : : /**
418 : : * snd_card_free - frees given soundcard structure
419 : : * @card: soundcard structure
420 : : *
421 : : * This function releases the soundcard structure and the all assigned
422 : : * devices automatically. That is, you don't have to release the devices
423 : : * by yourself.
424 : : *
425 : : * Return: Zero. Frees all associated devices and frees the control
426 : : * interface associated to given soundcard.
427 : : */
428 : 0 : static int snd_card_do_free(struct snd_card *card)
429 : : {
430 : : #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
431 : : if (snd_mixer_oss_notify_callback)
432 : : snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE);
433 : : #endif
434 [ # # ]: 0 : if (snd_device_free_all(card, SNDRV_DEV_CMD_PRE) < 0) {
435 : 0 : snd_printk(KERN_ERR "unable to free all devices (pre)\n");
436 : : /* Fatal, but this situation should never occur */
437 : : }
438 [ # # ]: 0 : if (snd_device_free_all(card, SNDRV_DEV_CMD_NORMAL) < 0) {
439 : 0 : snd_printk(KERN_ERR "unable to free all devices (normal)\n");
440 : : /* Fatal, but this situation should never occur */
441 : : }
442 [ # # ]: 0 : if (snd_device_free_all(card, SNDRV_DEV_CMD_POST) < 0) {
443 : 0 : snd_printk(KERN_ERR "unable to free all devices (post)\n");
444 : : /* Fatal, but this situation should never occur */
445 : : }
446 [ # # ]: 0 : if (card->private_free)
447 : 0 : card->private_free(card);
448 : 0 : snd_info_free_entry(card->proc_id);
449 [ # # ]: 0 : if (snd_info_card_free(card) < 0) {
450 : 0 : snd_printk(KERN_WARNING "unable to free card info\n");
451 : : /* Not fatal error */
452 : : }
453 : 0 : kfree(card);
454 : 0 : return 0;
455 : : }
456 : :
457 : : /**
458 : : * snd_card_unref - release the reference counter
459 : : * @card: the card instance
460 : : *
461 : : * Decrements the reference counter. When it reaches to zero, wake up
462 : : * the sleeper and call the destructor if needed.
463 : : */
464 : 0 : void snd_card_unref(struct snd_card *card)
465 : : {
466 [ # # ]: 0 : if (atomic_dec_and_test(&card->refcount)) {
467 : 0 : wake_up(&card->shutdown_sleep);
468 [ # # ]: 0 : if (card->free_on_last_close)
469 : 0 : snd_card_do_free(card);
470 : : }
471 : 0 : }
472 : : EXPORT_SYMBOL(snd_card_unref);
473 : :
474 : 0 : int snd_card_free_when_closed(struct snd_card *card)
475 : : {
476 : : int ret;
477 : :
478 : 0 : atomic_inc(&card->refcount);
479 : 0 : ret = snd_card_disconnect(card);
480 [ # # ]: 0 : if (ret) {
481 : : atomic_dec(&card->refcount);
482 : 0 : return ret;
483 : : }
484 : :
485 : 0 : card->free_on_last_close = 1;
486 [ # # ]: 0 : if (atomic_dec_and_test(&card->refcount))
487 : 0 : snd_card_do_free(card);
488 : : return 0;
489 : : }
490 : :
491 : : EXPORT_SYMBOL(snd_card_free_when_closed);
492 : :
493 : 0 : int snd_card_free(struct snd_card *card)
494 : : {
495 : 0 : int ret = snd_card_disconnect(card);
496 [ # # ]: 0 : if (ret)
497 : : return ret;
498 : :
499 : : /* wait, until all devices are ready for the free operation */
500 [ # # ][ # # ]: 0 : wait_event(card->shutdown_sleep, !atomic_read(&card->refcount));
501 : 0 : snd_card_do_free(card);
502 : 0 : return 0;
503 : : }
504 : :
505 : : EXPORT_SYMBOL(snd_card_free);
506 : :
507 : : /* retrieve the last word of shortname or longname */
508 : : static const char *retrieve_id_from_card_name(const char *name)
509 : : {
510 : : const char *spos = name;
511 : :
512 [ # # ]: 0 : while (*name) {
513 [ # # ][ # # ]: 0 : if (isspace(*name) && isalnum(name[1]))
514 : 0 : spos = name + 1;
515 : 0 : name++;
516 : : }
517 : : return spos;
518 : : }
519 : :
520 : : /* return true if the given id string doesn't conflict any other card ids */
521 : 0 : static bool card_id_ok(struct snd_card *card, const char *id)
522 : : {
523 : : int i;
524 [ # # ]: 0 : if (!snd_info_check_reserved_words(id))
525 : : return false;
526 [ # # ]: 0 : for (i = 0; i < snd_ecards_limit; i++) {
527 [ # # ][ # # ]: 0 : if (snd_cards[i] && snd_cards[i] != card &&
[ # # ]
528 : 0 : !strcmp(snd_cards[i]->id, id))
529 : : return false;
530 : : }
531 : : return true;
532 : : }
533 : :
534 : : /* copy to card->id only with valid letters from nid */
535 : 0 : static void copy_valid_id_string(struct snd_card *card, const char *src,
536 : : const char *nid)
537 : : {
538 : 0 : char *id = card->id;
539 : :
540 [ # # ][ # # ]: 0 : while (*nid && !isalnum(*nid))
541 : 0 : nid++;
542 [ # # ]: 0 : if (isdigit(*nid))
543 [ # # ]: 0 : *id++ = isalpha(*src) ? *src : 'D';
544 [ # # ][ # # ]: 0 : while (*nid && (size_t)(id - card->id) < sizeof(card->id) - 1) {
545 [ # # ]: 0 : if (isalnum(*nid))
546 : 0 : *id++ = *nid;
547 : 0 : nid++;
548 : : }
549 : 0 : *id = 0;
550 : 0 : }
551 : :
552 : : /* Set card->id from the given string
553 : : * If the string conflicts with other ids, add a suffix to make it unique.
554 : : */
555 : 0 : static void snd_card_set_id_no_lock(struct snd_card *card, const char *src,
556 : : const char *nid)
557 : : {
558 : : int len, loops;
559 : : bool is_default = false;
560 : : char *id;
561 : :
562 : 0 : copy_valid_id_string(card, src, nid);
563 : 0 : id = card->id;
564 : :
565 : : again:
566 : : /* use "Default" for obviously invalid strings
567 : : * ("card" conflicts with proc directories)
568 : : */
569 [ # # ][ # # ]: 0 : if (!*id || !strncmp(id, "card", 4)) {
570 : 0 : strcpy(id, "Default");
571 : : is_default = true;
572 : : }
573 : :
574 : 0 : len = strlen(id);
575 [ # # ]: 0 : for (loops = 0; loops < SNDRV_CARDS; loops++) {
576 : : char *spos;
577 : : char sfxstr[5]; /* "_012" */
578 : : int sfxlen;
579 : :
580 [ # # ]: 0 : if (card_id_ok(card, id))
581 : 0 : return; /* OK */
582 : :
583 : : /* Add _XYZ suffix */
584 : 0 : sprintf(sfxstr, "_%X", loops + 1);
585 : 0 : sfxlen = strlen(sfxstr);
586 [ # # ]: 0 : if (len + sfxlen >= sizeof(card->id))
587 : 0 : spos = id + sizeof(card->id) - sfxlen - 1;
588 : : else
589 : 0 : spos = id + len;
590 : 0 : strcpy(spos, sfxstr);
591 : : }
592 : : /* fallback to the default id */
593 [ # # ]: 0 : if (!is_default) {
594 : 0 : *id = 0;
595 : 0 : goto again;
596 : : }
597 : : /* last resort... */
598 : 0 : snd_printk(KERN_ERR "unable to set card id (%s)\n", id);
599 [ # # ]: 0 : if (card->proc_root->name)
600 : 0 : strlcpy(card->id, card->proc_root->name, sizeof(card->id));
601 : : }
602 : :
603 : : /**
604 : : * snd_card_set_id - set card identification name
605 : : * @card: soundcard structure
606 : : * @nid: new identification string
607 : : *
608 : : * This function sets the card identification and checks for name
609 : : * collisions.
610 : : */
611 : 0 : void snd_card_set_id(struct snd_card *card, const char *nid)
612 : : {
613 : : /* check if user specified own card->id */
614 [ # # ]: 0 : if (card->id[0] != '\0')
615 : 0 : return;
616 : 0 : mutex_lock(&snd_card_mutex);
617 : 0 : snd_card_set_id_no_lock(card, nid, nid);
618 : 0 : mutex_unlock(&snd_card_mutex);
619 : : }
620 : : EXPORT_SYMBOL(snd_card_set_id);
621 : :
622 : : static ssize_t
623 : 0 : card_id_show_attr(struct device *dev,
624 : : struct device_attribute *attr, char *buf)
625 : : {
626 : 0 : struct snd_card *card = dev_get_drvdata(dev);
627 [ # # ]: 0 : return snprintf(buf, PAGE_SIZE, "%s\n", card ? card->id : "(null)");
628 : : }
629 : :
630 : : static ssize_t
631 : 0 : card_id_store_attr(struct device *dev, struct device_attribute *attr,
632 : : const char *buf, size_t count)
633 : : {
634 : 0 : struct snd_card *card = dev_get_drvdata(dev);
635 : : char buf1[sizeof(card->id)];
636 : 0 : size_t copy = count > sizeof(card->id) - 1 ?
637 : : sizeof(card->id) - 1 : count;
638 : : size_t idx;
639 : : int c;
640 : :
641 [ # # ]: 0 : for (idx = 0; idx < copy; idx++) {
642 : 0 : c = buf[idx];
643 [ # # ][ # # ]: 0 : if (!isalnum(c) && c != '_' && c != '-')
644 : : return -EINVAL;
645 : : }
646 : 0 : memcpy(buf1, buf, copy);
647 : 0 : buf1[copy] = '\0';
648 : 0 : mutex_lock(&snd_card_mutex);
649 [ # # ]: 0 : if (!card_id_ok(NULL, buf1)) {
650 : 0 : mutex_unlock(&snd_card_mutex);
651 : 0 : return -EEXIST;
652 : : }
653 : 0 : strcpy(card->id, buf1);
654 : 0 : snd_info_card_id_change(card);
655 : 0 : mutex_unlock(&snd_card_mutex);
656 : :
657 : 0 : return count;
658 : : }
659 : :
660 : : static struct device_attribute card_id_attrs =
661 : : __ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr);
662 : :
663 : : static ssize_t
664 : 0 : card_number_show_attr(struct device *dev,
665 : : struct device_attribute *attr, char *buf)
666 : : {
667 : 0 : struct snd_card *card = dev_get_drvdata(dev);
668 [ # # ]: 0 : return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1);
669 : : }
670 : :
671 : : static struct device_attribute card_number_attrs =
672 : : __ATTR(number, S_IRUGO, card_number_show_attr, NULL);
673 : :
674 : : /**
675 : : * snd_card_register - register the soundcard
676 : : * @card: soundcard structure
677 : : *
678 : : * This function registers all the devices assigned to the soundcard.
679 : : * Until calling this, the ALSA control interface is blocked from the
680 : : * external accesses. Thus, you should call this function at the end
681 : : * of the initialization of the card.
682 : : *
683 : : * Return: Zero otherwise a negative error code if the registration failed.
684 : : */
685 : 0 : int snd_card_register(struct snd_card *card)
686 : : {
687 : : int err;
688 : :
689 [ # # ]: 0 : if (snd_BUG_ON(!card))
690 : : return -EINVAL;
691 : :
692 [ # # ]: 0 : if (!card->card_dev) {
693 : 0 : card->card_dev = device_create(sound_class, card->dev,
694 : : MKDEV(0, 0), card,
695 : : "card%i", card->number);
696 [ # # ]: 0 : if (IS_ERR(card->card_dev))
697 : 0 : card->card_dev = NULL;
698 : : }
699 : :
700 [ # # ]: 0 : if ((err = snd_device_register_all(card)) < 0)
701 : : return err;
702 : 0 : mutex_lock(&snd_card_mutex);
703 [ # # ]: 0 : if (snd_cards[card->number]) {
704 : : /* already registered */
705 : 0 : mutex_unlock(&snd_card_mutex);
706 : 0 : return 0;
707 : : }
708 [ # # ]: 0 : if (*card->id) {
709 : : /* make a unique id name from the given string */
710 : : char tmpid[sizeof(card->id)];
711 : 0 : memcpy(tmpid, card->id, sizeof(card->id));
712 : 0 : snd_card_set_id_no_lock(card, tmpid, tmpid);
713 : : } else {
714 : : /* create an id from either shortname or longname */
715 : : const char *src;
716 [ # # ]: 0 : src = *card->shortname ? card->shortname : card->longname;
717 : 0 : snd_card_set_id_no_lock(card, src,
718 : : retrieve_id_from_card_name(src));
719 : : }
720 : 0 : snd_cards[card->number] = card;
721 : 0 : mutex_unlock(&snd_card_mutex);
722 : : init_info_for_card(card);
723 : : #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
724 : : if (snd_mixer_oss_notify_callback)
725 : : snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER);
726 : : #endif
727 [ # # ]: 0 : if (card->card_dev) {
728 : 0 : err = device_create_file(card->card_dev, &card_id_attrs);
729 [ # # ]: 0 : if (err < 0)
730 : : return err;
731 : 0 : err = device_create_file(card->card_dev, &card_number_attrs);
732 [ # # ]: 0 : if (err < 0)
733 : 0 : return err;
734 : : }
735 : :
736 : : return 0;
737 : : }
738 : :
739 : : EXPORT_SYMBOL(snd_card_register);
740 : :
741 : : #ifdef CONFIG_PROC_FS
742 : : static struct snd_info_entry *snd_card_info_entry;
743 : :
744 : 0 : static void snd_card_info_read(struct snd_info_entry *entry,
745 : : struct snd_info_buffer *buffer)
746 : : {
747 : : int idx, count;
748 : : struct snd_card *card;
749 : :
750 [ + + ]: 9 : for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
751 : 8 : mutex_lock(&snd_card_mutex);
752 [ + + ]: 8 : if ((card = snd_cards[idx]) != NULL) {
753 : 1 : count++;
754 : 1 : snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n",
755 : : idx,
756 : 1 : card->id,
757 : 1 : card->driver,
758 : 1 : card->shortname);
759 : 1 : snd_iprintf(buffer, " %s\n",
760 : 1 : card->longname);
761 : : }
762 : 8 : mutex_unlock(&snd_card_mutex);
763 : : }
764 [ - + ]: 1 : if (!count)
765 : 0 : snd_iprintf(buffer, "--- no soundcards ---\n");
766 : 1 : }
767 : :
768 : : #ifdef CONFIG_SND_OSSEMUL
769 : :
770 : : void snd_card_info_read_oss(struct snd_info_buffer *buffer)
771 : : {
772 : : int idx, count;
773 : : struct snd_card *card;
774 : :
775 : : for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
776 : : mutex_lock(&snd_card_mutex);
777 : : if ((card = snd_cards[idx]) != NULL) {
778 : : count++;
779 : : snd_iprintf(buffer, "%s\n", card->longname);
780 : : }
781 : : mutex_unlock(&snd_card_mutex);
782 : : }
783 : : if (!count) {
784 : : snd_iprintf(buffer, "--- no soundcards ---\n");
785 : : }
786 : : }
787 : :
788 : : #endif
789 : :
790 : : #ifdef MODULE
791 : : static struct snd_info_entry *snd_card_module_info_entry;
792 : : static void snd_card_module_info_read(struct snd_info_entry *entry,
793 : : struct snd_info_buffer *buffer)
794 : : {
795 : : int idx;
796 : : struct snd_card *card;
797 : :
798 : : for (idx = 0; idx < SNDRV_CARDS; idx++) {
799 : : mutex_lock(&snd_card_mutex);
800 : : if ((card = snd_cards[idx]) != NULL)
801 : : snd_iprintf(buffer, "%2i %s\n",
802 : : idx, card->module->name);
803 : : mutex_unlock(&snd_card_mutex);
804 : : }
805 : : }
806 : : #endif
807 : :
808 : 0 : int __init snd_card_info_init(void)
809 : : {
810 : : struct snd_info_entry *entry;
811 : :
812 : 0 : entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
813 [ # # ]: 0 : if (! entry)
814 : : return -ENOMEM;
815 : 0 : entry->c.text.read = snd_card_info_read;
816 [ # # ]: 0 : if (snd_info_register(entry) < 0) {
817 : 0 : snd_info_free_entry(entry);
818 : 0 : return -ENOMEM;
819 : : }
820 : 0 : snd_card_info_entry = entry;
821 : :
822 : : #ifdef MODULE
823 : : entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL);
824 : : if (entry) {
825 : : entry->c.text.read = snd_card_module_info_read;
826 : : if (snd_info_register(entry) < 0)
827 : : snd_info_free_entry(entry);
828 : : else
829 : : snd_card_module_info_entry = entry;
830 : : }
831 : : #endif
832 : :
833 : 0 : return 0;
834 : : }
835 : :
836 : 0 : int __exit snd_card_info_done(void)
837 : : {
838 : 0 : snd_info_free_entry(snd_card_info_entry);
839 : : #ifdef MODULE
840 : : snd_info_free_entry(snd_card_module_info_entry);
841 : : #endif
842 : 0 : return 0;
843 : : }
844 : :
845 : : #endif /* CONFIG_PROC_FS */
846 : :
847 : : /**
848 : : * snd_component_add - add a component string
849 : : * @card: soundcard structure
850 : : * @component: the component id string
851 : : *
852 : : * This function adds the component id string to the supported list.
853 : : * The component can be referred from the alsa-lib.
854 : : *
855 : : * Return: Zero otherwise a negative error code.
856 : : */
857 : :
858 : 0 : int snd_component_add(struct snd_card *card, const char *component)
859 : : {
860 : : char *ptr;
861 : 0 : int len = strlen(component);
862 : :
863 : 0 : ptr = strstr(card->components, component);
864 [ # # ]: 0 : if (ptr != NULL) {
865 [ # # ]: 0 : if (ptr[len] == '\0' || ptr[len] == ' ') /* already there */
866 : : return 1;
867 : : }
868 [ # # ]: 0 : if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) {
869 : : snd_BUG();
870 : : return -ENOMEM;
871 : : }
872 [ # # ]: 0 : if (card->components[0] != '\0')
873 : 0 : strcat(card->components, " ");
874 : 0 : strcat(card->components, component);
875 : 0 : return 0;
876 : : }
877 : :
878 : : EXPORT_SYMBOL(snd_component_add);
879 : :
880 : : /**
881 : : * snd_card_file_add - add the file to the file list of the card
882 : : * @card: soundcard structure
883 : : * @file: file pointer
884 : : *
885 : : * This function adds the file to the file linked-list of the card.
886 : : * This linked-list is used to keep tracking the connection state,
887 : : * and to avoid the release of busy resources by hotplug.
888 : : *
889 : : * Return: zero or a negative error code.
890 : : */
891 : 0 : int snd_card_file_add(struct snd_card *card, struct file *file)
892 : : {
893 : : struct snd_monitor_file *mfile;
894 : :
895 : : mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
896 [ # # ]: 0 : if (mfile == NULL)
897 : : return -ENOMEM;
898 : 0 : mfile->file = file;
899 : 0 : mfile->disconnected_f_op = NULL;
900 : 0 : INIT_LIST_HEAD(&mfile->shutdown_list);
901 : : spin_lock(&card->files_lock);
902 [ # # ]: 0 : if (card->shutdown) {
903 : : spin_unlock(&card->files_lock);
904 : 0 : kfree(mfile);
905 : 0 : return -ENODEV;
906 : : }
907 : 0 : list_add(&mfile->list, &card->files_list);
908 : 0 : atomic_inc(&card->refcount);
909 : : spin_unlock(&card->files_lock);
910 : 0 : return 0;
911 : : }
912 : :
913 : : EXPORT_SYMBOL(snd_card_file_add);
914 : :
915 : : /**
916 : : * snd_card_file_remove - remove the file from the file list
917 : : * @card: soundcard structure
918 : : * @file: file pointer
919 : : *
920 : : * This function removes the file formerly added to the card via
921 : : * snd_card_file_add() function.
922 : : * If all files are removed and snd_card_free_when_closed() was
923 : : * called beforehand, it processes the pending release of
924 : : * resources.
925 : : *
926 : : * Return: Zero or a negative error code.
927 : : */
928 : 0 : int snd_card_file_remove(struct snd_card *card, struct file *file)
929 : : {
930 : : struct snd_monitor_file *mfile, *found = NULL;
931 : :
932 : : spin_lock(&card->files_lock);
933 [ # # ]: 0 : list_for_each_entry(mfile, &card->files_list, list) {
934 [ # # ]: 0 : if (mfile->file == file) {
935 : : list_del(&mfile->list);
936 : : spin_lock(&shutdown_lock);
937 : : list_del(&mfile->shutdown_list);
938 : : spin_unlock(&shutdown_lock);
939 [ # # ]: 0 : if (mfile->disconnected_f_op)
940 [ # # ]: 0 : fops_put(mfile->disconnected_f_op);
941 : : found = mfile;
942 : 0 : break;
943 : : }
944 : : }
945 : : spin_unlock(&card->files_lock);
946 [ # # ]: 0 : if (!found) {
947 : 0 : snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file);
948 : 0 : return -ENOENT;
949 : : }
950 : 0 : kfree(found);
951 : 0 : snd_card_unref(card);
952 : 0 : return 0;
953 : : }
954 : :
955 : : EXPORT_SYMBOL(snd_card_file_remove);
956 : :
957 : : #ifdef CONFIG_PM
958 : : /**
959 : : * snd_power_wait - wait until the power-state is changed.
960 : : * @card: soundcard structure
961 : : * @power_state: expected power state
962 : : *
963 : : * Waits until the power-state is changed.
964 : : *
965 : : * Return: Zero if successful, or a negative error code.
966 : : *
967 : : * Note: the power lock must be active before call.
968 : : */
969 : 0 : int snd_power_wait(struct snd_card *card, unsigned int power_state)
970 : : {
971 : : wait_queue_t wait;
972 : : int result = 0;
973 : :
974 : : /* fastpath */
975 [ # # ]: 0 : if (snd_power_get_state(card) == power_state)
976 : : return 0;
977 : 0 : init_waitqueue_entry(&wait, current);
978 : 0 : add_wait_queue(&card->power_sleep, &wait);
979 : : while (1) {
980 [ # # ]: 0 : if (card->shutdown) {
981 : : result = -ENODEV;
982 : : break;
983 : : }
984 [ # # ]: 0 : if (snd_power_get_state(card) == power_state)
985 : : break;
986 : 0 : set_current_state(TASK_UNINTERRUPTIBLE);
987 : : snd_power_unlock(card);
988 : 0 : schedule_timeout(30 * HZ);
989 : : snd_power_lock(card);
990 : : }
991 : 0 : remove_wait_queue(&card->power_sleep, &wait);
992 : 0 : return result;
993 : : }
994 : :
995 : : EXPORT_SYMBOL(snd_power_wait);
996 : : #endif /* CONFIG_PM */
|