blob: b5c21c418a5f4f27a19aeaef918c5b22b4bfac37 [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,
34 BATADV_TT_QUERY = 0x07,
35 BATADV_ROAM_ADV = 0x08,
36 BATADV_UNICAST_4ADDR = 0x09,
Martin Hundebøll3c12de92013-01-25 11:12:41 +010037 BATADV_CODED = 0x0a,
Marek Lindneref261572013-04-23 21:39:57 +080038 BATADV_UNICAST_TVLV = 0x0b,
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020039};
40
41/**
42 * enum batadv_subtype - packet subtype for unicast4addr
43 * @BATADV_P_DATA: user payload
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020044 * @BATADV_P_DAT_DHT_GET: DHT request message
45 * @BATADV_P_DAT_DHT_PUT: DHT store message
46 * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020047 */
48enum batadv_subtype {
Antonio Quartulli5c3a0e52011-06-02 12:29:51 +020049 BATADV_P_DATA = 0x01,
50 BATADV_P_DAT_DHT_GET = 0x02,
51 BATADV_P_DAT_DHT_PUT = 0x03,
52 BATADV_P_DAT_CACHE_REPLY = 0x04,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020053};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
55/* this file is included by batctl which needs these defines */
Antonio Quartulli60cf7982013-04-20 15:59:13 +020056#define BATADV_COMPAT_VERSION 15
Sven Eckelmanne8958db2011-06-04 11:26:00 +020057
Sven Eckelmannacd34af2012-06-03 22:19:21 +020058enum batadv_iv_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020059 BATADV_NOT_BEST_NEXT_HOP = BIT(3),
60 BATADV_PRIMARIES_FIRST_HOP = BIT(4),
61 BATADV_VIS_SERVER = BIT(5),
62 BATADV_DIRECTLINK = BIT(6),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020063};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000064
65/* ICMP message types */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020066enum batadv_icmp_packettype {
67 BATADV_ECHO_REPLY = 0,
68 BATADV_DESTINATION_UNREACHABLE = 3,
69 BATADV_ECHO_REQUEST = 8,
70 BATADV_TTL_EXCEEDED = 11,
71 BATADV_PARAMETER_PROBLEM = 12,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020072};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000073
74/* vis defines */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020075enum batadv_vis_packettype {
76 BATADV_VIS_TYPE_SERVER_SYNC = 0,
77 BATADV_VIS_TYPE_CLIENT_UPDATE = 1,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020078};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000079
80/* fragmentation defines */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020081enum batadv_unicast_frag_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020082 BATADV_UNI_FRAG_HEAD = BIT(0),
83 BATADV_UNI_FRAG_LARGETAIL = BIT(1),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020084};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000085
Antonio Quartullia73105b2011-04-27 14:27:44 +020086/* TT_QUERY subtypes */
Sven Eckelmann7e071c72012-06-03 22:19:13 +020087#define BATADV_TT_QUERY_TYPE_MASK 0x3
Antonio Quartullia73105b2011-04-27 14:27:44 +020088
Sven Eckelmannacd34af2012-06-03 22:19:21 +020089enum batadv_tt_query_packettype {
90 BATADV_TT_REQUEST = 0,
91 BATADV_TT_RESPONSE = 1,
Antonio Quartullia73105b2011-04-27 14:27:44 +020092};
93
94/* TT_QUERY flags */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020095enum batadv_tt_query_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020096 BATADV_TT_FULL_TABLE = BIT(2),
Antonio Quartullia73105b2011-04-27 14:27:44 +020097};
98
Sven Eckelmannacd34af2012-06-03 22:19:21 +020099/* BATADV_TT_CLIENT flags.
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200100 * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to
101 * BIT(15) are used for local computation only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200102 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200103enum batadv_tt_client_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200104 BATADV_TT_CLIENT_DEL = BIT(0),
105 BATADV_TT_CLIENT_ROAM = BIT(1),
106 BATADV_TT_CLIENT_WIFI = BIT(2),
Antonio Quartulli30cfd022012-07-05 23:38:29 +0200107 BATADV_TT_CLIENT_TEMP = BIT(3),
Sven Eckelmann8de47de2012-07-08 16:32:09 +0200108 BATADV_TT_CLIENT_NOPURGE = BIT(8),
109 BATADV_TT_CLIENT_NEW = BIT(9),
110 BATADV_TT_CLIENT_PENDING = BIT(10),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200111};
112
Simon Wunderlich23721382012-01-22 20:00:19 +0100113/* claim frame types for the bridge loop avoidance */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200114enum batadv_bla_claimframe {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200115 BATADV_CLAIM_TYPE_CLAIM = 0x00,
116 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200117 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
118 BATADV_CLAIM_TYPE_REQUEST = 0x03,
Simon Wunderlich23721382012-01-22 20:00:19 +0100119};
120
121/* the destination hardware field in the ARP frame is used to
122 * transport the claim type and the group id
123 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200124struct batadv_bla_claim_dst {
Simon Wunderlich23721382012-01-22 20:00:19 +0100125 uint8_t magic[3]; /* FF:43:05 */
126 uint8_t type; /* bla_claimframe */
Al Viro3e2f1a12012-04-22 07:47:50 +0100127 __be16 group; /* group id */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100128};
Simon Wunderlich23721382012-01-22 20:00:19 +0100129
Sven Eckelmann96412692012-06-05 22:31:30 +0200130struct batadv_header {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131 uint8_t packet_type;
132 uint8_t version; /* batman version field */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200133 uint8_t ttl;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100134 /* the parent struct has to add a byte after the header to make
135 * everything 4 bytes aligned again
136 */
137};
Sven Eckelmann76543d12011-11-20 15:47:38 +0100138
Marek Lindneref261572013-04-23 21:39:57 +0800139/**
140 * struct batadv_ogm_packet - ogm (routing protocol) packet
141 * @header: common batman packet header
142 * @tvlv_len: length of tvlv data following the ogm header
143 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200144struct batadv_ogm_packet {
145 struct batadv_header header;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000146 uint8_t flags; /* 0x40: DIRECTLINK flag, 0x20 VIS_SERVER flag... */
Al Viroe0f52112012-04-22 07:46:29 +0100147 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100148 uint8_t orig[ETH_ALEN];
149 uint8_t prev_sender[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000150 uint8_t gw_flags; /* flags related to gateway class */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200151 uint8_t tq;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200152 uint8_t tt_num_changes;
153 uint8_t ttvn; /* translation table version number */
Al Viro16a70342012-04-22 07:45:29 +0100154 __be16 tt_crc;
Marek Lindneref261572013-04-23 21:39:57 +0800155 __be16 tvlv_len;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000156} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157
Sven Eckelmann96412692012-06-05 22:31:30 +0200158#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000159
Sven Eckelmann96412692012-06-05 22:31:30 +0200160struct batadv_icmp_packet {
161 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200162 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100163 uint8_t dst[ETH_ALEN];
164 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100165 __be16 seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000166 uint8_t uid;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200167 uint8_t reserved;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100168};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000169
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200170#define BATADV_RR_LEN 16
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000171
172/* icmp_packet_rr must start with all fields from imcp_packet
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200173 * as this is assumed by code that handles ICMP packets
174 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200175struct batadv_icmp_packet_rr {
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;
182 uint8_t rr_cur;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200183 uint8_t rr[BATADV_RR_LEN][ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100184};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185
Sven Eckelmanne022b952012-11-05 21:25:27 +0100186/* All packet headers in front of an ethernet header have to be completely
187 * divisible by 2 but not by 4 to make the payload after the ethernet
188 * header again 4 bytes boundary aligned.
189 *
190 * A packing of 2 is necessary to avoid extra padding at the end of the struct
191 * caused by a structure member which is larger than two bytes. Otherwise
192 * the structure would not fulfill the previously mentioned rule to avoid the
193 * misalignment of the payload after the ethernet header. It may also lead to
194 * leakage of information when the padding it not initialized before sending.
195 */
196#pragma pack(2)
197
Sven Eckelmann96412692012-06-05 22:31:30 +0200198struct batadv_unicast_packet {
199 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200200 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100201 uint8_t dest[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100202 /* "4 bytes boundary + 2 bytes" long to make the payload after the
203 * following ethernet header again 4 bytes boundary aligned
204 */
205};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000206
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200207/**
208 * struct batadv_unicast_4addr_packet - extended unicast packet
209 * @u: common unicast packet header
210 * @src: address of the source
211 * @subtype: packet subtype
212 */
213struct batadv_unicast_4addr_packet {
214 struct batadv_unicast_packet u;
215 uint8_t src[ETH_ALEN];
216 uint8_t subtype;
217 uint8_t reserved;
218 /* "4 bytes boundary + 2 bytes" long to make the payload after the
219 * following ethernet header again 4 bytes boundary aligned
220 */
221};
222
Sven Eckelmann96412692012-06-05 22:31:30 +0200223struct batadv_unicast_frag_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 Eckelmannc6c8fea2010-12-13 11:19:28 +0000227 uint8_t flags;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200228 uint8_t align;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100229 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100230 __be16 seqno;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000231} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000232
Sven Eckelmann96412692012-06-05 22:31:30 +0200233struct batadv_bcast_packet {
234 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200235 uint8_t reserved;
Al Viro3e2f1a12012-04-22 07:47:50 +0100236 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100237 uint8_t orig[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100238 /* "4 bytes boundary + 2 bytes" long to make the payload after the
239 * following ethernet header again 4 bytes boundary aligned
240 */
Sven Eckelmanne022b952012-11-05 21:25:27 +0100241};
242
243#pragma pack()
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000244
Sven Eckelmann96412692012-06-05 22:31:30 +0200245struct batadv_vis_packet {
246 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200247 uint8_t vis_type; /* which type of vis-participant sent this? */
Al Viro3e2f1a12012-04-22 07:47:50 +0100248 __be32 seqno; /* sequence number */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200249 uint8_t entries; /* number of entries behind this struct */
250 uint8_t reserved;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100251 uint8_t vis_orig[ETH_ALEN]; /* originator reporting its neighbors */
252 uint8_t target_orig[ETH_ALEN]; /* who should receive this packet */
253 uint8_t sender_orig[ETH_ALEN]; /* who sent or forwarded this packet */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100254};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000255
Sven Eckelmann96412692012-06-05 22:31:30 +0200256struct batadv_tt_query_packet {
257 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200258 /* the flag field is a combination of:
259 * - TT_REQUEST or TT_RESPONSE
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200260 * - TT_FULL_TABLE
261 */
Antonio Quartullia73105b2011-04-27 14:27:44 +0200262 uint8_t flags;
263 uint8_t dst[ETH_ALEN];
264 uint8_t src[ETH_ALEN];
265 /* the ttvn field is:
266 * if TT_REQUEST: ttvn that triggered the
267 * request
268 * if TT_RESPONSE: new ttvn for the src
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200269 * orig_node
270 */
Antonio Quartullia73105b2011-04-27 14:27:44 +0200271 uint8_t ttvn;
272 /* tt_data field is:
273 * if TT_REQUEST: crc associated with the
274 * ttvn
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200275 * if TT_RESPONSE: table_size
276 */
277 __be16 tt_data;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200278} __packed;
279
Sven Eckelmann96412692012-06-05 22:31:30 +0200280struct batadv_roam_adv_packet {
281 struct batadv_header header;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200282 uint8_t reserved;
283 uint8_t dst[ETH_ALEN];
284 uint8_t src[ETH_ALEN];
285 uint8_t client[ETH_ALEN];
286} __packed;
287
Sven Eckelmann96412692012-06-05 22:31:30 +0200288struct batadv_tt_change {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200289 uint8_t flags;
290 uint8_t addr[ETH_ALEN];
291} __packed;
292
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100293/**
294 * struct batadv_coded_packet - network coded packet
295 * @header: common batman packet header and ttl of first included packet
296 * @reserved: Align following fields to 2-byte boundaries
297 * @first_source: original source of first included packet
298 * @first_orig_dest: original destinal of first included packet
299 * @first_crc: checksum of first included packet
300 * @first_ttvn: tt-version number of first included packet
301 * @second_ttl: ttl of second packet
302 * @second_dest: second receiver of this coded packet
303 * @second_source: original source of second included packet
304 * @second_orig_dest: original destination of second included packet
305 * @second_crc: checksum of second included packet
306 * @second_ttvn: tt version number of second included packet
307 * @coded_len: length of network coded part of the payload
308 */
309struct batadv_coded_packet {
310 struct batadv_header header;
311 uint8_t first_ttvn;
312 /* uint8_t first_dest[ETH_ALEN]; - saved in mac header destination */
313 uint8_t first_source[ETH_ALEN];
314 uint8_t first_orig_dest[ETH_ALEN];
315 __be32 first_crc;
316 uint8_t second_ttl;
317 uint8_t second_ttvn;
318 uint8_t second_dest[ETH_ALEN];
319 uint8_t second_source[ETH_ALEN];
320 uint8_t second_orig_dest[ETH_ALEN];
321 __be32 second_crc;
Martin Hundebølle6a0b492013-03-14 21:30:21 +0100322 __be16 coded_len;
Martin Hundebøll3c12de92013-01-25 11:12:41 +0100323};
324
Marek Lindneref261572013-04-23 21:39:57 +0800325/**
326 * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
327 * @header: common batman packet header
328 * @reserved: reserved field (for packet alignment)
329 * @src: address of the source
330 * @dst: address of the destination
331 * @tvlv_len: length of tvlv data following the unicast tvlv header
332 * @align: 2 bytes to align the header to a 4 byte boundry
333 */
334struct batadv_unicast_tvlv_packet {
335 struct batadv_header header;
336 uint8_t reserved;
337 uint8_t dst[ETH_ALEN];
338 uint8_t src[ETH_ALEN];
339 __be16 tvlv_len;
340 uint16_t align;
341};
342
343/**
344 * struct batadv_tvlv_hdr - base tvlv header struct
345 * @type: tvlv container type (see batadv_tvlv_type)
346 * @version: tvlv container version
347 * @len: tvlv container length
348 */
349struct batadv_tvlv_hdr {
350 uint8_t type;
351 uint8_t version;
352 __be16 len;
353};
354
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355#endif /* _NET_BATMAN_ADV_PACKET_H_ */