blob: 032271421a203162ba3b5c8766746c3feccbf877 [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2006-2016 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
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018#include "bitarray.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#include "main.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000020
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include <linux/bitmap.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000022
Sven Eckelmannba412082016-05-15 23:48:31 +020023#include "log.h"
24
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000025/* shift the packet array by n places. */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020026static void batadv_bitmap_shift_left(unsigned long *seq_bits, s32 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
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +010034/**
35 * batadv_bit_get_packet - receive and process one packet within the sequence
36 * number window
37 * @priv: the bat priv with all the soft interface information
38 * @seq_bits: pointer to the sequence number receive packet
39 * @seq_num_diff: difference between the current/received sequence number and
40 * the last sequence number
41 * @set_mark: whether this packet should be marked in seq_bits
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000042 *
Sven Eckelmann4b426b12016-02-22 21:02:39 +010043 * Return: true if the window was moved (either new or very old),
44 * false if the window was not moved/shifted.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000045 */
Sven Eckelmann4b426b12016-02-22 21:02:39 +010046bool batadv_bit_get_packet(void *priv, unsigned long *seq_bits,
47 s32 seq_num_diff, int set_mark)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000048{
Sven Eckelmann56303d32012-06-05 22:31:31 +020049 struct batadv_priv *bat_priv = priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050
51 /* sequence number is slightly older. We already got a sequence number
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020052 * higher than this one, so we just mark it.
53 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020054 if (seq_num_diff <= 0 && seq_num_diff > -BATADV_TQ_LOCAL_WINDOW_SIZE) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000055 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020056 batadv_set_bit(seq_bits, -seq_num_diff);
Sven Eckelmann4b426b12016-02-22 21:02:39 +010057 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000058 }
59
60 /* sequence number is slightly newer, so we shift the window and
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020061 * set the mark if required
62 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020063 if (seq_num_diff > 0 && seq_num_diff < BATADV_TQ_LOCAL_WINDOW_SIZE) {
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020064 batadv_bitmap_shift_left(seq_bits, seq_num_diff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000065
66 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020067 batadv_set_bit(seq_bits, 0);
Sven Eckelmann4b426b12016-02-22 21:02:39 +010068 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069 }
70
71 /* sequence number is much newer, probably missed a lot of packets */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020072 if (seq_num_diff >= BATADV_TQ_LOCAL_WINDOW_SIZE &&
73 seq_num_diff < BATADV_EXPECTED_SEQNO_RANGE) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +020074 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020075 "We missed a lot of packets (%i) !\n",
76 seq_num_diff - 1);
Sven Eckelmann42d0b042012-06-03 22:19:17 +020077 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000078 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020079 batadv_set_bit(seq_bits, 0);
Sven Eckelmann4b426b12016-02-22 21:02:39 +010080 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000081 }
82
83 /* received a much older packet. The other host either restarted
84 * or the old packet got delayed somewhere in the network. The
85 * packet should be dropped without calling this function if the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020086 * seqno window is protected.
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020087 *
88 * seq_num_diff <= -BATADV_TQ_LOCAL_WINDOW_SIZE
89 * or
90 * seq_num_diff >= BATADV_EXPECTED_SEQNO_RANGE
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020091 */
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020092 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
93 "Other host probably restarted!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000094
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020095 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
96 if (set_mark)
97 batadv_set_bit(seq_bits, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000098
Sven Eckelmann4b426b12016-02-22 21:02:39 +010099 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000100}