blob: e8c483d2da72855ce33e8390df20c9831b36ce85 [file] [log] [blame]
Simon Wunderliche19f9752014-01-04 18:04:25 +01001/* Copyright (C) 2007-2014 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
3 * Marek Lindner, Simon Wunderlich
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_PACKET_H_
19#define _NET_BATMAN_ADV_PACKET_H_
20
Marek Lindneref261572013-04-23 21:39:57 +080021/**
22 * enum batadv_packettype - types for batman-adv encapsulated packets
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020023 * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV
24 * @BATADV_BCAST: broadcast packets carrying broadcast payload
25 * @BATADV_CODED: network coded packets
26 *
27 * @BATADV_UNICAST: unicast packets carrying unicast payload traffic
28 * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original
29 * payload packet
30 * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of
31 * the sender
32 * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute
Marek Lindneref261572013-04-23 21:39:57 +080033 * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers
34 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020035enum batadv_packettype {
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020036 /* 0x00 - 0x3f: local packets or special rules for handling */
37 BATADV_IV_OGM = 0x00,
38 BATADV_BCAST = 0x01,
39 BATADV_CODED = 0x02,
40 /* 0x40 - 0x7f: unicast */
41#define BATADV_UNICAST_MIN 0x40
42 BATADV_UNICAST = 0x40,
43 BATADV_UNICAST_FRAG = 0x41,
44 BATADV_UNICAST_4ADDR = 0x42,
45 BATADV_ICMP = 0x43,
46 BATADV_UNICAST_TVLV = 0x44,
47#define BATADV_UNICAST_MAX 0x7f
48 /* 0x80 - 0xff: reserved */
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020049};
50
51/**
52 * enum batadv_subtype - packet subtype for unicast4addr
53 * @BATADV_P_DATA: user payload
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020054 * @BATADV_P_DAT_DHT_GET: DHT request message
55 * @BATADV_P_DAT_DHT_PUT: DHT store message
56 * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020057 */
58enum batadv_subtype {
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020059 BATADV_P_DATA = 0x01,
60 BATADV_P_DAT_DHT_GET = 0x02,
61 BATADV_P_DAT_DHT_PUT = 0x03,
62 BATADV_P_DAT_CACHE_REPLY = 0x04,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020063};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000064
65/* this file is included by batctl which needs these defines */
Antonio Quartulli60cf7982013-04-20 15:59:13 +020066#define BATADV_COMPAT_VERSION 15
Sven Eckelmanne8958db2011-06-04 11:26:00 +020067
Simon Wunderlich18c68d52013-04-25 10:37:25 +020068/**
69 * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets
70 * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was
71 * previously received from someone else than the best neighbor.
72 * @BATADV_PRIMARIES_FIRST_HOP: flag is set when the primary interface address
73 * is used, and the packet travels its first hop.
74 * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a
75 * one hop neighbor on the interface where it was originally received.
76 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020077enum batadv_iv_flags {
Simon Wunderlich18c68d52013-04-25 10:37:25 +020078 BATADV_NOT_BEST_NEXT_HOP = BIT(0),
79 BATADV_PRIMARIES_FIRST_HOP = BIT(1),
80 BATADV_DIRECTLINK = BIT(2),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020081};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082
83/* ICMP message types */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020084enum batadv_icmp_packettype {
85 BATADV_ECHO_REPLY = 0,
86 BATADV_DESTINATION_UNREACHABLE = 3,
87 BATADV_ECHO_REQUEST = 8,
88 BATADV_TTL_EXCEEDED = 11,
89 BATADV_PARAMETER_PROBLEM = 12,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020090};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091
Marek Lindnere1bf0c12013-04-23 21:40:01 +080092/* tt data subtypes */
93#define BATADV_TT_DATA_TYPE_MASK 0x0F
Antonio Quartullia73105b2011-04-27 14:27:44 +020094
Marek Lindnere1bf0c12013-04-23 21:40:01 +080095/**
96 * enum batadv_tt_data_flags - flags for tt data tvlv
97 * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
98 * @BATADV_TT_REQUEST: TT request message
99 * @BATADV_TT_RESPONSE: TT response message
100 * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
101 */
102enum batadv_tt_data_flags {
103 BATADV_TT_OGM_DIFF = BIT(0),
104 BATADV_TT_REQUEST = BIT(1),
105 BATADV_TT_RESPONSE = BIT(2),
106 BATADV_TT_FULL_TABLE = BIT(4),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200107};
108
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200109/* BATADV_TT_CLIENT flags.
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200110 * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to
Antonio Quartulli0eb015682013-10-13 02:50:20 +0200111 * BIT(15) are used for local computation only.
112 * Flags from BIT(4) to BIT(7) are kept in sync with the rest of the network.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200113 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200114enum batadv_tt_client_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200115 BATADV_TT_CLIENT_DEL = BIT(0),
116 BATADV_TT_CLIENT_ROAM = BIT(1),
Antonio Quartulli0eb015682013-10-13 02:50:20 +0200117 BATADV_TT_CLIENT_WIFI = BIT(4),
Antonio Quartulli9464d072013-11-16 12:03:48 +0100118 BATADV_TT_CLIENT_ISOLA = BIT(5),
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200119 BATADV_TT_CLIENT_NOPURGE = BIT(8),
120 BATADV_TT_CLIENT_NEW = BIT(9),
121 BATADV_TT_CLIENT_PENDING = BIT(10),
Antonio Quartulli0035f972013-04-24 16:37:52 +0200122 BATADV_TT_CLIENT_TEMP = BIT(11),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200123};
124
Antonio Quartullic018ad32013-06-04 12:11:39 +0200125/**
126 * batadv_vlan_flags - flags for the four MSB of any vlan ID field
127 * @BATADV_VLAN_HAS_TAG: whether the field contains a valid vlan tag or not
128 */
129enum batadv_vlan_flags {
130 BATADV_VLAN_HAS_TAG = BIT(15),
131};
132
Simon Wunderlich23721382012-01-22 20:00:19 +0100133/* claim frame types for the bridge loop avoidance */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200134enum batadv_bla_claimframe {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200135 BATADV_CLAIM_TYPE_CLAIM = 0x00,
136 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200137 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
138 BATADV_CLAIM_TYPE_REQUEST = 0x03,
Simon Wunderlich23721382012-01-22 20:00:19 +0100139};
140
Marek Lindner414254e2013-04-23 21:39:58 +0800141/**
142 * enum batadv_tvlv_type - tvlv type definitions
143 * @BATADV_TVLV_GW: gateway tvlv
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800144 * @BATADV_TVLV_DAT: distributed arp table tvlv
Marek Lindner3f4841f2013-04-23 21:40:00 +0800145 * @BATADV_TVLV_NC: network coding tvlv
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800146 * @BATADV_TVLV_TT: translation table tvlv
Marek Lindner122edaa2013-04-23 21:40:03 +0800147 * @BATADV_TVLV_ROAM: roaming advertisement tvlv
Linus Lüssing60432d72014-02-15 17:47:51 +0100148 * @BATADV_TVLV_MCAST: multicast capability tvlv
Marek Lindner414254e2013-04-23 21:39:58 +0800149 */
150enum batadv_tvlv_type {
151 BATADV_TVLV_GW = 0x01,
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800152 BATADV_TVLV_DAT = 0x02,
Marek Lindner3f4841f2013-04-23 21:40:00 +0800153 BATADV_TVLV_NC = 0x03,
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800154 BATADV_TVLV_TT = 0x04,
Marek Lindner122edaa2013-04-23 21:40:03 +0800155 BATADV_TVLV_ROAM = 0x05,
Linus Lüssing60432d72014-02-15 17:47:51 +0100156 BATADV_TVLV_MCAST = 0x06,
Marek Lindner414254e2013-04-23 21:39:58 +0800157};
158
Simon Wunderlich2f7a3182013-12-02 20:38:33 +0100159#pragma pack(2)
Simon Wunderlich23721382012-01-22 20:00:19 +0100160/* the destination hardware field in the ARP frame is used to
161 * transport the claim type and the group id
162 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200163struct batadv_bla_claim_dst {
Simon Wunderlich23721382012-01-22 20:00:19 +0100164 uint8_t magic[3]; /* FF:43:05 */
165 uint8_t type; /* bla_claimframe */
Al Viro3e2f1a12012-04-22 07:47:50 +0100166 __be16 group; /* group id */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100167};
Simon Wunderlich2f7a3182013-12-02 20:38:33 +0100168#pragma pack()
Simon Wunderlich23721382012-01-22 20:00:19 +0100169
Marek Lindneref261572013-04-23 21:39:57 +0800170/**
171 * struct batadv_ogm_packet - ogm (routing protocol) packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100172 * @packet_type: batman-adv packet type, part of the general header
173 * @version: batman-adv protocol version, part of the genereal header
174 * @ttl: time to live for this packet, part of the genereal header
Simon Wunderlich18c68d52013-04-25 10:37:25 +0200175 * @flags: contains routing relevant flags - see enum batadv_iv_flags
Marek Lindneref261572013-04-23 21:39:57 +0800176 * @tvlv_len: length of tvlv data following the ogm header
177 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200178struct batadv_ogm_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100179 uint8_t packet_type;
180 uint8_t version;
181 uint8_t ttl;
Simon Wunderlich18c68d52013-04-25 10:37:25 +0200182 uint8_t flags;
Al Viroe0f52112012-04-22 07:46:29 +0100183 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100184 uint8_t orig[ETH_ALEN];
185 uint8_t prev_sender[ETH_ALEN];
Marek Lindner414254e2013-04-23 21:39:58 +0800186 uint8_t reserved;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200187 uint8_t tq;
Marek Lindneref261572013-04-23 21:39:57 +0800188 __be16 tvlv_len;
Simon Wunderlich9284a472013-04-25 10:37:24 +0200189 /* __packed is not needed as the struct size is divisible by 4,
190 * and the largest data type in this struct has a size of 4.
191 */
192};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193
Sven Eckelmann96412692012-06-05 22:31:30 +0200194#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000195
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200196/**
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100197 * batadv_icmp_header - common members among all the ICMP packets
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100198 * @packet_type: batman-adv packet type, part of the general header
199 * @version: batman-adv protocol version, part of the genereal header
200 * @ttl: time to live for this packet, part of the genereal header
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200201 * @msg_type: ICMP packet type
202 * @dst: address of the destination node
203 * @orig: address of the source node
204 * @uid: local ICMP socket identifier
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100205 * @align: not used - useful for alignment purposes only
206 *
207 * This structure is used for ICMP packets parsing only and it is never sent
208 * over the wire. The alignment field at the end is there to ensure that
209 * members are padded the same way as they are in real packets.
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200210 */
211struct batadv_icmp_header {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100212 uint8_t packet_type;
213 uint8_t version;
214 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200215 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100216 uint8_t dst[ETH_ALEN];
217 uint8_t orig[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000218 uint8_t uid;
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100219 uint8_t align[3];
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200220};
221
222/**
223 * batadv_icmp_packet - ICMP packet
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100224 * @packet_type: batman-adv packet type, part of the general header
225 * @version: batman-adv protocol version, part of the genereal header
226 * @ttl: time to live for this packet, part of the genereal header
227 * @msg_type: ICMP packet type
228 * @dst: address of the destination node
229 * @orig: address of the source node
230 * @uid: local ICMP socket identifier
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200231 * @reserved: not used - useful for alignment
232 * @seqno: ICMP sequence number
233 */
234struct batadv_icmp_packet {
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100235 uint8_t packet_type;
236 uint8_t version;
237 uint8_t ttl;
238 uint8_t msg_type; /* see ICMP message types above */
239 uint8_t dst[ETH_ALEN];
240 uint8_t orig[ETH_ALEN];
241 uint8_t uid;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200242 uint8_t reserved;
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200243 __be16 seqno;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100244};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000245
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200246#define BATADV_RR_LEN 16
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000247
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200248/**
249 * batadv_icmp_packet_rr - ICMP RouteRecord packet
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100250 * @packet_type: batman-adv packet type, part of the general header
251 * @version: batman-adv protocol version, part of the genereal header
252 * @ttl: time to live for this packet, part of the genereal header
253 * @msg_type: ICMP packet type
254 * @dst: address of the destination node
255 * @orig: address of the source node
256 * @uid: local ICMP socket identifier
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200257 * @rr_cur: number of entries the rr array
258 * @seqno: ICMP sequence number
259 * @rr: route record array
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200260 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200261struct batadv_icmp_packet_rr {
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100262 uint8_t packet_type;
263 uint8_t version;
264 uint8_t ttl;
265 uint8_t msg_type; /* see ICMP message types above */
266 uint8_t dst[ETH_ALEN];
267 uint8_t orig[ETH_ALEN];
268 uint8_t uid;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000269 uint8_t rr_cur;
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200270 __be16 seqno;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200271 uint8_t rr[BATADV_RR_LEN][ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100272};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200274#define BATADV_ICMP_MAX_PACKET_SIZE sizeof(struct batadv_icmp_packet_rr)
275
Sven Eckelmanne022b952012-11-05 21:25:27 +0100276/* All packet headers in front of an ethernet header have to be completely
277 * divisible by 2 but not by 4 to make the payload after the ethernet
278 * header again 4 bytes boundary aligned.
279 *
280 * A packing of 2 is necessary to avoid extra padding at the end of the struct
281 * caused by a structure member which is larger than two bytes. Otherwise
282 * the structure would not fulfill the previously mentioned rule to avoid the
283 * misalignment of the payload after the ethernet header. It may also lead to
284 * leakage of information when the padding it not initialized before sending.
285 */
286#pragma pack(2)
287
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100288/**
289 * struct batadv_unicast_packet - unicast packet for network payload
290 * @packet_type: batman-adv packet type, part of the general header
291 * @version: batman-adv protocol version, part of the genereal header
292 * @ttl: time to live for this packet, part of the genereal header
293 * @ttvn: translation table version number
294 * @dest: originator destination of the unicast packet
295 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200296struct batadv_unicast_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100297 uint8_t packet_type;
298 uint8_t version;
299 uint8_t ttl;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200300 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100301 uint8_t dest[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100302 /* "4 bytes boundary + 2 bytes" long to make the payload after the
303 * following ethernet header again 4 bytes boundary aligned
304 */
305};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200307/**
308 * struct batadv_unicast_4addr_packet - extended unicast packet
309 * @u: common unicast packet header
310 * @src: address of the source
311 * @subtype: packet subtype
312 */
313struct batadv_unicast_4addr_packet {
314 struct batadv_unicast_packet u;
315 uint8_t src[ETH_ALEN];
316 uint8_t subtype;
317 uint8_t reserved;
318 /* "4 bytes boundary + 2 bytes" long to make the payload after the
319 * following ethernet header again 4 bytes boundary aligned
320 */
321};
322
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200323/**
324 * struct batadv_frag_packet - fragmented packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100325 * @packet_type: batman-adv packet type, part of the general header
326 * @version: batman-adv protocol version, part of the genereal header
327 * @ttl: time to live for this packet, part of the genereal header
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200328 * @dest: final destination used when routing fragments
329 * @orig: originator of the fragment used when merging the packet
330 * @no: fragment number within this sequence
331 * @reserved: reserved byte for alignment
332 * @seqno: sequence identification
333 * @total_size: size of the merged packet
334 */
335struct batadv_frag_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100336 uint8_t packet_type;
337 uint8_t version; /* batman version field */
338 uint8_t ttl;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200339#if defined(__BIG_ENDIAN_BITFIELD)
340 uint8_t no:4;
341 uint8_t reserved:4;
342#elif defined(__LITTLE_ENDIAN_BITFIELD)
343 uint8_t reserved:4;
344 uint8_t no:4;
345#else
346#error "unknown bitfield endianess"
347#endif
348 uint8_t dest[ETH_ALEN];
349 uint8_t orig[ETH_ALEN];
350 __be16 seqno;
351 __be16 total_size;
352};
353
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100354/**
355 * struct batadv_bcast_packet - broadcast packet for network payload
356 * @packet_type: batman-adv packet type, part of the general header
357 * @version: batman-adv protocol version, part of the genereal header
358 * @ttl: time to live for this packet, part of the genereal header
359 * @reserved: reserved byte for alignment
360 * @seqno: sequence identification
361 * @orig: originator of the broadcast packet
362 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200363struct batadv_bcast_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100364 uint8_t packet_type;
365 uint8_t version; /* batman version field */
366 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200367 uint8_t reserved;
Al Viro3e2f1a12012-04-22 07:47:50 +0100368 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100369 uint8_t orig[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100370 /* "4 bytes boundary + 2 bytes" long to make the payload after the
371 * following ethernet header again 4 bytes boundary aligned
372 */
Sven Eckelmanne022b952012-11-05 21:25:27 +0100373};
374
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100375/**
376 * struct batadv_coded_packet - network coded packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100377 * @packet_type: batman-adv packet type, part of the general header
378 * @version: batman-adv protocol version, part of the genereal header
379 * @ttl: time to live for this packet, part of the genereal header
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100380 * @reserved: Align following fields to 2-byte boundaries
381 * @first_source: original source of first included packet
382 * @first_orig_dest: original destinal of first included packet
383 * @first_crc: checksum of first included packet
384 * @first_ttvn: tt-version number of first included packet
385 * @second_ttl: ttl of second packet
386 * @second_dest: second receiver of this coded packet
387 * @second_source: original source of second included packet
388 * @second_orig_dest: original destination of second included packet
389 * @second_crc: checksum of second included packet
390 * @second_ttvn: tt version number of second included packet
391 * @coded_len: length of network coded part of the payload
392 */
393struct batadv_coded_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100394 uint8_t packet_type;
395 uint8_t version; /* batman version field */
396 uint8_t ttl;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100397 uint8_t first_ttvn;
398 /* uint8_t first_dest[ETH_ALEN]; - saved in mac header destination */
399 uint8_t first_source[ETH_ALEN];
400 uint8_t first_orig_dest[ETH_ALEN];
401 __be32 first_crc;
402 uint8_t second_ttl;
403 uint8_t second_ttvn;
404 uint8_t second_dest[ETH_ALEN];
405 uint8_t second_source[ETH_ALEN];
406 uint8_t second_orig_dest[ETH_ALEN];
407 __be32 second_crc;
Martin Hundebølle6a0b492013-03-14 21:30:21 +0100408 __be16 coded_len;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100409};
410
Simon Wunderlich46b76e02013-12-02 20:38:30 +0100411#pragma pack()
412
Marek Lindneref261572013-04-23 21:39:57 +0800413/**
414 * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100415 * @packet_type: batman-adv packet type, part of the general header
416 * @version: batman-adv protocol version, part of the genereal header
417 * @ttl: time to live for this packet, part of the genereal header
Marek Lindneref261572013-04-23 21:39:57 +0800418 * @reserved: reserved field (for packet alignment)
419 * @src: address of the source
420 * @dst: address of the destination
421 * @tvlv_len: length of tvlv data following the unicast tvlv header
422 * @align: 2 bytes to align the header to a 4 byte boundry
423 */
424struct batadv_unicast_tvlv_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100425 uint8_t packet_type;
426 uint8_t version; /* batman version field */
427 uint8_t ttl;
Marek Lindneref261572013-04-23 21:39:57 +0800428 uint8_t reserved;
429 uint8_t dst[ETH_ALEN];
430 uint8_t src[ETH_ALEN];
431 __be16 tvlv_len;
432 uint16_t align;
433};
434
435/**
436 * struct batadv_tvlv_hdr - base tvlv header struct
437 * @type: tvlv container type (see batadv_tvlv_type)
438 * @version: tvlv container version
439 * @len: tvlv container length
440 */
441struct batadv_tvlv_hdr {
442 uint8_t type;
443 uint8_t version;
444 __be16 len;
445};
446
Marek Lindner414254e2013-04-23 21:39:58 +0800447/**
448 * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
449 * container
450 * @bandwidth_down: advertised uplink download bandwidth
451 * @bandwidth_up: advertised uplink upload bandwidth
452 */
453struct batadv_tvlv_gateway_data {
454 __be32 bandwidth_down;
455 __be32 bandwidth_up;
456};
457
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800458/**
459 * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
460 * @flags: translation table flags (see batadv_tt_data_flags)
461 * @ttvn: translation table version number
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200462 * @vlan_num: number of announced VLANs. In the TVLV this struct is followed by
463 * one batadv_tvlv_tt_vlan_data object per announced vlan
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800464 */
465struct batadv_tvlv_tt_data {
466 uint8_t flags;
467 uint8_t ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200468 __be16 num_vlan;
469};
470
471/**
472 * struct batadv_tvlv_tt_vlan_data - vlan specific tt data propagated through
473 * the tt tvlv container
474 * @crc: crc32 checksum of the entries belonging to this vlan
475 * @vid: vlan identifier
476 * @reserved: unused, useful for alignment purposes
477 */
478struct batadv_tvlv_tt_vlan_data {
479 __be32 crc;
480 __be16 vid;
Antonio Quartulliced72932013-04-24 16:37:51 +0200481 uint16_t reserved;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800482};
483
484/**
485 * struct batadv_tvlv_tt_change - translation table diff data
486 * @flags: status indicators concerning the non-mesh client (see
487 * batadv_tt_client_flags)
Antonio Quartullica663042013-12-15 13:26:55 +0100488 * @reserved: reserved field - useful for alignment purposes only
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800489 * @addr: mac address of non-mesh client that triggered this tt change
Antonio Quartullic018ad32013-06-04 12:11:39 +0200490 * @vid: VLAN identifier
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800491 */
492struct batadv_tvlv_tt_change {
493 uint8_t flags;
Antonio Quartullica663042013-12-15 13:26:55 +0100494 uint8_t reserved[3];
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800495 uint8_t addr[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200496 __be16 vid;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800497};
498
Marek Lindner122edaa2013-04-23 21:40:03 +0800499/**
500 * struct batadv_tvlv_roam_adv - roaming advertisement
501 * @client: mac address of roaming client
Antonio Quartullic018ad32013-06-04 12:11:39 +0200502 * @vid: VLAN identifier
Marek Lindner122edaa2013-04-23 21:40:03 +0800503 */
504struct batadv_tvlv_roam_adv {
505 uint8_t client[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200506 __be16 vid;
Marek Lindner122edaa2013-04-23 21:40:03 +0800507};
508
Linus Lüssing60432d72014-02-15 17:47:51 +0100509/**
510 * struct batadv_tvlv_mcast_data - payload of a multicast tvlv
511 * @flags: multicast flags announced by the orig node
512 * @reserved: reserved field
513 */
514struct batadv_tvlv_mcast_data {
515 uint8_t flags;
516 uint8_t reserved[3];
517};
518
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000519#endif /* _NET_BATMAN_ADV_PACKET_H_ */