bat_iv_ogm.c 41.3 KB
Newer Older
1
/* Copyright (C) 2007-2013 B.A.T.M.A.N. contributors:
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * Marek Lindner, Simon Wunderlich
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA
 */

#include "main.h"
#include "translation-table.h"
#include "originator.h"
#include "routing.h"
#include "gateway_common.h"
#include "gateway_client.h"
#include "hard-interface.h"
#include "send.h"
28
#include "bat_algo.h"
29
#include "network-coding.h"
30

31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
/**
 * batadv_ring_buffer_set - update the ring buffer with the given value
 * @lq_recv: pointer to the ring buffer
 * @lq_index: index to store the value at
 * @value: value to store in the ring buffer
 */
static void batadv_ring_buffer_set(uint8_t lq_recv[], uint8_t *lq_index,
				   uint8_t value)
{
	lq_recv[*lq_index] = value;
	*lq_index = (*lq_index + 1) % BATADV_TQ_GLOBAL_WINDOW_SIZE;
}

/**
 * batadv_ring_buffer_set - compute the average of all non-zero values stored
 * in the given ring buffer
 * @lq_recv: pointer to the ring buffer
 *
 * Returns computed average value.
 */
static uint8_t batadv_ring_buffer_avg(const uint8_t lq_recv[])
{
	const uint8_t *ptr;
	uint16_t count = 0, i = 0, sum = 0;

	ptr = lq_recv;

	while (i < BATADV_TQ_GLOBAL_WINDOW_SIZE) {
		if (*ptr != 0) {
			count++;
			sum += *ptr;
		}

		i++;
		ptr++;
	}

	if (count == 0)
		return 0;

	return (uint8_t)(sum / count);
}
73 74 75 76
static struct batadv_neigh_node *
batadv_iv_ogm_neigh_new(struct batadv_hard_iface *hard_iface,
			const uint8_t *neigh_addr,
			struct batadv_orig_node *orig_node,
77
			struct batadv_orig_node *orig_neigh)
78
{
79
	struct batadv_neigh_node *neigh_node;
80

81
	neigh_node = batadv_neigh_node_new(hard_iface, neigh_addr);
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
	if (!neigh_node)
		goto out;

	INIT_LIST_HEAD(&neigh_node->bonding_list);

	neigh_node->orig_node = orig_neigh;
	neigh_node->if_incoming = hard_iface;

	spin_lock_bh(&orig_node->neigh_list_lock);
	hlist_add_head_rcu(&neigh_node->list, &orig_node->neigh_list);
	spin_unlock_bh(&orig_node->neigh_list_lock);

out:
	return neigh_node;
}

98
static int batadv_iv_ogm_iface_enable(struct batadv_hard_iface *hard_iface)
99
{
100
	struct batadv_ogm_packet *batadv_ogm_packet;
101
	unsigned char *ogm_buff;
102
	uint32_t random_seqno;
103
	int res = -ENOMEM;
104 105 106

	/* randomize initial seqno to avoid collision */
	get_random_bytes(&random_seqno, sizeof(random_seqno));
107
	atomic_set(&hard_iface->bat_iv.ogm_seqno, random_seqno);
108

109 110 111
	hard_iface->bat_iv.ogm_buff_len = BATADV_OGM_HLEN;
	ogm_buff = kmalloc(hard_iface->bat_iv.ogm_buff_len, GFP_ATOMIC);
	if (!ogm_buff)
112 113
		goto out;

114 115 116
	hard_iface->bat_iv.ogm_buff = ogm_buff;

	batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
117 118 119 120 121 122 123
	batadv_ogm_packet->header.packet_type = BATADV_IV_OGM;
	batadv_ogm_packet->header.version = BATADV_COMPAT_VERSION;
	batadv_ogm_packet->header.ttl = 2;
	batadv_ogm_packet->flags = BATADV_NO_FLAGS;
	batadv_ogm_packet->tq = BATADV_TQ_MAX_VALUE;
	batadv_ogm_packet->tt_num_changes = 0;
	batadv_ogm_packet->ttvn = 0;
124 125 126 127 128

	res = 0;

out:
	return res;
129 130
}

131
static void batadv_iv_ogm_iface_disable(struct batadv_hard_iface *hard_iface)
132
{
133 134
	kfree(hard_iface->bat_iv.ogm_buff);
	hard_iface->bat_iv.ogm_buff = NULL;
135 136
}

137
static void batadv_iv_ogm_iface_update_mac(struct batadv_hard_iface *hard_iface)
138
{
139
	struct batadv_ogm_packet *batadv_ogm_packet;
140
	unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
141

142
	batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
143
	memcpy(batadv_ogm_packet->orig,
144
	       hard_iface->net_dev->dev_addr, ETH_ALEN);
145
	memcpy(batadv_ogm_packet->prev_sender,
146
	       hard_iface->net_dev->dev_addr, ETH_ALEN);
147 148
}

149 150
static void
batadv_iv_ogm_primary_iface_set(struct batadv_hard_iface *hard_iface)
151
{
152
	struct batadv_ogm_packet *batadv_ogm_packet;
153
	unsigned char *ogm_buff = hard_iface->bat_iv.ogm_buff;
154

155
	batadv_ogm_packet = (struct batadv_ogm_packet *)ogm_buff;
156 157
	batadv_ogm_packet->flags = BATADV_PRIMARIES_FIRST_HOP;
	batadv_ogm_packet->header.ttl = BATADV_TTL;
158 159
}

160
/* when do we schedule our own ogm to be sent */
161
static unsigned long
162
batadv_iv_ogm_emit_send_time(const struct batadv_priv *bat_priv)
163
{
164 165 166
	unsigned int msecs;

	msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER;
167
	msecs += prandom_u32() % (2 * BATADV_JITTER);
168 169

	return jiffies + msecs_to_jiffies(msecs);
170 171 172
}

/* when do we schedule a ogm packet to be sent */
173
static unsigned long batadv_iv_ogm_fwd_send_time(void)
174
{
175
	return jiffies + msecs_to_jiffies(prandom_u32() % (BATADV_JITTER / 2));
176 177 178
}

/* apply hop penalty for a normal link */
179 180
static uint8_t batadv_hop_penalty(uint8_t tq,
				  const struct batadv_priv *bat_priv)
181 182
{
	int hop_penalty = atomic_read(&bat_priv->hop_penalty);
183 184 185 186 187 188
	int new_tq;

	new_tq = tq * (BATADV_TQ_MAX_VALUE - hop_penalty);
	new_tq /= BATADV_TQ_MAX_VALUE;

	return new_tq;
189 190
}

191
/* is there another aggregated packet here? */
192 193
static int batadv_iv_ogm_aggr_packet(int buff_pos, int packet_len,
				     int tt_num_changes)
194
{
195 196
	int next_buff_pos = 0;

197
	next_buff_pos += buff_pos + BATADV_OGM_HLEN;
198
	next_buff_pos += batadv_tt_len(tt_num_changes);
199 200

	return (next_buff_pos <= packet_len) &&
201
	       (next_buff_pos <= BATADV_MAX_AGGREGATION_BYTES);
202 203
}

204
/* send a batman ogm to a given interface */
205 206
static void batadv_iv_ogm_send_to_if(struct batadv_forw_packet *forw_packet,
				     struct batadv_hard_iface *hard_iface)
