blob: c698b64529532c985b0e3f90503197cee6ee030c [file] [log] [blame]
Sven Eckelmann0046b042016-01-01 00:01:03 +01001/* Copyright (C) 2007-2016 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
Linus Luessingd6f94d92016-01-16 16:40:09 +080029 * @BATADV_ELP: echo location packets for B.A.T.M.A.N. V
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020030 *
31 * @BATADV_UNICAST: unicast packets carrying unicast payload traffic
32 * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original
33 * payload packet
34 * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of
35 * the sender
36 * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute
Marek Lindneref261572013-04-23 21:39:57 +080037 * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers
38 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020039enum batadv_packettype {
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020040 /* 0x00 - 0x3f: local packets or special rules for handling */
41 BATADV_IV_OGM = 0x00,
42 BATADV_BCAST = 0x01,
43 BATADV_CODED = 0x02,
Linus Luessingd6f94d92016-01-16 16:40:09 +080044 BATADV_ELP = 0x03,
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +020045 /* 0x40 - 0x7f: unicast */
46#define BATADV_UNICAST_MIN 0x40
47 BATADV_UNICAST = 0x40,
48 BATADV_UNICAST_FRAG = 0x41,
49 BATADV_UNICAST_4ADDR = 0x42,
50 BATADV_ICMP = 0x43,
51 BATADV_UNICAST_TVLV = 0x44,
52#define BATADV_UNICAST_MAX 0x7f
53 /* 0x80 - 0xff: reserved */
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020054};
55
56/**
57 * enum batadv_subtype - packet subtype for unicast4addr
58 * @BATADV_P_DATA: user payload
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020059 * @BATADV_P_DAT_DHT_GET: DHT request message
60 * @BATADV_P_DAT_DHT_PUT: DHT store message
61 * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020062 */
63enum batadv_subtype {
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020064 BATADV_P_DATA = 0x01,
65 BATADV_P_DAT_DHT_GET = 0x02,
66 BATADV_P_DAT_DHT_PUT = 0x03,
67 BATADV_P_DAT_CACHE_REPLY = 0x04,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020068};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069
70/* this file is included by batctl which needs these defines */
Antonio Quartulli60cf7982013-04-20 15:59:13 +020071#define BATADV_COMPAT_VERSION 15
Sven Eckelmanne8958db2011-06-04 11:26:00 +020072
Simon Wunderlich18c68d52013-04-25 10:37:25 +020073/**
74 * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets
75 * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was
76 * previously received from someone else than the best neighbor.
Marek Lindner143d1572015-08-09 23:56:50 +080077 * @BATADV_PRIMARIES_FIRST_HOP: flag unused.
Simon Wunderlich18c68d52013-04-25 10:37:25 +020078 * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a
79 * one hop neighbor on the interface where it was originally received.
80 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020081enum batadv_iv_flags {
Simon Wunderlich18c68d52013-04-25 10:37:25 +020082 BATADV_NOT_BEST_NEXT_HOP = BIT(0),
83 BATADV_PRIMARIES_FIRST_HOP = BIT(1),
84 BATADV_DIRECTLINK = BIT(2),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020085};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000086
87/* ICMP message types */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020088enum batadv_icmp_packettype {
89 BATADV_ECHO_REPLY = 0,
90 BATADV_DESTINATION_UNREACHABLE = 3,
91 BATADV_ECHO_REQUEST = 8,
92 BATADV_TTL_EXCEEDED = 11,
93 BATADV_PARAMETER_PROBLEM = 12,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020094};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000095
Linus Lüssingab498862014-02-15 17:47:53 +010096/**
97 * enum batadv_mcast_flags - flags for multicast capabilities and settings
98 * @BATADV_MCAST_WANT_ALL_UNSNOOPABLES: we want all packets destined for
99 * 224.0.0.0/24 or ff02::1
Linus Lüssing4c8755d2014-02-15 17:47:54 +0100100 * @BATADV_MCAST_WANT_ALL_IPV4: we want all IPv4 multicast packets
101 * @BATADV_MCAST_WANT_ALL_IPV6: we want all IPv6 multicast packets
Linus Lüssingab498862014-02-15 17:47:53 +0100102 */
103enum batadv_mcast_flags {
104 BATADV_MCAST_WANT_ALL_UNSNOOPABLES = BIT(0),
Linus Lüssing4c8755d2014-02-15 17:47:54 +0100105 BATADV_MCAST_WANT_ALL_IPV4 = BIT(1),
106 BATADV_MCAST_WANT_ALL_IPV6 = BIT(2),
Linus Lüssingab498862014-02-15 17:47:53 +0100107};
108
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800109/* tt data subtypes */
110#define BATADV_TT_DATA_TYPE_MASK 0x0F
Antonio Quartullia73105b2011-04-27 14:27:44 +0200111
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800112/**
113 * enum batadv_tt_data_flags - flags for tt data tvlv
114 * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
115 * @BATADV_TT_REQUEST: TT request message
116 * @BATADV_TT_RESPONSE: TT response message
117 * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
118 */
119enum batadv_tt_data_flags {
120 BATADV_TT_OGM_DIFF = BIT(0),
121 BATADV_TT_REQUEST = BIT(1),
122 BATADV_TT_RESPONSE = BIT(2),
123 BATADV_TT_FULL_TABLE = BIT(4),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200124};
125
Antonio Quartulli43e6f652014-02-22 16:48:14 +0100126/**
127 * enum batadv_tt_client_flags - TT client specific flags
128 * @BATADV_TT_CLIENT_DEL: the client has to be deleted from the table
129 * @BATADV_TT_CLIENT_ROAM: the client roamed to/from another node and the new
130 * update telling its new real location has not been received/sent yet
131 * @BATADV_TT_CLIENT_WIFI: this client is connected through a wifi interface.
132 * This information is used by the "AP Isolation" feature
133 * @BATADV_TT_CLIENT_ISOLA: this client is considered "isolated". This
134 * information is used by the Extended Isolation feature
135 * @BATADV_TT_CLIENT_NOPURGE: this client should never be removed from the table
136 * @BATADV_TT_CLIENT_NEW: this client has been added to the local table but has
137 * not been announced yet
138 * @BATADV_TT_CLIENT_PENDING: this client is marked for removal but it is kept
139 * in the table for one more originator interval for consistency purposes
140 * @BATADV_TT_CLIENT_TEMP: this global client has been detected to be part of
141 * the network but no nnode has already announced it
142 *
143 * Bits from 0 to 7 are called _remote flags_ because they are sent on the wire.
144 * Bits from 8 to 15 are called _local flags_ because they are used for local
145 * computations only.
146 *
147 * Bits from 4 to 7 - a subset of remote flags - are ensured to be in sync with
148 * the other nodes in the network. To achieve this goal these flags are included
149 * in the TT CRC computation.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200150 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200151enum batadv_tt_client_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200152 BATADV_TT_CLIENT_DEL = BIT(0),
153 BATADV_TT_CLIENT_ROAM = BIT(1),
Antonio Quartulli0eb015682013-10-13 02:50:20 +0200154 BATADV_TT_CLIENT_WIFI = BIT(4),
Antonio Quartulli9464d072013-11-16 12:03:48 +0100155 BATADV_TT_CLIENT_ISOLA = BIT(5),
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200156 BATADV_TT_CLIENT_NOPURGE = BIT(8),
157 BATADV_TT_CLIENT_NEW = BIT(9),
158 BATADV_TT_CLIENT_PENDING = BIT(10),
Antonio Quartulli0035f972013-04-24 16:37:52 +0200159 BATADV_TT_CLIENT_TEMP = BIT(11),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200160};
161
Antonio Quartullic018ad32013-06-04 12:11:39 +0200162/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +0200163 * enum batadv_vlan_flags - flags for the four MSB of any vlan ID field
Antonio Quartullic018ad32013-06-04 12:11:39 +0200164 * @BATADV_VLAN_HAS_TAG: whether the field contains a valid vlan tag or not
165 */
166enum batadv_vlan_flags {
167 BATADV_VLAN_HAS_TAG = BIT(15),
168};
169
Simon Wunderlich23721382012-01-22 20:00:19 +0100170/* claim frame types for the bridge loop avoidance */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200171enum batadv_bla_claimframe {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200172 BATADV_CLAIM_TYPE_CLAIM = 0x00,
173 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200174 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
175 BATADV_CLAIM_TYPE_REQUEST = 0x03,
Simon Wunderlich23721382012-01-22 20:00:19 +0100176};
177
Marek Lindner414254e2013-04-23 21:39:58 +0800178/**
179 * enum batadv_tvlv_type - tvlv type definitions
180 * @BATADV_TVLV_GW: gateway tvlv
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800181 * @BATADV_TVLV_DAT: distributed arp table tvlv
Marek Lindner3f4841f2013-04-23 21:40:00 +0800182 * @BATADV_TVLV_NC: network coding tvlv
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800183 * @BATADV_TVLV_TT: translation table tvlv
Marek Lindner122edaa2013-04-23 21:40:03 +0800184 * @BATADV_TVLV_ROAM: roaming advertisement tvlv
Linus Lüssing60432d72014-02-15 17:47:51 +0100185 * @BATADV_TVLV_MCAST: multicast capability tvlv
Marek Lindner414254e2013-04-23 21:39:58 +0800186 */
187enum batadv_tvlv_type {
188 BATADV_TVLV_GW = 0x01,
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800189 BATADV_TVLV_DAT = 0x02,
Marek Lindner3f4841f2013-04-23 21:40:00 +0800190 BATADV_TVLV_NC = 0x03,
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800191 BATADV_TVLV_TT = 0x04,
Marek Lindner122edaa2013-04-23 21:40:03 +0800192 BATADV_TVLV_ROAM = 0x05,
Linus Lüssing60432d72014-02-15 17:47:51 +0100193 BATADV_TVLV_MCAST = 0x06,
Marek Lindner414254e2013-04-23 21:39:58 +0800194};
195
Simon Wunderlich2f7a3182013-12-02 20:38:33 +0100196#pragma pack(2)
Simon Wunderlich23721382012-01-22 20:00:19 +0100197/* the destination hardware field in the ARP frame is used to
198 * transport the claim type and the group id
199 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200200struct batadv_bla_claim_dst {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200201 u8 magic[3]; /* FF:43:05 */
202 u8 type; /* bla_claimframe */
Al Viro3e2f1a12012-04-22 07:47:50 +0100203 __be16 group; /* group id */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100204};
Antonio Quartulliaa143d22014-09-01 14:37:27 +0200205
Simon Wunderlich2f7a3182013-12-02 20:38:33 +0100206#pragma pack()
Simon Wunderlich23721382012-01-22 20:00:19 +0100207
Marek Lindneref261572013-04-23 21:39:57 +0800208/**
209 * struct batadv_ogm_packet - ogm (routing protocol) packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100210 * @packet_type: batman-adv packet type, part of the general header
211 * @version: batman-adv protocol version, part of the genereal header
212 * @ttl: time to live for this packet, part of the genereal header
Simon Wunderlich18c68d52013-04-25 10:37:25 +0200213 * @flags: contains routing relevant flags - see enum batadv_iv_flags
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +0100214 * @seqno: sequence identification
215 * @orig: address of the source node
216 * @prev_sender: address of the previous sender
217 * @reserved: reserved byte for alignment
218 * @tq: transmission quality
Marek Lindneref261572013-04-23 21:39:57 +0800219 * @tvlv_len: length of tvlv data following the ogm header
220 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200221struct batadv_ogm_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200222 u8 packet_type;
223 u8 version;
224 u8 ttl;
225 u8 flags;
226 __be32 seqno;
227 u8 orig[ETH_ALEN];
228 u8 prev_sender[ETH_ALEN];
229 u8 reserved;
230 u8 tq;
231 __be16 tvlv_len;
Simon Wunderlich9284a472013-04-25 10:37:24 +0200232 /* __packed is not needed as the struct size is divisible by 4,
233 * and the largest data type in this struct has a size of 4.
234 */
235};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000236
Sven Eckelmann96412692012-06-05 22:31:30 +0200237#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000238
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200239/**
Linus Luessingd6f94d92016-01-16 16:40:09 +0800240 * struct batadv_elp_packet - elp (neighbor discovery) packet
241 * @packet_type: batman-adv packet type, part of the general header
242 * @version: batman-adv protocol version, part of the genereal header
243 * @orig: originator mac address
244 * @seqno: sequence number
245 * @elp_interval: currently used ELP sending interval in ms
246 */
247struct batadv_elp_packet {
248 u8 packet_type;
249 u8 version;
250 u8 orig[ETH_ALEN];
251 __be32 seqno;
252 __be32 elp_interval;
253};
254
255#define BATADV_ELP_HLEN sizeof(struct batadv_elp_packet)
256
257/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +0200258 * struct batadv_icmp_header - common members among all the ICMP packets
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100259 * @packet_type: batman-adv packet type, part of the general header
260 * @version: batman-adv protocol version, part of the genereal header
261 * @ttl: time to live for this packet, part of the genereal header
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200262 * @msg_type: ICMP packet type
263 * @dst: address of the destination node
264 * @orig: address of the source node
265 * @uid: local ICMP socket identifier
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100266 * @align: not used - useful for alignment purposes only
267 *
268 * This structure is used for ICMP packets parsing only and it is never sent
269 * over the wire. The alignment field at the end is there to ensure that
270 * members are padded the same way as they are in real packets.
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200271 */
272struct batadv_icmp_header {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200273 u8 packet_type;
274 u8 version;
275 u8 ttl;
276 u8 msg_type; /* see ICMP message types above */
277 u8 dst[ETH_ALEN];
278 u8 orig[ETH_ALEN];
279 u8 uid;
280 u8 align[3];
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200281};
282
283/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +0200284 * struct batadv_icmp_packet - ICMP packet
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100285 * @packet_type: batman-adv packet type, part of the general header
286 * @version: batman-adv protocol version, part of the genereal header
287 * @ttl: time to live for this packet, part of the genereal header
288 * @msg_type: ICMP packet type
289 * @dst: address of the destination node
290 * @orig: address of the source node
291 * @uid: local ICMP socket identifier
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200292 * @reserved: not used - useful for alignment
293 * @seqno: ICMP sequence number
294 */
295struct batadv_icmp_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200296 u8 packet_type;
297 u8 version;
298 u8 ttl;
299 u8 msg_type; /* see ICMP message types above */
300 u8 dst[ETH_ALEN];
301 u8 orig[ETH_ALEN];
302 u8 uid;
303 u8 reserved;
304 __be16 seqno;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100305};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200307#define BATADV_RR_LEN 16
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000308
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200309/**
Sven Eckelmann6f68b002015-09-06 21:38:49 +0200310 * struct batadv_icmp_packet_rr - ICMP RouteRecord packet
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100311 * @packet_type: batman-adv packet type, part of the general header
312 * @version: batman-adv protocol version, part of the genereal header
313 * @ttl: time to live for this packet, part of the genereal header
314 * @msg_type: ICMP packet type
315 * @dst: address of the destination node
316 * @orig: address of the source node
317 * @uid: local ICMP socket identifier
Antonio Quartulli0bf84c12013-05-18 14:56:57 +0200318 * @rr_cur: number of entries the rr array
319 * @seqno: ICMP sequence number
320 * @rr: route record array
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200321 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200322struct batadv_icmp_packet_rr {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200323 u8 packet_type;
324 u8 version;
325 u8 ttl;
326 u8 msg_type; /* see ICMP message types above */
327 u8 dst[ETH_ALEN];
328 u8 orig[ETH_ALEN];
329 u8 uid;
330 u8 rr_cur;
331 __be16 seqno;
332 u8 rr[BATADV_RR_LEN][ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100333};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000334
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200335#define BATADV_ICMP_MAX_PACKET_SIZE sizeof(struct batadv_icmp_packet_rr)
336
Sven Eckelmanne022b952012-11-05 21:25:27 +0100337/* All packet headers in front of an ethernet header have to be completely
338 * divisible by 2 but not by 4 to make the payload after the ethernet
339 * header again 4 bytes boundary aligned.
340 *
341 * A packing of 2 is necessary to avoid extra padding at the end of the struct
342 * caused by a structure member which is larger than two bytes. Otherwise
343 * the structure would not fulfill the previously mentioned rule to avoid the
344 * misalignment of the payload after the ethernet header. It may also lead to
345 * leakage of information when the padding it not initialized before sending.
346 */
347#pragma pack(2)
348
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100349/**
350 * struct batadv_unicast_packet - unicast packet for network payload
351 * @packet_type: batman-adv packet type, part of the general header
352 * @version: batman-adv protocol version, part of the genereal header
353 * @ttl: time to live for this packet, part of the genereal header
354 * @ttvn: translation table version number
355 * @dest: originator destination of the unicast packet
356 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200357struct batadv_unicast_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200358 u8 packet_type;
359 u8 version;
360 u8 ttl;
361 u8 ttvn; /* destination translation table version number */
362 u8 dest[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100363 /* "4 bytes boundary + 2 bytes" long to make the payload after the
364 * following ethernet header again 4 bytes boundary aligned
365 */
366};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000367
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200368/**
369 * struct batadv_unicast_4addr_packet - extended unicast packet
370 * @u: common unicast packet header
371 * @src: address of the source
372 * @subtype: packet subtype
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +0100373 * @reserved: reserved byte for alignment
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200374 */
375struct batadv_unicast_4addr_packet {
376 struct batadv_unicast_packet u;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200377 u8 src[ETH_ALEN];
378 u8 subtype;
379 u8 reserved;
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200380 /* "4 bytes boundary + 2 bytes" long to make the payload after the
381 * following ethernet header again 4 bytes boundary aligned
382 */
383};
384
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200385/**
386 * struct batadv_frag_packet - fragmented packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100387 * @packet_type: batman-adv packet type, part of the general header
388 * @version: batman-adv protocol version, part of the genereal header
389 * @ttl: time to live for this packet, part of the genereal header
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200390 * @dest: final destination used when routing fragments
391 * @orig: originator of the fragment used when merging the packet
392 * @no: fragment number within this sequence
393 * @reserved: reserved byte for alignment
394 * @seqno: sequence identification
395 * @total_size: size of the merged packet
396 */
397struct batadv_frag_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200398 u8 packet_type;
399 u8 version; /* batman version field */
400 u8 ttl;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200401#if defined(__BIG_ENDIAN_BITFIELD)
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200402 u8 no:4;
403 u8 reserved:4;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200404#elif defined(__LITTLE_ENDIAN_BITFIELD)
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200405 u8 reserved:4;
406 u8 no:4;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200407#else
Antonio Quartulli3f687852014-11-02 11:29:56 +0100408#error "unknown bitfield endianness"
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200409#endif
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200410 u8 dest[ETH_ALEN];
411 u8 orig[ETH_ALEN];
412 __be16 seqno;
413 __be16 total_size;
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200414};
415
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100416/**
417 * struct batadv_bcast_packet - broadcast packet for network payload
418 * @packet_type: batman-adv packet type, part of the general header
419 * @version: batman-adv protocol version, part of the genereal header
420 * @ttl: time to live for this packet, part of the genereal header
421 * @reserved: reserved byte for alignment
422 * @seqno: sequence identification
423 * @orig: originator of the broadcast packet
424 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200425struct batadv_bcast_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200426 u8 packet_type;
427 u8 version; /* batman version field */
428 u8 ttl;
429 u8 reserved;
430 __be32 seqno;
431 u8 orig[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100432 /* "4 bytes boundary + 2 bytes" long to make the payload after the
433 * following ethernet header again 4 bytes boundary aligned
434 */
Sven Eckelmanne022b952012-11-05 21:25:27 +0100435};
436
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100437/**
438 * struct batadv_coded_packet - network coded packet
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100439 * @packet_type: batman-adv packet type, part of the general header
440 * @version: batman-adv protocol version, part of the genereal header
441 * @ttl: time to live for this packet, part of the genereal header
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100442 * @first_source: original source of first included packet
443 * @first_orig_dest: original destinal of first included packet
444 * @first_crc: checksum of first included packet
445 * @first_ttvn: tt-version number of first included packet
446 * @second_ttl: ttl of second packet
447 * @second_dest: second receiver of this coded packet
448 * @second_source: original source of second included packet
449 * @second_orig_dest: original destination of second included packet
450 * @second_crc: checksum of second included packet
451 * @second_ttvn: tt version number of second included packet
452 * @coded_len: length of network coded part of the payload
453 */
454struct batadv_coded_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200455 u8 packet_type;
456 u8 version; /* batman version field */
457 u8 ttl;
458 u8 first_ttvn;
459 /* u8 first_dest[ETH_ALEN]; - saved in mac header destination */
460 u8 first_source[ETH_ALEN];
461 u8 first_orig_dest[ETH_ALEN];
462 __be32 first_crc;
463 u8 second_ttl;
464 u8 second_ttvn;
465 u8 second_dest[ETH_ALEN];
466 u8 second_source[ETH_ALEN];
467 u8 second_orig_dest[ETH_ALEN];
468 __be32 second_crc;
469 __be16 coded_len;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100470};
471
Simon Wunderlich46b76e02013-12-02 20:38:30 +0100472#pragma pack()
473
Marek Lindneref261572013-04-23 21:39:57 +0800474/**
475 * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100476 * @packet_type: batman-adv packet type, part of the general header
477 * @version: batman-adv protocol version, part of the genereal header
478 * @ttl: time to live for this packet, part of the genereal header
Marek Lindneref261572013-04-23 21:39:57 +0800479 * @reserved: reserved field (for packet alignment)
480 * @src: address of the source
481 * @dst: address of the destination
482 * @tvlv_len: length of tvlv data following the unicast tvlv header
Antonio Quartulli3f687852014-11-02 11:29:56 +0100483 * @align: 2 bytes to align the header to a 4 byte boundary
Marek Lindneref261572013-04-23 21:39:57 +0800484 */
485struct batadv_unicast_tvlv_packet {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200486 u8 packet_type;
487 u8 version; /* batman version field */
488 u8 ttl;
489 u8 reserved;
490 u8 dst[ETH_ALEN];
491 u8 src[ETH_ALEN];
492 __be16 tvlv_len;
493 u16 align;
Marek Lindneref261572013-04-23 21:39:57 +0800494};
495
496/**
497 * struct batadv_tvlv_hdr - base tvlv header struct
498 * @type: tvlv container type (see batadv_tvlv_type)
499 * @version: tvlv container version
500 * @len: tvlv container length
501 */
502struct batadv_tvlv_hdr {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200503 u8 type;
504 u8 version;
505 __be16 len;
Marek Lindneref261572013-04-23 21:39:57 +0800506};
507
Marek Lindner414254e2013-04-23 21:39:58 +0800508/**
509 * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
510 * container
511 * @bandwidth_down: advertised uplink download bandwidth
512 * @bandwidth_up: advertised uplink upload bandwidth
513 */
514struct batadv_tvlv_gateway_data {
515 __be32 bandwidth_down;
516 __be32 bandwidth_up;
517};
518
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800519/**
520 * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
521 * @flags: translation table flags (see batadv_tt_data_flags)
522 * @ttvn: translation table version number
Sven Eckelmanne51f0392015-09-06 21:38:51 +0200523 * @num_vlan: number of announced VLANs. In the TVLV this struct is followed by
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200524 * one batadv_tvlv_tt_vlan_data object per announced vlan
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800525 */
526struct batadv_tvlv_tt_data {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200527 u8 flags;
528 u8 ttvn;
529 __be16 num_vlan;
Antonio Quartulli7ea7b4a2013-07-30 22:16:25 +0200530};
531
532/**
533 * struct batadv_tvlv_tt_vlan_data - vlan specific tt data propagated through
534 * the tt tvlv container
535 * @crc: crc32 checksum of the entries belonging to this vlan
536 * @vid: vlan identifier
537 * @reserved: unused, useful for alignment purposes
538 */
539struct batadv_tvlv_tt_vlan_data {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200540 __be32 crc;
541 __be16 vid;
542 u16 reserved;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800543};
544
545/**
546 * struct batadv_tvlv_tt_change - translation table diff data
547 * @flags: status indicators concerning the non-mesh client (see
548 * batadv_tt_client_flags)
Antonio Quartullica663042013-12-15 13:26:55 +0100549 * @reserved: reserved field - useful for alignment purposes only
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800550 * @addr: mac address of non-mesh client that triggered this tt change
Antonio Quartullic018ad32013-06-04 12:11:39 +0200551 * @vid: VLAN identifier
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800552 */
553struct batadv_tvlv_tt_change {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200554 u8 flags;
555 u8 reserved[3];
556 u8 addr[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200557 __be16 vid;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800558};
559
Marek Lindner122edaa2013-04-23 21:40:03 +0800560/**
561 * struct batadv_tvlv_roam_adv - roaming advertisement
562 * @client: mac address of roaming client
Antonio Quartullic018ad32013-06-04 12:11:39 +0200563 * @vid: VLAN identifier
Marek Lindner122edaa2013-04-23 21:40:03 +0800564 */
565struct batadv_tvlv_roam_adv {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200566 u8 client[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200567 __be16 vid;
Marek Lindner122edaa2013-04-23 21:40:03 +0800568};
569
Linus Lüssing60432d72014-02-15 17:47:51 +0100570/**
571 * struct batadv_tvlv_mcast_data - payload of a multicast tvlv
572 * @flags: multicast flags announced by the orig node
573 * @reserved: reserved field
574 */
575struct batadv_tvlv_mcast_data {
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200576 u8 flags;
577 u8 reserved[3];
Linus Lüssing60432d72014-02-15 17:47:51 +0100578};
579
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000580#endif /* _NET_BATMAN_ADV_PACKET_H_ */