Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1 | /* |
Sven Eckelmann | 567db7b | 2012-01-01 00:41:38 +0100 | [diff] [blame] | 2 | * Copyright (C) 2006-2012 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 3 | * |
| 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 |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 18 | * 02110-1301, USA |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #include "main.h" |
| 23 | #include "bitarray.h" |
| 24 | |
| 25 | #include <linux/bitops.h> |
| 26 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 27 | /* shift the packet array by n places. */ |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 28 | static void bat_bitmap_shift_left(unsigned long *seq_bits, int32_t n) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 29 | { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 30 | if (n <= 0 || n >= TQ_LOCAL_WINDOW_SIZE) |
| 31 | return; |
| 32 | |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 33 | bitmap_shift_left(seq_bits, seq_bits, n, TQ_LOCAL_WINDOW_SIZE); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | |
| 37 | /* receive and process one packet within the sequence number window. |
| 38 | * |
| 39 | * returns: |
| 40 | * 1 if the window was moved (either new or very old) |
| 41 | * 0 if the window was not moved/shifted. |
| 42 | */ |
Sven Eckelmann | b4e1705 | 2011-06-15 09:41:37 +0200 | [diff] [blame] | 43 | int bit_get_packet(void *priv, unsigned long *seq_bits, |
| 44 | int32_t seq_num_diff, int set_mark) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 45 | { |
Sven Eckelmann | 5f718c2 | 2011-05-14 23:14:52 +0200 | [diff] [blame] | 46 | struct bat_priv *bat_priv = priv; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 47 | |
| 48 | /* sequence number is slightly older. We already got a sequence number |
| 49 | * higher than this one, so we just mark it. */ |
| 50 | |
| 51 | if ((seq_num_diff <= 0) && (seq_num_diff > -TQ_LOCAL_WINDOW_SIZE)) { |
| 52 | if (set_mark) |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 53 | bat_set_bit(seq_bits, -seq_num_diff); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | /* sequence number is slightly newer, so we shift the window and |
| 58 | * set the mark if required */ |
| 59 | |
| 60 | if ((seq_num_diff > 0) && (seq_num_diff < TQ_LOCAL_WINDOW_SIZE)) { |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 61 | bat_bitmap_shift_left(seq_bits, seq_num_diff); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 62 | |
| 63 | if (set_mark) |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 64 | bat_set_bit(seq_bits, 0); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 65 | return 1; |
| 66 | } |
| 67 | |
| 68 | /* sequence number is much newer, probably missed a lot of packets */ |
| 69 | |
Sven Eckelmann | 7c64fd9 | 2012-02-28 10:55:36 +0100 | [diff] [blame] | 70 | if ((seq_num_diff >= TQ_LOCAL_WINDOW_SIZE) && |
| 71 | (seq_num_diff < EXPECTED_SEQNO_RANGE)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 72 | bat_dbg(DBG_BATMAN, bat_priv, |
| 73 | "We missed a lot of packets (%i) !\n", |
| 74 | seq_num_diff - 1); |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 75 | bitmap_zero(seq_bits, TQ_LOCAL_WINDOW_SIZE); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 76 | if (set_mark) |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 77 | bat_set_bit(seq_bits, 0); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 78 | return 1; |
| 79 | } |
| 80 | |
| 81 | /* received a much older packet. The other host either restarted |
| 82 | * or the old packet got delayed somewhere in the network. The |
| 83 | * packet should be dropped without calling this function if the |
| 84 | * seqno window is protected. */ |
| 85 | |
Sven Eckelmann | 7c64fd9 | 2012-02-28 10:55:36 +0100 | [diff] [blame] | 86 | if ((seq_num_diff <= -TQ_LOCAL_WINDOW_SIZE) || |
| 87 | (seq_num_diff >= EXPECTED_SEQNO_RANGE)) { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 88 | |
| 89 | bat_dbg(DBG_BATMAN, bat_priv, |
| 90 | "Other host probably restarted!\n"); |
| 91 | |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 92 | bitmap_zero(seq_bits, TQ_LOCAL_WINDOW_SIZE); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 93 | if (set_mark) |
Sven Eckelmann | 0079d2c | 2012-02-04 17:34:52 +0100 | [diff] [blame] | 94 | bat_set_bit(seq_bits, 0); |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 95 | |
| 96 | return 1; |
| 97 | } |
| 98 | |
| 99 | /* never reached */ |
| 100 | return 0; |
| 101 | } |