207
{
208
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
209 210 211
	char *fwd_str;
	uint8_t packet_num;
	int16_t buff_pos;
212
	struct batadv_ogm_packet *batadv_ogm_packet;
213
	struct sk_buff *skb;
214
	uint8_t *packet_pos;
215

216
	if (hard_iface->if_status != BATADV_IF_ACTIVE)
217 218 219 220
		return;

	packet_num = 0;
	buff_pos = 0;
221 222
	packet_pos = forw_packet->skb->data;
	batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
223 224

	/* adjust all flags and log packets */
225
	while (batadv_iv_ogm_aggr_packet(buff_pos, forw_packet->packet_len,
226
					 batadv_ogm_packet->tt_num_changes)) {
227
		/* we might have aggregated direct link packets with an
228 229
		 * ordinary base packet
		 */
230 231
		if (forw_packet->direct_link_flags & BIT(packet_num) &&
		    forw_packet->if_incoming == hard_iface)
232
			batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
233
		else
234
			batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
235

236 237 238 239 240
		if (packet_num > 0 || !forw_packet->own)
			fwd_str = "Forwarding";
		else
			fwd_str = "Sending own";

241
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
242 243
			   "%s %spacket (originator %pM, seqno %u, TQ %d, TTL %d, IDF %s, ttvn %d) on interface %s [%pM]\n",
			   fwd_str, (packet_num > 0 ? "aggregated " : ""),
244 245 246 247
			   batadv_ogm_packet->orig,
			   ntohl(batadv_ogm_packet->seqno),
			   batadv_ogm_packet->tq, batadv_ogm_packet->header.ttl,
			   (batadv_ogm_packet->flags & BATADV_DIRECTLINK ?
248
			    "on" : "off"),
249
			   batadv_ogm_packet->ttvn, hard_iface->net_dev->name,
250
			   hard_iface->net_dev->dev_addr);
251

252
		buff_pos += BATADV_OGM_HLEN;
253
		buff_pos += batadv_tt_len(batadv_ogm_packet->tt_num_changes);
254
		packet_num++;
255 256
		packet_pos = forw_packet->skb->data + buff_pos;
		batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
257 258 259 260
	}

	/* create clone because function is called more than once */
	skb = skb_clone(forw_packet->skb, GFP_ATOMIC);
261
	if (skb) {
262 263
		batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_TX);
		batadv_add_counter(bat_priv, BATADV_CNT_MGMT_TX_BYTES,
264
				   skb->len + ETH_HLEN);
265
		batadv_send_skb_packet(skb, hard_iface, batadv_broadcast_addr);
266
	}
267 268 269
}

/* send a batman ogm packet */
270
static void batadv_iv_ogm_emit(struct batadv_forw_packet *forw_packet)
271
{
272
	struct batadv_hard_iface *hard_iface;
273
	struct net_device *soft_iface;
274 275
	struct batadv_priv *bat_priv;
	struct batadv_hard_iface *primary_if = NULL;
276
	struct batadv_ogm_packet *batadv_ogm_packet;
277
	unsigned char directlink;
278
	uint8_t *packet_pos;
279

280 281
	packet_pos = forw_packet->skb->data;
	batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
282
	directlink = (batadv_ogm_packet->flags & BATADV_DIRECTLINK ? 1 : 0);
283 284

	if (!forw_packet->if_incoming) {
285
		pr_err("Error - can't forward packet: incoming iface not specified\n");
286 287 288 289 290 291
		goto out;
	}

	soft_iface = forw_packet->if_incoming->soft_iface;
	bat_priv = netdev_priv(soft_iface);

292
	if (forw_packet->if_incoming->if_status != BATADV_IF_ACTIVE)
293 294
		goto out;

295
	primary_if = batadv_primary_if_get_selected(bat_priv);
296 297 298
	if (!primary_if)
		goto out;

299 300 301
	/* multihomed peer assumed
	 * non-primary OGMs are only broadcasted on their interface
	 */
302
	if ((directlink && (batadv_ogm_packet->header.ttl == 1)) ||
303 304
	    (forw_packet->own && (forw_packet->if_incoming != primary_if))) {
		/* FIXME: what about aggregated packets ? */
305
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
306 307
			   "%s packet (originator %pM, seqno %u, TTL %d) on interface %s [%pM]\n",
			   (forw_packet->own ? "Sending own" : "Forwarding"),
308 309 310
			   batadv_ogm_packet->orig,
			   ntohl(batadv_ogm_packet->seqno),
			   batadv_ogm_packet->header.ttl,
311 312
			   forw_packet->if_incoming->net_dev->name,
			   forw_packet->if_incoming->net_dev->dev_addr);
313 314

		/* skb is only used once and than forw_packet is free'd */
315 316
		batadv_send_skb_packet(forw_packet->skb,
				       forw_packet->if_incoming,
317
				       batadv_broadcast_addr);
318 319 320 321 322 323 324
		forw_packet->skb = NULL;

		goto out;
	}

	/* broadcast on every interface */
	rcu_read_lock();
325
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
326 327 328
		if (hard_iface->soft_iface != soft_iface)
			continue;

329
		batadv_iv_ogm_send_to_if(forw_packet, hard_iface);
330 331 332 333 334
	}
	rcu_read_unlock();

out:
	if (primary_if)
335
		batadv_hardif_free_ref(primary_if);
336 337 338
}

/* return true if new_packet can be aggregated with forw_packet */
339
static bool
340
batadv_iv_ogm_can_aggregate(const struct batadv_ogm_packet *new_bat_ogm_packet,
341
			    struct batadv_priv *bat_priv,
342 343
			    int packet_len, unsigned long send_time,
			    bool directlink,
344 345
			    const struct batadv_hard_iface *if_incoming,
			    const struct batadv_forw_packet *forw_packet)
346
{
347
	struct batadv_ogm_packet *batadv_ogm_packet;
348
	int aggregated_bytes = forw_packet->packet_len + packet_len;
349
	struct batadv_hard_iface *primary_if = NULL;
350
	bool res = false;
351
	unsigned long aggregation_end_time;
352

353
	batadv_ogm_packet = (struct batadv_ogm_packet *)forw_packet->skb->data;
354 355
	aggregation_end_time = send_time;
	aggregation_end_time += msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
356

357
	/* we can aggregate the current packet to this aggregated packet
358 359 360 361 362 363 364
	 * if:
	 *
	 * - the send time is within our MAX_AGGREGATION_MS time
	 * - the resulting packet wont be bigger than
	 *   MAX_AGGREGATION_BYTES
	 */
	if (time_before(send_time, forw_packet->send_time) &&
365 366
	    time_after_eq(aggregation_end_time, forw_packet->send_time) &&
	    (aggregated_bytes <= BATADV_MAX_AGGREGATION_BYTES)) {
367
		/* check aggregation compatibility
368 369 370 371 372 373
		 * -> direct link packets are broadcasted on
		 *    their interface only
		 * -> aggregate packet if the current packet is
		 *    a "global" packet as well as the base
		 *    packet
		 */
374
		primary_if = batadv_primary_if_get_selected(bat_priv);
375 376 377 378
		if (!primary_if)
			goto out;

		/* packets without direct link flag and high TTL
379 380
		 * are flooded through the net
		 */
381
		if ((!directlink) &&
382 383
		    (!(batadv_ogm_packet->flags & BATADV_DIRECTLINK)) &&
		    (batadv_ogm_packet->header.ttl != 1) &&
384 385

		    /* own packets originating non-primary
386 387
		     * interfaces leave only that interface
		     */
388 389 390 391 392 393 394
		    ((!forw_packet->own) ||
		     (forw_packet->if_incoming == primary_if))) {
			res = true;
			goto out;
		}

		/* if the incoming packet is sent via this one
395 396
		 * interface only - we still can aggregate
		 */
397
		if ((directlink) &&
398
		    (new_bat_ogm_packet->header.ttl == 1) &&
399 400 401 402
		    (forw_packet->if_incoming == if_incoming) &&

		    /* packets from direct neighbors or
		     * own secondary interface packets
403 404
		     * (= secondary interface packets in general)
		     */
405
		    (batadv_ogm_packet->flags & BATADV_DIRECTLINK ||
406 407 408 409 410 411 412 413 414
		     (forw_packet->own &&
		      forw_packet->if_incoming != primary_if))) {
			res = true;
			goto out;
		}
	}

out:
	if (primary_if)
415
		batadv_hardif_free_ref(primary_if);
416 417 418 419
	return res;
}

