blob: 175ce7d721d64e60dd2745e51d505a838c40107c [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2007-2013 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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#ifndef _NET_BATMAN_ADV_PACKET_H_
21#define _NET_BATMAN_ADV_PACKET_H_
22
Marek Lindneref261572013-04-23 21:39:57 +080023/**
24 * enum batadv_packettype - types for batman-adv encapsulated packets
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020025 * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV
26 * @BATADV_BCAST: broadcast packets carrying broadcast payload
27 * @BATADV_CODED: network coded packets
28 *
29 * @BATADV_UNICAST: unicast packets carrying unicast payload traffic
30 * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original
31 * payload packet
32 * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of
33 * the sender
34 * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute
Marek Lindneref261572013-04-23 21:39:57 +080035 * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers
36 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020037enum batadv_packettype {
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020038 /* 0x00 - 0x3f: local packets or special rules for handling */
39 BATADV_IV_OGM = 0x00,
40 BATADV_BCAST = 0x01,
41 BATADV_CODED = 0x02,
42 /* 0x40 - 0x7f: unicast */
43#define BATADV_UNICAST_MIN 0x40
44 BATADV_UNICAST = 0x40,
45 BATADV_UNICAST_FRAG = 0x41,
46 BATADV_UNICAST_4ADDR = 0x42,
47 BATADV_ICMP = 0x43,
48 BATADV_UNICAST_TVLV = 0x44,
49#define BATADV_UNICAST_MAX 0x7f
50 /* 0x80 - 0xff: reserved */
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020051};
52
53/**
54 * enum batadv_subtype - packet subtype for unicast4addr
55 * @BATADV_P_DATA: user payload
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020056 * @BATADV_P_DAT_DHT_GET: DHT request message
57 * @BATADV_P_DAT_DHT_PUT: DHT store message
58 * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020059 */
60enum batadv_subtype {
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020061 BATADV_P_DATA = 0x01,
62 BATADV_P_DAT_DHT_GET = 0x02,
63 BATADV_P_DAT_DHT_PUT = 0x03,
64 BATADV_P_DAT_CACHE_REPLY = 0x04,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020065};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066
67/* this file is included by batctl which needs these defines */
Antonio Quartulli60cf7982013-04-20 15:59:13 +020068#define BATADV_COMPAT_VERSION 15
Sven Eckelmanne8958db2011-06-04 11:26:00 +020069
Simon Wunderlich18c68d52013-04-25 10:37:25 +020070/**
71 * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets
72 * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was
73 * previously received from someone else than the best neighbor.
74 * @BATADV_PRIMARIES_FIRST_HOP: flag is set when the primary interface address
75 * is used, and the packet travels its first hop.
76 * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a
77 * one hop neighbor on the interface where it was originally received.
78 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020079enum batadv_iv_flags {
Simon Wunderlich18c68d52013-04-25 10:37:25 +020080 BATADV_NOT_BEST_NEXT_HOP = BIT(0),
81 BATADV_PRIMARIES_FIRST_HOP = BIT(1),
82 BATADV_DIRECTLINK = BIT(2),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020083};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084
85/* ICMP message types */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020086enum batadv_icmp_packettype {
87 BATADV_ECHO_REPLY = 0,
88 BATADV_DESTINATION_UNREACHABLE = 3,
89 BATADV_ECHO_REQUEST = 8,
90 BATADV_TTL_EXCEEDED = 11,
91 BATADV_PARAMETER_PROBLEM = 12,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020092};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093
Marek Lindnere1bf0c12013-04-23 21:40:01 +080094/* tt data subtypes */
95#define BATADV_TT_DATA_TYPE_MASK 0x0F
Antonio Quartullia73105b2011-04-27 14:27:44 +020096
Marek Lindnere1bf0c12013-04-23 21:40:01 +080097/**
98 * enum batadv_tt_data_flags - flags for tt data tvlv
99 * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
100 * @BATADV_TT_REQUEST: TT request message
101 * @BATADV_TT_RESPONSE: TT response message
102 * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
103 */
104enum batadv_tt_data_flags {
105 BATADV_TT_OGM_DIFF = BIT(0),
106 BATADV_TT_REQUEST = BIT(1),
107 BATADV_TT_RESPONSE = BIT(2),
108 BATADV_TT_FULL_TABLE = BIT(4),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200109};
110
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200111/* BATADV_TT_CLIENT flags.
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200112 * 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 +0200113 * BIT(15) are used for local computation only.
114 * Flags from BIT(4) to BIT(7) are kept in sync with the rest of the network.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200115 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200116enum batadv_tt_client_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200117 BATADV_TT_CLIENT_DEL = BIT(0),
118 BATADV_TT_CLIENT_ROAM = BIT(1),
Antonio Quartulli0eb015682013-10-13 02:50:20 +0200119 BATADV_TT_CLIENT_WIFI = BIT(4),
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200120 BATADV_TT_CLIENT_NOPURGE = BIT(8),
121 BATADV_TT_CLIENT_NEW = BIT(9),
122 BATADV_TT_CLIENT_PENDING = BIT(10),
Antonio Quartulli0035f972013-04-24 16:37:52 +0200123 BATADV_TT_CLIENT_TEMP = BIT(11),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200124};
125
Antonio Quartullic018ad32013-06-04 12:11:39 +0200126/**
127 * batadv_vlan_flags - flags for the four MSB of any vlan ID field
128 * @BATADV_VLAN_HAS_TAG: whether the field contains a valid vlan tag or not
129 */
130enum batadv_vlan_flags {
131 BATADV_VLAN_HAS_TAG = BIT(15),
132};
133
Simon Wunderlich23721382012-01-22 20:00:19 +0100134/* claim frame types for the bridge loop avoidance */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200135enum batadv_bla_claimframe {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200136 BATADV_CLAIM_TYPE_CLAIM = 0x00,
137 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200138 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
139 BATADV_CLAIM_TYPE_REQUEST = 0x03,
Simon Wunderlich23721382012-01-22 20:00:19 +0100140};
141
Marek Lindner414254e2013-04-23 21:39:58 +0800142/**
143 * enum batadv_tvlv_type - tvlv type definitions
144 * @BATADV_TVLV_GW: gateway tvlv
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800145 * @BATADV_TVLV_DAT: distributed arp table tvlv
Marek Lindner3f4841f2013-04-23 21:40:00 +0800146 * @BATADV_TVLV_NC: network coding tvlv
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800147 * @BATADV_TVLV_TT: translation table tvlv
Marek Lindner122edaa2013-04-23 21:40:03 +0800148 * @BATADV_TVLV_ROAM: roaming advertisement 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,
Marek Lindner414254e2013-04-23 21:39:58 +0800156};
157
Simon Wunderlich23721382012-01-22 20:00:19 +0100158/* the destination hardware field in the ARP frame is used to
159 * transport the claim type and the group id
160 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200161struct batadv_bla_claim_dst {
Simon Wunderlich23721382012-01-22 20:00:19 +0100162 uint8_t magic[3]; /* FF:43:05 */
163 uint8_t type; /* bla_claimframe */
Al Viro3e2f1a12012-04-22 07:47:50 +0100164 __be16 group; /* group id */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100165};
Simon Wunderlich23721382012-01-22 20:00:19 +0100166
Marek Lindneref261572013-04-23 21:39:57 +0800167/**
168 * struct batadv_ogm_packet - ogm (routing protocol) packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100169 * @packet_type: batman-adv packet type, part of the general header
170 * @version: batman-adv protocol version, part of the genereal header
171 * @ttl: time to live for this packet, part of the genereal header
Simon Wunderlich18c68d52013-04-25 10:37:25 +0200172 * @flags: contains routing relevant flags - see enum batadv_iv_flags
Marek Lindneref261572013-04-23 21:39:57 +0800173 * @tvlv_len: length of tvlv data following the ogm header
174 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200175struct batadv_ogm_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100176 uint8_t packet_type;
177 uint8_t version;
178 uint8_t ttl;
Simon Wunderlich18c68d52013-04-25 10:37:25 +0200179 uint8_t flags;
Al Viroe0f52112012-04-22 07:46:29 +0100180 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100181 uint8_t orig[ETH_ALEN];
182 uint8_t prev_sender[ETH_ALEN];
Marek Lindner414254e2013-04-23 21:39:58 +0800183 uint8_t reserved;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200184 uint8_t tq;
Marek Lindneref261572013-04-23 21:39:57 +0800185 __be16 tvlv_len;
Simon Wunderlich9284a472013-04-25 10:37:24 +0200186 /* __packed is not needed as the struct size is divisible by 4,
187 * and the largest data type in this struct has a size of 4.
188 */
189};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000190
Sven Eckelmann96412692012-06-05 22:31:30 +0200191#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000192
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200193/**
194 * batadv_icmp_header - common ICMP header
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100195 * @packet_type: batman-adv packet type, part of the general header
196 * @version: batman-adv protocol version, part of the genereal header
197 * @ttl: time to live for this packet, part of the genereal header
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200198 * @msg_type: ICMP packet type
199 * @dst: address of the destination node
200 * @orig: address of the source node
201 * @uid: local ICMP socket identifier
202 */
203struct batadv_icmp_header {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100204 uint8_t packet_type;
205 uint8_t version;
206 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200207 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100208 uint8_t dst[ETH_ALEN];
209 uint8_t orig[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000210 uint8_t uid;
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200211};
212
213/**
214 * batadv_icmp_packet - ICMP packet
215 * @icmph: common ICMP header
216 * @reserved: not used - useful for alignment
217 * @seqno: ICMP sequence number
218 */
219struct batadv_icmp_packet {
220 struct batadv_icmp_header icmph;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200221 uint8_t reserved;
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200222 __be16 seqno;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100223};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000224
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200225#define BATADV_RR_LEN 16
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000226
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200227/**
228 * batadv_icmp_packet_rr - ICMP RouteRecord packet
229 * @icmph: common ICMP header
230 * @rr_cur: number of entries the rr array
231 * @seqno: ICMP sequence number
232 * @rr: route record array
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200233 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200234struct batadv_icmp_packet_rr {
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200235 struct batadv_icmp_header icmph;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000236 uint8_t rr_cur;
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200237 __be16 seqno;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200238 uint8_t rr[BATADV_RR_LEN][ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100239};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000240
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200241#define BATADV_ICMP_MAX_PACKET_SIZE sizeof(struct batadv_icmp_packet_rr)
242
Sven Eckelmanne022b952012-11-05 21:25:27 +0100243/* All packet headers in front of an ethernet header have to be completely
244 * divisible by 2 but not by 4 to make the payload after the ethernet
245 * header again 4 bytes boundary aligned.
246 *
247 * A packing of 2 is necessary to avoid extra padding at the end of the struct
248 * caused by a structure member which is larger than two bytes. Otherwise
249 * the structure would not fulfill the previously mentioned rule to avoid the
250 * misalignment of the payload after the ethernet header. It may also lead to
251 * leakage of information when the padding it not initialized before sending.
252 */
253#pragma pack(2)
254
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100255/**
256 * struct batadv_unicast_packet - unicast packet for network payload
257 * @packet_type: batman-adv packet type, part of the general header
258 * @version: batman-adv protocol version, part of the genereal header
259 * @ttl: time to live for this packet, part of the genereal header
260 * @ttvn: translation table version number
261 * @dest: originator destination of the unicast packet
262 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200263struct batadv_unicast_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100264 uint8_t packet_type;
265 uint8_t version;
266 uint8_t ttl;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200267 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100268 uint8_t dest[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100269 /* "4 bytes boundary + 2 bytes" long to make the payload after the
270 * following ethernet header again 4 bytes boundary aligned
271 */
272};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000273
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200274/**
275 * struct batadv_unicast_4addr_packet - extended unicast packet
276 * @u: common unicast packet header
277 * @src: address of the source
278 * @subtype: packet subtype
279 */
280struct batadv_unicast_4addr_packet {
281 struct batadv_unicast_packet u;
282 uint8_t src[ETH_ALEN];
283 uint8_t subtype;
284 uint8_t reserved;
285 /* "4 bytes boundary + 2 bytes" long to make the payload after the
286 * following ethernet header again 4 bytes boundary aligned
287 */
288};
289
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200290/**
291 * struct batadv_frag_packet - fragmented packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100292 * @packet_type: batman-adv packet type, part of the general header
293 * @version: batman-adv protocol version, part of the genereal header
294 * @ttl: time to live for this packet, part of the genereal header
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200295 * @dest: final destination used when routing fragments
296 * @orig: originator of the fragment used when merging the packet
297 * @no: fragment number within this sequence
298 * @reserved: reserved byte for alignment
299 * @seqno: sequence identification
300 * @total_size: size of the merged packet
301 */
302struct batadv_frag_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100303 uint8_t packet_type;
304 uint8_t version; /* batman version field */
305 uint8_t ttl;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200306#if defined(__BIG_ENDIAN_BITFIELD)
307 uint8_t no:4;
308 uint8_t reserved:4;
309#elif defined(__LITTLE_ENDIAN_BITFIELD)
310 uint8_t reserved:4;
311 uint8_t no:4;
312#else
313#error "unknown bitfield endianess"
314#endif
315 uint8_t dest[ETH_ALEN];
316 uint8_t orig[ETH_ALEN];
317 __be16 seqno;
318 __be16 total_size;
319};
320
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100321/**
322 * struct batadv_bcast_packet - broadcast packet for network payload
323 * @packet_type: batman-adv packet type, part of the general header
324 * @version: batman-adv protocol version, part of the genereal header
325 * @ttl: time to live for this packet, part of the genereal header
326 * @reserved: reserved byte for alignment
327 * @seqno: sequence identification
328 * @orig: originator of the broadcast packet
329 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200330struct batadv_bcast_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100331 uint8_t packet_type;
332 uint8_t version; /* batman version field */
333 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200334 uint8_t reserved;
Al Viro3e2f1a12012-04-22 07:47:50 +0100335 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100336 uint8_t orig[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100337 /* "4 bytes boundary + 2 bytes" long to make the payload after the
338 * following ethernet header again 4 bytes boundary aligned
339 */
Sven Eckelmanne022b952012-11-05 21:25:27 +0100340};
341
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100342/**
343 * struct batadv_coded_packet - network coded packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100344 * @packet_type: batman-adv packet type, part of the general header
345 * @version: batman-adv protocol version, part of the genereal header
346 * @ttl: time to live for this packet, part of the genereal header
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100347 * @reserved: Align following fields to 2-byte boundaries
348 * @first_source: original source of first included packet
349 * @first_orig_dest: original destinal of first included packet
350 * @first_crc: checksum of first included packet
351 * @first_ttvn: tt-version number of first included packet
352 * @second_ttl: ttl of second packet
353 * @second_dest: second receiver of this coded packet
354 * @second_source: original source of second included packet
355 * @second_orig_dest: original destination of second included packet
356 * @second_crc: checksum of second included packet
357 * @second_ttvn: tt version number of second included packet
358 * @coded_len: length of network coded part of the payload
359 */
360struct batadv_coded_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100361 uint8_t packet_type;
362 uint8_t version; /* batman version field */
363 uint8_t ttl;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100364 uint8_t first_ttvn;
365 /* uint8_t first_dest[ETH_ALEN]; - saved in mac header destination */
366 uint8_t first_source[ETH_ALEN];
367 uint8_t first_orig_dest[ETH_ALEN];
368 __be32 first_crc;
369 uint8_t second_ttl;
370 uint8_t second_ttvn;
371 uint8_t second_dest[ETH_ALEN];
372 uint8_t second_source[ETH_ALEN];
373 uint8_t second_orig_dest[ETH_ALEN];
374 __be32 second_crc;
Martin Hundebølle6a0b492013-03-14 21:30:21 +0100375 __be16 coded_len;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100376};
377
Simon Wunderlich46b76e02013-12-02 20:38:30 +0100378#pragma pack()
379
Marek Lindneref261572013-04-23 21:39:57 +0800380/**
381 * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100382 * @packet_type: batman-adv packet type, part of the general header
383 * @version: batman-adv protocol version, part of the genereal header
384 * @ttl: time to live for this packet, part of the genereal header
Marek Lindneref261572013-04-23 21:39:57 +0800385 * @reserved: reserved field (for packet alignment)
386 * @src: address of the source
387 * @dst: address of the destination
388 * @tvlv_len: length of tvlv data following the unicast tvlv header
389 * @align: 2 bytes to align the header to a 4 byte boundry
390 */
391struct batadv_unicast_tvlv_packet {
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100392 uint8_t packet_type;
393 uint8_t version; /* batman version field */
394 uint8_t ttl;
Marek Lindneref261572013-04-23 21:39:57 +0800395 uint8_t reserved;
396 uint8_t dst[ETH_ALEN];
397 uint8_t src[ETH_ALEN];
398 __be16 tvlv_len;
399 uint16_t align;
400};
401
402/**
403 * struct batadv_tvlv_hdr - base tvlv header struct
404 * @type: tvlv container type (see batadv_tvlv_type)
405 * @version: tvlv container version
406 * @len: tvlv container length
407 */
408struct batadv_tvlv_hdr {
409 uint8_t type;
410 uint8_t version;
411 __be16 len;
412};
413
Marek Lindner414254e2013-04-23 21:39:58 +0800414/**
415 * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
416 * container
417 * @bandwidth_down: advertised uplink download bandwidth
418 * @bandwidth_up: advertised uplink upload bandwidth
419 */
420struct batadv_tvlv_gateway_data {
421 __be32 bandwidth_down;
422 __be32 bandwidth_up;
423};
424
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800425/**
426 * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
427 * @flags: translation table flags (see batadv_tt_data_flags)
428 * @ttvn: translation table version number
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200429 * @vlan_num: number of announced VLANs. In the TVLV this struct is followed by
430 * one batadv_tvlv_tt_vlan_data object per announced vlan
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800431 */
432struct batadv_tvlv_tt_data {
433 uint8_t flags;
434 uint8_t ttvn;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200435 __be16 num_vlan;
436};
437
438/**
439 * struct batadv_tvlv_tt_vlan_data - vlan specific tt data propagated through
440 * the tt tvlv container
441 * @crc: crc32 checksum of the entries belonging to this vlan
442 * @vid: vlan identifier
443 * @reserved: unused, useful for alignment purposes
444 */
445struct batadv_tvlv_tt_vlan_data {
446 __be32 crc;
447 __be16 vid;
Antonio Quartulliced72932013-04-24 16:37:51 +0200448 uint16_t reserved;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800449};
450
451/**
452 * struct batadv_tvlv_tt_change - translation table diff data
453 * @flags: status indicators concerning the non-mesh client (see
454 * batadv_tt_client_flags)
455 * @reserved: reserved field
456 * @addr: mac address of non-mesh client that triggered this tt change
Antonio Quartullic018ad32013-06-04 12:11:39 +0200457 * @vid: VLAN identifier
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800458 */
459struct batadv_tvlv_tt_change {
460 uint8_t flags;
461 uint8_t reserved;
462 uint8_t addr[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200463 __be16 vid;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800464};
465
Marek Lindner122edaa2013-04-23 21:40:03 +0800466/**
467 * struct batadv_tvlv_roam_adv - roaming advertisement
468 * @client: mac address of roaming client
Antonio Quartullic018ad32013-06-04 12:11:39 +0200469 * @vid: VLAN identifier
Marek Lindner122edaa2013-04-23 21:40:03 +0800470 */
471struct batadv_tvlv_roam_adv {
472 uint8_t client[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200473 __be16 vid;
Marek Lindner122edaa2013-04-23 21:40:03 +0800474};
475
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476#endif /* _NET_BATMAN_ADV_PACKET_H_ */