blob: e051a029ccfb44172737c4ade606929a17b70ffa [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Information interface for ALSA driver
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/time.h>
Andrea Righi27ac7922008-07-23 21:28:13 -07009#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Paulo Marques543537b2005-06-23 00:09:02 -070011#include <linux/string.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040012#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <sound/core.h>
14#include <sound/minors.h>
15#include <sound/info.h>
Jaroslav Kysela42662742012-09-04 11:21:45 +020016#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/proc_fs.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010018#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <stdarg.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021int 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
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010050static DEFINE_MUTEX(info_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Takashi Iwai24c1f932005-11-17 13:58:48 +010052struct snd_info_private_data {
53 struct snd_info_buffer *rbuffer;
54 struct snd_info_buffer *wbuffer;
55 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 void *file_private_data;
Takashi Iwai24c1f932005-11-17 13:58:48 +010057};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59static int snd_info_version_init(void);
Takashi Iwai746d4a02006-06-23 14:37:59 +020060static void snd_info_disconnect(struct snd_info_entry *entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
63
64 */
65
Takashi Iwai644dbd62015-04-22 22:14:41 +020066static struct snd_info_entry *snd_proc_root;
Takashi Iwai6581f4e2006-05-17 17:14:51 +020067struct snd_info_entry *snd_seq_root;
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020068EXPORT_SYMBOL(snd_seq_root);
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#ifdef CONFIG_SND_OSSEMUL
Takashi Iwai6581f4e2006-05-17 17:14:51 +020071struct snd_info_entry *snd_oss_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif
73
Takashi Iwai4adb7bc2015-04-22 16:10:22 +020074static 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
93static 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static loff_t snd_info_entry_llseek(struct file *file, loff_t offset, int orig)
106{
Takashi Iwai24c1f932005-11-17 13:58:48 +0100107 struct snd_info_private_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct snd_info_entry *entry;
Takashi Iwai73029e02010-04-13 11:39:47 +0200109 loff_t ret = -EINVAL, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 data = file->private_data;
112 entry = data->entry;
Takashi Iwai5b5cd552010-04-07 18:33:57 +0200113 mutex_lock(&entry->access);
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200114 if (entry->c.ops->llseek) {
Takashi Iwai73029e02010-04-13 11:39:47 +0200115 offset = entry->c.ops->llseek(entry,
116 data->file_private_data,
117 file, offset, orig);
118 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200120
121 size = entry->size;
Takashi Iwai73029e02010-04-13 11:39:47 +0200122 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:
Takashi Iwai5b5cd552010-04-07 18:33:57 +0200143 mutex_unlock(&entry->access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return ret;
145}
146
147static ssize_t snd_info_entry_read(struct file *file, char __user *buffer,
148 size_t count, loff_t * offset)
149{
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200150 struct snd_info_private_data *data = file->private_data;
151 struct snd_info_entry *entry = data->entry;
152 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 loff_t pos;
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 pos = *offset;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200156 if (!valid_pos(pos, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return -EIO;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200158 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if ((ssize_t) size > 0)
165 *offset = pos + size;
166 return size;
167}
168
169static ssize_t snd_info_entry_write(struct file *file, const char __user *buffer,
170 size_t count, loff_t * offset)
171{
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200172 struct snd_info_private_data *data = file->private_data;
173 struct snd_info_entry *entry = data->entry;
Takashi Iwai7e4eeec2006-04-28 15:13:40 +0200174 ssize_t size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 loff_t pos;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 pos = *offset;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200178 if (!valid_pos(pos, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return -EIO;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200180 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200186 if (size > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 *offset = pos + size;
188 return size;
189}
190
Al Viro680ef722017-07-02 23:27:36 -0400191static __poll_t snd_info_entry_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200193 struct snd_info_private_data *data = file->private_data;
194 struct snd_info_entry *entry = data->entry;
Al Viro680ef722017-07-02 23:27:36 -0400195 __poll_t mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200197 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)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800202 mask |= EPOLLIN | EPOLLRDNORM;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200203 if (entry->c.ops->write)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800204 mask |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return mask;
206}
207
Ingo Molnard99e9882006-01-09 16:44:46 +0100208static long snd_info_entry_ioctl(struct file *file, unsigned int cmd,
209 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200211 struct snd_info_private_data *data = file->private_data;
212 struct snd_info_entry *entry = data->entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200214 if (!entry->c.ops->ioctl)
215 return -ENOTTY;
216 return entry->c.ops->ioctl(entry, data->file_private_data,
217 file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static int snd_info_entry_mmap(struct file *file, struct vm_area_struct *vma)
221{
Al Viro496ad9a2013-01-23 17:07:38 -0500222 struct inode *inode = file_inode(file);
Takashi Iwai24c1f932005-11-17 13:58:48 +0100223 struct snd_info_private_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 struct snd_info_entry *entry;
225
226 data = file->private_data;
227 if (data == NULL)
228 return 0;
229 entry = data->entry;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200230 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
236static 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200253
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
272static 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -0800285static const struct file_operations snd_info_entry_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Ingo Molnard99e9882006-01-09 16:44:46 +0100287 .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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296};
297
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200298/*
299 * file ops for text proc files
300 */
301static 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
Takashi Iwai6809cd62016-10-30 22:13:19 +0100313 if (!entry->c.text.write)
314 return -EIO;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200315 pos = *offset;
316 if (!valid_pos(pos, count))
317 return -EIO;
318 next = pos + count;
Takashi Iwai027a9fe2016-10-30 22:18:45 +0100319 /* don't handle too large text inputs */
320 if (next > 16 * 1024)
321 return -EIO;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200322 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) {
Takashi Iwaiffb73b02017-05-22 17:39:13 +0200332 char *nbuf = kvzalloc(PAGE_ALIGN(next), GFP_KERNEL);
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200333 if (!nbuf) {
334 err = -ENOMEM;
335 goto error;
336 }
Takashi Iwaiffb73b02017-05-22 17:39:13 +0200337 kvfree(buf->buffer);
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200338 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
354static 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
Takashi Iwai6809cd62016-10-30 22:13:19 +0100359 if (!entry->c.text.read) {
360 return -EIO;
361 } else {
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200362 data->rbuffer->buffer = (char *)seq; /* XXX hack! */
363 entry->c.text.read(entry, data->rbuffer);
364 }
365 return 0;
366}
367
368static 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
403static 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) {
Takashi Iwaiffb73b02017-05-22 17:39:13 +0200415 kvfree(data->wbuffer->buffer);
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200416 kfree(data->wbuffer);
417 }
418
419 module_put(entry->module);
420 kfree(data);
421 return 0;
422}
423
424static 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
Takashi Iwai886364f2015-04-22 17:54:25 +0200434static 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;
Joe Perches6a73cf42018-05-23 12:20:59 -0700442 entry->mode = S_IFDIR | 0555;
Takashi Iwai886364f2015-04-22 17:54:25 +0200443 if (snd_info_register(entry) < 0) {
444 snd_info_free_entry(entry);
445 return NULL;
446 }
447 return entry;
448}
449
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200450static struct snd_info_entry *
Takashi Iwaia858ee62019-02-05 16:17:48 +0100451snd_info_create_entry(const char *name, struct snd_info_entry *parent,
452 struct module *module);
Takashi Iwai644dbd62015-04-22 22:14:41 +0200453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454int __init snd_info_init(void)
455{
Takashi Iwaia858ee62019-02-05 16:17:48 +0100456 snd_proc_root = snd_info_create_entry("asound", NULL, THIS_MODULE);
Takashi Iwai644dbd62015-04-22 22:14:41 +0200457 if (!snd_proc_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return -ENOMEM;
Joe Perches6a73cf42018-05-23 12:20:59 -0700459 snd_proc_root->mode = S_IFDIR | 0555;
Takashi Iwai644dbd62015-04-22 22:14:41 +0200460 snd_proc_root->p = proc_mkdir("asound", NULL);
461 if (!snd_proc_root->p)
462 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#ifdef CONFIG_SND_OSSEMUL
Takashi Iwai886364f2015-04-22 17:54:25 +0200464 snd_oss_root = create_subdir(THIS_MODULE, "oss");
465 if (!snd_oss_root)
466 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467#endif
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +0100468#if IS_ENABLED(CONFIG_SND_SEQUENCER)
Takashi Iwai886364f2015-04-22 17:54:25 +0200469 snd_seq_root = create_subdir(THIS_MODULE, "seq");
470 if (!snd_seq_root)
471 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#endif
Takashi Iwaib591b6e2015-04-22 22:29:10 +0200473 if (snd_info_version_init() < 0 ||
474 snd_minor_info_init() < 0 ||
475 snd_minor_info_oss_init() < 0 ||
Takashi Iwaia0dca822015-04-23 10:56:21 +0200476 snd_card_info_init() < 0 ||
477 snd_info_minor_register() < 0)
Takashi Iwaib591b6e2015-04-22 22:29:10 +0200478 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 0;
Takashi Iwai886364f2015-04-22 17:54:25 +0200480
481 error:
Takashi Iwai644dbd62015-04-22 22:14:41 +0200482 snd_info_free_entry(snd_proc_root);
Takashi Iwai886364f2015-04-22 17:54:25 +0200483 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486int __exit snd_info_done(void)
487{
Takashi Iwai644dbd62015-04-22 22:14:41 +0200488 snd_info_free_entry(snd_proc_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return 0;
490}
491
Takashi Iwai29b26252019-02-05 16:26:06 +0100492static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * create a card proc file
502 * called from init.c
503 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100504int snd_info_card_create(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 char str[8];
Takashi Iwai24c1f932005-11-17 13:58:48 +0100507 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200509 if (snd_BUG_ON(!card))
510 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 sprintf(str, "card%i", card->number);
Takashi Iwai886364f2015-04-22 17:54:25 +0200513 entry = create_subdir(card->module, str);
514 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 card->proc_root = entry;
Takashi Iwai29b26252019-02-05 16:26:06 +0100517
518 return snd_card_ro_proc_new(card, "id", card, snd_card_id_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
521/*
522 * register the card proc file
523 * called from init.c
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200524 * can be called multiple times for reinitialization
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100526int snd_info_card_register(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 struct proc_dir_entry *p;
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200529 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200531 if (snd_BUG_ON(!card))
532 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100534 err = snd_info_register(card->proc_root);
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200535 if (err < 0)
536 return err;
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!strcmp(card->id, card->proc_root->name))
539 return 0;
540
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200541 if (card->proc_root_link)
542 return 0;
Takashi Iwai644dbd62015-04-22 22:14:41 +0200543 p = proc_symlink(card->id, snd_proc_root->p, card->proc_root->name);
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200544 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return -ENOMEM;
546 card->proc_root_link = p;
547 return 0;
548}
549
550/*
Jaroslav Kyselac2eb9c42008-11-12 16:31:37 +0100551 * called on card->id change
552 */
553void snd_info_card_id_change(struct snd_card *card)
554{
555 mutex_lock(&info_mutex);
556 if (card->proc_root_link) {
David Howellsa8ca16e2013-04-12 17:27:28 +0100557 proc_remove(card->proc_root_link);
Jaroslav Kyselac2eb9c42008-11-12 16:31:37 +0100558 card->proc_root_link = NULL;
559 }
560 if (strcmp(card->id, card->proc_root->name))
561 card->proc_root_link = proc_symlink(card->id,
Takashi Iwai644dbd62015-04-22 22:14:41 +0200562 snd_proc_root->p,
Jaroslav Kyselac2eb9c42008-11-12 16:31:37 +0100563 card->proc_root->name);
564 mutex_unlock(&info_mutex);
565}
566
567/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 * de-register the card proc file
569 * called from init.c
570 */
Takashi Iwai746d4a02006-06-23 14:37:59 +0200571void snd_info_card_disconnect(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200573 if (!card)
574 return;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200575 mutex_lock(&info_mutex);
David Howellsa8ca16e2013-04-12 17:27:28 +0100576 proc_remove(card->proc_root_link);
577 card->proc_root_link = NULL;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200578 if (card->proc_root)
579 snd_info_disconnect(card->proc_root);
580 mutex_unlock(&info_mutex);
581}
582
583/*
584 * release the card proc file resources
585 * called from init.c
586 */
587int snd_info_card_free(struct snd_card *card)
588{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200589 if (!card)
590 return 0;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200591 snd_info_free_entry(card->proc_root);
592 card->proc_root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
594}
595
596
597/**
598 * snd_info_get_line - read one line from the procfs buffer
599 * @buffer: the procfs buffer
600 * @line: the buffer to store
Clemens Ladischddc64b22014-08-21 20:55:21 +0200601 * @len: the max. buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 *
603 * Reads one line from the buffer and stores the string.
604 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100605 * Return: Zero if successful, or 1 if error or EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100607int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 int c = -1;
610
Takashi Iwai0bc0ec92013-03-13 12:11:13 +0100611 if (snd_BUG_ON(!buffer || !buffer->buffer))
612 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (len <= 0 || buffer->stop || buffer->error)
614 return 1;
Takashi Iwai0bc0ec92013-03-13 12:11:13 +0100615 while (!buffer->stop) {
Takashi Iwai7e4eeec2006-04-28 15:13:40 +0200616 c = buffer->buffer[buffer->curr++];
617 if (buffer->curr >= buffer->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 buffer->stop = 1;
Takashi Iwai0bc0ec92013-03-13 12:11:13 +0100619 if (c == '\n')
620 break;
Clemens Ladischddc64b22014-08-21 20:55:21 +0200621 if (len > 1) {
Takashi Iwai0bc0ec92013-03-13 12:11:13 +0100622 len--;
623 *line++ = c;
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626 *line = '\0';
627 return 0;
628}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200629EXPORT_SYMBOL(snd_info_get_line);
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/**
Henrik Kretzschmar856def82005-07-08 13:53:42 +0200632 * snd_info_get_str - parse a string token
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * @dest: the buffer to store the string token
634 * @src: the original string
635 * @len: the max. length of token - 1
636 *
637 * Parses the original string and copy a token to the given
638 * string buffer.
639 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100640 * Return: The updated pointer of the original string so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * it can be used for the next call.
642 */
Takashi Iwai4f7454a2009-09-08 14:29:58 +0200643const char *snd_info_get_str(char *dest, const char *src, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 int c;
646
647 while (*src == ' ' || *src == '\t')
648 src++;
649 if (*src == '"' || *src == '\'') {
650 c = *src++;
651 while (--len > 0 && *src && *src != c) {
652 *dest++ = *src++;
653 }
654 if (*src == c)
655 src++;
656 } else {
657 while (--len > 0 && *src && *src != ' ' && *src != '\t') {
658 *dest++ = *src++;
659 }
660 }
661 *dest = 0;
662 while (*src == ' ' || *src == '\t')
663 src++;
664 return src;
665}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200666EXPORT_SYMBOL(snd_info_get_str);
667
Takashi Iwaic309c462015-05-18 09:45:11 +0200668/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * snd_info_create_entry - create an info entry
670 * @name: the proc file name
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200671 * @parent: the parent directory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 *
673 * Creates an info entry with the given file name and initializes as
674 * the default state.
675 *
676 * Usually called from other functions such as
677 * snd_info_create_card_entry().
678 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100679 * Return: The pointer of the new instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 */
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200681static struct snd_info_entry *
Takashi Iwaia858ee62019-02-05 16:17:48 +0100682snd_info_create_entry(const char *name, struct snd_info_entry *parent,
683 struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Takashi Iwai24c1f932005-11-17 13:58:48 +0100685 struct snd_info_entry *entry;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200686 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (entry == NULL)
688 return NULL;
Paulo Marques543537b2005-06-23 00:09:02 -0700689 entry->name = kstrdup(name, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (entry->name == NULL) {
691 kfree(entry);
692 return NULL;
693 }
Joe Perches6a73cf42018-05-23 12:20:59 -0700694 entry->mode = S_IFREG | 0444;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 entry->content = SNDRV_INFO_CONTENT_TEXT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100696 mutex_init(&entry->access);
Takashi Iwai746d4a02006-06-23 14:37:59 +0200697 INIT_LIST_HEAD(&entry->children);
698 INIT_LIST_HEAD(&entry->list);
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200699 entry->parent = parent;
Takashi Iwaia858ee62019-02-05 16:17:48 +0100700 entry->module = module;
Takashi Iwai8c2f8702019-04-16 15:25:00 +0200701 if (parent) {
702 mutex_lock(&parent->access);
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200703 list_add_tail(&entry->list, &parent->children);
Takashi Iwai8c2f8702019-04-16 15:25:00 +0200704 mutex_unlock(&parent->access);
705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return entry;
707}
708
709/**
710 * snd_info_create_module_entry - create an info entry for the given module
711 * @module: the module pointer
712 * @name: the file name
713 * @parent: the parent directory
714 *
715 * Creates a new info entry and assigns it to the given module.
716 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100717 * Return: The pointer of the new instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100719struct snd_info_entry *snd_info_create_module_entry(struct module * module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 const char *name,
Takashi Iwai24c1f932005-11-17 13:58:48 +0100721 struct snd_info_entry *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Takashi Iwai3a554372019-01-23 17:59:40 +0100723 if (!parent)
724 parent = snd_proc_root;
Takashi Iwaia858ee62019-02-05 16:17:48 +0100725 return snd_info_create_entry(name, parent, module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200727EXPORT_SYMBOL(snd_info_create_module_entry);
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729/**
730 * snd_info_create_card_entry - create an info entry for the given card
731 * @card: the card instance
732 * @name: the file name
733 * @parent: the parent directory
734 *
735 * Creates a new info entry and assigns it to the given card.
736 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100737 * Return: The pointer of the new instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100739struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 const char *name,
Takashi Iwai24c1f932005-11-17 13:58:48 +0100741 struct snd_info_entry * parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Takashi Iwai3a554372019-01-23 17:59:40 +0100743 if (!parent)
744 parent = card->proc_root;
Takashi Iwaia858ee62019-02-05 16:17:48 +0100745 return snd_info_create_entry(name, parent, card->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200747EXPORT_SYMBOL(snd_info_create_card_entry);
748
Takashi Iwai746d4a02006-06-23 14:37:59 +0200749static void snd_info_disconnect(struct snd_info_entry *entry)
750{
Takashi Iwai90a409a2015-05-18 08:59:12 +0200751 struct snd_info_entry *p;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200752
Takashi Iwaic560a672015-04-22 18:26:38 +0200753 if (!entry->p)
Takashi Iwai746d4a02006-06-23 14:37:59 +0200754 return;
Takashi Iwai90a409a2015-05-18 08:59:12 +0200755 list_for_each_entry(p, &entry->children, list)
Takashi Iwaic560a672015-04-22 18:26:38 +0200756 snd_info_disconnect(p);
David Howellsa8ca16e2013-04-12 17:27:28 +0100757 proc_remove(entry->p);
Takashi Iwai746d4a02006-06-23 14:37:59 +0200758 entry->p = NULL;
759}
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761/**
762 * snd_info_free_entry - release the info entry
763 * @entry: the info entry
764 *
Takashi Iwaic560a672015-04-22 18:26:38 +0200765 * Releases the info entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100767void snd_info_free_entry(struct snd_info_entry * entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Takashi Iwaic560a672015-04-22 18:26:38 +0200769 struct snd_info_entry *p, *n;
770
771 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200773 if (entry->p) {
774 mutex_lock(&info_mutex);
775 snd_info_disconnect(entry);
776 mutex_unlock(&info_mutex);
777 }
Takashi Iwaic560a672015-04-22 18:26:38 +0200778
779 /* free all children at first */
780 list_for_each_entry_safe(p, n, &entry->children, list)
781 snd_info_free_entry(p);
782
Takashi Iwai8c2f8702019-04-16 15:25:00 +0200783 p = entry->parent;
784 if (p) {
785 mutex_lock(&p->access);
786 list_del(&entry->list);
787 mutex_unlock(&p->access);
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 kfree(entry->name);
790 if (entry->private_free)
791 entry->private_free(entry);
792 kfree(entry);
793}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200794EXPORT_SYMBOL(snd_info_free_entry);
795
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100796static int __snd_info_register(struct snd_info_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
798 struct proc_dir_entry *root, *p = NULL;
799
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200800 if (snd_BUG_ON(!entry))
801 return -ENXIO;
Takashi Iwai644dbd62015-04-22 22:14:41 +0200802 root = entry->parent == NULL ? snd_proc_root->p : entry->parent->p;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100803 mutex_lock(&info_mutex);
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100804 if (entry->p || !root)
805 goto unlock;
Al Viroaee0c612013-03-28 23:01:34 -0400806 if (S_ISDIR(entry->mode)) {
807 p = proc_mkdir_mode(entry->name, entry->mode, root);
808 if (!p) {
809 mutex_unlock(&info_mutex);
810 return -ENOMEM;
811 }
812 } else {
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200813 const struct file_operations *ops;
814 if (entry->content == SNDRV_INFO_CONTENT_DATA)
815 ops = &snd_info_entry_operations;
816 else
817 ops = &snd_info_text_entry_ops;
Al Viroaee0c612013-03-28 23:01:34 -0400818 p = proc_create_data(entry->name, entry->mode, root,
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200819 ops, entry);
Al Viroaee0c612013-03-28 23:01:34 -0400820 if (!p) {
821 mutex_unlock(&info_mutex);
822 return -ENOMEM;
823 }
David Howells271a15e2013-04-12 00:38:51 +0100824 proc_set_size(p, entry->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 entry->p = p;
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100827 unlock:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100828 mutex_unlock(&info_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return 0;
830}
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100831
832/**
833 * snd_info_register - register the info entry
834 * @entry: the info entry
835 *
836 * Registers the proc info entry.
837 * The all children entries are registered recursively.
838 *
839 * Return: Zero if successful, or a negative error code on failure.
840 */
841int snd_info_register(struct snd_info_entry *entry)
842{
843 struct snd_info_entry *p;
844 int err;
845
846 if (!entry->p) {
847 err = __snd_info_register(entry);
848 if (err < 0)
849 return err;
850 }
851
852 list_for_each_entry(p, &entry->children, list) {
853 err = snd_info_register(p);
854 if (err < 0)
855 return err;
856 }
857
858 return 0;
859}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200860EXPORT_SYMBOL(snd_info_register);
861
Takashi Iwai7453e1d2019-02-04 14:53:04 +0100862/**
863 * snd_card_rw_proc_new - Create a read/write text proc file entry for the card
864 * @card: the card instance
865 * @name: the file name
866 * @private_data: the arbitrary private data
867 * @read: the read callback
868 * @write: the write callback, NULL for read-only
869 *
870 * This proc file entry will be registered via snd_card_register() call, and
871 * it will be removed automatically at the card removal, too.
872 */
873int snd_card_rw_proc_new(struct snd_card *card, const char *name,
874 void *private_data,
875 void (*read)(struct snd_info_entry *,
876 struct snd_info_buffer *),
877 void (*write)(struct snd_info_entry *entry,
878 struct snd_info_buffer *buffer))
879{
880 struct snd_info_entry *entry;
881
882 entry = snd_info_create_card_entry(card, name, card->proc_root);
883 if (!entry)
884 return -ENOMEM;
885 snd_info_set_text_ops(entry, private_data, read);
886 if (write) {
887 entry->mode |= 0200;
888 entry->c.text.write = write;
889 }
890 return 0;
891}
892EXPORT_SYMBOL_GPL(snd_card_rw_proc_new);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/*
895
896 */
897
Takashi Iwai24c1f932005-11-17 13:58:48 +0100898static void snd_info_version_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 snd_iprintf(buffer,
Jaroslav Kysela42662742012-09-04 11:21:45 +0200901 "Advanced Linux Sound Architecture Driver Version k%s.\n",
902 init_utsname()->release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
905static int __init snd_info_version_init(void)
906{
Takashi Iwai24c1f932005-11-17 13:58:48 +0100907 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 entry = snd_info_create_module_entry(THIS_MODULE, "version", NULL);
910 if (entry == NULL)
911 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 entry->c.text.read = snd_info_version_read;
Takashi Iwaib591b6e2015-04-22 22:29:10 +0200913 return snd_info_register(entry); /* freed in error path */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}