/* create a new aggregated packet and add this packet to it */
420 421 422
static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff,
					int packet_len, unsigned long send_time,
					bool direct_link,
423
					struct batadv_hard_iface *if_incoming,
424
					int own_packet)
425
{
426 427
	struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
	struct batadv_forw_packet *forw_packet_aggr;
428
	unsigned char *skb_buff;
429
	unsigned int skb_size;
430 431 432 433 434 435

	if (!atomic_inc_not_zero(&if_incoming->refcount))
		return;

	/* own packet should always be scheduled */
	if (!own_packet) {
436
		if (!batadv_atomic_dec_not_zero(&bat_priv->batman_queue_left)) {
437
			batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
438
				   "batman packet queue full\n");
439 440 441 442 443 444 445 446 447 448 449 450
			goto out;
		}
	}

	forw_packet_aggr = kmalloc(sizeof(*forw_packet_aggr), GFP_ATOMIC);
	if (!forw_packet_aggr) {
		if (!own_packet)
			atomic_inc(&bat_priv->batman_queue_left);
		goto out;
	}

	if ((atomic_read(&bat_priv->aggregated_ogms)) &&
451
	    (packet_len < BATADV_MAX_AGGREGATION_BYTES))
452
		skb_size = BATADV_MAX_AGGREGATION_BYTES;
453
	else
454 455 456
		skb_size = packet_len;

	skb_size += ETH_HLEN + NET_IP_ALIGN;
457

458
	forw_packet_aggr->skb = dev_alloc_skb(skb_size);
459 460 461 462 463 464
	if (!forw_packet_aggr->skb) {
		if (!own_packet)
			atomic_inc(&bat_priv->batman_queue_left);
		kfree(forw_packet_aggr);
		goto out;
	}
465
	skb_reserve(forw_packet_aggr->skb, ETH_HLEN + NET_IP_ALIGN);
466 467 468 469 470 471 472 473 474 475

	INIT_HLIST_NODE(&forw_packet_aggr->list);

	skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
	forw_packet_aggr->packet_len = packet_len;
	memcpy(skb_buff, packet_buff, packet_len);

	forw_packet_aggr->own = own_packet;
	forw_packet_aggr->if_incoming = if_incoming;
	forw_packet_aggr->num_packets = 0;
476
	forw_packet_aggr->direct_link_flags = BATADV_NO_FLAGS;
477 478 479 480 481 482 483 484 485 486 487 488 489
	forw_packet_aggr->send_time = send_time;

	/* save packet direct link flag status */
	if (direct_link)
		forw_packet_aggr->direct_link_flags |= 1;

	/* add new packet to packet list */
	spin_lock_bh(&bat_priv->forw_bat_list_lock);
	hlist_add_head(&forw_packet_aggr->list, &bat_priv->forw_bat_list);
	spin_unlock_bh(&bat_priv->forw_bat_list_lock);

	/* start timer for this packet */
	INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work,
490
			  batadv_send_outstanding_bat_ogm_packet);
491
	queue_delayed_work(batadv_event_workqueue,
492 493 494 495 496
			   &forw_packet_aggr->delayed_work,
			   send_time - jiffies);

	return;
out:
497
	batadv_hardif_free_ref(if_incoming);
498 499 500
}

/* aggregate a new packet into the existing ogm packet */
501
static void batadv_iv_ogm_aggregate(struct batadv_forw_packet *forw_packet_aggr,
502 503
				    const unsigned char *packet_buff,
				    int packet_len, bool direct_link)
504 505
{
	unsigned char *skb_buff;
506
	unsigned long new_direct_link_flag;
507 508 509 510 511 512 513

	skb_buff = skb_put(forw_packet_aggr->skb, packet_len);
	memcpy(skb_buff, packet_buff, packet_len);
	forw_packet_aggr->packet_len += packet_len;
	forw_packet_aggr->num_packets++;

	/* save packet direct link flag status */
514 515 516 517
	if (direct_link) {
		new_direct_link_flag = BIT(forw_packet_aggr->num_packets);
		forw_packet_aggr->direct_link_flags |= new_direct_link_flag;
	}
518 519
}

520
static void batadv_iv_ogm_queue_add(struct batadv_priv *bat_priv,
521 522
				    unsigned char *packet_buff,
				    int packet_len,
523
				    struct batadv_hard_iface *if_incoming,
524
				    int own_packet, unsigned long send_time)
525
{
526
	/* _aggr -> pointer to the packet we want to aggregate with
527 528
	 * _pos -> pointer to the position in the queue
	 */
529 530
	struct batadv_forw_packet *forw_packet_aggr = NULL;
	struct batadv_forw_packet *forw_packet_pos = NULL;
531
	struct batadv_ogm_packet *batadv_ogm_packet;
532
	bool direct_link;
533
	unsigned long max_aggregation_jiffies;
534

535 536
	batadv_ogm_packet = (struct batadv_ogm_packet *)packet_buff;
	direct_link = batadv_ogm_packet->flags & BATADV_DIRECTLINK ? 1 : 0;
537
	max_aggregation_jiffies = msecs_to_jiffies(BATADV_MAX_AGGREGATION_MS);
538 539 540 541 542

	/* find position for the packet in the forward queue */
	spin_lock_bh(&bat_priv->forw_bat_list_lock);
	/* own packets are not to be aggregated */
	if ((atomic_read(&bat_priv->aggregated_ogms)) && (!own_packet)) {
543
		hlist_for_each_entry(forw_packet_pos,
544
				     &bat_priv->forw_bat_list, list) {
545
			if (batadv_iv_ogm_can_aggregate(batadv_ogm_packet,
546 547 548 549
							bat_priv, packet_len,
							send_time, direct_link,
							if_incoming,
							forw_packet_pos)) {
550 551 552 553 554 555 556
				forw_packet_aggr = forw_packet_pos;
				break;
			}
		}
	}

	/* nothing to aggregate with - either aggregation disabled or no
557 558
	 * suitable aggregation packet found
	 */
559 560 561 562
	if (!forw_packet_aggr) {
		/* the following section can run without the lock */
		spin_unlock_bh(&bat_priv->forw_bat_list_lock);

563
		/* if we could not aggregate this packet with one of the others
564 565 566
		 * we hold it back for a while, so that it might be aggregated
		 * later on
		 */
567 568
		if (!own_packet && atomic_read(&bat_priv->aggregated_ogms))
			send_time += max_aggregation_jiffies;
569

570 571 572
		batadv_iv_ogm_aggregate_new(packet_buff, packet_len,
					    send_time, direct_link,
					    if_incoming, own_packet);
573
	} else {
574 575
		batadv_iv_ogm_aggregate(forw_packet_aggr, packet_buff,
					packet_len, direct_link);
576 577 578 579
		spin_unlock_bh(&bat_priv->forw_bat_list_lock);
	}
}

