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>
34 /* protect update critical side of hardif_list - but not the content */
35 static DEFINE_SPINLOCK(hardif_list_lock
);
38 static int batman_skb_recv(struct sk_buff
*skb
,
39 struct net_device
*dev
,
40 struct packet_type
*ptype
,
41 struct net_device
*orig_dev
);
43 void hardif_free_rcu(struct rcu_head
*rcu
)
45 struct hard_iface
*hard_iface
;
47 hard_iface
= container_of(rcu
, struct hard_iface
, rcu
);
48 dev_put(hard_iface
->net_dev
);
52 struct hard_iface
*hardif_get_by_netdev(struct net_device
*net_dev
)
54 struct hard_iface
*hard_iface
;
57 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
58 if (hard_iface
->net_dev
== net_dev
&&
59 atomic_inc_not_zero(&hard_iface
->refcount
))
70 static int is_valid_iface(struct net_device
*net_dev
)
72 if (net_dev
->flags
& IFF_LOOPBACK
)
75 if (net_dev
->type
!= ARPHRD_ETHER
)
78 if (net_dev
->addr_len
!= ETH_ALEN
)
81 /* no batman over batman */
82 if (softif_is_valid(net_dev
))
85 /* Device is being bridged */
86 /* if (net_dev->priv_flags & IFF_BRIDGE_PORT)
92 static struct hard_iface
*hardif_get_active(struct net_device
*soft_iface
)
94 struct hard_iface
*hard_iface
;
97 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
98 if (hard_iface
->soft_iface
!= soft_iface
)
101 if (hard_iface
->if_status
== IF_ACTIVE
&&
102 atomic_inc_not_zero(&hard_iface
->refcount
))
113 static void update_primary_addr(struct bat_priv
*bat_priv
)
115 struct vis_packet
*vis_packet
;
117 vis_packet
= (struct vis_packet
*)
118 bat_priv
->my_vis_info
->skb_packet
->data
;
119 memcpy(vis_packet
->vis_orig
,
120 bat_priv
->primary_if
->net_dev
->dev_addr
, ETH_ALEN
);
121 memcpy(vis_packet
->sender_orig
,
122 bat_priv
->primary_if
->net_dev
->dev_addr
, ETH_ALEN
);
125 static void set_primary_if(struct bat_priv
*bat_priv
,
126 struct hard_iface
*hard_iface
)
128 struct batman_packet
*batman_packet
;
129 struct hard_iface
*old_if
;
131 if (hard_iface
&& !atomic_inc_not_zero(&hard_iface
->refcount
))
134 old_if
= bat_priv
->primary_if
;
135 bat_priv
->primary_if
= hard_iface
;
138 hardif_free_ref(old_if
);
140 if (!bat_priv
->primary_if
)
143 batman_packet
= (struct batman_packet
*)(hard_iface
->packet_buff
);
144 batman_packet
->flags
= PRIMARIES_FIRST_HOP
;
145 batman_packet
->ttl
= TTL
;
147 update_primary_addr(bat_priv
);
150 * hacky trick to make sure that we send the HNA information via
151 * our new primary interface
153 atomic_set(&bat_priv
->hna_local_changed
, 1);
156 static bool hardif_is_iface_up(struct hard_iface
*hard_iface
)
158 if (hard_iface
->net_dev
->flags
& IFF_UP
)
164 static void update_mac_addresses(struct hard_iface
*hard_iface
)
166 memcpy(((struct batman_packet
*)(hard_iface
->packet_buff
))->orig
,
167 hard_iface
->net_dev
->dev_addr
, ETH_ALEN
);
168 memcpy(((struct batman_packet
*)(hard_iface
->packet_buff
))->prev_sender
,
169 hard_iface
->net_dev
->dev_addr
, ETH_ALEN
);
172 static void check_known_mac_addr(struct net_device
*net_dev
)
174 struct hard_iface
*hard_iface
;
177 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
178 if ((hard_iface
->if_status
!= IF_ACTIVE
) &&
179 (hard_iface
->if_status
!= IF_TO_BE_ACTIVATED
))
182 if (hard_iface
->net_dev
== net_dev
)
185 if (!compare_eth(hard_iface
->net_dev
->dev_addr
,
189 pr_warning("The newly added mac address (%pM) already exists "
190 "on: %s\n", net_dev
->dev_addr
,
191 hard_iface
->net_dev
->name
);
192 pr_warning("It is strongly recommended to keep mac addresses "
193 "unique to avoid problems!\n");
198 int hardif_min_mtu(struct net_device
*soft_iface
)
200 struct bat_priv
*bat_priv
= netdev_priv(soft_iface
);
201 struct hard_iface
*hard_iface
;
202 /* allow big frames if all devices are capable to do so
203 * (have MTU > 1500 + BAT_HEADER_LEN) */
204 int min_mtu
= ETH_DATA_LEN
;
206 if (atomic_read(&bat_priv
->fragmentation
))
210 list_for_each_entry_rcu(hard_iface
, &hardif_list
, list
) {
211 if ((hard_iface
->if_status
!= IF_ACTIVE
) &&
212 (hard_iface
->if_status
!= IF_TO_BE_ACTIVATED
))
215 if (hard_iface
->soft_iface
!= soft_iface
)
218 min_mtu
= min_t(int, hard_iface
->net_dev
->mtu
- BAT_HEADER_LEN
,
226 /* adjusts the MTU if a new interface with a smaller MTU appeared. */
227 void update_min_mtu(struct net_device
*soft_iface
)
231 min_mtu
= hardif_min_mtu(soft_iface
);
232 if (soft_iface
->mtu
!= min_mtu
)
233 soft_iface
->mtu
= min_mtu
;
236 static void hardif_activate_interface(struct hard_iface
*hard_iface
)
238 struct bat_priv
*bat_priv
;
240 if (hard_iface
->if_status
!= IF_INACTIVE
)
243 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
245 update_mac_addresses(hard_iface
);
246 hard_iface
->if_status
= IF_TO_BE_ACTIVATED
;
249 * the first active interface becomes our primary interface or
250 * the next active interface after the old primay interface was removed
252 if (!bat_priv
->primary_if
)
253 set_primary_if(bat_priv
, hard_iface
);
255 bat_info(hard_iface
->soft_iface
, "Interface activated: %s\n",
256 hard_iface
->net_dev
->name
);
258 update_min_mtu(hard_iface
->soft_iface
);
262 static void hardif_deactivate_interface(struct hard_iface
*hard_iface
)
264 if ((hard_iface
->if_status
!= IF_ACTIVE
) &&
265 (hard_iface
->if_status
!= IF_TO_BE_ACTIVATED
))
268 hard_iface
->if_status
= IF_INACTIVE
;
270 bat_info(hard_iface
->soft_iface
, "Interface deactivated: %s\n",
271 hard_iface
->net_dev
->name
);
273 update_min_mtu(hard_iface
->soft_iface
);
276 int hardif_enable_interface(struct hard_iface
*hard_iface
, char *iface_name
)
278 struct bat_priv
*bat_priv
;
279 struct batman_packet
*batman_packet
;
280 struct net_device
*soft_iface
;
283 if (hard_iface
->if_status
!= IF_NOT_IN_USE
)
286 if (!atomic_inc_not_zero(&hard_iface
->refcount
))
289 soft_iface
= dev_get_by_name(&init_net
, iface_name
);
292 soft_iface
= softif_create(iface_name
);
299 /* dev_get_by_name() increases the reference counter for us */
300 dev_hold(soft_iface
);
303 if (!softif_is_valid(soft_iface
)) {
304 pr_err("Can't create batman mesh interface %s: "
305 "already exists as regular interface\n",
312 hard_iface
->soft_iface
= soft_iface
;
313 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
314 hard_iface
->packet_len
= BAT_PACKET_LEN
;
315 hard_iface
->packet_buff
= kmalloc(hard_iface
->packet_len
, GFP_ATOMIC
);
317 if (!hard_iface
->packet_buff
) {
318 bat_err(hard_iface
->soft_iface
, "Can't add interface packet "
319 "(%s): out of memory\n", hard_iface
->net_dev
->name
);
324 batman_packet
= (struct batman_packet
*)(hard_iface
->packet_buff
);
325 batman_packet
->packet_type
= BAT_PACKET
;
326 batman_packet
->version
= COMPAT_VERSION
;
327 batman_packet
->flags
= 0;
328 batman_packet
->ttl
= 2;
329 batman_packet
->tq
= TQ_MAX_VALUE
;
330 batman_packet
->num_hna
= 0;
332 hard_iface
->if_num
= bat_priv
->num_ifaces
;
333 bat_priv
->num_ifaces
++;
334 hard_iface
->if_status
= IF_INACTIVE
;
335 orig_hash_add_if(hard_iface
, bat_priv
->num_ifaces
);
337 hard_iface
->batman_adv_ptype
.type
= __constant_htons(ETH_P_BATMAN
);
338 hard_iface
->batman_adv_ptype
.func
= batman_skb_recv
;
339 hard_iface
->batman_adv_ptype
.dev
= hard_iface
->net_dev
;
340 dev_add_pack(&hard_iface
->batman_adv_ptype
);
342 atomic_set(&hard_iface
->seqno
, 1);
343 atomic_set(&hard_iface
->frag_seqno
, 1);
344 bat_info(hard_iface
->soft_iface
, "Adding interface: %s\n",
345 hard_iface
->net_dev
->name
);
347 if (atomic_read(&bat_priv
->fragmentation
) && hard_iface
->net_dev
->mtu
<
348 ETH_DATA_LEN
+ BAT_HEADER_LEN
)
349 bat_info(hard_iface
->soft_iface
,
350 "The MTU of interface %s is too small (%i) to handle "
351 "the transport of batman-adv packets. Packets going "
352 "over this interface will be fragmented on layer2 "
353 "which could impact the performance. Setting the MTU "
354 "to %zi would solve the problem.\n",
355 hard_iface
->net_dev
->name
, hard_iface
->net_dev
->mtu
,
356 ETH_DATA_LEN
+ BAT_HEADER_LEN
);
358 if (!atomic_read(&bat_priv
->fragmentation
) && hard_iface
->net_dev
->mtu
<
359 ETH_DATA_LEN
+ BAT_HEADER_LEN
)
360 bat_info(hard_iface
->soft_iface
,
361 "The MTU of interface %s is too small (%i) to handle "
362 "the transport of batman-adv packets. If you experience"
363 " problems getting traffic through try increasing the "
365 hard_iface
->net_dev
->name
, hard_iface
->net_dev
->mtu
,
366 ETH_DATA_LEN
+ BAT_HEADER_LEN
);
368 if (hardif_is_iface_up(hard_iface
))
369 hardif_activate_interface(hard_iface
);
371 bat_err(hard_iface
->soft_iface
, "Not using interface %s "
372 "(retrying later): interface not active\n",
373 hard_iface
->net_dev
->name
);
375 /* begin scheduling originator messages on that interface */
376 schedule_own_packet(hard_iface
);
382 hardif_free_ref(hard_iface
);
386 void hardif_disable_interface(struct hard_iface
*hard_iface
)
388 struct bat_priv
*bat_priv
= netdev_priv(hard_iface
->soft_iface
);
390 if (hard_iface
->if_status
== IF_ACTIVE
)
391 hardif_deactivate_interface(hard_iface
);
393 if (hard_iface
->if_status
!= IF_INACTIVE
)
396 bat_info(hard_iface
->soft_iface
, "Removing interface: %s\n",
397 hard_iface
->net_dev
->name
);
398 dev_remove_pack(&hard_iface
->batman_adv_ptype
);
400 bat_priv
->num_ifaces
--;
401 orig_hash_del_if(hard_iface
, bat_priv
->num_ifaces
);
403 if (hard_iface
== bat_priv
->primary_if
) {
404 struct hard_iface
*new_if
;
406 new_if
= hardif_get_active(hard_iface
->soft_iface
);
407 set_primary_if(bat_priv
, new_if
);
410 hardif_free_ref(new_if
);
413 kfree(hard_iface
->packet_buff
);
414 hard_iface
->packet_buff
= NULL
;
415 hard_iface
->if_status
= IF_NOT_IN_USE
;
417 /* delete all references to this hard_iface */
418 purge_orig_ref(bat_priv
);
419 purge_outstanding_packets(bat_priv
, hard_iface
);
420 dev_put(hard_iface
->soft_iface
);
422 /* nobody uses this interface anymore */
423 if (!bat_priv
->num_ifaces
)
424 softif_destroy(hard_iface
->soft_iface
);
426 hard_iface
->soft_iface
= NULL
;
427 hardif_free_ref(hard_iface
);
430 static struct hard_iface
*hardif_add_interface(struct net_device
*net_dev
)
432 struct hard_iface
*hard_iface
;
435 ret
= is_valid_iface(net_dev
);
441 hard_iface
= kmalloc(sizeof(struct hard_iface
), GFP_ATOMIC
);
443 pr_err("Can't add interface (%s): out of memory\n",
448 ret
= sysfs_add_hardif(&hard_iface
->hardif_obj
, net_dev
);
452 hard_iface
->if_num
= -1;
453 hard_iface
->net_dev
= net_dev
;
454 hard_iface
->soft_iface
= NULL
;
455 hard_iface
->if_status
= IF_NOT_IN_USE
;
456 INIT_LIST_HEAD(&hard_iface
->list
);
457 /* extra reference for return */
458 atomic_set(&hard_iface
->refcount
, 2);
460 check_known_mac_addr(hard_iface
->net_dev
);
462 spin_lock(&hardif_list_lock
);
463 list_add_tail_rcu(&hard_iface
->list
, &hardif_list
);
464 spin_unlock(&hardif_list_lock
);
476 static void hardif_remove_interface(struct hard_iface
*hard_iface
)
478 /* first deactivate interface */
479 if (hard_iface
->if_status
!= IF_NOT_IN_USE
)
480 hardif_disable_interface(hard_iface
);
482 if (hard_iface
->if_status
!= IF_NOT_IN_USE
)
485 hard_iface
->if_status
= IF_TO_BE_REMOVED
;
486 sysfs_del_hardif(&hard_iface
->hardif_obj
);
487 hardif_free_ref(hard_iface
);
490 void hardif_remove_interfaces(void)
492 struct hard_iface
*hard_iface
, *hard_iface_tmp
;
493 struct list_head if_queue
;
495 INIT_LIST_HEAD(&if_queue
);
497 spin_lock(&hardif_list_lock
);
498 list_for_each_entry_safe(hard_iface
, hard_iface_tmp
,
499 &hardif_list
, list
) {
500 list_del_rcu(&hard_iface
->list
);
501 list_add_tail(&hard_iface
->list
, &if_queue
);
503 spin_unlock(&hardif_list_lock
);
506 list_for_each_entry_safe(hard_iface
, hard_iface_tmp
, &if_queue
, list
) {
507 hardif_remove_interface(hard_iface
);
512 static int hard_if_event(struct notifier_block
*this,
513 unsigned long event
, void *ptr
)
515 struct net_device
*net_dev
= (struct net_device
*)ptr
;
516 struct hard_iface
*hard_iface
= hardif_get_by_netdev(net_dev
);
517 struct bat_priv
*bat_priv
;
519 if (!hard_iface
&& event
== NETDEV_REGISTER
)
520 hard_iface
= hardif_add_interface(net_dev
);
527 hardif_activate_interface(hard_iface
);
529 case NETDEV_GOING_DOWN
:
531 hardif_deactivate_interface(hard_iface
);
533 case NETDEV_UNREGISTER
:
534 spin_lock(&hardif_list_lock
);
535 list_del_rcu(&hard_iface
->list
);
536 spin_unlock(&hardif_list_lock
);
538 hardif_remove_interface(hard_iface
);
540 case NETDEV_CHANGEMTU
:
541 if (hard_iface
->soft_iface
)
542 update_min_mtu(hard_iface
->soft_iface
);
544 case NETDEV_CHANGEADDR
:
545 if (hard_iface
->if_status
== IF_NOT_IN_USE
)
548 check_known_mac_addr(hard_iface
->net_dev
);
549 update_mac_addresses(hard_iface
);
551 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
552 if (hard_iface
== bat_priv
->primary_if
)
553 update_primary_addr(bat_priv
);
560 hardif_free_ref(hard_iface
);
565 /* receive a packet with the batman ethertype coming on a hard
567 static int batman_skb_recv(struct sk_buff
*skb
, struct net_device
*dev
,
568 struct packet_type
*ptype
,
569 struct net_device
*orig_dev
)
571 struct bat_priv
*bat_priv
;
572 struct batman_packet
*batman_packet
;
573 struct hard_iface
*hard_iface
;
576 hard_iface
= container_of(ptype
, struct hard_iface
, batman_adv_ptype
);
577 skb
= skb_share_check(skb
, GFP_ATOMIC
);
579 /* skb was released by skb_share_check() */
583 /* packet should hold at least type and version */
584 if (unlikely(!pskb_may_pull(skb
, 2)))
587 /* expect a valid ethernet header here. */
588 if (unlikely(skb
->mac_len
!= sizeof(struct ethhdr
)
589 || !skb_mac_header(skb
)))
592 if (!hard_iface
->soft_iface
)
595 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
597 if (atomic_read(&bat_priv
->mesh_state
) != MESH_ACTIVE
)
600 /* discard frames on not active interfaces */
601 if (hard_iface
->if_status
!= IF_ACTIVE
)
604 batman_packet
= (struct batman_packet
*)skb
->data
;
606 if (batman_packet
->version
!= COMPAT_VERSION
) {
607 bat_dbg(DBG_BATMAN
, bat_priv
,
608 "Drop packet: incompatible batman version (%i)\n",
609 batman_packet
->version
);
613 /* all receive handlers return whether they received or reused
614 * the supplied skb. if not, we have to free the skb. */
616 switch (batman_packet
->packet_type
) {
617 /* batman originator packet */
619 ret
= recv_bat_packet(skb
, hard_iface
);
622 /* batman icmp packet */
624 ret
= recv_icmp_packet(skb
, hard_iface
);
629 ret
= recv_unicast_packet(skb
, hard_iface
);
632 /* fragmented unicast packet */
633 case BAT_UNICAST_FRAG
:
634 ret
= recv_ucast_frag_packet(skb
, hard_iface
);
637 /* broadcast packet */
639 ret
= recv_bcast_packet(skb
, hard_iface
);
644 ret
= recv_vis_packet(skb
, hard_iface
);
650 if (ret
== NET_RX_DROP
)
653 /* return NET_RX_SUCCESS in any case as we
654 * most probably dropped the packet for
655 * routing-logical reasons. */
657 return NET_RX_SUCCESS
;
665 struct notifier_block hard_if_notifier
= {
666 .notifier_call
= hard_if_event
,