blob: 407dd2e84affc93e9a2d73523ee4ea08545509b2 [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,
34 BAT_TT_QUERY = 0x07
Sven Eckelmanne8958db2011-06-04 11:26:00 +020035};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000036
37/* this file is included by batctl which needs these defines */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +020038#define COMPAT_VERSION 14
Sven Eckelmanne8958db2011-06-04 11:26:00 +020039
40enum batman_flags {
41 PRIMARIES_FIRST_HOP = 1 << 4,
42 VIS_SERVER = 1 << 5,
43 DIRECTLINK = 1 << 6
44};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000045
46/* ICMP message types */
Sven Eckelmanne8958db2011-06-04 11:26:00 +020047enum icmp_packettype {
48 ECHO_REPLY = 0,
49 DESTINATION_UNREACHABLE = 3,
50 ECHO_REQUEST = 8,
51 TTL_EXCEEDED = 11,
52 PARAMETER_PROBLEM = 12
53};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000054
55/* vis defines */
Sven Eckelmanne8958db2011-06-04 11:26:00 +020056enum vis_packettype {
57 VIS_TYPE_SERVER_SYNC = 0,
58 VIS_TYPE_CLIENT_UPDATE = 1
59};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060
61/* fragmentation defines */
Sven Eckelmanne8958db2011-06-04 11:26:00 +020062enum unicast_frag_flags {
63 UNI_FRAG_HEAD = 1 << 0,
64 UNI_FRAG_LARGETAIL = 1 << 1
65};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066
Antonio Quartullia73105b2011-04-27 14:27:44 +020067/* TT_QUERY subtypes */
68#define TT_QUERY_TYPE_MASK 0x3
69
70enum tt_query_packettype {
71 TT_REQUEST = 0,
72 TT_RESPONSE = 1
73};
74
75/* TT_QUERY flags */
76enum tt_query_flags {
77 TT_FULL_TABLE = 1 << 2
78};
79
80/* TT_CHANGE flags */
81enum tt_change_flags {
82 TT_CHANGE_DEL = 0x01,
83 TT_CLIENT_ROAM = 0x02
84};
85
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000086struct batman_packet {
87 uint8_t packet_type;
88 uint8_t version; /* batman version field */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +020089 uint8_t ttl;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000090 uint8_t flags; /* 0x40: DIRECTLINK flag, 0x20 VIS_SERVER flag... */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000091 uint32_t seqno;
92 uint8_t orig[6];
93 uint8_t prev_sender[6];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000094 uint8_t gw_flags; /* flags related to gateway class */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +020095 uint8_t tq;
Antonio Quartullia73105b2011-04-27 14:27:44 +020096 uint8_t tt_num_changes;
97 uint8_t ttvn; /* translation table version number */
98 uint16_t tt_crc;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +000099} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000100
101#define BAT_PACKET_LEN sizeof(struct batman_packet)
102
103struct icmp_packet {
104 uint8_t packet_type;
105 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000106 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200107 uint8_t msg_type; /* see ICMP message types above */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000108 uint8_t dst[6];
109 uint8_t orig[6];
110 uint16_t seqno;
111 uint8_t uid;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200112 uint8_t reserved;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000113} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000114
115#define BAT_RR_LEN 16
116
117/* icmp_packet_rr must start with all fields from imcp_packet
118 * as this is assumed by code that handles ICMP packets */
119struct icmp_packet_rr {
120 uint8_t packet_type;
121 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000122 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200123 uint8_t msg_type; /* see ICMP message types above */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000124 uint8_t dst[6];
125 uint8_t orig[6];
126 uint16_t seqno;
127 uint8_t uid;
128 uint8_t rr_cur;
129 uint8_t rr[BAT_RR_LEN][ETH_ALEN];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000130} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000131
132struct unicast_packet {
133 uint8_t packet_type;
134 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135 uint8_t ttl;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200136 uint8_t ttvn; /* destination translation table version number */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200137 uint8_t dest[6];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000138} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000139
140struct unicast_frag_packet {
141 uint8_t packet_type;
142 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000143 uint8_t ttl;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200144 uint8_t ttvn; /* destination translation table version number */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200145 uint8_t dest[6];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000146 uint8_t flags;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200147 uint8_t align;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000148 uint8_t orig[6];
149 uint16_t seqno;
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000150} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000151
152struct bcast_packet {
153 uint8_t packet_type;
154 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000155 uint8_t ttl;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200156 uint8_t reserved;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157 uint32_t seqno;
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200158 uint8_t orig[6];
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000159} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160
161struct vis_packet {
162 uint8_t packet_type;
163 uint8_t version; /* batman version field */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164 uint8_t ttl; /* TTL */
Antonio Quartulli3b27ffb2011-05-28 14:51:06 +0200165 uint8_t vis_type; /* which type of vis-participant sent this? */
166 uint32_t seqno; /* sequence number */
167 uint8_t entries; /* number of entries behind this struct */
168 uint8_t reserved;
Sven Eckelmann6e215fd2011-05-08 12:45:45 +0200169 uint8_t vis_orig[6]; /* originator that announces its neighbors */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000170 uint8_t target_orig[6]; /* who should receive this packet */
171 uint8_t sender_orig[6]; /* who sent or rebroadcasted this packet */
Sven Eckelmannaa0adb12011-01-15 14:39:43 +0000172} __packed;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000173
Antonio Quartullia73105b2011-04-27 14:27:44 +0200174struct tt_query_packet {
175 uint8_t packet_type;
176 uint8_t version; /* batman version field */
177 uint8_t ttl;
178 /* the flag field is a combination of:
179 * - TT_REQUEST or TT_RESPONSE
180 * - TT_FULL_TABLE */
181 uint8_t flags;
182 uint8_t dst[ETH_ALEN];
183 uint8_t src[ETH_ALEN];
184 /* the ttvn field is:
185 * if TT_REQUEST: ttvn that triggered the
186 * request
187 * if TT_RESPONSE: new ttvn for the src
188 * orig_node */
189 uint8_t ttvn;
190 /* tt_data field is:
191 * if TT_REQUEST: crc associated with the
192 * ttvn
193 * if TT_RESPONSE: table_size */
194 uint16_t tt_data;
195} __packed;
196
197struct tt_change {
198 uint8_t flags;
199 uint8_t addr[ETH_ALEN];
200} __packed;
201
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000202#endif /* _NET_BATMAN_ADV_PACKET_H_ */