blob: 973982414d58559c3ac009f2fb9b2db60a4221ea [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2006-2013 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Simon Wunderlich, Marek Lindner
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#include "main.h"
21#include "bitarray.h"
22
23#include <linux/bitops.h>
24
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000025/* shift the packet array by n places. */
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020026static void batadv_bitmap_shift_left(unsigned long *seq_bits, int32_t n)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027{
Sven Eckelmann42d0b042012-06-03 22:19:17 +020028 if (n <= 0 || n >= BATADV_TQ_LOCAL_WINDOW_SIZE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000029 return;
30
Sven Eckelmann42d0b042012-06-03 22:19:17 +020031 bitmap_shift_left(seq_bits, seq_bits, n, BATADV_TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000032}
33
34
35/* receive and process one packet within the sequence number window.
36 *
37 * returns:
38 * 1 if the window was moved (either new or very old)
39 * 0 if the window was not moved/shifted.
40 */
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020041int batadv_bit_get_packet(void *priv, unsigned long *seq_bits,
42 int32_t seq_num_diff, int set_mark)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043{
Sven Eckelmann56303d32012-06-05 22:31:31 +020044 struct batadv_priv *bat_priv = priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000045
46 /* sequence number is slightly older. We already got a sequence number
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020047 * higher than this one, so we just mark it.
48 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020049 if (seq_num_diff <= 0 && seq_num_diff > -BATADV_TQ_LOCAL_WINDOW_SIZE) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020051 batadv_set_bit(seq_bits, -seq_num_diff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052 return 0;
53 }
54
55 /* sequence number is slightly newer, so we shift the window and
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020056 * set the mark if required
57 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020058 if (seq_num_diff > 0 && seq_num_diff < BATADV_TQ_LOCAL_WINDOW_SIZE) {
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020059 batadv_bitmap_shift_left(seq_bits, seq_num_diff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060
61 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020062 batadv_set_bit(seq_bits, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063 return 1;
64 }
65
66 /* sequence number is much newer, probably missed a lot of packets */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020067 if (seq_num_diff >= BATADV_TQ_LOCAL_WINDOW_SIZE &&
68 seq_num_diff < BATADV_EXPECTED_SEQNO_RANGE) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +020069 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020070 "We missed a lot of packets (%i) !\n",
71 seq_num_diff - 1);
Sven Eckelmann42d0b042012-06-03 22:19:17 +020072 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000073 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020074 batadv_set_bit(seq_bits, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000075 return 1;
76 }
77
78 /* received a much older packet. The other host either restarted
79 * or the old packet got delayed somewhere in the network. The
80 * packet should be dropped without calling this function if the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020081 * seqno window is protected.
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020082 *
83 * seq_num_diff <= -BATADV_TQ_LOCAL_WINDOW_SIZE
84 * or
85 * seq_num_diff >= BATADV_EXPECTED_SEQNO_RANGE
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020086 */
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020087 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
88 "Other host probably restarted!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000089
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020090 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
91 if (set_mark)
92 batadv_set_bit(seq_bits, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020094 return 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000095}