1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (C) 2010-2018 B.A.T.M.A.N. contributors:
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include <linux/atomic.h>
23 #include <linux/compiler.h>
24 #include <linux/device.h>
25 #include <linux/errno.h>
26 #include <linux/gfp.h>
28 #include <linux/if_vlan.h>
29 #include <linux/kernel.h>
30 #include <linux/kobject.h>
31 #include <linux/kref.h>
32 #include <linux/netdevice.h>
33 #include <linux/printk.h>
34 #include <linux/rculist.h>
35 #include <linux/rcupdate.h>
36 #include <linux/rtnetlink.h>
37 #include <linux/slab.h>
38 #include <linux/stddef.h>
39 #include <linux/string.h>
40 #include <linux/stringify.h>
41 #include <linux/workqueue.h>
42 #include <uapi/linux/batadv_packet.h>
44 #include "bridge_loop_avoidance.h"
45 #include "distributed-arp-table.h"
46 #include "gateway_client.h"
47 #include "gateway_common.h"
48 #include "hard-interface.h"
50 #include "network-coding.h"
51 #include "soft-interface.h"
53 static struct net_device
*batadv_kobj_to_netdev(struct kobject
*obj
)
55 struct device
*dev
= container_of(obj
->parent
, struct device
, kobj
);
57 return to_net_dev(dev
);
60 static struct batadv_priv
*batadv_kobj_to_batpriv(struct kobject
*obj
)
62 struct net_device
*net_dev
= batadv_kobj_to_netdev(obj
);
64 return netdev_priv(net_dev
);
68 * batadv_vlan_kobj_to_batpriv() - convert a vlan kobj in the associated batpriv
69 * @obj: kobject to covert
71 * Return: the associated batadv_priv struct.
73 static struct batadv_priv
*batadv_vlan_kobj_to_batpriv(struct kobject
*obj
)
75 /* VLAN specific attributes are located in the root sysfs folder if they
76 * refer to the untagged VLAN..
78 if (!strcmp(BATADV_SYSFS_IF_MESH_SUBDIR
, obj
->name
))
79 return batadv_kobj_to_batpriv(obj
);
81 /* ..while the attributes for the tagged vlans are located in
82 * the in the corresponding "vlan%VID" subfolder
84 return batadv_kobj_to_batpriv(obj
->parent
);
88 * batadv_kobj_to_vlan() - convert a kobj in the associated softif_vlan struct
89 * @bat_priv: the bat priv with all the soft interface information
90 * @obj: kobject to covert
92 * Return: the associated softif_vlan struct if found, NULL otherwise.
94 static struct batadv_softif_vlan
*
95 batadv_kobj_to_vlan(struct batadv_priv
*bat_priv
, struct kobject
*obj
)
97 struct batadv_softif_vlan
*vlan_tmp
, *vlan
= NULL
;
100 hlist_for_each_entry_rcu(vlan_tmp
, &bat_priv
->softif_vlan_list
, list
) {
101 if (vlan_tmp
->kobj
!= obj
)
104 if (!kref_get_unless_zero(&vlan_tmp
->refcount
))
115 #define BATADV_UEV_TYPE_VAR "BATTYPE="
116 #define BATADV_UEV_ACTION_VAR "BATACTION="
117 #define BATADV_UEV_DATA_VAR "BATDATA="
119 static char *batadv_uev_action_str
[] = {
126 static char *batadv_uev_type_str
[] = {
131 /* Use this, if you have customized show and store functions for vlan attrs */
132 #define BATADV_ATTR_VLAN(_name, _mode, _show, _store) \
133 struct batadv_attribute batadv_attr_vlan_##_name = { \
134 .attr = {.name = __stringify(_name), \
140 /* Use this, if you have customized show and store functions */
141 #define BATADV_ATTR(_name, _mode, _show, _store) \
142 struct batadv_attribute batadv_attr_##_name = { \
143 .attr = {.name = __stringify(_name), \
149 #define BATADV_ATTR_SIF_STORE_BOOL(_name, _post_func) \
150 ssize_t batadv_store_##_name(struct kobject *kobj, \
151 struct attribute *attr, char *buff, \
154 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
155 struct batadv_priv *bat_priv = netdev_priv(net_dev); \
157 return __batadv_store_bool_attr(buff, count, _post_func, attr, \
158 &bat_priv->_name, net_dev); \
161 #define BATADV_ATTR_SIF_SHOW_BOOL(_name) \
162 ssize_t batadv_show_##_name(struct kobject *kobj, \
163 struct attribute *attr, char *buff) \
165 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj); \
167 return sprintf(buff, "%s\n", \
168 atomic_read(&bat_priv->_name) == 0 ? \
169 "disabled" : "enabled"); \
172 /* Use this, if you are going to turn a [name] in the soft-interface
173 * (bat_priv) on or off
175 #define BATADV_ATTR_SIF_BOOL(_name, _mode, _post_func) \
176 static BATADV_ATTR_SIF_STORE_BOOL(_name, _post_func) \
177 static BATADV_ATTR_SIF_SHOW_BOOL(_name) \
178 static BATADV_ATTR(_name, _mode, batadv_show_##_name, \
179 batadv_store_##_name)
181 #define BATADV_ATTR_SIF_STORE_UINT(_name, _var, _min, _max, _post_func) \
182 ssize_t batadv_store_##_name(struct kobject *kobj, \
183 struct attribute *attr, char *buff, \
186 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
187 struct batadv_priv *bat_priv = netdev_priv(net_dev); \
189 return __batadv_store_uint_attr(buff, count, _min, _max, \
191 &bat_priv->_var, net_dev, \
195 #define BATADV_ATTR_SIF_SHOW_UINT(_name, _var) \
196 ssize_t batadv_show_##_name(struct kobject *kobj, \
197 struct attribute *attr, char *buff) \
199 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj); \
201 return sprintf(buff, "%i\n", atomic_read(&bat_priv->_var)); \
204 /* Use this, if you are going to set [name] in the soft-interface
205 * (bat_priv) to an unsigned integer value
207 #define BATADV_ATTR_SIF_UINT(_name, _var, _mode, _min, _max, _post_func)\
208 static BATADV_ATTR_SIF_STORE_UINT(_name, _var, _min, _max, _post_func)\
209 static BATADV_ATTR_SIF_SHOW_UINT(_name, _var) \
210 static BATADV_ATTR(_name, _mode, batadv_show_##_name, \
211 batadv_store_##_name)
213 #define BATADV_ATTR_VLAN_STORE_BOOL(_name, _post_func) \
214 ssize_t batadv_store_vlan_##_name(struct kobject *kobj, \
215 struct attribute *attr, char *buff, \
218 struct batadv_priv *bat_priv = batadv_vlan_kobj_to_batpriv(kobj);\
219 struct batadv_softif_vlan *vlan = batadv_kobj_to_vlan(bat_priv, \
221 size_t res = __batadv_store_bool_attr(buff, count, _post_func, \
222 attr, &vlan->_name, \
223 bat_priv->soft_iface); \
225 batadv_softif_vlan_put(vlan); \
229 #define BATADV_ATTR_VLAN_SHOW_BOOL(_name) \
230 ssize_t batadv_show_vlan_##_name(struct kobject *kobj, \
231 struct attribute *attr, char *buff) \
233 struct batadv_priv *bat_priv = batadv_vlan_kobj_to_batpriv(kobj);\
234 struct batadv_softif_vlan *vlan = batadv_kobj_to_vlan(bat_priv, \
236 size_t res = sprintf(buff, "%s\n", \
237 atomic_read(&vlan->_name) == 0 ? \
238 "disabled" : "enabled"); \
240 batadv_softif_vlan_put(vlan); \
244 /* Use this, if you are going to turn a [name] in the vlan struct on or off */
245 #define BATADV_ATTR_VLAN_BOOL(_name, _mode, _post_func) \
246 static BATADV_ATTR_VLAN_STORE_BOOL(_name, _post_func) \
247 static BATADV_ATTR_VLAN_SHOW_BOOL(_name) \
248 static BATADV_ATTR_VLAN(_name, _mode, batadv_show_vlan_##_name, \
249 batadv_store_vlan_##_name)
251 #define BATADV_ATTR_HIF_STORE_UINT(_name, _var, _min, _max, _post_func) \
252 ssize_t batadv_store_##_name(struct kobject *kobj, \
253 struct attribute *attr, char *buff, \
256 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
257 struct batadv_hard_iface *hard_iface; \
260 hard_iface = batadv_hardif_get_by_netdev(net_dev); \
264 length = __batadv_store_uint_attr(buff, count, _min, _max, \
267 hard_iface->soft_iface, \
270 batadv_hardif_put(hard_iface); \
274 #define BATADV_ATTR_HIF_SHOW_UINT(_name, _var) \
275 ssize_t batadv_show_##_name(struct kobject *kobj, \
276 struct attribute *attr, char *buff) \
278 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
279 struct batadv_hard_iface *hard_iface; \
282 hard_iface = batadv_hardif_get_by_netdev(net_dev); \
286 length = sprintf(buff, "%i\n", atomic_read(&hard_iface->_var)); \
288 batadv_hardif_put(hard_iface); \
292 /* Use this, if you are going to set [name] in hard_iface to an
293 * unsigned integer value
295 #define BATADV_ATTR_HIF_UINT(_name, _var, _mode, _min, _max, _post_func)\
296 static BATADV_ATTR_HIF_STORE_UINT(_name, _var, _min, \
298 static BATADV_ATTR_HIF_SHOW_UINT(_name, _var) \
299 static BATADV_ATTR(_name, _mode, batadv_show_##_name, \
300 batadv_store_##_name)
302 static int batadv_store_bool_attr(char *buff
, size_t count
,
303 struct net_device
*net_dev
,
304 const char *attr_name
, atomic_t
*attr
,
311 if (buff
[count
- 1] == '\n')
312 buff
[count
- 1] = '\0';
314 if ((strncmp(buff
, "1", 2) == 0) ||
315 (strncmp(buff
, "enable", 7) == 0) ||
316 (strncmp(buff
, "enabled", 8) == 0))
319 if ((strncmp(buff
, "0", 2) == 0) ||
320 (strncmp(buff
, "disable", 8) == 0) ||
321 (strncmp(buff
, "disabled", 9) == 0))
325 batadv_info(net_dev
, "%s: Invalid parameter received: %s\n",
330 if (atomic_read(attr
) == enabled
)
333 batadv_info(net_dev
, "%s: Changing from: %s to: %s\n", attr_name
,
334 atomic_read(attr
) == 1 ? "enabled" : "disabled",
335 enabled
== 1 ? "enabled" : "disabled");
339 atomic_set(attr
, (unsigned int)enabled
);
343 static inline ssize_t
344 __batadv_store_bool_attr(char *buff
, size_t count
,
345 void (*post_func
)(struct net_device
*),
346 struct attribute
*attr
,
347 atomic_t
*attr_store
, struct net_device
*net_dev
)
352 ret
= batadv_store_bool_attr(buff
, count
, net_dev
, attr
->name
,
353 attr_store
, &changed
);
354 if (post_func
&& changed
)
360 static int batadv_store_uint_attr(const char *buff
, size_t count
,
361 struct net_device
*net_dev
,
362 struct net_device
*slave_dev
,
363 const char *attr_name
,
364 unsigned int min
, unsigned int max
,
367 char ifname
[IFNAMSIZ
+ 3] = "";
368 unsigned long uint_val
;
371 ret
= kstrtoul(buff
, 10, &uint_val
);
373 batadv_info(net_dev
, "%s: Invalid parameter received: %s\n",
378 if (uint_val
< min
) {
379 batadv_info(net_dev
, "%s: Value is too small: %lu min: %u\n",
380 attr_name
, uint_val
, min
);
384 if (uint_val
> max
) {
385 batadv_info(net_dev
, "%s: Value is too big: %lu max: %u\n",
386 attr_name
, uint_val
, max
);
390 if (atomic_read(attr
) == uint_val
)
394 snprintf(ifname
, sizeof(ifname
), "%s: ", slave_dev
->name
);
396 batadv_info(net_dev
, "%s: %sChanging from: %i to: %lu\n",
397 attr_name
, ifname
, atomic_read(attr
), uint_val
);
399 atomic_set(attr
, uint_val
);
403 static ssize_t
__batadv_store_uint_attr(const char *buff
, size_t count
,
405 void (*post_func
)(struct net_device
*),
406 const struct attribute
*attr
,
407 atomic_t
*attr_store
,
408 struct net_device
*net_dev
,
409 struct net_device
*slave_dev
)
413 ret
= batadv_store_uint_attr(buff
, count
, net_dev
, slave_dev
,
414 attr
->name
, min
, max
, attr_store
);
415 if (post_func
&& ret
)
421 static ssize_t
batadv_show_bat_algo(struct kobject
*kobj
,
422 struct attribute
*attr
, char *buff
)
424 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
426 return sprintf(buff
, "%s\n", bat_priv
->algo_ops
->name
);
429 static void batadv_post_gw_reselect(struct net_device
*net_dev
)
431 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
433 batadv_gw_reselect(bat_priv
);
436 static ssize_t
batadv_show_gw_mode(struct kobject
*kobj
, struct attribute
*attr
,
439 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
442 /* GW mode is not available if the routing algorithm in use does not
443 * implement the GW API
445 if (!bat_priv
->algo_ops
->gw
.get_best_gw_node
||
446 !bat_priv
->algo_ops
->gw
.is_eligible
)
449 switch (atomic_read(&bat_priv
->gw
.mode
)) {
450 case BATADV_GW_MODE_CLIENT
:
451 bytes_written
= sprintf(buff
, "%s\n",
452 BATADV_GW_MODE_CLIENT_NAME
);
454 case BATADV_GW_MODE_SERVER
:
455 bytes_written
= sprintf(buff
, "%s\n",
456 BATADV_GW_MODE_SERVER_NAME
);
459 bytes_written
= sprintf(buff
, "%s\n",
460 BATADV_GW_MODE_OFF_NAME
);
464 return bytes_written
;
467 static ssize_t
batadv_store_gw_mode(struct kobject
*kobj
,
468 struct attribute
*attr
, char *buff
,
471 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
472 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
473 char *curr_gw_mode_str
;
474 int gw_mode_tmp
= -1;
476 /* toggling GW mode is allowed only if the routing algorithm in use
477 * provides the GW API
479 if (!bat_priv
->algo_ops
->gw
.get_best_gw_node
||
480 !bat_priv
->algo_ops
->gw
.is_eligible
)
483 if (buff
[count
- 1] == '\n')
484 buff
[count
- 1] = '\0';
486 if (strncmp(buff
, BATADV_GW_MODE_OFF_NAME
,
487 strlen(BATADV_GW_MODE_OFF_NAME
)) == 0)
488 gw_mode_tmp
= BATADV_GW_MODE_OFF
;
490 if (strncmp(buff
, BATADV_GW_MODE_CLIENT_NAME
,
491 strlen(BATADV_GW_MODE_CLIENT_NAME
)) == 0)
492 gw_mode_tmp
= BATADV_GW_MODE_CLIENT
;
494 if (strncmp(buff
, BATADV_GW_MODE_SERVER_NAME
,
495 strlen(BATADV_GW_MODE_SERVER_NAME
)) == 0)
496 gw_mode_tmp
= BATADV_GW_MODE_SERVER
;
498 if (gw_mode_tmp
< 0) {
500 "Invalid parameter for 'gw mode' setting received: %s\n",
505 if (atomic_read(&bat_priv
->gw
.mode
) == gw_mode_tmp
)
508 switch (atomic_read(&bat_priv
->gw
.mode
)) {
509 case BATADV_GW_MODE_CLIENT
:
510 curr_gw_mode_str
= BATADV_GW_MODE_CLIENT_NAME
;
512 case BATADV_GW_MODE_SERVER
:
513 curr_gw_mode_str
= BATADV_GW_MODE_SERVER_NAME
;
516 curr_gw_mode_str
= BATADV_GW_MODE_OFF_NAME
;
520 batadv_info(net_dev
, "Changing gw mode from: %s to: %s\n",
521 curr_gw_mode_str
, buff
);
523 /* Invoking batadv_gw_reselect() is not enough to really de-select the
524 * current GW. It will only instruct the gateway client code to perform
525 * a re-election the next time that this is needed.
527 * When gw client mode is being switched off the current GW must be
528 * de-selected explicitly otherwise no GW_ADD uevent is thrown on
529 * client mode re-activation. This is operation is performed in
530 * batadv_gw_check_client_stop().
532 batadv_gw_reselect(bat_priv
);
533 /* always call batadv_gw_check_client_stop() before changing the gateway
536 batadv_gw_check_client_stop(bat_priv
);
537 atomic_set(&bat_priv
->gw
.mode
, (unsigned int)gw_mode_tmp
);
538 batadv_gw_tvlv_container_update(bat_priv
);
542 static ssize_t
batadv_show_gw_sel_class(struct kobject
*kobj
,
543 struct attribute
*attr
, char *buff
)
545 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
547 /* GW selection class is not available if the routing algorithm in use
548 * does not implement the GW API
550 if (!bat_priv
->algo_ops
->gw
.get_best_gw_node
||
551 !bat_priv
->algo_ops
->gw
.is_eligible
)
554 if (bat_priv
->algo_ops
->gw
.show_sel_class
)
555 return bat_priv
->algo_ops
->gw
.show_sel_class(bat_priv
, buff
);
557 return sprintf(buff
, "%i\n", atomic_read(&bat_priv
->gw
.sel_class
));
560 static ssize_t
batadv_store_gw_sel_class(struct kobject
*kobj
,
561 struct attribute
*attr
, char *buff
,
564 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
566 /* setting the GW selection class is allowed only if the routing
567 * algorithm in use implements the GW API
569 if (!bat_priv
->algo_ops
->gw
.get_best_gw_node
||
570 !bat_priv
->algo_ops
->gw
.is_eligible
)
573 if (buff
[count
- 1] == '\n')
574 buff
[count
- 1] = '\0';
576 if (bat_priv
->algo_ops
->gw
.store_sel_class
)
577 return bat_priv
->algo_ops
->gw
.store_sel_class(bat_priv
, buff
,
580 return __batadv_store_uint_attr(buff
, count
, 1, BATADV_TQ_MAX_VALUE
,
581 batadv_post_gw_reselect
, attr
,
582 &bat_priv
->gw
.sel_class
,
583 bat_priv
->soft_iface
, NULL
);
586 static ssize_t
batadv_show_gw_bwidth(struct kobject
*kobj
,
587 struct attribute
*attr
, char *buff
)
589 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
592 down
= atomic_read(&bat_priv
->gw
.bandwidth_down
);
593 up
= atomic_read(&bat_priv
->gw
.bandwidth_up
);
595 return sprintf(buff
, "%u.%u/%u.%u MBit\n", down
/ 10,
596 down
% 10, up
/ 10, up
% 10);
599 static ssize_t
batadv_store_gw_bwidth(struct kobject
*kobj
,
600 struct attribute
*attr
, char *buff
,
603 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
605 if (buff
[count
- 1] == '\n')
606 buff
[count
- 1] = '\0';
608 return batadv_gw_bandwidth_set(net_dev
, buff
, count
);
612 * batadv_show_isolation_mark() - print the current isolation mark/mask
613 * @kobj: kobject representing the private mesh sysfs directory
614 * @attr: the batman-adv attribute the user is interacting with
615 * @buff: the buffer that will contain the data to send back to the user
617 * Return: the number of bytes written into 'buff' on success or a negative
618 * error code in case of failure
620 static ssize_t
batadv_show_isolation_mark(struct kobject
*kobj
,
621 struct attribute
*attr
, char *buff
)
623 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
625 return sprintf(buff
, "%#.8x/%#.8x\n", bat_priv
->isolation_mark
,
626 bat_priv
->isolation_mark_mask
);
630 * batadv_store_isolation_mark() - parse and store the isolation mark/mask
631 * entered by the user
632 * @kobj: kobject representing the private mesh sysfs directory
633 * @attr: the batman-adv attribute the user is interacting with
634 * @buff: the buffer containing the user data
635 * @count: number of bytes in the buffer
637 * Return: 'count' on success or a negative error code in case of failure
639 static ssize_t
batadv_store_isolation_mark(struct kobject
*kobj
,
640 struct attribute
*attr
, char *buff
,
643 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
644 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
648 /* parse the mask if it has been specified, otherwise assume the mask is
649 * the biggest possible
652 mask_ptr
= strchr(buff
, '/');
657 /* the mask must be entered in hex base as it is going to be a
658 * bitmask and not a prefix length
660 if (kstrtou32(mask_ptr
, 16, &mask
) < 0)
664 /* the mark can be entered in any base */
665 if (kstrtou32(buff
, 0, &mark
) < 0)
668 bat_priv
->isolation_mark_mask
= mask
;
669 /* erase bits not covered by the mask */
670 bat_priv
->isolation_mark
= mark
& bat_priv
->isolation_mark_mask
;
673 "New skb mark for extended isolation: %#.8x/%#.8x\n",
674 bat_priv
->isolation_mark
, bat_priv
->isolation_mark_mask
);
679 BATADV_ATTR_SIF_BOOL(aggregated_ogms
, 0644, NULL
);
680 BATADV_ATTR_SIF_BOOL(bonding
, 0644, NULL
);
681 #ifdef CONFIG_BATMAN_ADV_BLA
682 BATADV_ATTR_SIF_BOOL(bridge_loop_avoidance
, 0644, batadv_bla_status_update
);
684 #ifdef CONFIG_BATMAN_ADV_DAT
685 BATADV_ATTR_SIF_BOOL(distributed_arp_table
, 0644, batadv_dat_status_update
);
687 BATADV_ATTR_SIF_BOOL(fragmentation
, 0644, batadv_update_min_mtu
);
688 static BATADV_ATTR(routing_algo
, 0444, batadv_show_bat_algo
, NULL
);
689 static BATADV_ATTR(gw_mode
, 0644, batadv_show_gw_mode
, batadv_store_gw_mode
);
690 BATADV_ATTR_SIF_UINT(orig_interval
, orig_interval
, 0644, 2 * BATADV_JITTER
,
692 BATADV_ATTR_SIF_UINT(hop_penalty
, hop_penalty
, 0644, 0, BATADV_TQ_MAX_VALUE
,
694 static BATADV_ATTR(gw_sel_class
, 0644, batadv_show_gw_sel_class
,
695 batadv_store_gw_sel_class
);
696 static BATADV_ATTR(gw_bandwidth
, 0644, batadv_show_gw_bwidth
,
697 batadv_store_gw_bwidth
);
698 #ifdef CONFIG_BATMAN_ADV_MCAST
699 BATADV_ATTR_SIF_BOOL(multicast_mode
, 0644, NULL
);
701 #ifdef CONFIG_BATMAN_ADV_DEBUG
702 BATADV_ATTR_SIF_UINT(log_level
, log_level
, 0644, 0, BATADV_DBG_ALL
, NULL
);
704 #ifdef CONFIG_BATMAN_ADV_NC
705 BATADV_ATTR_SIF_BOOL(network_coding
, 0644, batadv_nc_status_update
);
707 static BATADV_ATTR(isolation_mark
, 0644, batadv_show_isolation_mark
,
708 batadv_store_isolation_mark
);
710 static struct batadv_attribute
*batadv_mesh_attrs
[] = {
711 &batadv_attr_aggregated_ogms
,
712 &batadv_attr_bonding
,
713 #ifdef CONFIG_BATMAN_ADV_BLA
714 &batadv_attr_bridge_loop_avoidance
,
716 #ifdef CONFIG_BATMAN_ADV_DAT
717 &batadv_attr_distributed_arp_table
,
719 #ifdef CONFIG_BATMAN_ADV_MCAST
720 &batadv_attr_multicast_mode
,
722 &batadv_attr_fragmentation
,
723 &batadv_attr_routing_algo
,
724 &batadv_attr_gw_mode
,
725 &batadv_attr_orig_interval
,
726 &batadv_attr_hop_penalty
,
727 &batadv_attr_gw_sel_class
,
728 &batadv_attr_gw_bandwidth
,
729 #ifdef CONFIG_BATMAN_ADV_DEBUG
730 &batadv_attr_log_level
,
732 #ifdef CONFIG_BATMAN_ADV_NC
733 &batadv_attr_network_coding
,
735 &batadv_attr_isolation_mark
,
739 BATADV_ATTR_VLAN_BOOL(ap_isolation
, 0644, NULL
);
741 /* array of vlan specific sysfs attributes */
742 static struct batadv_attribute
*batadv_vlan_attrs
[] = {
743 &batadv_attr_vlan_ap_isolation
,
748 * batadv_sysfs_add_meshif() - Add soft interface specific sysfs entries
749 * @dev: netdev struct of the soft interface
751 * Return: 0 on success or negative error number in case of failure
753 int batadv_sysfs_add_meshif(struct net_device
*dev
)
755 struct kobject
*batif_kobject
= &dev
->dev
.kobj
;
756 struct batadv_priv
*bat_priv
= netdev_priv(dev
);
757 struct batadv_attribute
**bat_attr
;
760 bat_priv
->mesh_obj
= kobject_create_and_add(BATADV_SYSFS_IF_MESH_SUBDIR
,
762 if (!bat_priv
->mesh_obj
) {
763 batadv_err(dev
, "Can't add sysfs directory: %s/%s\n", dev
->name
,
764 BATADV_SYSFS_IF_MESH_SUBDIR
);
768 for (bat_attr
= batadv_mesh_attrs
; *bat_attr
; ++bat_attr
) {
769 err
= sysfs_create_file(bat_priv
->mesh_obj
,
770 &((*bat_attr
)->attr
));
772 batadv_err(dev
, "Can't add sysfs file: %s/%s/%s\n",
773 dev
->name
, BATADV_SYSFS_IF_MESH_SUBDIR
,
774 ((*bat_attr
)->attr
).name
);
782 for (bat_attr
= batadv_mesh_attrs
; *bat_attr
; ++bat_attr
)
783 sysfs_remove_file(bat_priv
->mesh_obj
, &((*bat_attr
)->attr
));
785 kobject_uevent(bat_priv
->mesh_obj
, KOBJ_REMOVE
);
786 kobject_del(bat_priv
->mesh_obj
);
787 kobject_put(bat_priv
->mesh_obj
);
788 bat_priv
->mesh_obj
= NULL
;
794 * batadv_sysfs_del_meshif() - Remove soft interface specific sysfs entries
795 * @dev: netdev struct of the soft interface
797 void batadv_sysfs_del_meshif(struct net_device
*dev
)
799 struct batadv_priv
*bat_priv
= netdev_priv(dev
);
800 struct batadv_attribute
**bat_attr
;
802 for (bat_attr
= batadv_mesh_attrs
; *bat_attr
; ++bat_attr
)
803 sysfs_remove_file(bat_priv
->mesh_obj
, &((*bat_attr
)->attr
));
805 kobject_uevent(bat_priv
->mesh_obj
, KOBJ_REMOVE
);
806 kobject_del(bat_priv
->mesh_obj
);
807 kobject_put(bat_priv
->mesh_obj
);
808 bat_priv
->mesh_obj
= NULL
;
812 * batadv_sysfs_add_vlan() - add all the needed sysfs objects for the new vlan
813 * @dev: netdev of the mesh interface
814 * @vlan: private data of the newly added VLAN interface
816 * Return: 0 on success and -ENOMEM if any of the structure allocations fails.
818 int batadv_sysfs_add_vlan(struct net_device
*dev
,
819 struct batadv_softif_vlan
*vlan
)
821 char vlan_subdir
[sizeof(BATADV_SYSFS_VLAN_SUBDIR_PREFIX
) + 5];
822 struct batadv_priv
*bat_priv
= netdev_priv(dev
);
823 struct batadv_attribute
**bat_attr
;
826 if (vlan
->vid
& BATADV_VLAN_HAS_TAG
) {
827 sprintf(vlan_subdir
, BATADV_SYSFS_VLAN_SUBDIR_PREFIX
"%hu",
828 vlan
->vid
& VLAN_VID_MASK
);
830 vlan
->kobj
= kobject_create_and_add(vlan_subdir
,
833 batadv_err(dev
, "Can't add sysfs directory: %s/%s\n",
834 dev
->name
, vlan_subdir
);
838 /* the untagged LAN uses the root folder to store its "VLAN
839 * specific attributes"
841 vlan
->kobj
= bat_priv
->mesh_obj
;
842 kobject_get(bat_priv
->mesh_obj
);
845 for (bat_attr
= batadv_vlan_attrs
; *bat_attr
; ++bat_attr
) {
846 err
= sysfs_create_file(vlan
->kobj
,
847 &((*bat_attr
)->attr
));
849 batadv_err(dev
, "Can't add sysfs file: %s/%s/%s\n",
850 dev
->name
, vlan_subdir
,
851 ((*bat_attr
)->attr
).name
);
859 for (bat_attr
= batadv_vlan_attrs
; *bat_attr
; ++bat_attr
)
860 sysfs_remove_file(vlan
->kobj
, &((*bat_attr
)->attr
));
862 if (vlan
->kobj
!= bat_priv
->mesh_obj
) {
863 kobject_uevent(vlan
->kobj
, KOBJ_REMOVE
);
864 kobject_del(vlan
->kobj
);
866 kobject_put(vlan
->kobj
);
873 * batadv_sysfs_del_vlan() - remove all the sysfs objects for a given VLAN
874 * @bat_priv: the bat priv with all the soft interface information
875 * @vlan: the private data of the VLAN to destroy
877 void batadv_sysfs_del_vlan(struct batadv_priv
*bat_priv
,
878 struct batadv_softif_vlan
*vlan
)
880 struct batadv_attribute
**bat_attr
;
882 for (bat_attr
= batadv_vlan_attrs
; *bat_attr
; ++bat_attr
)
883 sysfs_remove_file(vlan
->kobj
, &((*bat_attr
)->attr
));
885 if (vlan
->kobj
!= bat_priv
->mesh_obj
) {
886 kobject_uevent(vlan
->kobj
, KOBJ_REMOVE
);
887 kobject_del(vlan
->kobj
);
889 kobject_put(vlan
->kobj
);
893 static ssize_t
batadv_show_mesh_iface(struct kobject
*kobj
,
894 struct attribute
*attr
, char *buff
)
896 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
897 struct batadv_hard_iface
*hard_iface
;
901 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
905 if (hard_iface
->if_status
== BATADV_IF_NOT_IN_USE
)
908 ifname
= hard_iface
->soft_iface
->name
;
910 length
= sprintf(buff
, "%s\n", ifname
);
912 batadv_hardif_put(hard_iface
);
918 * batadv_store_mesh_iface_finish() - store new hardif mesh_iface state
919 * @net_dev: netdevice to add/remove to/from batman-adv soft-interface
920 * @ifname: name of soft-interface to modify
922 * Changes the parts of the hard+soft interface which can not be modified under
923 * sysfs lock (to prevent deadlock situations).
925 * Return: 0 on success, 0 < on failure
927 static int batadv_store_mesh_iface_finish(struct net_device
*net_dev
,
928 char ifname
[IFNAMSIZ
])
930 struct net
*net
= dev_net(net_dev
);
931 struct batadv_hard_iface
*hard_iface
;
937 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
941 if (strncmp(ifname
, "none", 4) == 0)
942 status_tmp
= BATADV_IF_NOT_IN_USE
;
944 status_tmp
= BATADV_IF_I_WANT_YOU
;
946 if (hard_iface
->if_status
== status_tmp
)
949 if (hard_iface
->soft_iface
&&
950 strncmp(hard_iface
->soft_iface
->name
, ifname
, IFNAMSIZ
) == 0)
953 if (status_tmp
== BATADV_IF_NOT_IN_USE
) {
954 batadv_hardif_disable_interface(hard_iface
,
955 BATADV_IF_CLEANUP_AUTO
);
959 /* if the interface already is in use */
960 if (hard_iface
->if_status
!= BATADV_IF_NOT_IN_USE
)
961 batadv_hardif_disable_interface(hard_iface
,
962 BATADV_IF_CLEANUP_AUTO
);
964 ret
= batadv_hardif_enable_interface(hard_iface
, net
, ifname
);
966 batadv_hardif_put(hard_iface
);
971 * batadv_store_mesh_iface_work() - store new hardif mesh_iface state
972 * @work: work queue item
974 * Changes the parts of the hard+soft interface which can not be modified under
975 * sysfs lock (to prevent deadlock situations).
977 static void batadv_store_mesh_iface_work(struct work_struct
*work
)
979 struct batadv_store_mesh_work
*store_work
;
982 store_work
= container_of(work
, struct batadv_store_mesh_work
, work
);
985 ret
= batadv_store_mesh_iface_finish(store_work
->net_dev
,
986 store_work
->soft_iface_name
);
990 pr_err("Failed to store new mesh_iface state %s for %s: %d\n",
991 store_work
->soft_iface_name
, store_work
->net_dev
->name
,
994 dev_put(store_work
->net_dev
);
998 static ssize_t
batadv_store_mesh_iface(struct kobject
*kobj
,
999 struct attribute
*attr
, char *buff
,
1002 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
1003 struct batadv_store_mesh_work
*store_work
;
1005 if (buff
[count
- 1] == '\n')
1006 buff
[count
- 1] = '\0';
1008 if (strlen(buff
) >= IFNAMSIZ
) {
1009 pr_err("Invalid parameter for 'mesh_iface' setting received: interface name too long '%s'\n",
1014 store_work
= kmalloc(sizeof(*store_work
), GFP_KERNEL
);
1019 INIT_WORK(&store_work
->work
, batadv_store_mesh_iface_work
);
1020 store_work
->net_dev
= net_dev
;
1021 strlcpy(store_work
->soft_iface_name
, buff
,
1022 sizeof(store_work
->soft_iface_name
));
1024 queue_work(batadv_event_workqueue
, &store_work
->work
);
1029 static ssize_t
batadv_show_iface_status(struct kobject
*kobj
,
1030 struct attribute
*attr
, char *buff
)
1032 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
1033 struct batadv_hard_iface
*hard_iface
;
1036 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
1040 switch (hard_iface
->if_status
) {
1041 case BATADV_IF_TO_BE_REMOVED
:
1042 length
= sprintf(buff
, "disabling\n");
1044 case BATADV_IF_INACTIVE
:
1045 length
= sprintf(buff
, "inactive\n");
1047 case BATADV_IF_ACTIVE
:
1048 length
= sprintf(buff
, "active\n");
1050 case BATADV_IF_TO_BE_ACTIVATED
:
1051 length
= sprintf(buff
, "enabling\n");
1053 case BATADV_IF_NOT_IN_USE
:
1055 length
= sprintf(buff
, "not in use\n");
1059 batadv_hardif_put(hard_iface
);
1064 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
1067 * batadv_store_throughput_override() - parse and store throughput override
1068 * entered by the user
1069 * @kobj: kobject representing the private mesh sysfs directory
1070 * @attr: the batman-adv attribute the user is interacting with
1071 * @buff: the buffer containing the user data
1072 * @count: number of bytes in the buffer
1074 * Return: 'count' on success or a negative error code in case of failure
1076 static ssize_t
batadv_store_throughput_override(struct kobject
*kobj
,
1077 struct attribute
*attr
,
1078 char *buff
, size_t count
)
1080 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
1081 struct batadv_hard_iface
*hard_iface
;
1083 u32 old_tp_override
;
1086 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
1090 if (buff
[count
- 1] == '\n')
1091 buff
[count
- 1] = '\0';
1093 ret
= batadv_parse_throughput(net_dev
, buff
, "throughput_override",
1098 old_tp_override
= atomic_read(&hard_iface
->bat_v
.throughput_override
);
1099 if (old_tp_override
== tp_override
)
1102 batadv_info(hard_iface
->soft_iface
,
1103 "%s: %s: Changing from: %u.%u MBit to: %u.%u MBit\n",
1104 "throughput_override", net_dev
->name
,
1105 old_tp_override
/ 10, old_tp_override
% 10,
1106 tp_override
/ 10, tp_override
% 10);
1108 atomic_set(&hard_iface
->bat_v
.throughput_override
, tp_override
);
1111 batadv_hardif_put(hard_iface
);
1115 static ssize_t
batadv_show_throughput_override(struct kobject
*kobj
,
1116 struct attribute
*attr
,
1119 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
1120 struct batadv_hard_iface
*hard_iface
;
1123 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
1127 tp_override
= atomic_read(&hard_iface
->bat_v
.throughput_override
);
1129 return sprintf(buff
, "%u.%u MBit\n", tp_override
/ 10,
1135 static BATADV_ATTR(mesh_iface
, 0644, batadv_show_mesh_iface
,
1136 batadv_store_mesh_iface
);
1137 static BATADV_ATTR(iface_status
, 0444, batadv_show_iface_status
, NULL
);
1138 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
1139 BATADV_ATTR_HIF_UINT(elp_interval
, bat_v
.elp_interval
, 0644,
1140 2 * BATADV_JITTER
, INT_MAX
, NULL
);
1141 static BATADV_ATTR(throughput_override
, 0644, batadv_show_throughput_override
,
1142 batadv_store_throughput_override
);
1145 static struct batadv_attribute
*batadv_batman_attrs
[] = {
1146 &batadv_attr_mesh_iface
,
1147 &batadv_attr_iface_status
,
1148 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
1149 &batadv_attr_elp_interval
,
1150 &batadv_attr_throughput_override
,
1156 * batadv_sysfs_add_hardif() - Add hard interface specific sysfs entries
1157 * @hardif_obj: address where to store the pointer to new sysfs folder
1158 * @dev: netdev struct of the hard interface
1160 * Return: 0 on success or negative error number in case of failure
1162 int batadv_sysfs_add_hardif(struct kobject
**hardif_obj
, struct net_device
*dev
)
1164 struct kobject
*hardif_kobject
= &dev
->dev
.kobj
;
1165 struct batadv_attribute
**bat_attr
;
1168 *hardif_obj
= kobject_create_and_add(BATADV_SYSFS_IF_BAT_SUBDIR
,
1172 batadv_err(dev
, "Can't add sysfs directory: %s/%s\n", dev
->name
,
1173 BATADV_SYSFS_IF_BAT_SUBDIR
);
1177 for (bat_attr
= batadv_batman_attrs
; *bat_attr
; ++bat_attr
) {
1178 err
= sysfs_create_file(*hardif_obj
, &((*bat_attr
)->attr
));
1180 batadv_err(dev
, "Can't add sysfs file: %s/%s/%s\n",
1181 dev
->name
, BATADV_SYSFS_IF_BAT_SUBDIR
,
1182 ((*bat_attr
)->attr
).name
);
1190 for (bat_attr
= batadv_batman_attrs
; *bat_attr
; ++bat_attr
)
1191 sysfs_remove_file(*hardif_obj
, &((*bat_attr
)->attr
));
1197 * batadv_sysfs_del_hardif() - Remove hard interface specific sysfs entries
1198 * @hardif_obj: address to the pointer to which stores batman-adv sysfs folder
1199 * of the hard interface
1201 void batadv_sysfs_del_hardif(struct kobject
**hardif_obj
)
1203 kobject_uevent(*hardif_obj
, KOBJ_REMOVE
);
1204 kobject_del(*hardif_obj
);
1205 kobject_put(*hardif_obj
);
1210 * batadv_throw_uevent() - Send an uevent with batman-adv specific env data
1211 * @bat_priv: the bat priv with all the soft interface information
1212 * @type: subsystem type of event. Stored in uevent's BATTYPE
1213 * @action: action type of event. Stored in uevent's BATACTION
1214 * @data: string with additional information to the event (ignored for
1215 * BATADV_UEV_DEL). Stored in uevent's BATDATA
1217 * Return: 0 on success or negative error number in case of failure
1219 int batadv_throw_uevent(struct batadv_priv
*bat_priv
, enum batadv_uev_type type
,
1220 enum batadv_uev_action action
, const char *data
)
1223 struct kobject
*bat_kobj
;
1224 char *uevent_env
[4] = { NULL
, NULL
, NULL
, NULL
};
1226 bat_kobj
= &bat_priv
->soft_iface
->dev
.kobj
;
1228 uevent_env
[0] = kasprintf(GFP_ATOMIC
,
1229 "%s%s", BATADV_UEV_TYPE_VAR
,
1230 batadv_uev_type_str
[type
]);
1234 uevent_env
[1] = kasprintf(GFP_ATOMIC
,
1235 "%s%s", BATADV_UEV_ACTION_VAR
,
1236 batadv_uev_action_str
[action
]);
1240 /* If the event is DEL, ignore the data field */
1241 if (action
!= BATADV_UEV_DEL
) {
1242 uevent_env
[2] = kasprintf(GFP_ATOMIC
,
1243 "%s%s", BATADV_UEV_DATA_VAR
, data
);
1248 ret
= kobject_uevent_env(bat_kobj
, KOBJ_CHANGE
, uevent_env
);
1250 kfree(uevent_env
[0]);
1251 kfree(uevent_env
[1]);
1252 kfree(uevent_env
[2]);
1255 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
1256 "Impossible to send uevent for (%s,%s,%s) event (err: %d)\n",
1257 batadv_uev_type_str
[type
],
1258 batadv_uev_action_str
[action
],
1259 (action
== BATADV_UEV_DEL
? "NULL" : data
), ret
);