580
static void batadv_iv_ogm_forward(struct batadv_orig_node *orig_node,
581
				  const struct ethhdr *ethhdr,
582
				  struct batadv_ogm_packet *batadv_ogm_packet,
583 584
				  bool is_single_hop_neigh,
				  bool is_from_best_next_hop,
585
				  struct batadv_hard_iface *if_incoming)
586
{
587
	struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
588 589
	uint8_t tt_num_changes;

590
	if (batadv_ogm_packet->header.ttl <= 1) {
591
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv, "ttl exceeded\n");
592 593 594
		return;
	}

595 596 597 598 599 600 601 602
	if (!is_from_best_next_hop) {
		/* Mark the forwarded packet when it is not coming from our
		 * best next hop. We still need to forward the packet for our
		 * neighbor link quality detection to work in case the packet
		 * originated from a single hop neighbor. Otherwise we can
		 * simply drop the ogm.
		 */
		if (is_single_hop_neigh)
603
			batadv_ogm_packet->flags |= BATADV_NOT_BEST_NEXT_HOP;
604 605 606
		else
			return;
	}
607

608
	tt_num_changes = batadv_ogm_packet->tt_num_changes;
609

610 611
	batadv_ogm_packet->header.ttl--;
	memcpy(batadv_ogm_packet->prev_sender, ethhdr->h_source, ETH_ALEN);
612 613

	/* apply hop penalty */
614
	batadv_ogm_packet->tq = batadv_hop_penalty(batadv_ogm_packet->tq,
615
						   bat_priv);
616

617
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
618
		   "Forwarding packet: tq: %i, ttl: %i\n",
619
		   batadv_ogm_packet->tq, batadv_ogm_packet->header.ttl);
620 621

	/* switch of primaries first hop flag when forwarding */
622
	batadv_ogm_packet->flags &= ~BATADV_PRIMARIES_FIRST_HOP;
623
	if (is_single_hop_neigh)
624
		batadv_ogm_packet->flags |= BATADV_DIRECTLINK;
625
	else
626
		batadv_ogm_packet->flags &= ~BATADV_DIRECTLINK;
627

628
	batadv_iv_ogm_queue_add(bat_priv, (unsigned char *)batadv_ogm_packet,
629
				BATADV_OGM_HLEN + batadv_tt_len(tt_num_changes),
630
				if_incoming, 0, batadv_iv_ogm_fwd_send_time());
631 632
}

633
static void batadv_iv_ogm_schedule(struct batadv_hard_iface *hard_iface)
634
{
635
	struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
636
	unsigned char **ogm_buff = &hard_iface->bat_iv.ogm_buff;
637
	struct batadv_ogm_packet *batadv_ogm_packet;
638
	struct batadv_hard_iface *primary_if;
639
	int *ogm_buff_len = &hard_iface->bat_iv.ogm_buff_len;
640
	int vis_server, tt_num_changes = 0;
641 642
	uint32_t seqno;
	uint8_t bandwidth;
643 644

	vis_server = atomic_read(&bat_priv->vis_mode);
645
	primary_if = batadv_primary_if_get_selected(bat_priv);
646

647
	if (hard_iface == primary_if)
648 649
		tt_num_changes = batadv_tt_append_diff(bat_priv, ogm_buff,
						       ogm_buff_len,
650
						       BATADV_OGM_HLEN);
651

652
	batadv_ogm_packet = (struct batadv_ogm_packet *)(*ogm_buff);
653 654

	/* change sequence number to network order */
655
	seqno = (uint32_t)atomic_read(&hard_iface->bat_iv.ogm_seqno);
656
	batadv_ogm_packet->seqno = htonl(seqno);
657
	atomic_inc(&hard_iface->bat_iv.ogm_seqno);
658

659 660
	batadv_ogm_packet->ttvn = atomic_read(&bat_priv->tt.vn);
	batadv_ogm_packet->tt_crc = htons(bat_priv->tt.local_crc);
661
	if (tt_num_changes >= 0)
662
		batadv_ogm_packet->tt_num_changes = tt_num_changes;
663

664
	if (vis_server == BATADV_VIS_TYPE_SERVER_SYNC)
665
		batadv_ogm_packet->flags |= BATADV_VIS_SERVER;
666
	else
667
		batadv_ogm_packet->flags &= ~BATADV_VIS_SERVER;
668

669 670 671 672 673
	if (hard_iface == primary_if &&
	    atomic_read(&bat_priv->gw_mode) == BATADV_GW_MODE_SERVER) {
		bandwidth = (uint8_t)atomic_read(&bat_priv->gw_bandwidth);
		batadv_ogm_packet->gw_flags = bandwidth;
	} else {
674
		batadv_ogm_packet->gw_flags = BATADV_NO_FLAGS;
675
	}
676

677
	batadv_slide_own_bcast_window(hard_iface);
678 679
	batadv_iv_ogm_queue_add(bat_priv, hard_iface->bat_iv.ogm_buff,
				hard_iface->bat_iv.ogm_buff_len, hard_iface, 1,
680
				batadv_iv_ogm_emit_send_time(bat_priv));
681 682

	if (primary_if)
683
		batadv_hardif_free_ref(primary_if);
684 685
}

686
static void
687 688
batadv_iv_ogm_orig_update(struct batadv_priv *bat_priv,
			  struct batadv_orig_node *orig_node,
689
			  const struct ethhdr *ethhdr,
690
			  const struct batadv_ogm_packet *batadv_ogm_packet,
691
			  struct batadv_hard_iface *if_incoming,
692 693
			  const unsigned char *tt_buff,
			  int is_duplicate)
694
{
695 696 697
	struct batadv_neigh_node *neigh_node = NULL, *tmp_neigh_node = NULL;
	struct batadv_neigh_node *router = NULL;
	struct batadv_orig_node *orig_node_tmp;
698
	int if_num;
699
	uint8_t sum_orig, sum_neigh;
700
	uint8_t *neigh_addr;
701
	uint8_t tq_avg;
702

703
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
704
		   "update_originator(): Searching and updating originator entry of received packet\n");
705 706

	rcu_read_lock();
707
	hlist_for_each_entry_rcu(tmp_neigh_node,
708
				 &orig_node->neigh_list, list) {
709 710 711 712
		neigh_addr = tmp_neigh_node->addr;
		if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
		    tmp_neigh_node->if_incoming == if_incoming &&
		    atomic_inc_not_zero(&tmp_neigh_node->refcount)) {
713
			if (WARN(neigh_node, "too many matching neigh_nodes"))
714
				batadv_neigh_node_free_ref(neigh_node);
715 716 717 718 719 720 721
			neigh_node = tmp_neigh_node;
			continue;
		}

		if (is_duplicate)
			continue;

