info.c 20.8 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
#include <stdarg.h>

/*
 *
 */

40 41
#ifdef CONFIG_PROC_FS

L
Linus Torvalds 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
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;
}

71
static DEFINE_MUTEX(info_mutex);
L
Linus Torvalds 已提交
72

73 74 75 76
struct snd_info_private_data {
	struct snd_info_buffer *rbuffer;
	struct snd_info_buffer *wbuffer;
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
77
	void *file_private_data;
78
};
L
Linus Torvalds 已提交
79 80 81

static int snd_info_version_init(void);
static int snd_info_version_done(void);
82
static void snd_info_disconnect(struct snd_info_entry *entry);
L
Linus Torvalds 已提交
83 84 85 86 87

/*

 */

88 89
static struct proc_dir_entry *snd_proc_root;
struct snd_info_entry *snd_seq_root;
90 91
EXPORT_SYMBOL(snd_seq_root);

L
Linus Torvalds 已提交
92
#ifdef CONFIG_SND_OSSEMUL
93
struct snd_info_entry *snd_oss_root;
L
Linus Torvalds 已提交
94 95
#endif

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
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 已提交
127 128
static loff_t snd_info_entry_llseek(struct file *file, loff_t offset, int orig)
{
129
	struct snd_info_private_data *data;
L
Linus Torvalds 已提交
130
	struct snd_info_entry *entry;
131
	loff_t ret = -EINVAL, size;
L
Linus Torvalds 已提交
132 133 134

	data = file->private_data;
	entry = data->entry;
T
Takashi Iwai 已提交
135
	mutex_lock(&entry->access);
136
	if (entry->c.ops->llseek) {
137 138 139 140 141
		offset = entry->c.ops->llseek(entry,
					      data->file_private_data,
					      file, offset, orig);
		goto out;
	}
142 143

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

static ssize_t snd_info_entry_read(struct file *file, char __user *buffer,
				   size_t count, loff_t * offset)
{
172 173 174
	struct snd_info_private_data *data = file->private_data;
	struct snd_info_entry *entry = data->entry;
	size_t size;
L
Linus Torvalds 已提交
175 176 177
	loff_t pos;

	pos = *offset;
178
	if (!valid_pos(pos, count))
L
Linus Torvalds 已提交
179
		return -EIO;
180 181 182 183 184 185
	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 已提交
186 187 188 189 190 191 192 193
	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)
{
194 195
	struct snd_info_private_data *data = file->private_data;
	struct snd_info_entry *entry = data->entry;
196
	ssize_t size = 0;
L
Linus Torvalds 已提交
197 198 199
	loff_t pos;

	pos = *offset;
200
	if (!valid_pos(pos, count))
L
Linus Torvalds 已提交
201
		return -EIO;
202 203 204 205 206
	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 已提交
207
	}
208
	if (size > 0)
L
Linus Torvalds 已提交
209 210 211 212
		*offset = pos + size;
	return size;
}

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
static unsigned int snd_info_entry_poll(struct file *file, poll_table *wait)
{
	struct snd_info_private_data *data = file->private_data;
	struct snd_info_entry *entry = data->entry;
	unsigned int mask = 0;

	if (entry->c.ops->poll)
		return entry->c.ops->poll(entry,
					  data->file_private_data,
					  file, wait);
	if (entry->c.ops->read)
		mask |= POLLIN | POLLRDNORM;
	if (entry->c.ops->write)
		mask |= POLLOUT | POLLWRNORM;
	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 已提交
243
{
244 245
	struct inode *inode = file_inode(file);
	struct snd_info_private_data *data;
246
	struct snd_info_entry *entry;
247 248 249 250 251 252 253 254 255 256 257 258 259 260

	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);
261
	struct snd_info_private_data *data;
L
Linus Torvalds 已提交
262 263
	int mode, err;

264
	mutex_lock(&info_mutex);
265 266 267 268
	err = alloc_info_private(entry, &data);
	if (err < 0)
		goto unlock;

L
Linus Torvalds 已提交
269
	mode = file->f_flags & O_ACCMODE;
270 271 272 273
	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 已提交
274
	}
275 276 277 278 279

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

