blob: 0f8dcf337df29971bcb93a27b1bf522b3985ae0c [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2007-2012 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
Sven Eckelmann7e071c72012-06-03 22:19:13 +020023#define BATADV_ETH_P_BATMAN 0x4305 /* unofficial/not registered Ethertype */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000024
Sven Eckelmannacd34af2012-06-03 22:19:21 +020025enum batadv_packettype {
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +020026 BATADV_IV_OGM = 0x01,
27 BATADV_ICMP = 0x02,
28 BATADV_UNICAST = 0x03,
29 BATADV_BCAST = 0x04,
30 BATADV_VIS = 0x05,
31 BATADV_UNICAST_FRAG = 0x06,
32 BATADV_TT_QUERY = 0x07,
33 BATADV_ROAM_ADV = 0x08,
34 BATADV_UNICAST_4ADDR = 0x09,
35};
36
37/**
38 * enum batadv_subtype - packet subtype for unicast4addr
39 * @BATADV_P_DATA: user payload
40 */
41enum batadv_subtype {
42 BATADV_P_DATA = 0x01,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020043};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000044
45/* this file is included by batctl which needs these defines */
Sven Eckelmann7e071c72012-06-03 22:19:13 +020046#define BATADV_COMPAT_VERSION 14
Sven Eckelmanne8958db2011-06-04 11:26:00 +020047
Sven Eckelmannacd34af2012-06-03 22:19:21 +020048enum batadv_iv_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020049 BATADV_NOT_BEST_NEXT_HOP = BIT(3),
50 BATADV_PRIMARIES_FIRST_HOP = BIT(4),
51 BATADV_VIS_SERVER = BIT(5),
52 BATADV_DIRECTLINK = BIT(6),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020053};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
55/* ICMP message types */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020056enum batadv_icmp_packettype {
57 BATADV_ECHO_REPLY = 0,
58 BATADV_DESTINATION_UNREACHABLE = 3,
59 BATADV_ECHO_REQUEST = 8,
60 BATADV_TTL_EXCEEDED = 11,
61 BATADV_PARAMETER_PROBLEM = 12,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020062};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063
64/* vis defines */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020065enum batadv_vis_packettype {
66 BATADV_VIS_TYPE_SERVER_SYNC = 0,
67 BATADV_VIS_TYPE_CLIENT_UPDATE = 1,
Sven Eckelmanne8958db2011-06-04 11:26:00 +020068};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069
70/* fragmentation defines */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020071enum batadv_unicast_frag_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020072 BATADV_UNI_FRAG_HEAD = BIT(0),
73 BATADV_UNI_FRAG_LARGETAIL = BIT(1),
Sven Eckelmanne8958db2011-06-04 11:26:00 +020074};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000075
Antonio Quartullia73105b2011-04-27 14:27:44 +020076/* TT_QUERY subtypes */
Sven Eckelmann7e071c72012-06-03 22:19:13 +020077#define BATADV_TT_QUERY_TYPE_MASK 0x3
Antonio Quartullia73105b2011-04-27 14:27:44 +020078
Sven Eckelmannacd34af2012-06-03 22:19:21 +020079enum batadv_tt_query_packettype {
80 BATADV_TT_REQUEST = 0,
81 BATADV_TT_RESPONSE = 1,
Antonio Quartullia73105b2011-04-27 14:27:44 +020082};
83
84/* TT_QUERY flags */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020085enum batadv_tt_query_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020086 BATADV_TT_FULL_TABLE = BIT(2),
Antonio Quartullia73105b2011-04-27 14:27:44 +020087};
88
Sven Eckelmannacd34af2012-06-03 22:19:21 +020089/* BATADV_TT_CLIENT flags.
Sven Eckelmann8de47de2012-07-08 16:32:09 +020090 * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to
91 * BIT(15) are used for local computation only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020092 */
Sven Eckelmannacd34af2012-06-03 22:19:21 +020093enum batadv_tt_client_flags {
Sven Eckelmann8de47de2012-07-08 16:32:09 +020094 BATADV_TT_CLIENT_DEL = BIT(0),
95 BATADV_TT_CLIENT_ROAM = BIT(1),
96 BATADV_TT_CLIENT_WIFI = BIT(2),
Antonio Quartulli30cfd022012-07-05 23:38:29 +020097 BATADV_TT_CLIENT_TEMP = BIT(3),
Sven Eckelmann8de47de2012-07-08 16:32:09 +020098 BATADV_TT_CLIENT_NOPURGE = BIT(8),
99 BATADV_TT_CLIENT_NEW = BIT(9),
100 BATADV_TT_CLIENT_PENDING = BIT(10),
Antonio Quartullia73105b2011-04-27 14:27:44 +0200101};
102
Simon Wunderlich23721382012-01-22 20:00:19 +0100103/* claim frame types for the bridge loop avoidance */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200104enum batadv_bla_claimframe {
Simon Wunderlich3eb87732012-06-23 12:34:18 +0200105 BATADV_CLAIM_TYPE_CLAIM = 0x00,
106 BATADV_CLAIM_TYPE_UNCLAIM = 0x01,
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200107 BATADV_CLAIM_TYPE_ANNOUNCE = 0x02,
108 BATADV_CLAIM_TYPE_REQUEST = 0x03,
Simon Wunderlich23721382012-01-22 20:00:19 +0100109};
110
111/* the destination hardware field in the ARP frame is used to
112 * transport the claim type and the group id
113 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200114struct batadv_bla_claim_dst {
Simon Wunderlich23721382012-01-22 20:00:19 +0100115 uint8_t magic[3]; /* FF:43:05 */
116 uint8_t type; /* bla_claimframe */
Al Viro3e2f1a12012-04-22 07:47:50 +0100117 __be16 group; /* group id */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100118};
Simon Wunderlich23721382012-01-22 20:00:19 +0100119
Sven Eckelmann96412692012-06-05 22:31:30 +0200120struct batadv_header {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000121 uint8_t packet_type;
122 uint8_t version; /* batman version field */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200123 uint8_t ttl;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100124 /* the parent struct has to add a byte after the header to make
125 * everything 4 bytes aligned again
126 */
127};
Sven Eckelmann76543d12011-11-20 15:47:38 +0100128
Sven Eckelmann96412692012-06-05 22:31:30 +0200129struct batadv_ogm_packet {
130 struct batadv_header header;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131 uint8_t flags; /* 0x40: DIRECTLINK flag, 0x20 VIS_SERVER flag... */
Al Viroe0f52112012-04-22 07:46:29 +0100132 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100133 uint8_t orig[ETH_ALEN];
134 uint8_t prev_sender[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135 uint8_t gw_flags; /* flags related to gateway class */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200136 uint8_t tq;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200137 uint8_t tt_num_changes;
138 uint8_t ttvn; /* translation table version number */
Al Viro16a70342012-04-22 07:45:29 +0100139 __be16 tt_crc;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000140} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000141
Sven Eckelmann96412692012-06-05 22:31:30 +0200142#define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000143
Sven Eckelmann96412692012-06-05 22:31:30 +0200144struct batadv_icmp_packet {
145 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200146 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100147 uint8_t dst[ETH_ALEN];
148 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100149 __be16 seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000150 uint8_t uid;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200151 uint8_t reserved;
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100152};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000153
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200154#define BATADV_RR_LEN 16
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000155
156/* icmp_packet_rr must start with all fields from imcp_packet
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200157 * as this is assumed by code that handles ICMP packets
158 */
Sven Eckelmann96412692012-06-05 22:31:30 +0200159struct batadv_icmp_packet_rr {
160 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200161 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100162 uint8_t dst[ETH_ALEN];
163 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100164 __be16 seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165 uint8_t uid;
166 uint8_t rr_cur;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200167 uint8_t rr[BATADV_RR_LEN][ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100168};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000169
Sven Eckelmann96412692012-06-05 22:31:30 +0200170struct batadv_unicast_packet {
171 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200172 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100173 uint8_t dest[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100174 /* "4 bytes boundary + 2 bytes" long to make the payload after the
175 * following ethernet header again 4 bytes boundary aligned
176 */
177};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200179/**
180 * struct batadv_unicast_4addr_packet - extended unicast packet
181 * @u: common unicast packet header
182 * @src: address of the source
183 * @subtype: packet subtype
184 */
185struct batadv_unicast_4addr_packet {
186 struct batadv_unicast_packet u;
187 uint8_t src[ETH_ALEN];
188 uint8_t subtype;
189 uint8_t reserved;
190 /* "4 bytes boundary + 2 bytes" long to make the payload after the
191 * following ethernet header again 4 bytes boundary aligned
192 */
193};
194
Sven Eckelmann96412692012-06-05 22:31:30 +0200195struct batadv_unicast_frag_packet {
196 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200197 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100198 uint8_t dest[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000199 uint8_t flags;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200200 uint8_t align;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100201 uint8_t orig[ETH_ALEN];
Al Viro3e2f1a12012-04-22 07:47:50 +0100202 __be16 seqno;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000203} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000204
Sven Eckelmann96412692012-06-05 22:31:30 +0200205struct batadv_bcast_packet {
206 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200207 uint8_t reserved;
Al Viro3e2f1a12012-04-22 07:47:50 +0100208 __be32 seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100209 uint8_t orig[ETH_ALEN];
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100210 /* "4 bytes boundary + 2 bytes" long to make the payload after the
211 * following ethernet header again 4 bytes boundary aligned
212 */
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000213} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000214
Sven Eckelmann96412692012-06-05 22:31:30 +0200215struct batadv_vis_packet {
216 struct batadv_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200217 uint8_t vis_type; /* which type of vis-participant sent this? */
Al Viro3e2f1a12012-04-22 07:47:50 +0100218 __be32 seqno; /* sequence number */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200219 uint8_t entries; /* number of entries behind this struct */
220 uint8_t reserved;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100221 uint8_t vis_orig[ETH_ALEN]; /* originator reporting its neighbors */
222 uint8_t target_orig[ETH_ALEN]; /* who should receive this packet */
223 uint8_t sender_orig[ETH_ALEN]; /* who sent or forwarded this packet */
Sven Eckelmannf6c57a42012-11-05 21:25:26 +0100224};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000225
Sven Eckelmann96412692012-06-05 22:31:30 +0200226struct batadv_tt_query_packet {
227 struct batadv_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200228 /* the flag field is a combination of:
229 * - TT_REQUEST or TT_RESPONSE
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200230 * - TT_FULL_TABLE
231 */
Antonio Quartullia73105b2011-04-27 14:27:44 +0200232 uint8_t flags;
233 uint8_t dst[ETH_ALEN];
234 uint8_t src[ETH_ALEN];
235 /* the ttvn field is:
236 * if TT_REQUEST: ttvn that triggered the
237 * request
238 * if TT_RESPONSE: new ttvn for the src
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200239 * orig_node
240 */
Antonio Quartullia73105b2011-04-27 14:27:44 +0200241 uint8_t ttvn;
242 /* tt_data field is:
243 * if TT_REQUEST: crc associated with the
244 * ttvn
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200245 * if TT_RESPONSE: table_size
246 */
247 __be16 tt_data;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200248} __packed;
249
Sven Eckelmann96412692012-06-05 22:31:30 +0200250struct batadv_roam_adv_packet {
251 struct batadv_header header;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200252 uint8_t reserved;
253 uint8_t dst[ETH_ALEN];
254 uint8_t src[ETH_ALEN];
255 uint8_t client[ETH_ALEN];
256} __packed;
257
Sven Eckelmann96412692012-06-05 22:31:30 +0200258struct batadv_tt_change {
Antonio Quartullia73105b2011-04-27 14:27:44 +0200259 uint8_t flags;
260 uint8_t addr[ETH_ALEN];
261} __packed;
262
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000263#endif /* _NET_BATMAN_ADV_PACKET_H_ */