2 * Copyright (C) 2007-2011 B.A.T.M.A.N. contributors:
4 * Marek Lindner, Simon Wunderlich
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, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 #include "hard-interface.h"
24 #include "soft-interface.h"
26 #include "translation-table.h"
28 #include "bat_sysfs.h"
29 #include "originator.h"
32 #include <linux/if_arp.h>
35 static int batman_skb_recv(struct sk_buff
*skb
,
36 struct net_device
*dev
,
37 struct packet_type
*ptype
,
38 struct net_device
*orig_dev
);
40 void hardif_free_rcu(struct rcu_head
*rcu
)
42 struct hard_iface
*hard_iface
;
44 hard_iface
= container_of(rcu
, struct hard_iface
, rcu
);
45 dev_put(hard_iface
->net_dev
);
49 struct hard_iface
*hardif_get_by_netdev(const struct net_device
*net_dev
)
51 struct hard_iface
*hard_iface
;
54 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
55 if (hard_iface
->net_dev
== net_dev
&&
56 atomic_inc_not_zero(&hard_iface
->refcount
))
67 static int is_valid_iface(const struct net_device
*net_dev
)
69 if (net_dev
->flags
& IFF_LOOPBACK
)
72 if (net_dev
->type
!= ARPHRD_ETHER
)
75 if (net_dev
->addr_len
!= ETH_ALEN
)
78 /* no batman over batman */
79 if (softif_is_valid(net_dev
))
82 /* Device is being bridged */
83 /* if (net_dev->priv_flags & IFF_BRIDGE_PORT)
89 static struct hard_iface
*hardif_get_active(const struct net_device
*soft_iface
)
91 struct hard_iface
*hard_iface
;
94 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
95 if (hard_iface
->soft_iface
!= soft_iface
)
98 if (hard_iface
->if_status
== IF_ACTIVE
&&
99 atomic_inc_not_zero(&hard_iface
->refcount
))
110 static void primary_if_update_addr(struct bat_priv
*bat_priv
)
112 struct vis_packet
*vis_packet
;
113 struct hard_iface
*primary_if
;
115 primary_if
= primary_if_get_selected(bat_priv
);
119 vis_packet
= (struct vis_packet
*)
120 bat_priv
->my_vis_info
->skb_packet
->data
;
121 memcpy(vis_packet
->vis_orig
, primary_if
->net_dev
->dev_addr
, ETH_ALEN
);
122 memcpy(vis_packet
->sender_orig
,
123 primary_if
->net_dev
->dev_addr
, ETH_ALEN
);
127 hardif_free_ref(primary_if
);
130 static void primary_if_select(struct bat_priv
*bat_priv
,
131 struct hard_iface
*new_hard_iface
)
133 struct hard_iface
*curr_hard_iface
;
134 struct batman_packet
*batman_packet
;
138 if (new_hard_iface
&& !atomic_inc_not_zero(&new_hard_iface
->refcount
))
139 new_hard_iface
= NULL
;
141 curr_hard_iface
= rcu_dereference_protected(bat_priv
->primary_if
, 1);
142 rcu_assign_pointer(bat_priv
->primary_if
, new_hard_iface
);
145 hardif_free_ref(curr_hard_iface
);
150 batman_packet
= (struct batman_packet
*)(new_hard_iface
->packet_buff
);
151 batman_packet
->flags
= PRIMARIES_FIRST_HOP
;
152 batman_packet
->ttl
= TTL
;
154 primary_if_update_addr(bat_priv
);
157 * hacky trick to make sure that we send the TT information via
158 * our new primary interface
160 atomic_set(&bat_priv
->tt_local_changed
, 1);
163 static bool hardif_is_iface_up(const struct hard_iface
*hard_iface
)
165 if (hard_iface
->net_dev
->flags
& IFF_UP
)
171 static void update_mac_addresses(struct hard_iface
*hard_iface
)
173 memcpy(((struct batman_packet
*)(hard_iface
->packet_buff
))->orig
,
174 hard_iface
->net_dev
->dev_addr
, ETH_ALEN
);
175 memcpy(((struct batman_packet
*)(hard_iface
->packet_buff
))->prev_sender
,
176 hard_iface
->net_dev
->dev_addr
, ETH_ALEN
);
179 static void check_known_mac_addr(const struct net_device
*net_dev
)
181 const struct hard_iface
*hard_iface
;
184 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
185 if ((hard_iface
->if_status
!= IF_ACTIVE
) &&
186 (hard_iface
->if_status
!= IF_TO_BE_ACTIVATED
))
189 if (hard_iface
->net_dev
== net_dev
)
192 if (!compare_eth(hard_iface
->net_dev
->dev_addr
,
196 pr_warning("The newly added mac address (%pM) already exists "
197 "on: %s\n", net_dev
->dev_addr
,
198 hard_iface
->net_dev
->name
);
199 pr_warning("It is strongly recommended to keep mac addresses "
200 "unique to avoid problems!\n");
205 int hardif_min_mtu(struct net_device
*soft_iface
)
207 const struct bat_priv
*bat_priv
= netdev_priv(soft_iface
);
208 const struct hard_iface
*hard_iface
;
209 /* allow big frames if all devices are capable to do so
210 * (have MTU > 1500 + BAT_HEADER_LEN) */
211 int min_mtu
= ETH_DATA_LEN
;
213 if (atomic_read(&bat_priv
->fragmentation
))
217 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
218 if ((hard_iface
->if_status
!= IF_ACTIVE
) &&
219 (hard_iface
->if_status
!= IF_TO_BE_ACTIVATED
))
222 if (hard_iface
->soft_iface
!= soft_iface
)
225 min_mtu
= min_t(int, hard_iface
->net_dev
->mtu
- BAT_HEADER_LEN
,
233 /* adjusts the MTU if a new interface with a smaller MTU appeared. */
234 void update_min_mtu(struct net_device
*soft_iface
)
238 min_mtu
= hardif_min_mtu(soft_iface
);
239 if (soft_iface
->mtu
!= min_mtu
)
240 soft_iface
->mtu
= min_mtu
;
243 static void hardif_activate_interface(struct hard_iface
*hard_iface
)
245 struct bat_priv
*bat_priv
;
246 struct hard_iface
*primary_if
= NULL
;
248 if (hard_iface
->if_status
!= IF_INACTIVE
)
251 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
253 update_mac_addresses(hard_iface
);
254 hard_iface
->if_status
= IF_TO_BE_ACTIVATED
;
257 * the first active interface becomes our primary interface or
258 * the next active interface after the old primay interface was removed
260 primary_if
= primary_if_get_selected(bat_priv
);
262 primary_if_select(bat_priv
, hard_iface
);
264 bat_info(hard_iface
->soft_iface
, "Interface activated: %s\n",
265 hard_iface
->net_dev
->name
);
267 update_min_mtu(hard_iface
->soft_iface
);
271 hardif_free_ref(primary_if
);
274 static void hardif_deactivate_interface(struct hard_iface
*hard_iface
)
276 if ((hard_iface
->if_status
!= IF_ACTIVE
) &&
277 (hard_iface
->if_status
!= IF_TO_BE_ACTIVATED
))
280 hard_iface
->if_status
= IF_INACTIVE
;
282 bat_info(hard_iface
->soft_iface
, "Interface deactivated: %s\n",
283 hard_iface
->net_dev
->name
);
285 update_min_mtu(hard_iface
->soft_iface
);
288 int hardif_enable_interface(struct hard_iface
*hard_iface
,
289 const char *iface_name
)
291 struct bat_priv
*bat_priv
;
292 struct batman_packet
*batman_packet
;
293 struct net_device
*soft_iface
;
296 if (hard_iface
->if_status
!= IF_NOT_IN_USE
)
299 if (!atomic_inc_not_zero(&hard_iface
->refcount
))
302 soft_iface
= dev_get_by_name(&init_net
, iface_name
);
305 soft_iface
= softif_create(iface_name
);
312 /* dev_get_by_name() increases the reference counter for us */
313 dev_hold(soft_iface
);
316 if (!softif_is_valid(soft_iface
)) {
317 pr_err("Can't create batman mesh interface %s: "
318 "already exists as regular interface\n",
325 hard_iface
->soft_iface
= soft_iface
;
326 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
327 hard_iface
->packet_len
= BAT_PACKET_LEN
;
328 hard_iface
->packet_buff
= kmalloc(hard_iface
->packet_len
, GFP_ATOMIC
);
330 if (!hard_iface
->packet_buff
) {
331 bat_err(hard_iface
->soft_iface
, "Can't add interface packet "
332 "(%s): out of memory\n", hard_iface
->net_dev
->name
);
337 batman_packet
= (struct batman_packet
*)(hard_iface
->packet_buff
);
338 batman_packet
->packet_type
= BAT_PACKET
;
339 batman_packet
->version
= COMPAT_VERSION
;
340 batman_packet
->flags
= 0;
341 batman_packet
->ttl
= 2;
342 batman_packet
->tq
= TQ_MAX_VALUE
;
343 batman_packet
->num_tt
= 0;
345 hard_iface
->if_num
= bat_priv
->num_ifaces
;
346 bat_priv
->num_ifaces
++;
347 hard_iface
->if_status
= IF_INACTIVE
;
348 orig_hash_add_if(hard_iface
, bat_priv
->num_ifaces
);
350 hard_iface
->batman_adv_ptype
.type
= __constant_htons(ETH_P_BATMAN
);
351 hard_iface
->batman_adv_ptype
.func
= batman_skb_recv
;
352 hard_iface
->batman_adv_ptype
.dev
= hard_iface
->net_dev
;
353 dev_add_pack(&hard_iface
->batman_adv_ptype
);
355 atomic_set(&hard_iface
->seqno
, 1);
356 atomic_set(&hard_iface
->frag_seqno
, 1);
357 bat_info(hard_iface
->soft_iface
, "Adding interface: %s\n",
358 hard_iface
->net_dev
->name
);
360 if (atomic_read(&bat_priv
->fragmentation
) && hard_iface
->net_dev
->mtu
<
361 ETH_DATA_LEN
+ BAT_HEADER_LEN
)
362 bat_info(hard_iface
->soft_iface
,
363 "The MTU of interface %s is too small (%i) to handle "
364 "the transport of batman-adv packets. Packets going "
365 "over this interface will be fragmented on layer2 "
366 "which could impact the performance. Setting the MTU "
367 "to %zi would solve the problem.\n",
368 hard_iface
->net_dev
->name
, hard_iface
->net_dev
->mtu
,
369 ETH_DATA_LEN
+ BAT_HEADER_LEN
);
371 if (!atomic_read(&bat_priv
->fragmentation
) && hard_iface
->net_dev
->mtu
<
372 ETH_DATA_LEN
+ BAT_HEADER_LEN
)
373 bat_info(hard_iface
->soft_iface
,
374 "The MTU of interface %s is too small (%i) to handle "
375 "the transport of batman-adv packets. If you experience"
376 " problems getting traffic through try increasing the "
378 hard_iface
->net_dev
->name
, hard_iface
->net_dev
->mtu
,
379 ETH_DATA_LEN
+ BAT_HEADER_LEN
);
381 if (hardif_is_iface_up(hard_iface
))
382 hardif_activate_interface(hard_iface
);
384 bat_err(hard_iface
->soft_iface
, "Not using interface %s "
385 "(retrying later): interface not active\n",
386 hard_iface
->net_dev
->name
);
388 /* begin scheduling originator messages on that interface */
389 schedule_own_packet(hard_iface
);
395 hardif_free_ref(hard_iface
);
399 void hardif_disable_interface(struct hard_iface
*hard_iface
)
401 struct bat_priv
*bat_priv
= netdev_priv(hard_iface
->soft_iface
);
402 struct hard_iface
*primary_if
= NULL
;
404 if (hard_iface
->if_status
== IF_ACTIVE
)
405 hardif_deactivate_interface(hard_iface
);
407 if (hard_iface
->if_status
!= IF_INACTIVE
)
410 bat_info(hard_iface
->soft_iface
, "Removing interface: %s\n",
411 hard_iface
->net_dev
->name
);
412 dev_remove_pack(&hard_iface
->batman_adv_ptype
);
414 bat_priv
->num_ifaces
--;
415 orig_hash_del_if(hard_iface
, bat_priv
->num_ifaces
);
417 primary_if
= primary_if_get_selected(bat_priv
);
418 if (hard_iface
== primary_if
) {
419 struct hard_iface
*new_if
;
421 new_if
= hardif_get_active(hard_iface
->soft_iface
);
422 primary_if_select(bat_priv
, new_if
);
425 hardif_free_ref(new_if
);
428 kfree(hard_iface
->packet_buff
);
429 hard_iface
->packet_buff
= NULL
;
430 hard_iface
->if_status
= IF_NOT_IN_USE
;
432 /* delete all references to this hard_iface */
433 purge_orig_ref(bat_priv
);
434 purge_outstanding_packets(bat_priv
, hard_iface
);
435 dev_put(hard_iface
->soft_iface
);
437 /* nobody uses this interface anymore */
438 if (!bat_priv
->num_ifaces
)
439 softif_destroy(hard_iface
->soft_iface
);
441 hard_iface
->soft_iface
= NULL
;
442 hardif_free_ref(hard_iface
);
446 hardif_free_ref(primary_if
);
449 static struct hard_iface
*hardif_add_interface(struct net_device
*net_dev
)
451 struct hard_iface
*hard_iface
;
456 ret
= is_valid_iface(net_dev
);
462 hard_iface
= kmalloc(sizeof(*hard_iface
), GFP_ATOMIC
);
464 pr_err("Can't add interface (%s): out of memory\n",
469 ret
= sysfs_add_hardif(&hard_iface
->hardif_obj
, net_dev
);
473 hard_iface
->if_num
= -1;
474 hard_iface
->net_dev
= net_dev
;
475 hard_iface
->soft_iface
= NULL
;
476 hard_iface
->if_status
= IF_NOT_IN_USE
;
477 INIT_LIST_HEAD(&hard_iface
->list
);
478 /* extra reference for return */
479 atomic_set(&hard_iface
->refcount
, 2);
481 check_known_mac_addr(hard_iface
->net_dev
);
482 list_add_tail_rcu(&hard_iface
->list
, &hardif_list
);
494 static void hardif_remove_interface(struct hard_iface
*hard_iface
)
498 /* first deactivate interface */
499 if (hard_iface
->if_status
!= IF_NOT_IN_USE
)
500 hardif_disable_interface(hard_iface
);
502 if (hard_iface
->if_status
!= IF_NOT_IN_USE
)
505 hard_iface
->if_status
= IF_TO_BE_REMOVED
;
506 sysfs_del_hardif(&hard_iface
->hardif_obj
);
507 hardif_free_ref(hard_iface
);
510 void hardif_remove_interfaces(void)
512 struct hard_iface
*hard_iface
, *hard_iface_tmp
;
515 list_for_each_entry_safe(hard_iface
, hard_iface_tmp
,
516 &hardif_list
, list
) {
517 list_del_rcu(&hard_iface
->list
);
518 hardif_remove_interface(hard_iface
);
523 static int hard_if_event(struct notifier_block
*this,
524 unsigned long event
, void *ptr
)
526 struct net_device
*net_dev
= ptr
;
527 struct hard_iface
*hard_iface
= hardif_get_by_netdev(net_dev
);
528 struct hard_iface
*primary_if
= NULL
;
529 struct bat_priv
*bat_priv
;
531 if (!hard_iface
&& event
== NETDEV_REGISTER
)
532 hard_iface
= hardif_add_interface(net_dev
);
539 hardif_activate_interface(hard_iface
);
541 case NETDEV_GOING_DOWN
:
543 hardif_deactivate_interface(hard_iface
);
545 case NETDEV_UNREGISTER
:
546 list_del_rcu(&hard_iface
->list
);
548 hardif_remove_interface(hard_iface
);
550 case NETDEV_CHANGEMTU
:
551 if (hard_iface
->soft_iface
)
552 update_min_mtu(hard_iface
->soft_iface
);
554 case NETDEV_CHANGEADDR
:
555 if (hard_iface
->if_status
== IF_NOT_IN_USE
)
558 check_known_mac_addr(hard_iface
->net_dev
);
559 update_mac_addresses(hard_iface
);
561 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
562 primary_if
= primary_if_get_selected(bat_priv
);
566 if (hard_iface
== primary_if
)
567 primary_if_update_addr(bat_priv
);
574 hardif_free_ref(hard_iface
);
577 hardif_free_ref(primary_if
);
581 /* receive a packet with the batman ethertype coming on a hard
583 static int batman_skb_recv(struct sk_buff
*skb
, struct net_device
*dev
,
584 struct packet_type
*ptype
,
585 struct net_device
*orig_dev
)
587 struct bat_priv
*bat_priv
;
588 struct batman_packet
*batman_packet
;
589 struct hard_iface
*hard_iface
;
592 hard_iface
= container_of(ptype
, struct hard_iface
, batman_adv_ptype
);
593 skb
= skb_share_check(skb
, GFP_ATOMIC
);
595 /* skb was released by skb_share_check() */
599 /* packet should hold at least type and version */
600 if (unlikely(!pskb_may_pull(skb
, 2)))
603 /* expect a valid ethernet header here. */
604 if (unlikely(skb
->mac_len
!= sizeof(struct ethhdr
)
605 || !skb_mac_header(skb
)))
608 if (!hard_iface
->soft_iface
)
611 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
613 if (atomic_read(&bat_priv
->mesh_state
) != MESH_ACTIVE
)
616 /* discard frames on not active interfaces */
617 if (hard_iface
->if_status
!= IF_ACTIVE
)
620 batman_packet
= (struct batman_packet
*)skb
->data
;
622 if (batman_packet
->version
!= COMPAT_VERSION
) {
623 bat_dbg(DBG_BATMAN
, bat_priv
,
624 "Drop packet: incompatible batman version (%i)\n",
625 batman_packet
->version
);
629 /* all receive handlers return whether they received or reused
630 * the supplied skb. if not, we have to free the skb. */
632 switch (batman_packet
->packet_type
) {
633 /* batman originator packet */
635 ret
= recv_bat_packet(skb
, hard_iface
);
638 /* batman icmp packet */
640 ret
= recv_icmp_packet(skb
, hard_iface
);
645 ret
= recv_unicast_packet(skb
, hard_iface
);
648 /* fragmented unicast packet */
649 case BAT_UNICAST_FRAG
:
650 ret
= recv_ucast_frag_packet(skb
, hard_iface
);
653 /* broadcast packet */
655 ret
= recv_bcast_packet(skb
, hard_iface
);
660 ret
= recv_vis_packet(skb
, hard_iface
);
666 if (ret
== NET_RX_DROP
)
669 /* return NET_RX_SUCCESS in any case as we
670 * most probably dropped the packet for
671 * routing-logical reasons. */
673 return NET_RX_SUCCESS
;
681 struct notifier_block hard_if_notifier
= {
682 .notifier_call
= hard_if_event
,