1 /* Copyright (C) 2007-2014 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 <linux/crc32c.h>
19 #include <linux/highmem.h>
20 #include <linux/if_vlan.h>
23 #include <net/dsfield.h>
29 #include "originator.h"
30 #include "soft-interface.h"
31 #include "icmp_socket.h"
32 #include "translation-table.h"
33 #include "hard-interface.h"
34 #include "gateway_client.h"
35 #include "bridge_loop_avoidance.h"
36 #include "distributed-arp-table.h"
37 #include "gateway_common.h"
40 #include "network-coding.h"
41 #include "fragmentation.h"
44 /* List manipulations on hardif_list have to be rtnl_lock()'ed,
45 * list traversals just rcu-locked
47 struct list_head batadv_hardif_list
;
48 static int (*batadv_rx_handler
[256])(struct sk_buff
*,
49 struct batadv_hard_iface
*);
50 char batadv_routing_algo
[20] = "BATMAN_IV";
51 static struct hlist_head batadv_algo_list
;
53 unsigned char batadv_broadcast_addr
[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
55 struct workqueue_struct
*batadv_event_workqueue
;
57 static void batadv_recv_handler_init(void);
59 static int __init
batadv_init(void)
61 INIT_LIST_HEAD(&batadv_hardif_list
);
62 INIT_HLIST_HEAD(&batadv_algo_list
);
64 batadv_recv_handler_init();
69 batadv_event_workqueue
= create_singlethread_workqueue("bat_events");
71 if (!batadv_event_workqueue
)
75 batadv_debugfs_init();
77 register_netdevice_notifier(&batadv_hard_if_notifier
);
78 rtnl_link_register(&batadv_link_ops
);
80 pr_info("B.A.T.M.A.N. advanced %s (compatibility version %i) loaded\n",
81 BATADV_SOURCE_VERSION
, BATADV_COMPAT_VERSION
);
86 static void __exit
batadv_exit(void)
88 batadv_debugfs_destroy();
89 rtnl_link_unregister(&batadv_link_ops
);
90 unregister_netdevice_notifier(&batadv_hard_if_notifier
);
91 batadv_hardif_remove_interfaces();
93 flush_workqueue(batadv_event_workqueue
);
94 destroy_workqueue(batadv_event_workqueue
);
95 batadv_event_workqueue
= NULL
;
100 int batadv_mesh_init(struct net_device
*soft_iface
)
102 struct batadv_priv
*bat_priv
= netdev_priv(soft_iface
);
105 spin_lock_init(&bat_priv
->forw_bat_list_lock
);
106 spin_lock_init(&bat_priv
->forw_bcast_list_lock
);
107 spin_lock_init(&bat_priv
->tt
.changes_list_lock
);
108 spin_lock_init(&bat_priv
->tt
.req_list_lock
);
109 spin_lock_init(&bat_priv
->tt
.roam_list_lock
);
110 spin_lock_init(&bat_priv
->tt
.last_changeset_lock
);
111 spin_lock_init(&bat_priv
->tt
.commit_lock
);
112 spin_lock_init(&bat_priv
->gw
.list_lock
);
113 spin_lock_init(&bat_priv
->tvlv
.container_list_lock
);
114 spin_lock_init(&bat_priv
->tvlv
.handler_list_lock
);
115 spin_lock_init(&bat_priv
->softif_vlan_list_lock
);
117 INIT_HLIST_HEAD(&bat_priv
->forw_bat_list
);
118 INIT_HLIST_HEAD(&bat_priv
->forw_bcast_list
);
119 INIT_HLIST_HEAD(&bat_priv
->gw
.list
);
120 INIT_LIST_HEAD(&bat_priv
->tt
.changes_list
);
121 INIT_LIST_HEAD(&bat_priv
->tt
.req_list
);
122 INIT_LIST_HEAD(&bat_priv
->tt
.roam_list
);
123 INIT_HLIST_HEAD(&bat_priv
->tvlv
.container_list
);
124 INIT_HLIST_HEAD(&bat_priv
->tvlv
.handler_list
);
125 INIT_HLIST_HEAD(&bat_priv
->softif_vlan_list
);
127 ret
= batadv_originator_init(bat_priv
);
131 ret
= batadv_tt_init(bat_priv
);
135 ret
= batadv_bla_init(bat_priv
);
139 ret
= batadv_dat_init(bat_priv
);
143 ret
= batadv_nc_mesh_init(bat_priv
);
147 batadv_gw_init(bat_priv
);
149 atomic_set(&bat_priv
->gw
.reselect
, 0);
150 atomic_set(&bat_priv
->mesh_state
, BATADV_MESH_ACTIVE
);
155 batadv_mesh_free(soft_iface
);
159 void batadv_mesh_free(struct net_device
*soft_iface
)
161 struct batadv_priv
*bat_priv
= netdev_priv(soft_iface
);
163 atomic_set(&bat_priv
->mesh_state
, BATADV_MESH_DEACTIVATING
);
165 batadv_purge_outstanding_packets(bat_priv
, NULL
);
167 batadv_gw_node_purge(bat_priv
);
168 batadv_nc_mesh_free(bat_priv
);
169 batadv_dat_free(bat_priv
);
170 batadv_bla_free(bat_priv
);
172 /* Free the TT and the originator tables only after having terminated
173 * all the other depending components which may use these structures for
176 batadv_tt_free(bat_priv
);
178 /* Since the originator table clean up routine is accessing the TT
179 * tables as well, it has to be invoked after the TT tables have been
180 * freed and marked as empty. This ensures that no cleanup RCU callbacks
181 * accessing the TT data are scheduled for later execution.
183 batadv_originator_free(bat_priv
);
185 batadv_gw_free(bat_priv
);
187 free_percpu(bat_priv
->bat_counters
);
188 bat_priv
->bat_counters
= NULL
;
190 atomic_set(&bat_priv
->mesh_state
, BATADV_MESH_INACTIVE
);
194 * batadv_is_my_mac - check if the given mac address belongs to any of the real
195 * interfaces in the current mesh
196 * @bat_priv: the bat priv with all the soft interface information
197 * @addr: the address to check
199 int batadv_is_my_mac(struct batadv_priv
*bat_priv
, const uint8_t *addr
)
201 const struct batadv_hard_iface
*hard_iface
;
204 list_for_each_entry_rcu(hard_iface
, &batadv_hardif_list
, list
) {
205 if (hard_iface
->if_status
!= BATADV_IF_ACTIVE
)
208 if (hard_iface
->soft_iface
!= bat_priv
->soft_iface
)
211 if (batadv_compare_eth(hard_iface
->net_dev
->dev_addr
, addr
)) {
221 * batadv_seq_print_text_primary_if_get - called from debugfs table printing
222 * function that requires the primary interface
223 * @seq: debugfs table seq_file struct
225 * Returns primary interface if found or NULL otherwise.
227 struct batadv_hard_iface
*
228 batadv_seq_print_text_primary_if_get(struct seq_file
*seq
)
230 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
231 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
232 struct batadv_hard_iface
*primary_if
;
234 primary_if
= batadv_primary_if_get_selected(bat_priv
);
238 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
243 if (primary_if
->if_status
== BATADV_IF_ACTIVE
)
247 "BATMAN mesh %s disabled - primary interface not active\n",
249 batadv_hardif_free_ref(primary_if
);
257 * batadv_max_header_len - calculate maximum encapsulation overhead for a
260 * Return the maximum encapsulation overhead in bytes.
262 int batadv_max_header_len(void)
266 header_len
= max_t(int, header_len
,
267 sizeof(struct batadv_unicast_packet
));
268 header_len
= max_t(int, header_len
,
269 sizeof(struct batadv_unicast_4addr_packet
));
270 header_len
= max_t(int, header_len
,
271 sizeof(struct batadv_bcast_packet
));
273 #ifdef CONFIG_BATMAN_ADV_NC
274 header_len
= max_t(int, header_len
,
275 sizeof(struct batadv_coded_packet
));
278 return header_len
+ ETH_HLEN
;
282 * batadv_skb_set_priority - sets skb priority according to packet content
283 * @skb: the packet to be sent
284 * @offset: offset to the packet content
286 * This function sets a value between 256 and 263 (802.1d priority), which
287 * can be interpreted by the cfg80211 or other drivers.
289 void batadv_skb_set_priority(struct sk_buff
*skb
, int offset
)
291 struct iphdr ip_hdr_tmp
, *ip_hdr
;
292 struct ipv6hdr ip6_hdr_tmp
, *ip6_hdr
;
293 struct ethhdr ethhdr_tmp
, *ethhdr
;
294 struct vlan_ethhdr
*vhdr
, vhdr_tmp
;
297 /* already set, do nothing */
298 if (skb
->priority
>= 256 && skb
->priority
<= 263)
301 ethhdr
= skb_header_pointer(skb
, offset
, sizeof(*ethhdr
), ðhdr_tmp
);
305 switch (ethhdr
->h_proto
) {
306 case htons(ETH_P_8021Q
):
307 vhdr
= skb_header_pointer(skb
, offset
+ sizeof(*vhdr
),
308 sizeof(*vhdr
), &vhdr_tmp
);
311 prio
= ntohs(vhdr
->h_vlan_TCI
) & VLAN_PRIO_MASK
;
312 prio
= prio
>> VLAN_PRIO_SHIFT
;
314 case htons(ETH_P_IP
):
315 ip_hdr
= skb_header_pointer(skb
, offset
+ sizeof(*ethhdr
),
316 sizeof(*ip_hdr
), &ip_hdr_tmp
);
319 prio
= (ipv4_get_dsfield(ip_hdr
) & 0xfc) >> 5;
321 case htons(ETH_P_IPV6
):
322 ip6_hdr
= skb_header_pointer(skb
, offset
+ sizeof(*ethhdr
),
323 sizeof(*ip6_hdr
), &ip6_hdr_tmp
);
326 prio
= (ipv6_get_dsfield(ip6_hdr
) & 0xfc) >> 5;
332 skb
->priority
= prio
+ 256;
335 static int batadv_recv_unhandled_packet(struct sk_buff
*skb
,
336 struct batadv_hard_iface
*recv_if
)
341 /* incoming packets with the batman ethertype received on any active hard
344 int batadv_batman_skb_recv(struct sk_buff
*skb
, struct net_device
*dev
,
345 struct packet_type
*ptype
,
346 struct net_device
*orig_dev
)
348 struct batadv_priv
*bat_priv
;
349 struct batadv_ogm_packet
*batadv_ogm_packet
;
350 struct batadv_hard_iface
*hard_iface
;
354 hard_iface
= container_of(ptype
, struct batadv_hard_iface
,
356 skb
= skb_share_check(skb
, GFP_ATOMIC
);
358 /* skb was released by skb_share_check() */
362 /* packet should hold at least type and version */
363 if (unlikely(!pskb_may_pull(skb
, 2)))
366 /* expect a valid ethernet header here. */
367 if (unlikely(skb
->mac_len
!= ETH_HLEN
|| !skb_mac_header(skb
)))
370 if (!hard_iface
->soft_iface
)
373 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
375 if (atomic_read(&bat_priv
->mesh_state
) != BATADV_MESH_ACTIVE
)
378 /* discard frames on not active interfaces */
379 if (hard_iface
->if_status
!= BATADV_IF_ACTIVE
)
382 batadv_ogm_packet
= (struct batadv_ogm_packet
*)skb
->data
;
384 if (batadv_ogm_packet
->version
!= BATADV_COMPAT_VERSION
) {
385 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
386 "Drop packet: incompatible batman version (%i)\n",
387 batadv_ogm_packet
->version
);
391 /* all receive handlers return whether they received or reused
392 * the supplied skb. if not, we have to free the skb.
394 idx
= batadv_ogm_packet
->packet_type
;
395 ret
= (*batadv_rx_handler
[idx
])(skb
, hard_iface
);
397 if (ret
== NET_RX_DROP
)
400 /* return NET_RX_SUCCESS in any case as we
401 * most probably dropped the packet for
402 * routing-logical reasons.
404 return NET_RX_SUCCESS
;
412 static void batadv_recv_handler_init(void)
416 for (i
= 0; i
< ARRAY_SIZE(batadv_rx_handler
); i
++)
417 batadv_rx_handler
[i
] = batadv_recv_unhandled_packet
;
419 for (i
= BATADV_UNICAST_MIN
; i
<= BATADV_UNICAST_MAX
; i
++)
420 batadv_rx_handler
[i
] = batadv_recv_unhandled_unicast_packet
;
422 /* compile time checks for sizes */
423 BUILD_BUG_ON(sizeof(struct batadv_bla_claim_dst
) != 6);
424 BUILD_BUG_ON(sizeof(struct batadv_ogm_packet
) != 24);
425 BUILD_BUG_ON(sizeof(struct batadv_icmp_header
) != 20);
426 BUILD_BUG_ON(sizeof(struct batadv_icmp_packet
) != 20);
427 BUILD_BUG_ON(sizeof(struct batadv_icmp_packet_rr
) != 116);
428 BUILD_BUG_ON(sizeof(struct batadv_unicast_packet
) != 10);
429 BUILD_BUG_ON(sizeof(struct batadv_unicast_4addr_packet
) != 18);
430 BUILD_BUG_ON(sizeof(struct batadv_frag_packet
) != 20);
431 BUILD_BUG_ON(sizeof(struct batadv_bcast_packet
) != 14);
432 BUILD_BUG_ON(sizeof(struct batadv_coded_packet
) != 46);
433 BUILD_BUG_ON(sizeof(struct batadv_unicast_tvlv_packet
) != 20);
434 BUILD_BUG_ON(sizeof(struct batadv_tvlv_hdr
) != 4);
435 BUILD_BUG_ON(sizeof(struct batadv_tvlv_gateway_data
) != 8);
436 BUILD_BUG_ON(sizeof(struct batadv_tvlv_tt_vlan_data
) != 8);
437 BUILD_BUG_ON(sizeof(struct batadv_tvlv_tt_change
) != 12);
438 BUILD_BUG_ON(sizeof(struct batadv_tvlv_roam_adv
) != 8);
440 /* broadcast packet */
441 batadv_rx_handler
[BATADV_BCAST
] = batadv_recv_bcast_packet
;
443 /* unicast packets ... */
444 /* unicast with 4 addresses packet */
445 batadv_rx_handler
[BATADV_UNICAST_4ADDR
] = batadv_recv_unicast_packet
;
447 batadv_rx_handler
[BATADV_UNICAST
] = batadv_recv_unicast_packet
;
448 /* unicast tvlv packet */
449 batadv_rx_handler
[BATADV_UNICAST_TVLV
] = batadv_recv_unicast_tvlv
;
450 /* batman icmp packet */
451 batadv_rx_handler
[BATADV_ICMP
] = batadv_recv_icmp_packet
;
452 /* Fragmented packets */
453 batadv_rx_handler
[BATADV_UNICAST_FRAG
] = batadv_recv_frag_packet
;
457 batadv_recv_handler_register(uint8_t packet_type
,
458 int (*recv_handler
)(struct sk_buff
*,
459 struct batadv_hard_iface
*))
461 int (*curr
)(struct sk_buff
*,
462 struct batadv_hard_iface
*);
463 curr
= batadv_rx_handler
[packet_type
];
465 if ((curr
!= batadv_recv_unhandled_packet
) &&
466 (curr
!= batadv_recv_unhandled_unicast_packet
))
469 batadv_rx_handler
[packet_type
] = recv_handler
;
473 void batadv_recv_handler_unregister(uint8_t packet_type
)
475 batadv_rx_handler
[packet_type
] = batadv_recv_unhandled_packet
;
478 static struct batadv_algo_ops
*batadv_algo_get(char *name
)
480 struct batadv_algo_ops
*bat_algo_ops
= NULL
, *bat_algo_ops_tmp
;
482 hlist_for_each_entry(bat_algo_ops_tmp
, &batadv_algo_list
, list
) {
483 if (strcmp(bat_algo_ops_tmp
->name
, name
) != 0)
486 bat_algo_ops
= bat_algo_ops_tmp
;
493 int batadv_algo_register(struct batadv_algo_ops
*bat_algo_ops
)
495 struct batadv_algo_ops
*bat_algo_ops_tmp
;
498 bat_algo_ops_tmp
= batadv_algo_get(bat_algo_ops
->name
);
499 if (bat_algo_ops_tmp
) {
500 pr_info("Trying to register already registered routing algorithm: %s\n",
506 /* all algorithms must implement all ops (for now) */
507 if (!bat_algo_ops
->bat_iface_enable
||
508 !bat_algo_ops
->bat_iface_disable
||
509 !bat_algo_ops
->bat_iface_update_mac
||
510 !bat_algo_ops
->bat_primary_iface_set
||
511 !bat_algo_ops
->bat_ogm_schedule
||
512 !bat_algo_ops
->bat_ogm_emit
||
513 !bat_algo_ops
->bat_neigh_cmp
||
514 !bat_algo_ops
->bat_neigh_is_equiv_or_better
) {
515 pr_info("Routing algo '%s' does not implement required ops\n",
521 INIT_HLIST_NODE(&bat_algo_ops
->list
);
522 hlist_add_head(&bat_algo_ops
->list
, &batadv_algo_list
);
529 int batadv_algo_select(struct batadv_priv
*bat_priv
, char *name
)
531 struct batadv_algo_ops
*bat_algo_ops
;
534 bat_algo_ops
= batadv_algo_get(name
);
538 bat_priv
->bat_algo_ops
= bat_algo_ops
;
545 int batadv_algo_seq_print_text(struct seq_file
*seq
, void *offset
)
547 struct batadv_algo_ops
*bat_algo_ops
;
549 seq_puts(seq
, "Available routing algorithms:\n");
551 hlist_for_each_entry(bat_algo_ops
, &batadv_algo_list
, list
) {
552 seq_printf(seq
, "%s\n", bat_algo_ops
->name
);
559 * batadv_skb_crc32 - calculate CRC32 of the whole packet and skip bytes in
561 * @skb: skb pointing to fragmented socket buffers
562 * @payload_ptr: Pointer to position inside the head buffer of the skb
563 * marking the start of the data to be CRC'ed
565 * payload_ptr must always point to an address in the skb head buffer and not to
568 __be32
batadv_skb_crc32(struct sk_buff
*skb
, u8
*payload_ptr
)
572 unsigned int to
= skb
->len
;
573 struct skb_seq_state st
;
576 unsigned int consumed
= 0;
578 from
= (unsigned int)(payload_ptr
- skb
->data
);
580 skb_prepare_seq_read(skb
, from
, to
, &st
);
581 while ((len
= skb_seq_read(consumed
, &data
, &st
)) != 0) {
582 crc
= crc32c(crc
, data
, len
);
590 * batadv_tvlv_handler_free_ref - decrement the tvlv handler refcounter and
592 * @tvlv_handler: the tvlv handler to free
595 batadv_tvlv_handler_free_ref(struct batadv_tvlv_handler
*tvlv_handler
)
597 if (atomic_dec_and_test(&tvlv_handler
->refcount
))
598 kfree_rcu(tvlv_handler
, rcu
);
602 * batadv_tvlv_handler_get - retrieve tvlv handler from the tvlv handler list
603 * based on the provided type and version (both need to match)
604 * @bat_priv: the bat priv with all the soft interface information
605 * @type: tvlv handler type to look for
606 * @version: tvlv handler version to look for
608 * Returns tvlv handler if found or NULL otherwise.
610 static struct batadv_tvlv_handler
611 *batadv_tvlv_handler_get(struct batadv_priv
*bat_priv
,
612 uint8_t type
, uint8_t version
)
614 struct batadv_tvlv_handler
*tvlv_handler_tmp
, *tvlv_handler
= NULL
;
617 hlist_for_each_entry_rcu(tvlv_handler_tmp
,
618 &bat_priv
->tvlv
.handler_list
, list
) {
619 if (tvlv_handler_tmp
->type
!= type
)
622 if (tvlv_handler_tmp
->version
!= version
)
625 if (!atomic_inc_not_zero(&tvlv_handler_tmp
->refcount
))
628 tvlv_handler
= tvlv_handler_tmp
;
637 * batadv_tvlv_container_free_ref - decrement the tvlv container refcounter and
639 * @tvlv_handler: the tvlv container to free
641 static void batadv_tvlv_container_free_ref(struct batadv_tvlv_container
*tvlv
)
643 if (atomic_dec_and_test(&tvlv
->refcount
))
648 * batadv_tvlv_container_get - retrieve tvlv container from the tvlv container
649 * list based on the provided type and version (both need to match)
650 * @bat_priv: the bat priv with all the soft interface information
651 * @type: tvlv container type to look for
652 * @version: tvlv container version to look for
654 * Has to be called with the appropriate locks being acquired
655 * (tvlv.container_list_lock).
657 * Returns tvlv container if found or NULL otherwise.
659 static struct batadv_tvlv_container
660 *batadv_tvlv_container_get(struct batadv_priv
*bat_priv
,
661 uint8_t type
, uint8_t version
)
663 struct batadv_tvlv_container
*tvlv_tmp
, *tvlv
= NULL
;
665 hlist_for_each_entry(tvlv_tmp
, &bat_priv
->tvlv
.container_list
, list
) {
666 if (tvlv_tmp
->tvlv_hdr
.type
!= type
)
669 if (tvlv_tmp
->tvlv_hdr
.version
!= version
)
672 if (!atomic_inc_not_zero(&tvlv_tmp
->refcount
))
683 * batadv_tvlv_container_list_size - calculate the size of the tvlv container
685 * @bat_priv: the bat priv with all the soft interface information
687 * Has to be called with the appropriate locks being acquired
688 * (tvlv.container_list_lock).
690 * Returns size of all currently registered tvlv containers in bytes.
692 static uint16_t batadv_tvlv_container_list_size(struct batadv_priv
*bat_priv
)
694 struct batadv_tvlv_container
*tvlv
;
695 uint16_t tvlv_len
= 0;
697 hlist_for_each_entry(tvlv
, &bat_priv
->tvlv
.container_list
, list
) {
698 tvlv_len
+= sizeof(struct batadv_tvlv_hdr
);
699 tvlv_len
+= ntohs(tvlv
->tvlv_hdr
.len
);
706 * batadv_tvlv_container_remove - remove tvlv container from the tvlv container
708 * @tvlv: the to be removed tvlv container
710 * Has to be called with the appropriate locks being acquired
711 * (tvlv.container_list_lock).
713 static void batadv_tvlv_container_remove(struct batadv_tvlv_container
*tvlv
)
718 hlist_del(&tvlv
->list
);
720 /* first call to decrement the counter, second call to free */
721 batadv_tvlv_container_free_ref(tvlv
);
722 batadv_tvlv_container_free_ref(tvlv
);
726 * batadv_tvlv_container_unregister - unregister tvlv container based on the
727 * provided type and version (both need to match)
728 * @bat_priv: the bat priv with all the soft interface information
729 * @type: tvlv container type to unregister
730 * @version: tvlv container type to unregister
732 void batadv_tvlv_container_unregister(struct batadv_priv
*bat_priv
,
733 uint8_t type
, uint8_t version
)
735 struct batadv_tvlv_container
*tvlv
;
737 spin_lock_bh(&bat_priv
->tvlv
.container_list_lock
);
738 tvlv
= batadv_tvlv_container_get(bat_priv
, type
, version
);
739 batadv_tvlv_container_remove(tvlv
);
740 spin_unlock_bh(&bat_priv
->tvlv
.container_list_lock
);
744 * batadv_tvlv_container_register - register tvlv type, version and content
745 * to be propagated with each (primary interface) OGM
746 * @bat_priv: the bat priv with all the soft interface information
747 * @type: tvlv container type
748 * @version: tvlv container version
749 * @tvlv_value: tvlv container content
750 * @tvlv_value_len: tvlv container content length
752 * If a container of the same type and version was already registered the new
753 * content is going to replace the old one.
755 void batadv_tvlv_container_register(struct batadv_priv
*bat_priv
,
756 uint8_t type
, uint8_t version
,
757 void *tvlv_value
, uint16_t tvlv_value_len
)
759 struct batadv_tvlv_container
*tvlv_old
, *tvlv_new
;
764 tvlv_new
= kzalloc(sizeof(*tvlv_new
) + tvlv_value_len
, GFP_ATOMIC
);
768 tvlv_new
->tvlv_hdr
.version
= version
;
769 tvlv_new
->tvlv_hdr
.type
= type
;
770 tvlv_new
->tvlv_hdr
.len
= htons(tvlv_value_len
);
772 memcpy(tvlv_new
+ 1, tvlv_value
, ntohs(tvlv_new
->tvlv_hdr
.len
));
773 INIT_HLIST_NODE(&tvlv_new
->list
);
774 atomic_set(&tvlv_new
->refcount
, 1);
776 spin_lock_bh(&bat_priv
->tvlv
.container_list_lock
);
777 tvlv_old
= batadv_tvlv_container_get(bat_priv
, type
, version
);
778 batadv_tvlv_container_remove(tvlv_old
);
779 hlist_add_head(&tvlv_new
->list
, &bat_priv
->tvlv
.container_list
);
780 spin_unlock_bh(&bat_priv
->tvlv
.container_list_lock
);
784 * batadv_tvlv_realloc_packet_buff - reallocate packet buffer to accomodate
785 * requested packet size
786 * @packet_buff: packet buffer
787 * @packet_buff_len: packet buffer size
788 * @packet_min_len: requested packet minimum size
789 * @additional_packet_len: requested additional packet size on top of minimum
792 * Returns true of the packet buffer could be changed to the requested size,
795 static bool batadv_tvlv_realloc_packet_buff(unsigned char **packet_buff
,
796 int *packet_buff_len
,
798 int additional_packet_len
)
800 unsigned char *new_buff
;
802 new_buff
= kmalloc(min_packet_len
+ additional_packet_len
, GFP_ATOMIC
);
804 /* keep old buffer if kmalloc should fail */
806 memcpy(new_buff
, *packet_buff
, min_packet_len
);
808 *packet_buff
= new_buff
;
809 *packet_buff_len
= min_packet_len
+ additional_packet_len
;
817 * batadv_tvlv_container_ogm_append - append tvlv container content to given
819 * @bat_priv: the bat priv with all the soft interface information
820 * @packet_buff: ogm packet buffer
821 * @packet_buff_len: ogm packet buffer size including ogm header and tvlv
823 * @packet_min_len: ogm header size to be preserved for the OGM itself
825 * The ogm packet might be enlarged or shrunk depending on the current size
826 * and the size of the to-be-appended tvlv containers.
828 * Returns size of all appended tvlv containers in bytes.
830 uint16_t batadv_tvlv_container_ogm_append(struct batadv_priv
*bat_priv
,
831 unsigned char **packet_buff
,
832 int *packet_buff_len
,
835 struct batadv_tvlv_container
*tvlv
;
836 struct batadv_tvlv_hdr
*tvlv_hdr
;
837 uint16_t tvlv_value_len
;
841 spin_lock_bh(&bat_priv
->tvlv
.container_list_lock
);
842 tvlv_value_len
= batadv_tvlv_container_list_size(bat_priv
);
844 ret
= batadv_tvlv_realloc_packet_buff(packet_buff
, packet_buff_len
,
845 packet_min_len
, tvlv_value_len
);
853 tvlv_value
= (*packet_buff
) + packet_min_len
;
855 hlist_for_each_entry(tvlv
, &bat_priv
->tvlv
.container_list
, list
) {
856 tvlv_hdr
= tvlv_value
;
857 tvlv_hdr
->type
= tvlv
->tvlv_hdr
.type
;
858 tvlv_hdr
->version
= tvlv
->tvlv_hdr
.version
;
859 tvlv_hdr
->len
= tvlv
->tvlv_hdr
.len
;
860 tvlv_value
= tvlv_hdr
+ 1;
861 memcpy(tvlv_value
, tvlv
+ 1, ntohs(tvlv
->tvlv_hdr
.len
));
862 tvlv_value
= (uint8_t *)tvlv_value
+ ntohs(tvlv
->tvlv_hdr
.len
);
866 spin_unlock_bh(&bat_priv
->tvlv
.container_list_lock
);
867 return tvlv_value_len
;
871 * batadv_tvlv_call_handler - parse the given tvlv buffer to call the
872 * appropriate handlers
873 * @bat_priv: the bat priv with all the soft interface information
874 * @tvlv_handler: tvlv callback function handling the tvlv content
875 * @ogm_source: flag indicating wether the tvlv is an ogm or a unicast packet
876 * @orig_node: orig node emitting the ogm packet
877 * @src: source mac address of the unicast packet
878 * @dst: destination mac address of the unicast packet
879 * @tvlv_value: tvlv content
880 * @tvlv_value_len: tvlv content length
882 * Returns success if handler was not found or the return value of the handler
885 static int batadv_tvlv_call_handler(struct batadv_priv
*bat_priv
,
886 struct batadv_tvlv_handler
*tvlv_handler
,
888 struct batadv_orig_node
*orig_node
,
889 uint8_t *src
, uint8_t *dst
,
890 void *tvlv_value
, uint16_t tvlv_value_len
)
893 return NET_RX_SUCCESS
;
896 if (!tvlv_handler
->ogm_handler
)
897 return NET_RX_SUCCESS
;
900 return NET_RX_SUCCESS
;
902 tvlv_handler
->ogm_handler(bat_priv
, orig_node
,
904 tvlv_value
, tvlv_value_len
);
905 tvlv_handler
->flags
|= BATADV_TVLV_HANDLER_OGM_CALLED
;
908 return NET_RX_SUCCESS
;
911 return NET_RX_SUCCESS
;
913 if (!tvlv_handler
->unicast_handler
)
914 return NET_RX_SUCCESS
;
916 return tvlv_handler
->unicast_handler(bat_priv
, src
,
921 return NET_RX_SUCCESS
;
925 * batadv_tvlv_containers_process - parse the given tvlv buffer to call the
926 * appropriate handlers
927 * @bat_priv: the bat priv with all the soft interface information
928 * @ogm_source: flag indicating wether the tvlv is an ogm or a unicast packet
929 * @orig_node: orig node emitting the ogm packet
930 * @src: source mac address of the unicast packet
931 * @dst: destination mac address of the unicast packet
932 * @tvlv_value: tvlv content
933 * @tvlv_value_len: tvlv content length
935 * Returns success when processing an OGM or the return value of all called
938 int batadv_tvlv_containers_process(struct batadv_priv
*bat_priv
,
940 struct batadv_orig_node
*orig_node
,
941 uint8_t *src
, uint8_t *dst
,
942 void *tvlv_value
, uint16_t tvlv_value_len
)
944 struct batadv_tvlv_handler
*tvlv_handler
;
945 struct batadv_tvlv_hdr
*tvlv_hdr
;
946 uint16_t tvlv_value_cont_len
;
947 uint8_t cifnotfound
= BATADV_TVLV_HANDLER_OGM_CIFNOTFND
;
948 int ret
= NET_RX_SUCCESS
;
950 while (tvlv_value_len
>= sizeof(*tvlv_hdr
)) {
951 tvlv_hdr
= tvlv_value
;
952 tvlv_value_cont_len
= ntohs(tvlv_hdr
->len
);
953 tvlv_value
= tvlv_hdr
+ 1;
954 tvlv_value_len
-= sizeof(*tvlv_hdr
);
956 if (tvlv_value_cont_len
> tvlv_value_len
)
959 tvlv_handler
= batadv_tvlv_handler_get(bat_priv
,
963 ret
|= batadv_tvlv_call_handler(bat_priv
, tvlv_handler
,
964 ogm_source
, orig_node
,
965 src
, dst
, tvlv_value
,
966 tvlv_value_cont_len
);
968 batadv_tvlv_handler_free_ref(tvlv_handler
);
969 tvlv_value
= (uint8_t *)tvlv_value
+ tvlv_value_cont_len
;
970 tvlv_value_len
-= tvlv_value_cont_len
;
977 hlist_for_each_entry_rcu(tvlv_handler
,
978 &bat_priv
->tvlv
.handler_list
, list
) {
979 if ((tvlv_handler
->flags
& BATADV_TVLV_HANDLER_OGM_CIFNOTFND
) &&
980 !(tvlv_handler
->flags
& BATADV_TVLV_HANDLER_OGM_CALLED
))
981 tvlv_handler
->ogm_handler(bat_priv
, orig_node
,
982 cifnotfound
, NULL
, 0);
984 tvlv_handler
->flags
&= ~BATADV_TVLV_HANDLER_OGM_CALLED
;
988 return NET_RX_SUCCESS
;
992 * batadv_tvlv_ogm_receive - process an incoming ogm and call the appropriate
994 * @bat_priv: the bat priv with all the soft interface information
995 * @batadv_ogm_packet: ogm packet containing the tvlv containers
996 * @orig_node: orig node emitting the ogm packet
998 void batadv_tvlv_ogm_receive(struct batadv_priv
*bat_priv
,
999 struct batadv_ogm_packet
*batadv_ogm_packet
,
1000 struct batadv_orig_node
*orig_node
)
1003 uint16_t tvlv_value_len
;
1005 if (!batadv_ogm_packet
)
1008 tvlv_value_len
= ntohs(batadv_ogm_packet
->tvlv_len
);
1009 if (!tvlv_value_len
)
1012 tvlv_value
= batadv_ogm_packet
+ 1;
1014 batadv_tvlv_containers_process(bat_priv
, true, orig_node
, NULL
, NULL
,
1015 tvlv_value
, tvlv_value_len
);
1019 * batadv_tvlv_handler_register - register tvlv handler based on the provided
1020 * type and version (both need to match) for ogm tvlv payload and/or unicast
1022 * @bat_priv: the bat priv with all the soft interface information
1023 * @optr: ogm tvlv handler callback function. This function receives the orig
1024 * node, flags and the tvlv content as argument to process.
1025 * @uptr: unicast tvlv handler callback function. This function receives the
1026 * source & destination of the unicast packet as well as the tvlv content
1028 * @type: tvlv handler type to be registered
1029 * @version: tvlv handler version to be registered
1030 * @flags: flags to enable or disable TVLV API behavior
1032 void batadv_tvlv_handler_register(struct batadv_priv
*bat_priv
,
1033 void (*optr
)(struct batadv_priv
*bat_priv
,
1034 struct batadv_orig_node
*orig
,
1037 uint16_t tvlv_value_len
),
1038 int (*uptr
)(struct batadv_priv
*bat_priv
,
1039 uint8_t *src
, uint8_t *dst
,
1041 uint16_t tvlv_value_len
),
1042 uint8_t type
, uint8_t version
, uint8_t flags
)
1044 struct batadv_tvlv_handler
*tvlv_handler
;
1046 tvlv_handler
= batadv_tvlv_handler_get(bat_priv
, type
, version
);
1048 batadv_tvlv_handler_free_ref(tvlv_handler
);
1052 tvlv_handler
= kzalloc(sizeof(*tvlv_handler
), GFP_ATOMIC
);
1056 tvlv_handler
->ogm_handler
= optr
;
1057 tvlv_handler
->unicast_handler
= uptr
;
1058 tvlv_handler
->type
= type
;
1059 tvlv_handler
->version
= version
;
1060 tvlv_handler
->flags
= flags
;
1061 atomic_set(&tvlv_handler
->refcount
, 1);
1062 INIT_HLIST_NODE(&tvlv_handler
->list
);
1064 spin_lock_bh(&bat_priv
->tvlv
.handler_list_lock
);
1065 hlist_add_head_rcu(&tvlv_handler
->list
, &bat_priv
->tvlv
.handler_list
);
1066 spin_unlock_bh(&bat_priv
->tvlv
.handler_list_lock
);
1070 * batadv_tvlv_handler_unregister - unregister tvlv handler based on the
1071 * provided type and version (both need to match)
1072 * @bat_priv: the bat priv with all the soft interface information
1073 * @type: tvlv handler type to be unregistered
1074 * @version: tvlv handler version to be unregistered
1076 void batadv_tvlv_handler_unregister(struct batadv_priv
*bat_priv
,
1077 uint8_t type
, uint8_t version
)
1079 struct batadv_tvlv_handler
*tvlv_handler
;
1081 tvlv_handler
= batadv_tvlv_handler_get(bat_priv
, type
, version
);
1085 batadv_tvlv_handler_free_ref(tvlv_handler
);
1086 spin_lock_bh(&bat_priv
->tvlv
.handler_list_lock
);
1087 hlist_del_rcu(&tvlv_handler
->list
);
1088 spin_unlock_bh(&bat_priv
->tvlv
.handler_list_lock
);
1089 batadv_tvlv_handler_free_ref(tvlv_handler
);
1093 * batadv_tvlv_unicast_send - send a unicast packet with tvlv payload to the
1095 * @bat_priv: the bat priv with all the soft interface information
1096 * @src: source mac address of the unicast packet
1097 * @dst: destination mac address of the unicast packet
1099 * @version: tvlv version
1100 * @tvlv_value: tvlv content
1101 * @tvlv_value_len: tvlv content length
1103 void batadv_tvlv_unicast_send(struct batadv_priv
*bat_priv
, uint8_t *src
,
1104 uint8_t *dst
, uint8_t type
, uint8_t version
,
1105 void *tvlv_value
, uint16_t tvlv_value_len
)
1107 struct batadv_unicast_tvlv_packet
*unicast_tvlv_packet
;
1108 struct batadv_tvlv_hdr
*tvlv_hdr
;
1109 struct batadv_orig_node
*orig_node
;
1110 struct sk_buff
*skb
= NULL
;
1111 unsigned char *tvlv_buff
;
1112 unsigned int tvlv_len
;
1113 ssize_t hdr_len
= sizeof(*unicast_tvlv_packet
);
1116 orig_node
= batadv_orig_hash_find(bat_priv
, dst
);
1120 tvlv_len
= sizeof(*tvlv_hdr
) + tvlv_value_len
;
1122 skb
= netdev_alloc_skb_ip_align(NULL
, ETH_HLEN
+ hdr_len
+ tvlv_len
);
1126 skb
->priority
= TC_PRIO_CONTROL
;
1127 skb_reserve(skb
, ETH_HLEN
);
1128 tvlv_buff
= skb_put(skb
, sizeof(*unicast_tvlv_packet
) + tvlv_len
);
1129 unicast_tvlv_packet
= (struct batadv_unicast_tvlv_packet
*)tvlv_buff
;
1130 unicast_tvlv_packet
->packet_type
= BATADV_UNICAST_TVLV
;
1131 unicast_tvlv_packet
->version
= BATADV_COMPAT_VERSION
;
1132 unicast_tvlv_packet
->ttl
= BATADV_TTL
;
1133 unicast_tvlv_packet
->reserved
= 0;
1134 unicast_tvlv_packet
->tvlv_len
= htons(tvlv_len
);
1135 unicast_tvlv_packet
->align
= 0;
1136 memcpy(unicast_tvlv_packet
->src
, src
, ETH_ALEN
);
1137 memcpy(unicast_tvlv_packet
->dst
, dst
, ETH_ALEN
);
1139 tvlv_buff
= (unsigned char *)(unicast_tvlv_packet
+ 1);
1140 tvlv_hdr
= (struct batadv_tvlv_hdr
*)tvlv_buff
;
1141 tvlv_hdr
->version
= version
;
1142 tvlv_hdr
->type
= type
;
1143 tvlv_hdr
->len
= htons(tvlv_value_len
);
1144 tvlv_buff
+= sizeof(*tvlv_hdr
);
1145 memcpy(tvlv_buff
, tvlv_value
, tvlv_value_len
);
1147 if (batadv_send_skb_to_orig(skb
, orig_node
, NULL
) != NET_XMIT_DROP
)
1154 batadv_orig_node_free_ref(orig_node
);
1158 * batadv_get_vid - extract the VLAN identifier from skb if any
1159 * @skb: the buffer containing the packet
1160 * @header_len: length of the batman header preceding the ethernet header
1162 * If the packet embedded in the skb is vlan tagged this function returns the
1163 * VID with the BATADV_VLAN_HAS_TAG flag. Otherwise BATADV_NO_FLAGS is returned.
1165 unsigned short batadv_get_vid(struct sk_buff
*skb
, size_t header_len
)
1167 struct ethhdr
*ethhdr
= (struct ethhdr
*)(skb
->data
+ header_len
);
1168 struct vlan_ethhdr
*vhdr
;
1171 if (ethhdr
->h_proto
!= htons(ETH_P_8021Q
))
1172 return BATADV_NO_FLAGS
;
1174 if (!pskb_may_pull(skb
, header_len
+ VLAN_ETH_HLEN
))
1175 return BATADV_NO_FLAGS
;
1177 vhdr
= (struct vlan_ethhdr
*)(skb
->data
+ header_len
);
1178 vid
= ntohs(vhdr
->h_vlan_TCI
) & VLAN_VID_MASK
;
1179 vid
|= BATADV_VLAN_HAS_TAG
;
1185 * batadv_vlan_ap_isola_get - return the AP isolation status for the given vlan
1186 * @bat_priv: the bat priv with all the soft interface information
1187 * @vid: the VLAN identifier for which the AP isolation attributed as to be
1190 * Returns true if AP isolation is on for the VLAN idenfied by vid, false
1193 bool batadv_vlan_ap_isola_get(struct batadv_priv
*bat_priv
, unsigned short vid
)
1195 bool ap_isolation_enabled
= false;
1196 struct batadv_softif_vlan
*vlan
;
1198 /* if the AP isolation is requested on a VLAN, then check for its
1199 * setting in the proper VLAN private data structure
1201 vlan
= batadv_softif_vlan_get(bat_priv
, vid
);
1203 ap_isolation_enabled
= atomic_read(&vlan
->ap_isolation
);
1204 batadv_softif_vlan_free_ref(vlan
);
1207 return ap_isolation_enabled
;
1210 static int batadv_param_set_ra(const char *val
, const struct kernel_param
*kp
)
1212 struct batadv_algo_ops
*bat_algo_ops
;
1213 char *algo_name
= (char *)val
;
1214 size_t name_len
= strlen(algo_name
);
1216 if (name_len
> 0 && algo_name
[name_len
- 1] == '\n')
1217 algo_name
[name_len
- 1] = '\0';
1219 bat_algo_ops
= batadv_algo_get(algo_name
);
1220 if (!bat_algo_ops
) {
1221 pr_err("Routing algorithm '%s' is not supported\n", algo_name
);
1225 return param_set_copystring(algo_name
, kp
);
1228 static const struct kernel_param_ops batadv_param_ops_ra
= {
1229 .set
= batadv_param_set_ra
,
1230 .get
= param_get_string
,
1233 static struct kparam_string batadv_param_string_ra
= {
1234 .maxlen
= sizeof(batadv_routing_algo
),
1235 .string
= batadv_routing_algo
,
1238 module_param_cb(routing_algo
, &batadv_param_ops_ra
, &batadv_param_string_ra
,
1240 module_init(batadv_init
);
1241 module_exit(batadv_exit
);
1243 MODULE_LICENSE("GPL");
1245 MODULE_AUTHOR(BATADV_DRIVER_AUTHOR
);
1246 MODULE_DESCRIPTION(BATADV_DRIVER_DESC
);
1247 MODULE_SUPPORTED_DEVICE(BATADV_DRIVER_DEVICE
);
1248 MODULE_VERSION(BATADV_SOURCE_VERSION
);