info.c 19.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 *  Information interface for ALSA driver
3
 *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 *
 *   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
 *
 */

#include <linux/init.h>
#include <linux/time.h>
24
#include <linux/mm.h>
25
#include <linux/slab.h>
26
#include <linux/string.h>
27
#include <linux/module.h>
L
Linus Torvalds 已提交
28 29 30
#include <sound/core.h>
#include <sound/minors.h>
#include <sound/info.h>
31
#include <linux/utsname.h>
L
Linus Torvalds 已提交
32
#include <linux/proc_fs.h>
33
#include <linux/mutex.h>
L
Linus Torvalds 已提交
34 35 36 37 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 63 64
#include <stdarg.h>

int snd_info_check_reserved_words(const char *str)
{
	static char *reserved[] =
	{
		"version",
		"meminfo",
		"memdebug",
		"detect",
		"devices",
		"oss",
		"cards",
		"timers",
		"synth",
		"pcm",
		"seq",
		NULL
	};
	char **xstr = reserved;

	while (*xstr) {
		if (!strcmp(*xstr, str))
			return 0;
		xstr++;
	}
	if (!strncmp(str, "card", 4))
		return 0;
	return 1;
}

65
static DEFINE_MUTEX(info_mutex);
L
Linus Torvalds 已提交
66

67 68 69 70
struct snd_info_private_data {
	struct snd_info_buffer *rbuffer;
	struct snd_info_buffer *wbuffer;
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
71
	void *file_private_data;
72
};
L
Linus Torvalds 已提交
73 74

static int snd_info_version_init(void);
75
static void snd_info_disconnect(struct snd_info_entry *entry);
L
Linus Torvalds 已提交
76 77 78 79 80

/*

 */

81
static struct snd_info_entry *snd_proc_root;
82
struct snd_info_entry *snd_seq_root;
83 84
EXPORT_SYMBOL(snd_seq_root);

L
Linus Torvalds 已提交
85
#ifdef CONFIG_SND_OSSEMUL
86
struct snd_info_entry *snd_oss_root;
L
Linus Torvalds 已提交
87 88
#endif

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
static int alloc_info_private(struct snd_info_entry *entry,
			      struct snd_info_private_data **ret)
{
	struct snd_info_private_data *data;

	if (!entry || !entry->p)
		return -ENODEV;
	if (!try_module_get(entry->module))
		return -EFAULT;
	data = kzalloc(sizeof(*data), GFP_KERNEL);
	if (!data) {
		module_put(entry->module);
		return -ENOMEM;
	}
	data->entry = entry;
	*ret = data;
	return 0;
}

static bool valid_pos(loff_t pos, size_t count)
{
	if (pos < 0 || (long) pos != pos || (ssize_t) count < 0)
		return false;
	if ((unsigned long) pos + (unsigned long) count < (unsigned long) pos)
		return false;
	return true;
}

/*
 * file ops for binary proc files
 */
L
Linus Torvalds 已提交
120 121
static loff_t snd_info_entry_llseek(struct file *file, loff_t offset, int orig)
{
122
	struct snd_info_private_data *data;
L
Linus Torvalds 已提交
123
	struct snd_info_entry *entry;
124
	loff_t ret = -EINVAL, size;
L
Linus Torvalds 已提交
125 126 127

	data = file->private_data;
	entry = data->entry;
T
Takashi Iwai 已提交
128
	mutex_lock(&entry->access);
129
	if (entry->c.ops->llseek) {
130 131 132 133 134
		offset = entry->c.ops->llseek(entry,
					      data->file_private_data,
					      file, offset, orig);
		goto out;
	}
135 136

	size = entry->size;
137 138 139 140 141
	switch (orig) {
	case SEEK_SET:
		break;
	case SEEK_CUR:
		offset += file->f_pos;
L
Linus Torvalds 已提交
142
		break;
143 144
	case SEEK_END:
		if (!size)
L
Linus Torvalds 已提交
145
			goto out;
146
		offset += size;
L
Linus Torvalds 已提交
147
		break;
148 149
	default:
		goto out;
L
Linus Torvalds 已提交
150
	}
151 152 153 154 155 156 157
	if (offset < 0)
		goto out;
	if (size && offset > size)
		offset = size;
	file->f_pos = offset;
	ret = offset;
 out:
T
Takashi Iwai 已提交
158
	mutex_unlock(&entry->access);
L
Linus Torvalds 已提交
159 160 161 162 163 164
	return ret;
}