722
		spin_lock_bh(&tmp_neigh_node->lq_update_lock);
723 724
		batadv_ring_buffer_set(tmp_neigh_node->tq_recv,
				       &tmp_neigh_node->tq_index, 0);
725 726
		tq_avg = batadv_ring_buffer_avg(tmp_neigh_node->tq_recv);
		tmp_neigh_node->tq_avg = tq_avg;
727
		spin_unlock_bh(&tmp_neigh_node->lq_update_lock);
728 729 730
	}

	if (!neigh_node) {
731
		struct batadv_orig_node *orig_tmp;
732

733
		orig_tmp = batadv_get_orig_node(bat_priv, ethhdr->h_source);
734 735 736
		if (!orig_tmp)
			goto unlock;

737 738
		neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
						     ethhdr->h_source,
739
						     orig_node, orig_tmp);
740

741
		batadv_orig_node_free_ref(orig_tmp);
742 743 744
		if (!neigh_node)
			goto unlock;
	} else
745
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
746
			   "Updating existing last-hop neighbor of originator\n");
747 748 749

	rcu_read_unlock();

750
	orig_node->flags = batadv_ogm_packet->flags;
751
	neigh_node->last_seen = jiffies;
752

753
	spin_lock_bh(&neigh_node->lq_update_lock);
754 755
	batadv_ring_buffer_set(neigh_node->tq_recv,
			       &neigh_node->tq_index,
756
			       batadv_ogm_packet->tq);
757
	neigh_node->tq_avg = batadv_ring_buffer_avg(neigh_node->tq_recv);
758
	spin_unlock_bh(&neigh_node->lq_update_lock);
759 760

	if (!is_duplicate) {
761 762
		orig_node->last_ttl = batadv_ogm_packet->header.ttl;
		neigh_node->last_ttl = batadv_ogm_packet->header.ttl;
763 764
	}

765
	batadv_bonding_candidate_add(orig_node, neigh_node);
766 767

	/* if this neighbor already is our next hop there is nothing
768 769
	 * to change
	 */
770
	router = batadv_orig_node_get_router(orig_node);
771 772 773 774 775 776 777 778
	if (router == neigh_node)
		goto update_tt;

	/* if this neighbor does not offer a better TQ we won't consider it */
	if (router && (router->tq_avg > neigh_node->tq_avg))
		goto update_tt;

	/* if the TQ is the same and the link not more symmetric we
779 780
	 * won't consider it either
	 */
781 782 783
	if (router && (neigh_node->tq_avg == router->tq_avg)) {
		orig_node_tmp = router->orig_node;
		spin_lock_bh(&orig_node_tmp->ogm_cnt_lock);
784 785
		if_num = router->if_incoming->if_num;
		sum_orig = orig_node_tmp->bcast_own_sum[if_num];
786 787 788 789
		spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock);

		orig_node_tmp = neigh_node->orig_node;
		spin_lock_bh(&orig_node_tmp->ogm_cnt_lock);
790 791
		if_num = neigh_node->if_incoming->if_num;
		sum_neigh = orig_node_tmp->bcast_own_sum[if_num];
792 793
		spin_unlock_bh(&orig_node_tmp->ogm_cnt_lock);

794
		if (sum_orig >= sum_neigh)
795 796 797
			goto update_tt;
	}

798
	batadv_update_route(bat_priv, orig_node, neigh_node);
799 800 801

update_tt:
	/* I have to check for transtable changes only if the OGM has been
802 803
	 * sent through a primary interface
	 */
804 805 806
	if (((batadv_ogm_packet->orig != ethhdr->h_source) &&
	     (batadv_ogm_packet->header.ttl > 2)) ||
	    (batadv_ogm_packet->flags & BATADV_PRIMARIES_FIRST_HOP))
807
		batadv_tt_update_orig(bat_priv, orig_node, tt_buff,
808 809 810
				      batadv_ogm_packet->tt_num_changes,
				      batadv_ogm_packet->ttvn,
				      ntohs(batadv_ogm_packet->tt_crc));
811

812
	if (orig_node->gw_flags != batadv_ogm_packet->gw_flags)
813
		batadv_gw_node_update(bat_priv, orig_node,
814
				      batadv_ogm_packet->gw_flags);
815

816
	orig_node->gw_flags = batadv_ogm_packet->gw_flags;
817 818 819

	/* restart gateway selection if fast or late switching was enabled */
	if ((orig_node->gw_flags) &&
820
	    (atomic_read(&bat_priv->gw_mode) == BATADV_GW_MODE_CLIENT) &&
821
	    (atomic_read(&bat_priv->gw_sel_class) > 2))
822
		batadv_gw_check_election(bat_priv, orig_node);
823 824 825 826 827 828 829

	goto out;

unlock:
	rcu_read_unlock();
out:
	if (neigh_node)
830
		batadv_neigh_node_free_ref(neigh_node);
831
	if (router)
832
		batadv_neigh_node_free_ref(router);
833 834
}

835 836
static int batadv_iv_ogm_calc_tq(struct batadv_orig_node *orig_node,
				 struct batadv_orig_node *orig_neigh_node,
837
				 struct batadv_ogm_packet *batadv_ogm_packet,
838
				 struct batadv_hard_iface *if_incoming)
