blob: 22075511c44823a852bd34fb4bb2b8fcab2add9b [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);
113 spin_lock_init(&bat_priv->gw.list_lock);
Marek Lindneref261572013-04-23 21:39:57 +0800114 spin_lock_init(&bat_priv->tvlv.container_list_lock);
115 spin_lock_init(&bat_priv->tvlv.handler_list_lock);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200116 spin_lock_init(&bat_priv->softif_vlan_list_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000117
118 INIT_HLIST_HEAD(&bat_priv->forw_bat_list);
119 INIT_HLIST_HEAD(&bat_priv->forw_bcast_list);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200120 INIT_HLIST_HEAD(&bat_priv->gw.list);
121 INIT_LIST_HEAD(&bat_priv->tt.changes_list);
122 INIT_LIST_HEAD(&bat_priv->tt.req_list);
123 INIT_LIST_HEAD(&bat_priv->tt.roam_list);
Marek Lindneref261572013-04-23 21:39:57 +0800124 INIT_HLIST_HEAD(&bat_priv->tvlv.container_list);
125 INIT_HLIST_HEAD(&bat_priv->tvlv.handler_list);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200126 INIT_HLIST_HEAD(&bat_priv->softif_vlan_list);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200128 ret = batadv_originator_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200129 if (ret < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130 goto err;
131
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200132 ret = batadv_tt_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200133 if (ret < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134 goto err;
135
Sven Eckelmann08adf152012-05-12 13:38:47 +0200136 ret = batadv_bla_init(bat_priv);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200137 if (ret < 0)
Simon Wunderlich23721382012-01-22 20:00:19 +0100138 goto err;
139
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200140 ret = batadv_dat_init(bat_priv);
141 if (ret < 0)
142 goto err;
143
Matthias Schiffer6c519ba2013-09-27 18:03:39 +0200144 ret = batadv_nc_mesh_init(bat_priv);
Martin Hundebølld353d8d2013-01-25 11:12:38 +0100145 if (ret < 0)
146 goto err;
147
Marek Lindner414254e2013-04-23 21:39:58 +0800148 batadv_gw_init(bat_priv);
149
Sven Eckelmann807736f2012-07-15 22:26:51 +0200150 atomic_set(&bat_priv->gw.reselect, 0);
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200151 atomic_set(&bat_priv->mesh_state, BATADV_MESH_ACTIVE);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200152
153 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000154
155err:
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200156 batadv_mesh_free(soft_iface);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200157 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158}
159
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200160void batadv_mesh_free(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200162 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000163
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200164 atomic_set(&bat_priv->mesh_state, BATADV_MESH_DEACTIVATING);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165
Sven Eckelmann9455e342012-05-12 02:09:37 +0200166 batadv_purge_outstanding_packets(bat_priv, NULL);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000167
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200168 batadv_gw_node_purge(bat_priv);
Matthias Schiffer6c519ba2013-09-27 18:03:39 +0200169 batadv_nc_mesh_free(bat_priv);
Antonio Quartullia4361862013-05-07 01:06:18 +0200170 batadv_dat_free(bat_priv);
Sven Eckelmann08adf152012-05-12 13:38:47 +0200171 batadv_bla_free(bat_priv);
Simon Wunderlich23721382012-01-22 20:00:19 +0100172
Antonio Quartullia4361862013-05-07 01:06:18 +0200173 /* Free the TT and the originator tables only after having terminated
174 * all the other depending components which may use these structures for
175 * their purposes.
176 */
177 batadv_tt_free(bat_priv);
178
179 /* Since the originator table clean up routine is accessing the TT
180 * tables as well, it has to be invoked after the TT tables have been
181 * freed and marked as empty. This ensures that no cleanup RCU callbacks
182 * accessing the TT data are scheduled for later execution.
183 */
184 batadv_originator_free(bat_priv);
Antonio Quartulli2f1dfbe2012-06-30 20:01:19 +0200185
Marek Lindner414254e2013-04-23 21:39:58 +0800186 batadv_gw_free(bat_priv);
187
Martin Hundebøllf8214862012-04-20 17:02:45 +0200188 free_percpu(bat_priv->bat_counters);
Martin Hundebøllf69ae772013-04-17 21:13:16 +0200189 bat_priv->bat_counters = NULL;
Martin Hundebøllf8214862012-04-20 17:02:45 +0200190
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200191 atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192}
193
David S. Miller6e0895c2013-04-22 20:32:51 -0400194/**
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
199 */
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200200int batadv_is_my_mac(struct batadv_priv *bat_priv, const uint8_t *addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000201{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200202 const struct batadv_hard_iface *hard_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203
204 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200205 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200206 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207 continue;
208
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200209 if (hard_iface->soft_iface != bat_priv->soft_iface)
210 continue;
211
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200212 if (batadv_compare_eth(hard_iface->net_dev->dev_addr, addr)) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000213 rcu_read_unlock();
214 return 1;
215 }
216 }
217 rcu_read_unlock();
218 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000219}
220
Marek Lindner30da63a2012-08-03 17:15:46 +0200221/**
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
225 *
226 * Returns primary interface if found or NULL otherwise.
227 */
228struct batadv_hard_iface *
229batadv_seq_print_text_primary_if_get(struct seq_file *seq)
230{
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;
234
235 primary_if = batadv_primary_if_get_selected(bat_priv);
236
237 if (!primary_if) {
238 seq_printf(seq,
239 "BATMAN mesh %s disabled - please specify interfaces to enable it\n",
240 net_dev->name);
241 goto out;
242 }
243
244 if (primary_if->if_status == BATADV_IF_ACTIVE)
245 goto out;
246
247 seq_printf(seq,
248 "BATMAN mesh %s disabled - primary interface not active\n",
249 net_dev->name);
250 batadv_hardif_free_ref(primary_if);
251 primary_if = NULL;
252
253out:
254 return primary_if;
255}
256
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200257/**
Marek Lindner411d6ed2013-05-08 13:31:59 +0800258 * batadv_max_header_len - calculate maximum encapsulation overhead for a
259 * payload packet
260 *
261 * Return the maximum encapsulation overhead in bytes.
262 */
263int batadv_max_header_len(void)
264{
265 int header_len = 0;
266
267 header_len = max_t(int, header_len,
268 sizeof(struct batadv_unicast_packet));
269 header_len = max_t(int, header_len,
270 sizeof(struct batadv_unicast_4addr_packet));
271 header_len = max_t(int, header_len,
272 sizeof(struct batadv_bcast_packet));
273
274#ifdef CONFIG_BATMAN_ADV_NC
275 header_len = max_t(int, header_len,
276 sizeof(struct batadv_coded_packet));
277#endif
278
279 return header_len;
280}
281
282/**
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200283 * batadv_skb_set_priority - sets skb priority according to packet content
284 * @skb: the packet to be sent
285 * @offset: offset to the packet content
286 *
287 * This function sets a value between 256 and 263 (802.1d priority), which
288 * can be interpreted by the cfg80211 or other drivers.
289 */
290void batadv_skb_set_priority(struct sk_buff *skb, int offset)
291{
292 struct iphdr ip_hdr_tmp, *ip_hdr;
293 struct ipv6hdr ip6_hdr_tmp, *ip6_hdr;
294 struct ethhdr ethhdr_tmp, *ethhdr;
295 struct vlan_ethhdr *vhdr, vhdr_tmp;
296 u32 prio;
297
298 /* already set, do nothing */
299 if (skb->priority >= 256 && skb->priority <= 263)
300 return;
301
302 ethhdr = skb_header_pointer(skb, offset, sizeof(*ethhdr), &ethhdr_tmp);
303 if (!ethhdr)
304 return;
305
306 switch (ethhdr->h_proto) {
307 case htons(ETH_P_8021Q):
308 vhdr = skb_header_pointer(skb, offset + sizeof(*vhdr),
309 sizeof(*vhdr), &vhdr_tmp);
310 if (!vhdr)
311 return;
312 prio = ntohs(vhdr->h_vlan_TCI) & VLAN_PRIO_MASK;
313 prio = prio >> VLAN_PRIO_SHIFT;
314 break;
315 case htons(ETH_P_IP):
316 ip_hdr = skb_header_pointer(skb, offset + sizeof(*ethhdr),
317 sizeof(*ip_hdr), &ip_hdr_tmp);
318 if (!ip_hdr)
319 return;
320 prio = (ipv4_get_dsfield(ip_hdr) & 0xfc) >> 5;
321 break;
322 case htons(ETH_P_IPV6):
323 ip6_hdr = skb_header_pointer(skb, offset + sizeof(*ethhdr),
324 sizeof(*ip6_hdr), &ip6_hdr_tmp);
325 if (!ip6_hdr)
326 return;
327 prio = (ipv6_get_dsfield(ip6_hdr) & 0xfc) >> 5;
328 break;
329 default:
330 return;
331 }
332
333 skb->priority = prio + 256;
334}
335
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200336static int batadv_recv_unhandled_packet(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200337 struct batadv_hard_iface *recv_if)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800338{
339 return NET_RX_DROP;
340}
341
342/* incoming packets with the batman ethertype received on any active hard
343 * interface
344 */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200345int batadv_batman_skb_recv(struct sk_buff *skb, struct net_device *dev,
346 struct packet_type *ptype,
347 struct net_device *orig_dev)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800348{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200349 struct batadv_priv *bat_priv;
Sven Eckelmann96412692012-06-05 22:31:30 +0200350 struct batadv_ogm_packet *batadv_ogm_packet;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200351 struct batadv_hard_iface *hard_iface;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800352 uint8_t idx;
353 int ret;
354
Sven Eckelmann56303d32012-06-05 22:31:31 +0200355 hard_iface = container_of(ptype, struct batadv_hard_iface,
356 batman_adv_ptype);
Marek Lindnerffa995e2012-03-01 15:35:17 +0800357 skb = skb_share_check(skb, GFP_ATOMIC);
358
359 /* skb was released by skb_share_check() */
360 if (!skb)
361 goto err_out;
362
363 /* packet should hold at least type and version */
364 if (unlikely(!pskb_may_pull(skb, 2)))
365 goto err_free;
366
367 /* expect a valid ethernet header here. */
368 if (unlikely(skb->mac_len != ETH_HLEN || !skb_mac_header(skb)))
369 goto err_free;
370
371 if (!hard_iface->soft_iface)
372 goto err_free;
373
374 bat_priv = netdev_priv(hard_iface->soft_iface);
375
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200376 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800377 goto err_free;
378
379 /* discard frames on not active interfaces */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200380 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800381 goto err_free;
382
Sven Eckelmann96412692012-06-05 22:31:30 +0200383 batadv_ogm_packet = (struct batadv_ogm_packet *)skb->data;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800384
Sven Eckelmann96412692012-06-05 22:31:30 +0200385 if (batadv_ogm_packet->header.version != BATADV_COMPAT_VERSION) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200386 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200387 "Drop packet: incompatible batman version (%i)\n",
Sven Eckelmann96412692012-06-05 22:31:30 +0200388 batadv_ogm_packet->header.version);
Marek Lindnerffa995e2012-03-01 15:35:17 +0800389 goto err_free;
390 }
391
392 /* all receive handlers return whether they received or reused
393 * the supplied skb. if not, we have to free the skb.
394 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200395 idx = batadv_ogm_packet->header.packet_type;
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200396 ret = (*batadv_rx_handler[idx])(skb, hard_iface);
Marek Lindnerffa995e2012-03-01 15:35:17 +0800397
398 if (ret == NET_RX_DROP)
399 kfree_skb(skb);
400
401 /* return NET_RX_SUCCESS in any case as we
402 * most probably dropped the packet for
403 * routing-logical reasons.
404 */
405 return NET_RX_SUCCESS;
406
407err_free:
408 kfree_skb(skb);
409err_out:
410 return NET_RX_DROP;
411}
412
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200413static void batadv_recv_handler_init(void)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800414{
415 int i;
416
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200417 for (i = 0; i < ARRAY_SIZE(batadv_rx_handler); i++)
418 batadv_rx_handler[i] = batadv_recv_unhandled_packet;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800419
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200420 for (i = BATADV_UNICAST_MIN; i <= BATADV_UNICAST_MAX; i++)
421 batadv_rx_handler[i] = batadv_recv_unhandled_unicast_packet;
422
Simon Wunderlich80067c82013-04-25 10:37:22 +0200423 /* compile time checks for struct member offsets */
424 BUILD_BUG_ON(offsetof(struct batadv_unicast_4addr_packet, src) != 10);
425 BUILD_BUG_ON(offsetof(struct batadv_unicast_packet, dest) != 4);
Simon Wunderlich80067c82013-04-25 10:37:22 +0200426 BUILD_BUG_ON(offsetof(struct batadv_unicast_tvlv_packet, dst) != 4);
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200427 BUILD_BUG_ON(offsetof(struct batadv_frag_packet, dest) != 4);
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200428 BUILD_BUG_ON(offsetof(struct batadv_icmp_packet, icmph.dst) != 4);
429 BUILD_BUG_ON(offsetof(struct batadv_icmp_packet_rr, icmph.dst) != 4);
Simon Wunderlich80067c82013-04-25 10:37:22 +0200430
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200431 /* broadcast packet */
432 batadv_rx_handler[BATADV_BCAST] = batadv_recv_bcast_packet;
433
434 /* unicast packets ... */
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200435 /* unicast with 4 addresses packet */
436 batadv_rx_handler[BATADV_UNICAST_4ADDR] = batadv_recv_unicast_packet;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800437 /* unicast packet */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200438 batadv_rx_handler[BATADV_UNICAST] = batadv_recv_unicast_packet;
Marek Lindneref261572013-04-23 21:39:57 +0800439 /* unicast tvlv packet */
440 batadv_rx_handler[BATADV_UNICAST_TVLV] = batadv_recv_unicast_tvlv;
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200441 /* batman icmp packet */
442 batadv_rx_handler[BATADV_ICMP] = batadv_recv_icmp_packet;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200443 /* Fragmented packets */
444 batadv_rx_handler[BATADV_UNICAST_FRAG] = batadv_recv_frag_packet;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800445}
446
Sven Eckelmann56303d32012-06-05 22:31:31 +0200447int
448batadv_recv_handler_register(uint8_t packet_type,
449 int (*recv_handler)(struct sk_buff *,
450 struct batadv_hard_iface *))
Marek Lindnerffa995e2012-03-01 15:35:17 +0800451{
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200452 int (*curr)(struct sk_buff *,
453 struct batadv_hard_iface *);
454 curr = batadv_rx_handler[packet_type];
455
456 if ((curr != batadv_recv_unhandled_packet) &&
457 (curr != batadv_recv_unhandled_unicast_packet))
Marek Lindnerffa995e2012-03-01 15:35:17 +0800458 return -EBUSY;
459
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200460 batadv_rx_handler[packet_type] = recv_handler;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800461 return 0;
462}
463
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200464void batadv_recv_handler_unregister(uint8_t packet_type)
Marek Lindnerffa995e2012-03-01 15:35:17 +0800465{
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200466 batadv_rx_handler[packet_type] = batadv_recv_unhandled_packet;
Marek Lindnerffa995e2012-03-01 15:35:17 +0800467}
468
Sven Eckelmann56303d32012-06-05 22:31:31 +0200469static struct batadv_algo_ops *batadv_algo_get(char *name)
Marek Lindner1c280472011-11-28 17:40:17 +0800470{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200471 struct batadv_algo_ops *bat_algo_ops = NULL, *bat_algo_ops_tmp;
Marek Lindner1c280472011-11-28 17:40:17 +0800472
Sasha Levinb67bfe02013-02-27 17:06:00 -0800473 hlist_for_each_entry(bat_algo_ops_tmp, &batadv_algo_list, list) {
Marek Lindner1c280472011-11-28 17:40:17 +0800474 if (strcmp(bat_algo_ops_tmp->name, name) != 0)
475 continue;
476
477 bat_algo_ops = bat_algo_ops_tmp;
478 break;
479 }
480
481 return bat_algo_ops;
482}
483
Sven Eckelmann56303d32012-06-05 22:31:31 +0200484int batadv_algo_register(struct batadv_algo_ops *bat_algo_ops)
Marek Lindner1c280472011-11-28 17:40:17 +0800485{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200486 struct batadv_algo_ops *bat_algo_ops_tmp;
Sven Eckelmann5346c352012-05-05 13:27:28 +0200487 int ret;
Marek Lindner1c280472011-11-28 17:40:17 +0800488
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200489 bat_algo_ops_tmp = batadv_algo_get(bat_algo_ops->name);
Marek Lindner1c280472011-11-28 17:40:17 +0800490 if (bat_algo_ops_tmp) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100491 pr_info("Trying to register already registered routing algorithm: %s\n",
492 bat_algo_ops->name);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200493 ret = -EEXIST;
Marek Lindner1c280472011-11-28 17:40:17 +0800494 goto out;
495 }
496
Marek Lindner01c42242011-11-28 21:31:55 +0800497 /* all algorithms must implement all ops (for now) */
Marek Lindnerc2aca022012-02-07 17:20:45 +0800498 if (!bat_algo_ops->bat_iface_enable ||
Marek Lindner00a50072012-02-07 17:20:47 +0800499 !bat_algo_ops->bat_iface_disable ||
Marek Lindnerc3229392012-03-11 06:17:50 +0800500 !bat_algo_ops->bat_iface_update_mac ||
Marek Lindnercd8b78e2012-02-07 17:20:49 +0800501 !bat_algo_ops->bat_primary_iface_set ||
Marek Lindner01c42242011-11-28 21:31:55 +0800502 !bat_algo_ops->bat_ogm_schedule ||
Marek Lindnerc3e29312012-03-04 16:56:25 +0800503 !bat_algo_ops->bat_ogm_emit) {
Marek Lindner01c42242011-11-28 21:31:55 +0800504 pr_info("Routing algo '%s' does not implement required ops\n",
505 bat_algo_ops->name);
Sven Eckelmann5346c352012-05-05 13:27:28 +0200506 ret = -EINVAL;
Marek Lindner01c42242011-11-28 21:31:55 +0800507 goto out;
508 }
509
Marek Lindner1c280472011-11-28 17:40:17 +0800510 INIT_HLIST_NODE(&bat_algo_ops->list);
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200511 hlist_add_head(&bat_algo_ops->list, &batadv_algo_list);
Marek Lindner1c280472011-11-28 17:40:17 +0800512 ret = 0;
513
514out:
515 return ret;
516}
517
Sven Eckelmann56303d32012-06-05 22:31:31 +0200518int batadv_algo_select(struct batadv_priv *bat_priv, char *name)
Marek Lindner1c280472011-11-28 17:40:17 +0800519{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200520 struct batadv_algo_ops *bat_algo_ops;
Sven Eckelmann5346c352012-05-05 13:27:28 +0200521 int ret = -EINVAL;
Marek Lindner1c280472011-11-28 17:40:17 +0800522
Sven Eckelmannee11ad62012-05-16 20:23:19 +0200523 bat_algo_ops = batadv_algo_get(name);
Marek Lindner1c280472011-11-28 17:40:17 +0800524 if (!bat_algo_ops)
525 goto out;
526
527 bat_priv->bat_algo_ops = bat_algo_ops;
528 ret = 0;
529
530out:
531 return ret;
532}
533
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200534int batadv_algo_seq_print_text(struct seq_file *seq, void *offset)
Marek Lindner1c280472011-11-28 17:40:17 +0800535{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200536 struct batadv_algo_ops *bat_algo_ops;
Marek Lindner1c280472011-11-28 17:40:17 +0800537
Antonio Quartulli0c814652013-03-21 09:23:29 +0100538 seq_puts(seq, "Available routing algorithms:\n");
Marek Lindner1c280472011-11-28 17:40:17 +0800539
Sasha Levinb67bfe02013-02-27 17:06:00 -0800540 hlist_for_each_entry(bat_algo_ops, &batadv_algo_list, list) {
Marek Lindner1c280472011-11-28 17:40:17 +0800541 seq_printf(seq, "%s\n", bat_algo_ops->name);
542 }
543
544 return 0;
545}
546
Sven Eckelmann95a066d2012-10-17 21:10:39 +0200547/**
548 * batadv_skb_crc32 - calculate CRC32 of the whole packet and skip bytes in
549 * the header
550 * @skb: skb pointing to fragmented socket buffers
551 * @payload_ptr: Pointer to position inside the head buffer of the skb
552 * marking the start of the data to be CRC'ed
553 *
554 * payload_ptr must always point to an address in the skb head buffer and not to
555 * a fragment.
556 */
557__be32 batadv_skb_crc32(struct sk_buff *skb, u8 *payload_ptr)
558{
559 u32 crc = 0;
560 unsigned int from;
561 unsigned int to = skb->len;
562 struct skb_seq_state st;
563 const u8 *data;
564 unsigned int len;
565 unsigned int consumed = 0;
566
567 from = (unsigned int)(payload_ptr - skb->data);
568
569 skb_prepare_seq_read(skb, from, to, &st);
570 while ((len = skb_seq_read(consumed, &data, &st)) != 0) {
571 crc = crc32c(crc, data, len);
572 consumed += len;
573 }
Sven Eckelmann95a066d2012-10-17 21:10:39 +0200574
575 return htonl(crc);
576}
577
Marek Lindneref261572013-04-23 21:39:57 +0800578/**
579 * batadv_tvlv_handler_free_ref - decrement the tvlv handler refcounter and
580 * possibly free it
581 * @tvlv_handler: the tvlv handler to free
582 */
583static void
584batadv_tvlv_handler_free_ref(struct batadv_tvlv_handler *tvlv_handler)
585{
586 if (atomic_dec_and_test(&tvlv_handler->refcount))
587 kfree_rcu(tvlv_handler, rcu);
588}
589
590/**
591 * batadv_tvlv_handler_get - retrieve tvlv handler from the tvlv handler list
592 * based on the provided type and version (both need to match)
593 * @bat_priv: the bat priv with all the soft interface information
594 * @type: tvlv handler type to look for
595 * @version: tvlv handler version to look for
596 *
597 * Returns tvlv handler if found or NULL otherwise.
598 */
599static struct batadv_tvlv_handler
600*batadv_tvlv_handler_get(struct batadv_priv *bat_priv,
601 uint8_t type, uint8_t version)
602{
603 struct batadv_tvlv_handler *tvlv_handler_tmp, *tvlv_handler = NULL;
604
605 rcu_read_lock();
606 hlist_for_each_entry_rcu(tvlv_handler_tmp,
607 &bat_priv->tvlv.handler_list, list) {
608 if (tvlv_handler_tmp->type != type)
609 continue;
610
611 if (tvlv_handler_tmp->version != version)
612 continue;
613
614 if (!atomic_inc_not_zero(&tvlv_handler_tmp->refcount))
615 continue;
616
617 tvlv_handler = tvlv_handler_tmp;
618 break;
619 }
620 rcu_read_unlock();
621
622 return tvlv_handler;
623}
624
625/**
626 * batadv_tvlv_container_free_ref - decrement the tvlv container refcounter and
627 * possibly free it
628 * @tvlv_handler: the tvlv container to free
629 */
630static void batadv_tvlv_container_free_ref(struct batadv_tvlv_container *tvlv)
631{
632 if (atomic_dec_and_test(&tvlv->refcount))
633 kfree(tvlv);
634}
635
636/**
637 * batadv_tvlv_container_get - retrieve tvlv container from the tvlv container
638 * list based on the provided type and version (both need to match)
639 * @bat_priv: the bat priv with all the soft interface information
640 * @type: tvlv container type to look for
641 * @version: tvlv container version to look for
642 *
643 * Has to be called with the appropriate locks being acquired
644 * (tvlv.container_list_lock).
645 *
646 * Returns tvlv container if found or NULL otherwise.
647 */
648static struct batadv_tvlv_container
649*batadv_tvlv_container_get(struct batadv_priv *bat_priv,
650 uint8_t type, uint8_t version)
651{
652 struct batadv_tvlv_container *tvlv_tmp, *tvlv = NULL;
653
654 hlist_for_each_entry(tvlv_tmp, &bat_priv->tvlv.container_list, list) {
655 if (tvlv_tmp->tvlv_hdr.type != type)
656 continue;
657
658 if (tvlv_tmp->tvlv_hdr.version != version)
659 continue;
660
661 if (!atomic_inc_not_zero(&tvlv_tmp->refcount))
662 continue;
663
664 tvlv = tvlv_tmp;
665 break;
666 }
667
668 return tvlv;
669}
670
671/**
672 * batadv_tvlv_container_list_size - calculate the size of the tvlv container
673 * list entries
674 * @bat_priv: the bat priv with all the soft interface information
675 *
676 * Has to be called with the appropriate locks being acquired
677 * (tvlv.container_list_lock).
678 *
679 * Returns size of all currently registered tvlv containers in bytes.
680 */
681static uint16_t batadv_tvlv_container_list_size(struct batadv_priv *bat_priv)
682{
683 struct batadv_tvlv_container *tvlv;
684 uint16_t tvlv_len = 0;
685
686 hlist_for_each_entry(tvlv, &bat_priv->tvlv.container_list, list) {
687 tvlv_len += sizeof(struct batadv_tvlv_hdr);
688 tvlv_len += ntohs(tvlv->tvlv_hdr.len);
689 }
690
691 return tvlv_len;
692}
693
694/**
695 * batadv_tvlv_container_remove - remove tvlv container from the tvlv container
696 * list
697 * @tvlv: the to be removed tvlv container
698 *
699 * Has to be called with the appropriate locks being acquired
700 * (tvlv.container_list_lock).
701 */
702static void batadv_tvlv_container_remove(struct batadv_tvlv_container *tvlv)
703{
704 if (!tvlv)
705 return;
706
707 hlist_del(&tvlv->list);
708
709 /* first call to decrement the counter, second call to free */
710 batadv_tvlv_container_free_ref(tvlv);
711 batadv_tvlv_container_free_ref(tvlv);
712}
713
714/**
715 * batadv_tvlv_container_unregister - unregister tvlv container based on the
716 * provided type and version (both need to match)
717 * @bat_priv: the bat priv with all the soft interface information
718 * @type: tvlv container type to unregister
719 * @version: tvlv container type to unregister
720 */
721void batadv_tvlv_container_unregister(struct batadv_priv *bat_priv,
722 uint8_t type, uint8_t version)
723{
724 struct batadv_tvlv_container *tvlv;
725
726 spin_lock_bh(&bat_priv->tvlv.container_list_lock);
727 tvlv = batadv_tvlv_container_get(bat_priv, type, version);
728 batadv_tvlv_container_remove(tvlv);
729 spin_unlock_bh(&bat_priv->tvlv.container_list_lock);
730}
731
732/**
733 * batadv_tvlv_container_register - register tvlv type, version and content
734 * to be propagated with each (primary interface) OGM
735 * @bat_priv: the bat priv with all the soft interface information
736 * @type: tvlv container type
737 * @version: tvlv container version
738 * @tvlv_value: tvlv container content
739 * @tvlv_value_len: tvlv container content length
740 *
741 * If a container of the same type and version was already registered the new
742 * content is going to replace the old one.
743 */
744void batadv_tvlv_container_register(struct batadv_priv *bat_priv,
745 uint8_t type, uint8_t version,
746 void *tvlv_value, uint16_t tvlv_value_len)
747{
748 struct batadv_tvlv_container *tvlv_old, *tvlv_new;
749
750 if (!tvlv_value)
751 tvlv_value_len = 0;
752
753 tvlv_new = kzalloc(sizeof(*tvlv_new) + tvlv_value_len, GFP_ATOMIC);
754 if (!tvlv_new)
755 return;
756
757 tvlv_new->tvlv_hdr.version = version;
758 tvlv_new->tvlv_hdr.type = type;
759 tvlv_new->tvlv_hdr.len = htons(tvlv_value_len);
760
761 memcpy(tvlv_new + 1, tvlv_value, ntohs(tvlv_new->tvlv_hdr.len));
762 INIT_HLIST_NODE(&tvlv_new->list);
763 atomic_set(&tvlv_new->refcount, 1);
764
765 spin_lock_bh(&bat_priv->tvlv.container_list_lock);
766 tvlv_old = batadv_tvlv_container_get(bat_priv, type, version);
767 batadv_tvlv_container_remove(tvlv_old);
768 hlist_add_head(&tvlv_new->list, &bat_priv->tvlv.container_list);
769 spin_unlock_bh(&bat_priv->tvlv.container_list_lock);
770}
771
772/**
773 * batadv_tvlv_realloc_packet_buff - reallocate packet buffer to accomodate
774 * requested packet size
775 * @packet_buff: packet buffer
776 * @packet_buff_len: packet buffer size
777 * @packet_min_len: requested packet minimum size
778 * @additional_packet_len: requested additional packet size on top of minimum
779 * size
780 *
781 * Returns true of the packet buffer could be changed to the requested size,
782 * false otherwise.
783 */
784static bool batadv_tvlv_realloc_packet_buff(unsigned char **packet_buff,
785 int *packet_buff_len,
786 int min_packet_len,
787 int additional_packet_len)
788{
789 unsigned char *new_buff;
790
791 new_buff = kmalloc(min_packet_len + additional_packet_len, GFP_ATOMIC);
792
793 /* keep old buffer if kmalloc should fail */
794 if (new_buff) {
795 memcpy(new_buff, *packet_buff, min_packet_len);
796 kfree(*packet_buff);
797 *packet_buff = new_buff;
798 *packet_buff_len = min_packet_len + additional_packet_len;
799 return true;
800 }
801
802 return false;
803}
804
805/**
806 * batadv_tvlv_container_ogm_append - append tvlv container content to given
807 * OGM packet buffer
808 * @bat_priv: the bat priv with all the soft interface information
809 * @packet_buff: ogm packet buffer
810 * @packet_buff_len: ogm packet buffer size including ogm header and tvlv
811 * content
812 * @packet_min_len: ogm header size to be preserved for the OGM itself
813 *
814 * The ogm packet might be enlarged or shrunk depending on the current size
815 * and the size of the to-be-appended tvlv containers.
816 *
817 * Returns size of all appended tvlv containers in bytes.
818 */
819uint16_t batadv_tvlv_container_ogm_append(struct batadv_priv *bat_priv,
820 unsigned char **packet_buff,
821 int *packet_buff_len,
822 int packet_min_len)
823{
824 struct batadv_tvlv_container *tvlv;
825 struct batadv_tvlv_hdr *tvlv_hdr;
826 uint16_t tvlv_value_len;
827 void *tvlv_value;
828 bool ret;
829
830 spin_lock_bh(&bat_priv->tvlv.container_list_lock);
831 tvlv_value_len = batadv_tvlv_container_list_size(bat_priv);
832
833 ret = batadv_tvlv_realloc_packet_buff(packet_buff, packet_buff_len,
834 packet_min_len, tvlv_value_len);
835
836 if (!ret)
837 goto end;
838
839 if (!tvlv_value_len)
840 goto end;
841
842 tvlv_value = (*packet_buff) + packet_min_len;
843
844 hlist_for_each_entry(tvlv, &bat_priv->tvlv.container_list, list) {
845 tvlv_hdr = tvlv_value;
846 tvlv_hdr->type = tvlv->tvlv_hdr.type;
847 tvlv_hdr->version = tvlv->tvlv_hdr.version;
848 tvlv_hdr->len = tvlv->tvlv_hdr.len;
849 tvlv_value = tvlv_hdr + 1;
850 memcpy(tvlv_value, tvlv + 1, ntohs(tvlv->tvlv_hdr.len));
851 tvlv_value = (uint8_t *)tvlv_value + ntohs(tvlv->tvlv_hdr.len);
852 }
853
854end:
855 spin_unlock_bh(&bat_priv->tvlv.container_list_lock);
856 return tvlv_value_len;
857}
858
859/**
860 * batadv_tvlv_call_handler - parse the given tvlv buffer to call the
861 * appropriate handlers
862 * @bat_priv: the bat priv with all the soft interface information
863 * @tvlv_handler: tvlv callback function handling the tvlv content
864 * @ogm_source: flag indicating wether the tvlv is an ogm or a unicast packet
865 * @orig_node: orig node emitting the ogm packet
866 * @src: source mac address of the unicast packet
867 * @dst: destination mac address of the unicast packet
868 * @tvlv_value: tvlv content
869 * @tvlv_value_len: tvlv content length
870 *
871 * Returns success if handler was not found or the return value of the handler
872 * callback.
873 */
874static int batadv_tvlv_call_handler(struct batadv_priv *bat_priv,
875 struct batadv_tvlv_handler *tvlv_handler,
876 bool ogm_source,
877 struct batadv_orig_node *orig_node,
878 uint8_t *src, uint8_t *dst,
879 void *tvlv_value, uint16_t tvlv_value_len)
880{
881 if (!tvlv_handler)
882 return NET_RX_SUCCESS;
883
884 if (ogm_source) {
885 if (!tvlv_handler->ogm_handler)
886 return NET_RX_SUCCESS;
887
888 if (!orig_node)
889 return NET_RX_SUCCESS;
890
891 tvlv_handler->ogm_handler(bat_priv, orig_node,
892 BATADV_NO_FLAGS,
893 tvlv_value, tvlv_value_len);
894 tvlv_handler->flags |= BATADV_TVLV_HANDLER_OGM_CALLED;
895 } else {
896 if (!src)
897 return NET_RX_SUCCESS;
898
899 if (!dst)
900 return NET_RX_SUCCESS;
901
902 if (!tvlv_handler->unicast_handler)
903 return NET_RX_SUCCESS;
904
905 return tvlv_handler->unicast_handler(bat_priv, src,
906 dst, tvlv_value,
907 tvlv_value_len);
908 }
909
910 return NET_RX_SUCCESS;
911}
912
913/**
914 * batadv_tvlv_containers_process - parse the given tvlv buffer to call the
915 * appropriate handlers
916 * @bat_priv: the bat priv with all the soft interface information
917 * @ogm_source: flag indicating wether the tvlv is an ogm or a unicast packet
918 * @orig_node: orig node emitting the ogm packet
919 * @src: source mac address of the unicast packet
920 * @dst: destination mac address of the unicast packet
921 * @tvlv_value: tvlv content
922 * @tvlv_value_len: tvlv content length
923 *
924 * Returns success when processing an OGM or the return value of all called
925 * handler callbacks.
926 */
927int batadv_tvlv_containers_process(struct batadv_priv *bat_priv,
928 bool ogm_source,
929 struct batadv_orig_node *orig_node,
930 uint8_t *src, uint8_t *dst,
931 void *tvlv_value, uint16_t tvlv_value_len)
932{
933 struct batadv_tvlv_handler *tvlv_handler;
934 struct batadv_tvlv_hdr *tvlv_hdr;
935 uint16_t tvlv_value_cont_len;
936 uint8_t cifnotfound = BATADV_TVLV_HANDLER_OGM_CIFNOTFND;
937 int ret = NET_RX_SUCCESS;
938
939 while (tvlv_value_len >= sizeof(*tvlv_hdr)) {
940 tvlv_hdr = tvlv_value;
941 tvlv_value_cont_len = ntohs(tvlv_hdr->len);
942 tvlv_value = tvlv_hdr + 1;
943 tvlv_value_len -= sizeof(*tvlv_hdr);
944
945 if (tvlv_value_cont_len > tvlv_value_len)
946 break;
947
948 tvlv_handler = batadv_tvlv_handler_get(bat_priv,
949 tvlv_hdr->type,
950 tvlv_hdr->version);
951
952 ret |= batadv_tvlv_call_handler(bat_priv, tvlv_handler,
953 ogm_source, orig_node,
954 src, dst, tvlv_value,
955 tvlv_value_cont_len);
956 if (tvlv_handler)
957 batadv_tvlv_handler_free_ref(tvlv_handler);
958 tvlv_value = (uint8_t *)tvlv_value + tvlv_value_cont_len;
959 tvlv_value_len -= tvlv_value_cont_len;
960 }
961
962 if (!ogm_source)
963 return ret;
964
965 rcu_read_lock();
966 hlist_for_each_entry_rcu(tvlv_handler,
967 &bat_priv->tvlv.handler_list, list) {
968 if ((tvlv_handler->flags & BATADV_TVLV_HANDLER_OGM_CIFNOTFND) &&
969 !(tvlv_handler->flags & BATADV_TVLV_HANDLER_OGM_CALLED))
970 tvlv_handler->ogm_handler(bat_priv, orig_node,
971 cifnotfound, NULL, 0);
972
973 tvlv_handler->flags &= ~BATADV_TVLV_HANDLER_OGM_CALLED;
974 }
975 rcu_read_unlock();
976
977 return NET_RX_SUCCESS;
978}
979
980/**
981 * batadv_tvlv_ogm_receive - process an incoming ogm and call the appropriate
982 * handlers
983 * @bat_priv: the bat priv with all the soft interface information
984 * @batadv_ogm_packet: ogm packet containing the tvlv containers
985 * @orig_node: orig node emitting the ogm packet
986 */
987void batadv_tvlv_ogm_receive(struct batadv_priv *bat_priv,
988 struct batadv_ogm_packet *batadv_ogm_packet,
989 struct batadv_orig_node *orig_node)
990{
991 void *tvlv_value;
992 uint16_t tvlv_value_len;
993
994 if (!batadv_ogm_packet)
995 return;
996
997 tvlv_value_len = ntohs(batadv_ogm_packet->tvlv_len);
998 if (!tvlv_value_len)
999 return;
1000
1001 tvlv_value = batadv_ogm_packet + 1;
1002
1003 batadv_tvlv_containers_process(bat_priv, true, orig_node, NULL, NULL,
1004 tvlv_value, tvlv_value_len);
1005}
1006
1007/**
1008 * batadv_tvlv_handler_register - register tvlv handler based on the provided
1009 * type and version (both need to match) for ogm tvlv payload and/or unicast
1010 * payload
1011 * @bat_priv: the bat priv with all the soft interface information
1012 * @optr: ogm tvlv handler callback function. This function receives the orig
1013 * node, flags and the tvlv content as argument to process.
1014 * @uptr: unicast tvlv handler callback function. This function receives the
1015 * source & destination of the unicast packet as well as the tvlv content
1016 * to process.
1017 * @type: tvlv handler type to be registered
1018 * @version: tvlv handler version to be registered
1019 * @flags: flags to enable or disable TVLV API behavior
1020 */
1021void batadv_tvlv_handler_register(struct batadv_priv *bat_priv,
1022 void (*optr)(struct batadv_priv *bat_priv,
1023 struct batadv_orig_node *orig,
1024 uint8_t flags,
1025 void *tvlv_value,
1026 uint16_t tvlv_value_len),
1027 int (*uptr)(struct batadv_priv *bat_priv,
1028 uint8_t *src, uint8_t *dst,
1029 void *tvlv_value,
1030 uint16_t tvlv_value_len),
1031 uint8_t type, uint8_t version, uint8_t flags)
1032{
1033 struct batadv_tvlv_handler *tvlv_handler;
1034
1035 tvlv_handler = batadv_tvlv_handler_get(bat_priv, type, version);
1036 if (tvlv_handler) {
1037 batadv_tvlv_handler_free_ref(tvlv_handler);
1038 return;
1039 }
1040
1041 tvlv_handler = kzalloc(sizeof(*tvlv_handler), GFP_ATOMIC);
1042 if (!tvlv_handler)
1043 return;
1044
1045 tvlv_handler->ogm_handler = optr;
1046 tvlv_handler->unicast_handler = uptr;
1047 tvlv_handler->type = type;
1048 tvlv_handler->version = version;
1049 tvlv_handler->flags = flags;
1050 atomic_set(&tvlv_handler->refcount, 1);
1051 INIT_HLIST_NODE(&tvlv_handler->list);
1052
1053 spin_lock_bh(&bat_priv->tvlv.handler_list_lock);
1054 hlist_add_head_rcu(&tvlv_handler->list, &bat_priv->tvlv.handler_list);
1055 spin_unlock_bh(&bat_priv->tvlv.handler_list_lock);
1056}
1057
1058/**
1059 * batadv_tvlv_handler_unregister - unregister tvlv handler based on the
1060 * provided type and version (both need to match)
1061 * @bat_priv: the bat priv with all the soft interface information
1062 * @type: tvlv handler type to be unregistered
1063 * @version: tvlv handler version to be unregistered
1064 */
1065void batadv_tvlv_handler_unregister(struct batadv_priv *bat_priv,
1066 uint8_t type, uint8_t version)
1067{
1068 struct batadv_tvlv_handler *tvlv_handler;
1069
1070 tvlv_handler = batadv_tvlv_handler_get(bat_priv, type, version);
1071 if (!tvlv_handler)
1072 return;
1073
1074 batadv_tvlv_handler_free_ref(tvlv_handler);
1075 spin_lock_bh(&bat_priv->tvlv.handler_list_lock);
1076 hlist_del_rcu(&tvlv_handler->list);
1077 spin_unlock_bh(&bat_priv->tvlv.handler_list_lock);
1078 batadv_tvlv_handler_free_ref(tvlv_handler);
1079}
1080
1081/**
1082 * batadv_tvlv_unicast_send - send a unicast packet with tvlv payload to the
1083 * specified host
1084 * @bat_priv: the bat priv with all the soft interface information
1085 * @src: source mac address of the unicast packet
1086 * @dst: destination mac address of the unicast packet
1087 * @type: tvlv type
1088 * @version: tvlv version
1089 * @tvlv_value: tvlv content
1090 * @tvlv_value_len: tvlv content length
1091 */
1092void batadv_tvlv_unicast_send(struct batadv_priv *bat_priv, uint8_t *src,
1093 uint8_t *dst, uint8_t type, uint8_t version,
1094 void *tvlv_value, uint16_t tvlv_value_len)
1095{
1096 struct batadv_unicast_tvlv_packet *unicast_tvlv_packet;
1097 struct batadv_tvlv_hdr *tvlv_hdr;
1098 struct batadv_orig_node *orig_node;
1099 struct sk_buff *skb = NULL;
1100 unsigned char *tvlv_buff;
1101 unsigned int tvlv_len;
1102 ssize_t hdr_len = sizeof(*unicast_tvlv_packet);
1103 bool ret = false;
1104
1105 orig_node = batadv_orig_hash_find(bat_priv, dst);
1106 if (!orig_node)
1107 goto out;
1108
1109 tvlv_len = sizeof(*tvlv_hdr) + tvlv_value_len;
1110
1111 skb = netdev_alloc_skb_ip_align(NULL, ETH_HLEN + hdr_len + tvlv_len);
1112 if (!skb)
1113 goto out;
1114
1115 skb->priority = TC_PRIO_CONTROL;
1116 skb_reserve(skb, ETH_HLEN);
1117 tvlv_buff = skb_put(skb, sizeof(*unicast_tvlv_packet) + tvlv_len);
1118 unicast_tvlv_packet = (struct batadv_unicast_tvlv_packet *)tvlv_buff;
1119 unicast_tvlv_packet->header.packet_type = BATADV_UNICAST_TVLV;
1120 unicast_tvlv_packet->header.version = BATADV_COMPAT_VERSION;
1121 unicast_tvlv_packet->header.ttl = BATADV_TTL;
1122 unicast_tvlv_packet->reserved = 0;
1123 unicast_tvlv_packet->tvlv_len = htons(tvlv_len);
1124 unicast_tvlv_packet->align = 0;
1125 memcpy(unicast_tvlv_packet->src, src, ETH_ALEN);
1126 memcpy(unicast_tvlv_packet->dst, dst, ETH_ALEN);
1127
1128 tvlv_buff = (unsigned char *)(unicast_tvlv_packet + 1);
1129 tvlv_hdr = (struct batadv_tvlv_hdr *)tvlv_buff;
1130 tvlv_hdr->version = version;
1131 tvlv_hdr->type = type;
1132 tvlv_hdr->len = htons(tvlv_value_len);
1133 tvlv_buff += sizeof(*tvlv_hdr);
1134 memcpy(tvlv_buff, tvlv_value, tvlv_value_len);
1135
1136 if (batadv_send_skb_to_orig(skb, orig_node, NULL) != NET_XMIT_DROP)
1137 ret = true;
1138
1139out:
1140 if (skb && !ret)
1141 kfree_skb(skb);
1142 if (orig_node)
1143 batadv_orig_node_free_ref(orig_node);
1144}
1145
Antonio Quartullic018ad32013-06-04 12:11:39 +02001146/**
1147 * batadv_get_vid - extract the VLAN identifier from skb if any
1148 * @skb: the buffer containing the packet
1149 * @header_len: length of the batman header preceding the ethernet header
1150 *
1151 * If the packet embedded in the skb is vlan tagged this function returns the
1152 * VID with the BATADV_VLAN_HAS_TAG flag. Otherwise BATADV_NO_FLAGS is returned.
1153 */
1154unsigned short batadv_get_vid(struct sk_buff *skb, size_t header_len)
1155{
1156 struct ethhdr *ethhdr = (struct ethhdr *)(skb->data + header_len);
1157 struct vlan_ethhdr *vhdr;
1158 unsigned short vid;
1159
1160 if (ethhdr->h_proto != htons(ETH_P_8021Q))
1161 return BATADV_NO_FLAGS;
1162
1163 if (!pskb_may_pull(skb, header_len + VLAN_ETH_HLEN))
1164 return BATADV_NO_FLAGS;
1165
1166 vhdr = (struct vlan_ethhdr *)(skb->data + header_len);
1167 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK;
1168 vid |= BATADV_VLAN_HAS_TAG;
1169
1170 return vid;
1171}
1172
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001173static int batadv_param_set_ra(const char *val, const struct kernel_param *kp)
Marek Lindnerd419be12011-12-10 19:45:53 +08001174{
Sven Eckelmann56303d32012-06-05 22:31:31 +02001175 struct batadv_algo_ops *bat_algo_ops;
Marek Lindnerd8cb54862012-04-18 17:16:39 +08001176 char *algo_name = (char *)val;
1177 size_t name_len = strlen(algo_name);
Marek Lindnerd419be12011-12-10 19:45:53 +08001178
Marek Lindner293c9c12013-04-27 16:22:28 +08001179 if (name_len > 0 && algo_name[name_len - 1] == '\n')
Marek Lindnerd8cb54862012-04-18 17:16:39 +08001180 algo_name[name_len - 1] = '\0';
1181
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001182 bat_algo_ops = batadv_algo_get(algo_name);
Marek Lindnerd419be12011-12-10 19:45:53 +08001183 if (!bat_algo_ops) {
Marek Lindnerd8cb54862012-04-18 17:16:39 +08001184 pr_err("Routing algorithm '%s' is not supported\n", algo_name);
Marek Lindnerd419be12011-12-10 19:45:53 +08001185 return -EINVAL;
1186 }
1187
Marek Lindnerd8cb54862012-04-18 17:16:39 +08001188 return param_set_copystring(algo_name, kp);
Marek Lindnerd419be12011-12-10 19:45:53 +08001189}
1190
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001191static const struct kernel_param_ops batadv_param_ops_ra = {
1192 .set = batadv_param_set_ra,
Marek Lindnerd419be12011-12-10 19:45:53 +08001193 .get = param_get_string,
1194};
1195
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001196static struct kparam_string batadv_param_string_ra = {
Sven Eckelmann3193e8f2012-05-12 02:09:42 +02001197 .maxlen = sizeof(batadv_routing_algo),
1198 .string = batadv_routing_algo,
Marek Lindnerd419be12011-12-10 19:45:53 +08001199};
1200
Sven Eckelmannee11ad62012-05-16 20:23:19 +02001201module_param_cb(routing_algo, &batadv_param_ops_ra, &batadv_param_string_ra,
1202 0644);
1203module_init(batadv_init);
1204module_exit(batadv_exit);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001205
1206MODULE_LICENSE("GPL");
1207
Sven Eckelmann42d0b042012-06-03 22:19:17 +02001208MODULE_AUTHOR(BATADV_DRIVER_AUTHOR);
1209MODULE_DESCRIPTION(BATADV_DRIVER_DESC);
1210MODULE_SUPPORTED_DEVICE(BATADV_DRIVER_DEVICE);
1211MODULE_VERSION(BATADV_SOURCE_VERSION);