• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *  Information interface for ALSA driver
4  *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
5  */
6 
7 #include <linux/init.h>
8 #include <linux/time.h>
9 #include <linux/mm.h>
10 #include <linux/slab.h>
11 #include <linux/string.h>
12 #include <linux/module.h>
13 #include <sound/core.h>
14 #include <sound/minors.h>
15 #include <sound/info.h>
16 #include <linux/utsname.h>
17 #include <linux/proc_fs.h>
18 #include <linux/mutex.h>
19 #include <stdarg.h>
20 
snd_info_check_reserved_words(const char * str)21 int snd_info_check_reserved_words(const char *str)
22 {
23 	static char *reserved[] =
24 	{
25 		"version",
26 		"meminfo",
27 		"memdebug",
28 		"detect",
29 		"devices",
30 		"oss",
31 		"cards",
32 		"timers",
33 		"synth",
34 		"pcm",
35 		"seq",
36 		NULL
37 	};
38 	char **xstr = reserved;
39 
40 	while (*xstr) {
41 		if (!strcmp(*xstr, str))
42 			return 0;
43 		xstr++;
44 	}
45 	if (!strncmp(str, "card", 4))
46 		return 0;
47 	return 1;
48 }
49 
50 static DEFINE_MUTEX(info_mutex);
51 
52 struct snd_info_private_data {
53 	struct snd_info_buffer *rbuffer;
54 	struct snd_info_buffer *wbuffer;
55 	struct snd_info_entry *entry;
56 	void *file_private_data;
57 };
58 
59 static int snd_info_version_init(void);
60 static void snd_info_clear_entries(struct snd_info_entry *entry);
61 
62 /*
63 
64  */
65 
66 static struct snd_info_entry *snd_proc_root;
67 struct snd_info_entry *snd_seq_root;
68 EXPORT_SYMBOL(snd_seq_root);
69 
70 #ifdef CONFIG_SND_OSSEMUL
71 struct snd_info_entry *snd_oss_root;
72 #endif
73 
alloc_info_private(struct snd_info_entry * entry,struct snd_info_private_data ** ret)74 static int alloc_info_private(struct snd_info_entry *entry,
75 			      struct snd_info_private_data **ret)
76 {
77 	struct snd_info_private_data *data;
78 
79 	if (!entry || !entry->p)
80 		return -ENODEV;
81 	if (!try_module_get(entry->module))
82 		return -EFAULT;
83 	data = kzalloc(sizeof(*data), GFP_KERNEL);
84 	if (!data) {
85 		module_put(entry->module);
86 		return -ENOMEM;
87 	}
88 	data->entry = entry;
89 	*ret = data;
90 	return 0;
91 }
92 
valid_pos(loff_t pos,size_t count)93 static bool valid_pos(loff_t pos, size_t count)
94 {
95 	if (pos < 0 || (long) pos != pos || (ssize_t) count < 0)
96 		return false;
97 	if ((unsigned long) pos + (unsigned long) count < (unsigned long) pos)
98 		return false;
99 	return true;
100 }
101 
102 /*
103  * file ops for binary proc files
104  */
snd_info_entry_llseek(struct file * file,loff_t offset,int orig)105 static loff_t snd_info_entry_llseek(struct file *file, loff_t offset, int orig)
106 {
107 	struct snd_info_private_data *data;
108 	struct snd_info_entry *entry;
109 	loff_t ret = -EINVAL, size;
110 
111 	data = file->private_data;
112 	entry = data->entry;
113 	mutex_lock(&entry->access);
114 	if (entry->c.ops->llseek) {
115 		ret = entry->c.ops->llseek(entry,
116 					   data->file_private_data,
117 					   file, offset, orig);
118 		goto out;
119 	}
120 
121 	size = entry->size;
122 	switch (orig) {
123 	case SEEK_SET:
124 		break;
125 	case SEEK_CUR:
126 		offset += file->f_pos;
127 		break;
128 	case SEEK_END:
129 		if (!size)
130 			goto out;
131 		offset += size;
132 		break;
133 	default:
134 		goto out;
135 	}
136 	if (offset < 0)
137 		goto out;
138 	if (size && offset > size)
139 		offset = size;
140 	file->f_pos = offset;
141 	ret = offset;
142  out:
143 	mutex_unlock(&entry->access);
144 	return ret;
145 }
146 
snd_info_entry_read(struct file * file,char __user * buffer,size_t count,loff_t * offset)147 static ssize_t snd_info_entry_read(struct file *file, char __user *buffer,
148 				   size_t count, loff_t * offset)
149 {
150 	struct snd_info_private_data *data = file->private_data;
151 	struct snd_info_entry *entry = data->entry;
152 	size_t size;
153 	loff_t pos;
154 
155 	pos = *offset;
156 	if (!valid_pos(pos, count))
157 		return -EIO;
158 	if (pos >= entry->size)
159 		return 0;
160 	size = entry->size - pos;
161 	size = min(count, size);
162 	size = entry->c.ops->read(entry, data->file_private_data,
163 				  file, buffer, size, pos);
164 	if ((ssize_t) size > 0)
165 		*offset = pos + size;
166 	return size;
167 }
168 
snd_info_entry_write(struct file * file,const char __user * buffer,size_t count,loff_t * offset)169 static ssize_t snd_info_entry_write(struct file *file, const char __user *buffer,
170 				    size_t count, loff_t * offset)
171 {
172 	struct snd_info_private_data *data = file->private_data;
173 	struct snd_info_entry *entry = data->entry;
174 	ssize_t size = 0;
175 	loff_t pos;
176 
177 	pos = *offset;
178 	if (!valid_pos(pos, count))
179 		return -EIO;
180 	if (count > 0) {
181 		size_t maxsize = entry->size - pos;
182 		count = min(count, maxsize);
183 		size = entry->c.ops->write(entry, data->file_private_data,
184 					   file, buffer, count, pos);
185 	}
186 	if (size > 0)
187 		*offset = pos + size;
188 	return size;
189 }
190 
snd_info_entry_poll(struct file * file,poll_table * wait)191 static __poll_t snd_info_entry_poll(struct file *file, poll_table *wait)
192 {
193 	struct snd_info_private_data *data = file->private_data;
194 	struct snd_info_entry *entry = data->entry;
195 	__poll_t mask = 0;
196 
197 	if (entry->c.ops->poll)
198 		return entry->c.ops->poll(entry,
199 					  data->file_private_data,
200 					  file, wait);
201 	if (entry->c.ops->read)
202 		mask |= EPOLLIN | EPOLLRDNORM;
203 	if (entry->c.ops->write)
204 		mask |= EPOLLOUT | EPOLLWRNORM;
205 	return mask;
206 }
207 
snd_info_entry_ioctl(struct file * file,unsigned int cmd,unsigned long arg)208 static long snd_info_entry_ioctl(struct file *file, unsigned int cmd,
209 				unsigned long arg)
210 {
211 	struct snd_info_private_data *data = file->private_data;
212 	struct snd_info_entry *entry = data->entry;
213 
214 	if (!entry->c.ops->ioctl)
215 		return -ENOTTY;
216 	return entry->c.ops->ioctl(entry, data->file_private_data,
217 				   file, cmd, arg);
218 }
219 
snd_info_entry_mmap(struct file * file,struct vm_area_struct * vma)220 static int snd_info_entry_mmap(struct file *file, struct vm_area_struct *vma)
221 {
222 	struct inode *inode = file_inode(file);
223 	struct snd_info_private_data *data;
224 	struct snd_info_entry *entry;
225 
226 	data = file->private_data;
227 	if (data == NULL)
228 		return 0;
229 	entry = data->entry;
230 	if (!entry->c.ops->mmap)
231 		return -ENXIO;
232 	return entry->c.ops->mmap(entry, data->file_private_data,
233 				  inode, file, vma);
234 }
235 
snd_info_entry_open(struct inode * inode,struct file * file)236 static int snd_info_entry_open(struct inode *inode, struct file *file)
237 {
238 	struct snd_info_entry *entry = PDE_DATA(inode);
239 	struct snd_info_private_data *data;
240 	int mode, err;
241 
242 	mutex_lock(&info_mutex);
243 	err = alloc_info_private(entry, &data);
244 	if (err < 0)
245 		goto unlock;
246 
247 	mode = file->f_flags & O_ACCMODE;
248 	if (((mode == O_RDONLY || mode == O_RDWR) && !entry->c.ops->read) ||
249 	    ((mode == O_WRONLY || mode == O_RDWR) && !entry->c.ops->write)) {
250 		err = -ENODEV;
251 		goto error;
252 	}
253 
254 	if (entry->c.ops->open) {
255 		err = entry->c.ops->open(entry, mode, &data->file_private_data);
256 		if (err < 0)
257 			goto error;
258 	}
259 
260 	file->private_data = data;
261 	mutex_unlock(&info_mutex);
262 	return 0;
263 
264  error:
265 	kfree(data);
266 	module_put(entry->module);
267  unlock:
268 	mutex_unlock(&info_mutex);
269 	return err;
270 }
271 
snd_info_entry_release(struct inode * inode,struct file * file)272 static int snd_info_entry_release(struct inode *inode, struct file *file)
273 {
274 	struct snd_info_private_data *data = file->private_data;
275 	struct snd_info_entry *entry = data->entry;
276 
277 	if (entry->c.ops->release)
278 		entry->c.ops->release(entry, file->f_flags & O_ACCMODE,
279 				      data->file_private_data);
280 	module_put(entry->module);
281 	kfree(data);
282 	return 0;
283 }
284 
285 static const struct file_operations snd_info_entry_operations =
286 {
287 	.owner =		THIS_MODULE,
288 	.llseek =		snd_info_entry_llseek,
289 	.read =			snd_info_entry_read,
290 	.write =		snd_info_entry_write,
291 	.poll =			snd_info_entry_poll,
292 	.unlocked_ioctl =	snd_info_entry_ioctl,
293 	.mmap =			snd_info_entry_mmap,
294 	.open =			snd_info_entry_open,
295 	.release =		snd_info_entry_release,
296 };
297 
298 /*
299  * file ops for text proc files
300  */
snd_info_text_entry_write(struct file * file,const char __user * buffer,size_t count,loff_t * offset)301 static ssize_t snd_info_text_entry_write(struct file *file,
302 					 const char __user *buffer,
303 					 size_t count, loff_t *offset)
304 {
305 	struct seq_file *m = file->private_data;
306 	struct snd_info_private_data *data = m->private;
307 	struct snd_info_entry *entry = data->entry;
308 	struct snd_info_buffer *buf;
309 	loff_t pos;
310 	size_t next;
311 	int err = 0;
312 
313 	if (!entry->c.text.write)
314 		return -EIO;
315 	pos = *offset;
316 	if (!valid_pos(pos, count))
317 		return -EIO;
318 	next = pos + count;
319 	/* don't handle too large text inputs */
320 	if (next > 16 * 1024)
321 		return -EIO;
322 	mutex_lock(&entry->access);
323 	buf = data->wbuffer;
324 	if (!buf) {
325 		data->wbuffer = buf = kzalloc(sizeof(*buf), GFP_KERNEL);
326 		if (!buf) {
327 			err = -ENOMEM;
328 			goto error;
329 		}
330 	}
331 	if (next > buf->len) {
332 		char *nbuf = kvzalloc(PAGE_ALIGN(next), GFP_KERNEL);
333 		if (!nbuf) {
334 			err = -ENOMEM;
335 			goto error;
336 		}
337 		kvfree(buf->buffer);
338 		buf->buffer = nbuf;
339 		buf->len = PAGE_ALIGN(next);
340 	}
341 	if (copy_from_user(buf->buffer + pos, buffer, count)) {
342 		err = -EFAULT;
343 		goto error;
344 	}
345 	buf->size = next;
346  error:
347 	mutex_unlock(&entry->access);
348 	if (err < 0)
349 		return err;
350 	*offset = next;
351 	return count;
352 }
353 
snd_info_seq_show(struct seq_file * seq,void * p)354 static int snd_info_seq_show(struct seq_file *seq, void *p)
355 {
356 	struct snd_info_private_data *data = seq->private;
357 	struct snd_info_entry *entry = data->entry;
358 
359 	if (!entry->c.text.read) {
360 		return -EIO;
361 	} else {
362 		data->rbuffer->buffer = (char *)seq; /* XXX hack! */
363 		entry->c.text.read(entry, data->rbuffer);
364 	}
365 	return 0;
366 }
367 
snd_info_text_entry_open(struct inode * inode,struct file * file)368 static int snd_info_text_entry_open(struct inode *inode, struct file *file)
369 {
370 	struct snd_info_entry *entry = PDE_DATA(inode);
371 	struct snd_info_private_data *data;
372 	int err;
373 
374 	mutex_lock(&info_mutex);
375 	err = alloc_info_private(entry, &data);
376 	if (err < 0)
377 		goto unlock;
378 
379 	data->rbuffer = kzalloc(sizeof(*data->rbuffer), GFP_KERNEL);
380 	if (!data->rbuffer) {
381 		err = -ENOMEM;
382 		goto error;
383 	}
384 	if (entry->size)
385 		err = single_open_size(file, snd_info_seq_show, data,
386 				       entry->size);
387 	else
388 		err = single_open(file, snd_info_seq_show, data);
389 	if (err < 0)
390 		goto error;
391 	mutex_unlock(&info_mutex);
392 	return 0;
393 
394  error:
395 	kfree(data->rbuffer);
396 	kfree(data);
397 	module_put(entry->module);
398  unlock:
399 	mutex_unlock(&info_mutex);
400 	return err;
401 }
402 
snd_info_text_entry_release(struct inode * inode,struct file * file)403 static int snd_info_text_entry_release(struct inode *inode, struct file *file)
404 {
405 	struct seq_file *m = file->private_data;
406 	struct snd_info_private_data *data = m->private;
407 	struct snd_info_entry *entry = data->entry;
408 
409 	if (data->wbuffer && entry->c.text.write)
410 		entry->c.text.write(entry, data->wbuffer);
411 
412 	single_release(inode, file);
413 	kfree(data->rbuffer);
414 	if (data->wbuffer) {
415 		kvfree(data->wbuffer->buffer);
416 		kfree(data->wbuffer);
417 	}
418 
419 	module_put(entry->module);
420 	kfree(data);
421 	return 0;
422 }
423 
424 static const struct file_operations snd_info_text_entry_ops =
425 {
426 	.owner =		THIS_MODULE,
427 	.open =			snd_info_text_entry_open,
428 	.release =		snd_info_text_entry_release,
429 	.write =		snd_info_text_entry_write,
430 	.llseek =		seq_lseek,
431 	.read =			seq_read,
432 };
433 
create_subdir(struct module * mod,const char * name)434 static struct snd_info_entry *create_subdir(struct module *mod,
435 					    const char *name)
436 {
437 	struct snd_info_entry *entry;
438 
439 	entry = snd_info_create_module_entry(mod, name, NULL);
440 	if (!entry)
441 		return NULL;
442 	entry->mode = S_IFDIR | 0555;
443 	if (snd_info_register(entry) < 0) {
444 		snd_info_free_entry(entry);
445 		return NULL;
446 	}
447 	return entry;
448 }
449 
450 static struct snd_info_entry *
451 snd_info_create_entry(const char *name, struct snd_info_entry *parent,
452 		      struct module *module);
453 
snd_info_init(void)454 int __init snd_info_init(void)
455 {
456 	snd_proc_root = snd_info_create_entry("asound", NULL, THIS_MODULE);
457 	if (!snd_proc_root)
458 		return -ENOMEM;
459 	snd_proc_root->mode = S_IFDIR | 0555;
460 	snd_proc_root->p = proc_mkdir("asound", NULL);
461 	if (!snd_proc_root->p)
462 		goto error;
463 #ifdef CONFIG_SND_OSSEMUL
464 	snd_oss_root = create_subdir(THIS_MODULE, "oss");
465 	if (!snd_oss_root)
466 		goto error;
467 #endif
468 #if IS_ENABLED(CONFIG_SND_SEQUENCER)
469 	snd_seq_root = create_subdir(THIS_MODULE, "seq");
470 	if (!snd_seq_root)
471 		goto error;
472 #endif
473 	if (snd_info_version_init() < 0 ||
474 	    snd_minor_info_init() < 0 ||
475 	    snd_minor_info_oss_init() < 0 ||
476 	    snd_card_info_init() < 0 ||
477 	    snd_info_minor_register() < 0)
478 		goto error;
479 	return 0;
480 
481  error:
482 	snd_info_free_entry(snd_proc_root);
483 	return -ENOMEM;
484 }
485 
snd_info_done(void)486 int __exit snd_info_done(void)
487 {
488 	snd_info_free_entry(snd_proc_root);
489 	return 0;
490 }
491 
snd_card_id_read(struct snd_info_entry * entry,struct snd_info_buffer * buffer)492 static void snd_card_id_read(struct snd_info_entry *entry,
493 			     struct snd_info_buffer *buffer)
494 {
495 	struct snd_card *card = entry->private_data;
496 
497 	snd_iprintf(buffer, "%s\n", card->id);
498 }
499 
500 /*
501  * create a card proc file
502  * called from init.c
503  */
snd_info_card_create(struct snd_card * card)504 int snd_info_card_create(struct snd_card *card)
505 {
506 	char str[8];
507 	struct snd_info_entry *entry;
508 
509 	if (snd_BUG_ON(!card))
510 		return -ENXIO;
511 
512 	sprintf(str, "card%i", card->number);
513 	entry = create_subdir(card->module, str);
514 	if (!entry)
515 		return -ENOMEM;
516 	card->proc_root = entry;
517 
518 	return snd_card_ro_proc_new(card, "id", card, snd_card_id_read);
519 }
520 
521 /*
522  * register the card proc file
523  * called from init.c
524  * can be called multiple times for reinitialization
525  */
snd_info_card_register(struct snd_card * card)526 int snd_info_card_register(struct snd_card *card)
527 {
528 	struct proc_dir_entry *p;
529 	int err;
530 
531 	if (snd_BUG_ON(!card))
532 		return -ENXIO;
533 
534 	err = snd_info_register(card->proc_root);
535 	if (err < 0)
536 		return err;
537 
538 	if (!strcmp(card->id, card->proc_root->name))
539 		return 0;
540 
541 	if (card->proc_root_link)
542 		return 0;
543 	p = proc_symlink(card->id, snd_proc_root->p, card->proc_root->name);
544 	if (!p)
545 		return -ENOMEM;
546 	card->proc_root_link = p;
547 	return 0;
548 }
549 
550 /*
551  * called on card->id change
552  */
snd_info_card_id_change(struct snd_card * card)553 void snd_info_card_id_change(struct snd_card *card)
554 {
555 	mutex_lock(&info_mutex);
556 	if (card->proc_root_link) {
557 		proc_remove(card->proc_root_link);
558 		card->proc_root_link = NULL;
559 	}
560 	if (strcmp(card->id, card->proc_root->name))
561 		card->proc_root_link = proc_symlink(card->id,
562 						    snd_proc_root->p,
563 						    card->proc_root->name);
564 	mutex_unlock(&info_mutex);
565 }
566 
567 /*
568  * de-register the card proc file
569  * called from init.c
570  */
snd_info_card_disconnect(struct snd_card * card)571 void snd_info_card_disconnect(struct snd_card *card)
572 {
573 	if (!card)
574 		return;
575 
576 	proc_remove(card->proc_root_link);
577 	if (card->proc_root)
578 		proc_remove(card->proc_root->p);
579 
580 	mutex_lock(&info_mutex);
581 	if (card->proc_root)
582 		snd_info_clear_entries(card->proc_root);
583 	card->proc_root_link = NULL;
584 	card->proc_root = NULL;
585 	mutex_unlock(&info_mutex);
586 }
587 
588 /*
589  * release the card proc file resources
590  * called from init.c
591  */
snd_info_card_free(struct snd_card * card)592 int snd_info_card_free(struct snd_card *card)
593 {
594 	if (!card)
595 		return 0;
596 	snd_info_free_entry(card->proc_root);
597 	card->proc_root = NULL;
598 	return 0;
599 }
600 
601 
602 /**
603  * snd_info_get_line - read one line from the procfs buffer
604  * @buffer: the procfs buffer
605  * @line: the buffer to store
606  * @len: the max. buffer size
607  *
608  * Reads one line from the buffer and stores the string.
609  *
610  * Return: Zero if successful, or 1 if error or EOF.
611  */
snd_info_get_line(struct snd_info_buffer * buffer,char * line,int len)612 int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len)
613 {
614 	int c = -1;
615 
616 	if (snd_BUG_ON(!buffer))
617 		return 1;
618 	if (!buffer->buffer)
619 		return 1;
620 	if (len <= 0 || buffer->stop || buffer->error)
621 		return 1;
622 	while (!buffer->stop) {
623 		c = buffer->buffer[buffer->curr++];
624 		if (buffer->curr >= buffer->size)
625 			buffer->stop = 1;
626 		if (c == '\n')
627 			break;
628 		if (len > 1) {
629 			len--;
630 			*line++ = c;
631 		}
632 	}
633 	*line = '\0';
634 	return 0;
635 }
636 EXPORT_SYMBOL(snd_info_get_line);
637 
638 /**
639  * snd_info_get_str - parse a string token
640  * @dest: the buffer to store the string token
641  * @src: the original string
642  * @len: the max. length of token - 1
643  *
644  * Parses the original string and copy a token to the given
645  * string buffer.
646  *
647  * Return: The updated pointer of the original string so that
648  * it can be used for the next call.
649  */
snd_info_get_str(char * dest,const char * src,int len)650 const char *snd_info_get_str(char *dest, const char *src, int len)
651 {
652 	int c;
653 
654 	while (*src == ' ' || *src == '\t')
655 		src++;
656 	if (*src == '"' || *src == '\'') {
657 		c = *src++;
658 		while (--len > 0 && *src && *src != c) {
659 			*dest++ = *src++;
660 		}
661 		if (*src == c)
662 			src++;
663 	} else {
664 		while (--len > 0 && *src && *src != ' ' && *src != '\t') {
665 			*dest++ = *src++;
666 		}
667 	}
668 	*dest = 0;
669 	while (*src == ' ' || *src == '\t')
670 		src++;
671 	return src;
672 }
673 EXPORT_SYMBOL(snd_info_get_str);
674 
675 /*
676  * snd_info_create_entry - create an info entry
677  * @name: the proc file name
678  * @parent: the parent directory
679  *
680  * Creates an info entry with the given file name and initializes as
681  * the default state.
682  *
683  * Usually called from other functions such as
684  * snd_info_create_card_entry().
685  *
686  * Return: The pointer of the new instance, or %NULL on failure.
687  */
688 static struct snd_info_entry *
snd_info_create_entry(const char * name,struct snd_info_entry * parent,struct module * module)689 snd_info_create_entry(const char *name, struct snd_info_entry *parent,
690 		      struct module *module)
691 {
692 	struct snd_info_entry *entry;
693 	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
694 	if (entry == NULL)
695 		return NULL;
696 	entry->name = kstrdup(name, GFP_KERNEL);
697 	if (entry->name == NULL) {
698 		kfree(entry);
699 		return NULL;
700 	}
701 	entry->mode = S_IFREG | 0444;
702 	entry->content = SNDRV_INFO_CONTENT_TEXT;
703 	mutex_init(&entry->access);
704 	INIT_LIST_HEAD(&entry->children);
705 	INIT_LIST_HEAD(&entry->list);
706 	entry->parent = parent;
707 	entry->module = module;
708 	if (parent) {
709 		mutex_lock(&parent->access);
710 		list_add_tail(&entry->list, &parent->children);
711 		mutex_unlock(&parent->access);
712 	}
713 	return entry;
714 }
715 
716 /**
717  * snd_info_create_module_entry - create an info entry for the given module
718  * @module: the module pointer
719  * @name: the file name
720  * @parent: the parent directory
721  *
722  * Creates a new info entry and assigns it to the given module.
723  *
724  * Return: The pointer of the new instance, or %NULL on failure.
725  */
snd_info_create_module_entry(struct module * module,const char * name,struct snd_info_entry * parent)726 struct snd_info_entry *snd_info_create_module_entry(struct module * module,
727 					       const char *name,
728 					       struct snd_info_entry *parent)
729 {
730 	if (!parent)
731 		parent = snd_proc_root;
732 	return snd_info_create_entry(name, parent, module);
733 }
734 EXPORT_SYMBOL(snd_info_create_module_entry);
735 
736 /**
737  * snd_info_create_card_entry - create an info entry for the given card
738  * @card: the card instance
739  * @name: the file name
740  * @parent: the parent directory
741  *
742  * Creates a new info entry and assigns it to the given card.
743  *
744  * Return: The pointer of the new instance, or %NULL on failure.
745  */
snd_info_create_card_entry(struct snd_card * card,const char * name,struct snd_info_entry * parent)746 struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card,
747 					     const char *name,
748 					     struct snd_info_entry * parent)
749 {
750 	if (!parent)
751 		parent = card->proc_root;
752 	return snd_info_create_entry(name, parent, card->module);
753 }
754 EXPORT_SYMBOL(snd_info_create_card_entry);
755 
snd_info_clear_entries(struct snd_info_entry * entry)756 static void snd_info_clear_entries(struct snd_info_entry *entry)
757 {
758 	struct snd_info_entry *p;
759 
760 	if (!entry->p)
761 		return;
762 	list_for_each_entry(p, &entry->children, list)
763 		snd_info_clear_entries(p);
764 	entry->p = NULL;
765 }
766 
767 /**
768  * snd_info_free_entry - release the info entry
769  * @entry: the info entry
770  *
771  * Releases the info entry.
772  */
snd_info_free_entry(struct snd_info_entry * entry)773 void snd_info_free_entry(struct snd_info_entry * entry)
774 {
775 	struct snd_info_entry *p, *n;
776 
777 	if (!entry)
778 		return;
779 	if (entry->p) {
780 		proc_remove(entry->p);
781 		mutex_lock(&info_mutex);
782 		snd_info_clear_entries(entry);
783 		mutex_unlock(&info_mutex);
784 	}
785 
786 	/* free all children at first */
787 	list_for_each_entry_safe(p, n, &entry->children, list)
788 		snd_info_free_entry(p);
789 
790 	p = entry->parent;
791 	if (p) {
792 		mutex_lock(&p->access);
793 		list_del(&entry->list);
794 		mutex_unlock(&p->access);
795 	}
796 	kfree(entry->name);
797 	if (entry->private_free)
798 		entry->private_free(entry);
799 	kfree(entry);
800 }
801 EXPORT_SYMBOL(snd_info_free_entry);
802 
__snd_info_register(struct snd_info_entry * entry)803 static int __snd_info_register(struct snd_info_entry *entry)
804 {
805 	struct proc_dir_entry *root, *p = NULL;
806 
807 	if (snd_BUG_ON(!entry))
808 		return -ENXIO;
809 	root = entry->parent == NULL ? snd_proc_root->p : entry->parent->p;
810 	mutex_lock(&info_mutex);
811 	if (entry->p || !root)
812 		goto unlock;
813 	if (S_ISDIR(entry->mode)) {
814 		p = proc_mkdir_mode(entry->name, entry->mode, root);
815 		if (!p) {
816 			mutex_unlock(&info_mutex);
817 			return -ENOMEM;
818 		}
819 	} else {
820 		const struct file_operations *ops;
821 		if (entry->content == SNDRV_INFO_CONTENT_DATA)
822 			ops = &snd_info_entry_operations;
823 		else
824 			ops = &snd_info_text_entry_ops;
825 		p = proc_create_data(entry->name, entry->mode, root,
826 				     ops, entry);
827 		if (!p) {
828 			mutex_unlock(&info_mutex);
829 			return -ENOMEM;
830 		}
831 		proc_set_size(p, entry->size);
832 	}
833 	entry->p = p;
834  unlock:
835 	mutex_unlock(&info_mutex);
836 	return 0;
837 }
838 
839 /**
840  * snd_info_register - register the info entry
841  * @entry: the info entry
842  *
843  * Registers the proc info entry.
844  * The all children entries are registered recursively.
845  *
846  * Return: Zero if successful, or a negative error code on failure.
847  */
snd_info_register(struct snd_info_entry * entry)848 int snd_info_register(struct snd_info_entry *entry)
849 {
850 	struct snd_info_entry *p;
851 	int err;
852 
853 	if (!entry->p) {
854 		err = __snd_info_register(entry);
855 		if (err < 0)
856 			return err;
857 	}
858 
859 	list_for_each_entry(p, &entry->children, list) {
860 		err = snd_info_register(p);
861 		if (err < 0)
862 			return err;
863 	}
864 
865 	return 0;
866 }
867 EXPORT_SYMBOL(snd_info_register);
868 
869 /**
870  * snd_card_rw_proc_new - Create a read/write text proc file entry for the card
871  * @card: the card instance
872  * @name: the file name
873  * @private_data: the arbitrary private data
874  * @read: the read callback
875  * @write: the write callback, NULL for read-only
876  *
877  * This proc file entry will be registered via snd_card_register() call, and
878  * it will be removed automatically at the card removal, too.
879  */
snd_card_rw_proc_new(struct snd_card * card,const char * name,void * private_data,void (* read)(struct snd_info_entry *,struct snd_info_buffer *),void (* write)(struct snd_info_entry * entry,struct snd_info_buffer * buffer))880 int snd_card_rw_proc_new(struct snd_card *card, const char *name,
881 			 void *private_data,
882 			 void (*read)(struct snd_info_entry *,
883 				      struct snd_info_buffer *),
884 			 void (*write)(struct snd_info_entry *entry,
885 				       struct snd_info_buffer *buffer))
886 {
887 	struct snd_info_entry *entry;
888 
889 	entry = snd_info_create_card_entry(card, name, card->proc_root);
890 	if (!entry)
891 		return -ENOMEM;
892 	snd_info_set_text_ops(entry, private_data, read);
893 	if (write) {
894 		entry->mode |= 0200;
895 		entry->c.text.write = write;
896 	}
897 	return 0;
898 }
899 EXPORT_SYMBOL_GPL(snd_card_rw_proc_new);
900 
901 /*
902 
903  */
904 
snd_info_version_read(struct snd_info_entry * entry,struct snd_info_buffer * buffer)905 static void snd_info_version_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
906 {
907 	snd_iprintf(buffer,
908 		    "Advanced Linux Sound Architecture Driver Version k%s.\n",
909 		    init_utsname()->release);
910 }
911 
snd_info_version_init(void)912 static int __init snd_info_version_init(void)
913 {
914 	struct snd_info_entry *entry;
915 
916 	entry = snd_info_create_module_entry(THIS_MODULE, "version", NULL);
917 	if (entry == NULL)
918 		return -ENOMEM;
919 	entry->c.text.read = snd_info_version_read;
920 	return snd_info_register(entry); /* freed in error path */
921 }
922