Antonio Quartulli | 0b87393 | 2013-01-04 03:05:31 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2010-2013 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2 | * |
| 3 | * Marek Lindner |
| 4 | * |
| 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. |
| 8 | * |
| 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. |
| 13 | * |
| 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 |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #include "main.h" |
| 21 | |
| 22 | #include <linux/debugfs.h> |
| 23 | |
Sven Eckelmann | b706b13 | 2012-06-10 23:58:51 +0200 | [diff] [blame] | 24 | #include "debugfs.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 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 "vis.h" |
| 32 | #include "icmp_socket.h" |
Simon Wunderlich | 9bf8e4d | 2012-01-22 20:00:21 +0100 | [diff] [blame] | 33 | #include "bridge_loop_avoidance.h" |
Antonio Quartulli | 2f1dfbe | 2012-06-30 20:01:19 +0200 | [diff] [blame] | 34 | #include "distributed-arp-table.h" |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 35 | #include "network-coding.h" |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 36 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 37 | static struct dentry *batadv_debugfs; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 38 | |
| 39 | #ifdef CONFIG_BATMAN_ADV_DEBUG |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 40 | #define BATADV_LOG_BUFF_MASK (batadv_log_buff_len - 1) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 41 | |
Sven Eckelmann | a8a0a62 | 2012-06-05 22:31:32 +0200 | [diff] [blame] | 42 | static const int batadv_log_buff_len = BATADV_LOG_BUF_LEN; |
| 43 | |
Marek Lindner | 0abf5d8 | 2012-12-25 17:03:20 +0800 | [diff] [blame] | 44 | static char *batadv_log_char_addr(struct batadv_priv_debug_log *debug_log, |
Sven Eckelmann | a8a0a62 | 2012-06-05 22:31:32 +0200 | [diff] [blame] | 45 | size_t idx) |
| 46 | { |
| 47 | return &debug_log->log_buff[idx & BATADV_LOG_BUFF_MASK]; |
| 48 | } |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 49 | |
Marek Lindner | 0abf5d8 | 2012-12-25 17:03:20 +0800 | [diff] [blame] | 50 | static void batadv_emit_log_char(struct batadv_priv_debug_log *debug_log, |
| 51 | char c) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 52 | { |
Sven Eckelmann | a8a0a62 | 2012-06-05 22:31:32 +0200 | [diff] [blame] | 53 | char *char_addr; |
| 54 | |
| 55 | char_addr = batadv_log_char_addr(debug_log, debug_log->log_end); |
| 56 | *char_addr = c; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 57 | debug_log->log_end++; |
| 58 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 59 | if (debug_log->log_end - debug_log->log_start > batadv_log_buff_len) |
| 60 | debug_log->log_start = debug_log->log_end - batadv_log_buff_len; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Sven Eckelmann | d3a547b | 2011-05-14 23:14:46 +0200 | [diff] [blame] | 63 | __printf(2, 3) |
Marek Lindner | 0abf5d8 | 2012-12-25 17:03:20 +0800 | [diff] [blame] | 64 | static int batadv_fdebug_log(struct batadv_priv_debug_log *debug_log, |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 65 | const char *fmt, ...) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 66 | { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 67 | va_list args; |
| 68 | static char debug_log_buf[256]; |
| 69 | char *p; |
| 70 | |
| 71 | if (!debug_log) |
| 72 | return 0; |
| 73 | |
| 74 | spin_lock_bh(&debug_log->lock); |
| 75 | va_start(args, fmt); |
Sven Eckelmann | 1299bda | 2011-01-27 13:48:54 +0100 | [diff] [blame] | 76 | vscnprintf(debug_log_buf, sizeof(debug_log_buf), fmt, args); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 77 | va_end(args); |
| 78 | |
| 79 | for (p = debug_log_buf; *p != 0; p++) |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 80 | batadv_emit_log_char(debug_log, *p); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 81 | |
| 82 | spin_unlock_bh(&debug_log->lock); |
| 83 | |
| 84 | wake_up(&debug_log->queue_wait); |
| 85 | |
| 86 | return 0; |
| 87 | } |
| 88 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 89 | int batadv_debug_log(struct batadv_priv *bat_priv, const char *fmt, ...) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 90 | { |
| 91 | va_list args; |
| 92 | char tmp_log_buf[256]; |
| 93 | |
| 94 | va_start(args, fmt); |
| 95 | vscnprintf(tmp_log_buf, sizeof(tmp_log_buf), fmt, args); |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 96 | batadv_fdebug_log(bat_priv->debug_log, "[%10u] %s", |
| 97 | jiffies_to_msecs(jiffies), tmp_log_buf); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 98 | va_end(args); |
| 99 | |
| 100 | return 0; |
| 101 | } |
| 102 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 103 | static int batadv_log_open(struct inode *inode, struct file *file) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 104 | { |
Sven Eckelmann | bd5b80d | 2012-08-20 23:37:26 +0200 | [diff] [blame] | 105 | if (!try_module_get(THIS_MODULE)) |
| 106 | return -EBUSY; |
| 107 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 108 | nonseekable_open(inode, file); |
| 109 | file->private_data = inode->i_private; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 110 | return 0; |
| 111 | } |
| 112 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 113 | static int batadv_log_release(struct inode *inode, struct file *file) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 114 | { |
Sven Eckelmann | bd5b80d | 2012-08-20 23:37:26 +0200 | [diff] [blame] | 115 | module_put(THIS_MODULE); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 116 | return 0; |
| 117 | } |
| 118 | |
Marek Lindner | 0abf5d8 | 2012-12-25 17:03:20 +0800 | [diff] [blame] | 119 | static int batadv_log_empty(struct batadv_priv_debug_log *debug_log) |
Sven Eckelmann | 0aca236 | 2012-06-19 20:26:30 +0200 | [diff] [blame] | 120 | { |
| 121 | return !(debug_log->log_start - debug_log->log_end); |
| 122 | } |
| 123 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 124 | static ssize_t batadv_log_read(struct file *file, char __user *buf, |
| 125 | size_t count, loff_t *ppos) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 126 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 127 | struct batadv_priv *bat_priv = file->private_data; |
Marek Lindner | 0abf5d8 | 2012-12-25 17:03:20 +0800 | [diff] [blame] | 128 | struct batadv_priv_debug_log *debug_log = bat_priv->debug_log; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 129 | int error, i = 0; |
Sven Eckelmann | a8a0a62 | 2012-06-05 22:31:32 +0200 | [diff] [blame] | 130 | char *char_addr; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 131 | char c; |
| 132 | |
Sven Eckelmann | 0aca236 | 2012-06-19 20:26:30 +0200 | [diff] [blame] | 133 | if ((file->f_flags & O_NONBLOCK) && batadv_log_empty(debug_log)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 134 | return -EAGAIN; |
| 135 | |
Sven Eckelmann | 16f14b4 | 2011-05-14 23:14:48 +0200 | [diff] [blame] | 136 | if (!buf) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 137 | return -EINVAL; |
| 138 | |
| 139 | if (count == 0) |
| 140 | return 0; |
| 141 | |
| 142 | if (!access_ok(VERIFY_WRITE, buf, count)) |
| 143 | return -EFAULT; |
| 144 | |
| 145 | error = wait_event_interruptible(debug_log->queue_wait, |
Sven Eckelmann | 0aca236 | 2012-06-19 20:26:30 +0200 | [diff] [blame] | 146 | (!batadv_log_empty(debug_log))); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 147 | |
| 148 | if (error) |
| 149 | return error; |
| 150 | |
| 151 | spin_lock_bh(&debug_log->lock); |
| 152 | |
| 153 | while ((!error) && (i < count) && |
| 154 | (debug_log->log_start != debug_log->log_end)) { |
Sven Eckelmann | a8a0a62 | 2012-06-05 22:31:32 +0200 | [diff] [blame] | 155 | char_addr = batadv_log_char_addr(debug_log, |
| 156 | debug_log->log_start); |
| 157 | c = *char_addr; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 158 | |
| 159 | debug_log->log_start++; |
| 160 | |
| 161 | spin_unlock_bh(&debug_log->lock); |
| 162 | |
| 163 | error = __put_user(c, buf); |
| 164 | |
| 165 | spin_lock_bh(&debug_log->lock); |
| 166 | |
| 167 | buf++; |
| 168 | i++; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | spin_unlock_bh(&debug_log->lock); |
| 172 | |
| 173 | if (!error) |
| 174 | return i; |
| 175 | |
| 176 | return error; |
| 177 | } |
| 178 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 179 | static unsigned int batadv_log_poll(struct file *file, poll_table *wait) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 180 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 181 | struct batadv_priv *bat_priv = file->private_data; |
Marek Lindner | 0abf5d8 | 2012-12-25 17:03:20 +0800 | [diff] [blame] | 182 | struct batadv_priv_debug_log *debug_log = bat_priv->debug_log; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 183 | |
| 184 | poll_wait(file, &debug_log->queue_wait, wait); |
| 185 | |
Sven Eckelmann | 0aca236 | 2012-06-19 20:26:30 +0200 | [diff] [blame] | 186 | if (!batadv_log_empty(debug_log)) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 187 | return POLLIN | POLLRDNORM; |
| 188 | |
| 189 | return 0; |
| 190 | } |
| 191 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 192 | static const struct file_operations batadv_log_fops = { |
| 193 | .open = batadv_log_open, |
| 194 | .release = batadv_log_release, |
| 195 | .read = batadv_log_read, |
| 196 | .poll = batadv_log_poll, |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 197 | .llseek = no_llseek, |
| 198 | }; |
| 199 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 200 | static int batadv_debug_log_setup(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 201 | { |
| 202 | struct dentry *d; |
| 203 | |
| 204 | if (!bat_priv->debug_dir) |
| 205 | goto err; |
| 206 | |
Sven Eckelmann | 704509b | 2011-05-14 23:14:54 +0200 | [diff] [blame] | 207 | bat_priv->debug_log = kzalloc(sizeof(*bat_priv->debug_log), GFP_ATOMIC); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 208 | if (!bat_priv->debug_log) |
| 209 | goto err; |
| 210 | |
| 211 | spin_lock_init(&bat_priv->debug_log->lock); |
| 212 | init_waitqueue_head(&bat_priv->debug_log->queue_wait); |
| 213 | |
| 214 | d = debugfs_create_file("log", S_IFREG | S_IRUSR, |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 215 | bat_priv->debug_dir, bat_priv, |
| 216 | &batadv_log_fops); |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 217 | if (!d) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 218 | goto err; |
| 219 | |
| 220 | return 0; |
| 221 | |
| 222 | err: |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 223 | return -ENOMEM; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 224 | } |
| 225 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 226 | static void batadv_debug_log_cleanup(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 227 | { |
| 228 | kfree(bat_priv->debug_log); |
| 229 | bat_priv->debug_log = NULL; |
| 230 | } |
| 231 | #else /* CONFIG_BATMAN_ADV_DEBUG */ |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 232 | static int batadv_debug_log_setup(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 233 | { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 234 | return 0; |
| 235 | } |
| 236 | |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 237 | static void batadv_debug_log_cleanup(struct batadv_priv *bat_priv) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 238 | { |
| 239 | return; |
| 240 | } |
| 241 | #endif |
| 242 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 243 | static int batadv_algorithms_open(struct inode *inode, struct file *file) |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 244 | { |
Sven Eckelmann | 3193e8f | 2012-05-12 02:09:42 +0200 | [diff] [blame] | 245 | return single_open(file, batadv_algo_seq_print_text, NULL); |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 246 | } |
| 247 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 248 | static int batadv_originators_open(struct inode *inode, struct file *file) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 249 | { |
| 250 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
Sven Eckelmann | 7d211ef | 2012-05-12 02:09:34 +0200 | [diff] [blame] | 251 | return single_open(file, batadv_orig_seq_print_text, net_dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 254 | static int batadv_gateways_open(struct inode *inode, struct file *file) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 255 | { |
| 256 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
Sven Eckelmann | 7cf06bc | 2012-05-12 02:09:29 +0200 | [diff] [blame] | 257 | return single_open(file, batadv_gw_client_seq_print_text, net_dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 260 | static int batadv_transtable_global_open(struct inode *inode, struct file *file) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 261 | { |
| 262 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 263 | return single_open(file, batadv_tt_global_seq_print_text, net_dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 266 | #ifdef CONFIG_BATMAN_ADV_BLA |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 267 | static int batadv_bla_claim_table_open(struct inode *inode, struct file *file) |
Simon Wunderlich | 9bf8e4d | 2012-01-22 20:00:21 +0100 | [diff] [blame] | 268 | { |
| 269 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
Sven Eckelmann | 08adf15 | 2012-05-12 13:38:47 +0200 | [diff] [blame] | 270 | return single_open(file, batadv_bla_claim_table_seq_print_text, |
| 271 | net_dev); |
Simon Wunderlich | 9bf8e4d | 2012-01-22 20:00:21 +0100 | [diff] [blame] | 272 | } |
Simon Wunderlich | 536a23f | 2012-06-18 18:39:26 +0200 | [diff] [blame] | 273 | |
| 274 | static int batadv_bla_backbone_table_open(struct inode *inode, |
| 275 | struct file *file) |
| 276 | { |
| 277 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
| 278 | return single_open(file, batadv_bla_backbone_table_seq_print_text, |
| 279 | net_dev); |
| 280 | } |
| 281 | |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 282 | #endif |
Simon Wunderlich | 9bf8e4d | 2012-01-22 20:00:21 +0100 | [diff] [blame] | 283 | |
Antonio Quartulli | 1722447 | 2011-11-06 12:23:55 +0100 | [diff] [blame] | 284 | #ifdef CONFIG_BATMAN_ADV_DAT |
Antonio Quartulli | 2f1dfbe | 2012-06-30 20:01:19 +0200 | [diff] [blame] | 285 | /** |
| 286 | * batadv_dat_cache_open - Prepare file handler for reads from dat_chache |
| 287 | * @inode: inode which was opened |
| 288 | * @file: file handle to be initialized |
| 289 | */ |
| 290 | static int batadv_dat_cache_open(struct inode *inode, struct file *file) |
| 291 | { |
| 292 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
| 293 | return single_open(file, batadv_dat_cache_seq_print_text, net_dev); |
| 294 | } |
Antonio Quartulli | 1722447 | 2011-11-06 12:23:55 +0100 | [diff] [blame] | 295 | #endif |
Antonio Quartulli | 2f1dfbe | 2012-06-30 20:01:19 +0200 | [diff] [blame] | 296 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 297 | static int batadv_transtable_local_open(struct inode *inode, struct file *file) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 298 | { |
| 299 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
Sven Eckelmann | 08c36d3 | 2012-05-12 02:09:39 +0200 | [diff] [blame] | 300 | return single_open(file, batadv_tt_local_seq_print_text, net_dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 303 | static int batadv_vis_data_open(struct inode *inode, struct file *file) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 304 | { |
| 305 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
Sven Eckelmann | d0f714f | 2012-05-12 02:09:41 +0200 | [diff] [blame] | 306 | return single_open(file, batadv_vis_seq_print_text, net_dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Sven Eckelmann | 7f223c0 | 2012-06-05 22:31:27 +0200 | [diff] [blame] | 309 | struct batadv_debuginfo { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 310 | struct attribute attr; |
| 311 | const struct file_operations fops; |
| 312 | }; |
| 313 | |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 314 | #ifdef CONFIG_BATMAN_ADV_NC |
| 315 | static int batadv_nc_nodes_open(struct inode *inode, struct file *file) |
| 316 | { |
| 317 | struct net_device *net_dev = (struct net_device *)inode->i_private; |
| 318 | return single_open(file, batadv_nc_nodes_seq_print_text, net_dev); |
| 319 | } |
| 320 | #endif |
| 321 | |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 322 | #define BATADV_DEBUGINFO(_name, _mode, _open) \ |
Sven Eckelmann | 7f223c0 | 2012-06-05 22:31:27 +0200 | [diff] [blame] | 323 | struct batadv_debuginfo batadv_debuginfo_##_name = { \ |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 324 | .attr = { .name = __stringify(_name), \ |
| 325 | .mode = _mode, }, \ |
| 326 | .fops = { .owner = THIS_MODULE, \ |
| 327 | .open = _open, \ |
| 328 | .read = seq_read, \ |
| 329 | .llseek = seq_lseek, \ |
| 330 | .release = single_release, \ |
| 331 | } \ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 332 | }; |
| 333 | |
Antonio Quartulli | 637fbd1 | 2012-10-16 10:04:39 +0200 | [diff] [blame] | 334 | /* the following attributes are general and therefore they will be directly |
| 335 | * placed in the BATADV_DEBUGFS_SUBDIR subdirectory of debugfs |
| 336 | */ |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 337 | static BATADV_DEBUGINFO(routing_algos, S_IRUGO, batadv_algorithms_open); |
Antonio Quartulli | 637fbd1 | 2012-10-16 10:04:39 +0200 | [diff] [blame] | 338 | |
| 339 | static struct batadv_debuginfo *batadv_general_debuginfos[] = { |
| 340 | &batadv_debuginfo_routing_algos, |
| 341 | NULL, |
| 342 | }; |
| 343 | |
| 344 | /* The following attributes are per soft interface */ |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 345 | static BATADV_DEBUGINFO(originators, S_IRUGO, batadv_originators_open); |
| 346 | static BATADV_DEBUGINFO(gateways, S_IRUGO, batadv_gateways_open); |
| 347 | static BATADV_DEBUGINFO(transtable_global, S_IRUGO, |
| 348 | batadv_transtable_global_open); |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 349 | #ifdef CONFIG_BATMAN_ADV_BLA |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 350 | static BATADV_DEBUGINFO(bla_claim_table, S_IRUGO, batadv_bla_claim_table_open); |
Simon Wunderlich | 536a23f | 2012-06-18 18:39:26 +0200 | [diff] [blame] | 351 | static BATADV_DEBUGINFO(bla_backbone_table, S_IRUGO, |
| 352 | batadv_bla_backbone_table_open); |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 353 | #endif |
Antonio Quartulli | 1722447 | 2011-11-06 12:23:55 +0100 | [diff] [blame] | 354 | #ifdef CONFIG_BATMAN_ADV_DAT |
Antonio Quartulli | 2f1dfbe | 2012-06-30 20:01:19 +0200 | [diff] [blame] | 355 | static BATADV_DEBUGINFO(dat_cache, S_IRUGO, batadv_dat_cache_open); |
Antonio Quartulli | 1722447 | 2011-11-06 12:23:55 +0100 | [diff] [blame] | 356 | #endif |
Sven Eckelmann | 347c80f | 2012-06-03 22:19:07 +0200 | [diff] [blame] | 357 | static BATADV_DEBUGINFO(transtable_local, S_IRUGO, |
| 358 | batadv_transtable_local_open); |
| 359 | static BATADV_DEBUGINFO(vis_data, S_IRUGO, batadv_vis_data_open); |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 360 | #ifdef CONFIG_BATMAN_ADV_NC |
| 361 | static BATADV_DEBUGINFO(nc_nodes, S_IRUGO, batadv_nc_nodes_open); |
| 362 | #endif |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 363 | |
Sven Eckelmann | 7f223c0 | 2012-06-05 22:31:27 +0200 | [diff] [blame] | 364 | static struct batadv_debuginfo *batadv_mesh_debuginfos[] = { |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 365 | &batadv_debuginfo_originators, |
| 366 | &batadv_debuginfo_gateways, |
| 367 | &batadv_debuginfo_transtable_global, |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 368 | #ifdef CONFIG_BATMAN_ADV_BLA |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 369 | &batadv_debuginfo_bla_claim_table, |
Simon Wunderlich | 536a23f | 2012-06-18 18:39:26 +0200 | [diff] [blame] | 370 | &batadv_debuginfo_bla_backbone_table, |
Simon Wunderlich | 7a5cc24 | 2012-01-22 20:00:27 +0100 | [diff] [blame] | 371 | #endif |
Antonio Quartulli | 1722447 | 2011-11-06 12:23:55 +0100 | [diff] [blame] | 372 | #ifdef CONFIG_BATMAN_ADV_DAT |
Antonio Quartulli | 2f1dfbe | 2012-06-30 20:01:19 +0200 | [diff] [blame] | 373 | &batadv_debuginfo_dat_cache, |
Antonio Quartulli | 1722447 | 2011-11-06 12:23:55 +0100 | [diff] [blame] | 374 | #endif |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 375 | &batadv_debuginfo_transtable_local, |
| 376 | &batadv_debuginfo_vis_data, |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 377 | #ifdef CONFIG_BATMAN_ADV_NC |
| 378 | &batadv_debuginfo_nc_nodes, |
| 379 | #endif |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 380 | NULL, |
| 381 | }; |
| 382 | |
Sven Eckelmann | 40a072d | 2012-05-12 02:09:23 +0200 | [diff] [blame] | 383 | void batadv_debugfs_init(void) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 384 | { |
Antonio Quartulli | 637fbd1 | 2012-10-16 10:04:39 +0200 | [diff] [blame] | 385 | struct batadv_debuginfo **bat_debug; |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 386 | struct dentry *file; |
| 387 | |
Sven Eckelmann | 54590e4 | 2012-06-03 22:19:08 +0200 | [diff] [blame] | 388 | batadv_debugfs = debugfs_create_dir(BATADV_DEBUGFS_SUBDIR, NULL); |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 389 | if (batadv_debugfs == ERR_PTR(-ENODEV)) |
| 390 | batadv_debugfs = NULL; |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 391 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 392 | if (!batadv_debugfs) |
Antonio Quartulli | 637fbd1 | 2012-10-16 10:04:39 +0200 | [diff] [blame] | 393 | goto err; |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 394 | |
Antonio Quartulli | 637fbd1 | 2012-10-16 10:04:39 +0200 | [diff] [blame] | 395 | for (bat_debug = batadv_general_debuginfos; *bat_debug; ++bat_debug) { |
| 396 | file = debugfs_create_file(((*bat_debug)->attr).name, |
| 397 | S_IFREG | ((*bat_debug)->attr).mode, |
| 398 | batadv_debugfs, NULL, |
| 399 | &(*bat_debug)->fops); |
| 400 | if (!file) { |
| 401 | pr_err("Can't add general debugfs file: %s\n", |
| 402 | ((*bat_debug)->attr).name); |
| 403 | goto err; |
| 404 | } |
| 405 | } |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 406 | |
Marek Lindner | 1c28047 | 2011-11-28 17:40:17 +0800 | [diff] [blame] | 407 | return; |
Antonio Quartulli | 637fbd1 | 2012-10-16 10:04:39 +0200 | [diff] [blame] | 408 | err: |
| 409 | debugfs_remove_recursive(batadv_debugfs); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Sven Eckelmann | 40a072d | 2012-05-12 02:09:23 +0200 | [diff] [blame] | 412 | void batadv_debugfs_destroy(void) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 413 | { |
Antonio Quartulli | 3f87c42 | 2012-11-29 01:03:31 +0100 | [diff] [blame] | 414 | debugfs_remove_recursive(batadv_debugfs); |
| 415 | batadv_debugfs = NULL; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 416 | } |
| 417 | |
Sven Eckelmann | 40a072d | 2012-05-12 02:09:23 +0200 | [diff] [blame] | 418 | int batadv_debugfs_add_meshif(struct net_device *dev) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 419 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 420 | struct batadv_priv *bat_priv = netdev_priv(dev); |
Sven Eckelmann | 7f223c0 | 2012-06-05 22:31:27 +0200 | [diff] [blame] | 421 | struct batadv_debuginfo **bat_debug; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 422 | struct dentry *file; |
| 423 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 424 | if (!batadv_debugfs) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 425 | goto out; |
| 426 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 427 | bat_priv->debug_dir = debugfs_create_dir(dev->name, batadv_debugfs); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 428 | if (!bat_priv->debug_dir) |
| 429 | goto out; |
| 430 | |
Sven Eckelmann | 9039dc7 | 2012-05-12 02:09:33 +0200 | [diff] [blame] | 431 | if (batadv_socket_setup(bat_priv) < 0) |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 432 | goto rem_attr; |
| 433 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 434 | if (batadv_debug_log_setup(bat_priv) < 0) |
Sven Eckelmann | 5346c35 | 2012-05-05 13:27:28 +0200 | [diff] [blame] | 435 | goto rem_attr; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 436 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 437 | for (bat_debug = batadv_mesh_debuginfos; *bat_debug; ++bat_debug) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 438 | file = debugfs_create_file(((*bat_debug)->attr).name, |
Sven Eckelmann | 0aca236 | 2012-06-19 20:26:30 +0200 | [diff] [blame] | 439 | S_IFREG | ((*bat_debug)->attr).mode, |
| 440 | bat_priv->debug_dir, |
| 441 | dev, &(*bat_debug)->fops); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 442 | if (!file) { |
Sven Eckelmann | 3e34819 | 2012-05-16 20:23:22 +0200 | [diff] [blame] | 443 | batadv_err(dev, "Can't add debugfs file: %s/%s\n", |
| 444 | dev->name, ((*bat_debug)->attr).name); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 445 | goto rem_attr; |
| 446 | } |
| 447 | } |
| 448 | |
Martin Hundebøll | d56b170 | 2013-01-25 11:12:39 +0100 | [diff] [blame] | 449 | if (batadv_nc_init_debugfs(bat_priv) < 0) |
| 450 | goto rem_attr; |
| 451 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 452 | return 0; |
| 453 | rem_attr: |
| 454 | debugfs_remove_recursive(bat_priv->debug_dir); |
| 455 | bat_priv->debug_dir = NULL; |
| 456 | out: |
| 457 | #ifdef CONFIG_DEBUG_FS |
| 458 | return -ENOMEM; |
| 459 | #else |
| 460 | return 0; |
| 461 | #endif /* CONFIG_DEBUG_FS */ |
| 462 | } |
| 463 | |
Sven Eckelmann | 40a072d | 2012-05-12 02:09:23 +0200 | [diff] [blame] | 464 | void batadv_debugfs_del_meshif(struct net_device *dev) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 465 | { |
Sven Eckelmann | 56303d3 | 2012-06-05 22:31:31 +0200 | [diff] [blame] | 466 | struct batadv_priv *bat_priv = netdev_priv(dev); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 467 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 468 | batadv_debug_log_cleanup(bat_priv); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 469 | |
Sven Eckelmann | 9e46625 | 2012-05-12 18:33:50 +0200 | [diff] [blame] | 470 | if (batadv_debugfs) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 471 | debugfs_remove_recursive(bat_priv->debug_dir); |
| 472 | bat_priv->debug_dir = NULL; |
| 473 | } |
| 474 | } |