L
Linus Torvalds 已提交
282
	file->private_data = data;
283
	mutex_unlock(&info_mutex);
L
Linus Torvalds 已提交
284 285
	return 0;

286
 error:
287
	kfree(data);
L
Linus Torvalds 已提交
288
	module_put(entry->module);
289
 unlock:
290
	mutex_unlock(&info_mutex);
L
Linus Torvalds 已提交
291 292 293 294 295
	return err;
}

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

299 300 301
	if (entry->c.ops->release)
		entry->c.ops->release(entry, file->f_flags & O_ACCMODE,
				      data->file_private_data);
L
Linus Torvalds 已提交
302 303 304 305 306
	module_put(entry->module);
	kfree(data);
	return 0;
}

307
static const struct file_operations snd_info_entry_operations =
L
Linus Torvalds 已提交
308
{
309 310 311 312 313 314 315 316 317 318
	.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 已提交
319

320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
/*
 * 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;

	pos = *offset;
	if (!valid_pos(pos, count))
		return -EIO;
	next = pos + count;
	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 已提交
347
	}
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
	if (next > buf->len) {
		char *nbuf = krealloc(buf->buffer, PAGE_ALIGN(next),
				      GFP_KERNEL | __GFP_ZERO);
		if (!nbuf) {
			err = -ENOMEM;
			goto error;
		}
		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 已提交
369 370
}

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

376 377 378
	if (entry->c.text.read) {
		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 430 431
	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) {
		kfree(data->wbuffer->buffer);
		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 457 458 459 460 461 462 463 464
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;
	entry->mode = S_IFDIR | S_IRUGO | S_IXUGO;
	if (snd_info_register(entry) < 0) {
		snd_info_free_entry(entry);
		return NULL;
	}
	return entry;
}

L
Linus Torvalds 已提交
465 466 467 468
int __init snd_info_init(void)
{
	struct proc_dir_entry *p;

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

 error:
#ifdef CONFIG_SND_OSSEMUL
	snd_info_free_entry(snd_oss_root);
#endif
	proc_remove(snd_proc_root);
	return -ENOMEM;
L
Linus Torvalds 已提交
495 496 497 498 499 500 501 502 503
}

int __exit snd_info_done(void)
{
	snd_card_info_done();
	snd_minor_info_oss_done();
	snd_minor_info_done();
	snd_info_version_done();
	if (snd_proc_root) {
T
Takashi Iwai 已提交
504
#if IS_ENABLED(CONFIG_SND_SEQUENCER)
505
		snd_info_free_entry(snd_seq_root);
L
Linus Torvalds 已提交
506 507
#endif
#ifdef CONFIG_SND_OSSEMUL
508
		snd_info_free_entry(snd_oss_root);
L
Linus Torvalds 已提交
509
#endif
510
		proc_remove(snd_proc_root);
L
Linus Torvalds 已提交
511 512 513 514 515 516 517 518 519 520 521 522 523
	}
	return 0;
}

/*

 */


/*
 * create a card proc file
 * called from init.c
 */
524
int snd_info_card_create(struct snd_card *card)
L
Linus Torvalds 已提交
525 526
{
	char str[8];
527
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
528

529 530
	if (snd_BUG_ON(!card))
		return -ENXIO;
L
Linus Torvalds 已提交
531 532

	sprintf(str, "card%i", card->number);
533 534
	entry = create_subdir(card->module, str);
	if (!entry)
L
Linus Torvalds 已提交
535 536 537 538 539 540 541 542 543
		return -ENOMEM;
	card->proc_root = entry;
	return 0;
}

/*
 * register the card proc file
 * called from init.c
 */
544
int snd_info_card_register(struct snd_card *card)
L
Linus Torvalds 已提交
545 546 547
{
	struct proc_dir_entry *p;

548 549
	if (snd_BUG_ON(!card))
		return -ENXIO;
L
Linus Torvalds 已提交
550 551 552 553 554 555 556 557 558 559 560

	if (!strcmp(card->id, card->proc_root->name))
		return 0;

	p = proc_symlink(card->id, snd_proc_root, card->proc_root->name);
	if (p == NULL)
		return -ENOMEM;
	card->proc_root_link = p;
	return 0;
}

561 562 563 564 565 566 567
/*
 * called on card->id change
 */
void snd_info_card_id_change(struct snd_card *card)
{
	mutex_lock(&info_mutex);
	if (card->proc_root_link) {
568
		proc_remove(card->proc_root_link);
569 570 571 572 573 574 575 576 577
		card->proc_root_link = NULL;
	}
	if (strcmp(card->id, card->proc_root->name))
		card->proc_root_link = proc_symlink(card->id,
						    snd_proc_root,
						    card->proc_root->name);
	mutex_unlock(&info_mutex);
}

L
Linus Torvalds 已提交
578 579 580 581
/*
 * de-register the card proc file
 * called from init.c
 */
582
void snd_info_card_disconnect(struct snd_card *card)
L
Linus Torvalds 已提交
583
{
584 585
	if (!card)
		return;
586
	mutex_lock(&info_mutex);
587 588
	proc_remove(card->proc_root_link);
	card->proc_root_link = NULL;
589 590 591 592 593 594 595 596 597 598 599
	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)
{
600 601
	if (!card)
		return 0;
602 603
	snd_info_free_entry(card->proc_root);
	card->proc_root = NULL;
L
Linus Torvalds 已提交
604 605 606 607 608 609 610 611
	return 0;
}


/**
 * snd_info_get_line - read one line from the procfs buffer
 * @buffer: the procfs buffer
 * @line: the buffer to store
612
 * @len: the max. buffer size
L
Linus Torvalds 已提交
613 614 615
 *
 * Reads one line from the buffer and stores the string.
 *
616
 * Return: Zero if successful, or 1 if error or EOF.
L
Linus Torvalds 已提交
617
 */
618
int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len)
L
Linus Torvalds 已提交
619 620 621
{
	int c = -1;

622 623
	if (snd_BUG_ON(!buffer || !buffer->buffer))
		return 1;
L
Linus Torvalds 已提交
624 625
	if (len <= 0 || buffer->stop || buffer->error)
		return 1;
626
	while (!buffer->stop) {
627
		c = buffer->buffer[buffer->curr++];
628
		if (buffer->curr >= buffer->size)
L
Linus Torvalds 已提交
629
			buffer->stop = 1;
630
		if (c == '\n')
L
Linus Torvalds 已提交
631
			break;
632
		if (len > 1) {
633 634
			len--;
			*line++ = c;
L
Linus Torvalds 已提交
635 636 637 638 639 640
		}
	}
	*line = '\0';
	return 0;
}