static ssize_t snd_info_entry_read(struct file *file, char __user *buffer,
				   size_t count, loff_t * offset)
{
165 166 167
	struct snd_info_private_data *data = file->private_data;
	struct snd_info_entry *entry = data->entry;
	size_t size;
L
Linus Torvalds 已提交
168 169 170
	loff_t pos;

	pos = *offset;
171
	if (!valid_pos(pos, count))
L
Linus Torvalds 已提交
172
		return -EIO;
173 174 175 176 177 178
	if (pos >= entry->size)
		return 0;
	size = entry->size - pos;
	size = min(count, size);
	size = entry->c.ops->read(entry, data->file_private_data,
				  file, buffer, size, pos);
L
Linus Torvalds 已提交
179 180 181 182 183 184 185 186
	if ((ssize_t) size > 0)
		*offset = pos + size;
	return size;
}

static ssize_t snd_info_entry_write(struct file *file, const char __user *buffer,
				    size_t count, loff_t * offset)
{
187 188
	struct snd_info_private_data *data = file->private_data;
	struct snd_info_entry *entry = data->entry;
189
	ssize_t size = 0;
L
Linus Torvalds 已提交
190 191 192
	loff_t pos;

	pos = *offset;
193
	if (!valid_pos(pos, count))
L
Linus Torvalds 已提交
194
		return -EIO;
195 196 197 198 199
	if (count > 0) {
		size_t maxsize = entry->size - pos;
		count = min(count, maxsize);
		size = entry->c.ops->write(entry, data->file_private_data,
					   file, buffer, count, pos);
L
Linus Torvalds 已提交
200
	}
201
	if (size > 0)
L
Linus Torvalds 已提交
202 203 204 205
		*offset = pos + size;
	return size;
}

A
Al Viro 已提交
206
static __poll_t snd_info_entry_poll(struct file *file, poll_table *wait)
207 208 209
{
	struct snd_info_private_data *data = file->private_data;
	struct snd_info_entry *entry = data->entry;
A
Al Viro 已提交
210
	__poll_t mask = 0;
211 212 213 214 215 216

	if (entry->c.ops->poll)
		return entry->c.ops->poll(entry,
					  data->file_private_data,
					  file, wait);
	if (entry->c.ops->read)
217
		mask |= EPOLLIN | EPOLLRDNORM;
218
	if (entry->c.ops->write)
219
		mask |= EPOLLOUT | EPOLLWRNORM;
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
	return mask;
}

static long snd_info_entry_ioctl(struct file *file, unsigned int cmd,
				unsigned long arg)
{
	struct snd_info_private_data *data = file->private_data;
	struct snd_info_entry *entry = data->entry;

	if (!entry->c.ops->ioctl)
		return -ENOTTY;
	return entry->c.ops->ioctl(entry, data->file_private_data,
				   file, cmd, arg);
}

static int snd_info_entry_mmap(struct file *file, struct vm_area_struct *vma)
L
Linus Torvalds 已提交
236
{
237 238
	struct inode *inode = file_inode(file);
	struct snd_info_private_data *data;
239
	struct snd_info_entry *entry;
240 241 242 243 244 245 246 247 248 249 250 251 252 253

	data = file->private_data;
	if (data == NULL)
		return 0;
	entry = data->entry;
	if (!entry->c.ops->mmap)
		return -ENXIO;
	return entry->c.ops->mmap(entry, data->file_private_data,
				  inode, file, vma);
}

