blob: 9586750022f506d2dd6656d8b38f709dc9ea11a3 [file] [log] [blame]
Simon Wunderliche19f9752014-01-04 18:04:25 +01001/* Copyright (C) 2006-2014 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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
18#include "main.h"
19#include "bitarray.h"
20
21#include <linux/bitops.h>
22
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000023/* shift the packet array by n places. */
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020024static void batadv_bitmap_shift_left(unsigned long *seq_bits, int32_t n)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000025{
Sven Eckelmann42d0b042012-06-03 22:19:17 +020026 if (n <= 0 || n >= BATADV_TQ_LOCAL_WINDOW_SIZE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027 return;
28
Sven Eckelmann42d0b042012-06-03 22:19:17 +020029 bitmap_shift_left(seq_bits, seq_bits, n, BATADV_TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000030}
31
32
33/* receive and process one packet within the sequence number window.
34 *
35 * returns:
36 * 1 if the window was moved (either new or very old)
37 * 0 if the window was not moved/shifted.
38 */
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020039int batadv_bit_get_packet(void *priv, unsigned long *seq_bits,
40 int32_t seq_num_diff, int set_mark)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000041{
Sven Eckelmann56303d32012-06-05 22:31:31 +020042 struct batadv_priv *bat_priv = priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043
44 /* sequence number is slightly older. We already got a sequence number
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020045 * higher than this one, so we just mark it.
46 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020047 if (seq_num_diff <= 0 && seq_num_diff > -BATADV_TQ_LOCAL_WINDOW_SIZE) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020049 batadv_set_bit(seq_bits, -seq_num_diff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050 return 0;
51 }
52
53 /* sequence number is slightly newer, so we shift the window and
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020054 * set the mark if required
55 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020056 if (seq_num_diff > 0 && seq_num_diff < BATADV_TQ_LOCAL_WINDOW_SIZE) {
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020057 batadv_bitmap_shift_left(seq_bits, seq_num_diff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000058
59 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020060 batadv_set_bit(seq_bits, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061 return 1;
62 }
63
64 /* sequence number is much newer, probably missed a lot of packets */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020065 if (seq_num_diff >= BATADV_TQ_LOCAL_WINDOW_SIZE &&
66 seq_num_diff < BATADV_EXPECTED_SEQNO_RANGE) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +020067 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020068 "We missed a lot of packets (%i) !\n",
69 seq_num_diff - 1);
Sven Eckelmann42d0b042012-06-03 22:19:17 +020070 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000071 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020072 batadv_set_bit(seq_bits, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000073 return 1;
74 }
75
76 /* received a much older packet. The other host either restarted
77 * or the old packet got delayed somewhere in the network. The
78 * packet should be dropped without calling this function if the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020079 * seqno window is protected.
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020080 *
81 * seq_num_diff <= -BATADV_TQ_LOCAL_WINDOW_SIZE
82 * or
83 * seq_num_diff >= BATADV_EXPECTED_SEQNO_RANGE
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020084 */
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020085 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
86 "Other host probably restarted!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000087
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020088 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
89 if (set_mark)
90 batadv_set_bit(seq_bits, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020092 return 1;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093}