1 /* Copyright (C) 2011-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/>.
18 #include "bridge_loop_avoidance.h"
21 #include <linux/atomic.h>
22 #include <linux/byteorder/generic.h>
23 #include <linux/compiler.h>
24 #include <linux/crc16.h>
25 #include <linux/errno.h>
26 #include <linux/etherdevice.h>
28 #include <linux/if_arp.h>
29 #include <linux/if_ether.h>
30 #include <linux/if_vlan.h>
31 #include <linux/jhash.h>
32 #include <linux/jiffies.h>
33 #include <linux/kernel.h>
34 #include <linux/kref.h>
35 #include <linux/list.h>
36 #include <linux/lockdep.h>
37 #include <linux/netdevice.h>
38 #include <linux/rculist.h>
39 #include <linux/rcupdate.h>
40 #include <linux/seq_file.h>
41 #include <linux/skbuff.h>
42 #include <linux/slab.h>
43 #include <linux/spinlock.h>
44 #include <linux/stddef.h>
45 #include <linux/string.h>
46 #include <linux/workqueue.h>
49 #include "hard-interface.h"
51 #include "originator.h"
53 #include "translation-table.h"
55 static const u8 batadv_announce_mac
[4] = {0x43, 0x05, 0x43, 0x05};
57 static void batadv_bla_periodic_work(struct work_struct
*work
);
59 batadv_bla_send_announce(struct batadv_priv
*bat_priv
,
60 struct batadv_bla_backbone_gw
*backbone_gw
);
63 * batadv_choose_claim - choose the right bucket for a claim.
65 * @size: size of the hash table
67 * Return: the hash index of the claim
69 static inline u32
batadv_choose_claim(const void *data
, u32 size
)
71 struct batadv_bla_claim
*claim
= (struct batadv_bla_claim
*)data
;
74 hash
= jhash(&claim
->addr
, sizeof(claim
->addr
), hash
);
75 hash
= jhash(&claim
->vid
, sizeof(claim
->vid
), hash
);
81 * batadv_choose_backbone_gw - choose the right bucket for a backbone gateway.
83 * @size: size of the hash table
85 * Return: the hash index of the backbone gateway
87 static inline u32
batadv_choose_backbone_gw(const void *data
, u32 size
)
89 const struct batadv_bla_claim
*claim
= (struct batadv_bla_claim
*)data
;
92 hash
= jhash(&claim
->addr
, sizeof(claim
->addr
), hash
);
93 hash
= jhash(&claim
->vid
, sizeof(claim
->vid
), hash
);
99 * batadv_compare_backbone_gw - compare address and vid of two backbone gws
100 * @node: list node of the first entry to compare
101 * @data2: pointer to the second backbone gateway
103 * Return: 1 if the backbones have the same data, 0 otherwise
105 static int batadv_compare_backbone_gw(const struct hlist_node
*node
,
108 const void *data1
= container_of(node
, struct batadv_bla_backbone_gw
,
110 const struct batadv_bla_backbone_gw
*gw1
= data1
;
111 const struct batadv_bla_backbone_gw
*gw2
= data2
;
113 if (!batadv_compare_eth(gw1
->orig
, gw2
->orig
))
116 if (gw1
->vid
!= gw2
->vid
)
123 * batadv_compare_backbone_gw - compare address and vid of two claims
124 * @node: list node of the first entry to compare
125 * @data2: pointer to the second claims
127 * Return: 1 if the claim have the same data, 0 otherwise
129 static int batadv_compare_claim(const struct hlist_node
*node
,
132 const void *data1
= container_of(node
, struct batadv_bla_claim
,
134 const struct batadv_bla_claim
*cl1
= data1
;
135 const struct batadv_bla_claim
*cl2
= data2
;
137 if (!batadv_compare_eth(cl1
->addr
, cl2
->addr
))
140 if (cl1
->vid
!= cl2
->vid
)
147 * batadv_backbone_gw_release - release backbone gw from lists and queue for
148 * free after rcu grace period
149 * @ref: kref pointer of the backbone gw
151 static void batadv_backbone_gw_release(struct kref
*ref
)
153 struct batadv_bla_backbone_gw
*backbone_gw
;
155 backbone_gw
= container_of(ref
, struct batadv_bla_backbone_gw
,
158 kfree_rcu(backbone_gw
, rcu
);
162 * batadv_backbone_gw_put - decrement the backbone gw refcounter and possibly
164 * @backbone_gw: backbone gateway to be free'd
166 static void batadv_backbone_gw_put(struct batadv_bla_backbone_gw
*backbone_gw
)
168 kref_put(&backbone_gw
->refcount
, batadv_backbone_gw_release
);
172 * batadv_claim_release - release claim from lists and queue for free after rcu
174 * @ref: kref pointer of the claim
176 static void batadv_claim_release(struct kref
*ref
)
178 struct batadv_bla_claim
*claim
;
180 claim
= container_of(ref
, struct batadv_bla_claim
, refcount
);
182 batadv_backbone_gw_put(claim
->backbone_gw
);
183 kfree_rcu(claim
, rcu
);
187 * batadv_claim_put - decrement the claim refcounter and possibly
189 * @claim: claim to be free'd
191 static void batadv_claim_put(struct batadv_bla_claim
*claim
)
193 kref_put(&claim
->refcount
, batadv_claim_release
);
197 * batadv_claim_hash_find - looks for a claim in the claim hash
198 * @bat_priv: the bat priv with all the soft interface information
199 * @data: search data (may be local/static data)
201 * Return: claim if found or NULL otherwise.
203 static struct batadv_bla_claim
204 *batadv_claim_hash_find(struct batadv_priv
*bat_priv
,
205 struct batadv_bla_claim
*data
)
207 struct batadv_hashtable
*hash
= bat_priv
->bla
.claim_hash
;
208 struct hlist_head
*head
;
209 struct batadv_bla_claim
*claim
;
210 struct batadv_bla_claim
*claim_tmp
= NULL
;
216 index
= batadv_choose_claim(data
, hash
->size
);
217 head
= &hash
->table
[index
];
220 hlist_for_each_entry_rcu(claim
, head
, hash_entry
) {
221 if (!batadv_compare_claim(&claim
->hash_entry
, data
))
224 if (!kref_get_unless_zero(&claim
->refcount
))
236 * batadv_backbone_hash_find - looks for a backbone gateway in the hash
237 * @bat_priv: the bat priv with all the soft interface information
238 * @addr: the address of the originator
241 * Return: backbone gateway if found or NULL otherwise
243 static struct batadv_bla_backbone_gw
*
244 batadv_backbone_hash_find(struct batadv_priv
*bat_priv
, u8
*addr
,
247 struct batadv_hashtable
*hash
= bat_priv
->bla
.backbone_hash
;
248 struct hlist_head
*head
;
249 struct batadv_bla_backbone_gw search_entry
, *backbone_gw
;
250 struct batadv_bla_backbone_gw
*backbone_gw_tmp
= NULL
;
256 ether_addr_copy(search_entry
.orig
, addr
);
257 search_entry
.vid
= vid
;
259 index
= batadv_choose_backbone_gw(&search_entry
, hash
->size
);
260 head
= &hash
->table
[index
];
263 hlist_for_each_entry_rcu(backbone_gw
, head
, hash_entry
) {
264 if (!batadv_compare_backbone_gw(&backbone_gw
->hash_entry
,
268 if (!kref_get_unless_zero(&backbone_gw
->refcount
))
271 backbone_gw_tmp
= backbone_gw
;
276 return backbone_gw_tmp
;
280 * batadv_bla_del_backbone_claims - delete all claims for a backbone
281 * @backbone_gw: backbone gateway where the claims should be removed
284 batadv_bla_del_backbone_claims(struct batadv_bla_backbone_gw
*backbone_gw
)
286 struct batadv_hashtable
*hash
;
287 struct hlist_node
*node_tmp
;
288 struct hlist_head
*head
;
289 struct batadv_bla_claim
*claim
;
291 spinlock_t
*list_lock
; /* protects write access to the hash lists */
293 hash
= backbone_gw
->bat_priv
->bla
.claim_hash
;
297 for (i
= 0; i
< hash
->size
; i
++) {
298 head
= &hash
->table
[i
];
299 list_lock
= &hash
->list_locks
[i
];
301 spin_lock_bh(list_lock
);
302 hlist_for_each_entry_safe(claim
, node_tmp
,
304 if (claim
->backbone_gw
!= backbone_gw
)
307 batadv_claim_put(claim
);
308 hlist_del_rcu(&claim
->hash_entry
);
310 spin_unlock_bh(list_lock
);
313 /* all claims gone, initialize CRC */
314 spin_lock_bh(&backbone_gw
->crc_lock
);
315 backbone_gw
->crc
= BATADV_BLA_CRC_INIT
;
316 spin_unlock_bh(&backbone_gw
->crc_lock
);
320 * batadv_bla_send_claim - sends a claim frame according to the provided info
321 * @bat_priv: the bat priv with all the soft interface information
322 * @mac: the mac address to be announced within the claim
324 * @claimtype: the type of the claim (CLAIM, UNCLAIM, ANNOUNCE, ...)
326 static void batadv_bla_send_claim(struct batadv_priv
*bat_priv
, u8
*mac
,
327 unsigned short vid
, int claimtype
)
330 struct ethhdr
*ethhdr
;
331 struct batadv_hard_iface
*primary_if
;
332 struct net_device
*soft_iface
;
334 struct batadv_bla_claim_dst local_claim_dest
;
337 primary_if
= batadv_primary_if_get_selected(bat_priv
);
341 memcpy(&local_claim_dest
, &bat_priv
->bla
.claim_dest
,
342 sizeof(local_claim_dest
));
343 local_claim_dest
.type
= claimtype
;
345 soft_iface
= primary_if
->soft_iface
;
347 skb
= arp_create(ARPOP_REPLY
, ETH_P_ARP
,
348 /* IP DST: 0.0.0.0 */
350 primary_if
->soft_iface
,
351 /* IP SRC: 0.0.0.0 */
353 /* Ethernet DST: Broadcast */
355 /* Ethernet SRC/HW SRC: originator mac */
356 primary_if
->net_dev
->dev_addr
,
357 /* HW DST: FF:43:05:XX:YY:YY
358 * with XX = claim type
359 * and YY:YY = group id
361 (u8
*)&local_claim_dest
);
366 ethhdr
= (struct ethhdr
*)skb
->data
;
367 hw_src
= (u8
*)ethhdr
+ ETH_HLEN
+ sizeof(struct arphdr
);
369 /* now we pretend that the client would have sent this ... */
371 case BATADV_CLAIM_TYPE_CLAIM
:
372 /* normal claim frame
373 * set Ethernet SRC to the clients mac
375 ether_addr_copy(ethhdr
->h_source
, mac
);
376 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
377 "bla_send_claim(): CLAIM %pM on vid %d\n", mac
,
378 BATADV_PRINT_VID(vid
));
380 case BATADV_CLAIM_TYPE_UNCLAIM
:
382 * set HW SRC to the clients mac
384 ether_addr_copy(hw_src
, mac
);
385 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
386 "bla_send_claim(): UNCLAIM %pM on vid %d\n", mac
,
387 BATADV_PRINT_VID(vid
));
389 case BATADV_CLAIM_TYPE_ANNOUNCE
:
390 /* announcement frame
391 * set HW SRC to the special mac containg the crc
393 ether_addr_copy(hw_src
, mac
);
394 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
395 "bla_send_claim(): ANNOUNCE of %pM on vid %d\n",
396 ethhdr
->h_source
, BATADV_PRINT_VID(vid
));
398 case BATADV_CLAIM_TYPE_REQUEST
:
400 * set HW SRC and header destination to the receiving backbone
403 ether_addr_copy(hw_src
, mac
);
404 ether_addr_copy(ethhdr
->h_dest
, mac
);
405 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
406 "bla_send_claim(): REQUEST of %pM to %pM on vid %d\n",
407 ethhdr
->h_source
, ethhdr
->h_dest
,
408 BATADV_PRINT_VID(vid
));
412 if (vid
& BATADV_VLAN_HAS_TAG
)
413 skb
= vlan_insert_tag(skb
, htons(ETH_P_8021Q
),
414 vid
& VLAN_VID_MASK
);
416 skb_reset_mac_header(skb
);
417 skb
->protocol
= eth_type_trans(skb
, soft_iface
);
418 batadv_inc_counter(bat_priv
, BATADV_CNT_RX
);
419 batadv_add_counter(bat_priv
, BATADV_CNT_RX_BYTES
,
420 skb
->len
+ ETH_HLEN
);
421 soft_iface
->last_rx
= jiffies
;
426 batadv_hardif_put(primary_if
);
430 * batadv_bla_get_backbone_gw - finds or creates a backbone gateway
431 * @bat_priv: the bat priv with all the soft interface information
432 * @orig: the mac address of the originator
434 * @own_backbone: set if the requested backbone is local
436 * Return: the (possibly created) backbone gateway or NULL on error
438 static struct batadv_bla_backbone_gw
*
439 batadv_bla_get_backbone_gw(struct batadv_priv
*bat_priv
, u8
*orig
,
440 unsigned short vid
, bool own_backbone
)
442 struct batadv_bla_backbone_gw
*entry
;
443 struct batadv_orig_node
*orig_node
;
446 entry
= batadv_backbone_hash_find(bat_priv
, orig
, vid
);
451 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
452 "bla_get_backbone_gw(): not found (%pM, %d), creating new entry\n",
453 orig
, BATADV_PRINT_VID(vid
));
455 entry
= kzalloc(sizeof(*entry
), GFP_ATOMIC
);
460 entry
->lasttime
= jiffies
;
461 entry
->crc
= BATADV_BLA_CRC_INIT
;
462 entry
->bat_priv
= bat_priv
;
463 spin_lock_init(&entry
->crc_lock
);
464 atomic_set(&entry
->request_sent
, 0);
465 atomic_set(&entry
->wait_periods
, 0);
466 ether_addr_copy(entry
->orig
, orig
);
468 /* one for the hash, one for returning */
469 kref_init(&entry
->refcount
);
470 kref_get(&entry
->refcount
);
472 hash_added
= batadv_hash_add(bat_priv
->bla
.backbone_hash
,
473 batadv_compare_backbone_gw
,
474 batadv_choose_backbone_gw
, entry
,
477 if (unlikely(hash_added
!= 0)) {
478 /* hash failed, free the structure */
483 /* this is a gateway now, remove any TT entry on this VLAN */
484 orig_node
= batadv_orig_hash_find(bat_priv
, orig
);
486 batadv_tt_global_del_orig(bat_priv
, orig_node
, vid
,
487 "became a backbone gateway");
488 batadv_orig_node_put(orig_node
);
492 batadv_bla_send_announce(bat_priv
, entry
);
494 /* this will be decreased in the worker thread */
495 atomic_inc(&entry
->request_sent
);
496 atomic_set(&entry
->wait_periods
, BATADV_BLA_WAIT_PERIODS
);
497 atomic_inc(&bat_priv
->bla
.num_requests
);
504 * batadv_bla_update_own_backbone_gw - updates the own backbone gw for a VLAN
505 * @bat_priv: the bat priv with all the soft interface information
506 * @primary_if: the selected primary interface
507 * @vid: VLAN identifier
509 * update or add the own backbone gw to make sure we announce
510 * where we receive other backbone gws
513 batadv_bla_update_own_backbone_gw(struct batadv_priv
*bat_priv
,
514 struct batadv_hard_iface
*primary_if
,
517 struct batadv_bla_backbone_gw
*backbone_gw
;
519 backbone_gw
= batadv_bla_get_backbone_gw(bat_priv
,
520 primary_if
->net_dev
->dev_addr
,
522 if (unlikely(!backbone_gw
))
525 backbone_gw
->lasttime
= jiffies
;
526 batadv_backbone_gw_put(backbone_gw
);
530 * batadv_bla_answer_request - answer a bla request by sending own claims
531 * @bat_priv: the bat priv with all the soft interface information
532 * @primary_if: interface where the request came on
533 * @vid: the vid where the request came on
535 * Repeat all of our own claims, and finally send an ANNOUNCE frame
536 * to allow the requester another check if the CRC is correct now.
538 static void batadv_bla_answer_request(struct batadv_priv
*bat_priv
,
539 struct batadv_hard_iface
*primary_if
,
542 struct hlist_head
*head
;
543 struct batadv_hashtable
*hash
;
544 struct batadv_bla_claim
*claim
;
545 struct batadv_bla_backbone_gw
*backbone_gw
;
548 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
549 "bla_answer_request(): received a claim request, send all of our own claims again\n");
551 backbone_gw
= batadv_backbone_hash_find(bat_priv
,
552 primary_if
->net_dev
->dev_addr
,
557 hash
= bat_priv
->bla
.claim_hash
;
558 for (i
= 0; i
< hash
->size
; i
++) {
559 head
= &hash
->table
[i
];
562 hlist_for_each_entry_rcu(claim
, head
, hash_entry
) {
563 /* only own claims are interesting */
564 if (claim
->backbone_gw
!= backbone_gw
)
567 batadv_bla_send_claim(bat_priv
, claim
->addr
, claim
->vid
,
568 BATADV_CLAIM_TYPE_CLAIM
);
573 /* finally, send an announcement frame */
574 batadv_bla_send_announce(bat_priv
, backbone_gw
);
575 batadv_backbone_gw_put(backbone_gw
);
579 * batadv_bla_send_request - send a request to repeat claims
580 * @backbone_gw: the backbone gateway from whom we are out of sync
582 * When the crc is wrong, ask the backbone gateway for a full table update.
583 * After the request, it will repeat all of his own claims and finally
584 * send an announcement claim with which we can check again.
586 static void batadv_bla_send_request(struct batadv_bla_backbone_gw
*backbone_gw
)
588 /* first, remove all old entries */
589 batadv_bla_del_backbone_claims(backbone_gw
);
591 batadv_dbg(BATADV_DBG_BLA
, backbone_gw
->bat_priv
,
592 "Sending REQUEST to %pM\n", backbone_gw
->orig
);
595 batadv_bla_send_claim(backbone_gw
->bat_priv
, backbone_gw
->orig
,
596 backbone_gw
->vid
, BATADV_CLAIM_TYPE_REQUEST
);
598 /* no local broadcasts should be sent or received, for now. */
599 if (!atomic_read(&backbone_gw
->request_sent
)) {
600 atomic_inc(&backbone_gw
->bat_priv
->bla
.num_requests
);
601 atomic_set(&backbone_gw
->request_sent
, 1);
606 * batadv_bla_send_announce - Send an announcement frame
607 * @bat_priv: the bat priv with all the soft interface information
608 * @backbone_gw: our backbone gateway which should be announced
610 static void batadv_bla_send_announce(struct batadv_priv
*bat_priv
,
611 struct batadv_bla_backbone_gw
*backbone_gw
)
616 memcpy(mac
, batadv_announce_mac
, 4);
617 spin_lock_bh(&backbone_gw
->crc_lock
);
618 crc
= htons(backbone_gw
->crc
);
619 spin_unlock_bh(&backbone_gw
->crc_lock
);
620 memcpy(&mac
[4], &crc
, 2);
622 batadv_bla_send_claim(bat_priv
, mac
, backbone_gw
->vid
,
623 BATADV_CLAIM_TYPE_ANNOUNCE
);
627 * batadv_bla_add_claim - Adds a claim in the claim hash
628 * @bat_priv: the bat priv with all the soft interface information
629 * @mac: the mac address of the claim
630 * @vid: the VLAN ID of the frame
631 * @backbone_gw: the backbone gateway which claims it
633 static void batadv_bla_add_claim(struct batadv_priv
*bat_priv
,
634 const u8
*mac
, const unsigned short vid
,
635 struct batadv_bla_backbone_gw
*backbone_gw
)
637 struct batadv_bla_claim
*claim
;
638 struct batadv_bla_claim search_claim
;
641 ether_addr_copy(search_claim
.addr
, mac
);
642 search_claim
.vid
= vid
;
643 claim
= batadv_claim_hash_find(bat_priv
, &search_claim
);
645 /* create a new claim entry if it does not exist yet. */
647 claim
= kzalloc(sizeof(*claim
), GFP_ATOMIC
);
651 ether_addr_copy(claim
->addr
, mac
);
653 claim
->lasttime
= jiffies
;
654 claim
->backbone_gw
= backbone_gw
;
656 kref_init(&claim
->refcount
);
657 kref_get(&claim
->refcount
);
658 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
659 "bla_add_claim(): adding new entry %pM, vid %d to hash ...\n",
660 mac
, BATADV_PRINT_VID(vid
));
661 hash_added
= batadv_hash_add(bat_priv
->bla
.claim_hash
,
662 batadv_compare_claim
,
663 batadv_choose_claim
, claim
,
666 if (unlikely(hash_added
!= 0)) {
667 /* only local changes happened. */
672 claim
->lasttime
= jiffies
;
673 if (claim
->backbone_gw
== backbone_gw
)
674 /* no need to register a new backbone */
677 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
678 "bla_add_claim(): changing ownership for %pM, vid %d\n",
679 mac
, BATADV_PRINT_VID(vid
));
681 spin_lock_bh(&claim
->backbone_gw
->crc_lock
);
682 claim
->backbone_gw
->crc
^= crc16(0, claim
->addr
, ETH_ALEN
);
683 spin_unlock_bh(&claim
->backbone_gw
->crc_lock
);
684 batadv_backbone_gw_put(claim
->backbone_gw
);
686 /* set (new) backbone gw */
687 kref_get(&backbone_gw
->refcount
);
688 claim
->backbone_gw
= backbone_gw
;
690 spin_lock_bh(&backbone_gw
->crc_lock
);
691 backbone_gw
->crc
^= crc16(0, claim
->addr
, ETH_ALEN
);
692 spin_unlock_bh(&backbone_gw
->crc_lock
);
693 backbone_gw
->lasttime
= jiffies
;
696 batadv_claim_put(claim
);
700 * batadv_bla_del_claim - delete a claim from the claim hash
701 * @bat_priv: the bat priv with all the soft interface information
702 * @mac: mac address of the claim to be removed
703 * @vid: VLAN id for the claim to be removed
705 static void batadv_bla_del_claim(struct batadv_priv
*bat_priv
,
706 const u8
*mac
, const unsigned short vid
)
708 struct batadv_bla_claim search_claim
, *claim
;
710 ether_addr_copy(search_claim
.addr
, mac
);
711 search_claim
.vid
= vid
;
712 claim
= batadv_claim_hash_find(bat_priv
, &search_claim
);
716 batadv_dbg(BATADV_DBG_BLA
, bat_priv
, "bla_del_claim(): %pM, vid %d\n",
717 mac
, BATADV_PRINT_VID(vid
));
719 batadv_hash_remove(bat_priv
->bla
.claim_hash
, batadv_compare_claim
,
720 batadv_choose_claim
, claim
);
721 batadv_claim_put(claim
); /* reference from the hash is gone */
723 spin_lock_bh(&claim
->backbone_gw
->crc_lock
);
724 claim
->backbone_gw
->crc
^= crc16(0, claim
->addr
, ETH_ALEN
);
725 spin_unlock_bh(&claim
->backbone_gw
->crc_lock
);
727 /* don't need the reference from hash_find() anymore */
728 batadv_claim_put(claim
);
732 * batadv_handle_announce - check for ANNOUNCE frame
733 * @bat_priv: the bat priv with all the soft interface information
734 * @an_addr: announcement mac address (ARP Sender HW address)
735 * @backbone_addr: originator address of the sender (Ethernet source MAC)
736 * @vid: the VLAN ID of the frame
738 * Return: 1 if handled
740 static int batadv_handle_announce(struct batadv_priv
*bat_priv
, u8
*an_addr
,
741 u8
*backbone_addr
, unsigned short vid
)
743 struct batadv_bla_backbone_gw
*backbone_gw
;
744 u16 backbone_crc
, crc
;
746 if (memcmp(an_addr
, batadv_announce_mac
, 4) != 0)
749 backbone_gw
= batadv_bla_get_backbone_gw(bat_priv
, backbone_addr
, vid
,
752 if (unlikely(!backbone_gw
))
755 /* handle as ANNOUNCE frame */
756 backbone_gw
->lasttime
= jiffies
;
757 crc
= ntohs(*((__be16
*)(&an_addr
[4])));
759 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
760 "handle_announce(): ANNOUNCE vid %d (sent by %pM)... CRC = %#.4x\n",
761 BATADV_PRINT_VID(vid
), backbone_gw
->orig
, crc
);
763 spin_lock_bh(&backbone_gw
->crc_lock
);
764 backbone_crc
= backbone_gw
->crc
;
765 spin_unlock_bh(&backbone_gw
->crc_lock
);
767 if (backbone_crc
!= crc
) {
768 batadv_dbg(BATADV_DBG_BLA
, backbone_gw
->bat_priv
,
769 "handle_announce(): CRC FAILED for %pM/%d (my = %#.4x, sent = %#.4x)\n",
771 BATADV_PRINT_VID(backbone_gw
->vid
),
774 batadv_bla_send_request(backbone_gw
);
776 /* if we have sent a request and the crc was OK,
777 * we can allow traffic again.
779 if (atomic_read(&backbone_gw
->request_sent
)) {
780 atomic_dec(&backbone_gw
->bat_priv
->bla
.num_requests
);
781 atomic_set(&backbone_gw
->request_sent
, 0);
785 batadv_backbone_gw_put(backbone_gw
);
790 * batadv_handle_request - check for REQUEST frame
791 * @bat_priv: the bat priv with all the soft interface information
792 * @primary_if: the primary hard interface of this batman soft interface
793 * @backbone_addr: backbone address to be requested (ARP sender HW MAC)
794 * @ethhdr: ethernet header of a packet
795 * @vid: the VLAN ID of the frame
797 * Return: 1 if handled
799 static int batadv_handle_request(struct batadv_priv
*bat_priv
,
800 struct batadv_hard_iface
*primary_if
,
801 u8
*backbone_addr
, struct ethhdr
*ethhdr
,
804 /* check for REQUEST frame */
805 if (!batadv_compare_eth(backbone_addr
, ethhdr
->h_dest
))
808 /* sanity check, this should not happen on a normal switch,
809 * we ignore it in this case.
811 if (!batadv_compare_eth(ethhdr
->h_dest
, primary_if
->net_dev
->dev_addr
))
814 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
815 "handle_request(): REQUEST vid %d (sent by %pM)...\n",
816 BATADV_PRINT_VID(vid
), ethhdr
->h_source
);
818 batadv_bla_answer_request(bat_priv
, primary_if
, vid
);
823 * batadv_handle_unclaim - check for UNCLAIM frame
824 * @bat_priv: the bat priv with all the soft interface information
825 * @primary_if: the primary hard interface of this batman soft interface
826 * @backbone_addr: originator address of the backbone (Ethernet source)
827 * @claim_addr: Client to be unclaimed (ARP sender HW MAC)
828 * @vid: the VLAN ID of the frame
830 * Return: 1 if handled
832 static int batadv_handle_unclaim(struct batadv_priv
*bat_priv
,
833 struct batadv_hard_iface
*primary_if
,
834 u8
*backbone_addr
, u8
*claim_addr
,
837 struct batadv_bla_backbone_gw
*backbone_gw
;
839 /* unclaim in any case if it is our own */
840 if (primary_if
&& batadv_compare_eth(backbone_addr
,
841 primary_if
->net_dev
->dev_addr
))
842 batadv_bla_send_claim(bat_priv
, claim_addr
, vid
,
843 BATADV_CLAIM_TYPE_UNCLAIM
);
845 backbone_gw
= batadv_backbone_hash_find(bat_priv
, backbone_addr
, vid
);
850 /* this must be an UNCLAIM frame */
851 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
852 "handle_unclaim(): UNCLAIM %pM on vid %d (sent by %pM)...\n",
853 claim_addr
, BATADV_PRINT_VID(vid
), backbone_gw
->orig
);
855 batadv_bla_del_claim(bat_priv
, claim_addr
, vid
);
856 batadv_backbone_gw_put(backbone_gw
);
861 * batadv_handle_claim - check for CLAIM frame
862 * @bat_priv: the bat priv with all the soft interface information
863 * @primary_if: the primary hard interface of this batman soft interface
864 * @backbone_addr: originator address of the backbone (Ethernet Source)
865 * @claim_addr: client mac address to be claimed (ARP sender HW MAC)
866 * @vid: the VLAN ID of the frame
868 * Return: 1 if handled
870 static int batadv_handle_claim(struct batadv_priv
*bat_priv
,
871 struct batadv_hard_iface
*primary_if
,
872 u8
*backbone_addr
, u8
*claim_addr
,
875 struct batadv_bla_backbone_gw
*backbone_gw
;
877 /* register the gateway if not yet available, and add the claim. */
879 backbone_gw
= batadv_bla_get_backbone_gw(bat_priv
, backbone_addr
, vid
,
882 if (unlikely(!backbone_gw
))
885 /* this must be a CLAIM frame */
886 batadv_bla_add_claim(bat_priv
, claim_addr
, vid
, backbone_gw
);
887 if (batadv_compare_eth(backbone_addr
, primary_if
->net_dev
->dev_addr
))
888 batadv_bla_send_claim(bat_priv
, claim_addr
, vid
,
889 BATADV_CLAIM_TYPE_CLAIM
);
891 /* TODO: we could call something like tt_local_del() here. */
893 batadv_backbone_gw_put(backbone_gw
);
898 * batadv_check_claim_group - check for claim group membership
899 * @bat_priv: the bat priv with all the soft interface information
900 * @primary_if: the primary interface of this batman interface
901 * @hw_src: the Hardware source in the ARP Header
902 * @hw_dst: the Hardware destination in the ARP Header
903 * @ethhdr: pointer to the Ethernet header of the claim frame
905 * checks if it is a claim packet and if its on the same group.
906 * This function also applies the group ID of the sender
907 * if it is in the same mesh.
910 * 2 - if it is a claim packet and on the same group
911 * 1 - if is a claim packet from another group
912 * 0 - if it is not a claim packet
914 static int batadv_check_claim_group(struct batadv_priv
*bat_priv
,
915 struct batadv_hard_iface
*primary_if
,
916 u8
*hw_src
, u8
*hw_dst
,
917 struct ethhdr
*ethhdr
)
920 struct batadv_orig_node
*orig_node
;
921 struct batadv_bla_claim_dst
*bla_dst
, *bla_dst_own
;
923 bla_dst
= (struct batadv_bla_claim_dst
*)hw_dst
;
924 bla_dst_own
= &bat_priv
->bla
.claim_dest
;
926 /* if announcement packet, use the source,
927 * otherwise assume it is in the hw_src
929 switch (bla_dst
->type
) {
930 case BATADV_CLAIM_TYPE_CLAIM
:
931 backbone_addr
= hw_src
;
933 case BATADV_CLAIM_TYPE_REQUEST
:
934 case BATADV_CLAIM_TYPE_ANNOUNCE
:
935 case BATADV_CLAIM_TYPE_UNCLAIM
:
936 backbone_addr
= ethhdr
->h_source
;
942 /* don't accept claim frames from ourselves */
943 if (batadv_compare_eth(backbone_addr
, primary_if
->net_dev
->dev_addr
))
946 /* if its already the same group, it is fine. */
947 if (bla_dst
->group
== bla_dst_own
->group
)
950 /* lets see if this originator is in our mesh */
951 orig_node
= batadv_orig_hash_find(bat_priv
, backbone_addr
);
953 /* dont accept claims from gateways which are not in
954 * the same mesh or group.
959 /* if our mesh friends mac is bigger, use it for ourselves. */
960 if (ntohs(bla_dst
->group
) > ntohs(bla_dst_own
->group
)) {
961 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
962 "taking other backbones claim group: %#.4x\n",
963 ntohs(bla_dst
->group
));
964 bla_dst_own
->group
= bla_dst
->group
;
967 batadv_orig_node_put(orig_node
);
973 * batadv_bla_process_claim - Check if this is a claim frame, and process it
974 * @bat_priv: the bat priv with all the soft interface information
975 * @primary_if: the primary hard interface of this batman soft interface
976 * @skb: the frame to be checked
978 * Return: 1 if it was a claim frame, otherwise return 0 to
979 * tell the callee that it can use the frame on its own.
981 static int batadv_bla_process_claim(struct batadv_priv
*bat_priv
,
982 struct batadv_hard_iface
*primary_if
,
985 struct batadv_bla_claim_dst
*bla_dst
, *bla_dst_own
;
987 struct vlan_hdr
*vhdr
, vhdr_buf
;
988 struct ethhdr
*ethhdr
;
989 struct arphdr
*arphdr
;
996 vid
= batadv_get_vid(skb
, 0);
997 ethhdr
= eth_hdr(skb
);
999 proto
= ethhdr
->h_proto
;
1001 if (vid
& BATADV_VLAN_HAS_TAG
) {
1002 /* Traverse the VLAN/Ethertypes.
1004 * At this point it is known that the first protocol is a VLAN
1005 * header, so start checking at the encapsulated protocol.
1007 * The depth of the VLAN headers is recorded to drop BLA claim
1008 * frames encapsulated into multiple VLAN headers (QinQ).
1011 vhdr
= skb_header_pointer(skb
, headlen
, VLAN_HLEN
,
1016 proto
= vhdr
->h_vlan_encapsulated_proto
;
1017 headlen
+= VLAN_HLEN
;
1019 } while (proto
== htons(ETH_P_8021Q
));
1022 if (proto
!= htons(ETH_P_ARP
))
1023 return 0; /* not a claim frame */
1025 /* this must be a ARP frame. check if it is a claim. */
1027 if (unlikely(!pskb_may_pull(skb
, headlen
+ arp_hdr_len(skb
->dev
))))
1030 /* pskb_may_pull() may have modified the pointers, get ethhdr again */
1031 ethhdr
= eth_hdr(skb
);
1032 arphdr
= (struct arphdr
*)((u8
*)ethhdr
+ headlen
);
1034 /* Check whether the ARP frame carries a valid
1037 if (arphdr
->ar_hrd
!= htons(ARPHRD_ETHER
))
1039 if (arphdr
->ar_pro
!= htons(ETH_P_IP
))
1041 if (arphdr
->ar_hln
!= ETH_ALEN
)
1043 if (arphdr
->ar_pln
!= 4)
1046 hw_src
= (u8
*)arphdr
+ sizeof(struct arphdr
);
1047 hw_dst
= hw_src
+ ETH_ALEN
+ 4;
1048 bla_dst
= (struct batadv_bla_claim_dst
*)hw_dst
;
1049 bla_dst_own
= &bat_priv
->bla
.claim_dest
;
1051 /* check if it is a claim frame in general */
1052 if (memcmp(bla_dst
->magic
, bla_dst_own
->magic
,
1053 sizeof(bla_dst
->magic
)) != 0)
1056 /* check if there is a claim frame encapsulated deeper in (QinQ) and
1057 * drop that, as this is not supported by BLA but should also not be
1058 * sent via the mesh.
1063 /* check if it is a claim frame. */
1064 ret
= batadv_check_claim_group(bat_priv
, primary_if
, hw_src
, hw_dst
,
1067 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
1068 "bla_process_claim(): received a claim frame from another group. From: %pM on vid %d ...(hw_src %pM, hw_dst %pM)\n",
1069 ethhdr
->h_source
, BATADV_PRINT_VID(vid
), hw_src
,
1075 /* become a backbone gw ourselves on this vlan if not happened yet */
1076 batadv_bla_update_own_backbone_gw(bat_priv
, primary_if
, vid
);
1078 /* check for the different types of claim frames ... */
1079 switch (bla_dst
->type
) {
1080 case BATADV_CLAIM_TYPE_CLAIM
:
1081 if (batadv_handle_claim(bat_priv
, primary_if
, hw_src
,
1082 ethhdr
->h_source
, vid
))
1085 case BATADV_CLAIM_TYPE_UNCLAIM
:
1086 if (batadv_handle_unclaim(bat_priv
, primary_if
,
1087 ethhdr
->h_source
, hw_src
, vid
))
1091 case BATADV_CLAIM_TYPE_ANNOUNCE
:
1092 if (batadv_handle_announce(bat_priv
, hw_src
, ethhdr
->h_source
,
1096 case BATADV_CLAIM_TYPE_REQUEST
:
1097 if (batadv_handle_request(bat_priv
, primary_if
, hw_src
, ethhdr
,
1103 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
1104 "bla_process_claim(): ERROR - this looks like a claim frame, but is useless. eth src %pM on vid %d ...(hw_src %pM, hw_dst %pM)\n",
1105 ethhdr
->h_source
, BATADV_PRINT_VID(vid
), hw_src
, hw_dst
);
1110 * batadv_bla_purge_backbone_gw - Remove backbone gateways after a timeout or
1112 * @bat_priv: the bat priv with all the soft interface information
1113 * @now: whether the whole hash shall be wiped now
1115 * Check when we last heard from other nodes, and remove them in case of
1116 * a time out, or clean all backbone gws if now is set.
1118 static void batadv_bla_purge_backbone_gw(struct batadv_priv
*bat_priv
, int now
)
1120 struct batadv_bla_backbone_gw
*backbone_gw
;
1121 struct hlist_node
*node_tmp
;
1122 struct hlist_head
*head
;
1123 struct batadv_hashtable
*hash
;
1124 spinlock_t
*list_lock
; /* protects write access to the hash lists */
1127 hash
= bat_priv
->bla
.backbone_hash
;
1131 for (i
= 0; i
< hash
->size
; i
++) {
1132 head
= &hash
->table
[i
];
1133 list_lock
= &hash
->list_locks
[i
];
1135 spin_lock_bh(list_lock
);
1136 hlist_for_each_entry_safe(backbone_gw
, node_tmp
,
1140 if (!batadv_has_timed_out(backbone_gw
->lasttime
,
1141 BATADV_BLA_BACKBONE_TIMEOUT
))
1144 batadv_dbg(BATADV_DBG_BLA
, backbone_gw
->bat_priv
,
1145 "bla_purge_backbone_gw(): backbone gw %pM timed out\n",
1149 /* don't wait for the pending request anymore */
1150 if (atomic_read(&backbone_gw
->request_sent
))
1151 atomic_dec(&bat_priv
->bla
.num_requests
);
1153 batadv_bla_del_backbone_claims(backbone_gw
);
1155 hlist_del_rcu(&backbone_gw
->hash_entry
);
1156 batadv_backbone_gw_put(backbone_gw
);
1158 spin_unlock_bh(list_lock
);
1163 * batadv_bla_purge_claims - Remove claims after a timeout or immediately
1164 * @bat_priv: the bat priv with all the soft interface information
1165 * @primary_if: the selected primary interface, may be NULL if now is set
1166 * @now: whether the whole hash shall be wiped now
1168 * Check when we heard last time from our own claims, and remove them in case of
1169 * a time out, or clean all claims if now is set
1171 static void batadv_bla_purge_claims(struct batadv_priv
*bat_priv
,
1172 struct batadv_hard_iface
*primary_if
,
1175 struct batadv_bla_claim
*claim
;
1176 struct hlist_head
*head
;
1177 struct batadv_hashtable
*hash
;
1180 hash
= bat_priv
->bla
.claim_hash
;
1184 for (i
= 0; i
< hash
->size
; i
++) {
1185 head
= &hash
->table
[i
];
1188 hlist_for_each_entry_rcu(claim
, head
, hash_entry
) {
1191 if (!batadv_compare_eth(claim
->backbone_gw
->orig
,
1192 primary_if
->net_dev
->dev_addr
))
1194 if (!batadv_has_timed_out(claim
->lasttime
,
1195 BATADV_BLA_CLAIM_TIMEOUT
))
1198 batadv_dbg(BATADV_DBG_BLA
, bat_priv
,
1199 "bla_purge_claims(): %pM, vid %d, time out\n",
1200 claim
->addr
, claim
->vid
);
1203 batadv_handle_unclaim(bat_priv
, primary_if
,
1204 claim
->backbone_gw
->orig
,
1205 claim
->addr
, claim
->vid
);
1212 * batadv_bla_update_orig_address - Update the backbone gateways when the own
1213 * originator address changes
1214 * @bat_priv: the bat priv with all the soft interface information
1215 * @primary_if: the new selected primary_if
1216 * @oldif: the old primary interface, may be NULL
1218 void batadv_bla_update_orig_address(struct batadv_priv
*bat_priv
,
1219 struct batadv_hard_iface
*primary_if
,
1220 struct batadv_hard_iface
*oldif
)
1222 struct batadv_bla_backbone_gw
*backbone_gw
;
1223 struct hlist_head
*head
;
1224 struct batadv_hashtable
*hash
;
1228 /* reset bridge loop avoidance group id */
1229 group
= htons(crc16(0, primary_if
->net_dev
->dev_addr
, ETH_ALEN
));
1230 bat_priv
->bla
.claim_dest
.group
= group
;
1232 /* purge everything when bridge loop avoidance is turned off */
1233 if (!atomic_read(&bat_priv
->bridge_loop_avoidance
))
1237 batadv_bla_purge_claims(bat_priv
, NULL
, 1);
1238 batadv_bla_purge_backbone_gw(bat_priv
, 1);
1242 hash
= bat_priv
->bla
.backbone_hash
;
1246 for (i
= 0; i
< hash
->size
; i
++) {
1247 head
= &hash
->table
[i
];
1250 hlist_for_each_entry_rcu(backbone_gw
, head
, hash_entry
) {
1251 /* own orig still holds the old value. */
1252 if (!batadv_compare_eth(backbone_gw
->orig
,
1253 oldif
->net_dev
->dev_addr
))
1256 ether_addr_copy(backbone_gw
->orig
,
1257 primary_if
->net_dev
->dev_addr
);
1258 /* send an announce frame so others will ask for our
1259 * claims and update their tables.
1261 batadv_bla_send_announce(bat_priv
, backbone_gw
);
1268 * batadv_bla_status_update - purge bla interfaces if necessary
1269 * @net_dev: the soft interface net device
1271 void batadv_bla_status_update(struct net_device
*net_dev
)
1273 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
1274 struct batadv_hard_iface
*primary_if
;
1276 primary_if
= batadv_primary_if_get_selected(bat_priv
);
1280 /* this function already purges everything when bla is disabled,
1281 * so just call that one.
1283 batadv_bla_update_orig_address(bat_priv
, primary_if
, primary_if
);
1284 batadv_hardif_put(primary_if
);
1288 * batadv_bla_periodic_work - performs periodic bla work
1289 * @work: kernel work struct
1291 * periodic work to do:
1292 * * purge structures when they are too old
1293 * * send announcements
1295 static void batadv_bla_periodic_work(struct work_struct
*work
)
1297 struct delayed_work
*delayed_work
;
1298 struct batadv_priv
*bat_priv
;
1299 struct batadv_priv_bla
*priv_bla
;
1300 struct hlist_head
*head
;
1301 struct batadv_bla_backbone_gw
*backbone_gw
;
1302 struct batadv_hashtable
*hash
;
1303 struct batadv_hard_iface
*primary_if
;
1306 delayed_work
= container_of(work
, struct delayed_work
, work
);
1307 priv_bla
= container_of(delayed_work
, struct batadv_priv_bla
, work
);
1308 bat_priv
= container_of(priv_bla
, struct batadv_priv
, bla
);
1309 primary_if
= batadv_primary_if_get_selected(bat_priv
);
1313 batadv_bla_purge_claims(bat_priv
, primary_if
, 0);
1314 batadv_bla_purge_backbone_gw(bat_priv
, 0);
1316 if (!atomic_read(&bat_priv
->bridge_loop_avoidance
))
1319 hash
= bat_priv
->bla
.backbone_hash
;
1323 for (i
= 0; i
< hash
->size
; i
++) {
1324 head
= &hash
->table
[i
];
1327 hlist_for_each_entry_rcu(backbone_gw
, head
, hash_entry
) {
1328 if (!batadv_compare_eth(backbone_gw
->orig
,
1329 primary_if
->net_dev
->dev_addr
))
1332 backbone_gw
->lasttime
= jiffies
;
1334 batadv_bla_send_announce(bat_priv
, backbone_gw
);
1336 /* request_sent is only set after creation to avoid
1337 * problems when we are not yet known as backbone gw
1340 * We can reset this now after we waited some periods
1341 * to give bridge forward delays and bla group forming
1345 if (atomic_read(&backbone_gw
->request_sent
) == 0)
1348 if (!atomic_dec_and_test(&backbone_gw
->wait_periods
))
1351 atomic_dec(&backbone_gw
->bat_priv
->bla
.num_requests
);
1352 atomic_set(&backbone_gw
->request_sent
, 0);
1358 batadv_hardif_put(primary_if
);
1360 queue_delayed_work(batadv_event_workqueue
, &bat_priv
->bla
.work
,
1361 msecs_to_jiffies(BATADV_BLA_PERIOD_LENGTH
));
1364 /* The hash for claim and backbone hash receive the same key because they
1365 * are getting initialized by hash_new with the same key. Reinitializing
1366 * them with to different keys to allow nested locking without generating
1369 static struct lock_class_key batadv_claim_hash_lock_class_key
;
1370 static struct lock_class_key batadv_backbone_hash_lock_class_key
;
1373 * batadv_bla_init - initialize all bla structures
1374 * @bat_priv: the bat priv with all the soft interface information
1376 * Return: 0 on success, < 0 on error.
1378 int batadv_bla_init(struct batadv_priv
*bat_priv
)
1381 u8 claim_dest
[ETH_ALEN
] = {0xff, 0x43, 0x05, 0x00, 0x00, 0x00};
1382 struct batadv_hard_iface
*primary_if
;
1384 unsigned long entrytime
;
1386 spin_lock_init(&bat_priv
->bla
.bcast_duplist_lock
);
1388 batadv_dbg(BATADV_DBG_BLA
, bat_priv
, "bla hash registering\n");
1390 /* setting claim destination address */
1391 memcpy(&bat_priv
->bla
.claim_dest
.magic
, claim_dest
, 3);
1392 bat_priv
->bla
.claim_dest
.type
= 0;
1393 primary_if
= batadv_primary_if_get_selected(bat_priv
);
1395 crc
= crc16(0, primary_if
->net_dev
->dev_addr
, ETH_ALEN
);
1396 bat_priv
->bla
.claim_dest
.group
= htons(crc
);
1397 batadv_hardif_put(primary_if
);
1399 bat_priv
->bla
.claim_dest
.group
= 0; /* will be set later */
1402 /* initialize the duplicate list */
1403 entrytime
= jiffies
- msecs_to_jiffies(BATADV_DUPLIST_TIMEOUT
);
1404 for (i
= 0; i
< BATADV_DUPLIST_SIZE
; i
++)
1405 bat_priv
->bla
.bcast_duplist
[i
].entrytime
= entrytime
;
1406 bat_priv
->bla
.bcast_duplist_curr
= 0;
1408 if (bat_priv
->bla
.claim_hash
)
1411 bat_priv
->bla
.claim_hash
= batadv_hash_new(128);
1412 bat_priv
->bla
.backbone_hash
= batadv_hash_new(32);
1414 if (!bat_priv
->bla
.claim_hash
|| !bat_priv
->bla
.backbone_hash
)
1417 batadv_hash_set_lock_class(bat_priv
->bla
.claim_hash
,
1418 &batadv_claim_hash_lock_class_key
);
1419 batadv_hash_set_lock_class(bat_priv
->bla
.backbone_hash
,
1420 &batadv_backbone_hash_lock_class_key
);
1422 batadv_dbg(BATADV_DBG_BLA
, bat_priv
, "bla hashes initialized\n");
1424 INIT_DELAYED_WORK(&bat_priv
->bla
.work
, batadv_bla_periodic_work
);
1426 queue_delayed_work(batadv_event_workqueue
, &bat_priv
->bla
.work
,
1427 msecs_to_jiffies(BATADV_BLA_PERIOD_LENGTH
));
1432 * batadv_bla_check_bcast_duplist - Check if a frame is in the broadcast dup.
1433 * @bat_priv: the bat priv with all the soft interface information
1434 * @skb: contains the bcast_packet to be checked
1436 * check if it is on our broadcast list. Another gateway might
1437 * have sent the same packet because it is connected to the same backbone,
1438 * so we have to remove this duplicate.
1440 * This is performed by checking the CRC, which will tell us
1441 * with a good chance that it is the same packet. If it is furthermore
1442 * sent by another host, drop it. We allow equal packets from
1443 * the same host however as this might be intended.
1445 * Return: 1 if a packet is in the duplicate list, 0 otherwise.
1447 int batadv_bla_check_bcast_duplist(struct batadv_priv
*bat_priv
,
1448 struct sk_buff
*skb
)
1450 int i
, curr
, ret
= 0;
1452 struct batadv_bcast_packet
*bcast_packet
;
1453 struct batadv_bcast_duplist_entry
*entry
;
1455 bcast_packet
= (struct batadv_bcast_packet
*)skb
->data
;
1457 /* calculate the crc ... */
1458 crc
= batadv_skb_crc32(skb
, (u8
*)(bcast_packet
+ 1));
1460 spin_lock_bh(&bat_priv
->bla
.bcast_duplist_lock
);
1462 for (i
= 0; i
< BATADV_DUPLIST_SIZE
; i
++) {
1463 curr
= (bat_priv
->bla
.bcast_duplist_curr
+ i
);
1464 curr
%= BATADV_DUPLIST_SIZE
;
1465 entry
= &bat_priv
->bla
.bcast_duplist
[curr
];
1467 /* we can stop searching if the entry is too old ;
1468 * later entries will be even older
1470 if (batadv_has_timed_out(entry
->entrytime
,
1471 BATADV_DUPLIST_TIMEOUT
))
1474 if (entry
->crc
!= crc
)
1477 if (batadv_compare_eth(entry
->orig
, bcast_packet
->orig
))
1480 /* this entry seems to match: same crc, not too old,
1481 * and from another gw. therefore return 1 to forbid it.
1486 /* not found, add a new entry (overwrite the oldest entry)
1487 * and allow it, its the first occurrence.
1489 curr
= (bat_priv
->bla
.bcast_duplist_curr
+ BATADV_DUPLIST_SIZE
- 1);
1490 curr
%= BATADV_DUPLIST_SIZE
;
1491 entry
= &bat_priv
->bla
.bcast_duplist
[curr
];
1493 entry
->entrytime
= jiffies
;
1494 ether_addr_copy(entry
->orig
, bcast_packet
->orig
);
1495 bat_priv
->bla
.bcast_duplist_curr
= curr
;
1498 spin_unlock_bh(&bat_priv
->bla
.bcast_duplist_lock
);
1504 * batadv_bla_is_backbone_gw_orig - Check if the originator is a gateway for
1505 * the VLAN identified by vid.
1506 * @bat_priv: the bat priv with all the soft interface information
1507 * @orig: originator mac address
1508 * @vid: VLAN identifier
1510 * Return: true if orig is a backbone for this vid, false otherwise.
1512 bool batadv_bla_is_backbone_gw_orig(struct batadv_priv
*bat_priv
, u8
*orig
,
1515 struct batadv_hashtable
*hash
= bat_priv
->bla
.backbone_hash
;
1516 struct hlist_head
*head
;
1517 struct batadv_bla_backbone_gw
*backbone_gw
;
1520 if (!atomic_read(&bat_priv
->bridge_loop_avoidance
))
1526 for (i
= 0; i
< hash
->size
; i
++) {
1527 head
= &hash
->table
[i
];
1530 hlist_for_each_entry_rcu(backbone_gw
, head
, hash_entry
) {
1531 if (batadv_compare_eth(backbone_gw
->orig
, orig
) &&
1532 backbone_gw
->vid
== vid
) {
1544 * batadv_bla_is_backbone_gw - check if originator is a backbone gw for a VLAN.
1545 * @skb: the frame to be checked
1546 * @orig_node: the orig_node of the frame
1547 * @hdr_size: maximum length of the frame
1549 * Return: 1 if the orig_node is also a gateway on the soft interface, otherwise
1552 int batadv_bla_is_backbone_gw(struct sk_buff
*skb
,
1553 struct batadv_orig_node
*orig_node
, int hdr_size
)
1555 struct batadv_bla_backbone_gw
*backbone_gw
;
1558 if (!atomic_read(&orig_node
->bat_priv
->bridge_loop_avoidance
))
1561 /* first, find out the vid. */
1562 if (!pskb_may_pull(skb
, hdr_size
+ ETH_HLEN
))
1565 vid
= batadv_get_vid(skb
, hdr_size
);
1567 /* see if this originator is a backbone gw for this VLAN */
1568 backbone_gw
= batadv_backbone_hash_find(orig_node
->bat_priv
,
1569 orig_node
->orig
, vid
);
1573 batadv_backbone_gw_put(backbone_gw
);
1578 * batadv_bla_init - free all bla structures
1579 * @bat_priv: the bat priv with all the soft interface information
1581 * for softinterface free or module unload
1583 void batadv_bla_free(struct batadv_priv
*bat_priv
)
1585 struct batadv_hard_iface
*primary_if
;
1587 cancel_delayed_work_sync(&bat_priv
->bla
.work
);
1588 primary_if
= batadv_primary_if_get_selected(bat_priv
);
1590 if (bat_priv
->bla
.claim_hash
) {
1591 batadv_bla_purge_claims(bat_priv
, primary_if
, 1);
1592 batadv_hash_destroy(bat_priv
->bla
.claim_hash
);
1593 bat_priv
->bla
.claim_hash
= NULL
;
1595 if (bat_priv
->bla
.backbone_hash
) {
1596 batadv_bla_purge_backbone_gw(bat_priv
, 1);
1597 batadv_hash_destroy(bat_priv
->bla
.backbone_hash
);
1598 bat_priv
->bla
.backbone_hash
= NULL
;
1601 batadv_hardif_put(primary_if
);
1605 * batadv_bla_rx - check packets coming from the mesh.
1606 * @bat_priv: the bat priv with all the soft interface information
1607 * @skb: the frame to be checked
1608 * @vid: the VLAN ID of the frame
1609 * @is_bcast: the packet came in a broadcast packet type.
1611 * batadv_bla_rx avoidance checks if:
1612 * * we have to race for a claim
1613 * * if the frame is allowed on the LAN
1615 * in these cases, the skb is further handled by this function
1617 * Return: 1 if handled, otherwise it returns 0 and the caller shall further
1620 int batadv_bla_rx(struct batadv_priv
*bat_priv
, struct sk_buff
*skb
,
1621 unsigned short vid
, bool is_bcast
)
1623 struct ethhdr
*ethhdr
;
1624 struct batadv_bla_claim search_claim
, *claim
= NULL
;
1625 struct batadv_hard_iface
*primary_if
;
1628 ethhdr
= eth_hdr(skb
);
1630 primary_if
= batadv_primary_if_get_selected(bat_priv
);
1634 if (!atomic_read(&bat_priv
->bridge_loop_avoidance
))
1637 if (unlikely(atomic_read(&bat_priv
->bla
.num_requests
)))
1638 /* don't allow broadcasts while requests are in flight */
1639 if (is_multicast_ether_addr(ethhdr
->h_dest
) && is_bcast
)
1642 ether_addr_copy(search_claim
.addr
, ethhdr
->h_source
);
1643 search_claim
.vid
= vid
;
1644 claim
= batadv_claim_hash_find(bat_priv
, &search_claim
);
1647 /* possible optimization: race for a claim */
1648 /* No claim exists yet, claim it for us!
1650 batadv_handle_claim(bat_priv
, primary_if
,
1651 primary_if
->net_dev
->dev_addr
,
1652 ethhdr
->h_source
, vid
);
1656 /* if it is our own claim ... */
1657 if (batadv_compare_eth(claim
->backbone_gw
->orig
,
1658 primary_if
->net_dev
->dev_addr
)) {
1659 /* ... allow it in any case */
1660 claim
->lasttime
= jiffies
;
1664 /* if it is a broadcast ... */
1665 if (is_multicast_ether_addr(ethhdr
->h_dest
) && is_bcast
) {
1666 /* ... drop it. the responsible gateway is in charge.
1668 * We need to check is_bcast because with the gateway
1669 * feature, broadcasts (like DHCP requests) may be sent
1670 * using a unicast packet type.
1674 /* seems the client considers us as its best gateway.
1675 * send a claim and update the claim table
1678 batadv_handle_claim(bat_priv
, primary_if
,
1679 primary_if
->net_dev
->dev_addr
,
1680 ethhdr
->h_source
, vid
);
1684 batadv_bla_update_own_backbone_gw(bat_priv
, primary_if
, vid
);
1694 batadv_hardif_put(primary_if
);
1696 batadv_claim_put(claim
);
1701 * batadv_bla_tx - check packets going into the mesh
1702 * @bat_priv: the bat priv with all the soft interface information
1703 * @skb: the frame to be checked
1704 * @vid: the VLAN ID of the frame
1706 * batadv_bla_tx checks if:
1707 * * a claim was received which has to be processed
1708 * * the frame is allowed on the mesh
1710 * in these cases, the skb is further handled by this function.
1712 * This call might reallocate skb data.
1714 * Return: 1 if handled, otherwise it returns 0 and the caller shall further
1717 int batadv_bla_tx(struct batadv_priv
*bat_priv
, struct sk_buff
*skb
,
1720 struct ethhdr
*ethhdr
;
1721 struct batadv_bla_claim search_claim
, *claim
= NULL
;
1722 struct batadv_hard_iface
*primary_if
;
1725 primary_if
= batadv_primary_if_get_selected(bat_priv
);
1729 if (!atomic_read(&bat_priv
->bridge_loop_avoidance
))
1732 if (batadv_bla_process_claim(bat_priv
, primary_if
, skb
))
1735 ethhdr
= eth_hdr(skb
);
1737 if (unlikely(atomic_read(&bat_priv
->bla
.num_requests
)))
1738 /* don't allow broadcasts while requests are in flight */
1739 if (is_multicast_ether_addr(ethhdr
->h_dest
))
1742 ether_addr_copy(search_claim
.addr
, ethhdr
->h_source
);
1743 search_claim
.vid
= vid
;
1745 claim
= batadv_claim_hash_find(bat_priv
, &search_claim
);
1747 /* if no claim exists, allow it. */
1751 /* check if we are responsible. */
1752 if (batadv_compare_eth(claim
->backbone_gw
->orig
,
1753 primary_if
->net_dev
->dev_addr
)) {
1754 /* if yes, the client has roamed and we have
1757 batadv_handle_unclaim(bat_priv
, primary_if
,
1758 primary_if
->net_dev
->dev_addr
,
1759 ethhdr
->h_source
, vid
);
1763 /* check if it is a multicast/broadcast frame */
1764 if (is_multicast_ether_addr(ethhdr
->h_dest
)) {
1765 /* drop it. the responsible gateway has forwarded it into
1766 * the backbone network.
1770 /* we must allow it. at least if we are
1771 * responsible for the DESTINATION.
1776 batadv_bla_update_own_backbone_gw(bat_priv
, primary_if
, vid
);
1783 batadv_hardif_put(primary_if
);
1785 batadv_claim_put(claim
);
1790 * batadv_bla_claim_table_seq_print_text - print the claim table in a seq file
1791 * @seq: seq file to print on
1796 int batadv_bla_claim_table_seq_print_text(struct seq_file
*seq
, void *offset
)
1798 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
1799 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
1800 struct batadv_hashtable
*hash
= bat_priv
->bla
.claim_hash
;
1801 struct batadv_bla_claim
*claim
;
1802 struct batadv_hard_iface
*primary_if
;
1803 struct hlist_head
*head
;
1809 primary_if
= batadv_seq_print_text_primary_if_get(seq
);
1813 primary_addr
= primary_if
->net_dev
->dev_addr
;
1815 "Claims announced for the mesh %s (orig %pM, group id %#.4x)\n",
1816 net_dev
->name
, primary_addr
,
1817 ntohs(bat_priv
->bla
.claim_dest
.group
));
1818 seq_printf(seq
, " %-17s %-5s %-17s [o] (%-6s)\n",
1819 "Client", "VID", "Originator", "CRC");
1820 for (i
= 0; i
< hash
->size
; i
++) {
1821 head
= &hash
->table
[i
];
1824 hlist_for_each_entry_rcu(claim
, head
, hash_entry
) {
1825 is_own
= batadv_compare_eth(claim
->backbone_gw
->orig
,
1828 spin_lock_bh(&claim
->backbone_gw
->crc_lock
);
1829 backbone_crc
= claim
->backbone_gw
->crc
;
1830 spin_unlock_bh(&claim
->backbone_gw
->crc_lock
);
1831 seq_printf(seq
, " * %pM on %5d by %pM [%c] (%#.4x)\n",
1832 claim
->addr
, BATADV_PRINT_VID(claim
->vid
),
1833 claim
->backbone_gw
->orig
,
1834 (is_own
? 'x' : ' '),
1841 batadv_hardif_put(primary_if
);
1846 * batadv_bla_backbone_table_seq_print_text - print the backbone table in a seq
1848 * @seq: seq file to print on
1853 int batadv_bla_backbone_table_seq_print_text(struct seq_file
*seq
, void *offset
)
1855 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
1856 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
1857 struct batadv_hashtable
*hash
= bat_priv
->bla
.backbone_hash
;
1858 struct batadv_bla_backbone_gw
*backbone_gw
;
1859 struct batadv_hard_iface
*primary_if
;
1860 struct hlist_head
*head
;
1867 primary_if
= batadv_seq_print_text_primary_if_get(seq
);
1871 primary_addr
= primary_if
->net_dev
->dev_addr
;
1873 "Backbones announced for the mesh %s (orig %pM, group id %#.4x)\n",
1874 net_dev
->name
, primary_addr
,
1875 ntohs(bat_priv
->bla
.claim_dest
.group
));
1876 seq_printf(seq
, " %-17s %-5s %-9s (%-6s)\n",
1877 "Originator", "VID", "last seen", "CRC");
1878 for (i
= 0; i
< hash
->size
; i
++) {
1879 head
= &hash
->table
[i
];
1882 hlist_for_each_entry_rcu(backbone_gw
, head
, hash_entry
) {
1883 msecs
= jiffies_to_msecs(jiffies
-
1884 backbone_gw
->lasttime
);
1885 secs
= msecs
/ 1000;
1886 msecs
= msecs
% 1000;
1888 is_own
= batadv_compare_eth(backbone_gw
->orig
,
1893 spin_lock_bh(&backbone_gw
->crc_lock
);
1894 backbone_crc
= backbone_gw
->crc
;
1895 spin_unlock_bh(&backbone_gw
->crc_lock
);
1897 seq_printf(seq
, " * %pM on %5d %4i.%03is (%#.4x)\n",
1899 BATADV_PRINT_VID(backbone_gw
->vid
), secs
,
1900 msecs
, backbone_crc
);
1906 batadv_hardif_put(primary_if
);