static int snd_info_entry_open(struct inode *inode, struct file *file)
{
	struct snd_info_entry *entry = PDE_DATA(inode);
254
	struct snd_info_private_data *data;
L
Linus Torvalds 已提交
255 256
	int mode, err;

257
	mutex_lock(&info_mutex);
258 259 260 261
	err = alloc_info_private(entry, &data);
	if (err < 0)
		goto unlock;

L
Linus Torvalds 已提交
262
	mode = file->f_flags & O_ACCMODE;
263 264 265 266
	if (((mode == O_RDONLY || mode == O_RDWR) && !entry->c.ops->read) ||
	    ((mode == O_WRONLY || mode == O_RDWR) && !entry->c.ops->write)) {
		err = -ENODEV;
		goto error;
L
Linus Torvalds 已提交
267
	}
268 269 270 271 272

	if (entry->c.ops->open) {
		err = entry->c.ops->open(entry, mode, &data->file_private_data);
		if (err < 0)
			goto error;
L
Linus Torvalds 已提交
273
	}
274

L
Linus Torvalds 已提交
275
	file->private_data = data;
276
	mutex_unlock(&info_mutex);
L
Linus Torvalds 已提交
277 278
	return 0;

279
 error:
280
	kfree(data);
L
Linus Torvalds 已提交
281
	module_put(entry->module);
282
 unlock:
283
	mutex_unlock(&info_mutex);
L
Linus Torvalds 已提交
284 285 286 287 288
	return err;
}

static int snd_info_entry_release(struct inode *inode, struct file *file)
{
289 290
	struct snd_info_private_data *data = file->private_data;
	struct snd_info_entry *entry = data->entry;
L
Linus Torvalds 已提交
291

292 293 294
	if (entry->c.ops->release)
		entry->c.ops->release(entry, file->f_flags & O_ACCMODE,
				      data->file_private_data);
L
Linus Torvalds 已提交
295 296 297 298 299
	module_put(entry->module);
	kfree(data);
	return 0;
}

300
static const struct file_operations snd_info_entry_operations =
L
Linus Torvalds 已提交
301
{
302 303 304 305 306 307 308 309 310 311
	.owner =		THIS_MODULE,
	.llseek =		snd_info_entry_llseek,
	.read =			snd_info_entry_read,
	.write =		snd_info_entry_write,
	.poll =			snd_info_entry_poll,
	.unlocked_ioctl =	snd_info_entry_ioctl,
	.mmap =			snd_info_entry_mmap,
	.open =			snd_info_entry_open,
	.release =		snd_info_entry_release,
};
L
Linus Torvalds 已提交
312

313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
/*
 * file ops for text proc files
 */
static ssize_t snd_info_text_entry_write(struct file *file,
					 const char __user *buffer,
					 size_t count, loff_t *offset)
{
	struct seq_file *m = file->private_data;
	struct snd_info_private_data *data = m->private;
	struct snd_info_entry *entry = data->entry;
	struct snd_info_buffer *buf;
	loff_t pos;
	size_t next;
	int err = 0;

328 329
	if (!entry->c.text.write)
		return -EIO;
330 331 332 333
	pos = *offset;
	if (!valid_pos(pos, count))
		return -EIO;
	next = pos + count;
334 335 336
	/* don't handle too large text inputs */
	if (next > 16 * 1024)
		return -EIO;
337 338 339 340 341 342 343 344
	mutex_lock(&entry->access);
	buf = data->wbuffer;
	if (!buf) {
		data->wbuffer = buf = kzalloc(sizeof(*buf), GFP_KERNEL);
		if (!buf) {
			err = -ENOMEM;
			goto error;
		}
L
Linus Torvalds 已提交
345
	}
346
	if (next > buf->len) {
347
		char *nbuf = kvzalloc(PAGE_ALIGN(next), GFP_KERNEL);
348 349 350 351
		if (!nbuf) {
			err = -ENOMEM;
			goto error;
		}
352
		kvfree(buf->buffer);
353 354 355 356 357 358 359 360 361 362 363 364 365 366
		buf->buffer = nbuf;
		buf->len = PAGE_ALIGN(next);
	}
	if (copy_from_user(buf->buffer + pos, buffer, count)) {
		err = -EFAULT;
		goto error;
	}
	buf->size = next;
 error:
	mutex_unlock(&entry->access);
	if (err < 0)
		return err;
	*offset = next;
	return count;
L
Linus Torvalds 已提交
367 368
}