839
{
840 841
	struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
	struct batadv_neigh_node *neigh_node = NULL, *tmp_neigh_node;
842
	uint8_t total_count;
843 844 845 846
	uint8_t orig_eq_count, neigh_rq_count, neigh_rq_inv, tq_own;
	unsigned int neigh_rq_inv_cube, neigh_rq_max_cube;
	int tq_asym_penalty, inv_asym_penalty, ret = 0;
	unsigned int combined_tq;
847 848 849

	/* find corresponding one hop neighbor */
	rcu_read_lock();
850
	hlist_for_each_entry_rcu(tmp_neigh_node,
851
				 &orig_neigh_node->neigh_list, list) {
852 853
		if (!batadv_compare_eth(tmp_neigh_node->addr,
					orig_neigh_node->orig))
854 855 856 857 858 859 860 861 862 863 864 865 866 867
			continue;

		if (tmp_neigh_node->if_incoming != if_incoming)
			continue;

		if (!atomic_inc_not_zero(&tmp_neigh_node->refcount))
			continue;

		neigh_node = tmp_neigh_node;
		break;
	}
	rcu_read_unlock();

	if (!neigh_node)
868 869 870
		neigh_node = batadv_iv_ogm_neigh_new(if_incoming,
						     orig_neigh_node->orig,
						     orig_neigh_node,
871
						     orig_neigh_node);
872 873 874 875

	if (!neigh_node)
		goto out;

876
	/* if orig_node is direct neighbor update neigh_node last_seen */
877
	if (orig_node == orig_neigh_node)
878
		neigh_node->last_seen = jiffies;
879

880
	orig_node->last_seen = jiffies;
881 882 883 884 885 886 887 888

	/* find packet count of corresponding one hop neighbor */
	spin_lock_bh(&orig_node->ogm_cnt_lock);
	orig_eq_count = orig_neigh_node->bcast_own_sum[if_incoming->if_num];
	neigh_rq_count = neigh_node->real_packet_count;
	spin_unlock_bh(&orig_node->ogm_cnt_lock);

	/* pay attention to not get a value bigger than 100 % */
889 890 891 892
	if (orig_eq_count > neigh_rq_count)
		total_count = neigh_rq_count;
	else
		total_count = orig_eq_count;
893

894 895 896
	/* if we have too few packets (too less data) we set tq_own to zero
	 * if we receive too few packets it is not considered bidirectional
	 */
897 898
	if (total_count < BATADV_TQ_LOCAL_BIDRECT_SEND_MINIMUM ||
	    neigh_rq_count < BATADV_TQ_LOCAL_BIDRECT_RECV_MINIMUM)
899 900 901 902
		tq_own = 0;
	else
		/* neigh_node->real_packet_count is never zero as we
		 * only purge old information when getting new
903 904
		 * information
		 */
905
		tq_own = (BATADV_TQ_MAX_VALUE * total_count) /	neigh_rq_count;
906

907
	/* 1 - ((1-x) ** 3), normalized to TQ_MAX_VALUE this does
908 909 910 911
	 * affect the nearly-symmetric links only a little, but
	 * punishes asymmetric links more.  This will give a value
	 * between 0 and TQ_MAX_VALUE
	 */
912 913 914 915 916 917 918 919 920
	neigh_rq_inv = BATADV_TQ_LOCAL_WINDOW_SIZE - neigh_rq_count;
	neigh_rq_inv_cube = neigh_rq_inv * neigh_rq_inv * neigh_rq_inv;
	neigh_rq_max_cube = BATADV_TQ_LOCAL_WINDOW_SIZE *
			    BATADV_TQ_LOCAL_WINDOW_SIZE *
			    BATADV_TQ_LOCAL_WINDOW_SIZE;
	inv_asym_penalty = BATADV_TQ_MAX_VALUE * neigh_rq_inv_cube;
	inv_asym_penalty /= neigh_rq_max_cube;
	tq_asym_penalty = BATADV_TQ_MAX_VALUE - inv_asym_penalty;

921
	combined_tq = batadv_ogm_packet->tq * tq_own * tq_asym_penalty;
922
	combined_tq /= BATADV_TQ_MAX_VALUE * BATADV_TQ_MAX_VALUE;
923
	batadv_ogm_packet->tq = combined_tq;
924

925
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
926 927 928
		   "bidirectional: orig = %-15pM neigh = %-15pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, total tq: %3i\n",
		   orig_node->orig, orig_neigh_node->orig, total_count,
		   neigh_rq_count, tq_own,
929
		   tq_asym_penalty, batadv_ogm_packet->tq);
930 931

	/* if link has the minimum required transmission quality
932 933
	 * consider it bidirectional
	 */
934
	if (batadv_ogm_packet->tq >= BATADV_TQ_TOTAL_BIDRECT_LIMIT)
935 936 937 938
		ret = 1;

out:
	if (neigh_node)
939
		batadv_neigh_node_free_ref(neigh_node);
940 941 942 943 944 945 946 947 948 949 950
	return ret;
}

/* processes a batman packet for all interfaces, adjusts the sequence number and
 * finds out whether it is a duplicate.
 * returns:
 *   1 the packet is a duplicate
 *   0 the packet has not yet been received
 *  -1 the packet is old and has been received while the seqno window
 *     was protected. Caller should drop it.
 */
951 952
static int
batadv_iv_ogm_update_seqnos(const struct ethhdr *ethhdr,
953
			    const struct batadv_ogm_packet *batadv_ogm_packet,
954
			    const struct batadv_hard_iface *if_incoming)
955
{
956 957 958
	struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
	struct batadv_orig_node *orig_node;
	struct batadv_neigh_node *tmp_neigh_node;
959 960 961 962
	int is_duplicate = 0;
	int32_t seq_diff;
	int need_update = 0;
	int set_mark, ret = -1;
963
	uint32_t seqno = ntohl(batadv_ogm_packet->seqno);
964
	uint8_t *neigh_addr;
965
	uint8_t packet_count;
966

967
	orig_node = batadv_get_orig_node(bat_priv, batadv_ogm_packet->orig);
968 969 970 971
	if (!orig_node)
		return 0;

	spin_lock_bh(&orig_node->ogm_cnt_lock);
972
	seq_diff = seqno - orig_node->last_real_seqno;
973 974

	/* signalize caller that the packet is to be dropped. */
975
	if (!hlist_empty(&orig_node->neigh_list) &&
976 977
	    batadv_window_protected(bat_priv, seq_diff,
				    &orig_node->batman_seqno_reset))
978 979 980
		goto out;

	rcu_read_lock();
981
	hlist_for_each_entry_rcu(tmp_neigh_node,
982
				 &orig_node->neigh_list, list) {
983 984 985
		is_duplicate |= batadv_test_bit(tmp_neigh_node->real_bits,
						orig_node->last_real_seqno,
						seqno);
986

987 988 989
		neigh_addr = tmp_neigh_node->addr;
		if (batadv_compare_eth(neigh_addr, ethhdr->h_source) &&
		    tmp_neigh_node->if_incoming == if_incoming)
990 991 992 993 994
			set_mark = 1;
		else
			set_mark = 0;

		/* if the window moved, set the update flag. */
995 996 997
		need_update |= batadv_bit_get_packet(bat_priv,
						     tmp_neigh_node->real_bits,
						     seq_diff, set_mark);
998

999 1000 1001
		packet_count = bitmap_weight(tmp_neigh_node->real_bits,
					     BATADV_TQ_LOCAL_WINDOW_SIZE);
		tmp_neigh_node->real_packet_count = packet_count;
1002 1003 1004 1005
	}
	rcu_read_unlock();

	if (need_update) {
1006
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1007 1008
			   "updating last_seqno: old %u, new %u\n",
			   orig_node->last_real_seqno, seqno);
1009
		orig_node->last_real_seqno = seqno;
1010 1011 1012 1013 1014 1015
	}

	ret = is_duplicate;

out:
	spin_unlock_bh(&orig_node->ogm_cnt_lock);
1016
	batadv_orig_node_free_ref(orig_node);
1017 1018 1019
	return ret;
}

1020
static void batadv_iv_ogm_process(const struct ethhdr *ethhdr,
1021
				  struct batadv_ogm_packet *batadv_ogm_packet,
1022
				  const unsigned char *tt_buff,
1023
				  struct batadv_hard_iface *if_incoming)