641 642
EXPORT_SYMBOL(snd_info_get_line);

L
Linus Torvalds 已提交
643
/**
644
 * snd_info_get_str - parse a string token
L
Linus Torvalds 已提交
645 646 647 648 649 650 651
 * @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.
 *
652
 * Return: The updated pointer of the original string so that
L
Linus Torvalds 已提交
653 654
 * it can be used for the next call.
 */
655
const char *snd_info_get_str(char *dest, const char *src, int len)
L
Linus Torvalds 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
{
	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;
}

679 680
EXPORT_SYMBOL(snd_info_get_str);

L
Linus Torvalds 已提交
681 682 683 684 685 686 687 688 689 690
/**
 * snd_info_create_entry - create an info entry
 * @name: the proc file name
 *
 * 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().
 *
691
 * Return: The pointer of the new instance, or %NULL on failure.
L
Linus Torvalds 已提交
692
 */
693
static struct snd_info_entry *snd_info_create_entry(const char *name)
L
Linus Torvalds 已提交
694
{
695
	struct snd_info_entry *entry;
696
	entry = kzalloc(sizeof(*entry), GFP_KERNEL);
L
Linus Torvalds 已提交
697 698
	if (entry == NULL)
		return NULL;
699
	entry->name = kstrdup(name, GFP_KERNEL);
L
Linus Torvalds 已提交
700 701 702 703 704 705
	if (entry->name == NULL) {
		kfree(entry);
		return NULL;
	}
	entry->mode = S_IFREG | S_IRUGO;
	entry->content = SNDRV_INFO_CONTENT_TEXT;
706
	mutex_init(&entry->access);
707 708
	INIT_LIST_HEAD(&entry->children);
	INIT_LIST_HEAD(&entry->list);
L
Linus Torvalds 已提交
709 710 711 712 713 714 715 716 717 718 719
	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.
 *
720
 * Return: The pointer of the new instance, or %NULL on failure.
L
Linus Torvalds 已提交
721
 */
722
struct snd_info_entry *snd_info_create_module_entry(struct module * module,
L
Linus Torvalds 已提交
723
					       const char *name,
724
					       struct snd_info_entry *parent)
L
Linus Torvalds 已提交
725
{
726
	struct snd_info_entry *entry = snd_info_create_entry(name);
L
Linus Torvalds 已提交
727 728 729 730 731 732 733
	if (entry) {
		entry->module = module;
		entry->parent = parent;
	}
	return entry;
}

734 735
EXPORT_SYMBOL(snd_info_create_module_entry);

L
Linus Torvalds 已提交
736 737 738 739 740 741 742 743
/**
 * 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.
 *
744
 * Return: The pointer of the new instance, or %NULL on failure.
L
Linus Torvalds 已提交
745
 */
746
struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card,
L
Linus Torvalds 已提交
747
					     const char *name,
748
					     struct snd_info_entry * parent)