369
static int snd_info_seq_show(struct seq_file *seq, void *p)
L
Linus Torvalds 已提交
370
{
371 372
	struct snd_info_private_data *data = seq->private;
	struct snd_info_entry *entry = data->entry;
L
Linus Torvalds 已提交
373

374 375 376
	if (!entry->c.text.read) {
		return -EIO;
	} else {
377 378
		data->rbuffer->buffer = (char *)seq; /* XXX hack! */
		entry->c.text.read(entry, data->rbuffer);
L
Linus Torvalds 已提交
379
	}
380
	return 0;
L
Linus Torvalds 已提交
381 382
}

383
static int snd_info_text_entry_open(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
384
{
385
	struct snd_info_entry *entry = PDE_DATA(inode);
386
	struct snd_info_private_data *data;
387
	int err;
L
Linus Torvalds 已提交
388

389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
	mutex_lock(&info_mutex);
	err = alloc_info_private(entry, &data);
	if (err < 0)
		goto unlock;

	data->rbuffer = kzalloc(sizeof(*data->rbuffer), GFP_KERNEL);
	if (!data->rbuffer) {
		err = -ENOMEM;
		goto error;
	}
	if (entry->size)
		err = single_open_size(file, snd_info_seq_show, data,
				       entry->size);
	else
		err = single_open(file, snd_info_seq_show, data);
	if (err < 0)
		goto error;
	mutex_unlock(&info_mutex);
	return 0;

 error:
	kfree(data->rbuffer);
	kfree(data);
	module_put(entry->module);
 unlock:
	mutex_unlock(&info_mutex);
	return err;
}

static int snd_info_text_entry_release(struct inode *inode, struct file *file)
{
	struct seq_file *m = file->private_data;
	struct snd_info_private_data *data = m->private;
	struct snd_info_entry *entry = data->entry;

	if (data->wbuffer && entry->c.text.write)
		entry->c.text.write(entry, data->wbuffer);

	single_release(inode, file);
	kfree(data->rbuffer);
	if (data->wbuffer) {
430
		kvfree(data->wbuffer->buffer);
431
		kfree(data->wbuffer);
L
Linus Torvalds 已提交
432
	}
433 434 435 436

	module_put(entry->module);
	kfree(data);
	return 0;
L
Linus Torvalds 已提交
437 438
}

439
static const struct file_operations snd_info_text_entry_ops =
L
Linus Torvalds 已提交
440
{
441
	.owner =		THIS_MODULE,
442 443 444 445 446
	.open =			snd_info_text_entry_open,
	.release =		snd_info_text_entry_release,
	.write =		snd_info_text_entry_write,
	.llseek =		seq_lseek,
	.read =			seq_read,
L
Linus Torvalds 已提交
447 448
};

449 450 451 452 453 454 455 456
static struct snd_info_entry *create_subdir(struct module *mod,
					    const char *name)
{
	struct snd_info_entry *entry;

	entry = snd_info_create_module_entry(mod, name, NULL);
	if (!entry)
		return NULL;
457
	entry->mode = S_IFDIR | 0555;
458 459 460 461 462 463 464
	if (snd_info_register(entry) < 0) {
		snd_info_free_entry(entry);
		return NULL;
	}
	return entry;
}

465 466
static struct snd_info_entry *
snd_info_create_entry(const char *name, struct snd_info_entry *parent);
467

L
Linus Torvalds 已提交
468 469
int __init snd_info_init(void)
{
470
	snd_proc_root = snd_info_create_entry("asound", NULL);
471
	if (!snd_proc_root)
L
Linus Torvalds 已提交
472
		return -ENOMEM;
473
	snd_proc_root->mode = S_IFDIR | 0555;
474 475 476
	snd_proc_root->p = proc_mkdir("asound", NULL);
	if (!snd_proc_root->p)
		goto error;
L
Linus Torvalds 已提交
477
#ifdef CONFIG_SND_OSSEMUL
478 479 480
	snd_oss_root = create_subdir(THIS_MODULE, "oss");
	if (!snd_oss_root)
		goto error;
L
Linus Torvalds 已提交
481
#endif
T
Takashi Iwai 已提交
482
#if IS_ENABLED(CONFIG_SND_SEQUENCER)
483 484 485
	snd_seq_root = create_subdir(THIS_MODULE, "seq");
	if (!snd_seq_root)
		goto error;
L
Linus Torvalds 已提交
486
#endif
487 488 489
	if (snd_info_version_init() < 0 ||
	    snd_minor_info_init() < 0 ||
	    snd_minor_info_oss_init() < 0 ||
490 491
	    snd_card_info_init() < 0 ||
	    snd_info_minor_register() < 0)
492
		goto error;
L
Linus Torvalds 已提交
493
	return 0;
494 495

 error:
496
	snd_info_free_entry(snd_proc_root);
497
	return -ENOMEM;
L
Linus Torvalds 已提交
498 499 500 501
}

int __exit snd_info_done(void)
{
502
	snd_info_free_entry(snd_proc_root);
L
Linus Torvalds 已提交
503 504 505 506 507 508 509
	return 0;
}

/*
 * create a card proc file
 * called from init.c
 */
510
int snd_info_card_create(struct snd_card *card)
L
Linus Torvalds 已提交
511 512
{
	char str[8];
513
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
514

515 516
	if (snd_BUG_ON(!card))
		return -ENXIO;
L
Linus Torvalds 已提交
517 518

	sprintf(str, "card%i", card->number);
519 520
	entry = create_subdir(card->module, str);
	if (!entry)
L
Linus Torvalds 已提交
521 522 523 524 525
		return -ENOMEM;
	card->proc_root = entry;
	return 0;
}

526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
/* register all pending info entries */
static int snd_info_register_recursive(struct snd_info_entry *entry)
{
	struct snd_info_entry *p;
	int err;

	if (!entry->p) {
		err = snd_info_register(entry);
		if (err < 0)
			return err;
	}

	list_for_each_entry(p, &entry->children, list) {
		err = snd_info_register_recursive(p);
		if (err < 0)
			return err;
	}

	return 0;
}

L
Linus Torvalds 已提交
547 548 549
/*
 * register the card proc file
 * called from init.c
550
 * can be called multiple times for reinitialization
L
Linus Torvalds 已提交
551
 */
552
int snd_info_card_register(struct snd_card *card)
L
Linus Torvalds 已提交
553 554
{
	struct proc_dir_entry *p;
555
	int err;
L
Linus Torvalds 已提交
556

557 558
	if (snd_BUG_ON(!card))
		return -ENXIO;
L
Linus Torvalds 已提交
559

560 561 562 563
	err = snd_info_register_recursive(card->proc_root);
	if (err < 0)
		return err;

L
Linus Torvalds 已提交
564 565 566
	if (!strcmp(card->id, card->proc_root->name))
		return 0;

567 568
	if (card->proc_root_link)
		return 0;
569
	p = proc_symlink(card->id, snd_proc_root->p, card->proc_root->name);
570
	if (!p)
L
Linus Torvalds 已提交
571 572 573 574 575
		return -ENOMEM;
	card->proc_root_link = p;
	return 0;
}

576 577 578 579 580 581 582
/*
 * called on card->id change
 */
void snd_info_card_id_change(struct snd_card *card)
{
	mutex_lock(&info_mutex);
	if (card->proc_root_link) {
583
		proc_remove(card->proc_root_link);
584 585 586 587
		card->proc_root_link = NULL;
	}
	if (strcmp(card->id, card->proc_root->name))
		card->proc_root_link = proc_symlink(card->id,
588
						    snd_proc_root->p,
589 590 591 592
						    card->proc_root->name);
	mutex_unlock(&info_mutex);
}

L
Linus Torvalds 已提交
593 594 595 596
/*
 * de-register the card proc file
 * called from init.c
 */
597
void snd_info_card_disconnect(struct snd_card *card)
L
Linus Torvalds 已提交
598
{
599 600
	if (!card)
		return;
601
	mutex_lock(&info_mutex);
602 603
	proc_remove(card->proc_root_link);
	card->proc_root_link = NULL;
604 605 606 607 608 609 610 611 612 613 614
	if (card->proc_root)
		snd_info_disconnect(card->proc_root);
	mutex_unlock(&info_mutex);
}

/*
 * release the card proc file resources
 * called from init.c
 */
int snd_info_card_free(struct snd_card *card)
{
615 616
	if (!card)
		return 0;
617 618
	snd_info_free_entry(card->proc_root);
	card->proc_root = NULL;
L
Linus Torvalds 已提交
619 620 621 622 623 624 625 626
	return 0;
}


/**
 * snd_info_get_line - read one line from the procfs buffer
 * @buffer: the procfs buffer
 * @line: the buffer to store
627
 * @len: the max. buffer size
L
Linus Torvalds 已提交
628 629 630
 *
 * Reads one line from the buffer and stores the string.
 *
631
 * Return: Zero if successful, or 1 if error or EOF.
L
Linus Torvalds 已提交
632
 */
633
int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len)
L
Linus Torvalds 已提交
634 635 636
{
	int c = -1;

637 638
	if (snd_BUG_ON(!buffer || !buffer->buffer))
		return 1;
L
Linus Torvalds 已提交
639 640
	if (len <= 0 || buffer->stop || buffer->error)
		return 1;
641
	while (!buffer->stop) {
642
		c = buffer->buffer[buffer->curr++];
643
		if (buffer->curr >= buffer->size)
L
Linus Torvalds 已提交
644
			buffer->stop = 1;
645
		if (c == '\n')
L
Linus Torvalds 已提交
646
			break;
647
		if (len > 1) {
648 649
			len--;
			*line++ = c;
L
Linus Torvalds 已提交
650 651 652 653 654
		}
	}
	*line = '\0';
	return 0;
}
655 656
EXPORT_SYMBOL(snd_info_get_line);

