blob: c51a5e568f0a80c08beb4ded5b34b1aff8d5cfdf [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2007-2013 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner, Simon Wunderlich
4 *
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.
8 *
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.
13 *
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
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
Sven Eckelmann95a066d2012-10-17 21:10:39 +020020#include <linux/crc32c.h>
21#include <linux/highmem.h>
Simon Wunderlichc54f38c2013-07-29 17:56:44 +020022#include <linux/if_vlan.h>
23#include <net/ip.h>
24#include <net/ipv6.h>
25#include <net/dsfield.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000026#include "main.h"
Sven Eckelmannb706b132012-06-10 23:58:51 +020027#include "sysfs.h"
28#include "debugfs.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000029#include "routing.h"
30#include "send.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"
Simon Wunderlich23721382012-01-22 20:00:19 +010037#include "bridge_loop_avoidance.h"
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +020038#include "distributed-arp-table.h"
Marek Lindner414254e2013-04-23 21:39:58 +080039#include "gateway_common.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000040#include "hash.h"
Marek Lindner1c280472011-11-28 17:40:17 +080041#include "bat_algo.h"
Martin Hundebølld353d8d2013-01-25 11:12:38 +010042#include "network-coding.h"
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +020043#include "fragmentation.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000044
Sven Eckelmannc3caf512011-05-03 11:51:38 +020045
46/* List manipulations on hardif_list have to be rtnl_lock()'ed,
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020047 * list traversals just rcu-locked
48 */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020049struct list_head batadv_hardif_list;
Sven Eckelmannee11ad62012-05-16 20:23:19 +020050static int (*batadv_rx_handler[256])(struct sk_buff *,
Sven Eckelmann56303d32012-06-05 22:31:31 +020051 struct batadv_hard_iface *);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020052char batadv_routing_algo[20] = "BATMAN_IV";
Sven Eckelmannee11ad62012-05-16 20:23:19 +020053static struct hlist_head batadv_algo_list;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020055unsigned char batadv_broadcast_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020057struct workqueue_struct *batadv_event_workqueue;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000058
Sven Eckelmannee11ad62012-05-16 20:23:19 +020059static void batadv_recv_handler_init(void);
Marek Lindnerffa995e2012-03-01 15:35:17 +080060
Sven Eckelmannee11ad62012-05-16 20:23:19 +020061static int __init batadv_init(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062{
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020063 INIT_LIST_HEAD(&batadv_hardif_list);
Sven Eckelmannee11ad62012-05-16 20:23:19 +020064 INIT_HLIST_HEAD(&batadv_algo_list);
Marek Lindner1c280472011-11-28 17:40:17 +080065
Sven Eckelmannee11ad62012-05-16 20:23:19 +020066 batadv_recv_handler_init();
Marek Lindnerffa995e2012-03-01 15:35:17 +080067
Sven Eckelmann81c524f2012-05-12 02:09:22 +020068 batadv_iv_init();
Matthias Schiffer6c519ba2013-09-27 18:03:39 +020069 batadv_nc_init();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000070
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020071 batadv_event_workqueue = create_singlethread_workqueue("bat_events");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000072
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020073 if (!batadv_event_workqueue)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000074 return -ENOMEM;
75
Sven Eckelmann9039dc72012-05-12 02:09:33 +020076 batadv_socket_init();
Sven Eckelmann40a072d2012-05-12 02:09:23 +020077 batadv_debugfs_init();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000078
Sven Eckelmann95638772012-05-12 02:09:31 +020079 register_netdevice_notifier(&batadv_hard_if_notifier);
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +080080 rtnl_link_register(&batadv_link_ops);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000081
Sven Eckelmann86ceb362012-03-07 09:07:45 +010082 pr_info("B.A.T.M.A.N. advanced %s (compatibility version %i) loaded\n",
Sven Eckelmann42d0b042012-06-03 22:19:17 +020083 BATADV_SOURCE_VERSION, BATADV_COMPAT_VERSION);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084
85 return 0;
86}
87
Sven Eckelmannee11ad62012-05-16 20:23:19 +020088static void __exit batadv_exit(void)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000089{
Sven Eckelmann40a072d2012-05-12 02:09:23 +020090 batadv_debugfs_destroy();
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +080091 rtnl_link_unregister(&batadv_link_ops);
Sven Eckelmann95638772012-05-12 02:09:31 +020092 unregister_netdevice_notifier(&batadv_hard_if_notifier);
93 batadv_hardif_remove_interfaces();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000094
Sven Eckelmann3193e8f2012-05-12 02:09:42 +020095 flush_workqueue(batadv_event_workqueue);
96 destroy_workqueue(batadv_event_workqueue);
97 batadv_event_workqueue = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000098
99 rcu_barrier();
100}
101
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200102int batadv_mesh_init(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000103{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200104 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200105 int ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000106
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000107 spin_lock_init(&bat_priv->forw_bat_list_lock);
108 spin_lock_init(&bat_priv->forw_bcast_list_lock);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200109 spin_lock_init(&bat_priv->tt.changes_list_lock);
110 spin_lock_init(&bat_priv->tt.req_list_lock);
111 spin_lock_init(&bat_priv->tt.roam_list_lock);
112 spin_lock_init(&bat_priv->tt.last_changeset_lock);
Antonio Quartullia70a9aa2013-07-30 22:16:24 +0200113 spin_lock_init(&bat_priv->tt.commit_lock);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200114 spin_lock_init(&bat_priv->gw.list_lock);
Marek Lindneref261572013-04-23 21:39:57 +0800115 spin_lock_init(&bat_priv->tvlv.container_list_lock);
116 spin_lock_init(&bat_priv->tvlv.handler_list_lock);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200117 spin_lock_init(&bat_priv->softif_vlan_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118
119 INIT_HLIST_HEAD(&bat_priv->forw_bat_list);
120 INIT_HLIST_HEAD(&bat_priv->forw_bcast_list);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200121 INIT_HLIST_HEAD(&bat_priv->gw.list);
122 INIT_LIST_HEAD(&bat_priv->tt.changes_list);
123 INIT_LIST_HEAD(&bat_priv->tt.req_list);
124 INIT_LIST_HEAD(&bat_priv->tt.roam_list);
Marek Lindneref261572013-04-23 21:39:57 +0800125 INIT_HLIST_HEAD(&bat_priv->tvlv.container_list);
126 INIT_HLIST_HEAD(&bat_priv->tvlv.handler_list);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200127 INIT_HLIST_HEAD(&bat_priv->softif_vlan_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000128
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200129 ret = batadv_originator_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200130 if (ret < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131 goto err;
132
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200133 ret = batadv_tt_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200134 if (ret < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135 goto err;
136
Sven Eckelmann08adf152012-05-12 13:38:47 +0200137 ret = batadv_bla_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200138 if (ret < 0)
Simon Wunderlich23721382012-01-22 20:00:19 +0100139 goto err;
140
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200141 ret = batadv_dat_init(bat_priv);
142 if (ret < 0)
143 goto err;
144
Matthias Schiffer6c519ba2013-09-27 18:03:39 +0200145 ret = batadv_nc_mesh_init(bat_priv);
Martin Hundebølld353d8d2013-01-25 11:12:38 +0100146 if (ret < 0)
147 goto err;
148
Marek Lindner414254e2013-04-23 21:39:58 +0800149 batadv_gw_init(bat_priv);
150
Sven Eckelmann807736f2012-07-15 22:26:51 +0200151 atomic_set(&bat_priv->gw.reselect, 0);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200152 atomic_set(&bat_priv->mesh_state, BATADV_MESH_ACTIVE);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200153
154 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000155
156err:
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200157 batadv_mesh_free(soft_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200158 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000159}
160
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200161void batadv_mesh_free(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000162{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200163 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200165 atomic_set(&bat_priv->mesh_state, BATADV_MESH_DEACTIVATING);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000166
Sven Eckelmann9455e342012-05-12 02:09:37 +0200167 batadv_purge_outstanding_packets(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000168
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200169 batadv_gw_node_purge(bat_priv);
Matthias Schiffer6c519ba2013-09-27 18:03:39 +0200170 batadv_nc_mesh_free(bat_priv);
Antonio Quartullia4361862013-05-07 01:06:18 +0200171 batadv_dat_free(bat_priv);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200172 batadv_bla_free(bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +0100173
Antonio Quartullia4361862013-05-07 01:06:18 +0200174 /* Free the TT and the originator tables only after having terminated
175 * all the other depending components which may use these structures for
176 * their purposes.
177 */
178 batadv_tt_free(bat_priv);
179
180 /* Since the originator table clean up routine is accessing the TT
181 * tables as well, it has to be invoked after the TT tables have been
182 * freed and marked as empty. This ensures that no cleanup RCU callbacks
183 * accessing the TT data are scheduled for later execution.
184 */
185 batadv_originator_free(bat_priv);
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200186
Marek Lindner414254e2013-04-23 21:39:58 +0800187 batadv_gw_free(bat_priv);
188
Martin Hundebøllf8214862012-04-20 17:02:45 +0200189 free_percpu(bat_priv->bat_counters);
Martin Hundebøllf69ae772013-04-17 21:13:16 +0200190 bat_priv->bat_counters = NULL;
Martin Hundebøllf8214862012-04-20 17:02:45 +0200191
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200192 atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193}
194
David S. Miller6e0895c2013-04-22 20:32:51 -0400195/**
196 * batadv_is_my_mac - check if the given mac address belongs to any of the real
197 * interfaces in the current mesh
198 * @bat_priv: the bat priv with all the soft interface information
199 * @addr: the address to check
200 */
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200201int batadv_is_my_mac(struct batadv_priv *bat_priv, const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200203 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000204
205 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200206 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200207 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000208 continue;
209
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200210 if (hard_iface->soft_iface != bat_priv->soft_iface)
211 continue;
212
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200213 if (batadv_compare_eth(hard_iface->net_dev->dev_addr, addr)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000214 rcu_read_unlock();
215 return 1;
216 }
217 }
218 rcu_read_unlock();
219 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000220}
221
Marek Lindner30da63a2012-08-03 17:15:46 +0200222/**
223 * batadv_seq_print_text_primary_if_get - called from debugfs table printing
224 * function that requires the primary interface
225 * @seq: debugfs table seq_file struct
226 *
227 * Returns primary interface if found or NULL otherwise.
228 */
229struct batadv_hard_iface *
230batadv_seq_print_text_primary_if_get(struct seq_file *seq)
231{
232 struct net_device *net_dev = (struct net_device *)seq->private;
233 struct batadv_priv *bat_priv = netdev_priv(net_dev);
234 struct batadv_hard_iface *primary_if;
235
236 primary_if = batadv_primary_if_get_selected(bat_priv);
237
238 if (!primary_if) {
239 seq_printf(seq,
240 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
241 net_dev->name);
242 goto out;
243 }
244
245 if (primary_if->if_status == BATADV_IF_ACTIVE)
246 goto out;
247
248 seq_printf(seq,
249 "BATMAN mesh %s disabled - primary interface not active\n",
250 net_dev->name);
251 batadv_hardif_free_ref(primary_if);
252 primary_if = NULL;
253
254out:
255 return primary_if;
256}
257
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200258/**
Marek Lindner411d6ed2013-05-08 13:31:59 +0800259 * batadv_max_header_len - calculate maximum encapsulation overhead for a
260 * payload packet
261 *
262 * Return the maximum encapsulation overhead in bytes.
263 */
264int batadv_max_header_len(void)
265{
266 int header_len = 0;
267
268 header_len = max_t(int, header_len,
269 sizeof(struct batadv_unicast_packet));
270 header_len = max_t(int, header_len,
271 sizeof(struct batadv_unicast_4addr_packet));
272 header_len = max_t(int, header_len,
273 sizeof(struct batadv_bcast_packet));
274
275#ifdef CONFIG_BATMAN_ADV_NC
276 header_len = max_t(int, header_len,
277 sizeof(struct batadv_coded_packet));
278#endif
279
280 return header_len;
281}
282
283/**
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200284 * batadv_skb_set_priority - sets skb priority according to packet content
285 * @skb: the packet to be sent
286 * @offset: offset to the packet content
287 *
288 * This function sets a value between 256 and 263 (802.1d priority), which
289 * can be interpreted by the cfg80211 or other drivers.
290 */
291void batadv_skb_set_priority(struct sk_buff *skb, int offset)
292{
293 struct iphdr ip_hdr_tmp, *ip_hdr;
294 struct ipv6hdr ip6_hdr_tmp, *ip6_hdr;
295 struct ethhdr ethhdr_tmp, *ethhdr;
296 struct vlan_ethhdr *vhdr, vhdr_tmp;
297 u32 prio;
298
299 /* already set, do nothing */
300 if (skb->priority >= 256 && skb->priority <= 263)
301 return;
302
303 ethhdr = skb_header_pointer(skb, offset, sizeof(*ethhdr), &ethhdr_tmp);
304 if (!ethhdr)
305 return;
306
307 switch (ethhdr->h_proto) {
308 case htons(ETH_P_8021Q):
309 vhdr = skb_header_pointer(skb, offset + sizeof(*vhdr),
310 sizeof(*vhdr), &vhdr_tmp);
311 if (!vhdr)
312 return;
313 prio = ntohs(vhdr->h_vlan_TCI) & VLAN_PRIO_MASK;
314 prio = prio >> VLAN_PRIO_SHIFT;
315 break;
316 case htons(ETH_P_IP):
317 ip_hdr = skb_header_pointer(skb, offset + sizeof(*ethhdr),
318 sizeof(*ip_hdr), &ip_hdr_tmp);
319 if (!ip_hdr)
320 return;
321 prio = (ipv4_get_dsfield(ip_hdr) & 0xfc) >> 5;
322 break;
323 case htons(ETH_P_IPV6):
324 ip6_hdr = skb_header_pointer(skb, offset + sizeof(*ethhdr),
325 sizeof(*ip6_hdr), &ip6_hdr_tmp);
326 if (!ip6_hdr)
327 return;
328 prio = (ipv6_get_dsfield(ip6_hdr) & 0xfc) >> 5;
329 break;
330 default:
331 return;
332 }
333
334 skb->priority = prio + 256;
335}
336
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200337static int batadv_recv_unhandled_packet(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200338 struct batadv_hard_iface *recv_if)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800339{
340 return NET_RX_DROP;
341}
342
343/* incoming packets with the batman ethertype received on any active hard
344 * interface
345 */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200346int batadv_batman_skb_recv(struct sk_buff *skb, struct net_device *dev,
347 struct packet_type *ptype,
348 struct net_device *orig_dev)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800349{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200350 struct batadv_priv *bat_priv;
Sven Eckelmann96412692012-06-05 22:31:30 +0200351 struct batadv_ogm_packet *batadv_ogm_packet;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200352 struct batadv_hard_iface *hard_iface;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800353 uint8_t idx;
354 int ret;
355
Sven Eckelmann56303d32012-06-05 22:31:31 +0200356 hard_iface = container_of(ptype, struct batadv_hard_iface,
357 batman_adv_ptype);
Marek Lindnerffa995e2012-03-01 15:35:17 +0800358 skb = skb_share_check(skb, GFP_ATOMIC);
359
360 /* skb was released by skb_share_check() */
361 if (!skb)
362 goto err_out;
363
364 /* packet should hold at least type and version */
365 if (unlikely(!pskb_may_pull(skb, 2)))
366 goto err_free;
367
368 /* expect a valid ethernet header here. */
369 if (unlikely(skb->mac_len != ETH_HLEN || !skb_mac_header(skb)))
370 goto err_free;
371
372 if (!hard_iface->soft_iface)
373 goto err_free;
374
375 bat_priv = netdev_priv(hard_iface->soft_iface);
376
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200377 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800378 goto err_free;
379
380 /* discard frames on not active interfaces */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200381 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800382 goto err_free;
383
Sven Eckelmann96412692012-06-05 22:31:30 +0200384 batadv_ogm_packet = (struct batadv_ogm_packet *)skb->data;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800385
Sven Eckelmann96412692012-06-05 22:31:30 +0200386 if (batadv_ogm_packet->header.version != BATADV_COMPAT_VERSION) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200387 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200388 "Drop packet: incompatible batman version (%i)\n",
Sven Eckelmann96412692012-06-05 22:31:30 +0200389 batadv_ogm_packet->header.version);
Marek Lindnerffa995e2012-03-01 15:35:17 +0800390 goto err_free;
391 }
392
393 /* all receive handlers return whether they received or reused
394 * the supplied skb. if not, we have to free the skb.
395 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200396 idx = batadv_ogm_packet->header.packet_type;
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200397 ret = (*batadv_rx_handler[idx])(skb, hard_iface);
Marek Lindnerffa995e2012-03-01 15:35:17 +0800398
399 if (ret == NET_RX_DROP)
400 kfree_skb(skb);
401
402 /* return NET_RX_SUCCESS in any case as we
403 * most probably dropped the packet for
404 * routing-logical reasons.
405 */
406 return NET_RX_SUCCESS;
407
408err_free:
409 kfree_skb(skb);
410err_out:
411 return NET_RX_DROP;
412}
413
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200414static void batadv_recv_handler_init(void)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800415{
416 int i;
417
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200418 for (i = 0; i < ARRAY_SIZE(batadv_rx_handler); i++)
419 batadv_rx_handler[i] = batadv_recv_unhandled_packet;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800420
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200421 for (i = BATADV_UNICAST_MIN; i <= BATADV_UNICAST_MAX; i++)
422 batadv_rx_handler[i] = batadv_recv_unhandled_unicast_packet;
423
Simon Wunderlich80067c82013-04-25 10:37:22 +0200424 /* compile time checks for struct member offsets */
425 BUILD_BUG_ON(offsetof(struct batadv_unicast_4addr_packet, src) != 10);
426 BUILD_BUG_ON(offsetof(struct batadv_unicast_packet, dest) != 4);
Simon Wunderlich80067c82013-04-25 10:37:22 +0200427 BUILD_BUG_ON(offsetof(struct batadv_unicast_tvlv_packet, dst) != 4);
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200428 BUILD_BUG_ON(offsetof(struct batadv_frag_packet, dest) != 4);
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200429 BUILD_BUG_ON(offsetof(struct batadv_icmp_packet, icmph.dst) != 4);
430 BUILD_BUG_ON(offsetof(struct batadv_icmp_packet_rr, icmph.dst) != 4);
Simon Wunderlich80067c82013-04-25 10:37:22 +0200431
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200432 /* broadcast packet */
433 batadv_rx_handler[BATADV_BCAST] = batadv_recv_bcast_packet;
434
435 /* unicast packets ... */
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200436 /* unicast with 4 addresses packet */
437 batadv_rx_handler[BATADV_UNICAST_4ADDR] = batadv_recv_unicast_packet;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800438 /* unicast packet */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200439 batadv_rx_handler[BATADV_UNICAST] = batadv_recv_unicast_packet;
Marek Lindneref261572013-04-23 21:39:57 +0800440 /* unicast tvlv packet */
441 batadv_rx_handler[BATADV_UNICAST_TVLV] = batadv_recv_unicast_tvlv;
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200442 /* batman icmp packet */
443 batadv_rx_handler[BATADV_ICMP] = batadv_recv_icmp_packet;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200444 /* Fragmented packets */
445 batadv_rx_handler[BATADV_UNICAST_FRAG] = batadv_recv_frag_packet;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800446}
447
Sven Eckelmann56303d32012-06-05 22:31:31 +0200448int
449batadv_recv_handler_register(uint8_t packet_type,
450 int (*recv_handler)(struct sk_buff *,
451 struct batadv_hard_iface *))
Marek Lindnerffa995e2012-03-01 15:35:17 +0800452{
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200453 int (*curr)(struct sk_buff *,
454 struct batadv_hard_iface *);
455 curr = batadv_rx_handler[packet_type];
456
457 if ((curr != batadv_recv_unhandled_packet) &&
458 (curr != batadv_recv_unhandled_unicast_packet))
Marek Lindnerffa995e2012-03-01 15:35:17 +0800459 return -EBUSY;
460
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200461 batadv_rx_handler[packet_type] = recv_handler;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800462 return 0;
463}
464
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200465void batadv_recv_handler_unregister(uint8_t packet_type)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800466{
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200467 batadv_rx_handler[packet_type] = batadv_recv_unhandled_packet;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800468}
469
Sven Eckelmann56303d32012-06-05 22:31:31 +0200470static struct batadv_algo_ops *batadv_algo_get(char *name)
Marek Lindner1c280472011-11-28 17:40:17 +0800471{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200472 struct batadv_algo_ops *bat_algo_ops = NULL, *bat_algo_ops_tmp;
Marek Lindner1c280472011-11-28 17:40:17 +0800473
Sasha Levinb67bfe02013-02-27 17:06:00 -0800474 hlist_for_each_entry(bat_algo_ops_tmp, &batadv_algo_list, list) {
Marek Lindner1c280472011-11-28 17:40:17 +0800475 if (strcmp(bat_algo_ops_tmp->name, name) != 0)
476 continue;
477
478 bat_algo_ops = bat_algo_ops_tmp;
479 break;
480 }
481
482 return bat_algo_ops;
483}
484
Sven Eckelmann56303d32012-06-05 22:31:31 +0200485int batadv_algo_register(struct batadv_algo_ops *bat_algo_ops)
Marek Lindner1c280472011-11-28 17:40:17 +0800486{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200487 struct batadv_algo_ops *bat_algo_ops_tmp;
Sven Eckelmann5346c352012-05-05 13:27:28 +0200488 int ret;
Marek Lindner1c280472011-11-28 17:40:17 +0800489
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200490 bat_algo_ops_tmp = batadv_algo_get(bat_algo_ops->name);
Marek Lindner1c280472011-11-28 17:40:17 +0800491 if (bat_algo_ops_tmp) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100492 pr_info("Trying to register already registered routing algorithm: %s\n",
493 bat_algo_ops->name);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200494 ret = -EEXIST;
Marek Lindner1c280472011-11-28 17:40:17 +0800495 goto out;
496 }
497
Marek Lindner01c42242011-11-28 21:31:55 +0800498 /* all algorithms must implement all ops (for now) */
Marek Lindnerc2aca022012-02-07 17:20:45 +0800499 if (!bat_algo_ops->bat_iface_enable ||
Marek Lindner00a50072012-02-07 17:20:47 +0800500 !bat_algo_ops->bat_iface_disable ||
Marek Lindnerc3229392012-03-11 06:17:50 +0800501 !bat_algo_ops->bat_iface_update_mac ||
Marek Lindnercd8b78e2012-02-07 17:20:49 +0800502 !bat_algo_ops->bat_primary_iface_set ||
Marek Lindner01c42242011-11-28 21:31:55 +0800503 !bat_algo_ops->bat_ogm_schedule ||
Antonio Quartullia3285a82013-09-02 12:15:04 +0200504 !bat_algo_ops->bat_ogm_emit ||
Antonio Quartullic43c9812013-09-02 12:15:05 +0200505 !bat_algo_ops->bat_neigh_cmp ||
506 !bat_algo_ops->bat_neigh_is_equiv_or_better) {
Marek Lindner01c42242011-11-28 21:31:55 +0800507 pr_info("Routing algo '%s' does not implement required ops\n",
508 bat_algo_ops->name);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200509 ret = -EINVAL;
Marek Lindner01c42242011-11-28 21:31:55 +0800510 goto out;
511 }
512
Marek Lindner1c280472011-11-28 17:40:17 +0800513 INIT_HLIST_NODE(&bat_algo_ops->list);
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200514 hlist_add_head(&bat_algo_ops->list, &batadv_algo_list);
Marek Lindner1c280472011-11-28 17:40:17 +0800515 ret = 0;
516
517out:
518 return ret;
519}
520
Sven Eckelmann56303d32012-06-05 22:31:31 +0200521int batadv_algo_select(struct batadv_priv *bat_priv, char *name)
Marek Lindner1c280472011-11-28 17:40:17 +0800522{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200523 struct batadv_algo_ops *bat_algo_ops;
Sven Eckelmann5346c352012-05-05 13:27:28 +0200524 int ret = -EINVAL;
Marek Lindner1c280472011-11-28 17:40:17 +0800525
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200526 bat_algo_ops = batadv_algo_get(name);
Marek Lindner1c280472011-11-28 17:40:17 +0800527 if (!bat_algo_ops)
528 goto out;
529
530 bat_priv->bat_algo_ops = bat_algo_ops;
531 ret = 0;
532
533out:
534 return ret;
535}
536
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200537int batadv_algo_seq_print_text(struct seq_file *seq, void *offset)
Marek Lindner1c280472011-11-28 17:40:17 +0800538{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200539 struct batadv_algo_ops *bat_algo_ops;
Marek Lindner1c280472011-11-28 17:40:17 +0800540
Antonio Quartulli0c814652013-03-21 09:23:29 +0100541 seq_puts(seq, "Available routing algorithms:\n");
Marek Lindner1c280472011-11-28 17:40:17 +0800542
Sasha Levinb67bfe02013-02-27 17:06:00 -0800543 hlist_for_each_entry(bat_algo_ops, &batadv_algo_list, list) {
Marek Lindner1c280472011-11-28 17:40:17 +0800544 seq_printf(seq, "%s\n", bat_algo_ops->name);
545 }
546
547 return 0;
548}
549
Sven Eckelmann95a066d2012-10-17 21:10:39 +0200550/**
551 * batadv_skb_crc32 - calculate CRC32 of the whole packet and skip bytes in
552 * the header
553 * @skb: skb pointing to fragmented socket buffers
554 * @payload_ptr: Pointer to position inside the head buffer of the skb
555 * marking the start of the data to be CRC'ed
556 *
557 * payload_ptr must always point to an address in the skb head buffer and not to
558 * a fragment.
559 */
560__be32 batadv_skb_crc32(struct sk_buff *skb, u8 *payload_ptr)
561{
562 u32 crc = 0;
563 unsigned int from;
564 unsigned int to = skb->len;
565 struct skb_seq_state st;
566 const u8 *data;
567 unsigned int len;
568 unsigned int consumed = 0;
569
570 from = (unsigned int)(payload_ptr - skb->data);
571
572 skb_prepare_seq_read(skb, from, to, &st);
573 while ((len = skb_seq_read(consumed, &data, &st)) != 0) {
574 crc = crc32c(crc, data, len);
575 consumed += len;
576 }
Sven Eckelmann95a066d2012-10-17 21:10:39 +0200577
578 return htonl(crc);
579}
580
Marek Lindneref261572013-04-23 21:39:57 +0800581/**
582 * batadv_tvlv_handler_free_ref - decrement the tvlv handler refcounter and
583 * possibly free it
584 * @tvlv_handler: the tvlv handler to free
585 */
586static void
587batadv_tvlv_handler_free_ref(struct batadv_tvlv_handler *tvlv_handler)
588{
589 if (atomic_dec_and_test(&tvlv_handler->refcount))
590 kfree_rcu(tvlv_handler, rcu);
591}
592
593/**
594 * batadv_tvlv_handler_get - retrieve tvlv handler from the tvlv handler list
595 * based on the provided type and version (both need to match)
596 * @bat_priv: the bat priv with all the soft interface information
597 * @type: tvlv handler type to look for
598 * @version: tvlv handler version to look for
599 *
600 * Returns tvlv handler if found or NULL otherwise.
601 */
602static struct batadv_tvlv_handler
603*batadv_tvlv_handler_get(struct batadv_priv *bat_priv,
604 uint8_t type, uint8_t version)
605{
606 struct batadv_tvlv_handler *tvlv_handler_tmp, *tvlv_handler = NULL;
607
608 rcu_read_lock();
609 hlist_for_each_entry_rcu(tvlv_handler_tmp,
610 &bat_priv->tvlv.handler_list, list) {
611 if (tvlv_handler_tmp->type != type)
612 continue;
613
614 if (tvlv_handler_tmp->version != version)
615 continue;
616
617 if (!atomic_inc_not_zero(&tvlv_handler_tmp->refcount))
618 continue;
619
620 tvlv_handler = tvlv_handler_tmp;
621 break;
622 }
623 rcu_read_unlock();
624
625 return tvlv_handler;
626}
627
628/**
629 * batadv_tvlv_container_free_ref - decrement the tvlv container refcounter and
630 * possibly free it
631 * @tvlv_handler: the tvlv container to free
632 */
633static void batadv_tvlv_container_free_ref(struct batadv_tvlv_container *tvlv)
634{
635 if (atomic_dec_and_test(&tvlv->refcount))
636 kfree(tvlv);
637}
638
639/**
640 * batadv_tvlv_container_get - retrieve tvlv container from the tvlv container
641 * list based on the provided type and version (both need to match)
642 * @bat_priv: the bat priv with all the soft interface information
643 * @type: tvlv container type to look for
644 * @version: tvlv container version to look for
645 *
646 * Has to be called with the appropriate locks being acquired
647 * (tvlv.container_list_lock).
648 *
649 * Returns tvlv container if found or NULL otherwise.
650 */
651static struct batadv_tvlv_container
652*batadv_tvlv_container_get(struct batadv_priv *bat_priv,
653 uint8_t type, uint8_t version)
654{
655 struct batadv_tvlv_container *tvlv_tmp, *tvlv = NULL;
656
657 hlist_for_each_entry(tvlv_tmp, &bat_priv->tvlv.container_list, list) {
658 if (tvlv_tmp->tvlv_hdr.type != type)
659 continue;
660
661 if (tvlv_tmp->tvlv_hdr.version != version)
662 continue;
663
664 if (!atomic_inc_not_zero(&tvlv_tmp->refcount))
665 continue;
666
667 tvlv = tvlv_tmp;
668 break;
669 }
670
671 return tvlv;
672}
673
674/**
675 * batadv_tvlv_container_list_size - calculate the size of the tvlv container
676 * list entries
677 * @bat_priv: the bat priv with all the soft interface information
678 *
679 * Has to be called with the appropriate locks being acquired
680 * (tvlv.container_list_lock).
681 *
682 * Returns size of all currently registered tvlv containers in bytes.
683 */
684static uint16_t batadv_tvlv_container_list_size(struct batadv_priv *bat_priv)
685{
686 struct batadv_tvlv_container *tvlv;
687 uint16_t tvlv_len = 0;
688
689 hlist_for_each_entry(tvlv, &bat_priv->tvlv.container_list, list) {
690 tvlv_len += sizeof(struct batadv_tvlv_hdr);
691 tvlv_len += ntohs(tvlv->tvlv_hdr.len);
692 }
693
694 return tvlv_len;
695}
696
697/**
698 * batadv_tvlv_container_remove - remove tvlv container from the tvlv container
699 * list
700 * @tvlv: the to be removed tvlv container
701 *
702 * Has to be called with the appropriate locks being acquired
703 * (tvlv.container_list_lock).
704 */
705static void batadv_tvlv_container_remove(struct batadv_tvlv_container *tvlv)
706{
707 if (!tvlv)
708 return;
709
710 hlist_del(&tvlv->list);
711
712 /* first call to decrement the counter, second call to free */
713 batadv_tvlv_container_free_ref(tvlv);
714 batadv_tvlv_container_free_ref(tvlv);
715}
716
717/**
718 * batadv_tvlv_container_unregister - unregister tvlv container based on the
719 * provided type and version (both need to match)
720 * @bat_priv: the bat priv with all the soft interface information
721 * @type: tvlv container type to unregister
722 * @version: tvlv container type to unregister
723 */
724void batadv_tvlv_container_unregister(struct batadv_priv *bat_priv,
725 uint8_t type, uint8_t version)
726{
727 struct batadv_tvlv_container *tvlv;
728
729 spin_lock_bh(&bat_priv->tvlv.container_list_lock);
730 tvlv = batadv_tvlv_container_get(bat_priv, type, version);
731 batadv_tvlv_container_remove(tvlv);
732 spin_unlock_bh(&bat_priv->tvlv.container_list_lock);
733}
734
735/**
736 * batadv_tvlv_container_register - register tvlv type, version and content
737 * to be propagated with each (primary interface) OGM
738 * @bat_priv: the bat priv with all the soft interface information
739 * @type: tvlv container type
740 * @version: tvlv container version
741 * @tvlv_value: tvlv container content
742 * @tvlv_value_len: tvlv container content length
743 *
744 * If a container of the same type and version was already registered the new
745 * content is going to replace the old one.
746 */
747void batadv_tvlv_container_register(struct batadv_priv *bat_priv,
748 uint8_t type, uint8_t version,
749 void *tvlv_value, uint16_t tvlv_value_len)
750{
751 struct batadv_tvlv_container *tvlv_old, *tvlv_new;
752
753 if (!tvlv_value)
754 tvlv_value_len = 0;
755
756 tvlv_new = kzalloc(sizeof(*tvlv_new) + tvlv_value_len, GFP_ATOMIC);
757 if (!tvlv_new)
758 return;
759
760 tvlv_new->tvlv_hdr.version = version;
761 tvlv_new->tvlv_hdr.type = type;
762 tvlv_new->tvlv_hdr.len = htons(tvlv_value_len);
763
764 memcpy(tvlv_new + 1, tvlv_value, ntohs(tvlv_new->tvlv_hdr.len));
765 INIT_HLIST_NODE(&tvlv_new->list);
766 atomic_set(&tvlv_new->refcount, 1);
767
768 spin_lock_bh(&bat_priv->tvlv.container_list_lock);
769 tvlv_old = batadv_tvlv_container_get(bat_priv, type, version);
770 batadv_tvlv_container_remove(tvlv_old);
771 hlist_add_head(&tvlv_new->list, &bat_priv->tvlv.container_list);
772 spin_unlock_bh(&bat_priv->tvlv.container_list_lock);
773}
774
775/**
776 * batadv_tvlv_realloc_packet_buff - reallocate packet buffer to accomodate
777 * requested packet size
778 * @packet_buff: packet buffer
779 * @packet_buff_len: packet buffer size
780 * @packet_min_len: requested packet minimum size
781 * @additional_packet_len: requested additional packet size on top of minimum
782 * size
783 *
784 * Returns true of the packet buffer could be changed to the requested size,
785 * false otherwise.
786 */
787static bool batadv_tvlv_realloc_packet_buff(unsigned char **packet_buff,
788 int *packet_buff_len,
789 int min_packet_len,
790 int additional_packet_len)
791{
792 unsigned char *new_buff;
793
794 new_buff = kmalloc(min_packet_len + additional_packet_len, GFP_ATOMIC);
795
796 /* keep old buffer if kmalloc should fail */
797 if (new_buff) {
798 memcpy(new_buff, *packet_buff, min_packet_len);
799 kfree(*packet_buff);
800 *packet_buff = new_buff;
801 *packet_buff_len = min_packet_len + additional_packet_len;
802 return true;
803 }
804
805 return false;
806}
807
808/**
809 * batadv_tvlv_container_ogm_append - append tvlv container content to given
810 * OGM packet buffer
811 * @bat_priv: the bat priv with all the soft interface information
812 * @packet_buff: ogm packet buffer
813 * @packet_buff_len: ogm packet buffer size including ogm header and tvlv
814 * content
815 * @packet_min_len: ogm header size to be preserved for the OGM itself
816 *
817 * The ogm packet might be enlarged or shrunk depending on the current size
818 * and the size of the to-be-appended tvlv containers.
819 *
820 * Returns size of all appended tvlv containers in bytes.
821 */
822uint16_t batadv_tvlv_container_ogm_append(struct batadv_priv *bat_priv,
823 unsigned char **packet_buff,
824 int *packet_buff_len,
825 int packet_min_len)
826{
827 struct batadv_tvlv_container *tvlv;
828 struct batadv_tvlv_hdr *tvlv_hdr;
829 uint16_t tvlv_value_len;
830 void *tvlv_value;
831 bool ret;
832
833 spin_lock_bh(&bat_priv->tvlv.container_list_lock);
834 tvlv_value_len = batadv_tvlv_container_list_size(bat_priv);
835
836 ret = batadv_tvlv_realloc_packet_buff(packet_buff, packet_buff_len,
837 packet_min_len, tvlv_value_len);
838
839 if (!ret)
840 goto end;
841
842 if (!tvlv_value_len)
843 goto end;
844
845 tvlv_value = (*packet_buff) + packet_min_len;
846
847 hlist_for_each_entry(tvlv, &bat_priv->tvlv.container_list, list) {
848 tvlv_hdr = tvlv_value;
849 tvlv_hdr->type = tvlv->tvlv_hdr.type;
850 tvlv_hdr->version = tvlv->tvlv_hdr.version;
851 tvlv_hdr->len = tvlv->tvlv_hdr.len;
852 tvlv_value = tvlv_hdr + 1;
853 memcpy(tvlv_value, tvlv + 1, ntohs(tvlv->tvlv_hdr.len));
854 tvlv_value = (uint8_t *)tvlv_value + ntohs(tvlv->tvlv_hdr.len);
855 }
856
857end:
858 spin_unlock_bh(&bat_priv->tvlv.container_list_lock);
859 return tvlv_value_len;
860}
861
862/**
863 * batadv_tvlv_call_handler - parse the given tvlv buffer to call the
864 * appropriate handlers
865 * @bat_priv: the bat priv with all the soft interface information
866 * @tvlv_handler: tvlv callback function handling the tvlv content
867 * @ogm_source: flag indicating wether the tvlv is an ogm or a unicast packet
868 * @orig_node: orig node emitting the ogm packet
869 * @src: source mac address of the unicast packet
870 * @dst: destination mac address of the unicast packet
871 * @tvlv_value: tvlv content
872 * @tvlv_value_len: tvlv content length
873 *
874 * Returns success if handler was not found or the return value of the handler
875 * callback.
876 */
877static int batadv_tvlv_call_handler(struct batadv_priv *bat_priv,
878 struct batadv_tvlv_handler *tvlv_handler,
879 bool ogm_source,
880 struct batadv_orig_node *orig_node,
881 uint8_t *src, uint8_t *dst,
882 void *tvlv_value, uint16_t tvlv_value_len)
883{
884 if (!tvlv_handler)
885 return NET_RX_SUCCESS;
886
887 if (ogm_source) {
888 if (!tvlv_handler->ogm_handler)
889 return NET_RX_SUCCESS;
890
891 if (!orig_node)
892 return NET_RX_SUCCESS;
893
894 tvlv_handler->ogm_handler(bat_priv, orig_node,
895 BATADV_NO_FLAGS,
896 tvlv_value, tvlv_value_len);
897 tvlv_handler->flags |= BATADV_TVLV_HANDLER_OGM_CALLED;
898 } else {
899 if (!src)
900 return NET_RX_SUCCESS;
901
902 if (!dst)
903 return NET_RX_SUCCESS;
904
905 if (!tvlv_handler->unicast_handler)
906 return NET_RX_SUCCESS;
907
908 return tvlv_handler->unicast_handler(bat_priv, src,
909 dst, tvlv_value,
910 tvlv_value_len);
911 }
912
913 return NET_RX_SUCCESS;
914}
915
916/**
917 * batadv_tvlv_containers_process - parse the given tvlv buffer to call the
918 * appropriate handlers
919 * @bat_priv: the bat priv with all the soft interface information
920 * @ogm_source: flag indicating wether the tvlv is an ogm or a unicast packet
921 * @orig_node: orig node emitting the ogm packet
922 * @src: source mac address of the unicast packet
923 * @dst: destination mac address of the unicast packet
924 * @tvlv_value: tvlv content
925 * @tvlv_value_len: tvlv content length
926 *
927 * Returns success when processing an OGM or the return value of all called
928 * handler callbacks.
929 */
930int batadv_tvlv_containers_process(struct batadv_priv *bat_priv,
931 bool ogm_source,
932 struct batadv_orig_node *orig_node,
933 uint8_t *src, uint8_t *dst,
934 void *tvlv_value, uint16_t tvlv_value_len)
935{
936 struct batadv_tvlv_handler *tvlv_handler;
937 struct batadv_tvlv_hdr *tvlv_hdr;
938 uint16_t tvlv_value_cont_len;
939 uint8_t cifnotfound = BATADV_TVLV_HANDLER_OGM_CIFNOTFND;
940 int ret = NET_RX_SUCCESS;
941
942 while (tvlv_value_len >= sizeof(*tvlv_hdr)) {
943 tvlv_hdr = tvlv_value;
944 tvlv_value_cont_len = ntohs(tvlv_hdr->len);
945 tvlv_value = tvlv_hdr + 1;
946 tvlv_value_len -= sizeof(*tvlv_hdr);
947
948 if (tvlv_value_cont_len > tvlv_value_len)
949 break;
950
951 tvlv_handler = batadv_tvlv_handler_get(bat_priv,
952 tvlv_hdr->type,
953 tvlv_hdr->version);
954
955 ret |= batadv_tvlv_call_handler(bat_priv, tvlv_handler,
956 ogm_source, orig_node,
957 src, dst, tvlv_value,
958 tvlv_value_cont_len);
959 if (tvlv_handler)
960 batadv_tvlv_handler_free_ref(tvlv_handler);
961 tvlv_value = (uint8_t *)tvlv_value + tvlv_value_cont_len;
962 tvlv_value_len -= tvlv_value_cont_len;
963 }
964
965 if (!ogm_source)
966 return ret;
967
968 rcu_read_lock();
969 hlist_for_each_entry_rcu(tvlv_handler,
970 &bat_priv->tvlv.handler_list, list) {
971 if ((tvlv_handler->flags & BATADV_TVLV_HANDLER_OGM_CIFNOTFND) &&
972 !(tvlv_handler->flags & BATADV_TVLV_HANDLER_OGM_CALLED))
973 tvlv_handler->ogm_handler(bat_priv, orig_node,
974 cifnotfound, NULL, 0);
975
976 tvlv_handler->flags &= ~BATADV_TVLV_HANDLER_OGM_CALLED;
977 }
978 rcu_read_unlock();
979
980 return NET_RX_SUCCESS;
981}
982
983/**
984 * batadv_tvlv_ogm_receive - process an incoming ogm and call the appropriate
985 * handlers
986 * @bat_priv: the bat priv with all the soft interface information
987 * @batadv_ogm_packet: ogm packet containing the tvlv containers
988 * @orig_node: orig node emitting the ogm packet
989 */
990void batadv_tvlv_ogm_receive(struct batadv_priv *bat_priv,
991 struct batadv_ogm_packet *batadv_ogm_packet,
992 struct batadv_orig_node *orig_node)
993{
994 void *tvlv_value;
995 uint16_t tvlv_value_len;
996
997 if (!batadv_ogm_packet)
998 return;
999
1000 tvlv_value_len = ntohs(batadv_ogm_packet->tvlv_len);
1001 if (!tvlv_value_len)
1002 return;
1003
1004 tvlv_value = batadv_ogm_packet + 1;
1005
1006 batadv_tvlv_containers_process(bat_priv, true, orig_node, NULL, NULL,
1007 tvlv_value, tvlv_value_len);
1008}
1009
1010/**
1011 * batadv_tvlv_handler_register - register tvlv handler based on the provided
1012 * type and version (both need to match) for ogm tvlv payload and/or unicast
1013 * payload
1014 * @bat_priv: the bat priv with all the soft interface information
1015 * @optr: ogm tvlv handler callback function. This function receives the orig
1016 * node, flags and the tvlv content as argument to process.
1017 * @uptr: unicast tvlv handler callback function. This function receives the
1018 * source & destination of the unicast packet as well as the tvlv content
1019 * to process.
1020 * @type: tvlv handler type to be registered
1021 * @version: tvlv handler version to be registered
1022 * @flags: flags to enable or disable TVLV API behavior
1023 */
1024void batadv_tvlv_handler_register(struct batadv_priv *bat_priv,
1025 void (*optr)(struct batadv_priv *bat_priv,
1026 struct batadv_orig_node *orig,
1027 uint8_t flags,
1028 void *tvlv_value,
1029 uint16_t tvlv_value_len),
1030 int (*uptr)(struct batadv_priv *bat_priv,
1031 uint8_t *src, uint8_t *dst,
1032 void *tvlv_value,
1033 uint16_t tvlv_value_len),
1034 uint8_t type, uint8_t version, uint8_t flags)
1035{
1036 struct batadv_tvlv_handler *tvlv_handler;
1037
1038 tvlv_handler = batadv_tvlv_handler_get(bat_priv, type, version);
1039 if (tvlv_handler) {
1040 batadv_tvlv_handler_free_ref(tvlv_handler);
1041 return;
1042 }
1043
1044 tvlv_handler = kzalloc(sizeof(*tvlv_handler), GFP_ATOMIC);
1045 if (!tvlv_handler)
1046 return;
1047
1048 tvlv_handler->ogm_handler = optr;
1049 tvlv_handler->unicast_handler = uptr;
1050 tvlv_handler->type = type;
1051 tvlv_handler->version = version;
1052 tvlv_handler->flags = flags;
1053 atomic_set(&tvlv_handler->refcount, 1);
1054 INIT_HLIST_NODE(&tvlv_handler->list);
1055
1056 spin_lock_bh(&bat_priv->tvlv.handler_list_lock);
1057 hlist_add_head_rcu(&tvlv_handler->list, &bat_priv->tvlv.handler_list);
1058 spin_unlock_bh(&bat_priv->tvlv.handler_list_lock);
1059}
1060
1061/**
1062 * batadv_tvlv_handler_unregister - unregister tvlv handler based on the
1063 * provided type and version (both need to match)
1064 * @bat_priv: the bat priv with all the soft interface information
1065 * @type: tvlv handler type to be unregistered
1066 * @version: tvlv handler version to be unregistered
1067 */
1068void batadv_tvlv_handler_unregister(struct batadv_priv *bat_priv,
1069 uint8_t type, uint8_t version)
1070{
1071 struct batadv_tvlv_handler *tvlv_handler;
1072
1073 tvlv_handler = batadv_tvlv_handler_get(bat_priv, type, version);
1074 if (!tvlv_handler)
1075 return;
1076
1077 batadv_tvlv_handler_free_ref(tvlv_handler);
1078 spin_lock_bh(&bat_priv->tvlv.handler_list_lock);
1079 hlist_del_rcu(&tvlv_handler->list);
1080 spin_unlock_bh(&bat_priv->tvlv.handler_list_lock);
1081 batadv_tvlv_handler_free_ref(tvlv_handler);
1082}
1083
1084/**
1085 * batadv_tvlv_unicast_send - send a unicast packet with tvlv payload to the
1086 * specified host
1087 * @bat_priv: the bat priv with all the soft interface information
1088 * @src: source mac address of the unicast packet
1089 * @dst: destination mac address of the unicast packet
1090 * @type: tvlv type
1091 * @version: tvlv version
1092 * @tvlv_value: tvlv content
1093 * @tvlv_value_len: tvlv content length
1094 */
1095void batadv_tvlv_unicast_send(struct batadv_priv *bat_priv, uint8_t *src,
1096 uint8_t *dst, uint8_t type, uint8_t version,
1097 void *tvlv_value, uint16_t tvlv_value_len)
1098{
1099 struct batadv_unicast_tvlv_packet *unicast_tvlv_packet;
1100 struct batadv_tvlv_hdr *tvlv_hdr;
1101 struct batadv_orig_node *orig_node;
1102 struct sk_buff *skb = NULL;
1103 unsigned char *tvlv_buff;
1104 unsigned int tvlv_len;
1105 ssize_t hdr_len = sizeof(*unicast_tvlv_packet);
1106 bool ret = false;
1107
1108 orig_node = batadv_orig_hash_find(bat_priv, dst);
1109 if (!orig_node)
1110 goto out;
1111
1112 tvlv_len = sizeof(*tvlv_hdr) + tvlv_value_len;
1113
1114 skb = netdev_alloc_skb_ip_align(NULL, ETH_HLEN + hdr_len + tvlv_len);
1115 if (!skb)
1116 goto out;
1117
1118 skb->priority = TC_PRIO_CONTROL;
1119 skb_reserve(skb, ETH_HLEN);
1120 tvlv_buff = skb_put(skb, sizeof(*unicast_tvlv_packet) + tvlv_len);
1121 unicast_tvlv_packet = (struct batadv_unicast_tvlv_packet *)tvlv_buff;
1122 unicast_tvlv_packet->header.packet_type = BATADV_UNICAST_TVLV;
1123 unicast_tvlv_packet->header.version = BATADV_COMPAT_VERSION;
1124 unicast_tvlv_packet->header.ttl = BATADV_TTL;
1125 unicast_tvlv_packet->reserved = 0;
1126 unicast_tvlv_packet->tvlv_len = htons(tvlv_len);
1127 unicast_tvlv_packet->align = 0;
1128 memcpy(unicast_tvlv_packet->src, src, ETH_ALEN);
1129 memcpy(unicast_tvlv_packet->dst, dst, ETH_ALEN);
1130
1131 tvlv_buff = (unsigned char *)(unicast_tvlv_packet + 1);
1132 tvlv_hdr = (struct batadv_tvlv_hdr *)tvlv_buff;
1133 tvlv_hdr->version = version;
1134 tvlv_hdr->type = type;
1135 tvlv_hdr->len = htons(tvlv_value_len);
1136 tvlv_buff += sizeof(*tvlv_hdr);
1137 memcpy(tvlv_buff, tvlv_value, tvlv_value_len);
1138
1139 if (batadv_send_skb_to_orig(skb, orig_node, NULL) != NET_XMIT_DROP)
1140 ret = true;
1141
1142out:
1143 if (skb && !ret)
1144 kfree_skb(skb);
1145 if (orig_node)
1146 batadv_orig_node_free_ref(orig_node);
1147}
1148
Antonio Quartullic018ad32013-06-04 12:11:39 +02001149/**
1150 * batadv_get_vid - extract the VLAN identifier from skb if any
1151 * @skb: the buffer containing the packet
1152 * @header_len: length of the batman header preceding the ethernet header
1153 *
1154 * If the packet embedded in the skb is vlan tagged this function returns the
1155 * VID with the BATADV_VLAN_HAS_TAG flag. Otherwise BATADV_NO_FLAGS is returned.
1156 */
1157unsigned short batadv_get_vid(struct sk_buff *skb, size_t header_len)
1158{
1159 struct ethhdr *ethhdr = (struct ethhdr *)(skb->data + header_len);
1160 struct vlan_ethhdr *vhdr;
1161 unsigned short vid;
1162
1163 if (ethhdr->h_proto != htons(ETH_P_8021Q))
1164 return BATADV_NO_FLAGS;
1165
1166 if (!pskb_may_pull(skb, header_len + VLAN_ETH_HLEN))
1167 return BATADV_NO_FLAGS;
1168
1169 vhdr = (struct vlan_ethhdr *)(skb->data + header_len);
1170 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK;
1171 vid |= BATADV_VLAN_HAS_TAG;
1172
1173 return vid;
1174}
1175
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001176static int batadv_param_set_ra(const char *val, const struct kernel_param *kp)
Marek Lindnerd419be12011-12-10 19:45:53 +08001177{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001178 struct batadv_algo_ops *bat_algo_ops;
Marek Lindnerd8cb54862012-04-18 17:16:39 +08001179 char *algo_name = (char *)val;
1180 size_t name_len = strlen(algo_name);
Marek Lindnerd419be12011-12-10 19:45:53 +08001181
Marek Lindner293c9c12013-04-27 16:22:28 +08001182 if (name_len > 0 && algo_name[name_len - 1] == '\n')
Marek Lindnerd8cb54862012-04-18 17:16:39 +08001183 algo_name[name_len - 1] = '\0';
1184
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001185 bat_algo_ops = batadv_algo_get(algo_name);
Marek Lindnerd419be12011-12-10 19:45:53 +08001186 if (!bat_algo_ops) {
Marek Lindnerd8cb54862012-04-18 17:16:39 +08001187 pr_err("Routing algorithm '%s' is not supported\n", algo_name);
Marek Lindnerd419be12011-12-10 19:45:53 +08001188 return -EINVAL;
1189 }
1190
Marek Lindnerd8cb54862012-04-18 17:16:39 +08001191 return param_set_copystring(algo_name, kp);
Marek Lindnerd419be12011-12-10 19:45:53 +08001192}
1193
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001194static const struct kernel_param_ops batadv_param_ops_ra = {
1195 .set = batadv_param_set_ra,
Marek Lindnerd419be12011-12-10 19:45:53 +08001196 .get = param_get_string,
1197};
1198
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001199static struct kparam_string batadv_param_string_ra = {
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001200 .maxlen = sizeof(batadv_routing_algo),
1201 .string = batadv_routing_algo,
Marek Lindnerd419be12011-12-10 19:45:53 +08001202};
1203
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001204module_param_cb(routing_algo, &batadv_param_ops_ra, &batadv_param_string_ra,
1205 0644);
1206module_init(batadv_init);
1207module_exit(batadv_exit);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001208
1209MODULE_LICENSE("GPL");
1210
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001211MODULE_AUTHOR(BATADV_DRIVER_AUTHOR);
1212MODULE_DESCRIPTION(BATADV_DRIVER_DESC);
1213MODULE_SUPPORTED_DEVICE(BATADV_DRIVER_DEVICE);
1214MODULE_VERSION(BATADV_SOURCE_VERSION);