1024
{
1025 1026 1027 1028 1029
	struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
	struct batadv_hard_iface *hard_iface;
	struct batadv_orig_node *orig_neigh_node, *orig_node;
	struct batadv_neigh_node *router = NULL, *router_router = NULL;
	struct batadv_neigh_node *orig_neigh_router = NULL;
1030 1031
	int has_directlink_flag;
	int is_my_addr = 0, is_my_orig = 0, is_my_oldorig = 0;
1032
	int is_bidirect;
1033
	bool is_single_hop_neigh = false;
1034
	bool is_from_best_next_hop = false;
1035
	int is_duplicate, sameseq, simlar_ttl;
1036
	uint32_t if_incoming_seqno;
1037
	uint8_t *prev_sender;
1038 1039 1040 1041 1042 1043 1044 1045 1046

	/* Silently drop when the batman packet is actually not a
	 * correct packet.
	 *
	 * This might happen if a packet is padded (e.g. Ethernet has a
	 * minimum frame length of 64 byte) and the aggregation interprets
	 * it as an additional length.
	 *
	 * TODO: A more sane solution would be to have a bit in the
1047
	 * batadv_ogm_packet to detect whether the packet is the last
1048 1049 1050
	 * packet in an aggregation.  Here we expect that the padding
	 * is always zero (or not 0x01)
	 */
1051
	if (batadv_ogm_packet->header.packet_type != BATADV_IV_OGM)
1052 1053 1054
		return;

	/* could be changed by schedule_own_packet() */
1055
	if_incoming_seqno = atomic_read(&if_incoming->bat_iv.ogm_seqno);
1056

1057
	if (batadv_ogm_packet->flags & BATADV_DIRECTLINK)
1058 1059 1060
		has_directlink_flag = 1;
	else
		has_directlink_flag = 0;
1061

1062
	if (batadv_compare_eth(ethhdr->h_source, batadv_ogm_packet->orig))
1063
		is_single_hop_neigh = true;
1064

1065
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1066
		   "Received BATMAN packet via NB: %pM, IF: %s [%pM] (from OG: %pM, via prev OG: %pM, seqno %u, ttvn %u, crc %#.4x, changes %u, tq %d, TTL %d, V %d, IDF %d)\n",
1067
		   ethhdr->h_source, if_incoming->net_dev->name,
1068 1069 1070 1071 1072 1073 1074
		   if_incoming->net_dev->dev_addr, batadv_ogm_packet->orig,
		   batadv_ogm_packet->prev_sender,
		   ntohl(batadv_ogm_packet->seqno), batadv_ogm_packet->ttvn,
		   ntohs(batadv_ogm_packet->tt_crc),
		   batadv_ogm_packet->tt_num_changes, batadv_ogm_packet->tq,
		   batadv_ogm_packet->header.ttl,
		   batadv_ogm_packet->header.version, has_directlink_flag);
1075 1076

	rcu_read_lock();
1077
	list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
1078
		if (hard_iface->if_status != BATADV_IF_ACTIVE)
1079 1080 1081 1082 1083
			continue;

		if (hard_iface->soft_iface != if_incoming->soft_iface)
			continue;

1084 1085
		if (batadv_compare_eth(ethhdr->h_source,
				       hard_iface->net_dev->dev_addr))
1086 1087
			is_my_addr = 1;

1088
		if (batadv_compare_eth(batadv_ogm_packet->orig,
1089
				       hard_iface->net_dev->dev_addr))
1090 1091
			is_my_orig = 1;

1092
		if (batadv_compare_eth(batadv_ogm_packet->prev_sender,
1093
				       hard_iface->net_dev->dev_addr))
1094 1095 1096 1097 1098
			is_my_oldorig = 1;
	}
	rcu_read_unlock();

	if (is_my_addr) {
1099
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1100 1101
			   "Drop packet: received my own broadcast (sender: %pM)\n",
			   ethhdr->h_source);
1102 1103 1104 1105 1106 1107
		return;
	}

	if (is_my_orig) {
		unsigned long *word;
		int offset;
1108
		int32_t bit_pos;
1109 1110
		int16_t if_num;
		uint8_t *weight;
1111

1112 1113
		orig_neigh_node = batadv_get_orig_node(bat_priv,
						       ethhdr->h_source);
1114 1115 1116 1117
		if (!orig_neigh_node)
			return;

		/* neighbor has to indicate direct link and it has to
1118 1119 1120
		 * come via the corresponding interface
		 * save packet seqno for bidirectional check
		 */
1121
		if (has_directlink_flag &&
1122
		    batadv_compare_eth(if_incoming->net_dev->dev_addr,
1123
				       batadv_ogm_packet->orig)) {
1124 1125
			if_num = if_incoming->if_num;
			offset = if_num * BATADV_NUM_WORDS;
1126 1127 1128

			spin_lock_bh(&orig_neigh_node->ogm_cnt_lock);
			word = &(orig_neigh_node->bcast_own[offset]);
1129
			bit_pos = if_incoming_seqno - 2;
1130
			bit_pos -= ntohl(batadv_ogm_packet->seqno);
1131
			batadv_set_bit(word, bit_pos);
1132 1133 1134
			weight = &orig_neigh_node->bcast_own_sum[if_num];
			*weight = bitmap_weight(word,
						BATADV_TQ_LOCAL_WINDOW_SIZE);
1135 1136 1137
			spin_unlock_bh(&orig_neigh_node->ogm_cnt_lock);
		}

1138
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1139
			   "Drop packet: originator packet from myself (via neighbor)\n");
1140
		batadv_orig_node_free_ref(orig_neigh_node);
1141 1142 1143 1144
		return;
	}

	if (is_my_oldorig) {
1145
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1146 1147
			   "Drop packet: ignoring all rebroadcast echos (sender: %pM)\n",
			   ethhdr->h_source);
1148 1149 1150
		return;
	}

1151
	if (batadv_ogm_packet->flags & BATADV_NOT_BEST_NEXT_HOP) {
1152
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1153 1154
			   "Drop packet: ignoring all packets not forwarded from the best next hop (sender: %pM)\n",
			   ethhdr->h_source);
1155 1156 1157
		return;
	}

1158
	orig_node = batadv_get_orig_node(bat_priv, batadv_ogm_packet->orig);
1159 1160 1161
	if (!orig_node)
		return;

1162
	is_duplicate = batadv_iv_ogm_update_seqnos(ethhdr, batadv_ogm_packet,
1163
						   if_incoming);
1164 1165

	if (is_duplicate == -1) {
1166
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1167 1168
			   "Drop packet: packet within seqno protection time (sender: %pM)\n",
			   ethhdr->h_source);
1169 1170 1171
		goto out;
	}

1172
	if (batadv_ogm_packet->tq == 0) {
1173
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1174
			   "Drop packet: originator packet with tq equal 0\n");
1175 1176 1177
		goto out;
	}

1178
	router = batadv_orig_node_get_router(orig_node);
1179
	if (router)
1180
		router_router = batadv_orig_node_get_router(router->orig_node);
1181

1182
	if ((router && router->tq_avg != 0) &&
1183
	    (batadv_compare_eth(router->addr, ethhdr->h_source)))
1184 1185
		is_from_best_next_hop = true;

1186
	prev_sender = batadv_ogm_packet->prev_sender;
1187 1188
	/* avoid temporary routing loops */
	if (router && router_router &&
1189
	    (batadv_compare_eth(router->addr, prev_sender)) &&
1190
	    !(batadv_compare_eth(batadv_ogm_packet->orig, prev_sender)) &&
1191
	    (batadv_compare_eth(router->addr, router_router->addr))) {
1192
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1193 1194
			   "Drop packet: ignoring all rebroadcast packets that may make me loop (sender: %pM)\n",
			   ethhdr->h_source);
1195 1196 1197 1198
		goto out;
	}

	/* if sender is a direct neighbor the sender mac equals
1199 1200
	 * originator mac
	 */
