]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/batman-adv/bitarray.c
KVM: SVM: Move spec control call after restore of GS
[mirror_ubuntu-artful-kernel.git] / net / batman-adv / bitarray.c
CommitLineData
ac79cbb9 1/* Copyright (C) 2006-2017 B.A.T.M.A.N. contributors:
c6c8fea2
SE
2 *
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
ebf38fb7 15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
c6c8fea2
SE
16 */
17
c6c8fea2 18#include "bitarray.h"
1e2c2a4f 19#include "main.h"
c6c8fea2 20
1e2c2a4f 21#include <linux/bitmap.h>
c6c8fea2 22
ba412080
SE
23#include "log.h"
24
c6c8fea2 25/* shift the packet array by n places. */
6b5e971a 26static void batadv_bitmap_shift_left(unsigned long *seq_bits, s32 n)
c6c8fea2 27{
42d0b044 28 if (n <= 0 || n >= BATADV_TQ_LOCAL_WINDOW_SIZE)
c6c8fea2
SE
29 return;
30
42d0b044 31 bitmap_shift_left(seq_bits, seq_bits, n, BATADV_TQ_LOCAL_WINDOW_SIZE);
c6c8fea2
SE
32}
33
7afcbbef
SE
34/**
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
c6c8fea2 42 *
4b426b10
SE
43 * Return: true if the window was moved (either new or very old),
44 * false if the window was not moved/shifted.
c6c8fea2 45 */
4b426b10
SE
46bool batadv_bit_get_packet(void *priv, unsigned long *seq_bits,
47 s32 seq_num_diff, int set_mark)
c6c8fea2 48{
56303d34 49 struct batadv_priv *bat_priv = priv;
c6c8fea2
SE
50
51 /* sequence number is slightly older. We already got a sequence number
9cfc7bd6
SE
52 * higher than this one, so we just mark it.
53 */
42d0b044 54 if (seq_num_diff <= 0 && seq_num_diff > -BATADV_TQ_LOCAL_WINDOW_SIZE) {
c6c8fea2 55 if (set_mark)
9b4a1159 56 batadv_set_bit(seq_bits, -seq_num_diff);
4b426b10 57 return false;
c6c8fea2
SE
58 }
59
60 /* sequence number is slightly newer, so we shift the window and
9cfc7bd6
SE
61 * set the mark if required
62 */
42d0b044 63 if (seq_num_diff > 0 && seq_num_diff < BATADV_TQ_LOCAL_WINDOW_SIZE) {
0f5f9322 64 batadv_bitmap_shift_left(seq_bits, seq_num_diff);
c6c8fea2
SE
65
66 if (set_mark)
9b4a1159 67 batadv_set_bit(seq_bits, 0);
4b426b10 68 return true;
c6c8fea2
SE
69 }
70
71 /* sequence number is much newer, probably missed a lot of packets */
42d0b044
SE
72 if (seq_num_diff >= BATADV_TQ_LOCAL_WINDOW_SIZE &&
73 seq_num_diff < BATADV_EXPECTED_SEQNO_RANGE) {
39c75a51 74 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
1eda58bf
SE
75 "We missed a lot of packets (%i) !\n",
76 seq_num_diff - 1);
42d0b044 77 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
c6c8fea2 78 if (set_mark)
9b4a1159 79 batadv_set_bit(seq_bits, 0);
4b426b10 80 return true;
c6c8fea2
SE
81 }
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
9cfc7bd6 86 * seqno window is protected.
8e7c15d6
SE
87 *
88 * seq_num_diff <= -BATADV_TQ_LOCAL_WINDOW_SIZE
89 * or
90 * seq_num_diff >= BATADV_EXPECTED_SEQNO_RANGE
9cfc7bd6 91 */
8e7c15d6
SE
92 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
93 "Other host probably restarted!\n");
c6c8fea2 94
8e7c15d6
SE
95 bitmap_zero(seq_bits, BATADV_TQ_LOCAL_WINDOW_SIZE);
96 if (set_mark)
97 batadv_set_bit(seq_bits, 0);
c6c8fea2 98
4b426b10 99 return true;
c6c8fea2 100}