blob: a296a4d851f5130dc24fa8e5fc324e4c6411fc8c [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001// SPDX-License-Identifier: GPL-2.0
Sven Eckelmann6b1aea82018-01-01 00:00:00 +01002/* Copyright (C) 2006-2018 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Simon Wunderlich, Marek Lindner
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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000017 */
18
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000019#include "bitarray.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020020#include "main.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000021
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020022#include <linux/bitmap.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000023
Sven Eckelmannba412082016-05-15 23:48:31 +020024#include "log.h"
25
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000026/* shift the packet array by n places. */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020027static void batadv_bitmap_shift_left(unsigned long *seq_bits, s32 n)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000028{
Sven Eckelmann42d0b042012-06-03 22:19:17 +020029 if (n <= 0 || n >= BATADV_TQ_LOCAL_WINDOW_SIZE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000030 return;
31
Sven Eckelmann42d0b042012-06-03 22:19:17 +020032 bitmap_shift_left(seq_bits, seq_bits, n, BATADV_TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000033}
34
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +010035/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +010036 * batadv_bit_get_packet() - receive and process one packet within the sequence
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +010037 * number window
38 * @priv: the bat priv with all the soft interface information
39 * @seq_bits: pointer to the sequence number receive packet
40 * @seq_num_diff: difference between the current/received sequence number and
41 * the last sequence number
42 * @set_mark: whether this packet should be marked in seq_bits
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000043 *
Sven Eckelmann4b426b12016-02-22 21:02:39 +010044 * Return: true if the window was moved (either new or very old),
45 * false if the window was not moved/shifted.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000046 */
Sven Eckelmann4b426b12016-02-22 21:02:39 +010047bool batadv_bit_get_packet(void *priv, unsigned long *seq_bits,
48 s32 seq_num_diff, int set_mark)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049{
Sven Eckelmann56303d32012-06-05 22:31:31 +020050 struct batadv_priv *bat_priv = priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000051
52 /* sequence number is slightly older. We already got a sequence number
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020053 * higher than this one, so we just mark it.
54 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020055 if (seq_num_diff <= 0 && seq_num_diff > -BATADV_TQ_LOCAL_WINDOW_SIZE) {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020057 batadv_set_bit(seq_bits, -seq_num_diff);
Sven Eckelmann4b426b12016-02-22 21:02:39 +010058 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000059 }
60
61 /* sequence number is slightly newer, so we shift the window and
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020062 * set the mark if required
63 */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020064 if (seq_num_diff > 0 && seq_num_diff < BATADV_TQ_LOCAL_WINDOW_SIZE) {
Sven Eckelmann0f5f93222012-05-12 02:09:25 +020065 batadv_bitmap_shift_left(seq_bits, seq_num_diff);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066
67 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020068 batadv_set_bit(seq_bits, 0);
Sven Eckelmann4b426b12016-02-22 21:02:39 +010069 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000070 }
71
72 /* sequence number is much newer, probably missed a lot of packets */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020073 if (seq_num_diff >= BATADV_TQ_LOCAL_WINDOW_SIZE &&
74 seq_num_diff < BATADV_EXPECTED_SEQNO_RANGE) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +020075 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020076 "We missed a lot of packets (%i) !\n",
77 seq_num_diff - 1);
Sven Eckelmann42d0b042012-06-03 22:19:17 +020078 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000079 if (set_mark)
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020080 batadv_set_bit(seq_bits, 0);
Sven Eckelmann4b426b12016-02-22 21:02:39 +010081 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082 }
83
84 /* received a much older packet. The other host either restarted
85 * or the old packet got delayed somewhere in the network. The
86 * packet should be dropped without calling this function if the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020087 * seqno window is protected.
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020088 *
89 * seq_num_diff <= -BATADV_TQ_LOCAL_WINDOW_SIZE
90 * or
91 * seq_num_diff >= BATADV_EXPECTED_SEQNO_RANGE
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020092 */
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020093 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
94 "Other host probably restarted!\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000095
Sven Eckelmann8e7c15d2012-08-20 10:26:47 +020096 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
97 if (set_mark)
98 batadv_set_bit(seq_bits, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000099
Sven Eckelmann4b426b12016-02-22 21:02:39 +0100100 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000101}