1201 1202 1203 1204 1205 1206
	if (is_single_hop_neigh)
		orig_neigh_node = orig_node;
	else
		orig_neigh_node = batadv_get_orig_node(bat_priv,
						       ethhdr->h_source);

1207 1208 1209
	if (!orig_neigh_node)
		goto out;

1210 1211 1212 1213
	/* Update nc_nodes of the originator */
	batadv_nc_update_nc_node(bat_priv, orig_node, orig_neigh_node,
				 batadv_ogm_packet, is_single_hop_neigh);

1214
	orig_neigh_router = batadv_orig_node_get_router(orig_neigh_node);
1215 1216

	/* drop packet if sender is not a direct neighbor and if we
1217 1218
	 * don't route towards it
	 */
1219
	if (!is_single_hop_neigh && (!orig_neigh_router)) {
1220
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1221
			   "Drop packet: OGM via unknown neighbor!\n");
1222 1223 1224
		goto out_neigh;
	}

1225
	is_bidirect = batadv_iv_ogm_calc_tq(orig_node, orig_neigh_node,
1226
					    batadv_ogm_packet, if_incoming);
1227

1228
	batadv_bonding_save_primary(orig_node, orig_neigh_node,
1229
				    batadv_ogm_packet);
1230 1231

	/* update ranking if it is not a duplicate or has the same
1232 1233
	 * seqno and similar ttl as the non-duplicate
	 */
1234 1235
	sameseq = orig_node->last_real_seqno == ntohl(batadv_ogm_packet->seqno);
	simlar_ttl = orig_node->last_ttl - 3 <= batadv_ogm_packet->header.ttl;
1236 1237
	if (is_bidirect && (!is_duplicate || (sameseq && simlar_ttl)))
		batadv_iv_ogm_orig_update(bat_priv, orig_node, ethhdr,
1238
					  batadv_ogm_packet, if_incoming,
1239
					  tt_buff, is_duplicate);
1240 1241 1242 1243

	/* is single hop (direct) neighbor */
	if (is_single_hop_neigh) {
		/* mark direct link on incoming interface */
1244
		batadv_iv_ogm_forward(orig_node, ethhdr, batadv_ogm_packet,
1245 1246
				      is_single_hop_neigh,
				      is_from_best_next_hop, if_incoming);
1247

1248
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1249
			   "Forwarding packet: rebroadcast neighbor packet with direct link flag\n");
1250 1251 1252 1253
		goto out_neigh;
	}

	/* multihop originator */
1254
	if (!is_bidirect) {
1255
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1256
			   "Drop packet: not received via bidirectional link\n");
1257 1258 1259 1260
		goto out_neigh;
	}

	if (is_duplicate) {
1261
		batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1262
			   "Drop packet: duplicate packet received\n");
1263 1264 1265
		goto out_neigh;
	}

1266
	batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1267
		   "Forwarding packet: rebroadcast originator packet\n");
1268
	batadv_iv_ogm_forward(orig_node, ethhdr, batadv_ogm_packet,
1269 1270
			      is_single_hop_neigh, is_from_best_next_hop,
			      if_incoming);
1271 1272 1273

out_neigh:
	if ((orig_neigh_node) && (!is_single_hop_neigh))
1274
		batadv_orig_node_free_ref(orig_neigh_node);
1275 1276
out:
	if (router)
1277
		batadv_neigh_node_free_ref(router);
1278
	if (router_router)
1279
		batadv_neigh_node_free_ref(router_router);
1280
	if (orig_neigh_router)
1281
		batadv_neigh_node_free_ref(orig_neigh_router);
1282

1283
	batadv_orig_node_free_ref(orig_node);
1284 1285
}

1286
static int batadv_iv_ogm_receive(struct sk_buff *skb,
1287
				 struct batadv_hard_iface *if_incoming)
1288
{
1289
	struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
1290
	struct batadv_ogm_packet *batadv_ogm_packet;
1291 1292 1293
	struct ethhdr *ethhdr;
	int buff_pos = 0, packet_len;
	unsigned char *tt_buff, *packet_buff;
1294
	bool ret;
1295
	uint8_t *packet_pos;
1296

1297
	ret = batadv_check_management_packet(skb, if_incoming, BATADV_OGM_HLEN);
1298 1299
	if (!ret)
		return NET_RX_DROP;
1300

1301 1302 1303
	/* did we receive a B.A.T.M.A.N. IV OGM packet on an interface
	 * that does not have B.A.T.M.A.N. IV enabled ?
	 */
1304
	if (bat_priv->bat_algo_ops->bat_ogm_emit != batadv_iv_ogm_emit)
1305 1306
		return NET_RX_DROP;

1307 1308
	batadv_inc_counter(bat_priv, BATADV_CNT_MGMT_RX);
	batadv_add_counter(bat_priv, BATADV_CNT_MGMT_RX_BYTES,
1309 1310
			   skb->len + ETH_HLEN);

1311
	packet_len = skb_headlen(skb);
1312
	ethhdr = eth_hdr(skb);
1313
	packet_buff = skb->data;
1314
	batadv_ogm_packet = (struct batadv_ogm_packet *)packet_buff;
1315 1316

	/* unpack the aggregated packets and process them one by one */
1317 1318
	while (batadv_iv_ogm_aggr_packet(buff_pos, packet_len,
					 batadv_ogm_packet->tt_num_changes)) {
1319
		tt_buff = packet_buff + buff_pos + BATADV_OGM_HLEN;
1320

1321
		batadv_iv_ogm_process(ethhdr, batadv_ogm_packet, tt_buff,
1322
				      if_incoming);
1323

1324
		buff_pos += BATADV_OGM_HLEN;
1325
		buff_pos += batadv_tt_len(batadv_ogm_packet->tt_num_changes);
1326

1327 1328
		packet_pos = packet_buff + buff_pos;
		batadv_ogm_packet = (struct batadv_ogm_packet *)packet_pos;
1329
	}
1330 1331 1332

	kfree_skb(skb);
	return NET_RX_SUCCESS;
1333
}
1334

1335
static struct batadv_algo_ops batadv_batman_iv __read_mostly = {
1336
	.name = "BATMAN_IV",
1337 1338 1339 1340 1341 1342
	.bat_iface_enable = batadv_iv_ogm_iface_enable,
	.bat_iface_disable = batadv_iv_ogm_iface_disable,
	.bat_iface_update_mac = batadv_iv_ogm_iface_update_mac,
	.bat_primary_iface_set = batadv_iv_ogm_primary_iface_set,
	.bat_ogm_schedule = batadv_iv_ogm_schedule,
	.bat_ogm_emit = batadv_iv_ogm_emit,
1343 1344
};

1345
int __init batadv_iv_init(void)
1346
{
1347 1348 1349
	int ret;

	/* batman originator packet */
1350 1351
	ret = batadv_recv_handler_register(BATADV_IV_OGM,
					   batadv_iv_ogm_receive);
1352 1353 1354
	if (ret < 0)
		goto out;

1355
	ret = batadv_algo_register(&batadv_batman_iv);
1356 1357 1358 1359 1360 1361
	if (ret < 0)
		goto handler_unregister;

	goto out;

handler_unregister:
1362
	batadv_recv_handler_unregister(BATADV_IV_OGM);
1363 1364
out:
	return ret;
1365
}