1 /* Copyright (C) 2007-2013 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, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 #include <linux/crc32c.h>
21 #include <linux/highmem.h>
22 #include <linux/if_vlan.h>
25 #include <net/dsfield.h>
31 #include "originator.h"
32 #include "soft-interface.h"
33 #include "icmp_socket.h"
34 #include "translation-table.h"
35 #include "hard-interface.h"
36 #include "gateway_client.h"
37 #include "bridge_loop_avoidance.h"
38 #include "distributed-arp-table.h"
42 #include "network-coding.h"
45 /* List manipulations on hardif_list have to be rtnl_lock()'ed,
46 * list traversals just rcu-locked
48 struct list_head batadv_hardif_list
;
49 static int (*batadv_rx_handler
[256])(struct sk_buff
*,
50 struct batadv_hard_iface
*);
51 char batadv_routing_algo
[20] = "BATMAN_IV";
52 static struct hlist_head batadv_algo_list
;
54 unsigned char batadv_broadcast_addr
[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
56 struct workqueue_struct
*batadv_event_workqueue
;
58 static void batadv_recv_handler_init(void);
60 static int __init
batadv_init(void)
62 INIT_LIST_HEAD(&batadv_hardif_list
);
63 INIT_HLIST_HEAD(&batadv_algo_list
);
65 batadv_recv_handler_init();
70 batadv_event_workqueue
= create_singlethread_workqueue("bat_events");
72 if (!batadv_event_workqueue
)
76 batadv_debugfs_init();
78 register_netdevice_notifier(&batadv_hard_if_notifier
);
79 rtnl_link_register(&batadv_link_ops
);
81 pr_info("B.A.T.M.A.N. advanced %s (compatibility version %i) loaded\n",
82 BATADV_SOURCE_VERSION
, BATADV_COMPAT_VERSION
);
87 static void __exit
batadv_exit(void)
89 batadv_debugfs_destroy();
90 rtnl_link_unregister(&batadv_link_ops
);
91 unregister_netdevice_notifier(&batadv_hard_if_notifier
);
92 batadv_hardif_remove_interfaces();
94 flush_workqueue(batadv_event_workqueue
);
95 destroy_workqueue(batadv_event_workqueue
);
96 batadv_event_workqueue
= NULL
;
101 int batadv_mesh_init(struct net_device
*soft_iface
)
103 struct batadv_priv
*bat_priv
= netdev_priv(soft_iface
);
106 spin_lock_init(&bat_priv
->forw_bat_list_lock
);
107 spin_lock_init(&bat_priv
->forw_bcast_list_lock
);
108 spin_lock_init(&bat_priv
->tt
.changes_list_lock
);
109 spin_lock_init(&bat_priv
->tt
.req_list_lock
);
110 spin_lock_init(&bat_priv
->tt
.roam_list_lock
);
111 spin_lock_init(&bat_priv
->tt
.last_changeset_lock
);
112 spin_lock_init(&bat_priv
->gw
.list_lock
);
113 spin_lock_init(&bat_priv
->vis
.hash_lock
);
114 spin_lock_init(&bat_priv
->vis
.list_lock
);
116 INIT_HLIST_HEAD(&bat_priv
->forw_bat_list
);
117 INIT_HLIST_HEAD(&bat_priv
->forw_bcast_list
);
118 INIT_HLIST_HEAD(&bat_priv
->gw
.list
);
119 INIT_LIST_HEAD(&bat_priv
->tt
.changes_list
);
120 INIT_LIST_HEAD(&bat_priv
->tt
.req_list
);
121 INIT_LIST_HEAD(&bat_priv
->tt
.roam_list
);
123 ret
= batadv_originator_init(bat_priv
);
127 ret
= batadv_tt_init(bat_priv
);
131 batadv_tt_local_add(soft_iface
, soft_iface
->dev_addr
,
132 BATADV_NULL_IFINDEX
);
134 ret
= batadv_vis_init(bat_priv
);
138 ret
= batadv_bla_init(bat_priv
);
142 ret
= batadv_dat_init(bat_priv
);
146 ret
= batadv_nc_mesh_init(bat_priv
);
150 atomic_set(&bat_priv
->gw
.reselect
, 0);
151 atomic_set(&bat_priv
->mesh_state
, BATADV_MESH_ACTIVE
);
156 batadv_mesh_free(soft_iface
);
160 void batadv_mesh_free(struct net_device
*soft_iface
)
162 struct batadv_priv
*bat_priv
= netdev_priv(soft_iface
);
164 atomic_set(&bat_priv
->mesh_state
, BATADV_MESH_DEACTIVATING
);
166 batadv_purge_outstanding_packets(bat_priv
, NULL
);
168 batadv_vis_quit(bat_priv
);
170 batadv_gw_node_purge(bat_priv
);
171 batadv_nc_mesh_free(bat_priv
);
172 batadv_dat_free(bat_priv
);
173 batadv_bla_free(bat_priv
);
175 /* Free the TT and the originator tables only after having terminated
176 * all the other depending components which may use these structures for
179 batadv_tt_free(bat_priv
);
181 /* Since the originator table clean up routine is accessing the TT
182 * tables as well, it has to be invoked after the TT tables have been
183 * freed and marked as empty. This ensures that no cleanup RCU callbacks
184 * accessing the TT data are scheduled for later execution.
186 batadv_originator_free(bat_priv
);
188 free_percpu(bat_priv
->bat_counters
);
189 bat_priv
->bat_counters
= NULL
;
191 atomic_set(&bat_priv
->mesh_state
, BATADV_MESH_INACTIVE
);
195 * batadv_is_my_mac - check if the given mac address belongs to any of the real
196 * interfaces in the current mesh
197 * @bat_priv: the bat priv with all the soft interface information
198 * @addr: the address to check
200 int batadv_is_my_mac(struct batadv_priv
*bat_priv
, const uint8_t *addr
)
202 const struct batadv_hard_iface
*hard_iface
;
205 list_for_each_entry_rcu(hard_iface
, &batadv_hardif_list
, list
) {
206 if (hard_iface
->if_status
!= BATADV_IF_ACTIVE
)
209 if (hard_iface
->soft_iface
!= bat_priv
->soft_iface
)
212 if (batadv_compare_eth(hard_iface
->net_dev
->dev_addr
, addr
)) {
222 * batadv_seq_print_text_primary_if_get - called from debugfs table printing
223 * function that requires the primary interface
224 * @seq: debugfs table seq_file struct
226 * Returns primary interface if found or NULL otherwise.
228 struct batadv_hard_iface
*
229 batadv_seq_print_text_primary_if_get(struct seq_file
*seq
)
231 struct net_device
*net_dev
= (struct net_device
*)seq
->private;
232 struct batadv_priv
*bat_priv
= netdev_priv(net_dev
);
233 struct batadv_hard_iface
*primary_if
;
235 primary_if
= batadv_primary_if_get_selected(bat_priv
);
239 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
244 if (primary_if
->if_status
== BATADV_IF_ACTIVE
)
248 "BATMAN mesh %s disabled - primary interface not active\n",
250 batadv_hardif_free_ref(primary_if
);
258 * batadv_skb_set_priority - sets skb priority according to packet content
259 * @skb: the packet to be sent
260 * @offset: offset to the packet content
262 * This function sets a value between 256 and 263 (802.1d priority), which
263 * can be interpreted by the cfg80211 or other drivers.
265 void batadv_skb_set_priority(struct sk_buff
*skb
, int offset
)
267 struct iphdr ip_hdr_tmp
, *ip_hdr
;
268 struct ipv6hdr ip6_hdr_tmp
, *ip6_hdr
;
269 struct ethhdr ethhdr_tmp
, *ethhdr
;
270 struct vlan_ethhdr
*vhdr
, vhdr_tmp
;
273 /* already set, do nothing */
274 if (skb
->priority
>= 256 && skb
->priority
<= 263)
277 ethhdr
= skb_header_pointer(skb
, offset
, sizeof(*ethhdr
), ðhdr_tmp
);
281 switch (ethhdr
->h_proto
) {
282 case htons(ETH_P_8021Q
):
283 vhdr
= skb_header_pointer(skb
, offset
+ sizeof(*vhdr
),
284 sizeof(*vhdr
), &vhdr_tmp
);
287 prio
= ntohs(vhdr
->h_vlan_TCI
) & VLAN_PRIO_MASK
;
288 prio
= prio
>> VLAN_PRIO_SHIFT
;
290 case htons(ETH_P_IP
):
291 ip_hdr
= skb_header_pointer(skb
, offset
+ sizeof(*ethhdr
),
292 sizeof(*ip_hdr
), &ip_hdr_tmp
);
295 prio
= (ipv4_get_dsfield(ip_hdr
) & 0xfc) >> 5;
297 case htons(ETH_P_IPV6
):
298 ip6_hdr
= skb_header_pointer(skb
, offset
+ sizeof(*ethhdr
),
299 sizeof(*ip6_hdr
), &ip6_hdr_tmp
);
302 prio
= (ipv6_get_dsfield(ip6_hdr
) & 0xfc) >> 5;
308 skb
->priority
= prio
+ 256;
311 static int batadv_recv_unhandled_packet(struct sk_buff
*skb
,
312 struct batadv_hard_iface
*recv_if
)
317 /* incoming packets with the batman ethertype received on any active hard
320 int batadv_batman_skb_recv(struct sk_buff
*skb
, struct net_device
*dev
,
321 struct packet_type
*ptype
,
322 struct net_device
*orig_dev
)
324 struct batadv_priv
*bat_priv
;
325 struct batadv_ogm_packet
*batadv_ogm_packet
;
326 struct batadv_hard_iface
*hard_iface
;
330 hard_iface
= container_of(ptype
, struct batadv_hard_iface
,
332 skb
= skb_share_check(skb
, GFP_ATOMIC
);
334 /* skb was released by skb_share_check() */
338 /* packet should hold at least type and version */
339 if (unlikely(!pskb_may_pull(skb
, 2)))
342 /* expect a valid ethernet header here. */
343 if (unlikely(skb
->mac_len
!= ETH_HLEN
|| !skb_mac_header(skb
)))
346 if (!hard_iface
->soft_iface
)
349 bat_priv
= netdev_priv(hard_iface
->soft_iface
);
351 if (atomic_read(&bat_priv
->mesh_state
) != BATADV_MESH_ACTIVE
)
354 /* discard frames on not active interfaces */
355 if (hard_iface
->if_status
!= BATADV_IF_ACTIVE
)
358 batadv_ogm_packet
= (struct batadv_ogm_packet
*)skb
->data
;
360 if (batadv_ogm_packet
->header
.version
!= BATADV_COMPAT_VERSION
) {
361 batadv_dbg(BATADV_DBG_BATMAN
, bat_priv
,
362 "Drop packet: incompatible batman version (%i)\n",
363 batadv_ogm_packet
->header
.version
);
367 /* all receive handlers return whether they received or reused
368 * the supplied skb. if not, we have to free the skb.
370 idx
= batadv_ogm_packet
->header
.packet_type
;
371 ret
= (*batadv_rx_handler
[idx
])(skb
, hard_iface
);
373 if (ret
== NET_RX_DROP
)
376 /* return NET_RX_SUCCESS in any case as we
377 * most probably dropped the packet for
378 * routing-logical reasons.
380 return NET_RX_SUCCESS
;
388 static void batadv_recv_handler_init(void)
392 for (i
= 0; i
< ARRAY_SIZE(batadv_rx_handler
); i
++)
393 batadv_rx_handler
[i
] = batadv_recv_unhandled_packet
;
395 /* batman icmp packet */
396 batadv_rx_handler
[BATADV_ICMP
] = batadv_recv_icmp_packet
;
397 /* unicast with 4 addresses packet */
398 batadv_rx_handler
[BATADV_UNICAST_4ADDR
] = batadv_recv_unicast_packet
;
400 batadv_rx_handler
[BATADV_UNICAST
] = batadv_recv_unicast_packet
;
401 /* fragmented unicast packet */
402 batadv_rx_handler
[BATADV_UNICAST_FRAG
] = batadv_recv_ucast_frag_packet
;
403 /* broadcast packet */
404 batadv_rx_handler
[BATADV_BCAST
] = batadv_recv_bcast_packet
;
406 batadv_rx_handler
[BATADV_VIS
] = batadv_recv_vis_packet
;
407 /* Translation table query (request or response) */
408 batadv_rx_handler
[BATADV_TT_QUERY
] = batadv_recv_tt_query
;
409 /* Roaming advertisement */
410 batadv_rx_handler
[BATADV_ROAM_ADV
] = batadv_recv_roam_adv
;
414 batadv_recv_handler_register(uint8_t packet_type
,
415 int (*recv_handler
)(struct sk_buff
*,
416 struct batadv_hard_iface
*))
418 if (batadv_rx_handler
[packet_type
] != &batadv_recv_unhandled_packet
)
421 batadv_rx_handler
[packet_type
] = recv_handler
;
425 void batadv_recv_handler_unregister(uint8_t packet_type
)
427 batadv_rx_handler
[packet_type
] = batadv_recv_unhandled_packet
;
430 static struct batadv_algo_ops
*batadv_algo_get(char *name
)
432 struct batadv_algo_ops
*bat_algo_ops
= NULL
, *bat_algo_ops_tmp
;
434 hlist_for_each_entry(bat_algo_ops_tmp
, &batadv_algo_list
, list
) {
435 if (strcmp(bat_algo_ops_tmp
->name
, name
) != 0)
438 bat_algo_ops
= bat_algo_ops_tmp
;
445 int batadv_algo_register(struct batadv_algo_ops
*bat_algo_ops
)
447 struct batadv_algo_ops
*bat_algo_ops_tmp
;
450 bat_algo_ops_tmp
= batadv_algo_get(bat_algo_ops
->name
);
451 if (bat_algo_ops_tmp
) {
452 pr_info("Trying to register already registered routing algorithm: %s\n",
458 /* all algorithms must implement all ops (for now) */
459 if (!bat_algo_ops
->bat_iface_enable
||
460 !bat_algo_ops
->bat_iface_disable
||
461 !bat_algo_ops
->bat_iface_update_mac
||
462 !bat_algo_ops
->bat_primary_iface_set
||
463 !bat_algo_ops
->bat_ogm_schedule
||
464 !bat_algo_ops
->bat_ogm_emit
) {
465 pr_info("Routing algo '%s' does not implement required ops\n",
471 INIT_HLIST_NODE(&bat_algo_ops
->list
);
472 hlist_add_head(&bat_algo_ops
->list
, &batadv_algo_list
);
479 int batadv_algo_select(struct batadv_priv
*bat_priv
, char *name
)
481 struct batadv_algo_ops
*bat_algo_ops
;
484 bat_algo_ops
= batadv_algo_get(name
);
488 bat_priv
->bat_algo_ops
= bat_algo_ops
;
495 int batadv_algo_seq_print_text(struct seq_file
*seq
, void *offset
)
497 struct batadv_algo_ops
*bat_algo_ops
;
499 seq_puts(seq
, "Available routing algorithms:\n");
501 hlist_for_each_entry(bat_algo_ops
, &batadv_algo_list
, list
) {
502 seq_printf(seq
, "%s\n", bat_algo_ops
->name
);
509 * batadv_skb_crc32 - calculate CRC32 of the whole packet and skip bytes in
511 * @skb: skb pointing to fragmented socket buffers
512 * @payload_ptr: Pointer to position inside the head buffer of the skb
513 * marking the start of the data to be CRC'ed
515 * payload_ptr must always point to an address in the skb head buffer and not to
518 __be32
batadv_skb_crc32(struct sk_buff
*skb
, u8
*payload_ptr
)
522 unsigned int to
= skb
->len
;
523 struct skb_seq_state st
;
526 unsigned int consumed
= 0;
528 from
= (unsigned int)(payload_ptr
- skb
->data
);
530 skb_prepare_seq_read(skb
, from
, to
, &st
);
531 while ((len
= skb_seq_read(consumed
, &data
, &st
)) != 0) {
532 crc
= crc32c(crc
, data
, len
);
539 static int batadv_param_set_ra(const char *val
, const struct kernel_param
*kp
)
541 struct batadv_algo_ops
*bat_algo_ops
;
542 char *algo_name
= (char *)val
;
543 size_t name_len
= strlen(algo_name
);
545 if (name_len
> 0 && algo_name
[name_len
- 1] == '\n')
546 algo_name
[name_len
- 1] = '\0';
548 bat_algo_ops
= batadv_algo_get(algo_name
);
550 pr_err("Routing algorithm '%s' is not supported\n", algo_name
);
554 return param_set_copystring(algo_name
, kp
);
557 static const struct kernel_param_ops batadv_param_ops_ra
= {
558 .set
= batadv_param_set_ra
,
559 .get
= param_get_string
,
562 static struct kparam_string batadv_param_string_ra
= {
563 .maxlen
= sizeof(batadv_routing_algo
),
564 .string
= batadv_routing_algo
,
567 module_param_cb(routing_algo
, &batadv_param_ops_ra
, &batadv_param_string_ra
,
569 module_init(batadv_init
);
570 module_exit(batadv_exit
);
572 MODULE_LICENSE("GPL");
574 MODULE_AUTHOR(BATADV_DRIVER_AUTHOR
);
575 MODULE_DESCRIPTION(BATADV_DRIVER_DESC
);
576 MODULE_SUPPORTED_DEVICE(BATADV_DRIVER_DEVICE
);
577 MODULE_VERSION(BATADV_SOURCE_VERSION
);