blob: c5f081dfc6d18245a12d9cd59c43ad27162c4f2d [file] [log] [blame]
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001/*
Sven Eckelmann64afe352011-01-27 10:38:15 +01002 * Copyright (C) 2007-2011 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 {
28 BAT_PACKET = 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,
Antonio Quartullicc47f662011-04-27 14:27:57 +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
81/* TT_CHANGE flags */
82enum tt_change_flags {
83 TT_CHANGE_DEL = 0x01,
84 TT_CLIENT_ROAM = 0x02
85};
86
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000087struct batman_packet {
88 uint8_t packet_type;
89 uint8_t version; /* batman version field */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +020090 uint8_t ttl;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091 uint8_t flags; /* 0x40: DIRECTLINK flag, 0x20 VIS_SERVER flag... */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000092 uint32_t seqno;
93 uint8_t orig[6];
94 uint8_t prev_sender[6];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000095 uint8_t gw_flags; /* flags related to gateway class */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +020096 uint8_t tq;
Antonio Quartullia73105b2011-04-27 14:27:44 +020097 uint8_t tt_num_changes;
98 uint8_t ttvn; /* translation table version number */
99 uint16_t tt_crc;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000100} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000101
102#define BAT_PACKET_LEN sizeof(struct batman_packet)
103
104struct icmp_packet {
105 uint8_t packet_type;
106 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000107 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200108 uint8_t msg_type; /* see ICMP message types above */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000109 uint8_t dst[6];
110 uint8_t orig[6];
111 uint16_t seqno;
112 uint8_t uid;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200113 uint8_t reserved;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000114} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000115
116#define BAT_RR_LEN 16
117
118/* icmp_packet_rr must start with all fields from imcp_packet
119 * as this is assumed by code that handles ICMP packets */
120struct icmp_packet_rr {
121 uint8_t packet_type;
122 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000123 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200124 uint8_t msg_type; /* see ICMP message types above */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000125 uint8_t dst[6];
126 uint8_t orig[6];
127 uint16_t seqno;
128 uint8_t uid;
129 uint8_t rr_cur;
130 uint8_t rr[BAT_RR_LEN][ETH_ALEN];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000131} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000132
133struct unicast_packet {
134 uint8_t packet_type;
135 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000136 uint8_t ttl;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200137 uint8_t ttvn; /* destination translation table version number */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200138 uint8_t dest[6];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000139} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000140
141struct unicast_frag_packet {
142 uint8_t packet_type;
143 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000144 uint8_t ttl;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200145 uint8_t ttvn; /* destination translation table version number */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200146 uint8_t dest[6];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000147 uint8_t flags;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200148 uint8_t align;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000149 uint8_t orig[6];
150 uint16_t seqno;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000151} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000152
153struct bcast_packet {
154 uint8_t packet_type;
155 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000156 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200157 uint8_t reserved;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158 uint32_t seqno;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200159 uint8_t orig[6];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000160} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161
162struct vis_packet {
163 uint8_t packet_type;
164 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165 uint8_t ttl; /* TTL */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200166 uint8_t vis_type; /* which type of vis-participant sent this? */
167 uint32_t seqno; /* sequence number */
168 uint8_t entries; /* number of entries behind this struct */
169 uint8_t reserved;
Sven Eckelmann6e215fd2011-05-08 12:45:45 +0200170 uint8_t vis_orig[6]; /* originator that announces its neighbors */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000171 uint8_t target_orig[6]; /* who should receive this packet */
172 uint8_t sender_orig[6]; /* who sent or rebroadcasted this packet */
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000173} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000174
Antonio Quartullia73105b2011-04-27 14:27:44 +0200175struct tt_query_packet {
176 uint8_t packet_type;
177 uint8_t version; /* batman version field */
178 uint8_t ttl;
179 /* the flag field is a combination of:
180 * - TT_REQUEST or TT_RESPONSE
181 * - TT_FULL_TABLE */
182 uint8_t flags;
183 uint8_t dst[ETH_ALEN];
184 uint8_t src[ETH_ALEN];
185 /* the ttvn field is:
186 * if TT_REQUEST: ttvn that triggered the
187 * request
188 * if TT_RESPONSE: new ttvn for the src
189 * orig_node */
190 uint8_t ttvn;
191 /* tt_data field is:
192 * if TT_REQUEST: crc associated with the
193 * ttvn
194 * if TT_RESPONSE: table_size */
195 uint16_t tt_data;
196} __packed;
197
Antonio Quartullicc47f662011-04-27 14:27:57 +0200198struct roam_adv_packet {
199 uint8_t packet_type;
200 uint8_t version;
201 uint8_t ttl;
202 uint8_t reserved;
203 uint8_t dst[ETH_ALEN];
204 uint8_t src[ETH_ALEN];
205 uint8_t client[ETH_ALEN];
206} __packed;
207
Antonio Quartullia73105b2011-04-27 14:27:44 +0200208struct tt_change {
209 uint8_t flags;
210 uint8_t addr[ETH_ALEN];
211} __packed;
212
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000213#endif /* _NET_BATMAN_ADV_PACKET_H_ */