blob: cc2407351d367f74fe9f288fdff79fe8db95f7c3 [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#ifndef _NET_BATMAN_ADV_BITARRAY_H_
19#define _NET_BATMAN_ADV_BITARRAY_H_
20
Linus Lüssingdbd6b112012-09-14 00:40:54 +000021/* Returns 1 if the corresponding bit in the given seq_bits indicates true
22 * and curr_seqno is within range of last_seqno. Otherwise returns 0.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020023 */
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020024static inline int batadv_test_bit(const unsigned long *seq_bits,
25 uint32_t last_seqno, uint32_t curr_seqno)
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010026{
27 int32_t diff;
28
29 diff = last_seqno - curr_seqno;
Sven Eckelmann42d0b042012-06-03 22:19:17 +020030 if (diff < 0 || diff >= BATADV_TQ_LOCAL_WINDOW_SIZE)
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010031 return 0;
32 else
Linus Lüssingdbd6b112012-09-14 00:40:54 +000033 return test_bit(diff, seq_bits) != 0;
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010034}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000035
36/* turn corresponding bit on, so we can remember that we got the packet */
Sven Eckelmann9b4a1152012-05-12 13:48:53 +020037static inline void batadv_set_bit(unsigned long *seq_bits, int32_t n)
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010038{
39 /* if too old, just drop it */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020040 if (n < 0 || n >= BATADV_TQ_LOCAL_WINDOW_SIZE)
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010041 return;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000042
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010043 set_bit(n, seq_bits); /* turn the position on */
44}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000045
46/* receive and process one packet, returns 1 if received seq_num is considered
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020047 * new, 0 if old
48 */
Sven Eckelmann0f5f9322012-05-12 02:09:25 +020049int batadv_bit_get_packet(void *priv, unsigned long *seq_bits,
50 int32_t seq_num_diff, int set_mark);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000051
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052#endif /* _NET_BATMAN_ADV_BITARRAY_H_ */