Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[linux-2.6.git] / net / batman-adv / debugfs.c
blob049a7a2ac5b69b83422a3292ee7ebb2183e36114
1 /* Copyright (C) 2010-2013 B.A.T.M.A.N. contributors:
3 * Marek Lindner
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
20 #include "main.h"
22 #include <linux/debugfs.h>
24 #include "debugfs.h"
25 #include "translation-table.h"
26 #include "originator.h"
27 #include "hard-interface.h"
28 #include "gateway_common.h"
29 #include "gateway_client.h"
30 #include "soft-interface.h"
31 #include "icmp_socket.h"
32 #include "bridge_loop_avoidance.h"
33 #include "distributed-arp-table.h"
34 #include "network-coding.h"
36 static struct dentry *batadv_debugfs;
38 #ifdef CONFIG_BATMAN_ADV_DEBUG
39 #define BATADV_LOG_BUFF_MASK (batadv_log_buff_len - 1)
41 static const int batadv_log_buff_len = BATADV_LOG_BUF_LEN;
43 static char *batadv_log_char_addr(struct batadv_priv_debug_log *debug_log,
44 size_t idx)
46 return &debug_log->log_buff[idx & BATADV_LOG_BUFF_MASK];
49 static void batadv_emit_log_char(struct batadv_priv_debug_log *debug_log,
50 char c)
52 char *char_addr;
54 char_addr = batadv_log_char_addr(debug_log, debug_log->log_end);
55 *char_addr = c;
56 debug_log->log_end++;
58 if (debug_log->log_end - debug_log->log_start > batadv_log_buff_len)
59 debug_log->log_start = debug_log->log_end - batadv_log_buff_len;
62 __printf(2, 3)
63 static int batadv_fdebug_log(struct batadv_priv_debug_log *debug_log,
64 const char *fmt, ...)
66 va_list args;
67 static char debug_log_buf[256];
68 char *p;
70 if (!debug_log)
71 return 0;
73 spin_lock_bh(&debug_log->lock);
74 va_start(args, fmt);
75 vscnprintf(debug_log_buf, sizeof(debug_log_buf), fmt, args);
76 va_end(args);
78 for (p = debug_log_buf; *p != 0; p++)
79 batadv_emit_log_char(debug_log, *p);
81 spin_unlock_bh(&debug_log->lock);
83 wake_up(&debug_log->queue_wait);
85 return 0;
88 int batadv_debug_log(struct batadv_priv *bat_priv, const char *fmt, ...)
90 va_list args;
91 char tmp_log_buf[256];
93 va_start(args, fmt);
94 vscnprintf(tmp_log_buf, sizeof(tmp_log_buf), fmt, args);
95 batadv_fdebug_log(bat_priv->debug_log, "[%10u] %s",
96 jiffies_to_msecs(jiffies), tmp_log_buf);
97 va_end(args);
99 return 0;
102 static int batadv_log_open(struct inode *inode, struct file *file)
104 if (!try_module_get(THIS_MODULE))
105 return -EBUSY;
107 nonseekable_open(inode, file);
108 file->private_data = inode->i_private;
109 return 0;
112 static int batadv_log_release(struct inode *inode, struct file *file)
114 module_put(THIS_MODULE);
115 return 0;
118 static int batadv_log_empty(struct batadv_priv_debug_log *debug_log)
120 return !(debug_log->log_start - debug_log->log_end);
123 static ssize_t batadv_log_read(struct file *file, char __user *buf,
124 size_t count, loff_t *ppos)
126 struct batadv_priv *bat_priv = file->private_data;
127 struct batadv_priv_debug_log *debug_log = bat_priv->debug_log;
128 int error, i = 0;
129 char *char_addr;
130 char c;
132 if ((file->f_flags & O_NONBLOCK) && batadv_log_empty(debug_log))
133 return -EAGAIN;
135 if (!buf)
136 return -EINVAL;
138 if (count == 0)
139 return 0;
141 if (!access_ok(VERIFY_WRITE, buf, count))
142 return -EFAULT;
144 error = wait_event_interruptible(debug_log->queue_wait,
145 (!batadv_log_empty(debug_log)));
147 if (error)
148 return error;
150 spin_lock_bh(&debug_log->lock);
152 while ((!error) && (i < count) &&
153 (debug_log->log_start != debug_log->log_end)) {
154 char_addr = batadv_log_char_addr(debug_log,
155 debug_log->log_start);
156 c = *char_addr;
158 debug_log->log_start++;
160 spin_unlock_bh(&debug_log->lock);
162 error = __put_user(c, buf);
164 spin_lock_bh(&debug_log->lock);
166 buf++;
167 i++;
170 spin_unlock_bh(&debug_log->lock);
172 if (!error)
173 return i;
175 return error;
178 static unsigned int batadv_log_poll(struct file *file, poll_table *wait)
180 struct batadv_priv *bat_priv = file->private_data;
181 struct batadv_priv_debug_log *debug_log = bat_priv->debug_log;
183 poll_wait(file, &debug_log->queue_wait, wait);
185 if (!batadv_log_empty(debug_log))
186 return POLLIN | POLLRDNORM;
188 return 0;
191 static const struct file_operations batadv_log_fops = {
192 .open = batadv_log_open,
193 .release = batadv_log_release,
194 .read = batadv_log_read,
195 .poll = batadv_log_poll,
196 .llseek = no_llseek,
199 static int batadv_debug_log_setup(struct batadv_priv *bat_priv)
201 struct dentry *d;
203 if (!bat_priv->debug_dir)
204 goto err;
206 bat_priv->debug_log = kzalloc(sizeof(*bat_priv->debug_log), GFP_ATOMIC);
207 if (!bat_priv->debug_log)
208 goto err;
210 spin_lock_init(&bat_priv->debug_log->lock);
211 init_waitqueue_head(&bat_priv->debug_log->queue_wait);
213 d = debugfs_create_file("log", S_IFREG | S_IRUSR,
214 bat_priv->debug_dir, bat_priv,
215 &batadv_log_fops);
216 if (!d)
217 goto err;
219 return 0;
221 err:
222 return -ENOMEM;
225 static void batadv_debug_log_cleanup(struct batadv_priv *bat_priv)
227 kfree(bat_priv->debug_log);
228 bat_priv->debug_log = NULL;
230 #else /* CONFIG_BATMAN_ADV_DEBUG */
231 static int batadv_debug_log_setup(struct batadv_priv *bat_priv)
233 return 0;
236 static void batadv_debug_log_cleanup(struct batadv_priv *bat_priv)
238 return;
240 #endif
242 static int batadv_algorithms_open(struct inode *inode, struct file *file)
244 return single_open(file, batadv_algo_seq_print_text, NULL);
247 static int batadv_originators_open(struct inode *inode, struct file *file)
249 struct net_device *net_dev = (struct net_device *)inode->i_private;
250 return single_open(file, batadv_orig_seq_print_text, net_dev);
253 static int batadv_gateways_open(struct inode *inode, struct file *file)
255 struct net_device *net_dev = (struct net_device *)inode->i_private;
256 return single_open(file, batadv_gw_client_seq_print_text, net_dev);
259 static int batadv_transtable_global_open(struct inode *inode, struct file *file)
261 struct net_device *net_dev = (struct net_device *)inode->i_private;
262 return single_open(file, batadv_tt_global_seq_print_text, net_dev);
265 #ifdef CONFIG_BATMAN_ADV_BLA
266 static int batadv_bla_claim_table_open(struct inode *inode, struct file *file)
268 struct net_device *net_dev = (struct net_device *)inode->i_private;
269 return single_open(file, batadv_bla_claim_table_seq_print_text,
270 net_dev);
273 static int batadv_bla_backbone_table_open(struct inode *inode,
274 struct file *file)
276 struct net_device *net_dev = (struct net_device *)inode->i_private;
277 return single_open(file, batadv_bla_backbone_table_seq_print_text,
278 net_dev);
281 #endif
283 #ifdef CONFIG_BATMAN_ADV_DAT
285 * batadv_dat_cache_open - Prepare file handler for reads from dat_chache
286 * @inode: inode which was opened
287 * @file: file handle to be initialized
289 static int batadv_dat_cache_open(struct inode *inode, struct file *file)
291 struct net_device *net_dev = (struct net_device *)inode->i_private;
292 return single_open(file, batadv_dat_cache_seq_print_text, net_dev);
294 #endif
296 static int batadv_transtable_local_open(struct inode *inode, struct file *file)
298 struct net_device *net_dev = (struct net_device *)inode->i_private;
299 return single_open(file, batadv_tt_local_seq_print_text, net_dev);
302 struct batadv_debuginfo {
303 struct attribute attr;
304 const struct file_operations fops;
307 #ifdef CONFIG_BATMAN_ADV_NC
308 static int batadv_nc_nodes_open(struct inode *inode, struct file *file)
310 struct net_device *net_dev = (struct net_device *)inode->i_private;
311 return single_open(file, batadv_nc_nodes_seq_print_text, net_dev);
313 #endif
315 #define BATADV_DEBUGINFO(_name, _mode, _open) \
316 struct batadv_debuginfo batadv_debuginfo_##_name = { \
317 .attr = { .name = __stringify(_name), \
318 .mode = _mode, }, \
319 .fops = { .owner = THIS_MODULE, \
320 .open = _open, \
321 .read = seq_read, \
322 .llseek = seq_lseek, \
323 .release = single_release, \
327 /* the following attributes are general and therefore they will be directly
328 * placed in the BATADV_DEBUGFS_SUBDIR subdirectory of debugfs
330 static BATADV_DEBUGINFO(routing_algos, S_IRUGO, batadv_algorithms_open);
332 static struct batadv_debuginfo *batadv_general_debuginfos[] = {
333 &batadv_debuginfo_routing_algos,
334 NULL,
337 /* The following attributes are per soft interface */
338 static BATADV_DEBUGINFO(originators, S_IRUGO, batadv_originators_open);
339 static BATADV_DEBUGINFO(gateways, S_IRUGO, batadv_gateways_open);
340 static BATADV_DEBUGINFO(transtable_global, S_IRUGO,
341 batadv_transtable_global_open);
342 #ifdef CONFIG_BATMAN_ADV_BLA
343 static BATADV_DEBUGINFO(bla_claim_table, S_IRUGO, batadv_bla_claim_table_open);
344 static BATADV_DEBUGINFO(bla_backbone_table, S_IRUGO,
345 batadv_bla_backbone_table_open);
346 #endif
347 #ifdef CONFIG_BATMAN_ADV_DAT
348 static BATADV_DEBUGINFO(dat_cache, S_IRUGO, batadv_dat_cache_open);
349 #endif
350 static BATADV_DEBUGINFO(transtable_local, S_IRUGO,
351 batadv_transtable_local_open);
352 #ifdef CONFIG_BATMAN_ADV_NC
353 static BATADV_DEBUGINFO(nc_nodes, S_IRUGO, batadv_nc_nodes_open);
354 #endif
356 static struct batadv_debuginfo *batadv_mesh_debuginfos[] = {
357 &batadv_debuginfo_originators,
358 &batadv_debuginfo_gateways,
359 &batadv_debuginfo_transtable_global,
360 #ifdef CONFIG_BATMAN_ADV_BLA
361 &batadv_debuginfo_bla_claim_table,
362 &batadv_debuginfo_bla_backbone_table,
363 #endif
364 #ifdef CONFIG_BATMAN_ADV_DAT
365 &batadv_debuginfo_dat_cache,
366 #endif
367 &batadv_debuginfo_transtable_local,
368 #ifdef CONFIG_BATMAN_ADV_NC
369 &batadv_debuginfo_nc_nodes,
370 #endif
371 NULL,
374 void batadv_debugfs_init(void)
376 struct batadv_debuginfo **bat_debug;
377 struct dentry *file;
379 batadv_debugfs = debugfs_create_dir(BATADV_DEBUGFS_SUBDIR, NULL);
380 if (batadv_debugfs == ERR_PTR(-ENODEV))
381 batadv_debugfs = NULL;
383 if (!batadv_debugfs)
384 goto err;
386 for (bat_debug = batadv_general_debuginfos; *bat_debug; ++bat_debug) {
387 file = debugfs_create_file(((*bat_debug)->attr).name,
388 S_IFREG | ((*bat_debug)->attr).mode,
389 batadv_debugfs, NULL,
390 &(*bat_debug)->fops);
391 if (!file) {
392 pr_err("Can't add general debugfs file: %s\n",
393 ((*bat_debug)->attr).name);
394 goto err;
398 return;
399 err:
400 debugfs_remove_recursive(batadv_debugfs);
403 void batadv_debugfs_destroy(void)
405 debugfs_remove_recursive(batadv_debugfs);
406 batadv_debugfs = NULL;
409 int batadv_debugfs_add_meshif(struct net_device *dev)
411 struct batadv_priv *bat_priv = netdev_priv(dev);
412 struct batadv_debuginfo **bat_debug;
413 struct dentry *file;
415 if (!batadv_debugfs)
416 goto out;
418 bat_priv->debug_dir = debugfs_create_dir(dev->name, batadv_debugfs);
419 if (!bat_priv->debug_dir)
420 goto out;
422 if (batadv_socket_setup(bat_priv) < 0)
423 goto rem_attr;
425 if (batadv_debug_log_setup(bat_priv) < 0)
426 goto rem_attr;
428 for (bat_debug = batadv_mesh_debuginfos; *bat_debug; ++bat_debug) {
429 file = debugfs_create_file(((*bat_debug)->attr).name,
430 S_IFREG | ((*bat_debug)->attr).mode,
431 bat_priv->debug_dir,
432 dev, &(*bat_debug)->fops);
433 if (!file) {
434 batadv_err(dev, "Can't add debugfs file: %s/%s\n",
435 dev->name, ((*bat_debug)->attr).name);
436 goto rem_attr;
440 if (batadv_nc_init_debugfs(bat_priv) < 0)
441 goto rem_attr;
443 return 0;
444 rem_attr:
445 debugfs_remove_recursive(bat_priv->debug_dir);
446 bat_priv->debug_dir = NULL;
447 out:
448 #ifdef CONFIG_DEBUG_FS
449 return -ENOMEM;
450 #else
451 return 0;
452 #endif /* CONFIG_DEBUG_FS */
455 void batadv_debugfs_del_meshif(struct net_device *dev)
457 struct batadv_priv *bat_priv = netdev_priv(dev);
459 batadv_debug_log_cleanup(bat_priv);
461 if (batadv_debugfs) {
462 debugfs_remove_recursive(bat_priv->debug_dir);
463 bat_priv->debug_dir = NULL;