L
Linus Torvalds 已提交
749
{
750
	struct snd_info_entry *entry = snd_info_create_entry(name);
L
Linus Torvalds 已提交
751 752 753 754 755 756 757 758
	if (entry) {
		entry->module = card->module;
		entry->card = card;
		entry->parent = parent;
	}
	return entry;
}

759 760
EXPORT_SYMBOL(snd_info_create_card_entry);

761
static void snd_info_disconnect(struct snd_info_entry *entry)
L
Linus Torvalds 已提交
762
{
763
	struct list_head *p, *n;
L
Linus Torvalds 已提交
764

765 766 767 768 769 770 771
	list_for_each_safe(p, n, &entry->children) {
		snd_info_disconnect(list_entry(p, struct snd_info_entry, list));
	}

	if (! entry->p)
		return;
	list_del_init(&entry->list);
772
	proc_remove(entry->p);
773
	entry->p = NULL;
L
Linus Torvalds 已提交
774 775
}

776
static int snd_info_dev_free_entry(struct snd_device *device)
L
Linus Torvalds 已提交
777
{
778
	struct snd_info_entry *entry = device->device_data;
779
	snd_info_free_entry(entry);
L
Linus Torvalds 已提交
780 781 782
	return 0;
}

783
static int snd_info_dev_register_entry(struct snd_device *device)
L
Linus Torvalds 已提交
784
{
785
	struct snd_info_entry *entry = device->device_data;
786
	return snd_info_register(entry);
L
Linus Torvalds 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
}

/**
 * snd_card_proc_new - create an info entry for the given card
 * @card: the card instance
 * @name: the file name
 * @entryp: the pointer to store the new info entry
 *
 * Creates a new info entry and assigns it to the given card.
 * Unlike snd_info_create_card_entry(), this function registers the
 * info entry as an ALSA device component, so that it can be
 * unregistered/released without explicit call.
 * Also, you don't have to register this entry via snd_info_register(),
 * since this will be registered by snd_card_register() automatically.
 *
 * The parent is assumed as card->proc_root.
 *
 * For releasing this entry, use snd_device_free() instead of
 * snd_info_free_entry(). 
 *
807
 * Return: Zero if successful, or a negative error code on failure.
L
Linus Torvalds 已提交
808
 */
809 810
int snd_card_proc_new(struct snd_card *card, const char *name,
		      struct snd_info_entry **entryp)
L
Linus Torvalds 已提交
811
{
812
	static struct snd_device_ops ops = {
L
Linus Torvalds 已提交
813 814
		.dev_free = snd_info_dev_free_entry,
		.dev_register =	snd_info_dev_register_entry,
815
		/* disconnect is done via snd_info_card_disconnect() */
L
Linus Torvalds 已提交
816
	};
817
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
818 819 820 821 822 823 824 825 826 827 828 829 830 831
	int err;

	entry = snd_info_create_card_entry(card, name, card->proc_root);
	if (! entry)
		return -ENOMEM;
	if ((err = snd_device_new(card, SNDRV_DEV_INFO, entry, &ops)) < 0) {
		snd_info_free_entry(entry);
		return err;
	}
	if (entryp)
		*entryp = entry;
	return 0;
}

832 833
EXPORT_SYMBOL(snd_card_proc_new);

L
Linus Torvalds 已提交
834 835 836 837 838 839
/**
 * snd_info_free_entry - release the info entry
 * @entry: the info entry
 *
 * Releases the info entry.  Don't call this after registered.
 */
840
void snd_info_free_entry(struct snd_info_entry * entry)
L
Linus Torvalds 已提交
841 842 843
{
	if (entry == NULL)
		return;
844 845 846 847 848
	if (entry->p) {
		mutex_lock(&info_mutex);
		snd_info_disconnect(entry);
		mutex_unlock(&info_mutex);
	}
L
Linus Torvalds 已提交
849 850 851 852 853 854
	kfree(entry->name);
	if (entry->private_free)
		entry->private_free(entry);
	kfree(entry);
}

855 856
EXPORT_SYMBOL(snd_info_free_entry);

L
Linus Torvalds 已提交
857 858 859 860 861 862
/**
 * snd_info_register - register the info entry
 * @entry: the info entry
 *
 * Registers the proc info entry.
 *
863
 * Return: Zero if successful, or a negative error code on failure.
L
Linus Torvalds 已提交
864
 */
865
int snd_info_register(struct snd_info_entry * entry)
L
Linus Torvalds 已提交
866 867 868
{
	struct proc_dir_entry *root, *p = NULL;

869 870
	if (snd_BUG_ON(!entry))
		return -ENXIO;
L
Linus Torvalds 已提交
871
	root = entry->parent == NULL ? snd_proc_root : entry->parent->p;
872
	mutex_lock(&info_mutex);
873 874 875 876 877 878 879
	if (S_ISDIR(entry->mode)) {
		p = proc_mkdir_mode(entry->name, entry->mode, root);
		if (!p) {
			mutex_unlock(&info_mutex);
			return -ENOMEM;
		}
	} else {
880 881 882 883 884
		const struct file_operations *ops;
		if (entry->content == SNDRV_INFO_CONTENT_DATA)
			ops = &snd_info_entry_operations;
		else
			ops = &snd_info_text_entry_ops;
885
		p = proc_create_data(entry->name, entry->mode, root,
886
				     ops, entry);
887 888 889 890
		if (!p) {
			mutex_unlock(&info_mutex);
			return -ENOMEM;
		}
891
		proc_set_size(p, entry->size);
L
Linus Torvalds 已提交
892 893
	}
	entry->p = p;
894 895
	if (entry->parent)
		list_add_tail(&entry->list, &entry->parent->children);
896
	mutex_unlock(&info_mutex);
L
Linus Torvalds 已提交
897 898 899
	return 0;
}

900 901
EXPORT_SYMBOL(snd_info_register);

L
Linus Torvalds 已提交
902 903 904 905
/*

 */

906
static struct snd_info_entry *snd_info_version_entry;
L
Linus Torvalds 已提交
907

908
static void snd_info_version_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
909 910
{
	snd_iprintf(buffer,
911 912
		    "Advanced Linux Sound Architecture Driver Version k%s.\n",
		    init_utsname()->release);
L
Linus Torvalds 已提交
913 914 915 916
}

static int __init snd_info_version_init(void)
{
917
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
918 919 920 921 922 923 924 925 926 927 928 929 930 931 932

	entry = snd_info_create_module_entry(THIS_MODULE, "version", NULL);
	if (entry == NULL)
		return -ENOMEM;
	entry->c.text.read = snd_info_version_read;
	if (snd_info_register(entry) < 0) {
		snd_info_free_entry(entry);
		return -ENOMEM;
	}
	snd_info_version_entry = entry;
	return 0;
}

static int __exit snd_info_version_done(void)
{
933
	snd_info_free_entry(snd_info_version_entry);
L
Linus Torvalds 已提交
934 935 936 937
	return 0;
}

#endif /* CONFIG_PROC_FS */