blob: 165ff62a2bed20eaf4b162c17fa727d098085c93 [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann567db7b2012-01-01 00:41:38 +01002 * Copyright (C) 2010-2012 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Marek Lindner
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
19 *
20 */
21
22#include "main.h"
23
24#include <linux/debugfs.h>
25
26#include "bat_debugfs.h"
27#include "translation-table.h"
28#include "originator.h"
29#include "hard-interface.h"
30#include "gateway_common.h"
31#include "gateway_client.h"
32#include "soft-interface.h"
33#include "vis.h"
34#include "icmp_socket.h"
35
36static struct dentry *bat_debugfs;
37
38#ifdef CONFIG_BATMAN_ADV_DEBUG
39#define LOG_BUFF_MASK (log_buff_len-1)
40#define LOG_BUFF(idx) (debug_log->log_buff[(idx) & LOG_BUFF_MASK])
41
42static int log_buff_len = LOG_BUF_LEN;
43
44static void emit_log_char(struct debug_log *debug_log, char c)
45{
46 LOG_BUFF(debug_log->log_end) = c;
47 debug_log->log_end++;
48
49 if (debug_log->log_end - debug_log->log_start > log_buff_len)
50 debug_log->log_start = debug_log->log_end - log_buff_len;
51}
52
Sven Eckelmannd3a547b2011-05-14 23:14:46 +020053__printf(2, 3)
Sven Eckelmann747e4222011-05-14 23:14:50 +020054static int fdebug_log(struct debug_log *debug_log, const char *fmt, ...)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000055{
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056 va_list args;
57 static char debug_log_buf[256];
58 char *p;
59
60 if (!debug_log)
61 return 0;
62
63 spin_lock_bh(&debug_log->lock);
64 va_start(args, fmt);
Sven Eckelmann1299bda2011-01-27 13:48:54 +010065 vscnprintf(debug_log_buf, sizeof(debug_log_buf), fmt, args);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066 va_end(args);
67
68 for (p = debug_log_buf; *p != 0; p++)
69 emit_log_char(debug_log, *p);
70
71 spin_unlock_bh(&debug_log->lock);
72
73 wake_up(&debug_log->queue_wait);
74
75 return 0;
76}
77
Sven Eckelmann747e4222011-05-14 23:14:50 +020078int debug_log(struct bat_priv *bat_priv, const char *fmt, ...)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000079{
80 va_list args;
81 char tmp_log_buf[256];
82
83 va_start(args, fmt);
84 vscnprintf(tmp_log_buf, sizeof(tmp_log_buf), fmt, args);
Sven Eckelmannf678bc92011-05-14 23:14:47 +020085 fdebug_log(bat_priv->debug_log, "[%10lu] %s",
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000086 (jiffies / HZ), tmp_log_buf);
87 va_end(args);
88
89 return 0;
90}
91
92static int log_open(struct inode *inode, struct file *file)
93{
94 nonseekable_open(inode, file);
95 file->private_data = inode->i_private;
96 inc_module_count();
97 return 0;
98}
99
100static int log_release(struct inode *inode, struct file *file)
101{
102 dec_module_count();
103 return 0;
104}
105
106static ssize_t log_read(struct file *file, char __user *buf,
107 size_t count, loff_t *ppos)
108{
109 struct bat_priv *bat_priv = file->private_data;
110 struct debug_log *debug_log = bat_priv->debug_log;
111 int error, i = 0;
112 char c;
113
114 if ((file->f_flags & O_NONBLOCK) &&
115 !(debug_log->log_end - debug_log->log_start))
116 return -EAGAIN;
117
Sven Eckelmann16f14b42011-05-14 23:14:48 +0200118 if (!buf)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000119 return -EINVAL;
120
121 if (count == 0)
122 return 0;
123
124 if (!access_ok(VERIFY_WRITE, buf, count))
125 return -EFAULT;
126
127 error = wait_event_interruptible(debug_log->queue_wait,
128 (debug_log->log_start - debug_log->log_end));
129
130 if (error)
131 return error;
132
133 spin_lock_bh(&debug_log->lock);
134
135 while ((!error) && (i < count) &&
136 (debug_log->log_start != debug_log->log_end)) {
137 c = LOG_BUFF(debug_log->log_start);
138
139 debug_log->log_start++;
140
141 spin_unlock_bh(&debug_log->lock);
142
143 error = __put_user(c, buf);
144
145 spin_lock_bh(&debug_log->lock);
146
147 buf++;
148 i++;
149
150 }
151
152 spin_unlock_bh(&debug_log->lock);
153
154 if (!error)
155 return i;
156
157 return error;
158}
159
160static unsigned int log_poll(struct file *file, poll_table *wait)
161{
162 struct bat_priv *bat_priv = file->private_data;
163 struct debug_log *debug_log = bat_priv->debug_log;
164
165 poll_wait(file, &debug_log->queue_wait, wait);
166
167 if (debug_log->log_end - debug_log->log_start)
168 return POLLIN | POLLRDNORM;
169
170 return 0;
171}
172
173static const struct file_operations log_fops = {
174 .open = log_open,
175 .release = log_release,
176 .read = log_read,
177 .poll = log_poll,
178 .llseek = no_llseek,
179};
180
181static int debug_log_setup(struct bat_priv *bat_priv)
182{
183 struct dentry *d;
184
185 if (!bat_priv->debug_dir)
186 goto err;
187
Sven Eckelmann704509b2011-05-14 23:14:54 +0200188 bat_priv->debug_log = kzalloc(sizeof(*bat_priv->debug_log), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000189 if (!bat_priv->debug_log)
190 goto err;
191
192 spin_lock_init(&bat_priv->debug_log->lock);
193 init_waitqueue_head(&bat_priv->debug_log->queue_wait);
194
195 d = debugfs_create_file("log", S_IFREG | S_IRUSR,
196 bat_priv->debug_dir, bat_priv, &log_fops);
197 if (d)
198 goto err;
199
200 return 0;
201
202err:
203 return 1;
204}
205
206static void debug_log_cleanup(struct bat_priv *bat_priv)
207{
208 kfree(bat_priv->debug_log);
209 bat_priv->debug_log = NULL;
210}
211#else /* CONFIG_BATMAN_ADV_DEBUG */
212static int debug_log_setup(struct bat_priv *bat_priv)
213{
214 bat_priv->debug_log = NULL;
215 return 0;
216}
217
218static void debug_log_cleanup(struct bat_priv *bat_priv)
219{
220 return;
221}
222#endif
223
Marek Lindner1c280472011-11-28 17:40:17 +0800224static int bat_algorithms_open(struct inode *inode, struct file *file)
225{
226 return single_open(file, bat_algo_seq_print_text, NULL);
227}
228
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000229static int originators_open(struct inode *inode, struct file *file)
230{
231 struct net_device *net_dev = (struct net_device *)inode->i_private;
232 return single_open(file, orig_seq_print_text, net_dev);
233}
234
235static int gateways_open(struct inode *inode, struct file *file)
236{
237 struct net_device *net_dev = (struct net_device *)inode->i_private;
238 return single_open(file, gw_client_seq_print_text, net_dev);
239}
240
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241static int transtable_global_open(struct inode *inode, struct file *file)
242{
243 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200244 return single_open(file, tt_global_seq_print_text, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000245}
246
247static int transtable_local_open(struct inode *inode, struct file *file)
248{
249 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartulli2dafb492011-05-05 08:42:45 +0200250 return single_open(file, tt_local_seq_print_text, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000251}
252
253static int vis_data_open(struct inode *inode, struct file *file)
254{
255 struct net_device *net_dev = (struct net_device *)inode->i_private;
256 return single_open(file, vis_seq_print_text, net_dev);
257}
258
259struct bat_debuginfo {
260 struct attribute attr;
261 const struct file_operations fops;
262};
263
264#define BAT_DEBUGINFO(_name, _mode, _open) \
265struct bat_debuginfo bat_debuginfo_##_name = { \
266 .attr = { .name = __stringify(_name), \
267 .mode = _mode, }, \
268 .fops = { .owner = THIS_MODULE, \
269 .open = _open, \
270 .read = seq_read, \
271 .llseek = seq_lseek, \
272 .release = single_release, \
273 } \
274};
275
Marek Lindner1c280472011-11-28 17:40:17 +0800276static BAT_DEBUGINFO(routing_algos, S_IRUGO, bat_algorithms_open);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000277static BAT_DEBUGINFO(originators, S_IRUGO, originators_open);
278static BAT_DEBUGINFO(gateways, S_IRUGO, gateways_open);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000279static BAT_DEBUGINFO(transtable_global, S_IRUGO, transtable_global_open);
280static BAT_DEBUGINFO(transtable_local, S_IRUGO, transtable_local_open);
281static BAT_DEBUGINFO(vis_data, S_IRUGO, vis_data_open);
282
283static struct bat_debuginfo *mesh_debuginfos[] = {
284 &bat_debuginfo_originators,
285 &bat_debuginfo_gateways,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000286 &bat_debuginfo_transtable_global,
287 &bat_debuginfo_transtable_local,
288 &bat_debuginfo_vis_data,
289 NULL,
290};
291
292void debugfs_init(void)
293{
Marek Lindner1c280472011-11-28 17:40:17 +0800294 struct bat_debuginfo *bat_debug;
295 struct dentry *file;
296
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000297 bat_debugfs = debugfs_create_dir(DEBUGFS_BAT_SUBDIR, NULL);
298 if (bat_debugfs == ERR_PTR(-ENODEV))
299 bat_debugfs = NULL;
Marek Lindner1c280472011-11-28 17:40:17 +0800300
301 if (!bat_debugfs)
302 goto out;
303
304 bat_debug = &bat_debuginfo_routing_algos;
305 file = debugfs_create_file(bat_debug->attr.name,
306 S_IFREG | bat_debug->attr.mode,
307 bat_debugfs, NULL, &bat_debug->fops);
308 if (!file)
309 pr_err("Can't add debugfs file: %s\n", bat_debug->attr.name);
310
311out:
312 return;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000313}
314
315void debugfs_destroy(void)
316{
317 if (bat_debugfs) {
318 debugfs_remove_recursive(bat_debugfs);
319 bat_debugfs = NULL;
320 }
321}
322
323int debugfs_add_meshif(struct net_device *dev)
324{
325 struct bat_priv *bat_priv = netdev_priv(dev);
326 struct bat_debuginfo **bat_debug;
327 struct dentry *file;
328
329 if (!bat_debugfs)
330 goto out;
331
332 bat_priv->debug_dir = debugfs_create_dir(dev->name, bat_debugfs);
333 if (!bat_priv->debug_dir)
334 goto out;
335
336 bat_socket_setup(bat_priv);
337 debug_log_setup(bat_priv);
338
339 for (bat_debug = mesh_debuginfos; *bat_debug; ++bat_debug) {
340 file = debugfs_create_file(((*bat_debug)->attr).name,
341 S_IFREG | ((*bat_debug)->attr).mode,
342 bat_priv->debug_dir,
343 dev, &(*bat_debug)->fops);
344 if (!file) {
345 bat_err(dev, "Can't add debugfs file: %s/%s\n",
346 dev->name, ((*bat_debug)->attr).name);
347 goto rem_attr;
348 }
349 }
350
351 return 0;
352rem_attr:
353 debugfs_remove_recursive(bat_priv->debug_dir);
354 bat_priv->debug_dir = NULL;
355out:
356#ifdef CONFIG_DEBUG_FS
357 return -ENOMEM;
358#else
359 return 0;
360#endif /* CONFIG_DEBUG_FS */
361}
362
363void debugfs_del_meshif(struct net_device *dev)
364{
365 struct bat_priv *bat_priv = netdev_priv(dev);
366
367 debug_log_cleanup(bat_priv);
368
369 if (bat_debugfs) {
370 debugfs_remove_recursive(bat_priv->debug_dir);
371 bat_priv->debug_dir = NULL;
372 }
373}