L
Linus Torvalds 已提交
657
/**
658
 * snd_info_get_str - parse a string token
L
Linus Torvalds 已提交
659 660 661 662 663 664 665
 * @dest: the buffer to store the string token
 * @src: the original string
 * @len: the max. length of token - 1
 *
 * Parses the original string and copy a token to the given
 * string buffer.
 *
666
 * Return: The updated pointer of the original string so that
L
Linus Torvalds 已提交
667 668
 * it can be used for the next call.
 */
669
const char *snd_info_get_str(char *dest, const char *src, int len)
L
Linus Torvalds 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
{
	int c;

	while (*src == ' ' || *src == '\t')
		src++;
	if (*src == '"' || *src == '\'') {
		c = *src++;
		while (--len > 0 && *src && *src != c) {
			*dest++ = *src++;
		}
		if (*src == c)
			src++;
	} else {
		while (--len > 0 && *src && *src != ' ' && *src != '\t') {
			*dest++ = *src++;
		}
	}
	*dest = 0;
	while (*src == ' ' || *src == '\t')
		src++;
	return src;
}
692 693
EXPORT_SYMBOL(snd_info_get_str);

694
/*
L
Linus Torvalds 已提交
695 696
 * snd_info_create_entry - create an info entry
 * @name: the proc file name
697
 * @parent: the parent directory
L
Linus Torvalds 已提交
698 699 700 701 702 703 704
 *
 * Creates an info entry with the given file name and initializes as
 * the default state.
 *
 * Usually called from other functions such as
 * snd_info_create_card_entry().
 *
705
 * Return: The pointer of the new instance, or %NULL on failure.
L
Linus Torvalds 已提交
706
 */
