Antonio Quartulli | 0b87393 | 2013-01-04 03:05:31 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2007-2013 B.A.T.M.A.N. contributors: |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2 | * |
| 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 Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #ifndef _NET_BATMAN_ADV_PACKET_H_ |
| 21 | #define _NET_BATMAN_ADV_PACKET_H_ |
| 22 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 23 | enum batadv_packettype { |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 24 | BATADV_IV_OGM = 0x01, |
| 25 | BATADV_ICMP = 0x02, |
| 26 | BATADV_UNICAST = 0x03, |
| 27 | BATADV_BCAST = 0x04, |
| 28 | BATADV_VIS = 0x05, |
| 29 | BATADV_UNICAST_FRAG = 0x06, |
| 30 | BATADV_TT_QUERY = 0x07, |
| 31 | BATADV_ROAM_ADV = 0x08, |
| 32 | BATADV_UNICAST_4ADDR = 0x09, |
Martin Hundebøll | 3c12de9 | 2013-01-25 11:12:41 +0100 | [diff] [blame] | 33 | BATADV_CODED = 0x0a, |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | /** |
| 37 | * enum batadv_subtype - packet subtype for unicast4addr |
| 38 | * @BATADV_P_DATA: user payload |
Antonio Quartulli | 5c3a0e5 | 2011-06-02 12:29:51 +0200 | [diff] [blame] | 39 | * @BATADV_P_DAT_DHT_GET: DHT request message |
| 40 | * @BATADV_P_DAT_DHT_PUT: DHT store message |
| 41 | * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 42 | */ |
| 43 | enum batadv_subtype { |
Antonio Quartulli | 5c3a0e5 | 2011-06-02 12:29:51 +0200 | [diff] [blame] | 44 | BATADV_P_DATA = 0x01, |
| 45 | BATADV_P_DAT_DHT_GET = 0x02, |
| 46 | BATADV_P_DAT_DHT_PUT = 0x03, |
| 47 | BATADV_P_DAT_CACHE_REPLY = 0x04, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 48 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 49 | |
| 50 | /* this file is included by batctl which needs these defines */ |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 51 | #define BATADV_COMPAT_VERSION 14 |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 52 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 53 | enum batadv_iv_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 54 | BATADV_NOT_BEST_NEXT_HOP = BIT(3), |
| 55 | BATADV_PRIMARIES_FIRST_HOP = BIT(4), |
| 56 | BATADV_VIS_SERVER = BIT(5), |
| 57 | BATADV_DIRECTLINK = BIT(6), |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 58 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 59 | |
| 60 | /* ICMP message types */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 61 | enum batadv_icmp_packettype { |
| 62 | BATADV_ECHO_REPLY = 0, |
| 63 | BATADV_DESTINATION_UNREACHABLE = 3, |
| 64 | BATADV_ECHO_REQUEST = 8, |
| 65 | BATADV_TTL_EXCEEDED = 11, |
| 66 | BATADV_PARAMETER_PROBLEM = 12, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 67 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 68 | |
| 69 | /* vis defines */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 70 | enum batadv_vis_packettype { |
| 71 | BATADV_VIS_TYPE_SERVER_SYNC = 0, |
| 72 | BATADV_VIS_TYPE_CLIENT_UPDATE = 1, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 73 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 74 | |
| 75 | /* fragmentation defines */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 76 | enum batadv_unicast_frag_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 77 | BATADV_UNI_FRAG_HEAD = BIT(0), |
| 78 | BATADV_UNI_FRAG_LARGETAIL = BIT(1), |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 79 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 80 | |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 81 | /* TT_QUERY subtypes */ |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 82 | #define BATADV_TT_QUERY_TYPE_MASK 0x3 |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 83 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 84 | enum batadv_tt_query_packettype { |
| 85 | BATADV_TT_REQUEST = 0, |
| 86 | BATADV_TT_RESPONSE = 1, |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 87 | }; |
| 88 | |
| 89 | /* TT_QUERY flags */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 90 | enum batadv_tt_query_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 91 | BATADV_TT_FULL_TABLE = BIT(2), |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 92 | }; |
| 93 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 94 | /* BATADV_TT_CLIENT flags. |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 95 | * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to |
| 96 | * BIT(15) are used for local computation only |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 97 | */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 98 | enum batadv_tt_client_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 99 | BATADV_TT_CLIENT_DEL = BIT(0), |
| 100 | BATADV_TT_CLIENT_ROAM = BIT(1), |
| 101 | BATADV_TT_CLIENT_WIFI = BIT(2), |
Antonio Quartulli | 30cfd02 | 2012-07-05 23:38:29 +0200 | [diff] [blame] | 102 | BATADV_TT_CLIENT_TEMP = BIT(3), |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 103 | BATADV_TT_CLIENT_NOPURGE = BIT(8), |
| 104 | BATADV_TT_CLIENT_NEW = BIT(9), |
| 105 | BATADV_TT_CLIENT_PENDING = BIT(10), |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 106 | }; |
| 107 | |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 108 | /* claim frame types for the bridge loop avoidance */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 109 | enum batadv_bla_claimframe { |
Simon Wunderlich | 3eb8773 | 2012-06-23 12:34:18 +0200 | [diff] [blame] | 110 | BATADV_CLAIM_TYPE_CLAIM = 0x00, |
| 111 | BATADV_CLAIM_TYPE_UNCLAIM = 0x01, |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 112 | BATADV_CLAIM_TYPE_ANNOUNCE = 0x02, |
| 113 | BATADV_CLAIM_TYPE_REQUEST = 0x03, |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 114 | }; |
| 115 | |
| 116 | /* the destination hardware field in the ARP frame is used to |
| 117 | * transport the claim type and the group id |
| 118 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 119 | struct batadv_bla_claim_dst { |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 120 | uint8_t magic[3]; /* FF:43:05 */ |
| 121 | uint8_t type; /* bla_claimframe */ |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 122 | __be16 group; /* group id */ |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 123 | }; |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 124 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 125 | struct batadv_header { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 126 | uint8_t packet_type; |
| 127 | uint8_t version; /* batman version field */ |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 128 | uint8_t ttl; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 129 | /* the parent struct has to add a byte after the header to make |
| 130 | * everything 4 bytes aligned again |
| 131 | */ |
| 132 | }; |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 133 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 134 | struct batadv_ogm_packet { |
| 135 | struct batadv_header header; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 136 | uint8_t flags; /* 0x40: DIRECTLINK flag, 0x20 VIS_SERVER flag... */ |
Al Viro | e0f5211 | 2012-04-22 07:46:29 +0100 | [diff] [blame] | 137 | __be32 seqno; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 138 | uint8_t orig[ETH_ALEN]; |
| 139 | uint8_t prev_sender[ETH_ALEN]; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 140 | uint8_t gw_flags; /* flags related to gateway class */ |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 141 | uint8_t tq; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 142 | uint8_t tt_num_changes; |
| 143 | uint8_t ttvn; /* translation table version number */ |
Al Viro | 16a7034 | 2012-04-22 07:45:29 +0100 | [diff] [blame] | 144 | __be16 tt_crc; |
Sven Eckelmann | aa0adb1 | 2011-01-15 14:39:43 +0000 | [diff] [blame] | 145 | } __packed; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 146 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 147 | #define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 148 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 149 | struct batadv_icmp_packet { |
| 150 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 151 | uint8_t msg_type; /* see ICMP message types above */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 152 | uint8_t dst[ETH_ALEN]; |
| 153 | uint8_t orig[ETH_ALEN]; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 154 | __be16 seqno; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 155 | uint8_t uid; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 156 | uint8_t reserved; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 157 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 158 | |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 159 | #define BATADV_RR_LEN 16 |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 160 | |
| 161 | /* icmp_packet_rr must start with all fields from imcp_packet |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 162 | * as this is assumed by code that handles ICMP packets |
| 163 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 164 | struct batadv_icmp_packet_rr { |
| 165 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 166 | uint8_t msg_type; /* see ICMP message types above */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 167 | uint8_t dst[ETH_ALEN]; |
| 168 | uint8_t orig[ETH_ALEN]; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 169 | __be16 seqno; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 170 | uint8_t uid; |
| 171 | uint8_t rr_cur; |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 172 | uint8_t rr[BATADV_RR_LEN][ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 173 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 174 | |
Sven Eckelmann | e022b95 | 2012-11-05 21:25:27 +0100 | [diff] [blame] | 175 | /* All packet headers in front of an ethernet header have to be completely |
| 176 | * divisible by 2 but not by 4 to make the payload after the ethernet |
| 177 | * header again 4 bytes boundary aligned. |
| 178 | * |
| 179 | * A packing of 2 is necessary to avoid extra padding at the end of the struct |
| 180 | * caused by a structure member which is larger than two bytes. Otherwise |
| 181 | * the structure would not fulfill the previously mentioned rule to avoid the |
| 182 | * misalignment of the payload after the ethernet header. It may also lead to |
| 183 | * leakage of information when the padding it not initialized before sending. |
| 184 | */ |
| 185 | #pragma pack(2) |
| 186 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 187 | struct batadv_unicast_packet { |
| 188 | struct batadv_header header; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 189 | uint8_t ttvn; /* destination translation table version number */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 190 | uint8_t dest[ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 191 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 192 | * following ethernet header again 4 bytes boundary aligned |
| 193 | */ |
| 194 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 195 | |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 196 | /** |
| 197 | * struct batadv_unicast_4addr_packet - extended unicast packet |
| 198 | * @u: common unicast packet header |
| 199 | * @src: address of the source |
| 200 | * @subtype: packet subtype |
| 201 | */ |
| 202 | struct batadv_unicast_4addr_packet { |
| 203 | struct batadv_unicast_packet u; |
| 204 | uint8_t src[ETH_ALEN]; |
| 205 | uint8_t subtype; |
| 206 | uint8_t reserved; |
| 207 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 208 | * following ethernet header again 4 bytes boundary aligned |
| 209 | */ |
| 210 | }; |
| 211 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 212 | struct batadv_unicast_frag_packet { |
| 213 | struct batadv_header header; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 214 | uint8_t ttvn; /* destination translation table version number */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 215 | uint8_t dest[ETH_ALEN]; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 216 | uint8_t flags; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 217 | uint8_t align; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 218 | uint8_t orig[ETH_ALEN]; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 219 | __be16 seqno; |
Sven Eckelmann | aa0adb1 | 2011-01-15 14:39:43 +0000 | [diff] [blame] | 220 | } __packed; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 221 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 222 | struct batadv_bcast_packet { |
| 223 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 224 | uint8_t reserved; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 225 | __be32 seqno; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 226 | uint8_t orig[ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 227 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 228 | * following ethernet header again 4 bytes boundary aligned |
| 229 | */ |
Sven Eckelmann | e022b95 | 2012-11-05 21:25:27 +0100 | [diff] [blame] | 230 | }; |
| 231 | |
| 232 | #pragma pack() |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 233 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 234 | struct batadv_vis_packet { |
| 235 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 236 | uint8_t vis_type; /* which type of vis-participant sent this? */ |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 237 | __be32 seqno; /* sequence number */ |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 238 | uint8_t entries; /* number of entries behind this struct */ |
| 239 | uint8_t reserved; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 240 | uint8_t vis_orig[ETH_ALEN]; /* originator reporting its neighbors */ |
| 241 | uint8_t target_orig[ETH_ALEN]; /* who should receive this packet */ |
| 242 | uint8_t sender_orig[ETH_ALEN]; /* who sent or forwarded this packet */ |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 243 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 244 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 245 | struct batadv_tt_query_packet { |
| 246 | struct batadv_header header; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 247 | /* the flag field is a combination of: |
| 248 | * - TT_REQUEST or TT_RESPONSE |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 249 | * - TT_FULL_TABLE |
| 250 | */ |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 251 | uint8_t flags; |
| 252 | uint8_t dst[ETH_ALEN]; |
| 253 | uint8_t src[ETH_ALEN]; |
| 254 | /* the ttvn field is: |
| 255 | * if TT_REQUEST: ttvn that triggered the |
| 256 | * request |
| 257 | * if TT_RESPONSE: new ttvn for the src |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 258 | * orig_node |
| 259 | */ |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 260 | uint8_t ttvn; |
| 261 | /* tt_data field is: |
| 262 | * if TT_REQUEST: crc associated with the |
| 263 | * ttvn |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 264 | * if TT_RESPONSE: table_size |
| 265 | */ |
| 266 | __be16 tt_data; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 267 | } __packed; |
| 268 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 269 | struct batadv_roam_adv_packet { |
| 270 | struct batadv_header header; |
Antonio Quartulli | cc47f66 | 2011-04-27 14:27:57 +0200 | [diff] [blame] | 271 | uint8_t reserved; |
| 272 | uint8_t dst[ETH_ALEN]; |
| 273 | uint8_t src[ETH_ALEN]; |
| 274 | uint8_t client[ETH_ALEN]; |
| 275 | } __packed; |
| 276 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 277 | struct batadv_tt_change { |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 278 | uint8_t flags; |
| 279 | uint8_t addr[ETH_ALEN]; |
| 280 | } __packed; |
| 281 | |
Martin Hundebøll | 3c12de9 | 2013-01-25 11:12:41 +0100 | [diff] [blame] | 282 | /** |
| 283 | * struct batadv_coded_packet - network coded packet |
| 284 | * @header: common batman packet header and ttl of first included packet |
| 285 | * @reserved: Align following fields to 2-byte boundaries |
| 286 | * @first_source: original source of first included packet |
| 287 | * @first_orig_dest: original destinal of first included packet |
| 288 | * @first_crc: checksum of first included packet |
| 289 | * @first_ttvn: tt-version number of first included packet |
| 290 | * @second_ttl: ttl of second packet |
| 291 | * @second_dest: second receiver of this coded packet |
| 292 | * @second_source: original source of second included packet |
| 293 | * @second_orig_dest: original destination of second included packet |
| 294 | * @second_crc: checksum of second included packet |
| 295 | * @second_ttvn: tt version number of second included packet |
| 296 | * @coded_len: length of network coded part of the payload |
| 297 | */ |
| 298 | struct batadv_coded_packet { |
| 299 | struct batadv_header header; |
| 300 | uint8_t first_ttvn; |
| 301 | /* uint8_t first_dest[ETH_ALEN]; - saved in mac header destination */ |
| 302 | uint8_t first_source[ETH_ALEN]; |
| 303 | uint8_t first_orig_dest[ETH_ALEN]; |
| 304 | __be32 first_crc; |
| 305 | uint8_t second_ttl; |
| 306 | uint8_t second_ttvn; |
| 307 | uint8_t second_dest[ETH_ALEN]; |
| 308 | uint8_t second_source[ETH_ALEN]; |
| 309 | uint8_t second_orig_dest[ETH_ALEN]; |
| 310 | __be32 second_crc; |
Martin Hundebøll | e6a0b49 | 2013-03-14 21:30:21 +0100 | [diff] [blame] | 311 | __be16 coded_len; |
Martin Hundebøll | 3c12de9 | 2013-01-25 11:12:41 +0100 | [diff] [blame] | 312 | }; |
| 313 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 314 | #endif /* _NET_BATMAN_ADV_PACKET_H_ */ |