blob: 1d68b6e63b9690c031f178b54c77cf87d96921b2 [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2010-2016 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020018#include "debugfs.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000019#include "main.h"
20
21#include <linux/debugfs.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020022#include <linux/device.h>
23#include <linux/errno.h>
24#include <linux/export.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020025#include <linux/fs.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020026#include <linux/netdevice.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020027#include <linux/printk.h>
28#include <linux/sched.h> /* for linux/wait.h */
29#include <linux/seq_file.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020030#include <linux/stat.h>
31#include <linux/stddef.h>
32#include <linux/stringify.h>
33#include <linux/sysfs.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000034
Sven Eckelmann01d350d2016-05-15 11:07:44 +020035#include "bat_algo.h"
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +010036#include "bridge_loop_avoidance.h"
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +020037#include "distributed-arp-table.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020038#include "gateway_client.h"
39#include "icmp_socket.h"
Sven Eckelmannba412082016-05-15 23:48:31 +020040#include "log.h"
Linus Lüssing4e3e8232016-05-10 18:41:27 +020041#include "multicast.h"
Martin Hundebølld56b1702013-01-25 11:12:39 +010042#include "network-coding.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020043#include "originator.h"
44#include "translation-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000045
Sven Eckelmann9e466252012-05-12 18:33:50 +020046static struct dentry *batadv_debugfs;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000047
Sven Eckelmann9e466252012-05-12 18:33:50 +020048static int batadv_algorithms_open(struct inode *inode, struct file *file)
Marek Lindner1c280472011-11-28 17:40:17 +080049{
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020050 return single_open(file, batadv_algo_seq_print_text, NULL);
Marek Lindner1c280472011-11-28 17:40:17 +080051}
52
Marek Lindner75874052015-08-04 21:09:57 +080053static int neighbors_open(struct inode *inode, struct file *file)
54{
55 struct net_device *net_dev = (struct net_device *)inode->i_private;
56
57 return single_open(file, batadv_hardif_neigh_seq_print_text, net_dev);
58}
59
Sven Eckelmann9e466252012-05-12 18:33:50 +020060static int batadv_originators_open(struct inode *inode, struct file *file)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061{
62 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +020063
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020064 return single_open(file, batadv_orig_seq_print_text, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000065}
66
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +010067/**
68 * batadv_originators_hardif_open - handles debugfs output for the
69 * originator table of an hard interface
70 * @inode: inode pointer to debugfs file
71 * @file: pointer to the seq_file
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +010072 *
73 * Return: 0 on success or negative error number in case of failure
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +010074 */
75static int batadv_originators_hardif_open(struct inode *inode,
76 struct file *file)
77{
78 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +020079
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +010080 return single_open(file, batadv_orig_hardif_seq_print_text, net_dev);
81}
82
Sven Eckelmann9e466252012-05-12 18:33:50 +020083static int batadv_gateways_open(struct inode *inode, struct file *file)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084{
85 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +020086
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +020087 return single_open(file, batadv_gw_client_seq_print_text, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000088}
89
Sven Eckelmann9e466252012-05-12 18:33:50 +020090static int batadv_transtable_global_open(struct inode *inode, struct file *file)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091{
92 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +020093
Sven Eckelmann08c36d32012-05-12 02:09:39 +020094 return single_open(file, batadv_tt_global_seq_print_text, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000095}
96
Simon Wunderlich7a5cc242012-01-22 20:00:27 +010097#ifdef CONFIG_BATMAN_ADV_BLA
Sven Eckelmann9e466252012-05-12 18:33:50 +020098static int batadv_bla_claim_table_open(struct inode *inode, struct file *file)
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +010099{
100 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +0200101
Sven Eckelmann08adf152012-05-12 13:38:47 +0200102 return single_open(file, batadv_bla_claim_table_seq_print_text,
103 net_dev);
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +0100104}
Simon Wunderlich536a23f2012-06-18 18:39:26 +0200105
106static int batadv_bla_backbone_table_open(struct inode *inode,
107 struct file *file)
108{
109 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +0200110
Simon Wunderlich536a23f2012-06-18 18:39:26 +0200111 return single_open(file, batadv_bla_backbone_table_seq_print_text,
112 net_dev);
113}
114
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100115#endif
Simon Wunderlich9bf8e4d2012-01-22 20:00:21 +0100116
Antonio Quartulli17224472011-11-06 12:23:55 +0100117#ifdef CONFIG_BATMAN_ADV_DAT
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200118/**
119 * batadv_dat_cache_open - Prepare file handler for reads from dat_chache
120 * @inode: inode which was opened
121 * @file: file handle to be initialized
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +0100122 *
123 * Return: 0 on success or negative error number in case of failure
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200124 */
125static int batadv_dat_cache_open(struct inode *inode, struct file *file)
126{
127 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +0200128
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200129 return single_open(file, batadv_dat_cache_seq_print_text, net_dev);
130}
Antonio Quartulli17224472011-11-06 12:23:55 +0100131#endif
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200132
Sven Eckelmann9e466252012-05-12 18:33:50 +0200133static int batadv_transtable_local_open(struct inode *inode, struct file *file)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134{
135 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +0200136
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200137 return single_open(file, batadv_tt_local_seq_print_text, net_dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000138}
139
Sven Eckelmann7f223c02012-06-05 22:31:27 +0200140struct batadv_debuginfo {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000141 struct attribute attr;
142 const struct file_operations fops;
143};
144
Martin Hundebølld56b1702013-01-25 11:12:39 +0100145#ifdef CONFIG_BATMAN_ADV_NC
146static int batadv_nc_nodes_open(struct inode *inode, struct file *file)
147{
148 struct net_device *net_dev = (struct net_device *)inode->i_private;
Antonio Quartullif1386942014-05-10 18:56:37 +0200149
Martin Hundebølld56b1702013-01-25 11:12:39 +0100150 return single_open(file, batadv_nc_nodes_seq_print_text, net_dev);
151}
152#endif
153
Linus Lüssing4e3e8232016-05-10 18:41:27 +0200154#ifdef CONFIG_BATMAN_ADV_MCAST
155/**
156 * batadv_mcast_flags_open - prepare file handler for reads from mcast_flags
157 * @inode: inode which was opened
158 * @file: file handle to be initialized
159 *
160 * Return: 0 on success or negative error number in case of failure
161 */
162static int batadv_mcast_flags_open(struct inode *inode, struct file *file)
163{
164 struct net_device *net_dev = (struct net_device *)inode->i_private;
165
166 return single_open(file, batadv_mcast_flags_seq_print_text, net_dev);
167}
168#endif
169
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200170#define BATADV_DEBUGINFO(_name, _mode, _open) \
Sven Eckelmann7f223c02012-06-05 22:31:27 +0200171struct batadv_debuginfo batadv_debuginfo_##_name = { \
Simon Wunderlich121bdca2016-03-11 14:01:11 +0100172 .attr = { \
173 .name = __stringify(_name), \
174 .mode = _mode, \
175 }, \
176 .fops = { \
177 .owner = THIS_MODULE, \
178 .open = _open, \
179 .read = seq_read, \
180 .llseek = seq_lseek, \
181 .release = single_release, \
182 }, \
Antonio Quartulli2b64df22014-05-15 11:24:26 +0200183}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000184
Antonio Quartulli637fbd12012-10-16 10:04:39 +0200185/* the following attributes are general and therefore they will be directly
186 * placed in the BATADV_DEBUGFS_SUBDIR subdirectory of debugfs
187 */
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200188static BATADV_DEBUGINFO(routing_algos, S_IRUGO, batadv_algorithms_open);
Antonio Quartulli637fbd12012-10-16 10:04:39 +0200189
190static struct batadv_debuginfo *batadv_general_debuginfos[] = {
191 &batadv_debuginfo_routing_algos,
192 NULL,
193};
194
195/* The following attributes are per soft interface */
Marek Lindner75874052015-08-04 21:09:57 +0800196static BATADV_DEBUGINFO(neighbors, S_IRUGO, neighbors_open);
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200197static BATADV_DEBUGINFO(originators, S_IRUGO, batadv_originators_open);
198static BATADV_DEBUGINFO(gateways, S_IRUGO, batadv_gateways_open);
199static BATADV_DEBUGINFO(transtable_global, S_IRUGO,
200 batadv_transtable_global_open);
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100201#ifdef CONFIG_BATMAN_ADV_BLA
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200202static BATADV_DEBUGINFO(bla_claim_table, S_IRUGO, batadv_bla_claim_table_open);
Simon Wunderlich536a23f2012-06-18 18:39:26 +0200203static BATADV_DEBUGINFO(bla_backbone_table, S_IRUGO,
204 batadv_bla_backbone_table_open);
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100205#endif
Antonio Quartulli17224472011-11-06 12:23:55 +0100206#ifdef CONFIG_BATMAN_ADV_DAT
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200207static BATADV_DEBUGINFO(dat_cache, S_IRUGO, batadv_dat_cache_open);
Antonio Quartulli17224472011-11-06 12:23:55 +0100208#endif
Sven Eckelmann347c80f2012-06-03 22:19:07 +0200209static BATADV_DEBUGINFO(transtable_local, S_IRUGO,
210 batadv_transtable_local_open);
Martin Hundebølld56b1702013-01-25 11:12:39 +0100211#ifdef CONFIG_BATMAN_ADV_NC
212static BATADV_DEBUGINFO(nc_nodes, S_IRUGO, batadv_nc_nodes_open);
213#endif
Linus Lüssing4e3e8232016-05-10 18:41:27 +0200214#ifdef CONFIG_BATMAN_ADV_MCAST
215static BATADV_DEBUGINFO(mcast_flags, S_IRUGO, batadv_mcast_flags_open);
216#endif
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000217
Sven Eckelmann7f223c02012-06-05 22:31:27 +0200218static struct batadv_debuginfo *batadv_mesh_debuginfos[] = {
Marek Lindner75874052015-08-04 21:09:57 +0800219 &batadv_debuginfo_neighbors,
Sven Eckelmann9e466252012-05-12 18:33:50 +0200220 &batadv_debuginfo_originators,
221 &batadv_debuginfo_gateways,
222 &batadv_debuginfo_transtable_global,
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100223#ifdef CONFIG_BATMAN_ADV_BLA
Sven Eckelmann9e466252012-05-12 18:33:50 +0200224 &batadv_debuginfo_bla_claim_table,
Simon Wunderlich536a23f2012-06-18 18:39:26 +0200225 &batadv_debuginfo_bla_backbone_table,
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100226#endif
Antonio Quartulli17224472011-11-06 12:23:55 +0100227#ifdef CONFIG_BATMAN_ADV_DAT
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200228 &batadv_debuginfo_dat_cache,
Antonio Quartulli17224472011-11-06 12:23:55 +0100229#endif
Sven Eckelmann9e466252012-05-12 18:33:50 +0200230 &batadv_debuginfo_transtable_local,
Martin Hundebølld56b1702013-01-25 11:12:39 +0100231#ifdef CONFIG_BATMAN_ADV_NC
232 &batadv_debuginfo_nc_nodes,
233#endif
Linus Lüssing4e3e8232016-05-10 18:41:27 +0200234#ifdef CONFIG_BATMAN_ADV_MCAST
235 &batadv_debuginfo_mcast_flags,
236#endif
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000237 NULL,
238};
239
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100240#define BATADV_HARDIF_DEBUGINFO(_name, _mode, _open) \
241struct batadv_debuginfo batadv_hardif_debuginfo_##_name = { \
242 .attr = { \
243 .name = __stringify(_name), \
244 .mode = _mode, \
245 }, \
246 .fops = { \
247 .owner = THIS_MODULE, \
248 .open = _open, \
249 .read = seq_read, \
250 .llseek = seq_lseek, \
251 .release = single_release, \
252 }, \
Antonio Quartulli2b64df22014-05-15 11:24:26 +0200253}
Antonio Quartulliaa143d22014-09-01 14:37:27 +0200254
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +0100255static BATADV_HARDIF_DEBUGINFO(originators, S_IRUGO,
256 batadv_originators_hardif_open);
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100257
258static struct batadv_debuginfo *batadv_hardif_debuginfos[] = {
Simon Wunderlichcb1c92e2013-11-21 11:52:16 +0100259 &batadv_hardif_debuginfo_originators,
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100260 NULL,
261};
262
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200263void batadv_debugfs_init(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000264{
Antonio Quartulli637fbd12012-10-16 10:04:39 +0200265 struct batadv_debuginfo **bat_debug;
Marek Lindner1c280472011-11-28 17:40:17 +0800266 struct dentry *file;
267
Sven Eckelmann54590e42012-06-03 22:19:08 +0200268 batadv_debugfs = debugfs_create_dir(BATADV_DEBUGFS_SUBDIR, NULL);
Sven Eckelmann9e466252012-05-12 18:33:50 +0200269 if (batadv_debugfs == ERR_PTR(-ENODEV))
270 batadv_debugfs = NULL;
Marek Lindner1c280472011-11-28 17:40:17 +0800271
Sven Eckelmann9e466252012-05-12 18:33:50 +0200272 if (!batadv_debugfs)
Antonio Quartulli637fbd12012-10-16 10:04:39 +0200273 goto err;
Marek Lindner1c280472011-11-28 17:40:17 +0800274
Antonio Quartulli637fbd12012-10-16 10:04:39 +0200275 for (bat_debug = batadv_general_debuginfos; *bat_debug; ++bat_debug) {
276 file = debugfs_create_file(((*bat_debug)->attr).name,
277 S_IFREG | ((*bat_debug)->attr).mode,
278 batadv_debugfs, NULL,
279 &(*bat_debug)->fops);
280 if (!file) {
281 pr_err("Can't add general debugfs file: %s\n",
282 ((*bat_debug)->attr).name);
283 goto err;
284 }
285 }
Marek Lindner1c280472011-11-28 17:40:17 +0800286
Marek Lindner1c280472011-11-28 17:40:17 +0800287 return;
Antonio Quartulli637fbd12012-10-16 10:04:39 +0200288err:
289 debugfs_remove_recursive(batadv_debugfs);
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100290 batadv_debugfs = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000291}
292
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200293void batadv_debugfs_destroy(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294{
Antonio Quartulli3f87c422012-11-29 01:03:31 +0100295 debugfs_remove_recursive(batadv_debugfs);
296 batadv_debugfs = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000297}
298
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100299/**
300 * batadv_debugfs_add_hardif - creates the base directory for a hard interface
301 * in debugfs.
302 * @hard_iface: hard interface which should be added.
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +0100303 *
304 * Return: 0 on success or negative error number in case of failure
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100305 */
306int batadv_debugfs_add_hardif(struct batadv_hard_iface *hard_iface)
307{
308 struct batadv_debuginfo **bat_debug;
309 struct dentry *file;
310
311 if (!batadv_debugfs)
312 goto out;
313
314 hard_iface->debug_dir = debugfs_create_dir(hard_iface->net_dev->name,
315 batadv_debugfs);
316 if (!hard_iface->debug_dir)
317 goto out;
318
319 for (bat_debug = batadv_hardif_debuginfos; *bat_debug; ++bat_debug) {
320 file = debugfs_create_file(((*bat_debug)->attr).name,
321 S_IFREG | ((*bat_debug)->attr).mode,
322 hard_iface->debug_dir,
323 hard_iface->net_dev,
324 &(*bat_debug)->fops);
325 if (!file)
326 goto rem_attr;
327 }
328
329 return 0;
330rem_attr:
331 debugfs_remove_recursive(hard_iface->debug_dir);
332 hard_iface->debug_dir = NULL;
333out:
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100334 return -ENOMEM;
Simon Wunderlich5bc7c1e2013-11-21 14:16:12 +0100335}
336
337/**
338 * batadv_debugfs_del_hardif - delete the base directory for a hard interface
339 * in debugfs.
340 * @hard_iface: hard interface which is deleted.
341 */
342void batadv_debugfs_del_hardif(struct batadv_hard_iface *hard_iface)
343{
344 if (batadv_debugfs) {
345 debugfs_remove_recursive(hard_iface->debug_dir);
346 hard_iface->debug_dir = NULL;
347 }
348}
349
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200350int batadv_debugfs_add_meshif(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000351{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200352 struct batadv_priv *bat_priv = netdev_priv(dev);
Sven Eckelmann7f223c02012-06-05 22:31:27 +0200353 struct batadv_debuginfo **bat_debug;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000354 struct dentry *file;
355
Sven Eckelmann9e466252012-05-12 18:33:50 +0200356 if (!batadv_debugfs)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000357 goto out;
358
Sven Eckelmann9e466252012-05-12 18:33:50 +0200359 bat_priv->debug_dir = debugfs_create_dir(dev->name, batadv_debugfs);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360 if (!bat_priv->debug_dir)
361 goto out;
362
Sven Eckelmann9039dc72012-05-12 02:09:33 +0200363 if (batadv_socket_setup(bat_priv) < 0)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200364 goto rem_attr;
365
Sven Eckelmann9e466252012-05-12 18:33:50 +0200366 if (batadv_debug_log_setup(bat_priv) < 0)
Sven Eckelmann5346c352012-05-05 13:27:28 +0200367 goto rem_attr;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000368
Sven Eckelmann9e466252012-05-12 18:33:50 +0200369 for (bat_debug = batadv_mesh_debuginfos; *bat_debug; ++bat_debug) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000370 file = debugfs_create_file(((*bat_debug)->attr).name,
Sven Eckelmann0aca2362012-06-19 20:26:30 +0200371 S_IFREG | ((*bat_debug)->attr).mode,
372 bat_priv->debug_dir,
373 dev, &(*bat_debug)->fops);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374 if (!file) {
Sven Eckelmann3e348192012-05-16 20:23:22 +0200375 batadv_err(dev, "Can't add debugfs file: %s/%s\n",
376 dev->name, ((*bat_debug)->attr).name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 goto rem_attr;
378 }
379 }
380
Martin Hundebølld56b1702013-01-25 11:12:39 +0100381 if (batadv_nc_init_debugfs(bat_priv) < 0)
382 goto rem_attr;
383
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000384 return 0;
385rem_attr:
386 debugfs_remove_recursive(bat_priv->debug_dir);
387 bat_priv->debug_dir = NULL;
388out:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000389 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000390}
391
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200392void batadv_debugfs_del_meshif(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000393{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200394 struct batadv_priv *bat_priv = netdev_priv(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000395
Sven Eckelmann9e466252012-05-12 18:33:50 +0200396 batadv_debug_log_cleanup(bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000397
Sven Eckelmann9e466252012-05-12 18:33:50 +0200398 if (batadv_debugfs) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000399 debugfs_remove_recursive(bat_priv->debug_dir);
400 bat_priv->debug_dir = NULL;
401 }
402}