707 708
static struct snd_info_entry *
snd_info_create_entry(const char *name, struct snd_info_entry *parent)
L
Linus Torvalds 已提交
709
{
710
	struct snd_info_entry *entry;
711
	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
L
Linus Torvalds 已提交
712 713
	if (entry == NULL)
		return NULL;
714
	entry->name = kstrdup(name, GFP_KERNEL);
L
Linus Torvalds 已提交
715 716 717 718
	if (entry->name == NULL) {
		kfree(entry);
		return NULL;
	}
719
	entry->mode = S_IFREG | 0444;
L
Linus Torvalds 已提交
720
	entry->content = SNDRV_INFO_CONTENT_TEXT;
721
	mutex_init(&entry->access);
722 723
	INIT_LIST_HEAD(&entry->children);
	INIT_LIST_HEAD(&entry->list);
724
	entry->parent = parent;
725 726
	if (parent) {
		mutex_lock(&parent->access);
727
		list_add_tail(&entry->list, &parent->children);
728 729
		mutex_unlock(&parent->access);
	}
L
Linus Torvalds 已提交
730 731 732 733 734 735 736 737 738 739 740
	return entry;
}

/**
 * snd_info_create_module_entry - create an info entry for the given module
 * @module: the module pointer
 * @name: the file name
 * @parent: the parent directory
 *
 * Creates a new info entry and assigns it to the given module.
 *
741
 * Return: The pointer of the new instance, or %NULL on failure.
L
Linus Torvalds 已提交
742
 */
