1 /* Copyright (C) 2007-2016 B.A.T.M.A.N. contributors:
3 * Marek Lindner, Simon Wunderlich
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/>.
18 #include "hard-interface.h"
21 #include <linux/atomic.h>
22 #include <linux/bug.h>
23 #include <linux/byteorder/generic.h>
24 #include <linux/errno.h>
27 #include <linux/if_arp.h>
28 #include <linux/if_ether.h>
29 #include <linux/kernel.h>
30 #include <linux/kref.h>
31 #include <linux/list.h>
32 #include <linux/netdevice.h>
33 #include <linux/printk.h>
34 #include <linux/rculist.h>
35 #include <linux/rtnetlink.h>
36 #include <linux/slab.h>
37 #include <linux/spinlock.h>
38 #include <net/net_namespace.h>
39 #include <net/rtnetlink.h>
42 #include "bridge_loop_avoidance.h"
44 #include "distributed-arp-table.h"
45 #include "gateway_client.h"
47 #include "originator.h"
50 #include "soft-interface.h"
52 #include "translation-table.h"
55 * batadv_hardif_release - release hard interface from lists and queue for
56 * free after rcu grace period
57 * @ref: kref pointer of the hard interface
59 void batadv_hardif_release(struct kref
*ref
)
61 struct batadv_hard_iface
*hard_iface
;
63 hard_iface
= container_of(ref
, struct batadv_hard_iface
, refcount
);
64 dev_put(hard_iface
->net_dev
);
66 kfree_rcu(hard_iface
, rcu
);
69 struct batadv_hard_iface
*
70 batadv_hardif_get_by_netdev(const struct net_device
*net_dev
)
72 struct batadv_hard_iface
*hard_iface
;
75 list_for_each_entry_rcu(hard_iface
, &batadv_hardif_list
, list
) {
76 if (hard_iface
->net_dev
== net_dev
&&
77 kref_get_unless_zero(&hard_iface
->refcount
))
89 * batadv_getlink_net - return link net namespace (of use fallback)
90 * @netdev: net_device to check
91 * @fallback_net: return in case get_link_net is not available for @netdev
93 * Return: result of rtnl_link_ops->get_link_net or @fallback_net
95 static const struct net
*batadv_getlink_net(const struct net_device
*netdev
,
96 const struct net
*fallback_net
)
98 if (!netdev
->rtnl_link_ops
)
101 if (!netdev
->rtnl_link_ops
->get_link_net
)
104 return netdev
->rtnl_link_ops
->get_link_net(netdev
);
108 * batadv_mutual_parents - check if two devices are each others parent
110 * @net1: 1st devices netns
112 * @net2: 2nd devices netns
114 * veth devices come in pairs and each is the parent of the other!
116 * Return: true if the devices are each others parent, otherwise false
118 static bool batadv_mutual_parents(const struct net_device
*dev1
,
119 const struct net
*net1
,
120 const struct net_device
*dev2
,
121 const struct net
*net2
)
123 int dev1_parent_iflink
= dev_get_iflink(dev1
);
124 int dev2_parent_iflink
= dev_get_iflink(dev2
);
125 const struct net
*dev1_parent_net
;
126 const struct net
*dev2_parent_net
;
128 dev1_parent_net
= batadv_getlink_net(dev1
, net1
);
129 dev2_parent_net
= batadv_getlink_net(dev2
, net2
);
131 if (!dev1_parent_iflink
|| !dev2_parent_iflink
)
134 return (dev1_parent_iflink
== dev2
->ifindex
) &&
135 (dev2_parent_iflink
== dev1
->ifindex
) &&
136 net_eq(dev1_parent_net
, net2
) &&
137 net_eq(dev2_parent_net
, net1
);
141 * batadv_is_on_batman_iface - check if a device is a batman iface descendant
142 * @net_dev: the device to check
144 * If the user creates any virtual device on top of a batman-adv interface, it
145 * is important to prevent this new interface to be used to create a new mesh
146 * network (this behaviour would lead to a batman-over-batman configuration).
147 * This function recursively checks all the fathers of the device passed as
148 * argument looking for a batman-adv soft interface.
150 * Return: true if the device is descendant of a batman-adv mesh interface (or
151 * if it is a batman-adv interface itself), false otherwise
153 static bool batadv_is_on_batman_iface(const struct net_device
*net_dev
)
155 struct net
*net
= dev_net(net_dev
);
156 struct net_device
*parent_dev
;
157 const struct net
*parent_net
;
160 /* check if this is a batman-adv mesh interface */
161 if (batadv_softif_is_valid(net_dev
))
164 /* no more parents..stop recursion */
165 if (dev_get_iflink(net_dev
) == 0 ||
166 dev_get_iflink(net_dev
) == net_dev
->ifindex
)
169 parent_net
= batadv_getlink_net(net_dev
, net
);
171 /* recurse over the parent device */
172 parent_dev
= __dev_get_by_index((struct net
*)parent_net
,
173 dev_get_iflink(net_dev
));
174 /* if we got a NULL parent_dev there is something broken.. */
175 if (WARN(!parent_dev
, "Cannot find parent device"))
178 if (batadv_mutual_parents(net_dev
, net
, parent_dev
, parent_net
))
181 ret
= batadv_is_on_batman_iface(parent_dev
);
186 static bool batadv_is_valid_iface(const struct net_device
*net_dev
)
188 if (net_dev
->flags
& IFF_LOOPBACK
)
191 if (net_dev
->type
!= ARPHRD_ETHER
)
194 if (net_dev
->addr_len
!= ETH_ALEN
)
197 /* no batman over batman */
198 if (batadv_is_on_batman_iface(net_dev
))
205 * batadv_is_wifi_netdev - check if the given net_device struct is a wifi
207 * @net_device: the device to check
209 * Return: true if the net device is a 802.11 wireless device, false otherwise.
211 bool batadv_is_wifi_netdev(struct net_device
*net_device
)
216 #ifdef CONFIG_WIRELESS_EXT
217 /* pre-cfg80211 drivers have to implement WEXT, so it is possible to
218 * check for wireless_handlers != NULL
220 if (net_device
->wireless_handlers
)
224 /* cfg80211 drivers have to set ieee80211_ptr */
225 if (net_device
->ieee80211_ptr
)
231 static struct batadv_hard_iface
*
232 batadv_hardif_get_active(const struct net_device
*soft_iface
)
234 struct batadv_hard_iface
*hard_iface
;
237 list_for_each_entry_rcu(hard_iface
, &batadv_hardif_list
, list
) {
238 if (hard_iface
->soft_iface
!= soft_iface
)
241 if (hard_iface
->if_status
== BATADV_IF_ACTIVE
&&
242 kref_get_unless_zero(&hard_iface
->refcount
))
253 static void batadv_primary_if_update_addr(struct batadv_priv
*bat_priv
,
254 struct batadv_hard_iface
*oldif
)
256 struct batadv_hard_iface
*primary_if
;
258 primary_if
= batadv_primary_if_get_selected(bat_priv
);
262 batadv_dat_init_own_addr(bat_priv
, primary_if
);
263 batadv_bla_update_orig_address(bat_priv
, primary_if
, oldif
);
266 batadv_hardif_put(primary_if
);
269 static void batadv_primary_if_select(struct batadv_priv
*bat_priv
,
270 struct batadv_hard_iface
*new_hard_iface
)
272 struct batadv_hard_iface
*curr_hard_iface
;
277 kref_get(&new_hard_iface
->refcount
);
279 curr_hard_iface
= rcu_dereference_protected(bat_priv
->primary_if
, 1);
280 rcu_assign_pointer(bat_priv
->primary_if
, new_hard_iface
);
285 bat_priv
->algo_ops
->iface
.primary_set(new_hard_iface
);
286 batadv_primary_if_update_addr(bat_priv
, curr_hard_iface
);
290 batadv_hardif_put(curr_hard_iface
);
294 batadv_hardif_is_iface_up(const struct batadv_hard_iface
*hard_iface
)
296 if (hard_iface
->net_dev
->flags
& IFF_UP
)
302 static void batadv_check_known_mac_addr(const struct net_device
*net_dev
)
304 const struct batadv_hard_iface
*hard_iface
;
307 list_for_each_entry_rcu(hard_iface
, &batadv_hardif_list
, list
) {
308 if ((hard_iface
->if_status
!= BATADV_IF_ACTIVE
) &&
309 (hard_iface
->if_status
!= BATADV_IF_TO_BE_ACTIVATED
))
312 if (hard_iface
->net_dev
== net_dev
)
315 if (!batadv_compare_eth(hard_iface
->net_dev
->dev_addr
,
319 pr_warn("The newly added mac address (%pM) already exists on: %s\n",
320 net_dev
->dev_addr
, hard_iface
->net_dev
->name
);
321 pr_warn("It is strongly recommended to keep mac addresses unique to avoid problems!\n");
327 * batadv_hardif_recalc_extra_skbroom() - Recalculate skbuff extra head/tailroom
328 * @soft_iface: netdev struct of the mesh interface
330 static void batadv_hardif_recalc_extra_skbroom(struct net_device
*soft_iface
)
332 const struct batadv_hard_iface
*hard_iface
;
333 unsigned short lower_header_len
= ETH_HLEN
;
334 unsigned short lower_headroom
= 0;
335 unsigned short lower_tailroom
= 0;
336 unsigned short needed_headroom
;
339 list_for_each_entry_rcu(hard_iface
, &batadv_hardif_list
, list
) {
340 if (hard_iface
->if_status
== BATADV_IF_NOT_IN_USE
)
343 if (hard_iface
->soft_iface
!= soft_iface
)
346 lower_header_len
= max_t(unsigned short, lower_header_len
,
347 hard_iface
->net_dev
->hard_header_len
);
349 lower_headroom
= max_t(unsigned short, lower_headroom
,
350 hard_iface
->net_dev
->needed_headroom
);
352 lower_tailroom
= max_t(unsigned short, lower_tailroom
,
353 hard_iface
->net_dev
->needed_tailroom
);
357 needed_headroom
= lower_headroom
+ (lower_header_len
- ETH_HLEN
);
358 needed_headroom
+= batadv_max_header_len();
360 soft_iface
->needed_headroom
= needed_headroom
;
361 soft_iface
->needed_tailroom
= lower_tailroom
;
364 int batadv_hardif_min_mtu(struct net_device
*soft_iface
)
366 struct batadv_priv
*bat_priv
= netdev_priv(soft_iface
);
367 const struct batadv_hard_iface
*hard_iface
;
368 int min_mtu
= INT_MAX
;
371 list_for_each_entry_rcu(hard_iface
, &batadv_hardif_list
, list
) {
372 if ((hard_iface
->if_status
!= BATADV_IF_ACTIVE
) &&
373 (hard_iface
->if_status
!= BATADV_IF_TO_BE_ACTIVATED
))
376 if (hard_iface
->soft_iface
!= soft_iface
)
379 min_mtu
= min_t(int, hard_iface
->net_dev
->mtu
, min_mtu
);
383 if (atomic_read(&bat_priv
->fragmentation
) == 0)
386 /* with fragmentation enabled the maximum size of internally generated
387 * packets such as translation table exchanges or tvlv containers, etc
388 * has to be calculated
390 min_mtu
= min_t(int, min_mtu
, BATADV_FRAG_MAX_FRAG_SIZE
);
391 min_mtu
-= sizeof(struct batadv_frag_packet
);
392 min_mtu
*= BATADV_FRAG_MAX_FRAGMENTS
;
395 /* report to the other components the maximum amount of bytes that
396 * batman-adv can send over the wire (without considering the payload
397 * overhead). For example, this value is used by TT to compute the
398 * maximum local table table size
400 atomic_set(&bat_priv
->packet_size_max
, min_mtu
);
402 /* the real soft-interface MTU is computed by removing the payload
403 * overhead from the maximum amount of bytes that was just computed.
405 * However batman-adv does not support MTUs bigger than ETH_DATA_LEN
407 return min_t(int, min_mtu
- batadv_max_header_len(), ETH_DATA_LEN
);
410 /* adjusts the MTU if a new interface with a smaller MTU appeared. */
411 void batadv_update_min_mtu(struct net_device
*soft_iface
)
413 soft_iface
->mtu
= batadv_hardif_min_mtu(soft_iface
);
415 /* Check if the local translate table should be cleaned up to match a
416 * new (and smaller) MTU.
418 batadv_tt_local_resize_to_mtu(soft_iface
);
422 batadv_hardif_activate_interface(struct batadv_hard_iface
*hard_iface
)
424 struct batadv_priv
*bat_priv
;
425 struct batadv_hard_iface
*primary_if
= NULL
;
427 if (hard_iface
->if_status
!= BATADV_IF_INACTIVE
)
430 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
432 bat_priv
->algo_ops
->iface
.update_mac(hard_iface
);
433 hard_iface
->if_status
= BATADV_IF_TO_BE_ACTIVATED
;
435 /* the first active interface becomes our primary interface or
436 * the next active interface after the old primary interface was removed
438 primary_if
= batadv_primary_if_get_selected(bat_priv
);
440 batadv_primary_if_select(bat_priv
, hard_iface
);
442 batadv_info(hard_iface
->soft_iface
, "Interface activated: %s\n",
443 hard_iface
->net_dev
->name
);
445 batadv_update_min_mtu(hard_iface
->soft_iface
);
447 if (bat_priv
->algo_ops
->iface
.activate
)
448 bat_priv
->algo_ops
->iface
.activate(hard_iface
);
452 batadv_hardif_put(primary_if
);
456 batadv_hardif_deactivate_interface(struct batadv_hard_iface
*hard_iface
)
458 if ((hard_iface
->if_status
!= BATADV_IF_ACTIVE
) &&
459 (hard_iface
->if_status
!= BATADV_IF_TO_BE_ACTIVATED
))
462 hard_iface
->if_status
= BATADV_IF_INACTIVE
;
464 batadv_info(hard_iface
->soft_iface
, "Interface deactivated: %s\n",
465 hard_iface
->net_dev
->name
);
467 batadv_update_min_mtu(hard_iface
->soft_iface
);
471 * batadv_master_del_slave - remove hard_iface from the current master interface
472 * @slave: the interface enslaved in another master
473 * @master: the master from which slave has to be removed
475 * Invoke ndo_del_slave on master passing slave as argument. In this way slave
476 * is free'd and master can correctly change its internal state.
478 * Return: 0 on success, a negative value representing the error otherwise
480 static int batadv_master_del_slave(struct batadv_hard_iface
*slave
,
481 struct net_device
*master
)
489 if (master
->netdev_ops
->ndo_del_slave
)
490 ret
= master
->netdev_ops
->ndo_del_slave(master
, slave
->net_dev
);
495 int batadv_hardif_enable_interface(struct batadv_hard_iface
*hard_iface
,
496 struct net
*net
, const char *iface_name
)
498 struct batadv_priv
*bat_priv
;
499 struct net_device
*soft_iface
, *master
;
500 __be16 ethertype
= htons(ETH_P_BATMAN
);
501 int max_header_len
= batadv_max_header_len();
504 if (hard_iface
->if_status
!= BATADV_IF_NOT_IN_USE
)
507 kref_get(&hard_iface
->refcount
);
509 soft_iface
= dev_get_by_name(net
, iface_name
);
512 soft_iface
= batadv_softif_create(net
, iface_name
);
519 /* dev_get_by_name() increases the reference counter for us */
520 dev_hold(soft_iface
);
523 if (!batadv_softif_is_valid(soft_iface
)) {
524 pr_err("Can't create batman mesh interface %s: already exists as regular interface\n",
530 /* check if the interface is enslaved in another virtual one and
531 * in that case unlink it first
533 master
= netdev_master_upper_dev_get(hard_iface
->net_dev
);
534 ret
= batadv_master_del_slave(hard_iface
, master
);
538 hard_iface
->soft_iface
= soft_iface
;
539 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
541 ret
= netdev_master_upper_dev_link(hard_iface
->net_dev
,
542 soft_iface
, NULL
, NULL
);
546 ret
= bat_priv
->algo_ops
->iface
.enable(hard_iface
);
550 hard_iface
->if_num
= bat_priv
->num_ifaces
;
551 bat_priv
->num_ifaces
++;
552 hard_iface
->if_status
= BATADV_IF_INACTIVE
;
553 ret
= batadv_orig_hash_add_if(hard_iface
, bat_priv
->num_ifaces
);
555 bat_priv
->algo_ops
->iface
.disable(hard_iface
);
556 bat_priv
->num_ifaces
--;
557 hard_iface
->if_status
= BATADV_IF_NOT_IN_USE
;
561 kref_get(&hard_iface
->refcount
);
562 hard_iface
->batman_adv_ptype
.type
= ethertype
;
563 hard_iface
->batman_adv_ptype
.func
= batadv_batman_skb_recv
;
564 hard_iface
->batman_adv_ptype
.dev
= hard_iface
->net_dev
;
565 dev_add_pack(&hard_iface
->batman_adv_ptype
);
567 batadv_info(hard_iface
->soft_iface
, "Adding interface: %s\n",
568 hard_iface
->net_dev
->name
);
570 if (atomic_read(&bat_priv
->fragmentation
) &&
571 hard_iface
->net_dev
->mtu
< ETH_DATA_LEN
+ max_header_len
)
572 batadv_info(hard_iface
->soft_iface
,
573 "The MTU of interface %s is too small (%i) to handle the transport of batman-adv packets. Packets going over this interface will be fragmented on layer2 which could impact the performance. Setting the MTU to %i would solve the problem.\n",
574 hard_iface
->net_dev
->name
, hard_iface
->net_dev
->mtu
,
575 ETH_DATA_LEN
+ max_header_len
);
577 if (!atomic_read(&bat_priv
->fragmentation
) &&
578 hard_iface
->net_dev
->mtu
< ETH_DATA_LEN
+ max_header_len
)
579 batadv_info(hard_iface
->soft_iface
,
580 "The MTU of interface %s is too small (%i) to handle the transport of batman-adv packets. If you experience problems getting traffic through try increasing the MTU to %i.\n",
581 hard_iface
->net_dev
->name
, hard_iface
->net_dev
->mtu
,
582 ETH_DATA_LEN
+ max_header_len
);
584 if (batadv_hardif_is_iface_up(hard_iface
))
585 batadv_hardif_activate_interface(hard_iface
);
587 batadv_err(hard_iface
->soft_iface
,
588 "Not using interface %s (retrying later): interface not active\n",
589 hard_iface
->net_dev
->name
);
591 batadv_hardif_recalc_extra_skbroom(soft_iface
);
597 netdev_upper_dev_unlink(hard_iface
->net_dev
, soft_iface
);
599 hard_iface
->soft_iface
= NULL
;
602 batadv_hardif_put(hard_iface
);
606 void batadv_hardif_disable_interface(struct batadv_hard_iface
*hard_iface
,
607 enum batadv_hard_if_cleanup autodel
)
609 struct batadv_priv
*bat_priv
= netdev_priv(hard_iface
->soft_iface
);
610 struct batadv_hard_iface
*primary_if
= NULL
;
612 batadv_hardif_deactivate_interface(hard_iface
);
614 if (hard_iface
->if_status
!= BATADV_IF_INACTIVE
)
617 batadv_info(hard_iface
->soft_iface
, "Removing interface: %s\n",
618 hard_iface
->net_dev
->name
);
619 dev_remove_pack(&hard_iface
->batman_adv_ptype
);
620 batadv_hardif_put(hard_iface
);
622 bat_priv
->num_ifaces
--;
623 batadv_orig_hash_del_if(hard_iface
, bat_priv
->num_ifaces
);
625 primary_if
= batadv_primary_if_get_selected(bat_priv
);
626 if (hard_iface
== primary_if
) {
627 struct batadv_hard_iface
*new_if
;
629 new_if
= batadv_hardif_get_active(hard_iface
->soft_iface
);
630 batadv_primary_if_select(bat_priv
, new_if
);
633 batadv_hardif_put(new_if
);
636 bat_priv
->algo_ops
->iface
.disable(hard_iface
);
637 hard_iface
->if_status
= BATADV_IF_NOT_IN_USE
;
639 /* delete all references to this hard_iface */
640 batadv_purge_orig_ref(bat_priv
);
641 batadv_purge_outstanding_packets(bat_priv
, hard_iface
);
642 dev_put(hard_iface
->soft_iface
);
644 netdev_upper_dev_unlink(hard_iface
->net_dev
, hard_iface
->soft_iface
);
645 batadv_hardif_recalc_extra_skbroom(hard_iface
->soft_iface
);
647 /* nobody uses this interface anymore */
648 if (!bat_priv
->num_ifaces
) {
649 batadv_gw_check_client_stop(bat_priv
);
651 if (autodel
== BATADV_IF_CLEANUP_AUTO
)
652 batadv_softif_destroy_sysfs(hard_iface
->soft_iface
);
655 hard_iface
->soft_iface
= NULL
;
656 batadv_hardif_put(hard_iface
);
660 batadv_hardif_put(primary_if
);
663 static struct batadv_hard_iface
*
664 batadv_hardif_add_interface(struct net_device
*net_dev
)
666 struct batadv_hard_iface
*hard_iface
;
671 if (!batadv_is_valid_iface(net_dev
))
676 hard_iface
= kzalloc(sizeof(*hard_iface
), GFP_ATOMIC
);
680 ret
= batadv_sysfs_add_hardif(&hard_iface
->hardif_obj
, net_dev
);
684 hard_iface
->if_num
= -1;
685 hard_iface
->net_dev
= net_dev
;
686 hard_iface
->soft_iface
= NULL
;
687 hard_iface
->if_status
= BATADV_IF_NOT_IN_USE
;
689 ret
= batadv_debugfs_add_hardif(hard_iface
);
693 INIT_LIST_HEAD(&hard_iface
->list
);
694 INIT_HLIST_HEAD(&hard_iface
->neigh_list
);
696 spin_lock_init(&hard_iface
->neigh_list_lock
);
697 kref_init(&hard_iface
->refcount
);
699 hard_iface
->num_bcasts
= BATADV_NUM_BCASTS_DEFAULT
;
700 if (batadv_is_wifi_netdev(net_dev
))
701 hard_iface
->num_bcasts
= BATADV_NUM_BCASTS_WIRELESS
;
703 batadv_v_hardif_init(hard_iface
);
705 batadv_check_known_mac_addr(hard_iface
->net_dev
);
706 kref_get(&hard_iface
->refcount
);
707 list_add_tail_rcu(&hard_iface
->list
, &batadv_hardif_list
);
712 batadv_sysfs_del_hardif(&hard_iface
->hardif_obj
);
721 static void batadv_hardif_remove_interface(struct batadv_hard_iface
*hard_iface
)
725 /* first deactivate interface */
726 if (hard_iface
->if_status
!= BATADV_IF_NOT_IN_USE
)
727 batadv_hardif_disable_interface(hard_iface
,
728 BATADV_IF_CLEANUP_KEEP
);
730 if (hard_iface
->if_status
!= BATADV_IF_NOT_IN_USE
)
733 hard_iface
->if_status
= BATADV_IF_TO_BE_REMOVED
;
734 batadv_debugfs_del_hardif(hard_iface
);
735 batadv_sysfs_del_hardif(&hard_iface
->hardif_obj
);
736 batadv_hardif_put(hard_iface
);
739 void batadv_hardif_remove_interfaces(void)
741 struct batadv_hard_iface
*hard_iface
, *hard_iface_tmp
;
744 list_for_each_entry_safe(hard_iface
, hard_iface_tmp
,
745 &batadv_hardif_list
, list
) {
746 list_del_rcu(&hard_iface
->list
);
747 batadv_hardif_remove_interface(hard_iface
);
752 static int batadv_hard_if_event(struct notifier_block
*this,
753 unsigned long event
, void *ptr
)
755 struct net_device
*net_dev
= netdev_notifier_info_to_dev(ptr
);
756 struct batadv_hard_iface
*hard_iface
;
757 struct batadv_hard_iface
*primary_if
= NULL
;
758 struct batadv_priv
*bat_priv
;
760 if (batadv_softif_is_valid(net_dev
) && event
== NETDEV_REGISTER
) {
761 batadv_sysfs_add_meshif(net_dev
);
762 bat_priv
= netdev_priv(net_dev
);
763 batadv_softif_create_vlan(bat_priv
, BATADV_NO_FLAGS
);
767 hard_iface
= batadv_hardif_get_by_netdev(net_dev
);
768 if (!hard_iface
&& (event
== NETDEV_REGISTER
||
769 event
== NETDEV_POST_TYPE_CHANGE
))
770 hard_iface
= batadv_hardif_add_interface(net_dev
);
777 batadv_hardif_activate_interface(hard_iface
);
779 case NETDEV_GOING_DOWN
:
781 batadv_hardif_deactivate_interface(hard_iface
);
783 case NETDEV_UNREGISTER
:
784 case NETDEV_PRE_TYPE_CHANGE
:
785 list_del_rcu(&hard_iface
->list
);
787 batadv_hardif_remove_interface(hard_iface
);
789 case NETDEV_CHANGEMTU
:
790 if (hard_iface
->soft_iface
)
791 batadv_update_min_mtu(hard_iface
->soft_iface
);
793 case NETDEV_CHANGEADDR
:
794 if (hard_iface
->if_status
== BATADV_IF_NOT_IN_USE
)
797 batadv_check_known_mac_addr(hard_iface
->net_dev
);
799 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
800 bat_priv
->algo_ops
->iface
.update_mac(hard_iface
);
802 primary_if
= batadv_primary_if_get_selected(bat_priv
);
806 if (hard_iface
== primary_if
)
807 batadv_primary_if_update_addr(bat_priv
, NULL
);
814 batadv_hardif_put(hard_iface
);
817 batadv_hardif_put(primary_if
);
821 struct notifier_block batadv_hard_if_notifier
= {
822 .notifier_call
= batadv_hard_if_event
,