-
Notifications
You must be signed in to change notification settings - Fork 854
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for B.A.T.M.A.N. Advanced
This adds support for the layer 2 mesh routing protocol B.A.T.M.A.N. Advanced. "batadv" can be used to filter on batman-adv packets. It also allows later filters to look at frames inside the tunnel when both "version" and "type" are specified. Documentation for the batman-adv protocol can be found at the following locations: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/networking/batman-adv.rst https://www.open-mesh.org/ Signed-off-by: Linus Lüssing <[email protected]>
- Loading branch information
Showing
10 changed files
with
453 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* SPDX-License-Identifier: BSD-3 */ | ||
/* Copyright (C) 2020 Linus Lüssing */ | ||
|
||
#ifndef _BATADV_LEGACY_PACKET_H_ | ||
#define _BATADV_LEGACY_PACKET_H_ | ||
|
||
enum batadv_legacy_packettype { | ||
BATADV_LEGACY_IV_OGM = 0x01, | ||
BATADV_LEGACY_ICMP = 0x02, | ||
BATADV_LEGACY_UNICAST = 0x03, | ||
BATADV_LEGACY_BCAST = 0x04, | ||
BATADV_LEGACY_VIS = 0x05, | ||
BATADV_LEGACY_UNICAST_FRAG = 0x06, | ||
BATADV_LEGACY_TT_QUERY = 0x07, | ||
BATADV_LEGACY_ROAM_ADV = 0x08, | ||
BATADV_LEGACY_UNICAST_4ADDR = 0x09, | ||
BATADV_LEGACY_CODED = 0x0a, | ||
}; | ||
|
||
#define ETH_ALEN 6 | ||
|
||
struct batadv_legacy_unicast_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t ttvn; | ||
uint8_t dest[ETH_ALEN]; | ||
}; | ||
|
||
struct batadv_legacy_unicast_4addr_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t src[ETH_ALEN]; | ||
uint8_t subtype; | ||
uint8_t reserved; | ||
}; | ||
|
||
struct batadv_legacy_unicast_frag_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t ttvn; | ||
uint8_t dest[ETH_ALEN]; | ||
uint8_t flags; | ||
uint8_t align; | ||
uint8_t orig[ETH_ALEN]; | ||
uint8_t seqno[2]; /* 2-byte integral value */ | ||
}; | ||
|
||
struct batadv_legacy_bcast_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t reserved; | ||
uint8_t seqno[4]; /* 4-byte integral value */ | ||
uint8_t orig[ETH_ALEN]; | ||
}; | ||
|
||
struct batadv_legacy_coded_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t first_ttvn; | ||
uint8_t first_source[ETH_ALEN]; | ||
uint8_t first_orig_dest[ETH_ALEN]; | ||
uint8_t first_crc[4]; /* 4-byte integral value */ | ||
uint8_t second_ttl; | ||
uint8_t second_ttvn; | ||
uint8_t second_dest[ETH_ALEN]; | ||
uint8_t second_source[ETH_ALEN]; | ||
uint8_t second_orig_dest[ETH_ALEN]; | ||
uint8_t second_crc[4]; /* 4-byte integral value */ | ||
uint8_t coded_len[2]; /* 2-byte integral value */ | ||
}; | ||
|
||
#endif /* _BATADV_LEGACY_PACKET_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* SPDX-License-Identifier: BSD-3 */ | ||
/* Copyright (C) 2020 Linus Lüssing */ | ||
|
||
#ifndef _BATADV_PACKET_H_ | ||
#define _BATADV_PACKET_H_ | ||
|
||
/* For the definitive and most recent packet format definition, | ||
* see the batadv_packet.h in the Linux kernel. | ||
*/ | ||
|
||
enum batadv_packettype { | ||
BATADV_IV_OGM = 0x00, | ||
BATADV_BCAST = 0x01, | ||
BATADV_CODED = 0x02, | ||
BATADV_ELP = 0x03, | ||
BATADV_OGM2 = 0x04, | ||
BATADV_UNICAST = 0x40, | ||
BATADV_UNICAST_FRAG = 0x41, | ||
BATADV_UNICAST_4ADDR = 0x42, | ||
BATADV_ICMP = 0x43, | ||
BATADV_UNICAST_TVLV = 0x44, | ||
}; | ||
|
||
#define ETH_ALEN 6 | ||
|
||
struct batadv_unicast_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t ttvn; | ||
uint8_t dest[ETH_ALEN]; | ||
}; | ||
|
||
struct batadv_unicast_4addr_packet { | ||
struct batadv_unicast_packet u; | ||
uint8_t src[ETH_ALEN]; | ||
uint8_t subtype; | ||
uint8_t reserved; | ||
}; | ||
|
||
struct batadv_frag_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t num_pri; /* number and priority */ | ||
uint8_t dest[ETH_ALEN]; | ||
uint8_t orig[ETH_ALEN]; | ||
uint8_t seqno[2]; /* 2-byte integral value */ | ||
uint8_t total_size[2]; /* 2-byte integral value */ | ||
}; | ||
|
||
struct batadv_bcast_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t reserved; | ||
uint8_t seqno[4]; /* 4-byte integral value */ | ||
uint8_t orig[ETH_ALEN]; | ||
}; | ||
|
||
struct batadv_coded_packet { | ||
uint8_t packet_type; | ||
uint8_t version; | ||
uint8_t ttl; | ||
uint8_t first_ttvn; | ||
uint8_t first_source[ETH_ALEN]; | ||
uint8_t first_orig_dest[ETH_ALEN]; | ||
uint8_t first_crc[4]; /* 4-byte integral value */ | ||
uint8_t second_ttl; | ||
uint8_t second_ttvn; | ||
uint8_t second_dest[ETH_ALEN]; | ||
uint8_t second_source[ETH_ALEN]; | ||
uint8_t second_orig_dest[ETH_ALEN]; | ||
uint8_t second_crc[4]; /* 4-byte integral value */ | ||
uint8_t coded_len[2]; /* 2-byte integral value */ | ||
}; | ||
|
||
#endif /* _BATADV_PACKET_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.