743
struct snd_info_entry *snd_info_create_module_entry(struct module * module,
L
Linus Torvalds 已提交
744
					       const char *name,
745
					       struct snd_info_entry *parent)
L
Linus Torvalds 已提交
746
{
747 748
	struct snd_info_entry *entry = snd_info_create_entry(name, parent);
	if (entry)
L
Linus Torvalds 已提交
749 750 751
		entry->module = module;
	return entry;
}
752 753
EXPORT_SYMBOL(snd_info_create_module_entry);

L
Linus Torvalds 已提交
754 755 756 757 758 759 760 761
/**
 * snd_info_create_card_entry - create an info entry for the given card
 * @card: the card instance
 * @name: the file name
 * @parent: the parent directory
 *
 * Creates a new info entry and assigns it to the given card.
 *
762
 * Return: The pointer of the new instance, or %NULL on failure.
L
Linus Torvalds 已提交
763
 */
764
struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card,
L
Linus Torvalds 已提交
765
					     const char *name,
766
					     struct snd_info_entry * parent)
L
Linus Torvalds 已提交
767
{
768
	struct snd_info_entry *entry = snd_info_create_entry(name, parent);
L
Linus Torvalds 已提交
769 770 771 772 773 774
	if (entry) {
		entry->module = card->module;
		entry->card = card;
	}
	return entry;
}
775 776
EXPORT_SYMBOL(snd_info_create_card_entry);

