blob: 59800e82371a428ab2ff501fa6f8f802af8bedb2 [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann567db7b2012-01-01 00:41:38 +01002 * Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00003 *
4 * Marek Lindner, Simon Wunderlich
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA
19 *
20 */
21
22#ifndef _NET_BATMAN_ADV_PACKET_H_
23#define _NET_BATMAN_ADV_PACKET_H_
24
25#define ETH_P_BATMAN 0x4305 /* unofficial/not registered Ethertype */
26
Sven Eckelmanne8958db2011-06-04 11:26:00 +020027enum bat_packettype {
Marek Lindnerb6da4bf2011-07-29 17:31:50 +020028 BAT_OGM = 0x01,
29 BAT_ICMP = 0x02,
30 BAT_UNICAST = 0x03,
31 BAT_BCAST = 0x04,
32 BAT_VIS = 0x05,
Antonio Quartullia73105b2011-04-27 14:27:44 +020033 BAT_UNICAST_FRAG = 0x06,
Marek Lindnerb6da4bf2011-07-29 17:31:50 +020034 BAT_TT_QUERY = 0x07,
35 BAT_ROAM_ADV = 0x08
Sven Eckelmanne8958db2011-06-04 11:26:00 +020036};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000037
38/* this file is included by batctl which needs these defines */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +020039#define COMPAT_VERSION 14
Sven Eckelmanne8958db2011-06-04 11:26:00 +020040
41enum batman_flags {
42 PRIMARIES_FIRST_HOP = 1 << 4,
43 VIS_SERVER = 1 << 5,
44 DIRECTLINK = 1 << 6
45};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000046
47/* ICMP message types */
Sven Eckelmanne8958db2011-06-04 11:26:00 +020048enum icmp_packettype {
49 ECHO_REPLY = 0,
50 DESTINATION_UNREACHABLE = 3,
51 ECHO_REQUEST = 8,
52 TTL_EXCEEDED = 11,
53 PARAMETER_PROBLEM = 12
54};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000055
56/* vis defines */
Sven Eckelmanne8958db2011-06-04 11:26:00 +020057enum vis_packettype {
58 VIS_TYPE_SERVER_SYNC = 0,
59 VIS_TYPE_CLIENT_UPDATE = 1
60};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000061
62/* fragmentation defines */
Sven Eckelmanne8958db2011-06-04 11:26:00 +020063enum unicast_frag_flags {
64 UNI_FRAG_HEAD = 1 << 0,
65 UNI_FRAG_LARGETAIL = 1 << 1
66};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000067
Antonio Quartullia73105b2011-04-27 14:27:44 +020068/* TT_QUERY subtypes */
69#define TT_QUERY_TYPE_MASK 0x3
70
71enum tt_query_packettype {
72 TT_REQUEST = 0,
73 TT_RESPONSE = 1
74};
75
76/* TT_QUERY flags */
77enum tt_query_flags {
78 TT_FULL_TABLE = 1 << 2
79};
80
Antonio Quartulli5fbc1592011-06-17 16:11:27 +020081/* TT_CLIENT flags.
82 * Flags from 1 to 1 << 7 are sent on the wire, while flags from 1 << 8 to
83 * 1 << 15 are used for local computation only */
84enum tt_client_flags {
85 TT_CLIENT_DEL = 1 << 0,
86 TT_CLIENT_ROAM = 1 << 1,
Antonio Quartullibc279082011-07-07 15:35:35 +020087 TT_CLIENT_WIFI = 1 << 2,
Antonio Quartulli058d0e22011-07-07 01:40:58 +020088 TT_CLIENT_NOPURGE = 1 << 8,
89 TT_CLIENT_NEW = 1 << 9,
90 TT_CLIENT_PENDING = 1 << 10
Antonio Quartullia73105b2011-04-27 14:27:44 +020091};
92
Simon Wunderlich23721382012-01-22 20:00:19 +010093/* claim frame types for the bridge loop avoidance */
94enum bla_claimframe {
95 CLAIM_TYPE_ADD = 0x00,
96 CLAIM_TYPE_DEL = 0x01,
97 CLAIM_TYPE_ANNOUNCE = 0x02,
98 CLAIM_TYPE_REQUEST = 0x03
99};
100
101/* the destination hardware field in the ARP frame is used to
102 * transport the claim type and the group id
103 */
104struct bla_claim_dst {
105 uint8_t magic[3]; /* FF:43:05 */
106 uint8_t type; /* bla_claimframe */
107 uint16_t group; /* group id */
108} __packed;
109
Sven Eckelmann76543d12011-11-20 15:47:38 +0100110struct batman_header {
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111 uint8_t packet_type;
112 uint8_t version; /* batman version field */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200113 uint8_t ttl;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100114} __packed;
115
116struct batman_ogm_packet {
117 struct batman_header header;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000118 uint8_t flags; /* 0x40: DIRECTLINK flag, 0x20 VIS_SERVER flag... */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000119 uint32_t seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100120 uint8_t orig[ETH_ALEN];
121 uint8_t prev_sender[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000122 uint8_t gw_flags; /* flags related to gateway class */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200123 uint8_t tq;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200124 uint8_t tt_num_changes;
125 uint8_t ttvn; /* translation table version number */
126 uint16_t tt_crc;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000127} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000128
Marek Lindnerb6da4bf2011-07-29 17:31:50 +0200129#define BATMAN_OGM_LEN sizeof(struct batman_ogm_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130
131struct icmp_packet {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100132 struct batman_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200133 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100134 uint8_t dst[ETH_ALEN];
135 uint8_t orig[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000136 uint16_t seqno;
137 uint8_t uid;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200138 uint8_t reserved;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000139} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140
141#define BAT_RR_LEN 16
142
143/* icmp_packet_rr must start with all fields from imcp_packet
144 * as this is assumed by code that handles ICMP packets */
145struct icmp_packet_rr {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100146 struct batman_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200147 uint8_t msg_type; /* see ICMP message types above */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100148 uint8_t dst[ETH_ALEN];
149 uint8_t orig[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000150 uint16_t seqno;
151 uint8_t uid;
152 uint8_t rr_cur;
153 uint8_t rr[BAT_RR_LEN][ETH_ALEN];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000154} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000155
156struct unicast_packet {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100157 struct batman_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200158 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100159 uint8_t dest[ETH_ALEN];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000160} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161
162struct unicast_frag_packet {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100163 struct batman_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200164 uint8_t ttvn; /* destination translation table version number */
Antonio Quartullic1faead2012-01-30 20:59:17 +0100165 uint8_t dest[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000166 uint8_t flags;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200167 uint8_t align;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100168 uint8_t orig[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000169 uint16_t seqno;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000170} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000171
172struct bcast_packet {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100173 struct batman_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200174 uint8_t reserved;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000175 uint32_t seqno;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100176 uint8_t orig[ETH_ALEN];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000177} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178
179struct vis_packet {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100180 struct batman_header header;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200181 uint8_t vis_type; /* which type of vis-participant sent this? */
182 uint32_t seqno; /* sequence number */
183 uint8_t entries; /* number of entries behind this struct */
184 uint8_t reserved;
Antonio Quartullic1faead2012-01-30 20:59:17 +0100185 uint8_t vis_orig[ETH_ALEN]; /* originator reporting its neighbors */
186 uint8_t target_orig[ETH_ALEN]; /* who should receive this packet */
187 uint8_t sender_orig[ETH_ALEN]; /* who sent or forwarded this packet */
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000188} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000189
Antonio Quartullia73105b2011-04-27 14:27:44 +0200190struct tt_query_packet {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100191 struct batman_header header;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200192 /* the flag field is a combination of:
193 * - TT_REQUEST or TT_RESPONSE
194 * - TT_FULL_TABLE */
195 uint8_t flags;
196 uint8_t dst[ETH_ALEN];
197 uint8_t src[ETH_ALEN];
198 /* the ttvn field is:
199 * if TT_REQUEST: ttvn that triggered the
200 * request
201 * if TT_RESPONSE: new ttvn for the src
202 * orig_node */
203 uint8_t ttvn;
204 /* tt_data field is:
205 * if TT_REQUEST: crc associated with the
206 * ttvn
207 * if TT_RESPONSE: table_size */
208 uint16_t tt_data;
209} __packed;
210
Antonio Quartullicc47f662011-04-27 14:27:57 +0200211struct roam_adv_packet {
Sven Eckelmann76543d12011-11-20 15:47:38 +0100212 struct batman_header header;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200213 uint8_t reserved;
214 uint8_t dst[ETH_ALEN];
215 uint8_t src[ETH_ALEN];
216 uint8_t client[ETH_ALEN];
217} __packed;
218
Antonio Quartullia73105b2011-04-27 14:27:44 +0200219struct tt_change {
220 uint8_t flags;
221 uint8_t addr[ETH_ALEN];
222} __packed;
223
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000224#endif /* _NET_BATMAN_ADV_PACKET_H_ */