blob: 4e5fe7d0dcbe2054cfe536e53eb68f292a250741 [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
Sven Eckelmannacd34af2012-06-03 22:19:21 +020070enum batadv_iv_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020071 BATADV_NOT_BEST_NEXT_HOP = BIT(3),
72 BATADV_PRIMARIES_FIRST_HOP = BIT(4),
Sven Eckelmann8de47de2012-07-08 16:32:09 +020073 BATADV_DIRECTLINK = BIT(6),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020074};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000075
76/* ICMP message types */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020077enum batadv_icmp_packettype {
78 BATADV_ECHO_REPLY = 0,
79 BATADV_DESTINATION_UNREACHABLE = 3,
80 BATADV_ECHO_REQUEST = 8,
81 BATADV_TTL_EXCEEDED = 11,
82 BATADV_PARAMETER_PROBLEM = 12,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020083};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000084
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000085/* fragmentation defines */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020086enum batadv_unicast_frag_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020087 BATADV_UNI_FRAG_HEAD = BIT(0),
88 BATADV_UNI_FRAG_LARGETAIL = BIT(1),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020089};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000090
Marek Lindnere1bf0c12013-04-23 21:40:01 +080091/* tt data subtypes */
92#define BATADV_TT_DATA_TYPE_MASK 0x0F
Antonio Quartullia73105b2011-04-27 14:27:44 +020093
Marek Lindnere1bf0c12013-04-23 21:40:01 +080094/**
95 * enum batadv_tt_data_flags - flags for tt data tvlv
96 * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
97 * @BATADV_TT_REQUEST: TT request message
98 * @BATADV_TT_RESPONSE: TT response message
99 * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
100 */
101enum batadv_tt_data_flags {
102 BATADV_TT_OGM_DIFF = BIT(0),
103 BATADV_TT_REQUEST = BIT(1),
104 BATADV_TT_RESPONSE = BIT(2),
105 BATADV_TT_FULL_TABLE = BIT(4),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200106};
107
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200108/* BATADV_TT_CLIENT flags.
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200109 * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to
110 * BIT(15) are used for local computation only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200111 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200112enum batadv_tt_client_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200113 BATADV_TT_CLIENT_DEL = BIT(0),
114 BATADV_TT_CLIENT_ROAM = BIT(1),
115 BATADV_TT_CLIENT_WIFI = BIT(2),
116 BATADV_TT_CLIENT_NOPURGE = BIT(8),
117 BATADV_TT_CLIENT_NEW = BIT(9),
118 BATADV_TT_CLIENT_PENDING = BIT(10),
Antonio Quartulli0035f972013-04-24 16:37:52 +0200119 BATADV_TT_CLIENT_TEMP = BIT(11),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200120};
121
Simon Wunderlich23721382012-01-22 20:00:19 +0100122/* claim frame types for the bridge loop avoidance */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200123enum batadv_bla_claimframe {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200124 BATADV_CLAIM_TYPE_CLAIM = 0x00,
125 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200126 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
127 BATADV_CLAIM_TYPE_REQUEST = 0x03,
Simon Wunderlich23721382012-01-22 20:00:19 +0100128};
129
Marek Lindner414254e2013-04-23 21:39:58 +0800130/**
131 * enum batadv_tvlv_type - tvlv type definitions
132 * @BATADV_TVLV_GW: gateway tvlv
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800133 * @BATADV_TVLV_DAT: distributed arp table tvlv
Marek Lindner3f4841f2013-04-23 21:40:00 +0800134 * @BATADV_TVLV_NC: network coding tvlv
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800135 * @BATADV_TVLV_TT: translation table tvlv
Marek Lindner122edaa2013-04-23 21:40:03 +0800136 * @BATADV_TVLV_ROAM: roaming advertisement tvlv
Marek Lindner414254e2013-04-23 21:39:58 +0800137 */
138enum batadv_tvlv_type {
139 BATADV_TVLV_GW = 0x01,
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800140 BATADV_TVLV_DAT = 0x02,
Marek Lindner3f4841f2013-04-23 21:40:00 +0800141 BATADV_TVLV_NC = 0x03,
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800142 BATADV_TVLV_TT = 0x04,
Marek Lindner122edaa2013-04-23 21:40:03 +0800143 BATADV_TVLV_ROAM = 0x05,
Marek Lindner414254e2013-04-23 21:39:58 +0800144};
145
Simon Wunderlich23721382012-01-22 20:00:19 +0100146/* the destination hardware field in the ARP frame is used to
147 * transport the claim type and the group id
148 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200149struct batadv_bla_claim_dst {
Simon Wunderlich23721382012-01-22 20:00:19 +0100150 uint8_t magic[3]; /* FF:43:05 */
151 uint8_t type; /* bla_claimframe */
Al Viro3e2f1a12012-04-22 07:47:50 +0100152 __be16 group; /* group id */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100153};
Simon Wunderlich23721382012-01-22 20:00:19 +0100154
Sven Eckelmann96412692012-06-05 22:31:30 +0200155struct batadv_header {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000156 uint8_t packet_type;
157 uint8_t version; /* batman version field */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200158 uint8_t ttl;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100159 /* the parent struct has to add a byte after the header to make
160 * everything 4 bytes aligned again
161 */
162};
Sven Eckelmann76543d12011-11-20 15:47:38 +0100163
Marek Lindneref261572013-04-23 21:39:57 +0800164/**
165 * struct batadv_ogm_packet - ogm (routing protocol) packet
166 * @header: common batman packet header
167 * @tvlv_len: length of tvlv data following the ogm header
168 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200169struct batadv_ogm_packet {
170 struct batadv_header header;
Simon Wunderlich9f4980e2013-04-25 11:57:42 +0200171 uint8_t flags; /* 0x40: DIRECTLINK flag ... */
Al Viroe0f52112012-04-22 07:46:29 +0100172 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100173 uint8_t orig[ETH_ALEN];
174 uint8_t prev_sender[ETH_ALEN];
Marek Lindner414254e2013-04-23 21:39:58 +0800175 uint8_t reserved;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200176 uint8_t tq;
Marek Lindneref261572013-04-23 21:39:57 +0800177 __be16 tvlv_len;
Simon Wunderlich9284a472013-04-25 10:37:24 +0200178 /* __packed is not needed as the struct size is divisible by 4,
179 * and the largest data type in this struct has a size of 4.
180 */
181};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000182
Sven Eckelmann96412692012-06-05 22:31:30 +0200183#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000184
Sven Eckelmann96412692012-06-05 22:31:30 +0200185struct batadv_icmp_packet {
186 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200187 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100188 uint8_t dst[ETH_ALEN];
189 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100190 __be16 seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000191 uint8_t uid;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200192 uint8_t reserved;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100193};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000194
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200195#define BATADV_RR_LEN 16
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196
197/* icmp_packet_rr must start with all fields from imcp_packet
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200198 * as this is assumed by code that handles ICMP packets
199 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200200struct batadv_icmp_packet_rr {
201 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200202 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100203 uint8_t dst[ETH_ALEN];
204 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100205 __be16 seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000206 uint8_t uid;
207 uint8_t rr_cur;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200208 uint8_t rr[BATADV_RR_LEN][ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100209};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000210
Sven Eckelmanne022b952012-11-05 21:25:27 +0100211/* All packet headers in front of an ethernet header have to be completely
212 * divisible by 2 but not by 4 to make the payload after the ethernet
213 * header again 4 bytes boundary aligned.
214 *
215 * A packing of 2 is necessary to avoid extra padding at the end of the struct
216 * caused by a structure member which is larger than two bytes. Otherwise
217 * the structure would not fulfill the previously mentioned rule to avoid the
218 * misalignment of the payload after the ethernet header. It may also lead to
219 * leakage of information when the padding it not initialized before sending.
220 */
221#pragma pack(2)
222
Sven Eckelmann96412692012-06-05 22:31:30 +0200223struct batadv_unicast_packet {
224 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200225 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100226 uint8_t dest[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100227 /* "4 bytes boundary + 2 bytes" long to make the payload after the
228 * following ethernet header again 4 bytes boundary aligned
229 */
230};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000231
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200232/**
233 * struct batadv_unicast_4addr_packet - extended unicast packet
234 * @u: common unicast packet header
235 * @src: address of the source
236 * @subtype: packet subtype
237 */
238struct batadv_unicast_4addr_packet {
239 struct batadv_unicast_packet u;
240 uint8_t src[ETH_ALEN];
241 uint8_t subtype;
242 uint8_t reserved;
243 /* "4 bytes boundary + 2 bytes" long to make the payload after the
244 * following ethernet header again 4 bytes boundary aligned
245 */
246};
247
Sven Eckelmann96412692012-06-05 22:31:30 +0200248struct batadv_unicast_frag_packet {
249 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200250 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100251 uint8_t dest[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000252 uint8_t flags;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200253 uint8_t align;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100254 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100255 __be16 seqno;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000256} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000257
Sven Eckelmann96412692012-06-05 22:31:30 +0200258struct batadv_bcast_packet {
259 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200260 uint8_t reserved;
Al Viro3e2f1a12012-04-22 07:47:50 +0100261 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100262 uint8_t orig[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100263 /* "4 bytes boundary + 2 bytes" long to make the payload after the
264 * following ethernet header again 4 bytes boundary aligned
265 */
Sven Eckelmanne022b952012-11-05 21:25:27 +0100266};
267
268#pragma pack()
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000269
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100270/**
271 * struct batadv_coded_packet - network coded packet
272 * @header: common batman packet header and ttl of first included packet
273 * @reserved: Align following fields to 2-byte boundaries
274 * @first_source: original source of first included packet
275 * @first_orig_dest: original destinal of first included packet
276 * @first_crc: checksum of first included packet
277 * @first_ttvn: tt-version number of first included packet
278 * @second_ttl: ttl of second packet
279 * @second_dest: second receiver of this coded packet
280 * @second_source: original source of second included packet
281 * @second_orig_dest: original destination of second included packet
282 * @second_crc: checksum of second included packet
283 * @second_ttvn: tt version number of second included packet
284 * @coded_len: length of network coded part of the payload
285 */
286struct batadv_coded_packet {
287 struct batadv_header header;
288 uint8_t first_ttvn;
289 /* uint8_t first_dest[ETH_ALEN]; - saved in mac header destination */
290 uint8_t first_source[ETH_ALEN];
291 uint8_t first_orig_dest[ETH_ALEN];
292 __be32 first_crc;
293 uint8_t second_ttl;
294 uint8_t second_ttvn;
295 uint8_t second_dest[ETH_ALEN];
296 uint8_t second_source[ETH_ALEN];
297 uint8_t second_orig_dest[ETH_ALEN];
298 __be32 second_crc;
Martin Hundebølle6a0b492013-03-14 21:30:21 +0100299 __be16 coded_len;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100300};
301
Marek Lindneref261572013-04-23 21:39:57 +0800302/**
303 * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
304 * @header: common batman packet header
305 * @reserved: reserved field (for packet alignment)
306 * @src: address of the source
307 * @dst: address of the destination
308 * @tvlv_len: length of tvlv data following the unicast tvlv header
309 * @align: 2 bytes to align the header to a 4 byte boundry
310 */
311struct batadv_unicast_tvlv_packet {
312 struct batadv_header header;
313 uint8_t reserved;
314 uint8_t dst[ETH_ALEN];
315 uint8_t src[ETH_ALEN];
316 __be16 tvlv_len;
317 uint16_t align;
318};
319
320/**
321 * struct batadv_tvlv_hdr - base tvlv header struct
322 * @type: tvlv container type (see batadv_tvlv_type)
323 * @version: tvlv container version
324 * @len: tvlv container length
325 */
326struct batadv_tvlv_hdr {
327 uint8_t type;
328 uint8_t version;
329 __be16 len;
330};
331
Marek Lindner414254e2013-04-23 21:39:58 +0800332/**
333 * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
334 * container
335 * @bandwidth_down: advertised uplink download bandwidth
336 * @bandwidth_up: advertised uplink upload bandwidth
337 */
338struct batadv_tvlv_gateway_data {
339 __be32 bandwidth_down;
340 __be32 bandwidth_up;
341};
342
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800343/**
344 * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
345 * @flags: translation table flags (see batadv_tt_data_flags)
346 * @ttvn: translation table version number
Antonio Quartulliced72932013-04-24 16:37:51 +0200347 * @reserved: field reserved for future use
348 * @crc: crc32 checksum of the local translation table
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800349 */
350struct batadv_tvlv_tt_data {
351 uint8_t flags;
352 uint8_t ttvn;
Antonio Quartulliced72932013-04-24 16:37:51 +0200353 uint16_t reserved;
354 __be32 crc;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800355};
356
357/**
358 * struct batadv_tvlv_tt_change - translation table diff data
359 * @flags: status indicators concerning the non-mesh client (see
360 * batadv_tt_client_flags)
361 * @reserved: reserved field
362 * @addr: mac address of non-mesh client that triggered this tt change
363 */
364struct batadv_tvlv_tt_change {
365 uint8_t flags;
366 uint8_t reserved;
367 uint8_t addr[ETH_ALEN];
368};
369
Marek Lindner122edaa2013-04-23 21:40:03 +0800370/**
371 * struct batadv_tvlv_roam_adv - roaming advertisement
372 * @client: mac address of roaming client
373 * @reserved: field reserved for future use
374 */
375struct batadv_tvlv_roam_adv {
376 uint8_t client[ETH_ALEN];
377 uint16_t reserved;
378};
379
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000380#endif /* _NET_BATMAN_ADV_PACKET_H_ */