777
static void snd_info_disconnect(struct snd_info_entry *entry)
L
Linus Torvalds 已提交
778
{
779
	struct snd_info_entry *p;
L
Linus Torvalds 已提交
780

781
	if (!entry->p)
782
		return;
783
	list_for_each_entry(p, &entry->children, list)
784
		snd_info_disconnect(p);
785
	proc_remove(entry->p);
786
	entry->p = NULL;
L
Linus Torvalds 已提交
787 788 789 790 791 792
}

/**
 * snd_info_free_entry - release the info entry
 * @entry: the info entry
 *
793
 * Releases the info entry.
L
Linus Torvalds 已提交
794
 */
795
void snd_info_free_entry(struct snd_info_entry * entry)
L
Linus Torvalds 已提交
796
{
797 798 799
	struct snd_info_entry *p, *n;

	if (!entry)
L
Linus Torvalds 已提交
800
		return;
801 802 803 804 805
	if (entry->p) {
		mutex_lock(&info_mutex);
		snd_info_disconnect(entry);
		mutex_unlock(&info_mutex);
	}
806 807 808 809 810

	/* free all children at first */
	list_for_each_entry_safe(p, n, &entry->children, list)
		snd_info_free_entry(p);

811 812 813 814 815 816
	p = entry->parent;
	if (p) {
		mutex_lock(&p->access);
		list_del(&entry->list);
		mutex_unlock(&p->access);
	}
L
Linus Torvalds 已提交
817 818 819 820 821
	kfree(entry->name);
	if (entry->private_free)
		entry->private_free(entry);
	kfree(entry);
}
822 823
EXPORT_SYMBOL(snd_info_free_entry);

L
Linus Torvalds 已提交
824 825 826 827 828 829
/**
 * snd_info_register - register the info entry
 * @entry: the info entry
 *
 * Registers the proc info entry.
 *
830
 * Return: Zero if successful, or a negative error code on failure.
L
Linus Torvalds 已提交
831
 */
832
int snd_info_register(struct snd_info_entry * entry)
L
Linus Torvalds 已提交
833 834 835
{
	struct proc_dir_entry *root, *p = NULL;

836 837
	if (snd_BUG_ON(!entry))
		return -ENXIO;
838
	root = entry->parent == NULL ? snd_proc_root->p : entry->parent->p;
839
	mutex_lock(&info_mutex);
840 841 842 843 844 845 846
	if (S_ISDIR(entry->mode)) {
		p = proc_mkdir_mode(entry->name, entry->mode, root);
		if (!p) {
			mutex_unlock(&info_mutex);
			return -ENOMEM;
		}
	} else {
847 848 849 850 851
		const struct file_operations *ops;
		if (entry->content == SNDRV_INFO_CONTENT_DATA)
			ops = &snd_info_entry_operations;
		else
			ops = &snd_info_text_entry_ops;
852
		p = proc_create_data(entry->name, entry->mode, root,
853
				     ops, entry);
854 855 856 857
		if (!p) {
			mutex_unlock(&info_mutex);
			return -ENOMEM;
		}
858
		proc_set_size(p, entry->size);
L
Linus Torvalds 已提交
859 860
	}
	entry->p = p;
861
	mutex_unlock(&info_mutex);
L
Linus Torvalds 已提交
862 863
	return 0;
}
864 865
EXPORT_SYMBOL(snd_info_register);

L
Linus Torvalds 已提交
866 867 868 869
/*

 */

870
static void snd_info_version_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
871 872
{
	snd_iprintf(buffer,
873 874
		    "Advanced Linux Sound Architecture Driver Version k%s.\n",
		    init_utsname()->release);
L
Linus Torvalds 已提交
875 876 877 878
}

static int __init snd_info_version_init(void)
{
879
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
880 881 882 883 884

	entry = snd_info_create_module_entry(THIS_MODULE, "version", NULL);
	if (entry == NULL)
		return -ENOMEM;
	entry->c.text.read = snd_info_version_read;
885
	return snd_info_register(entry); /* freed in error path */
L
Linus Torvalds 已提交
886
}