blob: 8c6bc5241df50c55a66c35a8b4e9d8863664d5af [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{
Takashi Iwai51d78472020-01-05 15:47:53 +010023 static const char * const reserved[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 {
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 };
Takashi Iwai51d78472020-01-05 15:47:53 +010038 const char * const *xstr = reserved;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
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
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800285static const struct proc_ops snd_info_entry_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800287 .proc_lseek = snd_info_entry_llseek,
288 .proc_read = snd_info_entry_read,
289 .proc_write = snd_info_entry_write,
290 .proc_poll = snd_info_entry_poll,
291 .proc_ioctl = snd_info_entry_ioctl,
292 .proc_mmap = snd_info_entry_mmap,
293 .proc_open = snd_info_entry_open,
294 .proc_release = snd_info_entry_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200297/*
298 * file ops for text proc files
299 */
300static ssize_t snd_info_text_entry_write(struct file *file,
301 const char __user *buffer,
302 size_t count, loff_t *offset)
303{
304 struct seq_file *m = file->private_data;
305 struct snd_info_private_data *data = m->private;
306 struct snd_info_entry *entry = data->entry;
307 struct snd_info_buffer *buf;
308 loff_t pos;
309 size_t next;
310 int err = 0;
311
Takashi Iwai6809cd62016-10-30 22:13:19 +0100312 if (!entry->c.text.write)
313 return -EIO;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200314 pos = *offset;
315 if (!valid_pos(pos, count))
316 return -EIO;
317 next = pos + count;
Takashi Iwai027a9fe2016-10-30 22:18:45 +0100318 /* don't handle too large text inputs */
319 if (next > 16 * 1024)
320 return -EIO;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200321 mutex_lock(&entry->access);
322 buf = data->wbuffer;
323 if (!buf) {
324 data->wbuffer = buf = kzalloc(sizeof(*buf), GFP_KERNEL);
325 if (!buf) {
326 err = -ENOMEM;
327 goto error;
328 }
329 }
330 if (next > buf->len) {
Takashi Iwaiffb73b02017-05-22 17:39:13 +0200331 char *nbuf = kvzalloc(PAGE_ALIGN(next), GFP_KERNEL);
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200332 if (!nbuf) {
333 err = -ENOMEM;
334 goto error;
335 }
Takashi Iwaiffb73b02017-05-22 17:39:13 +0200336 kvfree(buf->buffer);
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200337 buf->buffer = nbuf;
338 buf->len = PAGE_ALIGN(next);
339 }
340 if (copy_from_user(buf->buffer + pos, buffer, count)) {
341 err = -EFAULT;
342 goto error;
343 }
344 buf->size = next;
345 error:
346 mutex_unlock(&entry->access);
347 if (err < 0)
348 return err;
349 *offset = next;
350 return count;
351}
352
353static int snd_info_seq_show(struct seq_file *seq, void *p)
354{
355 struct snd_info_private_data *data = seq->private;
356 struct snd_info_entry *entry = data->entry;
357
Takashi Iwai6809cd62016-10-30 22:13:19 +0100358 if (!entry->c.text.read) {
359 return -EIO;
360 } else {
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200361 data->rbuffer->buffer = (char *)seq; /* XXX hack! */
362 entry->c.text.read(entry, data->rbuffer);
363 }
364 return 0;
365}
366
367static int snd_info_text_entry_open(struct inode *inode, struct file *file)
368{
369 struct snd_info_entry *entry = PDE_DATA(inode);
370 struct snd_info_private_data *data;
371 int err;
372
373 mutex_lock(&info_mutex);
374 err = alloc_info_private(entry, &data);
375 if (err < 0)
376 goto unlock;
377
378 data->rbuffer = kzalloc(sizeof(*data->rbuffer), GFP_KERNEL);
379 if (!data->rbuffer) {
380 err = -ENOMEM;
381 goto error;
382 }
383 if (entry->size)
384 err = single_open_size(file, snd_info_seq_show, data,
385 entry->size);
386 else
387 err = single_open(file, snd_info_seq_show, data);
388 if (err < 0)
389 goto error;
390 mutex_unlock(&info_mutex);
391 return 0;
392
393 error:
394 kfree(data->rbuffer);
395 kfree(data);
396 module_put(entry->module);
397 unlock:
398 mutex_unlock(&info_mutex);
399 return err;
400}
401
402static int snd_info_text_entry_release(struct inode *inode, struct file *file)
403{
404 struct seq_file *m = file->private_data;
405 struct snd_info_private_data *data = m->private;
406 struct snd_info_entry *entry = data->entry;
407
408 if (data->wbuffer && entry->c.text.write)
409 entry->c.text.write(entry, data->wbuffer);
410
411 single_release(inode, file);
412 kfree(data->rbuffer);
413 if (data->wbuffer) {
Takashi Iwaiffb73b02017-05-22 17:39:13 +0200414 kvfree(data->wbuffer->buffer);
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200415 kfree(data->wbuffer);
416 }
417
418 module_put(entry->module);
419 kfree(data);
420 return 0;
421}
422
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800423static const struct proc_ops snd_info_text_entry_ops =
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200424{
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800425 .proc_open = snd_info_text_entry_open,
426 .proc_release = snd_info_text_entry_release,
427 .proc_write = snd_info_text_entry_write,
428 .proc_lseek = seq_lseek,
429 .proc_read = seq_read,
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200430};
431
Takashi Iwai886364f2015-04-22 17:54:25 +0200432static struct snd_info_entry *create_subdir(struct module *mod,
433 const char *name)
434{
435 struct snd_info_entry *entry;
436
437 entry = snd_info_create_module_entry(mod, name, NULL);
438 if (!entry)
439 return NULL;
Joe Perches6a73cf42018-05-23 12:20:59 -0700440 entry->mode = S_IFDIR | 0555;
Takashi Iwai886364f2015-04-22 17:54:25 +0200441 if (snd_info_register(entry) < 0) {
442 snd_info_free_entry(entry);
443 return NULL;
444 }
445 return entry;
446}
447
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200448static struct snd_info_entry *
Takashi Iwaia858ee62019-02-05 16:17:48 +0100449snd_info_create_entry(const char *name, struct snd_info_entry *parent,
450 struct module *module);
Takashi Iwai644dbd62015-04-22 22:14:41 +0200451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452int __init snd_info_init(void)
453{
Takashi Iwaia858ee62019-02-05 16:17:48 +0100454 snd_proc_root = snd_info_create_entry("asound", NULL, THIS_MODULE);
Takashi Iwai644dbd62015-04-22 22:14:41 +0200455 if (!snd_proc_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return -ENOMEM;
Joe Perches6a73cf42018-05-23 12:20:59 -0700457 snd_proc_root->mode = S_IFDIR | 0555;
Takashi Iwai644dbd62015-04-22 22:14:41 +0200458 snd_proc_root->p = proc_mkdir("asound", NULL);
459 if (!snd_proc_root->p)
460 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#ifdef CONFIG_SND_OSSEMUL
Takashi Iwai886364f2015-04-22 17:54:25 +0200462 snd_oss_root = create_subdir(THIS_MODULE, "oss");
463 if (!snd_oss_root)
464 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465#endif
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +0100466#if IS_ENABLED(CONFIG_SND_SEQUENCER)
Takashi Iwai886364f2015-04-22 17:54:25 +0200467 snd_seq_root = create_subdir(THIS_MODULE, "seq");
468 if (!snd_seq_root)
469 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#endif
Takashi Iwaib591b6e2015-04-22 22:29:10 +0200471 if (snd_info_version_init() < 0 ||
472 snd_minor_info_init() < 0 ||
473 snd_minor_info_oss_init() < 0 ||
Takashi Iwaia0dca822015-04-23 10:56:21 +0200474 snd_card_info_init() < 0 ||
475 snd_info_minor_register() < 0)
Takashi Iwaib591b6e2015-04-22 22:29:10 +0200476 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return 0;
Takashi Iwai886364f2015-04-22 17:54:25 +0200478
479 error:
Takashi Iwai644dbd62015-04-22 22:14:41 +0200480 snd_info_free_entry(snd_proc_root);
Takashi Iwai886364f2015-04-22 17:54:25 +0200481 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484int __exit snd_info_done(void)
485{
Takashi Iwai644dbd62015-04-22 22:14:41 +0200486 snd_info_free_entry(snd_proc_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return 0;
488}
489
Takashi Iwai29b26252019-02-05 16:26:06 +0100490static void snd_card_id_read(struct snd_info_entry *entry,
491 struct snd_info_buffer *buffer)
492{
493 struct snd_card *card = entry->private_data;
494
495 snd_iprintf(buffer, "%s\n", card->id);
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * create a card proc file
500 * called from init.c
501 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100502int snd_info_card_create(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 char str[8];
Takashi Iwai24c1f932005-11-17 13:58:48 +0100505 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200507 if (snd_BUG_ON(!card))
508 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 sprintf(str, "card%i", card->number);
Takashi Iwai886364f2015-04-22 17:54:25 +0200511 entry = create_subdir(card->module, str);
512 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 card->proc_root = entry;
Takashi Iwai29b26252019-02-05 16:26:06 +0100515
516 return snd_card_ro_proc_new(card, "id", card, snd_card_id_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
519/*
520 * register the card proc file
521 * called from init.c
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200522 * can be called multiple times for reinitialization
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100524int snd_info_card_register(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 struct proc_dir_entry *p;
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200527 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200529 if (snd_BUG_ON(!card))
530 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100532 err = snd_info_register(card->proc_root);
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200533 if (err < 0)
534 return err;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (!strcmp(card->id, card->proc_root->name))
537 return 0;
538
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200539 if (card->proc_root_link)
540 return 0;
Takashi Iwai644dbd62015-04-22 22:14:41 +0200541 p = proc_symlink(card->id, snd_proc_root->p, card->proc_root->name);
Takashi Iwai2471b6c2015-05-18 09:20:24 +0200542 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return -ENOMEM;
544 card->proc_root_link = p;
545 return 0;
546}
547
548/*
Jaroslav Kyselac2eb9c42008-11-12 16:31:37 +0100549 * called on card->id change
550 */
551void snd_info_card_id_change(struct snd_card *card)
552{
553 mutex_lock(&info_mutex);
554 if (card->proc_root_link) {
David Howellsa8ca16e2013-04-12 17:27:28 +0100555 proc_remove(card->proc_root_link);
Jaroslav Kyselac2eb9c42008-11-12 16:31:37 +0100556 card->proc_root_link = NULL;
557 }
558 if (strcmp(card->id, card->proc_root->name))
559 card->proc_root_link = proc_symlink(card->id,
Takashi Iwai644dbd62015-04-22 22:14:41 +0200560 snd_proc_root->p,
Jaroslav Kyselac2eb9c42008-11-12 16:31:37 +0100561 card->proc_root->name);
562 mutex_unlock(&info_mutex);
563}
564
565/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * de-register the card proc file
567 * called from init.c
568 */
Takashi Iwai746d4a02006-06-23 14:37:59 +0200569void snd_info_card_disconnect(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200571 if (!card)
572 return;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200573 mutex_lock(&info_mutex);
David Howellsa8ca16e2013-04-12 17:27:28 +0100574 proc_remove(card->proc_root_link);
575 card->proc_root_link = NULL;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200576 if (card->proc_root)
577 snd_info_disconnect(card->proc_root);
578 mutex_unlock(&info_mutex);
579}
580
581/*
582 * release the card proc file resources
583 * called from init.c
584 */
585int snd_info_card_free(struct snd_card *card)
586{
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200587 if (!card)
588 return 0;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200589 snd_info_free_entry(card->proc_root);
590 card->proc_root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return 0;
592}
593
594
595/**
596 * snd_info_get_line - read one line from the procfs buffer
597 * @buffer: the procfs buffer
598 * @line: the buffer to store
Clemens Ladischddc64b22014-08-21 20:55:21 +0200599 * @len: the max. buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 *
601 * Reads one line from the buffer and stores the string.
602 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100603 * Return: Zero if successful, or 1 if error or EOF.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100605int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Colin Ian King0e023682020-02-08 22:42:06 +0000607 int c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Takashi Iwai0bc0ec92013-03-13 12:11:13 +0100609 if (snd_BUG_ON(!buffer || !buffer->buffer))
610 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (len <= 0 || buffer->stop || buffer->error)
612 return 1;
Takashi Iwai0bc0ec92013-03-13 12:11:13 +0100613 while (!buffer->stop) {
Takashi Iwai7e4eeec2006-04-28 15:13:40 +0200614 c = buffer->buffer[buffer->curr++];
615 if (buffer->curr >= buffer->size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 buffer->stop = 1;
Takashi Iwai0bc0ec92013-03-13 12:11:13 +0100617 if (c == '\n')
618 break;
Clemens Ladischddc64b22014-08-21 20:55:21 +0200619 if (len > 1) {
Takashi Iwai0bc0ec92013-03-13 12:11:13 +0100620 len--;
621 *line++ = c;
622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624 *line = '\0';
625 return 0;
626}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200627EXPORT_SYMBOL(snd_info_get_line);
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629/**
Henrik Kretzschmar856def82005-07-08 13:53:42 +0200630 * snd_info_get_str - parse a string token
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 * @dest: the buffer to store the string token
632 * @src: the original string
633 * @len: the max. length of token - 1
634 *
635 * Parses the original string and copy a token to the given
636 * string buffer.
637 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100638 * Return: The updated pointer of the original string so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 * it can be used for the next call.
640 */
Takashi Iwai4f7454a2009-09-08 14:29:58 +0200641const char *snd_info_get_str(char *dest, const char *src, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 int c;
644
645 while (*src == ' ' || *src == '\t')
646 src++;
647 if (*src == '"' || *src == '\'') {
648 c = *src++;
649 while (--len > 0 && *src && *src != c) {
650 *dest++ = *src++;
651 }
652 if (*src == c)
653 src++;
654 } else {
655 while (--len > 0 && *src && *src != ' ' && *src != '\t') {
656 *dest++ = *src++;
657 }
658 }
659 *dest = 0;
660 while (*src == ' ' || *src == '\t')
661 src++;
662 return src;
663}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200664EXPORT_SYMBOL(snd_info_get_str);
665
Takashi Iwaic309c462015-05-18 09:45:11 +0200666/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 * snd_info_create_entry - create an info entry
668 * @name: the proc file name
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200669 * @parent: the parent directory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 *
671 * Creates an info entry with the given file name and initializes as
672 * the default state.
673 *
674 * Usually called from other functions such as
675 * snd_info_create_card_entry().
676 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100677 * Return: The pointer of the new instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200679static struct snd_info_entry *
Takashi Iwaia858ee62019-02-05 16:17:48 +0100680snd_info_create_entry(const char *name, struct snd_info_entry *parent,
681 struct module *module)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Takashi Iwai24c1f932005-11-17 13:58:48 +0100683 struct snd_info_entry *entry;
Takashi Iwaica2c0962005-09-09 14:20:23 +0200684 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (entry == NULL)
686 return NULL;
Paulo Marques543537b2005-06-23 00:09:02 -0700687 entry->name = kstrdup(name, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (entry->name == NULL) {
689 kfree(entry);
690 return NULL;
691 }
Joe Perches6a73cf42018-05-23 12:20:59 -0700692 entry->mode = S_IFREG | 0444;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 entry->content = SNDRV_INFO_CONTENT_TEXT;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100694 mutex_init(&entry->access);
Takashi Iwai746d4a02006-06-23 14:37:59 +0200695 INIT_LIST_HEAD(&entry->children);
696 INIT_LIST_HEAD(&entry->list);
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200697 entry->parent = parent;
Takashi Iwaia858ee62019-02-05 16:17:48 +0100698 entry->module = module;
Takashi Iwai8c2f8702019-04-16 15:25:00 +0200699 if (parent) {
700 mutex_lock(&parent->access);
Takashi Iwai8e7ccb7b2015-05-18 09:43:30 +0200701 list_add_tail(&entry->list, &parent->children);
Takashi Iwai8c2f8702019-04-16 15:25:00 +0200702 mutex_unlock(&parent->access);
703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return entry;
705}
706
707/**
708 * snd_info_create_module_entry - create an info entry for the given module
709 * @module: the module pointer
710 * @name: the file name
711 * @parent: the parent directory
712 *
713 * Creates a new info entry and assigns it to the given module.
714 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100715 * Return: The pointer of the new instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100717struct snd_info_entry *snd_info_create_module_entry(struct module * module,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 const char *name,
Takashi Iwai24c1f932005-11-17 13:58:48 +0100719 struct snd_info_entry *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Takashi Iwai3a554372019-01-23 17:59:40 +0100721 if (!parent)
722 parent = snd_proc_root;
Takashi Iwaia858ee62019-02-05 16:17:48 +0100723 return snd_info_create_entry(name, parent, module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200725EXPORT_SYMBOL(snd_info_create_module_entry);
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727/**
728 * snd_info_create_card_entry - create an info entry for the given card
729 * @card: the card instance
730 * @name: the file name
731 * @parent: the parent directory
732 *
733 * Creates a new info entry and assigns it to the given card.
734 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100735 * Return: The pointer of the new instance, or %NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100737struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 const char *name,
Takashi Iwai24c1f932005-11-17 13:58:48 +0100739 struct snd_info_entry * parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Takashi Iwai3a554372019-01-23 17:59:40 +0100741 if (!parent)
742 parent = card->proc_root;
Takashi Iwaia858ee62019-02-05 16:17:48 +0100743 return snd_info_create_entry(name, parent, card->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200745EXPORT_SYMBOL(snd_info_create_card_entry);
746
Takashi Iwai746d4a02006-06-23 14:37:59 +0200747static void snd_info_disconnect(struct snd_info_entry *entry)
748{
Takashi Iwai90a409a2015-05-18 08:59:12 +0200749 struct snd_info_entry *p;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200750
Takashi Iwaic560a672015-04-22 18:26:38 +0200751 if (!entry->p)
Takashi Iwai746d4a02006-06-23 14:37:59 +0200752 return;
Takashi Iwai90a409a2015-05-18 08:59:12 +0200753 list_for_each_entry(p, &entry->children, list)
Takashi Iwaic560a672015-04-22 18:26:38 +0200754 snd_info_disconnect(p);
David Howellsa8ca16e2013-04-12 17:27:28 +0100755 proc_remove(entry->p);
Takashi Iwai746d4a02006-06-23 14:37:59 +0200756 entry->p = NULL;
757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759/**
760 * snd_info_free_entry - release the info entry
761 * @entry: the info entry
762 *
Takashi Iwaic560a672015-04-22 18:26:38 +0200763 * Releases the info entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 */
Takashi Iwai24c1f932005-11-17 13:58:48 +0100765void snd_info_free_entry(struct snd_info_entry * entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Takashi Iwaic560a672015-04-22 18:26:38 +0200767 struct snd_info_entry *p, *n;
768
769 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return;
Takashi Iwai746d4a02006-06-23 14:37:59 +0200771 if (entry->p) {
772 mutex_lock(&info_mutex);
773 snd_info_disconnect(entry);
774 mutex_unlock(&info_mutex);
775 }
Takashi Iwaic560a672015-04-22 18:26:38 +0200776
777 /* free all children at first */
778 list_for_each_entry_safe(p, n, &entry->children, list)
779 snd_info_free_entry(p);
780
Takashi Iwai8c2f8702019-04-16 15:25:00 +0200781 p = entry->parent;
782 if (p) {
783 mutex_lock(&p->access);
784 list_del(&entry->list);
785 mutex_unlock(&p->access);
786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 kfree(entry->name);
788 if (entry->private_free)
789 entry->private_free(entry);
790 kfree(entry);
791}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200792EXPORT_SYMBOL(snd_info_free_entry);
793
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100794static int __snd_info_register(struct snd_info_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 struct proc_dir_entry *root, *p = NULL;
797
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200798 if (snd_BUG_ON(!entry))
799 return -ENXIO;
Takashi Iwai644dbd62015-04-22 22:14:41 +0200800 root = entry->parent == NULL ? snd_proc_root->p : entry->parent->p;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100801 mutex_lock(&info_mutex);
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100802 if (entry->p || !root)
803 goto unlock;
Al Viroaee0c612013-03-28 23:01:34 -0400804 if (S_ISDIR(entry->mode)) {
805 p = proc_mkdir_mode(entry->name, entry->mode, root);
806 if (!p) {
807 mutex_unlock(&info_mutex);
808 return -ENOMEM;
809 }
810 } else {
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800811 const struct proc_ops *ops;
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200812 if (entry->content == SNDRV_INFO_CONTENT_DATA)
813 ops = &snd_info_entry_operations;
814 else
815 ops = &snd_info_text_entry_ops;
Al Viroaee0c612013-03-28 23:01:34 -0400816 p = proc_create_data(entry->name, entry->mode, root,
Takashi Iwai4adb7bc2015-04-22 16:10:22 +0200817 ops, entry);
Al Viroaee0c612013-03-28 23:01:34 -0400818 if (!p) {
819 mutex_unlock(&info_mutex);
820 return -ENOMEM;
821 }
David Howells271a15e2013-04-12 00:38:51 +0100822 proc_set_size(p, entry->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 entry->p = p;
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100825 unlock:
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100826 mutex_unlock(&info_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return 0;
828}
Takashi Iwai348c5ad2019-02-05 12:31:42 +0100829
830/**
831 * snd_info_register - register the info entry
832 * @entry: the info entry
833 *
834 * Registers the proc info entry.
835 * The all children entries are registered recursively.
836 *
837 * Return: Zero if successful, or a negative error code on failure.
838 */
839int snd_info_register(struct snd_info_entry *entry)
840{
841 struct snd_info_entry *p;
842 int err;
843
844 if (!entry->p) {
845 err = __snd_info_register(entry);
846 if (err < 0)
847 return err;
848 }
849
850 list_for_each_entry(p, &entry->children, list) {
851 err = snd_info_register(p);
852 if (err < 0)
853 return err;
854 }
855
856 return 0;
857}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200858EXPORT_SYMBOL(snd_info_register);
859
Takashi Iwai7453e1d2019-02-04 14:53:04 +0100860/**
861 * snd_card_rw_proc_new - Create a read/write text proc file entry for the card
862 * @card: the card instance
863 * @name: the file name
864 * @private_data: the arbitrary private data
865 * @read: the read callback
866 * @write: the write callback, NULL for read-only
867 *
868 * This proc file entry will be registered via snd_card_register() call, and
869 * it will be removed automatically at the card removal, too.
870 */
871int snd_card_rw_proc_new(struct snd_card *card, const char *name,
872 void *private_data,
873 void (*read)(struct snd_info_entry *,
874 struct snd_info_buffer *),
875 void (*write)(struct snd_info_entry *entry,
876 struct snd_info_buffer *buffer))
877{
878 struct snd_info_entry *entry;
879
880 entry = snd_info_create_card_entry(card, name, card->proc_root);
881 if (!entry)
882 return -ENOMEM;
883 snd_info_set_text_ops(entry, private_data, read);
884 if (write) {
885 entry->mode |= 0200;
886 entry->c.text.write = write;
887 }
888 return 0;
889}
890EXPORT_SYMBOL_GPL(snd_card_rw_proc_new);
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892/*
893
894 */
895
Takashi Iwai24c1f932005-11-17 13:58:48 +0100896static void snd_info_version_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 snd_iprintf(buffer,
Jaroslav Kysela42662742012-09-04 11:21:45 +0200899 "Advanced Linux Sound Architecture Driver Version k%s.\n",
900 init_utsname()->release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
903static int __init snd_info_version_init(void)
904{
Takashi Iwai24c1f932005-11-17 13:58:48 +0100905 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 entry = snd_info_create_module_entry(THIS_MODULE, "version", NULL);
908 if (entry == NULL)
909 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 entry->c.text.read = snd_info_version_read;
Takashi Iwaib591b6e2015-04-22 22:29:10 +0200911 return snd_info_register(entry); /* freed in error path */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}