blob: 37f7ae413bc66ac85f68dc619e4c7903dac4cd02 [file] [log] [blame]
Sven Eckelmann7db7d9f2017-11-19 15:05:11 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sven Eckelmanncfa55c62021-01-01 00:00:01 +01002/* Copyright (C) B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Simon Wunderlich, Marek Lindner
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00005 */
6
7#ifndef _NET_BATMAN_ADV_BITARRAY_H_
8#define _NET_BATMAN_ADV_BITARRAY_H_
9
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020010#include "main.h"
11
12#include <linux/bitops.h>
13#include <linux/compiler.h>
Sven Eckelmann4b426b12016-02-22 21:02:39 +010014#include <linux/stddef.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020015#include <linux/types.h>
16
Sven Eckelmann62fe7102015-09-15 19:00:48 +020017/**
Sven Eckelmann7e9a8c22017-12-02 19:51:47 +010018 * batadv_test_bit() - check if bit is set in the current window
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +010019 *
20 * @seq_bits: pointer to the sequence number receive packet
21 * @last_seqno: latest sequence number in seq_bits
22 * @curr_seqno: sequence number to test for
Sven Eckelmann62fe7102015-09-15 19:00:48 +020023 *
Sven Eckelmann4b426b12016-02-22 21:02:39 +010024 * Return: true if the corresponding bit in the given seq_bits indicates true
25 * and curr_seqno is within range of last_seqno. Otherwise returns false.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020026 */
Sven Eckelmann4b426b12016-02-22 21:02:39 +010027static inline bool batadv_test_bit(const unsigned long *seq_bits,
28 u32 last_seqno, u32 curr_seqno)
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010029{
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020030 s32 diff;
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010031
32 diff = last_seqno - curr_seqno;
Sven Eckelmann42d0b042012-06-03 22:19:17 +020033 if (diff < 0 || diff >= BATADV_TQ_LOCAL_WINDOW_SIZE)
Sven Eckelmann4b426b12016-02-22 21:02:39 +010034 return false;
Antonio Quartulli24820df2014-09-01 14:37:25 +020035 return test_bit(diff, seq_bits) != 0;
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010036}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000037
Sven Eckelmanne57acf82017-12-02 19:51:52 +010038/**
39 * batadv_set_bit() - Turn corresponding bit on, so we can remember that we got
40 * the packet
41 * @seq_bits: bitmap of the packet receive window
42 * @n: relative sequence number of newly received packet
43 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +020044static inline void batadv_set_bit(unsigned long *seq_bits, s32 n)
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010045{
46 /* if too old, just drop it */
Sven Eckelmann42d0b042012-06-03 22:19:17 +020047 if (n < 0 || n >= BATADV_TQ_LOCAL_WINDOW_SIZE)
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010048 return;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049
Sven Eckelmann0079d2c2012-02-04 17:34:52 +010050 set_bit(n, seq_bits); /* turn the position on */
51}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052
Sven Eckelmann4b426b12016-02-22 21:02:39 +010053bool batadv_bit_get_packet(void *priv, unsigned long *seq_bits,
54 s32 seq_num_diff, int set_mark);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000055
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000056#endif /* _NET_BATMAN_ADV_BITARRAY_H_ */