blob: fdb01637ad1f917ceac211371756a211114d40b9 [file] [log] [blame]
Sven Eckelmann9f6446c2015-04-23 13:16:35 +02001/* Copyright (C) 2007-2015 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
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020021#include <asm/byteorder.h>
22#include <linux/types.h>
23
Marek Lindneref261572013-04-23 21:39:57 +080024/**
25 * enum batadv_packettype - types for batman-adv encapsulated packets
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020026 * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV
27 * @BATADV_BCAST: broadcast packets carrying broadcast payload
28 * @BATADV_CODED: network coded packets
29 *
30 * @BATADV_UNICAST: unicast packets carrying unicast payload traffic
31 * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original
32 * payload packet
33 * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of
34 * the sender
35 * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute
Marek Lindneref261572013-04-23 21:39:57 +080036 * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers
37 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020038enum batadv_packettype {
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020039 /* 0x00 - 0x3f: local packets or special rules for handling */
40 BATADV_IV_OGM = 0x00,
41 BATADV_BCAST = 0x01,
42 BATADV_CODED = 0x02,
43 /* 0x40 - 0x7f: unicast */
44#define BATADV_UNICAST_MIN 0x40
45 BATADV_UNICAST = 0x40,
46 BATADV_UNICAST_FRAG = 0x41,
47 BATADV_UNICAST_4ADDR = 0x42,
48 BATADV_ICMP = 0x43,
49 BATADV_UNICAST_TVLV = 0x44,
50#define BATADV_UNICAST_MAX 0x7f
51 /* 0x80 - 0xff: reserved */
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020052};
53
54/**
55 * enum batadv_subtype - packet subtype for unicast4addr
56 * @BATADV_P_DATA: user payload
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020057 * @BATADV_P_DAT_DHT_GET: DHT request message
58 * @BATADV_P_DAT_DHT_PUT: DHT store message
59 * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020060 */
61enum batadv_subtype {
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020062 BATADV_P_DATA = 0x01,
63 BATADV_P_DAT_DHT_GET = 0x02,
64 BATADV_P_DAT_DHT_PUT = 0x03,
65 BATADV_P_DAT_CACHE_REPLY = 0x04,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020066};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000067
68/* this file is included by batctl which needs these defines */
Antonio Quartulli60cf7982013-04-20 15:59:13 +020069#define BATADV_COMPAT_VERSION 15
Sven Eckelmanne8958db2011-06-04 11:26:00 +020070
Simon Wunderlich18c68d52013-04-25 10:37:25 +020071/**
72 * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets
73 * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was
74 * previously received from someone else than the best neighbor.
Marek Lindner143d1572015-08-09 23:56:50 +080075 * @BATADV_PRIMARIES_FIRST_HOP: flag unused.
Simon Wunderlich18c68d52013-04-25 10:37:25 +020076 * @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
Linus Lüssingab498862014-02-15 17:47:53 +010094/**
95 * enum batadv_mcast_flags - flags for multicast capabilities and settings
96 * @BATADV_MCAST_WANT_ALL_UNSNOOPABLES: we want all packets destined for
97 * 224.0.0.0/24 or ff02::1
Linus Lüssing4c8755d2014-02-15 17:47:54 +010098 * @BATADV_MCAST_WANT_ALL_IPV4: we want all IPv4 multicast packets
99 * @BATADV_MCAST_WANT_ALL_IPV6: we want all IPv6 multicast packets
Linus Lüssingab498862014-02-15 17:47:53 +0100100 */
101enum batadv_mcast_flags {
102 BATADV_MCAST_WANT_ALL_UNSNOOPABLES = BIT(0),
Linus Lüssing4c8755d2014-02-15 17:47:54 +0100103 BATADV_MCAST_WANT_ALL_IPV4 = BIT(1),
104 BATADV_MCAST_WANT_ALL_IPV6 = BIT(2),
Linus Lüssingab498862014-02-15 17:47:53 +0100105};
106
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800107/* tt data subtypes */
108#define BATADV_TT_DATA_TYPE_MASK 0x0F
Antonio Quartullia73105b2011-04-27 14:27:44 +0200109
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800110/**
111 * enum batadv_tt_data_flags - flags for tt data tvlv
112 * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
113 * @BATADV_TT_REQUEST: TT request message
114 * @BATADV_TT_RESPONSE: TT response message
115 * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
116 */
117enum batadv_tt_data_flags {
118 BATADV_TT_OGM_DIFF = BIT(0),
119 BATADV_TT_REQUEST = BIT(1),
120 BATADV_TT_RESPONSE = BIT(2),
121 BATADV_TT_FULL_TABLE = BIT(4),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200122};
123
Antonio Quartulli43e6f652014-02-22 16:48:14 +0100124/**
125 * enum batadv_tt_client_flags - TT client specific flags
126 * @BATADV_TT_CLIENT_DEL: the client has to be deleted from the table
127 * @BATADV_TT_CLIENT_ROAM: the client roamed to/from another node and the new
128 * update telling its new real location has not been received/sent yet
129 * @BATADV_TT_CLIENT_WIFI: this client is connected through a wifi interface.
130 * This information is used by the "AP Isolation" feature
131 * @BATADV_TT_CLIENT_ISOLA: this client is considered "isolated". This
132 * information is used by the Extended Isolation feature
133 * @BATADV_TT_CLIENT_NOPURGE: this client should never be removed from the table
134 * @BATADV_TT_CLIENT_NEW: this client has been added to the local table but has
135 * not been announced yet
136 * @BATADV_TT_CLIENT_PENDING: this client is marked for removal but it is kept
137 * in the table for one more originator interval for consistency purposes
138 * @BATADV_TT_CLIENT_TEMP: this global client has been detected to be part of
139 * the network but no nnode has already announced it
140 *
141 * Bits from 0 to 7 are called _remote flags_ because they are sent on the wire.
142 * Bits from 8 to 15 are called _local flags_ because they are used for local
143 * computations only.
144 *
145 * Bits from 4 to 7 - a subset of remote flags - are ensured to be in sync with
146 * the other nodes in the network. To achieve this goal these flags are included
147 * in the TT CRC computation.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200148 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200149enum batadv_tt_client_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200150 BATADV_TT_CLIENT_DEL = BIT(0),
151 BATADV_TT_CLIENT_ROAM = BIT(1),
Antonio Quartulli0eb015682013-10-13 02:50:20 +0200152 BATADV_TT_CLIENT_WIFI = BIT(4),
Antonio Quartulli9464d072013-11-16 12:03:48 +0100153 BATADV_TT_CLIENT_ISOLA = BIT(5),
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200154 BATADV_TT_CLIENT_NOPURGE = BIT(8),
155 BATADV_TT_CLIENT_NEW = BIT(9),
156 BATADV_TT_CLIENT_PENDING = BIT(10),
Antonio Quartulli0035f972013-04-24 16:37:52 +0200157 BATADV_TT_CLIENT_TEMP = BIT(11),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200158};
159
Antonio Quartullic018ad32013-06-04 12:11:39 +0200160/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +0200161 * enum batadv_vlan_flags - flags for the four MSB of any vlan ID field
Antonio Quartullic018ad32013-06-04 12:11:39 +0200162 * @BATADV_VLAN_HAS_TAG: whether the field contains a valid vlan tag or not
163 */
164enum batadv_vlan_flags {
165 BATADV_VLAN_HAS_TAG = BIT(15),
166};
167
Simon Wunderlich23721382012-01-22 20:00:19 +0100168/* claim frame types for the bridge loop avoidance */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200169enum batadv_bla_claimframe {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200170 BATADV_CLAIM_TYPE_CLAIM = 0x00,
171 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200172 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
173 BATADV_CLAIM_TYPE_REQUEST = 0x03,
Simon Wunderlich23721382012-01-22 20:00:19 +0100174};
175
Marek Lindner414254e2013-04-23 21:39:58 +0800176/**
177 * enum batadv_tvlv_type - tvlv type definitions
178 * @BATADV_TVLV_GW: gateway tvlv
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800179 * @BATADV_TVLV_DAT: distributed arp table tvlv
Marek Lindner3f4841f2013-04-23 21:40:00 +0800180 * @BATADV_TVLV_NC: network coding tvlv
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800181 * @BATADV_TVLV_TT: translation table tvlv
Marek Lindner122edaa2013-04-23 21:40:03 +0800182 * @BATADV_TVLV_ROAM: roaming advertisement tvlv
Linus Lüssing60432d72014-02-15 17:47:51 +0100183 * @BATADV_TVLV_MCAST: multicast capability tvlv
Marek Lindner414254e2013-04-23 21:39:58 +0800184 */
185enum batadv_tvlv_type {
186 BATADV_TVLV_GW = 0x01,
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800187 BATADV_TVLV_DAT = 0x02,
Marek Lindner3f4841f2013-04-23 21:40:00 +0800188 BATADV_TVLV_NC = 0x03,
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800189 BATADV_TVLV_TT = 0x04,
Marek Lindner122edaa2013-04-23 21:40:03 +0800190 BATADV_TVLV_ROAM = 0x05,
Linus Lüssing60432d72014-02-15 17:47:51 +0100191 BATADV_TVLV_MCAST = 0x06,
Marek Lindner414254e2013-04-23 21:39:58 +0800192};
193
Simon Wunderlich2f7a3182013-12-02 20:38:33 +0100194#pragma pack(2)
Simon Wunderlich23721382012-01-22 20:00:19 +0100195/* the destination hardware field in the ARP frame is used to
196 * transport the claim type and the group id
197 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200198struct batadv_bla_claim_dst {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200199 u8 magic[3]; /* FF:43:05 */
200 u8 type; /* bla_claimframe */
Al Viro3e2f1a12012-04-22 07:47:50 +0100201 __be16 group; /* group id */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100202};
Antonio Quartulliaa143d22014-09-01 14:37:27 +0200203
Simon Wunderlich2f7a3182013-12-02 20:38:33 +0100204#pragma pack()
Simon Wunderlich23721382012-01-22 20:00:19 +0100205
Marek Lindneref261572013-04-23 21:39:57 +0800206/**
207 * struct batadv_ogm_packet - ogm (routing protocol) packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100208 * @packet_type: batman-adv packet type, part of the general header
209 * @version: batman-adv protocol version, part of the genereal header
210 * @ttl: time to live for this packet, part of the genereal header
Simon Wunderlich18c68d52013-04-25 10:37:25 +0200211 * @flags: contains routing relevant flags - see enum batadv_iv_flags
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +0100212 * @seqno: sequence identification
213 * @orig: address of the source node
214 * @prev_sender: address of the previous sender
215 * @reserved: reserved byte for alignment
216 * @tq: transmission quality
Marek Lindneref261572013-04-23 21:39:57 +0800217 * @tvlv_len: length of tvlv data following the ogm header
218 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200219struct batadv_ogm_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200220 u8 packet_type;
221 u8 version;
222 u8 ttl;
223 u8 flags;
224 __be32 seqno;
225 u8 orig[ETH_ALEN];
226 u8 prev_sender[ETH_ALEN];
227 u8 reserved;
228 u8 tq;
229 __be16 tvlv_len;
Simon Wunderlich9284a472013-04-25 10:37:24 +0200230 /* __packed is not needed as the struct size is divisible by 4,
231 * and the largest data type in this struct has a size of 4.
232 */
233};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000234
Sven Eckelmann96412692012-06-05 22:31:30 +0200235#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000236
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200237/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +0200238 * struct batadv_icmp_header - common members among all the ICMP packets
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100239 * @packet_type: batman-adv packet type, part of the general header
240 * @version: batman-adv protocol version, part of the genereal header
241 * @ttl: time to live for this packet, part of the genereal header
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200242 * @msg_type: ICMP packet type
243 * @dst: address of the destination node
244 * @orig: address of the source node
245 * @uid: local ICMP socket identifier
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100246 * @align: not used - useful for alignment purposes only
247 *
248 * This structure is used for ICMP packets parsing only and it is never sent
249 * over the wire. The alignment field at the end is there to ensure that
250 * members are padded the same way as they are in real packets.
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200251 */
252struct batadv_icmp_header {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200253 u8 packet_type;
254 u8 version;
255 u8 ttl;
256 u8 msg_type; /* see ICMP message types above */
257 u8 dst[ETH_ALEN];
258 u8 orig[ETH_ALEN];
259 u8 uid;
260 u8 align[3];
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200261};
262
263/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +0200264 * struct batadv_icmp_packet - ICMP packet
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100265 * @packet_type: batman-adv packet type, part of the general header
266 * @version: batman-adv protocol version, part of the genereal header
267 * @ttl: time to live for this packet, part of the genereal header
268 * @msg_type: ICMP packet type
269 * @dst: address of the destination node
270 * @orig: address of the source node
271 * @uid: local ICMP socket identifier
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200272 * @reserved: not used - useful for alignment
273 * @seqno: ICMP sequence number
274 */
275struct batadv_icmp_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200276 u8 packet_type;
277 u8 version;
278 u8 ttl;
279 u8 msg_type; /* see ICMP message types above */
280 u8 dst[ETH_ALEN];
281 u8 orig[ETH_ALEN];
282 u8 uid;
283 u8 reserved;
284 __be16 seqno;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100285};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000286
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200287#define BATADV_RR_LEN 16
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000288
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200289/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +0200290 * struct batadv_icmp_packet_rr - ICMP RouteRecord packet
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100291 * @packet_type: batman-adv packet type, part of the general header
292 * @version: batman-adv protocol version, part of the genereal header
293 * @ttl: time to live for this packet, part of the genereal header
294 * @msg_type: ICMP packet type
295 * @dst: address of the destination node
296 * @orig: address of the source node
297 * @uid: local ICMP socket identifier
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200298 * @rr_cur: number of entries the rr array
299 * @seqno: ICMP sequence number
300 * @rr: route record array
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200301 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200302struct batadv_icmp_packet_rr {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200303 u8 packet_type;
304 u8 version;
305 u8 ttl;
306 u8 msg_type; /* see ICMP message types above */
307 u8 dst[ETH_ALEN];
308 u8 orig[ETH_ALEN];
309 u8 uid;
310 u8 rr_cur;
311 __be16 seqno;
312 u8 rr[BATADV_RR_LEN][ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100313};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000314
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200315#define BATADV_ICMP_MAX_PACKET_SIZE sizeof(struct batadv_icmp_packet_rr)
316
Sven Eckelmanne022b952012-11-05 21:25:27 +0100317/* All packet headers in front of an ethernet header have to be completely
318 * divisible by 2 but not by 4 to make the payload after the ethernet
319 * header again 4 bytes boundary aligned.
320 *
321 * A packing of 2 is necessary to avoid extra padding at the end of the struct
322 * caused by a structure member which is larger than two bytes. Otherwise
323 * the structure would not fulfill the previously mentioned rule to avoid the
324 * misalignment of the payload after the ethernet header. It may also lead to
325 * leakage of information when the padding it not initialized before sending.
326 */
327#pragma pack(2)
328
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100329/**
330 * struct batadv_unicast_packet - unicast packet for network payload
331 * @packet_type: batman-adv packet type, part of the general header
332 * @version: batman-adv protocol version, part of the genereal header
333 * @ttl: time to live for this packet, part of the genereal header
334 * @ttvn: translation table version number
335 * @dest: originator destination of the unicast packet
336 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200337struct batadv_unicast_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200338 u8 packet_type;
339 u8 version;
340 u8 ttl;
341 u8 ttvn; /* destination translation table version number */
342 u8 dest[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100343 /* "4 bytes boundary + 2 bytes" long to make the payload after the
344 * following ethernet header again 4 bytes boundary aligned
345 */
346};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000347
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200348/**
349 * struct batadv_unicast_4addr_packet - extended unicast packet
350 * @u: common unicast packet header
351 * @src: address of the source
352 * @subtype: packet subtype
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +0100353 * @reserved: reserved byte for alignment
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200354 */
355struct batadv_unicast_4addr_packet {
356 struct batadv_unicast_packet u;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200357 u8 src[ETH_ALEN];
358 u8 subtype;
359 u8 reserved;
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200360 /* "4 bytes boundary + 2 bytes" long to make the payload after the
361 * following ethernet header again 4 bytes boundary aligned
362 */
363};
364
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200365/**
366 * struct batadv_frag_packet - fragmented packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100367 * @packet_type: batman-adv packet type, part of the general header
368 * @version: batman-adv protocol version, part of the genereal header
369 * @ttl: time to live for this packet, part of the genereal header
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200370 * @dest: final destination used when routing fragments
371 * @orig: originator of the fragment used when merging the packet
372 * @no: fragment number within this sequence
373 * @reserved: reserved byte for alignment
374 * @seqno: sequence identification
375 * @total_size: size of the merged packet
376 */
377struct batadv_frag_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200378 u8 packet_type;
379 u8 version; /* batman version field */
380 u8 ttl;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200381#if defined(__BIG_ENDIAN_BITFIELD)
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200382 u8 no:4;
383 u8 reserved:4;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200384#elif defined(__LITTLE_ENDIAN_BITFIELD)
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200385 u8 reserved:4;
386 u8 no:4;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200387#else
Antonio Quartulli3f687852014-11-02 11:29:56 +0100388#error "unknown bitfield endianness"
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200389#endif
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200390 u8 dest[ETH_ALEN];
391 u8 orig[ETH_ALEN];
392 __be16 seqno;
393 __be16 total_size;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200394};
395
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100396/**
397 * struct batadv_bcast_packet - broadcast packet for network payload
398 * @packet_type: batman-adv packet type, part of the general header
399 * @version: batman-adv protocol version, part of the genereal header
400 * @ttl: time to live for this packet, part of the genereal header
401 * @reserved: reserved byte for alignment
402 * @seqno: sequence identification
403 * @orig: originator of the broadcast packet
404 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200405struct batadv_bcast_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200406 u8 packet_type;
407 u8 version; /* batman version field */
408 u8 ttl;
409 u8 reserved;
410 __be32 seqno;
411 u8 orig[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100412 /* "4 bytes boundary + 2 bytes" long to make the payload after the
413 * following ethernet header again 4 bytes boundary aligned
414 */
Sven Eckelmanne022b952012-11-05 21:25:27 +0100415};
416
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100417/**
418 * struct batadv_coded_packet - network coded packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100419 * @packet_type: batman-adv packet type, part of the general header
420 * @version: batman-adv protocol version, part of the genereal header
421 * @ttl: time to live for this packet, part of the genereal header
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100422 * @first_source: original source of first included packet
423 * @first_orig_dest: original destinal of first included packet
424 * @first_crc: checksum of first included packet
425 * @first_ttvn: tt-version number of first included packet
426 * @second_ttl: ttl of second packet
427 * @second_dest: second receiver of this coded packet
428 * @second_source: original source of second included packet
429 * @second_orig_dest: original destination of second included packet
430 * @second_crc: checksum of second included packet
431 * @second_ttvn: tt version number of second included packet
432 * @coded_len: length of network coded part of the payload
433 */
434struct batadv_coded_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200435 u8 packet_type;
436 u8 version; /* batman version field */
437 u8 ttl;
438 u8 first_ttvn;
439 /* u8 first_dest[ETH_ALEN]; - saved in mac header destination */
440 u8 first_source[ETH_ALEN];
441 u8 first_orig_dest[ETH_ALEN];
442 __be32 first_crc;
443 u8 second_ttl;
444 u8 second_ttvn;
445 u8 second_dest[ETH_ALEN];
446 u8 second_source[ETH_ALEN];
447 u8 second_orig_dest[ETH_ALEN];
448 __be32 second_crc;
449 __be16 coded_len;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100450};
451
Simon Wunderlich46b76e02013-12-02 20:38:30 +0100452#pragma pack()
453
Marek Lindneref261572013-04-23 21:39:57 +0800454/**
455 * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100456 * @packet_type: batman-adv packet type, part of the general header
457 * @version: batman-adv protocol version, part of the genereal header
458 * @ttl: time to live for this packet, part of the genereal header
Marek Lindneref261572013-04-23 21:39:57 +0800459 * @reserved: reserved field (for packet alignment)
460 * @src: address of the source
461 * @dst: address of the destination
462 * @tvlv_len: length of tvlv data following the unicast tvlv header
Antonio Quartulli3f687852014-11-02 11:29:56 +0100463 * @align: 2 bytes to align the header to a 4 byte boundary
Marek Lindneref261572013-04-23 21:39:57 +0800464 */
465struct batadv_unicast_tvlv_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200466 u8 packet_type;
467 u8 version; /* batman version field */
468 u8 ttl;
469 u8 reserved;
470 u8 dst[ETH_ALEN];
471 u8 src[ETH_ALEN];
472 __be16 tvlv_len;
473 u16 align;
Marek Lindneref261572013-04-23 21:39:57 +0800474};
475
476/**
477 * struct batadv_tvlv_hdr - base tvlv header struct
478 * @type: tvlv container type (see batadv_tvlv_type)
479 * @version: tvlv container version
480 * @len: tvlv container length
481 */
482struct batadv_tvlv_hdr {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200483 u8 type;
484 u8 version;
485 __be16 len;
Marek Lindneref261572013-04-23 21:39:57 +0800486};
487
Marek Lindner414254e2013-04-23 21:39:58 +0800488/**
489 * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
490 * container
491 * @bandwidth_down: advertised uplink download bandwidth
492 * @bandwidth_up: advertised uplink upload bandwidth
493 */
494struct batadv_tvlv_gateway_data {
495 __be32 bandwidth_down;
496 __be32 bandwidth_up;
497};
498
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800499/**
500 * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
501 * @flags: translation table flags (see batadv_tt_data_flags)
502 * @ttvn: translation table version number
Sven Eckelmanne51f0392015-09-06 21:38:51 +0200503 * @num_vlan: number of announced VLANs. In the TVLV this struct is followed by
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200504 * one batadv_tvlv_tt_vlan_data object per announced vlan
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800505 */
506struct batadv_tvlv_tt_data {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200507 u8 flags;
508 u8 ttvn;
509 __be16 num_vlan;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200510};
511
512/**
513 * struct batadv_tvlv_tt_vlan_data - vlan specific tt data propagated through
514 * the tt tvlv container
515 * @crc: crc32 checksum of the entries belonging to this vlan
516 * @vid: vlan identifier
517 * @reserved: unused, useful for alignment purposes
518 */
519struct batadv_tvlv_tt_vlan_data {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200520 __be32 crc;
521 __be16 vid;
522 u16 reserved;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800523};
524
525/**
526 * struct batadv_tvlv_tt_change - translation table diff data
527 * @flags: status indicators concerning the non-mesh client (see
528 * batadv_tt_client_flags)
Antonio Quartullica663042013-12-15 13:26:55 +0100529 * @reserved: reserved field - useful for alignment purposes only
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800530 * @addr: mac address of non-mesh client that triggered this tt change
Antonio Quartullic018ad32013-06-04 12:11:39 +0200531 * @vid: VLAN identifier
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800532 */
533struct batadv_tvlv_tt_change {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200534 u8 flags;
535 u8 reserved[3];
536 u8 addr[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200537 __be16 vid;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800538};
539
Marek Lindner122edaa2013-04-23 21:40:03 +0800540/**
541 * struct batadv_tvlv_roam_adv - roaming advertisement
542 * @client: mac address of roaming client
Antonio Quartullic018ad32013-06-04 12:11:39 +0200543 * @vid: VLAN identifier
Marek Lindner122edaa2013-04-23 21:40:03 +0800544 */
545struct batadv_tvlv_roam_adv {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200546 u8 client[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200547 __be16 vid;
Marek Lindner122edaa2013-04-23 21:40:03 +0800548};
549
Linus Lüssing60432d72014-02-15 17:47:51 +0100550/**
551 * struct batadv_tvlv_mcast_data - payload of a multicast tvlv
552 * @flags: multicast flags announced by the orig node
553 * @reserved: reserved field
554 */
555struct batadv_tvlv_mcast_data {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200556 u8 flags;
557 u8 reserved[3];
Linus Lüssing60432d72014-02-15 17:47:51 +0100558};
559
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000560#endif /* _NET_BATMAN_ADV_PACKET_H_ */