blob: dc53798ebb47aef0c104cd014be4b3a590a622c2 [file] [log] [blame]
Marek Lindnerfc957272011-07-30 12:04:12 +02001/*
Sven Eckelmann567db7b2012-01-01 00:41:38 +01002 * Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
Marek Lindnerfc957272011-07-30 12:04:12 +02003 *
4 * Marek Lindner, Simon Wunderlich
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
19 *
20 */
21
22#include "main.h"
Marek Lindnerfc957272011-07-30 12:04:12 +020023#include "translation-table.h"
24#include "ring_buffer.h"
25#include "originator.h"
26#include "routing.h"
27#include "gateway_common.h"
28#include "gateway_client.h"
29#include "hard-interface.h"
30#include "send.h"
Marek Lindner1c280472011-11-28 17:40:17 +080031#include "bat_algo.h"
Marek Lindnerfc957272011-07-30 12:04:12 +020032
Marek Lindner7ae8b282012-03-01 15:35:21 +080033static struct neigh_node *bat_iv_ogm_neigh_new(struct hard_iface *hard_iface,
34 const uint8_t *neigh_addr,
35 struct orig_node *orig_node,
36 struct orig_node *orig_neigh,
37 uint32_t seqno)
38{
39 struct neigh_node *neigh_node;
40
41 neigh_node = batadv_neigh_node_new(hard_iface, neigh_addr, seqno);
42 if (!neigh_node)
43 goto out;
44
45 INIT_LIST_HEAD(&neigh_node->bonding_list);
Marek Lindner7ae8b282012-03-01 15:35:21 +080046
47 neigh_node->orig_node = orig_neigh;
48 neigh_node->if_incoming = hard_iface;
49
50 spin_lock_bh(&orig_node->neigh_list_lock);
51 hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
52 spin_unlock_bh(&orig_node->neigh_list_lock);
53
54out:
55 return neigh_node;
56}
57
Marek Lindner77af7572012-02-07 17:20:48 +080058static int bat_iv_ogm_iface_enable(struct hard_iface *hard_iface)
Marek Lindnerd0b9fd82011-07-30 12:33:33 +020059{
60 struct batman_ogm_packet *batman_ogm_packet;
Marek Lindnerd7d32ec2012-02-07 17:20:46 +080061 uint32_t random_seqno;
Marek Lindner77af7572012-02-07 17:20:48 +080062 int res = -1;
Marek Lindnerd7d32ec2012-02-07 17:20:46 +080063
64 /* randomize initial seqno to avoid collision */
65 get_random_bytes(&random_seqno, sizeof(random_seqno));
66 atomic_set(&hard_iface->seqno, random_seqno);
Marek Lindnerd0b9fd82011-07-30 12:33:33 +020067
Marek Lindner76e3d7f2012-02-07 17:20:50 +080068 hard_iface->packet_len = BATMAN_OGM_HLEN;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +020069 hard_iface->packet_buff = kmalloc(hard_iface->packet_len, GFP_ATOMIC);
70
Marek Lindner77af7572012-02-07 17:20:48 +080071 if (!hard_iface->packet_buff)
72 goto out;
73
Marek Lindnerd0b9fd82011-07-30 12:33:33 +020074 batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
Marek Lindner1eeb4792012-02-07 17:20:51 +080075 batman_ogm_packet->header.packet_type = BAT_IV_OGM;
Sven Eckelmann76543d12011-11-20 15:47:38 +010076 batman_ogm_packet->header.version = COMPAT_VERSION;
77 batman_ogm_packet->header.ttl = 2;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +020078 batman_ogm_packet->flags = NO_FLAGS;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +020079 batman_ogm_packet->tq = TQ_MAX_VALUE;
80 batman_ogm_packet->tt_num_changes = 0;
81 batman_ogm_packet->ttvn = 0;
Marek Lindner77af7572012-02-07 17:20:48 +080082
83 res = 0;
84
85out:
86 return res;
Marek Lindnerd0b9fd82011-07-30 12:33:33 +020087}
88
Marek Lindner00a50072012-02-07 17:20:47 +080089static void bat_iv_ogm_iface_disable(struct hard_iface *hard_iface)
90{
91 kfree(hard_iface->packet_buff);
92 hard_iface->packet_buff = NULL;
93}
94
Marek Lindnerc3229392012-03-11 06:17:50 +080095static void bat_iv_ogm_iface_update_mac(struct hard_iface *hard_iface)
Marek Lindnerd0b9fd82011-07-30 12:33:33 +020096{
97 struct batman_ogm_packet *batman_ogm_packet;
98
99 batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
100 memcpy(batman_ogm_packet->orig,
101 hard_iface->net_dev->dev_addr, ETH_ALEN);
102 memcpy(batman_ogm_packet->prev_sender,
103 hard_iface->net_dev->dev_addr, ETH_ALEN);
104}
105
Marek Lindnerc3229392012-03-11 06:17:50 +0800106static void bat_iv_ogm_primary_iface_set(struct hard_iface *hard_iface)
107{
108 struct batman_ogm_packet *batman_ogm_packet;
109
110 batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
111 batman_ogm_packet->flags = PRIMARIES_FIRST_HOP;
112 batman_ogm_packet->header.ttl = TTL;
113}
114
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200115/* when do we schedule our own ogm to be sent */
Marek Lindner01c42242011-11-28 21:31:55 +0800116static unsigned long bat_iv_ogm_emit_send_time(const struct bat_priv *bat_priv)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200117{
118 return jiffies + msecs_to_jiffies(
119 atomic_read(&bat_priv->orig_interval) -
120 JITTER + (random32() % 2*JITTER));
121}
122
123/* when do we schedule a ogm packet to be sent */
Marek Lindner01c42242011-11-28 21:31:55 +0800124static unsigned long bat_iv_ogm_fwd_send_time(void)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200125{
126 return jiffies + msecs_to_jiffies(random32() % (JITTER/2));
127}
128
129/* apply hop penalty for a normal link */
130static uint8_t hop_penalty(uint8_t tq, const struct bat_priv *bat_priv)
131{
132 int hop_penalty = atomic_read(&bat_priv->hop_penalty);
133 return (tq * (TQ_MAX_VALUE - hop_penalty)) / (TQ_MAX_VALUE);
134}
135
Marek Lindnerfc957272011-07-30 12:04:12 +0200136/* is there another aggregated packet here? */
Marek Lindner01c42242011-11-28 21:31:55 +0800137static int bat_iv_ogm_aggr_packet(int buff_pos, int packet_len,
138 int tt_num_changes)
Marek Lindnerfc957272011-07-30 12:04:12 +0200139{
Marek Lindner76e3d7f2012-02-07 17:20:50 +0800140 int next_buff_pos = buff_pos + BATMAN_OGM_HLEN + tt_len(tt_num_changes);
Marek Lindnerfc957272011-07-30 12:04:12 +0200141
142 return (next_buff_pos <= packet_len) &&
143 (next_buff_pos <= MAX_AGGREGATION_BYTES);
144}
145
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200146/* send a batman ogm to a given interface */
Marek Lindner01c42242011-11-28 21:31:55 +0800147static void bat_iv_ogm_send_to_if(struct forw_packet *forw_packet,
148 struct hard_iface *hard_iface)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200149{
150 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
151 char *fwd_str;
152 uint8_t packet_num;
153 int16_t buff_pos;
154 struct batman_ogm_packet *batman_ogm_packet;
155 struct sk_buff *skb;
156
157 if (hard_iface->if_status != IF_ACTIVE)
158 return;
159
160 packet_num = 0;
161 buff_pos = 0;
162 batman_ogm_packet = (struct batman_ogm_packet *)forw_packet->skb->data;
163
164 /* adjust all flags and log packets */
Marek Lindner01c42242011-11-28 21:31:55 +0800165 while (bat_iv_ogm_aggr_packet(buff_pos, forw_packet->packet_len,
166 batman_ogm_packet->tt_num_changes)) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200167
168 /* we might have aggregated direct link packets with an
169 * ordinary base packet */
170 if ((forw_packet->direct_link_flags & (1 << packet_num)) &&
171 (forw_packet->if_incoming == hard_iface))
172 batman_ogm_packet->flags |= DIRECTLINK;
173 else
174 batman_ogm_packet->flags &= ~DIRECTLINK;
175
176 fwd_str = (packet_num > 0 ? "Forwarding" : (forw_packet->own ?
177 "Sending own" :
178 "Forwarding"));
179 bat_dbg(DBG_BATMAN, bat_priv,
Antonio Quartullic97c72b2012-02-26 15:39:41 +0100180 "%s %spacket (originator %pM, seqno %u, TQ %d, TTL %d, IDF %s, ttvn %d) on interface %s [%pM]\n",
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200181 fwd_str, (packet_num > 0 ? "aggregated " : ""),
182 batman_ogm_packet->orig,
183 ntohl(batman_ogm_packet->seqno),
Sven Eckelmann76543d12011-11-20 15:47:38 +0100184 batman_ogm_packet->tq, batman_ogm_packet->header.ttl,
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200185 (batman_ogm_packet->flags & DIRECTLINK ?
186 "on" : "off"),
187 batman_ogm_packet->ttvn, hard_iface->net_dev->name,
188 hard_iface->net_dev->dev_addr);
189
Marek Lindner76e3d7f2012-02-07 17:20:50 +0800190 buff_pos += BATMAN_OGM_HLEN +
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200191 tt_len(batman_ogm_packet->tt_num_changes);
192 packet_num++;
193 batman_ogm_packet = (struct batman_ogm_packet *)
194 (forw_packet->skb->data + buff_pos);
195 }
196
197 /* create clone because function is called more than once */
198 skb = skb_clone(forw_packet->skb, GFP_ATOMIC);
199 if (skb)
200 send_skb_packet(skb, hard_iface, broadcast_addr);
201}
202
203/* send a batman ogm packet */
Marek Lindner01c42242011-11-28 21:31:55 +0800204static void bat_iv_ogm_emit(struct forw_packet *forw_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200205{
206 struct hard_iface *hard_iface;
207 struct net_device *soft_iface;
208 struct bat_priv *bat_priv;
209 struct hard_iface *primary_if = NULL;
210 struct batman_ogm_packet *batman_ogm_packet;
211 unsigned char directlink;
212
213 batman_ogm_packet = (struct batman_ogm_packet *)
214 (forw_packet->skb->data);
215 directlink = (batman_ogm_packet->flags & DIRECTLINK ? 1 : 0);
216
217 if (!forw_packet->if_incoming) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100218 pr_err("Error - can't forward packet: incoming iface not specified\n");
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200219 goto out;
220 }
221
222 soft_iface = forw_packet->if_incoming->soft_iface;
223 bat_priv = netdev_priv(soft_iface);
224
225 if (forw_packet->if_incoming->if_status != IF_ACTIVE)
226 goto out;
227
228 primary_if = primary_if_get_selected(bat_priv);
229 if (!primary_if)
230 goto out;
231
232 /* multihomed peer assumed */
233 /* non-primary OGMs are only broadcasted on their interface */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100234 if ((directlink && (batman_ogm_packet->header.ttl == 1)) ||
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200235 (forw_packet->own && (forw_packet->if_incoming != primary_if))) {
236
237 /* FIXME: what about aggregated packets ? */
238 bat_dbg(DBG_BATMAN, bat_priv,
Antonio Quartullic97c72b2012-02-26 15:39:41 +0100239 "%s packet (originator %pM, seqno %u, TTL %d) on interface %s [%pM]\n",
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200240 (forw_packet->own ? "Sending own" : "Forwarding"),
241 batman_ogm_packet->orig,
242 ntohl(batman_ogm_packet->seqno),
Sven Eckelmann76543d12011-11-20 15:47:38 +0100243 batman_ogm_packet->header.ttl,
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200244 forw_packet->if_incoming->net_dev->name,
245 forw_packet->if_incoming->net_dev->dev_addr);
246
247 /* skb is only used once and than forw_packet is free'd */
248 send_skb_packet(forw_packet->skb, forw_packet->if_incoming,
249 broadcast_addr);
250 forw_packet->skb = NULL;
251
252 goto out;
253 }
254
255 /* broadcast on every interface */
256 rcu_read_lock();
257 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
258 if (hard_iface->soft_iface != soft_iface)
259 continue;
260
Marek Lindner01c42242011-11-28 21:31:55 +0800261 bat_iv_ogm_send_to_if(forw_packet, hard_iface);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200262 }
263 rcu_read_unlock();
264
265out:
266 if (primary_if)
267 hardif_free_ref(primary_if);
268}
269
270/* return true if new_packet can be aggregated with forw_packet */
Marek Lindner01c42242011-11-28 21:31:55 +0800271static bool bat_iv_ogm_can_aggregate(const struct batman_ogm_packet
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200272 *new_batman_ogm_packet,
Marek Lindner01c42242011-11-28 21:31:55 +0800273 struct bat_priv *bat_priv,
274 int packet_len, unsigned long send_time,
275 bool directlink,
276 const struct hard_iface *if_incoming,
277 const struct forw_packet *forw_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200278{
279 struct batman_ogm_packet *batman_ogm_packet;
280 int aggregated_bytes = forw_packet->packet_len + packet_len;
281 struct hard_iface *primary_if = NULL;
282 bool res = false;
283
284 batman_ogm_packet = (struct batman_ogm_packet *)forw_packet->skb->data;
285
286 /**
287 * we can aggregate the current packet to this aggregated packet
288 * if:
289 *
290 * - the send time is within our MAX_AGGREGATION_MS time
291 * - the resulting packet wont be bigger than
292 * MAX_AGGREGATION_BYTES
293 */
294
295 if (time_before(send_time, forw_packet->send_time) &&
296 time_after_eq(send_time + msecs_to_jiffies(MAX_AGGREGATION_MS),
297 forw_packet->send_time) &&
298 (aggregated_bytes <= MAX_AGGREGATION_BYTES)) {
299
300 /**
301 * check aggregation compatibility
302 * -> direct link packets are broadcasted on
303 * their interface only
304 * -> aggregate packet if the current packet is
305 * a "global" packet as well as the base
306 * packet
307 */
308
309 primary_if = primary_if_get_selected(bat_priv);
310 if (!primary_if)
311 goto out;
312
313 /* packets without direct link flag and high TTL
314 * are flooded through the net */
315 if ((!directlink) &&
316 (!(batman_ogm_packet->flags & DIRECTLINK)) &&
Sven Eckelmann76543d12011-11-20 15:47:38 +0100317 (batman_ogm_packet->header.ttl != 1) &&
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200318
319 /* own packets originating non-primary
320 * interfaces leave only that interface */
321 ((!forw_packet->own) ||
322 (forw_packet->if_incoming == primary_if))) {
323 res = true;
324 goto out;
325 }
326
327 /* if the incoming packet is sent via this one
328 * interface only - we still can aggregate */
329 if ((directlink) &&
Sven Eckelmann76543d12011-11-20 15:47:38 +0100330 (new_batman_ogm_packet->header.ttl == 1) &&
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200331 (forw_packet->if_incoming == if_incoming) &&
332
333 /* packets from direct neighbors or
334 * own secondary interface packets
335 * (= secondary interface packets in general) */
336 (batman_ogm_packet->flags & DIRECTLINK ||
337 (forw_packet->own &&
338 forw_packet->if_incoming != primary_if))) {
339 res = true;
340 goto out;
341 }
342 }
343
344out:
345 if (primary_if)
346 hardif_free_ref(primary_if);
347 return res;
348}
349
350/* create a new aggregated packet and add this packet to it */
Marek Lindner01c42242011-11-28 21:31:55 +0800351static void bat_iv_ogm_aggregate_new(const unsigned char *packet_buff,
352 int packet_len, unsigned long send_time,
353 bool direct_link,
354 struct hard_iface *if_incoming,
355 int own_packet)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200356{
357 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
358 struct forw_packet *forw_packet_aggr;
359 unsigned char *skb_buff;
360
361 if (!atomic_inc_not_zero(&if_incoming->refcount))
362 return;
363
364 /* own packet should always be scheduled */
365 if (!own_packet) {
366 if (!atomic_dec_not_zero(&bat_priv->batman_queue_left)) {
367 bat_dbg(DBG_BATMAN, bat_priv,
368 "batman packet queue full\n");
369 goto out;
370 }
371 }
372
373 forw_packet_aggr = kmalloc(sizeof(*forw_packet_aggr), GFP_ATOMIC);
374 if (!forw_packet_aggr) {
375 if (!own_packet)
376 atomic_inc(&bat_priv->batman_queue_left);
377 goto out;
378 }
379
380 if ((atomic_read(&bat_priv->aggregated_ogms)) &&
381 (packet_len < MAX_AGGREGATION_BYTES))
382 forw_packet_aggr->skb = dev_alloc_skb(MAX_AGGREGATION_BYTES +
Antonio Quartulli0d125072012-02-18 11:27:34 +0100383 ETH_HLEN);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200384 else
Antonio Quartulli0d125072012-02-18 11:27:34 +0100385 forw_packet_aggr->skb = dev_alloc_skb(packet_len + ETH_HLEN);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200386
387 if (!forw_packet_aggr->skb) {
388 if (!own_packet)
389 atomic_inc(&bat_priv->batman_queue_left);
390 kfree(forw_packet_aggr);
391 goto out;
392 }
Antonio Quartulli0d125072012-02-18 11:27:34 +0100393 skb_reserve(forw_packet_aggr->skb, ETH_HLEN);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200394
395 INIT_HLIST_NODE(&forw_packet_aggr->list);
396
397 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
398 forw_packet_aggr->packet_len = packet_len;
399 memcpy(skb_buff, packet_buff, packet_len);
400
401 forw_packet_aggr->own = own_packet;
402 forw_packet_aggr->if_incoming = if_incoming;
403 forw_packet_aggr->num_packets = 0;
404 forw_packet_aggr->direct_link_flags = NO_FLAGS;
405 forw_packet_aggr->send_time = send_time;
406
407 /* save packet direct link flag status */
408 if (direct_link)
409 forw_packet_aggr->direct_link_flags |= 1;
410
411 /* add new packet to packet list */
412 spin_lock_bh(&bat_priv->forw_bat_list_lock);
413 hlist_add_head(&forw_packet_aggr->list, &bat_priv->forw_bat_list);
414 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
415
416 /* start timer for this packet */
417 INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work,
418 send_outstanding_bat_ogm_packet);
419 queue_delayed_work(bat_event_workqueue,
420 &forw_packet_aggr->delayed_work,
421 send_time - jiffies);
422
423 return;
424out:
425 hardif_free_ref(if_incoming);
426}
427
428/* aggregate a new packet into the existing ogm packet */
Marek Lindner01c42242011-11-28 21:31:55 +0800429static void bat_iv_ogm_aggregate(struct forw_packet *forw_packet_aggr,
430 const unsigned char *packet_buff,
431 int packet_len, bool direct_link)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200432{
433 unsigned char *skb_buff;
434
435 skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
436 memcpy(skb_buff, packet_buff, packet_len);
437 forw_packet_aggr->packet_len += packet_len;
438 forw_packet_aggr->num_packets++;
439
440 /* save packet direct link flag status */
441 if (direct_link)
442 forw_packet_aggr->direct_link_flags |=
443 (1 << forw_packet_aggr->num_packets);
444}
445
Marek Lindner01c42242011-11-28 21:31:55 +0800446static void bat_iv_ogm_queue_add(struct bat_priv *bat_priv,
447 unsigned char *packet_buff,
448 int packet_len, struct hard_iface *if_incoming,
449 int own_packet, unsigned long send_time)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200450{
451 /**
452 * _aggr -> pointer to the packet we want to aggregate with
453 * _pos -> pointer to the position in the queue
454 */
455 struct forw_packet *forw_packet_aggr = NULL, *forw_packet_pos = NULL;
456 struct hlist_node *tmp_node;
457 struct batman_ogm_packet *batman_ogm_packet;
458 bool direct_link;
459
460 batman_ogm_packet = (struct batman_ogm_packet *)packet_buff;
461 direct_link = batman_ogm_packet->flags & DIRECTLINK ? 1 : 0;
462
463 /* find position for the packet in the forward queue */
464 spin_lock_bh(&bat_priv->forw_bat_list_lock);
465 /* own packets are not to be aggregated */
466 if ((atomic_read(&bat_priv->aggregated_ogms)) && (!own_packet)) {
467 hlist_for_each_entry(forw_packet_pos, tmp_node,
468 &bat_priv->forw_bat_list, list) {
Marek Lindner01c42242011-11-28 21:31:55 +0800469 if (bat_iv_ogm_can_aggregate(batman_ogm_packet,
470 bat_priv, packet_len,
471 send_time, direct_link,
472 if_incoming,
473 forw_packet_pos)) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200474 forw_packet_aggr = forw_packet_pos;
475 break;
476 }
477 }
478 }
479
480 /* nothing to aggregate with - either aggregation disabled or no
481 * suitable aggregation packet found */
482 if (!forw_packet_aggr) {
483 /* the following section can run without the lock */
484 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
485
486 /**
487 * if we could not aggregate this packet with one of the others
488 * we hold it back for a while, so that it might be aggregated
489 * later on
490 */
491 if ((!own_packet) &&
492 (atomic_read(&bat_priv->aggregated_ogms)))
493 send_time += msecs_to_jiffies(MAX_AGGREGATION_MS);
494
Marek Lindner01c42242011-11-28 21:31:55 +0800495 bat_iv_ogm_aggregate_new(packet_buff, packet_len,
496 send_time, direct_link,
497 if_incoming, own_packet);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200498 } else {
Marek Lindner01c42242011-11-28 21:31:55 +0800499 bat_iv_ogm_aggregate(forw_packet_aggr, packet_buff,
500 packet_len, direct_link);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200501 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
502 }
503}
504
Marek Lindner01c42242011-11-28 21:31:55 +0800505static void bat_iv_ogm_forward(struct orig_node *orig_node,
506 const struct ethhdr *ethhdr,
507 struct batman_ogm_packet *batman_ogm_packet,
Marek Lindner75cd33f2012-03-01 15:35:16 +0800508 bool is_single_hop_neigh,
Marek Lindner13b25412012-03-11 06:17:53 +0800509 bool is_from_best_next_hop,
Marek Lindner75cd33f2012-03-01 15:35:16 +0800510 struct hard_iface *if_incoming)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200511{
512 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200513 uint8_t tt_num_changes;
514
Sven Eckelmann76543d12011-11-20 15:47:38 +0100515 if (batman_ogm_packet->header.ttl <= 1) {
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200516 bat_dbg(DBG_BATMAN, bat_priv, "ttl exceeded\n");
517 return;
518 }
519
Marek Lindner13b25412012-03-11 06:17:53 +0800520 if (!is_from_best_next_hop) {
521 /* Mark the forwarded packet when it is not coming from our
522 * best next hop. We still need to forward the packet for our
523 * neighbor link quality detection to work in case the packet
524 * originated from a single hop neighbor. Otherwise we can
525 * simply drop the ogm.
526 */
527 if (is_single_hop_neigh)
528 batman_ogm_packet->flags |= NOT_BEST_NEXT_HOP;
529 else
530 return;
531 }
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200532
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200533 tt_num_changes = batman_ogm_packet->tt_num_changes;
534
Sven Eckelmann76543d12011-11-20 15:47:38 +0100535 batman_ogm_packet->header.ttl--;
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200536 memcpy(batman_ogm_packet->prev_sender, ethhdr->h_source, ETH_ALEN);
537
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200538 /* apply hop penalty */
539 batman_ogm_packet->tq = hop_penalty(batman_ogm_packet->tq, bat_priv);
540
541 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindner13b25412012-03-11 06:17:53 +0800542 "Forwarding packet: tq: %i, ttl: %i\n",
543 batman_ogm_packet->tq, batman_ogm_packet->header.ttl);
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200544
545 batman_ogm_packet->seqno = htonl(batman_ogm_packet->seqno);
546 batman_ogm_packet->tt_crc = htons(batman_ogm_packet->tt_crc);
547
548 /* switch of primaries first hop flag when forwarding */
549 batman_ogm_packet->flags &= ~PRIMARIES_FIRST_HOP;
Marek Lindner75cd33f2012-03-01 15:35:16 +0800550 if (is_single_hop_neigh)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200551 batman_ogm_packet->flags |= DIRECTLINK;
552 else
553 batman_ogm_packet->flags &= ~DIRECTLINK;
554
Marek Lindner01c42242011-11-28 21:31:55 +0800555 bat_iv_ogm_queue_add(bat_priv, (unsigned char *)batman_ogm_packet,
Marek Lindner76e3d7f2012-02-07 17:20:50 +0800556 BATMAN_OGM_HLEN + tt_len(tt_num_changes),
Marek Lindner01c42242011-11-28 21:31:55 +0800557 if_incoming, 0, bat_iv_ogm_fwd_send_time());
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200558}
559
Marek Lindner01c42242011-11-28 21:31:55 +0800560static void bat_iv_ogm_schedule(struct hard_iface *hard_iface,
561 int tt_num_changes)
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200562{
563 struct bat_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
564 struct batman_ogm_packet *batman_ogm_packet;
565 struct hard_iface *primary_if;
566 int vis_server;
567
568 vis_server = atomic_read(&bat_priv->vis_mode);
569 primary_if = primary_if_get_selected(bat_priv);
570
571 batman_ogm_packet = (struct batman_ogm_packet *)hard_iface->packet_buff;
572
573 /* change sequence number to network order */
574 batman_ogm_packet->seqno =
575 htonl((uint32_t)atomic_read(&hard_iface->seqno));
576
577 batman_ogm_packet->ttvn = atomic_read(&bat_priv->ttvn);
578 batman_ogm_packet->tt_crc = htons((uint16_t)
579 atomic_read(&bat_priv->tt_crc));
580 if (tt_num_changes >= 0)
581 batman_ogm_packet->tt_num_changes = tt_num_changes;
582
583 if (vis_server == VIS_TYPE_SERVER_SYNC)
584 batman_ogm_packet->flags |= VIS_SERVER;
585 else
586 batman_ogm_packet->flags &= ~VIS_SERVER;
587
588 if ((hard_iface == primary_if) &&
589 (atomic_read(&bat_priv->gw_mode) == GW_MODE_SERVER))
590 batman_ogm_packet->gw_flags =
591 (uint8_t)atomic_read(&bat_priv->gw_bandwidth);
592 else
593 batman_ogm_packet->gw_flags = NO_FLAGS;
594
595 atomic_inc(&hard_iface->seqno);
596
597 slide_own_bcast_window(hard_iface);
Marek Lindner01c42242011-11-28 21:31:55 +0800598 bat_iv_ogm_queue_add(bat_priv, hard_iface->packet_buff,
599 hard_iface->packet_len, hard_iface, 1,
600 bat_iv_ogm_emit_send_time(bat_priv));
Marek Lindnerb9dacc52011-08-03 09:09:30 +0200601
602 if (primary_if)
603 hardif_free_ref(primary_if);
604}
605
Marek Lindner01c42242011-11-28 21:31:55 +0800606static void bat_iv_ogm_orig_update(struct bat_priv *bat_priv,
607 struct orig_node *orig_node,
608 const struct ethhdr *ethhdr,
609 const struct batman_ogm_packet
Marek Lindnerfc957272011-07-30 12:04:12 +0200610 *batman_ogm_packet,
Marek Lindner01c42242011-11-28 21:31:55 +0800611 struct hard_iface *if_incoming,
612 const unsigned char *tt_buff,
613 int is_duplicate)
Marek Lindnerfc957272011-07-30 12:04:12 +0200614{
615 struct neigh_node *neigh_node = NULL, *tmp_neigh_node = NULL;
616 struct neigh_node *router = NULL;
617 struct orig_node *orig_node_tmp;
618 struct hlist_node *node;
619 uint8_t bcast_own_sum_orig, bcast_own_sum_neigh;
620
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100621 bat_dbg(DBG_BATMAN, bat_priv,
622 "update_originator(): Searching and updating originator entry of received packet\n");
Marek Lindnerfc957272011-07-30 12:04:12 +0200623
624 rcu_read_lock();
625 hlist_for_each_entry_rcu(tmp_neigh_node, node,
626 &orig_node->neigh_list, list) {
627 if (compare_eth(tmp_neigh_node->addr, ethhdr->h_source) &&
628 (tmp_neigh_node->if_incoming == if_incoming) &&
629 atomic_inc_not_zero(&tmp_neigh_node->refcount)) {
630 if (neigh_node)
631 neigh_node_free_ref(neigh_node);
632 neigh_node = tmp_neigh_node;
633 continue;
634 }
635
636 if (is_duplicate)
637 continue;
638
Marek Lindnere3b0d0d2012-03-17 15:28:32 +0800639 spin_lock_bh(&tmp_neigh_node->lq_update_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +0200640 ring_buffer_set(tmp_neigh_node->tq_recv,
641 &tmp_neigh_node->tq_index, 0);
642 tmp_neigh_node->tq_avg =
643 ring_buffer_avg(tmp_neigh_node->tq_recv);
Marek Lindnere3b0d0d2012-03-17 15:28:32 +0800644 spin_unlock_bh(&tmp_neigh_node->lq_update_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +0200645 }
646
647 if (!neigh_node) {
648 struct orig_node *orig_tmp;
649
650 orig_tmp = get_orig_node(bat_priv, ethhdr->h_source);
651 if (!orig_tmp)
652 goto unlock;
653
Marek Lindner7ae8b282012-03-01 15:35:21 +0800654 neigh_node = bat_iv_ogm_neigh_new(if_incoming, ethhdr->h_source,
655 orig_node, orig_tmp,
656 batman_ogm_packet->seqno);
Marek Lindnerfc957272011-07-30 12:04:12 +0200657
658 orig_node_free_ref(orig_tmp);
659 if (!neigh_node)
660 goto unlock;
661 } else
662 bat_dbg(DBG_BATMAN, bat_priv,
663 "Updating existing last-hop neighbor of originator\n");
664
665 rcu_read_unlock();
666
667 orig_node->flags = batman_ogm_packet->flags;
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800668 neigh_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +0200669
Marek Lindnere3b0d0d2012-03-17 15:28:32 +0800670 spin_lock_bh(&neigh_node->lq_update_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +0200671 ring_buffer_set(neigh_node->tq_recv,
672 &neigh_node->tq_index,
673 batman_ogm_packet->tq);
674 neigh_node->tq_avg = ring_buffer_avg(neigh_node->tq_recv);
Marek Lindnere3b0d0d2012-03-17 15:28:32 +0800675 spin_unlock_bh(&neigh_node->lq_update_lock);
Marek Lindnerfc957272011-07-30 12:04:12 +0200676
677 if (!is_duplicate) {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100678 orig_node->last_ttl = batman_ogm_packet->header.ttl;
679 neigh_node->last_ttl = batman_ogm_packet->header.ttl;
Marek Lindnerfc957272011-07-30 12:04:12 +0200680 }
681
682 bonding_candidate_add(orig_node, neigh_node);
683
684 /* if this neighbor already is our next hop there is nothing
685 * to change */
686 router = orig_node_get_router(orig_node);
687 if (router == neigh_node)
688 goto update_tt;
689
690 /* if this neighbor does not offer a better TQ we won't consider it */
691 if (router && (router->tq_avg > neigh_node->tq_avg))
692 goto update_tt;
693
694 /* if the TQ is the same and the link not more symmetric we
695 * won't consider it either */
696 if (router && (neigh_node->tq_avg == router->tq_avg)) {
697 orig_node_tmp = router->orig_node;
698 spin_lock_bh(&orig_node_tmp->ogm_cnt_lock);
699 bcast_own_sum_orig =
700 orig_node_tmp->bcast_own_sum[if_incoming->if_num];
701 spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock);
702
703 orig_node_tmp = neigh_node->orig_node;
704 spin_lock_bh(&orig_node_tmp->ogm_cnt_lock);
705 bcast_own_sum_neigh =
706 orig_node_tmp->bcast_own_sum[if_incoming->if_num];
707 spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock);
708
709 if (bcast_own_sum_orig >= bcast_own_sum_neigh)
710 goto update_tt;
711 }
712
713 update_route(bat_priv, orig_node, neigh_node);
714
715update_tt:
716 /* I have to check for transtable changes only if the OGM has been
717 * sent through a primary interface */
718 if (((batman_ogm_packet->orig != ethhdr->h_source) &&
Sven Eckelmann76543d12011-11-20 15:47:38 +0100719 (batman_ogm_packet->header.ttl > 2)) ||
Marek Lindnerfc957272011-07-30 12:04:12 +0200720 (batman_ogm_packet->flags & PRIMARIES_FIRST_HOP))
721 tt_update_orig(bat_priv, orig_node, tt_buff,
722 batman_ogm_packet->tt_num_changes,
723 batman_ogm_packet->ttvn,
724 batman_ogm_packet->tt_crc);
725
726 if (orig_node->gw_flags != batman_ogm_packet->gw_flags)
727 gw_node_update(bat_priv, orig_node,
728 batman_ogm_packet->gw_flags);
729
730 orig_node->gw_flags = batman_ogm_packet->gw_flags;
731
732 /* restart gateway selection if fast or late switching was enabled */
733 if ((orig_node->gw_flags) &&
734 (atomic_read(&bat_priv->gw_mode) == GW_MODE_CLIENT) &&
735 (atomic_read(&bat_priv->gw_sel_class) > 2))
736 gw_check_election(bat_priv, orig_node);
737
738 goto out;
739
740unlock:
741 rcu_read_unlock();
742out:
743 if (neigh_node)
744 neigh_node_free_ref(neigh_node);
745 if (router)
746 neigh_node_free_ref(router);
747}
748
Marek Lindner01c42242011-11-28 21:31:55 +0800749static int bat_iv_ogm_calc_tq(struct orig_node *orig_node,
750 struct orig_node *orig_neigh_node,
751 struct batman_ogm_packet *batman_ogm_packet,
752 struct hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +0200753{
754 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
755 struct neigh_node *neigh_node = NULL, *tmp_neigh_node;
756 struct hlist_node *node;
757 uint8_t total_count;
758 uint8_t orig_eq_count, neigh_rq_count, tq_own;
759 int tq_asym_penalty, ret = 0;
760
761 /* find corresponding one hop neighbor */
762 rcu_read_lock();
763 hlist_for_each_entry_rcu(tmp_neigh_node, node,
764 &orig_neigh_node->neigh_list, list) {
765
766 if (!compare_eth(tmp_neigh_node->addr, orig_neigh_node->orig))
767 continue;
768
769 if (tmp_neigh_node->if_incoming != if_incoming)
770 continue;
771
772 if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
773 continue;
774
775 neigh_node = tmp_neigh_node;
776 break;
777 }
778 rcu_read_unlock();
779
780 if (!neigh_node)
Marek Lindner7ae8b282012-03-01 15:35:21 +0800781 neigh_node = bat_iv_ogm_neigh_new(if_incoming,
782 orig_neigh_node->orig,
783 orig_neigh_node,
784 orig_neigh_node,
785 batman_ogm_packet->seqno);
Marek Lindnerfc957272011-07-30 12:04:12 +0200786
787 if (!neigh_node)
788 goto out;
789
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800790 /* if orig_node is direct neighbor update neigh_node last_seen */
Marek Lindnerfc957272011-07-30 12:04:12 +0200791 if (orig_node == orig_neigh_node)
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800792 neigh_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +0200793
Marek Lindnerd7b2a972012-03-01 15:35:19 +0800794 orig_node->last_seen = jiffies;
Marek Lindnerfc957272011-07-30 12:04:12 +0200795
796 /* find packet count of corresponding one hop neighbor */
797 spin_lock_bh(&orig_node->ogm_cnt_lock);
798 orig_eq_count = orig_neigh_node->bcast_own_sum[if_incoming->if_num];
799 neigh_rq_count = neigh_node->real_packet_count;
800 spin_unlock_bh(&orig_node->ogm_cnt_lock);
801
802 /* pay attention to not get a value bigger than 100 % */
803 total_count = (orig_eq_count > neigh_rq_count ?
804 neigh_rq_count : orig_eq_count);
805
806 /* if we have too few packets (too less data) we set tq_own to zero */
807 /* if we receive too few packets it is not considered bidirectional */
808 if ((total_count < TQ_LOCAL_BIDRECT_SEND_MINIMUM) ||
809 (neigh_rq_count < TQ_LOCAL_BIDRECT_RECV_MINIMUM))
810 tq_own = 0;
811 else
812 /* neigh_node->real_packet_count is never zero as we
813 * only purge old information when getting new
814 * information */
815 tq_own = (TQ_MAX_VALUE * total_count) / neigh_rq_count;
816
Sven Eckelmann21a12362012-03-07 09:07:46 +0100817 /* 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does
Marek Lindnerfc957272011-07-30 12:04:12 +0200818 * affect the nearly-symmetric links only a little, but
819 * punishes asymmetric links more. This will give a value
820 * between 0 and TQ_MAX_VALUE
821 */
822 tq_asym_penalty = TQ_MAX_VALUE - (TQ_MAX_VALUE *
823 (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count) *
824 (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count) *
825 (TQ_LOCAL_WINDOW_SIZE - neigh_rq_count)) /
826 (TQ_LOCAL_WINDOW_SIZE *
827 TQ_LOCAL_WINDOW_SIZE *
828 TQ_LOCAL_WINDOW_SIZE);
829
830 batman_ogm_packet->tq = ((batman_ogm_packet->tq * tq_own
831 * tq_asym_penalty) /
832 (TQ_MAX_VALUE * TQ_MAX_VALUE));
833
834 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100835 "bidirectional: orig = %-15pM neigh = %-15pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, total tq: %3i\n",
Marek Lindnerfc957272011-07-30 12:04:12 +0200836 orig_node->orig, orig_neigh_node->orig, total_count,
837 neigh_rq_count, tq_own, tq_asym_penalty, batman_ogm_packet->tq);
838
839 /* if link has the minimum required transmission quality
840 * consider it bidirectional */
841 if (batman_ogm_packet->tq >= TQ_TOTAL_BIDRECT_LIMIT)
842 ret = 1;
843
844out:
845 if (neigh_node)
846 neigh_node_free_ref(neigh_node);
847 return ret;
848}
849
850/* processes a batman packet for all interfaces, adjusts the sequence number and
851 * finds out whether it is a duplicate.
852 * returns:
853 * 1 the packet is a duplicate
854 * 0 the packet has not yet been received
855 * -1 the packet is old and has been received while the seqno window
856 * was protected. Caller should drop it.
857 */
Marek Lindner01c42242011-11-28 21:31:55 +0800858static int bat_iv_ogm_update_seqnos(const struct ethhdr *ethhdr,
859 const struct batman_ogm_packet
Marek Lindnerfc957272011-07-30 12:04:12 +0200860 *batman_ogm_packet,
Marek Lindner01c42242011-11-28 21:31:55 +0800861 const struct hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +0200862{
863 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
864 struct orig_node *orig_node;
865 struct neigh_node *tmp_neigh_node;
866 struct hlist_node *node;
867 int is_duplicate = 0;
868 int32_t seq_diff;
869 int need_update = 0;
870 int set_mark, ret = -1;
871
872 orig_node = get_orig_node(bat_priv, batman_ogm_packet->orig);
873 if (!orig_node)
874 return 0;
875
876 spin_lock_bh(&orig_node->ogm_cnt_lock);
877 seq_diff = batman_ogm_packet->seqno - orig_node->last_real_seqno;
878
879 /* signalize caller that the packet is to be dropped. */
Antonio Quartulli1e5cc262012-02-26 15:39:42 +0100880 if (!hlist_empty(&orig_node->neigh_list) &&
881 window_protected(bat_priv, seq_diff,
Marek Lindnerfc957272011-07-30 12:04:12 +0200882 &orig_node->batman_seqno_reset))
883 goto out;
884
885 rcu_read_lock();
886 hlist_for_each_entry_rcu(tmp_neigh_node, node,
887 &orig_node->neigh_list, list) {
888
Sven Eckelmann0079d2c2012-02-04 17:34:52 +0100889 is_duplicate |= bat_test_bit(tmp_neigh_node->real_bits,
890 orig_node->last_real_seqno,
891 batman_ogm_packet->seqno);
Marek Lindnerfc957272011-07-30 12:04:12 +0200892
893 if (compare_eth(tmp_neigh_node->addr, ethhdr->h_source) &&
894 (tmp_neigh_node->if_incoming == if_incoming))
895 set_mark = 1;
896 else
897 set_mark = 0;
898
899 /* if the window moved, set the update flag. */
900 need_update |= bit_get_packet(bat_priv,
901 tmp_neigh_node->real_bits,
902 seq_diff, set_mark);
903
904 tmp_neigh_node->real_packet_count =
Sven Eckelmann0079d2c2012-02-04 17:34:52 +0100905 bitmap_weight(tmp_neigh_node->real_bits,
906 TQ_LOCAL_WINDOW_SIZE);
Marek Lindnerfc957272011-07-30 12:04:12 +0200907 }
908 rcu_read_unlock();
909
910 if (need_update) {
911 bat_dbg(DBG_BATMAN, bat_priv,
Antonio Quartullic97c72b2012-02-26 15:39:41 +0100912 "updating last_seqno: old %u, new %u\n",
Marek Lindnerfc957272011-07-30 12:04:12 +0200913 orig_node->last_real_seqno, batman_ogm_packet->seqno);
914 orig_node->last_real_seqno = batman_ogm_packet->seqno;
915 }
916
917 ret = is_duplicate;
918
919out:
920 spin_unlock_bh(&orig_node->ogm_cnt_lock);
921 orig_node_free_ref(orig_node);
922 return ret;
923}
924
Marek Lindner01c42242011-11-28 21:31:55 +0800925static void bat_iv_ogm_process(const struct ethhdr *ethhdr,
926 struct batman_ogm_packet *batman_ogm_packet,
927 const unsigned char *tt_buff,
928 struct hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +0200929{
930 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
931 struct hard_iface *hard_iface;
932 struct orig_node *orig_neigh_node, *orig_node;
933 struct neigh_node *router = NULL, *router_router = NULL;
934 struct neigh_node *orig_neigh_router = NULL;
935 int has_directlink_flag;
936 int is_my_addr = 0, is_my_orig = 0, is_my_oldorig = 0;
Marek Lindner75cd33f2012-03-01 15:35:16 +0800937 int is_broadcast = 0, is_bidirectional;
938 bool is_single_hop_neigh = false;
Marek Lindner13b25412012-03-11 06:17:53 +0800939 bool is_from_best_next_hop = false;
Marek Lindnerfc957272011-07-30 12:04:12 +0200940 int is_duplicate;
941 uint32_t if_incoming_seqno;
942
943 /* Silently drop when the batman packet is actually not a
944 * correct packet.
945 *
946 * This might happen if a packet is padded (e.g. Ethernet has a
947 * minimum frame length of 64 byte) and the aggregation interprets
948 * it as an additional length.
949 *
950 * TODO: A more sane solution would be to have a bit in the
951 * batman_ogm_packet to detect whether the packet is the last
952 * packet in an aggregation. Here we expect that the padding
953 * is always zero (or not 0x01)
954 */
Marek Lindner1eeb4792012-02-07 17:20:51 +0800955 if (batman_ogm_packet->header.packet_type != BAT_IV_OGM)
Marek Lindnerfc957272011-07-30 12:04:12 +0200956 return;
957
958 /* could be changed by schedule_own_packet() */
959 if_incoming_seqno = atomic_read(&if_incoming->seqno);
960
961 has_directlink_flag = (batman_ogm_packet->flags & DIRECTLINK ? 1 : 0);
962
Marek Lindner75cd33f2012-03-01 15:35:16 +0800963 if (compare_eth(ethhdr->h_source, batman_ogm_packet->orig))
964 is_single_hop_neigh = true;
Marek Lindnerfc957272011-07-30 12:04:12 +0200965
966 bat_dbg(DBG_BATMAN, bat_priv,
Antonio Quartullic97c72b2012-02-26 15:39:41 +0100967 "Received BATMAN packet via NB: %pM, IF: %s [%pM] (from OG: %pM, via prev OG: %pM, seqno %u, ttvn %u, crc %u, changes %u, td %d, TTL %d, V %d, IDF %d)\n",
Marek Lindnerfc957272011-07-30 12:04:12 +0200968 ethhdr->h_source, if_incoming->net_dev->name,
969 if_incoming->net_dev->dev_addr, batman_ogm_packet->orig,
970 batman_ogm_packet->prev_sender, batman_ogm_packet->seqno,
971 batman_ogm_packet->ttvn, batman_ogm_packet->tt_crc,
972 batman_ogm_packet->tt_num_changes, batman_ogm_packet->tq,
Sven Eckelmann76543d12011-11-20 15:47:38 +0100973 batman_ogm_packet->header.ttl,
974 batman_ogm_packet->header.version, has_directlink_flag);
Marek Lindnerfc957272011-07-30 12:04:12 +0200975
976 rcu_read_lock();
977 list_for_each_entry_rcu(hard_iface, &hardif_list, list) {
978 if (hard_iface->if_status != IF_ACTIVE)
979 continue;
980
981 if (hard_iface->soft_iface != if_incoming->soft_iface)
982 continue;
983
984 if (compare_eth(ethhdr->h_source,
985 hard_iface->net_dev->dev_addr))
986 is_my_addr = 1;
987
988 if (compare_eth(batman_ogm_packet->orig,
989 hard_iface->net_dev->dev_addr))
990 is_my_orig = 1;
991
992 if (compare_eth(batman_ogm_packet->prev_sender,
993 hard_iface->net_dev->dev_addr))
994 is_my_oldorig = 1;
995
996 if (is_broadcast_ether_addr(ethhdr->h_source))
997 is_broadcast = 1;
998 }
999 rcu_read_unlock();
1000
Sven Eckelmann76543d12011-11-20 15:47:38 +01001001 if (batman_ogm_packet->header.version != COMPAT_VERSION) {
Marek Lindnerfc957272011-07-30 12:04:12 +02001002 bat_dbg(DBG_BATMAN, bat_priv,
1003 "Drop packet: incompatible batman version (%i)\n",
Sven Eckelmann76543d12011-11-20 15:47:38 +01001004 batman_ogm_packet->header.version);
Marek Lindnerfc957272011-07-30 12:04:12 +02001005 return;
1006 }
1007
1008 if (is_my_addr) {
1009 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +01001010 "Drop packet: received my own broadcast (sender: %pM)\n",
Marek Lindnerfc957272011-07-30 12:04:12 +02001011 ethhdr->h_source);
1012 return;
1013 }
1014
1015 if (is_broadcast) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +01001016 bat_dbg(DBG_BATMAN, bat_priv,
1017 "Drop packet: ignoring all packets with broadcast source addr (sender: %pM)\n",
1018 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001019 return;
1020 }
1021
1022 if (is_my_orig) {
1023 unsigned long *word;
1024 int offset;
1025
1026 orig_neigh_node = get_orig_node(bat_priv, ethhdr->h_source);
1027 if (!orig_neigh_node)
1028 return;
1029
1030 /* neighbor has to indicate direct link and it has to
1031 * come via the corresponding interface */
1032 /* save packet seqno for bidirectional check */
1033 if (has_directlink_flag &&
1034 compare_eth(if_incoming->net_dev->dev_addr,
1035 batman_ogm_packet->orig)) {
1036 offset = if_incoming->if_num * NUM_WORDS;
1037
1038 spin_lock_bh(&orig_neigh_node->ogm_cnt_lock);
1039 word = &(orig_neigh_node->bcast_own[offset]);
Sven Eckelmann0079d2c2012-02-04 17:34:52 +01001040 bat_set_bit(word,
1041 if_incoming_seqno -
Marek Lindnerfc957272011-07-30 12:04:12 +02001042 batman_ogm_packet->seqno - 2);
1043 orig_neigh_node->bcast_own_sum[if_incoming->if_num] =
Sven Eckelmann0079d2c2012-02-04 17:34:52 +01001044 bitmap_weight(word, TQ_LOCAL_WINDOW_SIZE);
Marek Lindnerfc957272011-07-30 12:04:12 +02001045 spin_unlock_bh(&orig_neigh_node->ogm_cnt_lock);
1046 }
1047
Sven Eckelmann86ceb362012-03-07 09:07:45 +01001048 bat_dbg(DBG_BATMAN, bat_priv,
1049 "Drop packet: originator packet from myself (via neighbor)\n");
Marek Lindnerfc957272011-07-30 12:04:12 +02001050 orig_node_free_ref(orig_neigh_node);
1051 return;
1052 }
1053
1054 if (is_my_oldorig) {
1055 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +01001056 "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n",
1057 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001058 return;
1059 }
1060
Marek Lindner13b25412012-03-11 06:17:53 +08001061 if (batman_ogm_packet->flags & NOT_BEST_NEXT_HOP) {
1062 bat_dbg(DBG_BATMAN, bat_priv,
Marek Lindnerfefa5322012-03-17 15:28:34 +08001063 "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n",
1064 ethhdr->h_source);
Marek Lindner13b25412012-03-11 06:17:53 +08001065 return;
1066 }
1067
Marek Lindnerfc957272011-07-30 12:04:12 +02001068 orig_node = get_orig_node(bat_priv, batman_ogm_packet->orig);
1069 if (!orig_node)
1070 return;
1071
Marek Lindner01c42242011-11-28 21:31:55 +08001072 is_duplicate = bat_iv_ogm_update_seqnos(ethhdr, batman_ogm_packet,
1073 if_incoming);
Marek Lindnerfc957272011-07-30 12:04:12 +02001074
1075 if (is_duplicate == -1) {
1076 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +01001077 "Drop packet: packet within seqno protection time (sender: %pM)\n",
1078 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001079 goto out;
1080 }
1081
1082 if (batman_ogm_packet->tq == 0) {
1083 bat_dbg(DBG_BATMAN, bat_priv,
1084 "Drop packet: originator packet with tq equal 0\n");
1085 goto out;
1086 }
1087
1088 router = orig_node_get_router(orig_node);
1089 if (router)
1090 router_router = orig_node_get_router(router->orig_node);
1091
Marek Lindner13b25412012-03-11 06:17:53 +08001092 if ((router && router->tq_avg != 0) &&
1093 (compare_eth(router->addr, ethhdr->h_source)))
1094 is_from_best_next_hop = true;
1095
Marek Lindnerfc957272011-07-30 12:04:12 +02001096 /* avoid temporary routing loops */
1097 if (router && router_router &&
1098 (compare_eth(router->addr, batman_ogm_packet->prev_sender)) &&
1099 !(compare_eth(batman_ogm_packet->orig,
1100 batman_ogm_packet->prev_sender)) &&
1101 (compare_eth(router->addr, router_router->addr))) {
1102 bat_dbg(DBG_BATMAN, bat_priv,
Sven Eckelmann86ceb362012-03-07 09:07:45 +01001103 "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n",
1104 ethhdr->h_source);
Marek Lindnerfc957272011-07-30 12:04:12 +02001105 goto out;
1106 }
1107
1108 /* if sender is a direct neighbor the sender mac equals
1109 * originator mac */
1110 orig_neigh_node = (is_single_hop_neigh ?
1111 orig_node :
1112 get_orig_node(bat_priv, ethhdr->h_source));
1113 if (!orig_neigh_node)
1114 goto out;
1115
1116 orig_neigh_router = orig_node_get_router(orig_neigh_node);
1117
1118 /* drop packet if sender is not a direct neighbor and if we
1119 * don't route towards it */
1120 if (!is_single_hop_neigh && (!orig_neigh_router)) {
1121 bat_dbg(DBG_BATMAN, bat_priv,
1122 "Drop packet: OGM via unknown neighbor!\n");
1123 goto out_neigh;
1124 }
1125
Marek Lindner01c42242011-11-28 21:31:55 +08001126 is_bidirectional = bat_iv_ogm_calc_tq(orig_node, orig_neigh_node,
1127 batman_ogm_packet, if_incoming);
Marek Lindnerfc957272011-07-30 12:04:12 +02001128
1129 bonding_save_primary(orig_node, orig_neigh_node, batman_ogm_packet);
1130
1131 /* update ranking if it is not a duplicate or has the same
1132 * seqno and similar ttl as the non-duplicate */
1133 if (is_bidirectional &&
1134 (!is_duplicate ||
1135 ((orig_node->last_real_seqno == batman_ogm_packet->seqno) &&
Sven Eckelmann76543d12011-11-20 15:47:38 +01001136 (orig_node->last_ttl - 3 <= batman_ogm_packet->header.ttl))))
Marek Lindner01c42242011-11-28 21:31:55 +08001137 bat_iv_ogm_orig_update(bat_priv, orig_node, ethhdr,
1138 batman_ogm_packet, if_incoming,
1139 tt_buff, is_duplicate);
Marek Lindnerfc957272011-07-30 12:04:12 +02001140
1141 /* is single hop (direct) neighbor */
1142 if (is_single_hop_neigh) {
1143
1144 /* mark direct link on incoming interface */
Marek Lindner01c42242011-11-28 21:31:55 +08001145 bat_iv_ogm_forward(orig_node, ethhdr, batman_ogm_packet,
Marek Lindner13b25412012-03-11 06:17:53 +08001146 is_single_hop_neigh, is_from_best_next_hop,
1147 if_incoming);
Marek Lindnerfc957272011-07-30 12:04:12 +02001148
Sven Eckelmann86ceb362012-03-07 09:07:45 +01001149 bat_dbg(DBG_BATMAN, bat_priv,
1150 "Forwarding packet: rebroadcast neighbor packet with direct link flag\n");
Marek Lindnerfc957272011-07-30 12:04:12 +02001151 goto out_neigh;
1152 }
1153
1154 /* multihop originator */
1155 if (!is_bidirectional) {
1156 bat_dbg(DBG_BATMAN, bat_priv,
1157 "Drop packet: not received via bidirectional link\n");
1158 goto out_neigh;
1159 }
1160
1161 if (is_duplicate) {
1162 bat_dbg(DBG_BATMAN, bat_priv,
1163 "Drop packet: duplicate packet received\n");
1164 goto out_neigh;
1165 }
1166
1167 bat_dbg(DBG_BATMAN, bat_priv,
1168 "Forwarding packet: rebroadcast originator packet\n");
Marek Lindner01c42242011-11-28 21:31:55 +08001169 bat_iv_ogm_forward(orig_node, ethhdr, batman_ogm_packet,
Marek Lindner13b25412012-03-11 06:17:53 +08001170 is_single_hop_neigh, is_from_best_next_hop,
1171 if_incoming);
Marek Lindnerfc957272011-07-30 12:04:12 +02001172
1173out_neigh:
1174 if ((orig_neigh_node) && (!is_single_hop_neigh))
1175 orig_node_free_ref(orig_neigh_node);
1176out:
1177 if (router)
1178 neigh_node_free_ref(router);
1179 if (router_router)
1180 neigh_node_free_ref(router_router);
1181 if (orig_neigh_router)
1182 neigh_node_free_ref(orig_neigh_router);
1183
1184 orig_node_free_ref(orig_node);
1185}
1186
Marek Lindnerc3e29312012-03-04 16:56:25 +08001187static int bat_iv_ogm_receive(struct sk_buff *skb,
1188 struct hard_iface *if_incoming)
Marek Lindnerfc957272011-07-30 12:04:12 +02001189{
Marek Lindneredbf12b2012-03-11 06:17:49 +08001190 struct bat_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
Marek Lindnerfc957272011-07-30 12:04:12 +02001191 struct batman_ogm_packet *batman_ogm_packet;
Marek Lindner8780dad2011-12-05 04:01:51 +08001192 struct ethhdr *ethhdr;
1193 int buff_pos = 0, packet_len;
1194 unsigned char *tt_buff, *packet_buff;
Marek Lindnerc3e29312012-03-04 16:56:25 +08001195 bool ret;
1196
1197 ret = check_management_packet(skb, if_incoming, BATMAN_OGM_HLEN);
1198 if (!ret)
1199 return NET_RX_DROP;
Marek Lindnerfc957272011-07-30 12:04:12 +02001200
Marek Lindneredbf12b2012-03-11 06:17:49 +08001201 /* did we receive a B.A.T.M.A.N. IV OGM packet on an interface
1202 * that does not have B.A.T.M.A.N. IV enabled ?
1203 */
1204 if (bat_priv->bat_algo_ops->bat_ogm_emit != bat_iv_ogm_emit)
1205 return NET_RX_DROP;
1206
Marek Lindner8780dad2011-12-05 04:01:51 +08001207 packet_len = skb_headlen(skb);
1208 ethhdr = (struct ethhdr *)skb_mac_header(skb);
1209 packet_buff = skb->data;
Marek Lindnerfc957272011-07-30 12:04:12 +02001210 batman_ogm_packet = (struct batman_ogm_packet *)packet_buff;
1211
1212 /* unpack the aggregated packets and process them one by one */
1213 do {
1214 /* network to host order for our 32bit seqno and the
1215 orig_interval */
1216 batman_ogm_packet->seqno = ntohl(batman_ogm_packet->seqno);
1217 batman_ogm_packet->tt_crc = ntohs(batman_ogm_packet->tt_crc);
1218
Marek Lindner76e3d7f2012-02-07 17:20:50 +08001219 tt_buff = packet_buff + buff_pos + BATMAN_OGM_HLEN;
Marek Lindnerfc957272011-07-30 12:04:12 +02001220
Marek Lindner01c42242011-11-28 21:31:55 +08001221 bat_iv_ogm_process(ethhdr, batman_ogm_packet,
1222 tt_buff, if_incoming);
Marek Lindnerfc957272011-07-30 12:04:12 +02001223
Marek Lindner76e3d7f2012-02-07 17:20:50 +08001224 buff_pos += BATMAN_OGM_HLEN +
Marek Lindnerfc957272011-07-30 12:04:12 +02001225 tt_len(batman_ogm_packet->tt_num_changes);
1226
1227 batman_ogm_packet = (struct batman_ogm_packet *)
1228 (packet_buff + buff_pos);
Marek Lindner01c42242011-11-28 21:31:55 +08001229 } while (bat_iv_ogm_aggr_packet(buff_pos, packet_len,
1230 batman_ogm_packet->tt_num_changes));
Marek Lindnerc3e29312012-03-04 16:56:25 +08001231
1232 kfree_skb(skb);
1233 return NET_RX_SUCCESS;
Marek Lindnerfc957272011-07-30 12:04:12 +02001234}
Marek Lindner1c280472011-11-28 17:40:17 +08001235
1236static struct bat_algo_ops batman_iv __read_mostly = {
1237 .name = "BATMAN IV",
Marek Lindnerc2aca022012-02-07 17:20:45 +08001238 .bat_iface_enable = bat_iv_ogm_iface_enable,
Marek Lindner00a50072012-02-07 17:20:47 +08001239 .bat_iface_disable = bat_iv_ogm_iface_disable,
Marek Lindnerc3229392012-03-11 06:17:50 +08001240 .bat_iface_update_mac = bat_iv_ogm_iface_update_mac,
Marek Lindnercd8b78e2012-02-07 17:20:49 +08001241 .bat_primary_iface_set = bat_iv_ogm_primary_iface_set,
Marek Lindner01c42242011-11-28 21:31:55 +08001242 .bat_ogm_schedule = bat_iv_ogm_schedule,
1243 .bat_ogm_emit = bat_iv_ogm_emit,
Marek Lindner1c280472011-11-28 17:40:17 +08001244};
1245
1246int __init bat_iv_init(void)
1247{
Marek Lindnerc3e29312012-03-04 16:56:25 +08001248 int ret;
1249
1250 /* batman originator packet */
1251 ret = recv_handler_register(BAT_IV_OGM, bat_iv_ogm_receive);
1252 if (ret < 0)
1253 goto out;
1254
1255 ret = bat_algo_register(&batman_iv);
1256 if (ret < 0)
1257 goto handler_unregister;
1258
1259 goto out;
1260
1261handler_unregister:
1262 recv_handler_unregister(BAT_IV_OGM);
1263out:
1264 return ret;
Marek Lindner1c280472011-11-28 17:40:17 +08001265}