blob: ab3084f4f8ffb6e4df7453c2467a3ce50d9052a0 [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
25 * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers
26 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020027enum batadv_packettype {
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020028 BATADV_IV_OGM = 0x01,
29 BATADV_ICMP = 0x02,
30 BATADV_UNICAST = 0x03,
31 BATADV_BCAST = 0x04,
32 BATADV_VIS = 0x05,
33 BATADV_UNICAST_FRAG = 0x06,
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020034 BATADV_UNICAST_4ADDR = 0x09,
Martin Hundebøll3c12de92013-01-25 11:12:41 +010035 BATADV_CODED = 0x0a,
Marek Lindneref261572013-04-23 21:39:57 +080036 BATADV_UNICAST_TVLV = 0x0b,
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020037};
38
39/**
40 * enum batadv_subtype - packet subtype for unicast4addr
41 * @BATADV_P_DATA: user payload
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020042 * @BATADV_P_DAT_DHT_GET: DHT request message
43 * @BATADV_P_DAT_DHT_PUT: DHT store message
44 * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020045 */
46enum batadv_subtype {
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020047 BATADV_P_DATA = 0x01,
48 BATADV_P_DAT_DHT_GET = 0x02,
49 BATADV_P_DAT_DHT_PUT = 0x03,
50 BATADV_P_DAT_CACHE_REPLY = 0x04,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020051};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000052
53/* this file is included by batctl which needs these defines */
Antonio Quartulli60cf7982013-04-20 15:59:13 +020054#define BATADV_COMPAT_VERSION 15
Sven Eckelmanne8958db2011-06-04 11:26:00 +020055
Sven Eckelmannacd34af2012-06-03 22:19:21 +020056enum batadv_iv_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020057 BATADV_NOT_BEST_NEXT_HOP = BIT(3),
58 BATADV_PRIMARIES_FIRST_HOP = BIT(4),
59 BATADV_VIS_SERVER = BIT(5),
60 BATADV_DIRECTLINK = BIT(6),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020061};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000062
63/* ICMP message types */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020064enum batadv_icmp_packettype {
65 BATADV_ECHO_REPLY = 0,
66 BATADV_DESTINATION_UNREACHABLE = 3,
67 BATADV_ECHO_REQUEST = 8,
68 BATADV_TTL_EXCEEDED = 11,
69 BATADV_PARAMETER_PROBLEM = 12,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020070};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000071
72/* vis defines */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020073enum batadv_vis_packettype {
74 BATADV_VIS_TYPE_SERVER_SYNC = 0,
75 BATADV_VIS_TYPE_CLIENT_UPDATE = 1,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020076};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000077
78/* fragmentation defines */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020079enum batadv_unicast_frag_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020080 BATADV_UNI_FRAG_HEAD = BIT(0),
81 BATADV_UNI_FRAG_LARGETAIL = BIT(1),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020082};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000083
Marek Lindnere1bf0c12013-04-23 21:40:01 +080084/* tt data subtypes */
85#define BATADV_TT_DATA_TYPE_MASK 0x0F
Antonio Quartullia73105b2011-04-27 14:27:44 +020086
Marek Lindnere1bf0c12013-04-23 21:40:01 +080087/**
88 * enum batadv_tt_data_flags - flags for tt data tvlv
89 * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
90 * @BATADV_TT_REQUEST: TT request message
91 * @BATADV_TT_RESPONSE: TT response message
92 * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
93 */
94enum batadv_tt_data_flags {
95 BATADV_TT_OGM_DIFF = BIT(0),
96 BATADV_TT_REQUEST = BIT(1),
97 BATADV_TT_RESPONSE = BIT(2),
98 BATADV_TT_FULL_TABLE = BIT(4),
Antonio Quartullia73105b2011-04-27 14:27:44 +020099};
100
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200101/* BATADV_TT_CLIENT flags.
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200102 * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to
103 * BIT(15) are used for local computation only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200104 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200105enum batadv_tt_client_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200106 BATADV_TT_CLIENT_DEL = BIT(0),
107 BATADV_TT_CLIENT_ROAM = BIT(1),
108 BATADV_TT_CLIENT_WIFI = BIT(2),
109 BATADV_TT_CLIENT_NOPURGE = BIT(8),
110 BATADV_TT_CLIENT_NEW = BIT(9),
111 BATADV_TT_CLIENT_PENDING = BIT(10),
Antonio Quartulli0035f972013-04-24 16:37:52 +0200112 BATADV_TT_CLIENT_TEMP = BIT(11),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200113};
114
Simon Wunderlich23721382012-01-22 20:00:19 +0100115/* claim frame types for the bridge loop avoidance */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200116enum batadv_bla_claimframe {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200117 BATADV_CLAIM_TYPE_CLAIM = 0x00,
118 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200119 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
120 BATADV_CLAIM_TYPE_REQUEST = 0x03,
Simon Wunderlich23721382012-01-22 20:00:19 +0100121};
122
Marek Lindner414254e2013-04-23 21:39:58 +0800123/**
124 * enum batadv_tvlv_type - tvlv type definitions
125 * @BATADV_TVLV_GW: gateway tvlv
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800126 * @BATADV_TVLV_DAT: distributed arp table tvlv
Marek Lindner3f4841f2013-04-23 21:40:00 +0800127 * @BATADV_TVLV_NC: network coding tvlv
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800128 * @BATADV_TVLV_TT: translation table tvlv
Marek Lindner122edaa2013-04-23 21:40:03 +0800129 * @BATADV_TVLV_ROAM: roaming advertisement tvlv
Marek Lindner414254e2013-04-23 21:39:58 +0800130 */
131enum batadv_tvlv_type {
132 BATADV_TVLV_GW = 0x01,
Marek Lindner17cf0ea2013-04-23 21:39:59 +0800133 BATADV_TVLV_DAT = 0x02,
Marek Lindner3f4841f2013-04-23 21:40:00 +0800134 BATADV_TVLV_NC = 0x03,
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800135 BATADV_TVLV_TT = 0x04,
Marek Lindner122edaa2013-04-23 21:40:03 +0800136 BATADV_TVLV_ROAM = 0x05,
Marek Lindner414254e2013-04-23 21:39:58 +0800137};
138
Simon Wunderlich23721382012-01-22 20:00:19 +0100139/* the destination hardware field in the ARP frame is used to
140 * transport the claim type and the group id
141 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200142struct batadv_bla_claim_dst {
Simon Wunderlich23721382012-01-22 20:00:19 +0100143 uint8_t magic[3]; /* FF:43:05 */
144 uint8_t type; /* bla_claimframe */
Al Viro3e2f1a12012-04-22 07:47:50 +0100145 __be16 group; /* group id */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100146};
Simon Wunderlich23721382012-01-22 20:00:19 +0100147
Sven Eckelmann96412692012-06-05 22:31:30 +0200148struct batadv_header {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000149 uint8_t packet_type;
150 uint8_t version; /* batman version field */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200151 uint8_t ttl;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100152 /* the parent struct has to add a byte after the header to make
153 * everything 4 bytes aligned again
154 */
155};
Sven Eckelmann76543d12011-11-20 15:47:38 +0100156
Marek Lindneref261572013-04-23 21:39:57 +0800157/**
158 * struct batadv_ogm_packet - ogm (routing protocol) packet
159 * @header: common batman packet header
160 * @tvlv_len: length of tvlv data following the ogm header
161 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200162struct batadv_ogm_packet {
163 struct batadv_header header;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164 uint8_t flags; /* 0x40: DIRECTLINK flag, 0x20 VIS_SERVER flag... */
Al Viroe0f52112012-04-22 07:46:29 +0100165 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100166 uint8_t orig[ETH_ALEN];
167 uint8_t prev_sender[ETH_ALEN];
Marek Lindner414254e2013-04-23 21:39:58 +0800168 uint8_t reserved;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200169 uint8_t tq;
Marek Lindneref261572013-04-23 21:39:57 +0800170 __be16 tvlv_len;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000171} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000172
Sven Eckelmann96412692012-06-05 22:31:30 +0200173#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000174
Sven Eckelmann96412692012-06-05 22:31:30 +0200175struct batadv_icmp_packet {
176 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200177 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100178 uint8_t dst[ETH_ALEN];
179 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100180 __be16 seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000181 uint8_t uid;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200182 uint8_t reserved;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100183};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000184
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200185#define BATADV_RR_LEN 16
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000186
187/* icmp_packet_rr must start with all fields from imcp_packet
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200188 * as this is assumed by code that handles ICMP packets
189 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200190struct batadv_icmp_packet_rr {
191 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200192 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100193 uint8_t dst[ETH_ALEN];
194 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100195 __be16 seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000196 uint8_t uid;
197 uint8_t rr_cur;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200198 uint8_t rr[BATADV_RR_LEN][ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100199};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000200
Sven Eckelmanne022b952012-11-05 21:25:27 +0100201/* All packet headers in front of an ethernet header have to be completely
202 * divisible by 2 but not by 4 to make the payload after the ethernet
203 * header again 4 bytes boundary aligned.
204 *
205 * A packing of 2 is necessary to avoid extra padding at the end of the struct
206 * caused by a structure member which is larger than two bytes. Otherwise
207 * the structure would not fulfill the previously mentioned rule to avoid the
208 * misalignment of the payload after the ethernet header. It may also lead to
209 * leakage of information when the padding it not initialized before sending.
210 */
211#pragma pack(2)
212
Sven Eckelmann96412692012-06-05 22:31:30 +0200213struct batadv_unicast_packet {
214 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200215 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100216 uint8_t dest[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100217 /* "4 bytes boundary + 2 bytes" long to make the payload after the
218 * following ethernet header again 4 bytes boundary aligned
219 */
220};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000221
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200222/**
223 * struct batadv_unicast_4addr_packet - extended unicast packet
224 * @u: common unicast packet header
225 * @src: address of the source
226 * @subtype: packet subtype
227 */
228struct batadv_unicast_4addr_packet {
229 struct batadv_unicast_packet u;
230 uint8_t src[ETH_ALEN];
231 uint8_t subtype;
232 uint8_t reserved;
233 /* "4 bytes boundary + 2 bytes" long to make the payload after the
234 * following ethernet header again 4 bytes boundary aligned
235 */
236};
237
Sven Eckelmann96412692012-06-05 22:31:30 +0200238struct batadv_unicast_frag_packet {
239 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200240 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100241 uint8_t dest[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000242 uint8_t flags;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200243 uint8_t align;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100244 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100245 __be16 seqno;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000246} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000247
Sven Eckelmann96412692012-06-05 22:31:30 +0200248struct batadv_bcast_packet {
249 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200250 uint8_t reserved;
Al Viro3e2f1a12012-04-22 07:47:50 +0100251 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100252 uint8_t orig[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100253 /* "4 bytes boundary + 2 bytes" long to make the payload after the
254 * following ethernet header again 4 bytes boundary aligned
255 */
Sven Eckelmanne022b952012-11-05 21:25:27 +0100256};
257
258#pragma pack()
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000259
Sven Eckelmann96412692012-06-05 22:31:30 +0200260struct batadv_vis_packet {
261 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200262 uint8_t vis_type; /* which type of vis-participant sent this? */
Al Viro3e2f1a12012-04-22 07:47:50 +0100263 __be32 seqno; /* sequence number */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200264 uint8_t entries; /* number of entries behind this struct */
265 uint8_t reserved;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100266 uint8_t vis_orig[ETH_ALEN]; /* originator reporting its neighbors */
267 uint8_t target_orig[ETH_ALEN]; /* who should receive this packet */
268 uint8_t sender_orig[ETH_ALEN]; /* who sent or forwarded this packet */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100269};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000270
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100271/**
272 * struct batadv_coded_packet - network coded packet
273 * @header: common batman packet header and ttl of first included packet
274 * @reserved: Align following fields to 2-byte boundaries
275 * @first_source: original source of first included packet
276 * @first_orig_dest: original destinal of first included packet
277 * @first_crc: checksum of first included packet
278 * @first_ttvn: tt-version number of first included packet
279 * @second_ttl: ttl of second packet
280 * @second_dest: second receiver of this coded packet
281 * @second_source: original source of second included packet
282 * @second_orig_dest: original destination of second included packet
283 * @second_crc: checksum of second included packet
284 * @second_ttvn: tt version number of second included packet
285 * @coded_len: length of network coded part of the payload
286 */
287struct batadv_coded_packet {
288 struct batadv_header header;
289 uint8_t first_ttvn;
290 /* uint8_t first_dest[ETH_ALEN]; - saved in mac header destination */
291 uint8_t first_source[ETH_ALEN];
292 uint8_t first_orig_dest[ETH_ALEN];
293 __be32 first_crc;
294 uint8_t second_ttl;
295 uint8_t second_ttvn;
296 uint8_t second_dest[ETH_ALEN];
297 uint8_t second_source[ETH_ALEN];
298 uint8_t second_orig_dest[ETH_ALEN];
299 __be32 second_crc;
Martin Hundebølle6a0b492013-03-14 21:30:21 +0100300 __be16 coded_len;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100301};
302
Marek Lindneref261572013-04-23 21:39:57 +0800303/**
304 * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
305 * @header: common batman packet header
306 * @reserved: reserved field (for packet alignment)
307 * @src: address of the source
308 * @dst: address of the destination
309 * @tvlv_len: length of tvlv data following the unicast tvlv header
310 * @align: 2 bytes to align the header to a 4 byte boundry
311 */
312struct batadv_unicast_tvlv_packet {
313 struct batadv_header header;
314 uint8_t reserved;
315 uint8_t dst[ETH_ALEN];
316 uint8_t src[ETH_ALEN];
317 __be16 tvlv_len;
318 uint16_t align;
319};
320
321/**
322 * struct batadv_tvlv_hdr - base tvlv header struct
323 * @type: tvlv container type (see batadv_tvlv_type)
324 * @version: tvlv container version
325 * @len: tvlv container length
326 */
327struct batadv_tvlv_hdr {
328 uint8_t type;
329 uint8_t version;
330 __be16 len;
331};
332
Marek Lindner414254e2013-04-23 21:39:58 +0800333/**
334 * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
335 * container
336 * @bandwidth_down: advertised uplink download bandwidth
337 * @bandwidth_up: advertised uplink upload bandwidth
338 */
339struct batadv_tvlv_gateway_data {
340 __be32 bandwidth_down;
341 __be32 bandwidth_up;
342};
343
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800344/**
345 * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
346 * @flags: translation table flags (see batadv_tt_data_flags)
347 * @ttvn: translation table version number
Antonio Quartulliced72932013-04-24 16:37:51 +0200348 * @reserved: field reserved for future use
349 * @crc: crc32 checksum of the local translation table
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800350 */
351struct batadv_tvlv_tt_data {
352 uint8_t flags;
353 uint8_t ttvn;
Antonio Quartulliced72932013-04-24 16:37:51 +0200354 uint16_t reserved;
355 __be32 crc;
Marek Lindnere1bf0c12013-04-23 21:40:01 +0800356};
357
358/**
359 * struct batadv_tvlv_tt_change - translation table diff data
360 * @flags: status indicators concerning the non-mesh client (see
361 * batadv_tt_client_flags)
362 * @reserved: reserved field
363 * @addr: mac address of non-mesh client that triggered this tt change
364 */
365struct batadv_tvlv_tt_change {
366 uint8_t flags;
367 uint8_t reserved;
368 uint8_t addr[ETH_ALEN];
369};
370
Marek Lindner122edaa2013-04-23 21:40:03 +0800371/**
372 * struct batadv_tvlv_roam_adv - roaming advertisement
373 * @client: mac address of roaming client
374 * @reserved: field reserved for future use
375 */
376struct batadv_tvlv_roam_adv {
377 uint8_t client[ETH_ALEN];
378 uint16_t reserved;
379};
380
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000381#endif /* _NET_BATMAN_ADV_PACKET_H_ */