1 /* Copyright (C) 2010-2016 B.A.T.M.A.N. contributors:
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include <linux/atomic.h>
22 #include <linux/compiler.h>
23 #include <linux/device.h>
24 #include <linux/errno.h>
27 #include <linux/if_vlan.h>
28 #include <linux/kref.h>
29 #include <linux/kernel.h>
30 #include <linux/netdevice.h>
31 #include <linux/printk.h>
32 #include <linux/rculist.h>
33 #include <linux/rcupdate.h>
34 #include <linux/rtnetlink.h>
35 #include <linux/slab.h>
36 #include <linux/stat.h>
37 #include <linux/stddef.h>
38 #include <linux/string.h>
39 #include <linux/stringify.h>
41 #include "distributed-arp-table.h"
42 #include "gateway_client.h"
43 #include "gateway_common.h"
44 #include "bridge_loop_avoidance.h"
45 #include "hard-interface.h"
46 #include "network-coding.h"
48 #include "soft-interface.h"
50 static struct net_device
*batadv_kobj_to_netdev(struct kobject
*obj
)
52 struct device
*dev
= container_of(obj
->parent
, struct device
, kobj
);
54 return to_net_dev(dev
);
57 static struct batadv_priv
*batadv_kobj_to_batpriv(struct kobject
*obj
)
59 struct net_device
*net_dev
= batadv_kobj_to_netdev(obj
);
61 return netdev_priv(net_dev
);
65 * batadv_vlan_kobj_to_batpriv - convert a vlan kobj in the associated batpriv
66 * @obj: kobject to covert
68 * Return: the associated batadv_priv struct.
70 static struct batadv_priv
*batadv_vlan_kobj_to_batpriv(struct kobject
*obj
)
72 /* VLAN specific attributes are located in the root sysfs folder if they
73 * refer to the untagged VLAN..
75 if (!strcmp(BATADV_SYSFS_IF_MESH_SUBDIR
, obj
->name
))
76 return batadv_kobj_to_batpriv(obj
);
78 /* ..while the attributes for the tagged vlans are located in
79 * the in the corresponding "vlan%VID" subfolder
81 return batadv_kobj_to_batpriv(obj
->parent
);
85 * batadv_kobj_to_vlan - convert a kobj in the associated softif_vlan struct
86 * @bat_priv: the bat priv with all the soft interface information
87 * @obj: kobject to covert
89 * Return: the associated softif_vlan struct if found, NULL otherwise.
91 static struct batadv_softif_vlan
*
92 batadv_kobj_to_vlan(struct batadv_priv
*bat_priv
, struct kobject
*obj
)
94 struct batadv_softif_vlan
*vlan_tmp
, *vlan
= NULL
;
97 hlist_for_each_entry_rcu(vlan_tmp
, &bat_priv
->softif_vlan_list
, list
) {
98 if (vlan_tmp
->kobj
!= obj
)
101 if (!kref_get_unless_zero(&vlan_tmp
->refcount
))
112 #define BATADV_UEV_TYPE_VAR "BATTYPE="
113 #define BATADV_UEV_ACTION_VAR "BATACTION="
114 #define BATADV_UEV_DATA_VAR "BATDATA="
116 static char *batadv_uev_action_str
[] = {
122 static char *batadv_uev_type_str
[] = {
126 /* Use this, if you have customized show and store functions for vlan attrs */
127 #define BATADV_ATTR_VLAN(_name, _mode, _show, _store) \
128 struct batadv_attribute batadv_attr_vlan_##_name = { \
129 .attr = {.name = __stringify(_name), \
135 /* Use this, if you have customized show and store functions */
136 #define BATADV_ATTR(_name, _mode, _show, _store) \
137 struct batadv_attribute batadv_attr_##_name = { \
138 .attr = {.name = __stringify(_name), \
144 #define BATADV_ATTR_SIF_STORE_BOOL(_name, _post_func) \
145 ssize_t batadv_store_##_name(struct kobject *kobj, \
146 struct attribute *attr, char *buff, \
149 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
150 struct batadv_priv *bat_priv = netdev_priv(net_dev); \
152 return __batadv_store_bool_attr(buff, count, _post_func, attr, \
153 &bat_priv->_name, net_dev); \
156 #define BATADV_ATTR_SIF_SHOW_BOOL(_name) \
157 ssize_t batadv_show_##_name(struct kobject *kobj, \
158 struct attribute *attr, char *buff) \
160 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj); \
162 return sprintf(buff, "%s\n", \
163 atomic_read(&bat_priv->_name) == 0 ? \
164 "disabled" : "enabled"); \
167 /* Use this, if you are going to turn a [name] in the soft-interface
168 * (bat_priv) on or off
170 #define BATADV_ATTR_SIF_BOOL(_name, _mode, _post_func) \
171 static BATADV_ATTR_SIF_STORE_BOOL(_name, _post_func) \
172 static BATADV_ATTR_SIF_SHOW_BOOL(_name) \
173 static BATADV_ATTR(_name, _mode, batadv_show_##_name, \
174 batadv_store_##_name)
176 #define BATADV_ATTR_SIF_STORE_UINT(_name, _var, _min, _max, _post_func) \
177 ssize_t batadv_store_##_name(struct kobject *kobj, \
178 struct attribute *attr, char *buff, \
181 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
182 struct batadv_priv *bat_priv = netdev_priv(net_dev); \
184 return __batadv_store_uint_attr(buff, count, _min, _max, \
186 &bat_priv->_var, net_dev); \
189 #define BATADV_ATTR_SIF_SHOW_UINT(_name, _var) \
190 ssize_t batadv_show_##_name(struct kobject *kobj, \
191 struct attribute *attr, char *buff) \
193 struct batadv_priv *bat_priv = batadv_kobj_to_batpriv(kobj); \
195 return sprintf(buff, "%i\n", atomic_read(&bat_priv->_var)); \
198 /* Use this, if you are going to set [name] in the soft-interface
199 * (bat_priv) to an unsigned integer value
201 #define BATADV_ATTR_SIF_UINT(_name, _var, _mode, _min, _max, _post_func)\
202 static BATADV_ATTR_SIF_STORE_UINT(_name, _var, _min, _max, _post_func)\
203 static BATADV_ATTR_SIF_SHOW_UINT(_name, _var) \
204 static BATADV_ATTR(_name, _mode, batadv_show_##_name, \
205 batadv_store_##_name)
207 #define BATADV_ATTR_VLAN_STORE_BOOL(_name, _post_func) \
208 ssize_t batadv_store_vlan_##_name(struct kobject *kobj, \
209 struct attribute *attr, char *buff, \
212 struct batadv_priv *bat_priv = batadv_vlan_kobj_to_batpriv(kobj);\
213 struct batadv_softif_vlan *vlan = batadv_kobj_to_vlan(bat_priv, \
215 size_t res = __batadv_store_bool_attr(buff, count, _post_func, \
216 attr, &vlan->_name, \
217 bat_priv->soft_iface); \
219 batadv_softif_vlan_put(vlan); \
223 #define BATADV_ATTR_VLAN_SHOW_BOOL(_name) \
224 ssize_t batadv_show_vlan_##_name(struct kobject *kobj, \
225 struct attribute *attr, char *buff) \
227 struct batadv_priv *bat_priv = batadv_vlan_kobj_to_batpriv(kobj);\
228 struct batadv_softif_vlan *vlan = batadv_kobj_to_vlan(bat_priv, \
230 size_t res = sprintf(buff, "%s\n", \
231 atomic_read(&vlan->_name) == 0 ? \
232 "disabled" : "enabled"); \
234 batadv_softif_vlan_put(vlan); \
238 /* Use this, if you are going to turn a [name] in the vlan struct on or off */
239 #define BATADV_ATTR_VLAN_BOOL(_name, _mode, _post_func) \
240 static BATADV_ATTR_VLAN_STORE_BOOL(_name, _post_func) \
241 static BATADV_ATTR_VLAN_SHOW_BOOL(_name) \
242 static BATADV_ATTR_VLAN(_name, _mode, batadv_show_vlan_##_name, \
243 batadv_store_vlan_##_name)
245 #define BATADV_ATTR_HIF_STORE_UINT(_name, _var, _min, _max, _post_func) \
246 ssize_t batadv_store_##_name(struct kobject *kobj, \
247 struct attribute *attr, char *buff, \
250 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
251 struct batadv_hard_iface *hard_iface; \
254 hard_iface = batadv_hardif_get_by_netdev(net_dev); \
258 length = __batadv_store_uint_attr(buff, count, _min, _max, \
260 &hard_iface->_var, net_dev); \
262 batadv_hardif_put(hard_iface); \
266 #define BATADV_ATTR_HIF_SHOW_UINT(_name, _var) \
267 ssize_t batadv_show_##_name(struct kobject *kobj, \
268 struct attribute *attr, char *buff) \
270 struct net_device *net_dev = batadv_kobj_to_netdev(kobj); \
271 struct batadv_hard_iface *hard_iface; \
274 hard_iface = batadv_hardif_get_by_netdev(net_dev); \
278 length = sprintf(buff, "%i\n", atomic_read(&hard_iface->_var)); \
280 batadv_hardif_put(hard_iface); \
284 /* Use this, if you are going to set [name] in hard_iface to an
285 * unsigned integer value
287 #define BATADV_ATTR_HIF_UINT(_name, _var, _mode, _min, _max, _post_func)\
288 static BATADV_ATTR_HIF_STORE_UINT(_name, _var, _min, \
290 static BATADV_ATTR_HIF_SHOW_UINT(_name, _var) \
291 static BATADV_ATTR(_name, _mode, batadv_show_##_name, \
292 batadv_store_##_name)
294 static int batadv_store_bool_attr(char *buff
, size_t count
,
295 struct net_device
*net_dev
,
296 const char *attr_name
, atomic_t
*attr
,
303 if (buff
[count
- 1] == '\n')
304 buff
[count
- 1] = '\0';
306 if ((strncmp(buff
, "1", 2) == 0) ||
307 (strncmp(buff
, "enable", 7) == 0) ||
308 (strncmp(buff
, "enabled", 8) == 0))
311 if ((strncmp(buff
, "0", 2) == 0) ||
312 (strncmp(buff
, "disable", 8) == 0) ||
313 (strncmp(buff
, "disabled", 9) == 0))
317 batadv_info(net_dev
, "%s: Invalid parameter received: %s\n",
322 if (atomic_read(attr
) == enabled
)
325 batadv_info(net_dev
, "%s: Changing from: %s to: %s\n", attr_name
,
326 atomic_read(attr
) == 1 ? "enabled" : "disabled",
327 enabled
== 1 ? "enabled" : "disabled");
331 atomic_set(attr
, (unsigned int)enabled
);
335 static inline ssize_t
336 __batadv_store_bool_attr(char *buff
, size_t count
,
337 void (*post_func
)(struct net_device
*),
338 struct attribute
*attr
,
339 atomic_t
*attr_store
, struct net_device
*net_dev
)
344 ret
= batadv_store_bool_attr(buff
, count
, net_dev
, attr
->name
,
345 attr_store
, &changed
);
346 if (post_func
&& changed
)
352 static int batadv_store_uint_attr(const char *buff
, size_t count
,
353 struct net_device
*net_dev
,
354 const char *attr_name
,
355 unsigned int min
, unsigned int max
,
358 unsigned long uint_val
;
361 ret
= kstrtoul(buff
, 10, &uint_val
);
363 batadv_info(net_dev
, "%s: Invalid parameter received: %s\n",
368 if (uint_val
< min
) {
369 batadv_info(net_dev
, "%s: Value is too small: %lu min: %u\n",
370 attr_name
, uint_val
, min
);
374 if (uint_val
> max
) {
375 batadv_info(net_dev
, "%s: Value is too big: %lu max: %u\n",
376 attr_name
, uint_val
, max
);
380 if (atomic_read(attr
) == uint_val
)
383 batadv_info(net_dev
, "%s: Changing from: %i to: %lu\n",
384 attr_name
, atomic_read(attr
), uint_val
);
386 atomic_set(attr
, uint_val
);
390 static inline ssize_t
391 __batadv_store_uint_attr(const char *buff
, size_t count
,
393 void (*post_func
)(struct net_device
*),
394 const struct attribute
*attr
,
395 atomic_t
*attr_store
, struct net_device
*net_dev
)
399 ret
= batadv_store_uint_attr(buff
, count
, net_dev
, attr
->name
, min
, max
,
401 if (post_func
&& ret
)
407 static ssize_t
batadv_show_bat_algo(struct kobject
*kobj
,
408 struct attribute
*attr
, char *buff
)
410 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
412 return sprintf(buff
, "%s\n", bat_priv
->bat_algo_ops
->name
);
415 static void batadv_post_gw_reselect(struct net_device
*net_dev
)
417 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
419 batadv_gw_reselect(bat_priv
);
422 static ssize_t
batadv_show_gw_mode(struct kobject
*kobj
, struct attribute
*attr
,
425 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
428 switch (atomic_read(&bat_priv
->gw_mode
)) {
429 case BATADV_GW_MODE_CLIENT
:
430 bytes_written
= sprintf(buff
, "%s\n",
431 BATADV_GW_MODE_CLIENT_NAME
);
433 case BATADV_GW_MODE_SERVER
:
434 bytes_written
= sprintf(buff
, "%s\n",
435 BATADV_GW_MODE_SERVER_NAME
);
438 bytes_written
= sprintf(buff
, "%s\n",
439 BATADV_GW_MODE_OFF_NAME
);
443 return bytes_written
;
446 static ssize_t
batadv_store_gw_mode(struct kobject
*kobj
,
447 struct attribute
*attr
, char *buff
,
450 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
451 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
452 char *curr_gw_mode_str
;
453 int gw_mode_tmp
= -1;
455 if (buff
[count
- 1] == '\n')
456 buff
[count
- 1] = '\0';
458 if (strncmp(buff
, BATADV_GW_MODE_OFF_NAME
,
459 strlen(BATADV_GW_MODE_OFF_NAME
)) == 0)
460 gw_mode_tmp
= BATADV_GW_MODE_OFF
;
462 if (strncmp(buff
, BATADV_GW_MODE_CLIENT_NAME
,
463 strlen(BATADV_GW_MODE_CLIENT_NAME
)) == 0)
464 gw_mode_tmp
= BATADV_GW_MODE_CLIENT
;
466 if (strncmp(buff
, BATADV_GW_MODE_SERVER_NAME
,
467 strlen(BATADV_GW_MODE_SERVER_NAME
)) == 0)
468 gw_mode_tmp
= BATADV_GW_MODE_SERVER
;
470 if (gw_mode_tmp
< 0) {
472 "Invalid parameter for 'gw mode' setting received: %s\n",
477 if (atomic_read(&bat_priv
->gw_mode
) == gw_mode_tmp
)
480 switch (atomic_read(&bat_priv
->gw_mode
)) {
481 case BATADV_GW_MODE_CLIENT
:
482 curr_gw_mode_str
= BATADV_GW_MODE_CLIENT_NAME
;
484 case BATADV_GW_MODE_SERVER
:
485 curr_gw_mode_str
= BATADV_GW_MODE_SERVER_NAME
;
488 curr_gw_mode_str
= BATADV_GW_MODE_OFF_NAME
;
492 batadv_info(net_dev
, "Changing gw mode from: %s to: %s\n",
493 curr_gw_mode_str
, buff
);
495 /* Invoking batadv_gw_reselect() is not enough to really de-select the
496 * current GW. It will only instruct the gateway client code to perform
497 * a re-election the next time that this is needed.
499 * When gw client mode is being switched off the current GW must be
500 * de-selected explicitly otherwise no GW_ADD uevent is thrown on
501 * client mode re-activation. This is operation is performed in
502 * batadv_gw_check_client_stop().
504 batadv_gw_reselect(bat_priv
);
505 /* always call batadv_gw_check_client_stop() before changing the gateway
508 batadv_gw_check_client_stop(bat_priv
);
509 atomic_set(&bat_priv
->gw_mode
, (unsigned int)gw_mode_tmp
);
510 batadv_gw_tvlv_container_update(bat_priv
);
514 static ssize_t
batadv_show_gw_bwidth(struct kobject
*kobj
,
515 struct attribute
*attr
, char *buff
)
517 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
520 down
= atomic_read(&bat_priv
->gw
.bandwidth_down
);
521 up
= atomic_read(&bat_priv
->gw
.bandwidth_up
);
523 return sprintf(buff
, "%u.%u/%u.%u MBit\n", down
/ 10,
524 down
% 10, up
/ 10, up
% 10);
527 static ssize_t
batadv_store_gw_bwidth(struct kobject
*kobj
,
528 struct attribute
*attr
, char *buff
,
531 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
533 if (buff
[count
- 1] == '\n')
534 buff
[count
- 1] = '\0';
536 return batadv_gw_bandwidth_set(net_dev
, buff
, count
);
540 * batadv_show_isolation_mark - print the current isolation mark/mask
541 * @kobj: kobject representing the private mesh sysfs directory
542 * @attr: the batman-adv attribute the user is interacting with
543 * @buff: the buffer that will contain the data to send back to the user
545 * Return: the number of bytes written into 'buff' on success or a negative
546 * error code in case of failure
548 static ssize_t
batadv_show_isolation_mark(struct kobject
*kobj
,
549 struct attribute
*attr
, char *buff
)
551 struct batadv_priv
*bat_priv
= batadv_kobj_to_batpriv(kobj
);
553 return sprintf(buff
, "%#.8x/%#.8x\n", bat_priv
->isolation_mark
,
554 bat_priv
->isolation_mark_mask
);
558 * batadv_store_isolation_mark - parse and store the isolation mark/mask entered
560 * @kobj: kobject representing the private mesh sysfs directory
561 * @attr: the batman-adv attribute the user is interacting with
562 * @buff: the buffer containing the user data
563 * @count: number of bytes in the buffer
565 * Return: 'count' on success or a negative error code in case of failure
567 static ssize_t
batadv_store_isolation_mark(struct kobject
*kobj
,
568 struct attribute
*attr
, char *buff
,
571 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
572 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
576 /* parse the mask if it has been specified, otherwise assume the mask is
577 * the biggest possible
580 mask_ptr
= strchr(buff
, '/');
585 /* the mask must be entered in hex base as it is going to be a
586 * bitmask and not a prefix length
588 if (kstrtou32(mask_ptr
, 16, &mask
) < 0)
592 /* the mark can be entered in any base */
593 if (kstrtou32(buff
, 0, &mark
) < 0)
596 bat_priv
->isolation_mark_mask
= mask
;
597 /* erase bits not covered by the mask */
598 bat_priv
->isolation_mark
= mark
& bat_priv
->isolation_mark_mask
;
601 "New skb mark for extended isolation: %#.8x/%#.8x\n",
602 bat_priv
->isolation_mark
, bat_priv
->isolation_mark_mask
);
607 BATADV_ATTR_SIF_BOOL(aggregated_ogms
, S_IRUGO
| S_IWUSR
, NULL
);
608 BATADV_ATTR_SIF_BOOL(bonding
, S_IRUGO
| S_IWUSR
, NULL
);
609 #ifdef CONFIG_BATMAN_ADV_BLA
610 BATADV_ATTR_SIF_BOOL(bridge_loop_avoidance
, S_IRUGO
| S_IWUSR
,
611 batadv_bla_status_update
);
613 #ifdef CONFIG_BATMAN_ADV_DAT
614 BATADV_ATTR_SIF_BOOL(distributed_arp_table
, S_IRUGO
| S_IWUSR
,
615 batadv_dat_status_update
);
617 BATADV_ATTR_SIF_BOOL(fragmentation
, S_IRUGO
| S_IWUSR
, batadv_update_min_mtu
);
618 static BATADV_ATTR(routing_algo
, S_IRUGO
, batadv_show_bat_algo
, NULL
);
619 static BATADV_ATTR(gw_mode
, S_IRUGO
| S_IWUSR
, batadv_show_gw_mode
,
620 batadv_store_gw_mode
);
621 BATADV_ATTR_SIF_UINT(orig_interval
, orig_interval
, S_IRUGO
| S_IWUSR
,
622 2 * BATADV_JITTER
, INT_MAX
, NULL
);
623 BATADV_ATTR_SIF_UINT(hop_penalty
, hop_penalty
, S_IRUGO
| S_IWUSR
, 0,
624 BATADV_TQ_MAX_VALUE
, NULL
);
625 BATADV_ATTR_SIF_UINT(gw_sel_class
, gw_sel_class
, S_IRUGO
| S_IWUSR
, 1,
626 BATADV_TQ_MAX_VALUE
, batadv_post_gw_reselect
);
627 static BATADV_ATTR(gw_bandwidth
, S_IRUGO
| S_IWUSR
, batadv_show_gw_bwidth
,
628 batadv_store_gw_bwidth
);
629 #ifdef CONFIG_BATMAN_ADV_MCAST
630 BATADV_ATTR_SIF_BOOL(multicast_mode
, S_IRUGO
| S_IWUSR
, NULL
);
632 #ifdef CONFIG_BATMAN_ADV_DEBUG
633 BATADV_ATTR_SIF_UINT(log_level
, log_level
, S_IRUGO
| S_IWUSR
, 0,
634 BATADV_DBG_ALL
, NULL
);
636 #ifdef CONFIG_BATMAN_ADV_NC
637 BATADV_ATTR_SIF_BOOL(network_coding
, S_IRUGO
| S_IWUSR
,
638 batadv_nc_status_update
);
640 static BATADV_ATTR(isolation_mark
, S_IRUGO
| S_IWUSR
,
641 batadv_show_isolation_mark
, batadv_store_isolation_mark
);
643 static struct batadv_attribute
*batadv_mesh_attrs
[] = {
644 &batadv_attr_aggregated_ogms
,
645 &batadv_attr_bonding
,
646 #ifdef CONFIG_BATMAN_ADV_BLA
647 &batadv_attr_bridge_loop_avoidance
,
649 #ifdef CONFIG_BATMAN_ADV_DAT
650 &batadv_attr_distributed_arp_table
,
652 #ifdef CONFIG_BATMAN_ADV_MCAST
653 &batadv_attr_multicast_mode
,
655 &batadv_attr_fragmentation
,
656 &batadv_attr_routing_algo
,
657 &batadv_attr_gw_mode
,
658 &batadv_attr_orig_interval
,
659 &batadv_attr_hop_penalty
,
660 &batadv_attr_gw_sel_class
,
661 &batadv_attr_gw_bandwidth
,
662 #ifdef CONFIG_BATMAN_ADV_DEBUG
663 &batadv_attr_log_level
,
665 #ifdef CONFIG_BATMAN_ADV_NC
666 &batadv_attr_network_coding
,
668 &batadv_attr_isolation_mark
,
672 BATADV_ATTR_VLAN_BOOL(ap_isolation
, S_IRUGO
| S_IWUSR
, NULL
);
674 /* array of vlan specific sysfs attributes */
675 static struct batadv_attribute
*batadv_vlan_attrs
[] = {
676 &batadv_attr_vlan_ap_isolation
,
680 int batadv_sysfs_add_meshif(struct net_device
*dev
)
682 struct kobject
*batif_kobject
= &dev
->dev
.kobj
;
683 struct batadv_priv
*bat_priv
= netdev_priv(dev
);
684 struct batadv_attribute
**bat_attr
;
687 bat_priv
->mesh_obj
= kobject_create_and_add(BATADV_SYSFS_IF_MESH_SUBDIR
,
689 if (!bat_priv
->mesh_obj
) {
690 batadv_err(dev
, "Can't add sysfs directory: %s/%s\n", dev
->name
,
691 BATADV_SYSFS_IF_MESH_SUBDIR
);
695 for (bat_attr
= batadv_mesh_attrs
; *bat_attr
; ++bat_attr
) {
696 err
= sysfs_create_file(bat_priv
->mesh_obj
,
697 &((*bat_attr
)->attr
));
699 batadv_err(dev
, "Can't add sysfs file: %s/%s/%s\n",
700 dev
->name
, BATADV_SYSFS_IF_MESH_SUBDIR
,
701 ((*bat_attr
)->attr
).name
);
709 for (bat_attr
= batadv_mesh_attrs
; *bat_attr
; ++bat_attr
)
710 sysfs_remove_file(bat_priv
->mesh_obj
, &((*bat_attr
)->attr
));
712 kobject_put(bat_priv
->mesh_obj
);
713 bat_priv
->mesh_obj
= NULL
;
718 void batadv_sysfs_del_meshif(struct net_device
*dev
)
720 struct batadv_priv
*bat_priv
= netdev_priv(dev
);
721 struct batadv_attribute
**bat_attr
;
723 for (bat_attr
= batadv_mesh_attrs
; *bat_attr
; ++bat_attr
)
724 sysfs_remove_file(bat_priv
->mesh_obj
, &((*bat_attr
)->attr
));
726 kobject_put(bat_priv
->mesh_obj
);
727 bat_priv
->mesh_obj
= NULL
;
731 * batadv_sysfs_add_vlan - add all the needed sysfs objects for the new vlan
732 * @dev: netdev of the mesh interface
733 * @vlan: private data of the newly added VLAN interface
735 * Return: 0 on success and -ENOMEM if any of the structure allocations fails.
737 int batadv_sysfs_add_vlan(struct net_device
*dev
,
738 struct batadv_softif_vlan
*vlan
)
740 char vlan_subdir
[sizeof(BATADV_SYSFS_VLAN_SUBDIR_PREFIX
) + 5];
741 struct batadv_priv
*bat_priv
= netdev_priv(dev
);
742 struct batadv_attribute
**bat_attr
;
745 if (vlan
->vid
& BATADV_VLAN_HAS_TAG
) {
746 sprintf(vlan_subdir
, BATADV_SYSFS_VLAN_SUBDIR_PREFIX
"%hu",
747 vlan
->vid
& VLAN_VID_MASK
);
749 vlan
->kobj
= kobject_create_and_add(vlan_subdir
,
752 batadv_err(dev
, "Can't add sysfs directory: %s/%s\n",
753 dev
->name
, vlan_subdir
);
757 /* the untagged LAN uses the root folder to store its "VLAN
758 * specific attributes"
760 vlan
->kobj
= bat_priv
->mesh_obj
;
761 kobject_get(bat_priv
->mesh_obj
);
764 for (bat_attr
= batadv_vlan_attrs
; *bat_attr
; ++bat_attr
) {
765 err
= sysfs_create_file(vlan
->kobj
,
766 &((*bat_attr
)->attr
));
768 batadv_err(dev
, "Can't add sysfs file: %s/%s/%s\n",
769 dev
->name
, vlan_subdir
,
770 ((*bat_attr
)->attr
).name
);
778 for (bat_attr
= batadv_vlan_attrs
; *bat_attr
; ++bat_attr
)
779 sysfs_remove_file(vlan
->kobj
, &((*bat_attr
)->attr
));
781 kobject_put(vlan
->kobj
);
788 * batadv_sysfs_del_vlan - remove all the sysfs objects for a given VLAN
789 * @bat_priv: the bat priv with all the soft interface information
790 * @vlan: the private data of the VLAN to destroy
792 void batadv_sysfs_del_vlan(struct batadv_priv
*bat_priv
,
793 struct batadv_softif_vlan
*vlan
)
795 struct batadv_attribute
**bat_attr
;
797 for (bat_attr
= batadv_vlan_attrs
; *bat_attr
; ++bat_attr
)
798 sysfs_remove_file(vlan
->kobj
, &((*bat_attr
)->attr
));
800 kobject_put(vlan
->kobj
);
804 static ssize_t
batadv_show_mesh_iface(struct kobject
*kobj
,
805 struct attribute
*attr
, char *buff
)
807 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
808 struct batadv_hard_iface
*hard_iface
;
812 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
816 if (hard_iface
->if_status
== BATADV_IF_NOT_IN_USE
)
819 ifname
= hard_iface
->soft_iface
->name
;
821 length
= sprintf(buff
, "%s\n", ifname
);
823 batadv_hardif_put(hard_iface
);
828 static ssize_t
batadv_store_mesh_iface(struct kobject
*kobj
,
829 struct attribute
*attr
, char *buff
,
832 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
833 struct batadv_hard_iface
*hard_iface
;
837 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
841 if (buff
[count
- 1] == '\n')
842 buff
[count
- 1] = '\0';
844 if (strlen(buff
) >= IFNAMSIZ
) {
845 pr_err("Invalid parameter for 'mesh_iface' setting received: interface name too long '%s'\n",
847 batadv_hardif_put(hard_iface
);
851 if (strncmp(buff
, "none", 4) == 0)
852 status_tmp
= BATADV_IF_NOT_IN_USE
;
854 status_tmp
= BATADV_IF_I_WANT_YOU
;
856 if (hard_iface
->if_status
== status_tmp
)
859 if ((hard_iface
->soft_iface
) &&
860 (strncmp(hard_iface
->soft_iface
->name
, buff
, IFNAMSIZ
) == 0))
865 if (status_tmp
== BATADV_IF_NOT_IN_USE
) {
866 batadv_hardif_disable_interface(hard_iface
,
867 BATADV_IF_CLEANUP_AUTO
);
871 /* if the interface already is in use */
872 if (hard_iface
->if_status
!= BATADV_IF_NOT_IN_USE
)
873 batadv_hardif_disable_interface(hard_iface
,
874 BATADV_IF_CLEANUP_AUTO
);
876 ret
= batadv_hardif_enable_interface(hard_iface
, buff
);
881 batadv_hardif_put(hard_iface
);
885 static ssize_t
batadv_show_iface_status(struct kobject
*kobj
,
886 struct attribute
*attr
, char *buff
)
888 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
889 struct batadv_hard_iface
*hard_iface
;
892 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
896 switch (hard_iface
->if_status
) {
897 case BATADV_IF_TO_BE_REMOVED
:
898 length
= sprintf(buff
, "disabling\n");
900 case BATADV_IF_INACTIVE
:
901 length
= sprintf(buff
, "inactive\n");
903 case BATADV_IF_ACTIVE
:
904 length
= sprintf(buff
, "active\n");
906 case BATADV_IF_TO_BE_ACTIVATED
:
907 length
= sprintf(buff
, "enabling\n");
909 case BATADV_IF_NOT_IN_USE
:
911 length
= sprintf(buff
, "not in use\n");
915 batadv_hardif_put(hard_iface
);
920 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
923 * batadv_store_throughput_override - parse and store throughput override
924 * entered by the user
925 * @kobj: kobject representing the private mesh sysfs directory
926 * @attr: the batman-adv attribute the user is interacting with
927 * @buff: the buffer containing the user data
928 * @count: number of bytes in the buffer
930 * Return: 'count' on success or a negative error code in case of failure
932 static ssize_t
batadv_store_throughput_override(struct kobject
*kobj
,
933 struct attribute
*attr
,
934 char *buff
, size_t count
)
936 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
937 struct batadv_hard_iface
*hard_iface
;
942 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
946 if (buff
[count
- 1] == '\n')
947 buff
[count
- 1] = '\0';
949 ret
= batadv_parse_throughput(net_dev
, buff
, "throughput_override",
954 old_tp_override
= atomic_read(&hard_iface
->bat_v
.throughput_override
);
955 if (old_tp_override
== tp_override
)
958 batadv_info(net_dev
, "%s: Changing from: %u.%u MBit to: %u.%u MBit\n",
959 "throughput_override",
960 old_tp_override
/ 10, old_tp_override
% 10,
961 tp_override
/ 10, tp_override
% 10);
963 atomic_set(&hard_iface
->bat_v
.throughput_override
, tp_override
);
966 batadv_hardif_put(hard_iface
);
970 static ssize_t
batadv_show_throughput_override(struct kobject
*kobj
,
971 struct attribute
*attr
,
974 struct net_device
*net_dev
= batadv_kobj_to_netdev(kobj
);
975 struct batadv_hard_iface
*hard_iface
;
978 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
982 tp_override
= atomic_read(&hard_iface
->bat_v
.throughput_override
);
984 return sprintf(buff
, "%u.%u MBit\n", tp_override
/ 10,
990 static BATADV_ATTR(mesh_iface
, S_IRUGO
| S_IWUSR
, batadv_show_mesh_iface
,
991 batadv_store_mesh_iface
);
992 static BATADV_ATTR(iface_status
, S_IRUGO
, batadv_show_iface_status
, NULL
);
993 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
994 BATADV_ATTR_HIF_UINT(elp_interval
, bat_v
.elp_interval
, S_IRUGO
| S_IWUSR
,
995 2 * BATADV_JITTER
, INT_MAX
, NULL
);
996 static BATADV_ATTR(throughput_override
, S_IRUGO
| S_IWUSR
,
997 batadv_show_throughput_override
,
998 batadv_store_throughput_override
);
1001 static struct batadv_attribute
*batadv_batman_attrs
[] = {
1002 &batadv_attr_mesh_iface
,
1003 &batadv_attr_iface_status
,
1004 #ifdef CONFIG_BATMAN_ADV_BATMAN_V
1005 &batadv_attr_elp_interval
,
1006 &batadv_attr_throughput_override
,
1011 int batadv_sysfs_add_hardif(struct kobject
**hardif_obj
, struct net_device
*dev
)
1013 struct kobject
*hardif_kobject
= &dev
->dev
.kobj
;
1014 struct batadv_attribute
**bat_attr
;
1017 *hardif_obj
= kobject_create_and_add(BATADV_SYSFS_IF_BAT_SUBDIR
,
1021 batadv_err(dev
, "Can't add sysfs directory: %s/%s\n", dev
->name
,
1022 BATADV_SYSFS_IF_BAT_SUBDIR
);
1026 for (bat_attr
= batadv_batman_attrs
; *bat_attr
; ++bat_attr
) {
1027 err
= sysfs_create_file(*hardif_obj
, &((*bat_attr
)->attr
));
1029 batadv_err(dev
, "Can't add sysfs file: %s/%s/%s\n",
1030 dev
->name
, BATADV_SYSFS_IF_BAT_SUBDIR
,
1031 ((*bat_attr
)->attr
).name
);
1039 for (bat_attr
= batadv_batman_attrs
; *bat_attr
; ++bat_attr
)
1040 sysfs_remove_file(*hardif_obj
, &((*bat_attr
)->attr
));
1045 void batadv_sysfs_del_hardif(struct kobject
**hardif_obj
)
1047 kobject_put(*hardif_obj
);
1051 int batadv_throw_uevent(struct batadv_priv
*bat_priv
, enum batadv_uev_type type
,
1052 enum batadv_uev_action action
, const char *data
)
1055 struct kobject
*bat_kobj
;
1056 char *uevent_env
[4] = { NULL
, NULL
, NULL
, NULL
};
1058 bat_kobj
= &bat_priv
->soft_iface
->dev
.kobj
;
1060 uevent_env
[0] = kasprintf(GFP_ATOMIC
,
1061 "%s%s", BATADV_UEV_TYPE_VAR
,
1062 batadv_uev_type_str
[type
]);
1066 uevent_env
[1] = kasprintf(GFP_ATOMIC
,
1067 "%s%s", BATADV_UEV_ACTION_VAR
,
1068 batadv_uev_action_str
[action
]);
1072 /* If the event is DEL, ignore the data field */
1073 if (action
!= BATADV_UEV_DEL
) {
1074 uevent_env
[2] = kasprintf(GFP_ATOMIC
,
1075 "%s%s", BATADV_UEV_DATA_VAR
, data
);
1080 ret
= kobject_uevent_env(bat_kobj
, KOBJ_CHANGE
, uevent_env
);
1082 kfree(uevent_env
[0]);
1083 kfree(uevent_env
[1]);
1084 kfree(uevent_env
[2]);
1087 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
1088 "Impossible to send uevent for (%s,%s,%s) event (err: %d)\n",
1089 batadv_uev_type_str
[type
],
1090 batadv_uev_action_str
[action
],
1091 (action
== BATADV_UEV_DEL
? "NULL" : data
), ret
);