Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Information interface for ALSA driver |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 4 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/time.h> |
Andrea Righi | 27ac792 | 2008-07-23 21:28:13 -0700 | [diff] [blame] | 9 | #include <linux/mm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 10 | #include <linux/slab.h> |
Paulo Marques | 543537b | 2005-06-23 00:09:02 -0700 | [diff] [blame] | 11 | #include <linux/string.h> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 12 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <sound/core.h> |
| 14 | #include <sound/minors.h> |
| 15 | #include <sound/info.h> |
Jaroslav Kysela | 4266274 | 2012-09-04 11:21:45 +0200 | [diff] [blame] | 16 | #include <linux/utsname.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/proc_fs.h> |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 18 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <stdarg.h> |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | int snd_info_check_reserved_words(const char *str) |
| 22 | { |
Takashi Iwai | 51d7847 | 2020-01-05 15:47:53 +0100 | [diff] [blame] | 23 | static const char * const reserved[] = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | }; |
Takashi Iwai | 51d7847 | 2020-01-05 15:47:53 +0100 | [diff] [blame] | 38 | const char * const *xstr = reserved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 50 | static DEFINE_MUTEX(info_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 52 | struct snd_info_private_data { |
| 53 | struct snd_info_buffer *rbuffer; |
| 54 | struct snd_info_buffer *wbuffer; |
| 55 | struct snd_info_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | void *file_private_data; |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 57 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | static int snd_info_version_init(void); |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 60 | static void snd_info_disconnect(struct snd_info_entry *entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | /* |
| 63 | |
| 64 | */ |
| 65 | |
Takashi Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 66 | static struct snd_info_entry *snd_proc_root; |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 67 | struct snd_info_entry *snd_seq_root; |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 68 | EXPORT_SYMBOL(snd_seq_root); |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #ifdef CONFIG_SND_OSSEMUL |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 71 | struct snd_info_entry *snd_oss_root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #endif |
| 73 | |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 74 | static int alloc_info_private(struct snd_info_entry *entry, |
| 75 | struct snd_info_private_data **ret) |
| 76 | { |
| 77 | struct snd_info_private_data *data; |
| 78 | |
| 79 | if (!entry || !entry->p) |
| 80 | return -ENODEV; |
| 81 | if (!try_module_get(entry->module)) |
| 82 | return -EFAULT; |
| 83 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 84 | if (!data) { |
| 85 | module_put(entry->module); |
| 86 | return -ENOMEM; |
| 87 | } |
| 88 | data->entry = entry; |
| 89 | *ret = data; |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | static bool valid_pos(loff_t pos, size_t count) |
| 94 | { |
| 95 | if (pos < 0 || (long) pos != pos || (ssize_t) count < 0) |
| 96 | return false; |
| 97 | if ((unsigned long) pos + (unsigned long) count < (unsigned long) pos) |
| 98 | return false; |
| 99 | return true; |
| 100 | } |
| 101 | |
| 102 | /* |
| 103 | * file ops for binary proc files |
| 104 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | static loff_t snd_info_entry_llseek(struct file *file, loff_t offset, int orig) |
| 106 | { |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 107 | struct snd_info_private_data *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | struct snd_info_entry *entry; |
Takashi Iwai | 73029e0 | 2010-04-13 11:39:47 +0200 | [diff] [blame] | 109 | loff_t ret = -EINVAL, size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | data = file->private_data; |
| 112 | entry = data->entry; |
Takashi Iwai | 5b5cd55 | 2010-04-07 18:33:57 +0200 | [diff] [blame] | 113 | mutex_lock(&entry->access); |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 114 | if (entry->c.ops->llseek) { |
Takashi Iwai | 73029e0 | 2010-04-13 11:39:47 +0200 | [diff] [blame] | 115 | offset = entry->c.ops->llseek(entry, |
| 116 | data->file_private_data, |
| 117 | file, offset, orig); |
| 118 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 120 | |
| 121 | size = entry->size; |
Takashi Iwai | 73029e0 | 2010-04-13 11:39:47 +0200 | [diff] [blame] | 122 | switch (orig) { |
| 123 | case SEEK_SET: |
| 124 | break; |
| 125 | case SEEK_CUR: |
| 126 | offset += file->f_pos; |
| 127 | break; |
| 128 | case SEEK_END: |
| 129 | if (!size) |
| 130 | goto out; |
| 131 | offset += size; |
| 132 | break; |
| 133 | default: |
| 134 | goto out; |
| 135 | } |
| 136 | if (offset < 0) |
| 137 | goto out; |
| 138 | if (size && offset > size) |
| 139 | offset = size; |
| 140 | file->f_pos = offset; |
| 141 | ret = offset; |
| 142 | out: |
Takashi Iwai | 5b5cd55 | 2010-04-07 18:33:57 +0200 | [diff] [blame] | 143 | mutex_unlock(&entry->access); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | return ret; |
| 145 | } |
| 146 | |
| 147 | static ssize_t snd_info_entry_read(struct file *file, char __user *buffer, |
| 148 | size_t count, loff_t * offset) |
| 149 | { |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 150 | struct snd_info_private_data *data = file->private_data; |
| 151 | struct snd_info_entry *entry = data->entry; |
| 152 | size_t size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | loff_t pos; |
| 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | pos = *offset; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 156 | if (!valid_pos(pos, count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | return -EIO; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 158 | if (pos >= entry->size) |
| 159 | return 0; |
| 160 | size = entry->size - pos; |
| 161 | size = min(count, size); |
| 162 | size = entry->c.ops->read(entry, data->file_private_data, |
| 163 | file, buffer, size, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | if ((ssize_t) size > 0) |
| 165 | *offset = pos + size; |
| 166 | return size; |
| 167 | } |
| 168 | |
| 169 | static ssize_t snd_info_entry_write(struct file *file, const char __user *buffer, |
| 170 | size_t count, loff_t * offset) |
| 171 | { |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 172 | struct snd_info_private_data *data = file->private_data; |
| 173 | struct snd_info_entry *entry = data->entry; |
Takashi Iwai | 7e4eeec | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 174 | ssize_t size = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | loff_t pos; |
| 176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | pos = *offset; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 178 | if (!valid_pos(pos, count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | return -EIO; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 180 | if (count > 0) { |
| 181 | size_t maxsize = entry->size - pos; |
| 182 | count = min(count, maxsize); |
| 183 | size = entry->c.ops->write(entry, data->file_private_data, |
| 184 | file, buffer, count, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | } |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 186 | if (size > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | *offset = pos + size; |
| 188 | return size; |
| 189 | } |
| 190 | |
Al Viro | 680ef72 | 2017-07-02 23:27:36 -0400 | [diff] [blame] | 191 | static __poll_t snd_info_entry_poll(struct file *file, poll_table *wait) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 193 | struct snd_info_private_data *data = file->private_data; |
| 194 | struct snd_info_entry *entry = data->entry; |
Al Viro | 680ef72 | 2017-07-02 23:27:36 -0400 | [diff] [blame] | 195 | __poll_t mask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 197 | if (entry->c.ops->poll) |
| 198 | return entry->c.ops->poll(entry, |
| 199 | data->file_private_data, |
| 200 | file, wait); |
| 201 | if (entry->c.ops->read) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 202 | mask |= EPOLLIN | EPOLLRDNORM; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 203 | if (entry->c.ops->write) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 204 | mask |= EPOLLOUT | EPOLLWRNORM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | return mask; |
| 206 | } |
| 207 | |
Ingo Molnar | d99e988 | 2006-01-09 16:44:46 +0100 | [diff] [blame] | 208 | static long snd_info_entry_ioctl(struct file *file, unsigned int cmd, |
| 209 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 211 | struct snd_info_private_data *data = file->private_data; |
| 212 | struct snd_info_entry *entry = data->entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 214 | if (!entry->c.ops->ioctl) |
| 215 | return -ENOTTY; |
| 216 | return entry->c.ops->ioctl(entry, data->file_private_data, |
| 217 | file, cmd, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | } |
| 219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | static int snd_info_entry_mmap(struct file *file, struct vm_area_struct *vma) |
| 221 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 222 | struct inode *inode = file_inode(file); |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 223 | struct snd_info_private_data *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | struct snd_info_entry *entry; |
| 225 | |
| 226 | data = file->private_data; |
| 227 | if (data == NULL) |
| 228 | return 0; |
| 229 | entry = data->entry; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 230 | if (!entry->c.ops->mmap) |
| 231 | return -ENXIO; |
| 232 | return entry->c.ops->mmap(entry, data->file_private_data, |
| 233 | inode, file, vma); |
| 234 | } |
| 235 | |
| 236 | static int snd_info_entry_open(struct inode *inode, struct file *file) |
| 237 | { |
| 238 | struct snd_info_entry *entry = PDE_DATA(inode); |
| 239 | struct snd_info_private_data *data; |
| 240 | int mode, err; |
| 241 | |
| 242 | mutex_lock(&info_mutex); |
| 243 | err = alloc_info_private(entry, &data); |
| 244 | if (err < 0) |
| 245 | goto unlock; |
| 246 | |
| 247 | mode = file->f_flags & O_ACCMODE; |
| 248 | if (((mode == O_RDONLY || mode == O_RDWR) && !entry->c.ops->read) || |
| 249 | ((mode == O_WRONLY || mode == O_RDWR) && !entry->c.ops->write)) { |
| 250 | err = -ENODEV; |
| 251 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | } |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 253 | |
| 254 | if (entry->c.ops->open) { |
| 255 | err = entry->c.ops->open(entry, mode, &data->file_private_data); |
| 256 | if (err < 0) |
| 257 | goto error; |
| 258 | } |
| 259 | |
| 260 | file->private_data = data; |
| 261 | mutex_unlock(&info_mutex); |
| 262 | return 0; |
| 263 | |
| 264 | error: |
| 265 | kfree(data); |
| 266 | module_put(entry->module); |
| 267 | unlock: |
| 268 | mutex_unlock(&info_mutex); |
| 269 | return err; |
| 270 | } |
| 271 | |
| 272 | static int snd_info_entry_release(struct inode *inode, struct file *file) |
| 273 | { |
| 274 | struct snd_info_private_data *data = file->private_data; |
| 275 | struct snd_info_entry *entry = data->entry; |
| 276 | |
| 277 | if (entry->c.ops->release) |
| 278 | entry->c.ops->release(entry, file->f_flags & O_ACCMODE, |
| 279 | data->file_private_data); |
| 280 | module_put(entry->module); |
| 281 | kfree(data); |
| 282 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 285 | static const struct proc_ops snd_info_entry_operations = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | { |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 287 | .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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | }; |
| 296 | |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 297 | /* |
| 298 | * file ops for text proc files |
| 299 | */ |
| 300 | static 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 Iwai | 6809cd6 | 2016-10-30 22:13:19 +0100 | [diff] [blame] | 312 | if (!entry->c.text.write) |
| 313 | return -EIO; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 314 | pos = *offset; |
| 315 | if (!valid_pos(pos, count)) |
| 316 | return -EIO; |
| 317 | next = pos + count; |
Takashi Iwai | 027a9fe | 2016-10-30 22:18:45 +0100 | [diff] [blame] | 318 | /* don't handle too large text inputs */ |
| 319 | if (next > 16 * 1024) |
| 320 | return -EIO; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 321 | 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 Iwai | ffb73b0 | 2017-05-22 17:39:13 +0200 | [diff] [blame] | 331 | char *nbuf = kvzalloc(PAGE_ALIGN(next), GFP_KERNEL); |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 332 | if (!nbuf) { |
| 333 | err = -ENOMEM; |
| 334 | goto error; |
| 335 | } |
Takashi Iwai | ffb73b0 | 2017-05-22 17:39:13 +0200 | [diff] [blame] | 336 | kvfree(buf->buffer); |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 337 | 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 | |
| 353 | static 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 Iwai | 6809cd6 | 2016-10-30 22:13:19 +0100 | [diff] [blame] | 358 | if (!entry->c.text.read) { |
| 359 | return -EIO; |
| 360 | } else { |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 361 | data->rbuffer->buffer = (char *)seq; /* XXX hack! */ |
| 362 | entry->c.text.read(entry, data->rbuffer); |
| 363 | } |
| 364 | return 0; |
| 365 | } |
| 366 | |
| 367 | static 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 | |
| 402 | static 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 Iwai | ffb73b0 | 2017-05-22 17:39:13 +0200 | [diff] [blame] | 414 | kvfree(data->wbuffer->buffer); |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 415 | kfree(data->wbuffer); |
| 416 | } |
| 417 | |
| 418 | module_put(entry->module); |
| 419 | kfree(data); |
| 420 | return 0; |
| 421 | } |
| 422 | |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 423 | static const struct proc_ops snd_info_text_entry_ops = |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 424 | { |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 425 | .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 Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 430 | }; |
| 431 | |
Takashi Iwai | 886364f | 2015-04-22 17:54:25 +0200 | [diff] [blame] | 432 | static 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 Perches | 6a73cf4 | 2018-05-23 12:20:59 -0700 | [diff] [blame] | 440 | entry->mode = S_IFDIR | 0555; |
Takashi Iwai | 886364f | 2015-04-22 17:54:25 +0200 | [diff] [blame] | 441 | if (snd_info_register(entry) < 0) { |
| 442 | snd_info_free_entry(entry); |
| 443 | return NULL; |
| 444 | } |
| 445 | return entry; |
| 446 | } |
| 447 | |
Takashi Iwai | 8e7ccb7b | 2015-05-18 09:43:30 +0200 | [diff] [blame] | 448 | static struct snd_info_entry * |
Takashi Iwai | a858ee6 | 2019-02-05 16:17:48 +0100 | [diff] [blame] | 449 | snd_info_create_entry(const char *name, struct snd_info_entry *parent, |
| 450 | struct module *module); |
Takashi Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | int __init snd_info_init(void) |
| 453 | { |
Takashi Iwai | a858ee6 | 2019-02-05 16:17:48 +0100 | [diff] [blame] | 454 | snd_proc_root = snd_info_create_entry("asound", NULL, THIS_MODULE); |
Takashi Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 455 | if (!snd_proc_root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | return -ENOMEM; |
Joe Perches | 6a73cf4 | 2018-05-23 12:20:59 -0700 | [diff] [blame] | 457 | snd_proc_root->mode = S_IFDIR | 0555; |
Takashi Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 458 | snd_proc_root->p = proc_mkdir("asound", NULL); |
| 459 | if (!snd_proc_root->p) |
| 460 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | #ifdef CONFIG_SND_OSSEMUL |
Takashi Iwai | 886364f | 2015-04-22 17:54:25 +0200 | [diff] [blame] | 462 | snd_oss_root = create_subdir(THIS_MODULE, "oss"); |
| 463 | if (!snd_oss_root) |
| 464 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | #endif |
Takashi Iwai | 8eeaa2f | 2014-02-10 09:48:47 +0100 | [diff] [blame] | 466 | #if IS_ENABLED(CONFIG_SND_SEQUENCER) |
Takashi Iwai | 886364f | 2015-04-22 17:54:25 +0200 | [diff] [blame] | 467 | snd_seq_root = create_subdir(THIS_MODULE, "seq"); |
| 468 | if (!snd_seq_root) |
| 469 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | #endif |
Takashi Iwai | b591b6e | 2015-04-22 22:29:10 +0200 | [diff] [blame] | 471 | if (snd_info_version_init() < 0 || |
| 472 | snd_minor_info_init() < 0 || |
| 473 | snd_minor_info_oss_init() < 0 || |
Takashi Iwai | a0dca82 | 2015-04-23 10:56:21 +0200 | [diff] [blame] | 474 | snd_card_info_init() < 0 || |
| 475 | snd_info_minor_register() < 0) |
Takashi Iwai | b591b6e | 2015-04-22 22:29:10 +0200 | [diff] [blame] | 476 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | return 0; |
Takashi Iwai | 886364f | 2015-04-22 17:54:25 +0200 | [diff] [blame] | 478 | |
| 479 | error: |
Takashi Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 480 | snd_info_free_entry(snd_proc_root); |
Takashi Iwai | 886364f | 2015-04-22 17:54:25 +0200 | [diff] [blame] | 481 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | int __exit snd_info_done(void) |
| 485 | { |
Takashi Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 486 | snd_info_free_entry(snd_proc_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | return 0; |
| 488 | } |
| 489 | |
Takashi Iwai | 29b2625 | 2019-02-05 16:26:06 +0100 | [diff] [blame] | 490 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | * create a card proc file |
| 500 | * called from init.c |
| 501 | */ |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 502 | int snd_info_card_create(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | { |
| 504 | char str[8]; |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 505 | struct snd_info_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 507 | if (snd_BUG_ON(!card)) |
| 508 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
| 510 | sprintf(str, "card%i", card->number); |
Takashi Iwai | 886364f | 2015-04-22 17:54:25 +0200 | [diff] [blame] | 511 | entry = create_subdir(card->module, str); |
| 512 | if (!entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | card->proc_root = entry; |
Takashi Iwai | 29b2625 | 2019-02-05 16:26:06 +0100 | [diff] [blame] | 515 | |
| 516 | return snd_card_ro_proc_new(card, "id", card, snd_card_id_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | /* |
| 520 | * register the card proc file |
| 521 | * called from init.c |
Takashi Iwai | 2471b6c | 2015-05-18 09:20:24 +0200 | [diff] [blame] | 522 | * can be called multiple times for reinitialization |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | */ |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 524 | int snd_info_card_register(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | { |
| 526 | struct proc_dir_entry *p; |
Takashi Iwai | 2471b6c | 2015-05-18 09:20:24 +0200 | [diff] [blame] | 527 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 529 | if (snd_BUG_ON(!card)) |
| 530 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
Takashi Iwai | 348c5ad | 2019-02-05 12:31:42 +0100 | [diff] [blame] | 532 | err = snd_info_register(card->proc_root); |
Takashi Iwai | 2471b6c | 2015-05-18 09:20:24 +0200 | [diff] [blame] | 533 | if (err < 0) |
| 534 | return err; |
| 535 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | if (!strcmp(card->id, card->proc_root->name)) |
| 537 | return 0; |
| 538 | |
Takashi Iwai | 2471b6c | 2015-05-18 09:20:24 +0200 | [diff] [blame] | 539 | if (card->proc_root_link) |
| 540 | return 0; |
Takashi Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 541 | p = proc_symlink(card->id, snd_proc_root->p, card->proc_root->name); |
Takashi Iwai | 2471b6c | 2015-05-18 09:20:24 +0200 | [diff] [blame] | 542 | if (!p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | return -ENOMEM; |
| 544 | card->proc_root_link = p; |
| 545 | return 0; |
| 546 | } |
| 547 | |
| 548 | /* |
Jaroslav Kysela | c2eb9c4 | 2008-11-12 16:31:37 +0100 | [diff] [blame] | 549 | * called on card->id change |
| 550 | */ |
| 551 | void snd_info_card_id_change(struct snd_card *card) |
| 552 | { |
| 553 | mutex_lock(&info_mutex); |
| 554 | if (card->proc_root_link) { |
David Howells | a8ca16e | 2013-04-12 17:27:28 +0100 | [diff] [blame] | 555 | proc_remove(card->proc_root_link); |
Jaroslav Kysela | c2eb9c4 | 2008-11-12 16:31:37 +0100 | [diff] [blame] | 556 | 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 Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 560 | snd_proc_root->p, |
Jaroslav Kysela | c2eb9c4 | 2008-11-12 16:31:37 +0100 | [diff] [blame] | 561 | card->proc_root->name); |
| 562 | mutex_unlock(&info_mutex); |
| 563 | } |
| 564 | |
| 565 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | * de-register the card proc file |
| 567 | * called from init.c |
| 568 | */ |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 569 | void snd_info_card_disconnect(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 571 | if (!card) |
| 572 | return; |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 573 | mutex_lock(&info_mutex); |
David Howells | a8ca16e | 2013-04-12 17:27:28 +0100 | [diff] [blame] | 574 | proc_remove(card->proc_root_link); |
| 575 | card->proc_root_link = NULL; |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 576 | 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 | */ |
| 585 | int snd_info_card_free(struct snd_card *card) |
| 586 | { |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 587 | if (!card) |
| 588 | return 0; |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 589 | snd_info_free_entry(card->proc_root); |
| 590 | card->proc_root = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | 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 Ladisch | ddc64b2 | 2014-08-21 20:55:21 +0200 | [diff] [blame] | 599 | * @len: the max. buffer size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | * |
| 601 | * Reads one line from the buffer and stores the string. |
| 602 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 603 | * Return: Zero if successful, or 1 if error or EOF. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | */ |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 605 | int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | { |
Colin Ian King | 0e02368 | 2020-02-08 22:42:06 +0000 | [diff] [blame] | 607 | int c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Takashi Iwai | 0bc0ec9 | 2013-03-13 12:11:13 +0100 | [diff] [blame] | 609 | if (snd_BUG_ON(!buffer || !buffer->buffer)) |
| 610 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | if (len <= 0 || buffer->stop || buffer->error) |
| 612 | return 1; |
Takashi Iwai | 0bc0ec9 | 2013-03-13 12:11:13 +0100 | [diff] [blame] | 613 | while (!buffer->stop) { |
Takashi Iwai | 7e4eeec | 2006-04-28 15:13:40 +0200 | [diff] [blame] | 614 | c = buffer->buffer[buffer->curr++]; |
| 615 | if (buffer->curr >= buffer->size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | buffer->stop = 1; |
Takashi Iwai | 0bc0ec9 | 2013-03-13 12:11:13 +0100 | [diff] [blame] | 617 | if (c == '\n') |
| 618 | break; |
Clemens Ladisch | ddc64b2 | 2014-08-21 20:55:21 +0200 | [diff] [blame] | 619 | if (len > 1) { |
Takashi Iwai | 0bc0ec9 | 2013-03-13 12:11:13 +0100 | [diff] [blame] | 620 | len--; |
| 621 | *line++ = c; |
| 622 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | } |
| 624 | *line = '\0'; |
| 625 | return 0; |
| 626 | } |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 627 | EXPORT_SYMBOL(snd_info_get_line); |
| 628 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | /** |
Henrik Kretzschmar | 856def8 | 2005-07-08 13:53:42 +0200 | [diff] [blame] | 630 | * snd_info_get_str - parse a string token |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | * @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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 638 | * Return: The updated pointer of the original string so that |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | * it can be used for the next call. |
| 640 | */ |
Takashi Iwai | 4f7454a | 2009-09-08 14:29:58 +0200 | [diff] [blame] | 641 | const char *snd_info_get_str(char *dest, const char *src, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | { |
| 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 Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 664 | EXPORT_SYMBOL(snd_info_get_str); |
| 665 | |
Takashi Iwai | c309c46 | 2015-05-18 09:45:11 +0200 | [diff] [blame] | 666 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | * snd_info_create_entry - create an info entry |
| 668 | * @name: the proc file name |
Takashi Iwai | 8e7ccb7b | 2015-05-18 09:43:30 +0200 | [diff] [blame] | 669 | * @parent: the parent directory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | * |
| 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 677 | * Return: The pointer of the new instance, or %NULL on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | */ |
Takashi Iwai | 8e7ccb7b | 2015-05-18 09:43:30 +0200 | [diff] [blame] | 679 | static struct snd_info_entry * |
Takashi Iwai | a858ee6 | 2019-02-05 16:17:48 +0100 | [diff] [blame] | 680 | snd_info_create_entry(const char *name, struct snd_info_entry *parent, |
| 681 | struct module *module) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | { |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 683 | struct snd_info_entry *entry; |
Takashi Iwai | ca2c096 | 2005-09-09 14:20:23 +0200 | [diff] [blame] | 684 | entry = kzalloc(sizeof(*entry), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | if (entry == NULL) |
| 686 | return NULL; |
Paulo Marques | 543537b | 2005-06-23 00:09:02 -0700 | [diff] [blame] | 687 | entry->name = kstrdup(name, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | if (entry->name == NULL) { |
| 689 | kfree(entry); |
| 690 | return NULL; |
| 691 | } |
Joe Perches | 6a73cf4 | 2018-05-23 12:20:59 -0700 | [diff] [blame] | 692 | entry->mode = S_IFREG | 0444; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | entry->content = SNDRV_INFO_CONTENT_TEXT; |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 694 | mutex_init(&entry->access); |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 695 | INIT_LIST_HEAD(&entry->children); |
| 696 | INIT_LIST_HEAD(&entry->list); |
Takashi Iwai | 8e7ccb7b | 2015-05-18 09:43:30 +0200 | [diff] [blame] | 697 | entry->parent = parent; |
Takashi Iwai | a858ee6 | 2019-02-05 16:17:48 +0100 | [diff] [blame] | 698 | entry->module = module; |
Takashi Iwai | 8c2f870 | 2019-04-16 15:25:00 +0200 | [diff] [blame] | 699 | if (parent) { |
| 700 | mutex_lock(&parent->access); |
Takashi Iwai | 8e7ccb7b | 2015-05-18 09:43:30 +0200 | [diff] [blame] | 701 | list_add_tail(&entry->list, &parent->children); |
Takashi Iwai | 8c2f870 | 2019-04-16 15:25:00 +0200 | [diff] [blame] | 702 | mutex_unlock(&parent->access); |
| 703 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 715 | * Return: The pointer of the new instance, or %NULL on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | */ |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 717 | struct snd_info_entry *snd_info_create_module_entry(struct module * module, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | const char *name, |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 719 | struct snd_info_entry *parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | { |
Takashi Iwai | 3a55437 | 2019-01-23 17:59:40 +0100 | [diff] [blame] | 721 | if (!parent) |
| 722 | parent = snd_proc_root; |
Takashi Iwai | a858ee6 | 2019-02-05 16:17:48 +0100 | [diff] [blame] | 723 | return snd_info_create_entry(name, parent, module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | } |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 725 | EXPORT_SYMBOL(snd_info_create_module_entry); |
| 726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | /** |
| 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 Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 735 | * Return: The pointer of the new instance, or %NULL on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | */ |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 737 | struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | const char *name, |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 739 | struct snd_info_entry * parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { |
Takashi Iwai | 3a55437 | 2019-01-23 17:59:40 +0100 | [diff] [blame] | 741 | if (!parent) |
| 742 | parent = card->proc_root; |
Takashi Iwai | a858ee6 | 2019-02-05 16:17:48 +0100 | [diff] [blame] | 743 | return snd_info_create_entry(name, parent, card->module); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | } |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 745 | EXPORT_SYMBOL(snd_info_create_card_entry); |
| 746 | |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 747 | static void snd_info_disconnect(struct snd_info_entry *entry) |
| 748 | { |
Takashi Iwai | 90a409a | 2015-05-18 08:59:12 +0200 | [diff] [blame] | 749 | struct snd_info_entry *p; |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 750 | |
Takashi Iwai | c560a67 | 2015-04-22 18:26:38 +0200 | [diff] [blame] | 751 | if (!entry->p) |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 752 | return; |
Takashi Iwai | 90a409a | 2015-05-18 08:59:12 +0200 | [diff] [blame] | 753 | list_for_each_entry(p, &entry->children, list) |
Takashi Iwai | c560a67 | 2015-04-22 18:26:38 +0200 | [diff] [blame] | 754 | snd_info_disconnect(p); |
David Howells | a8ca16e | 2013-04-12 17:27:28 +0100 | [diff] [blame] | 755 | proc_remove(entry->p); |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 756 | entry->p = NULL; |
| 757 | } |
| 758 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | /** |
| 760 | * snd_info_free_entry - release the info entry |
| 761 | * @entry: the info entry |
| 762 | * |
Takashi Iwai | c560a67 | 2015-04-22 18:26:38 +0200 | [diff] [blame] | 763 | * Releases the info entry. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | */ |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 765 | void snd_info_free_entry(struct snd_info_entry * entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | { |
Takashi Iwai | c560a67 | 2015-04-22 18:26:38 +0200 | [diff] [blame] | 767 | struct snd_info_entry *p, *n; |
| 768 | |
| 769 | if (!entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | return; |
Takashi Iwai | 746d4a0 | 2006-06-23 14:37:59 +0200 | [diff] [blame] | 771 | if (entry->p) { |
| 772 | mutex_lock(&info_mutex); |
| 773 | snd_info_disconnect(entry); |
| 774 | mutex_unlock(&info_mutex); |
| 775 | } |
Takashi Iwai | c560a67 | 2015-04-22 18:26:38 +0200 | [diff] [blame] | 776 | |
| 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 Iwai | 8c2f870 | 2019-04-16 15:25:00 +0200 | [diff] [blame] | 781 | p = entry->parent; |
| 782 | if (p) { |
| 783 | mutex_lock(&p->access); |
| 784 | list_del(&entry->list); |
| 785 | mutex_unlock(&p->access); |
| 786 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | kfree(entry->name); |
| 788 | if (entry->private_free) |
| 789 | entry->private_free(entry); |
| 790 | kfree(entry); |
| 791 | } |
Takashi Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 792 | EXPORT_SYMBOL(snd_info_free_entry); |
| 793 | |
Takashi Iwai | 348c5ad | 2019-02-05 12:31:42 +0100 | [diff] [blame] | 794 | static int __snd_info_register(struct snd_info_entry *entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | { |
| 796 | struct proc_dir_entry *root, *p = NULL; |
| 797 | |
Takashi Iwai | 7eaa943 | 2008-08-08 17:09:09 +0200 | [diff] [blame] | 798 | if (snd_BUG_ON(!entry)) |
| 799 | return -ENXIO; |
Takashi Iwai | 644dbd6 | 2015-04-22 22:14:41 +0200 | [diff] [blame] | 800 | root = entry->parent == NULL ? snd_proc_root->p : entry->parent->p; |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 801 | mutex_lock(&info_mutex); |
Takashi Iwai | 348c5ad | 2019-02-05 12:31:42 +0100 | [diff] [blame] | 802 | if (entry->p || !root) |
| 803 | goto unlock; |
Al Viro | aee0c61 | 2013-03-28 23:01:34 -0400 | [diff] [blame] | 804 | 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 Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 811 | const struct proc_ops *ops; |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 812 | if (entry->content == SNDRV_INFO_CONTENT_DATA) |
| 813 | ops = &snd_info_entry_operations; |
| 814 | else |
| 815 | ops = &snd_info_text_entry_ops; |
Al Viro | aee0c61 | 2013-03-28 23:01:34 -0400 | [diff] [blame] | 816 | p = proc_create_data(entry->name, entry->mode, root, |
Takashi Iwai | 4adb7bc | 2015-04-22 16:10:22 +0200 | [diff] [blame] | 817 | ops, entry); |
Al Viro | aee0c61 | 2013-03-28 23:01:34 -0400 | [diff] [blame] | 818 | if (!p) { |
| 819 | mutex_unlock(&info_mutex); |
| 820 | return -ENOMEM; |
| 821 | } |
David Howells | 271a15e | 2013-04-12 00:38:51 +0100 | [diff] [blame] | 822 | proc_set_size(p, entry->size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | entry->p = p; |
Takashi Iwai | 348c5ad | 2019-02-05 12:31:42 +0100 | [diff] [blame] | 825 | unlock: |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 826 | mutex_unlock(&info_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | return 0; |
| 828 | } |
Takashi Iwai | 348c5ad | 2019-02-05 12:31:42 +0100 | [diff] [blame] | 829 | |
| 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 | */ |
| 839 | int 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 Iwai | c0d3fb3 | 2006-04-28 15:13:39 +0200 | [diff] [blame] | 858 | EXPORT_SYMBOL(snd_info_register); |
| 859 | |
Takashi Iwai | 7453e1d | 2019-02-04 14:53:04 +0100 | [diff] [blame] | 860 | /** |
| 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 | */ |
| 871 | int 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 | } |
| 890 | EXPORT_SYMBOL_GPL(snd_card_rw_proc_new); |
| 891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | /* |
| 893 | |
| 894 | */ |
| 895 | |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 896 | static void snd_info_version_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | { |
| 898 | snd_iprintf(buffer, |
Jaroslav Kysela | 4266274 | 2012-09-04 11:21:45 +0200 | [diff] [blame] | 899 | "Advanced Linux Sound Architecture Driver Version k%s.\n", |
| 900 | init_utsname()->release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | } |
| 902 | |
| 903 | static int __init snd_info_version_init(void) |
| 904 | { |
Takashi Iwai | 24c1f93 | 2005-11-17 13:58:48 +0100 | [diff] [blame] | 905 | struct snd_info_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | |
| 907 | entry = snd_info_create_module_entry(THIS_MODULE, "version", NULL); |
| 908 | if (entry == NULL) |
| 909 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | entry->c.text.read = snd_info_version_read; |
Takashi Iwai | b591b6e | 2015-04-22 22:29:10 +0200 | [diff] [blame] | 911 | return snd_info_register(entry); /* freed in error path */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | } |