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 | |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 23 | /** |
| 24 | * enum batadv_packettype - types for batman-adv encapsulated packets |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 25 | * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV |
| 26 | * @BATADV_BCAST: broadcast packets carrying broadcast payload |
| 27 | * @BATADV_CODED: network coded packets |
| 28 | * |
| 29 | * @BATADV_UNICAST: unicast packets carrying unicast payload traffic |
| 30 | * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original |
| 31 | * payload packet |
| 32 | * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of |
| 33 | * the sender |
| 34 | * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 35 | * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers |
| 36 | */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 37 | enum batadv_packettype { |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 38 | /* 0x00 - 0x3f: local packets or special rules for handling */ |
| 39 | BATADV_IV_OGM = 0x00, |
| 40 | BATADV_BCAST = 0x01, |
| 41 | BATADV_CODED = 0x02, |
| 42 | /* 0x40 - 0x7f: unicast */ |
| 43 | #define BATADV_UNICAST_MIN 0x40 |
| 44 | BATADV_UNICAST = 0x40, |
| 45 | BATADV_UNICAST_FRAG = 0x41, |
| 46 | BATADV_UNICAST_4ADDR = 0x42, |
| 47 | BATADV_ICMP = 0x43, |
| 48 | BATADV_UNICAST_TVLV = 0x44, |
| 49 | #define BATADV_UNICAST_MAX 0x7f |
| 50 | /* 0x80 - 0xff: reserved */ |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | /** |
| 54 | * enum batadv_subtype - packet subtype for unicast4addr |
| 55 | * @BATADV_P_DATA: user payload |
Antonio Quartulli | 5c3a0e5 | 2011-06-02 12:29:51 +0200 | [diff] [blame] | 56 | * @BATADV_P_DAT_DHT_GET: DHT request message |
| 57 | * @BATADV_P_DAT_DHT_PUT: DHT store message |
| 58 | * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 59 | */ |
| 60 | enum batadv_subtype { |
Antonio Quartulli | 5c3a0e5 | 2011-06-02 12:29:51 +0200 | [diff] [blame] | 61 | BATADV_P_DATA = 0x01, |
| 62 | BATADV_P_DAT_DHT_GET = 0x02, |
| 63 | BATADV_P_DAT_DHT_PUT = 0x03, |
| 64 | BATADV_P_DAT_CACHE_REPLY = 0x04, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 65 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 66 | |
| 67 | /* this file is included by batctl which needs these defines */ |
Antonio Quartulli | 60cf798 | 2013-04-20 15:59:13 +0200 | [diff] [blame] | 68 | #define BATADV_COMPAT_VERSION 15 |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 69 | |
Simon Wunderlich | 18c68d5 | 2013-04-25 10:37:25 +0200 | [diff] [blame] | 70 | /** |
| 71 | * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets |
| 72 | * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was |
| 73 | * previously received from someone else than the best neighbor. |
| 74 | * @BATADV_PRIMARIES_FIRST_HOP: flag is set when the primary interface address |
| 75 | * is used, and the packet travels its first hop. |
| 76 | * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a |
| 77 | * one hop neighbor on the interface where it was originally received. |
| 78 | */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 79 | enum batadv_iv_flags { |
Simon Wunderlich | 18c68d5 | 2013-04-25 10:37:25 +0200 | [diff] [blame] | 80 | BATADV_NOT_BEST_NEXT_HOP = BIT(0), |
| 81 | BATADV_PRIMARIES_FIRST_HOP = BIT(1), |
| 82 | BATADV_DIRECTLINK = BIT(2), |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 83 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 84 | |
| 85 | /* ICMP message types */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 86 | enum batadv_icmp_packettype { |
| 87 | BATADV_ECHO_REPLY = 0, |
| 88 | BATADV_DESTINATION_UNREACHABLE = 3, |
| 89 | BATADV_ECHO_REQUEST = 8, |
| 90 | BATADV_TTL_EXCEEDED = 11, |
| 91 | BATADV_PARAMETER_PROBLEM = 12, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 92 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 93 | |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 94 | /* tt data subtypes */ |
| 95 | #define BATADV_TT_DATA_TYPE_MASK 0x0F |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 96 | |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 97 | /** |
| 98 | * enum batadv_tt_data_flags - flags for tt data tvlv |
| 99 | * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM |
| 100 | * @BATADV_TT_REQUEST: TT request message |
| 101 | * @BATADV_TT_RESPONSE: TT response message |
| 102 | * @BATADV_TT_FULL_TABLE: contains full table to replace existing table |
| 103 | */ |
| 104 | enum batadv_tt_data_flags { |
| 105 | BATADV_TT_OGM_DIFF = BIT(0), |
| 106 | BATADV_TT_REQUEST = BIT(1), |
| 107 | BATADV_TT_RESPONSE = BIT(2), |
| 108 | BATADV_TT_FULL_TABLE = BIT(4), |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 109 | }; |
| 110 | |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 111 | /* BATADV_TT_CLIENT flags. |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 112 | * Flags from BIT(0) to BIT(7) are sent on the wire, while flags from BIT(8) to |
| 113 | * BIT(15) are used for local computation only |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 114 | */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 115 | enum batadv_tt_client_flags { |
Sven Eckelmann | 8de47de | 2012-07-08 16:32:09 +0200 | [diff] [blame] | 116 | BATADV_TT_CLIENT_DEL = BIT(0), |
| 117 | BATADV_TT_CLIENT_ROAM = BIT(1), |
| 118 | BATADV_TT_CLIENT_WIFI = BIT(2), |
| 119 | BATADV_TT_CLIENT_NOPURGE = BIT(8), |
| 120 | BATADV_TT_CLIENT_NEW = BIT(9), |
| 121 | BATADV_TT_CLIENT_PENDING = BIT(10), |
Antonio Quartulli | 0035f97 | 2013-04-24 16:37:52 +0200 | [diff] [blame] | 122 | BATADV_TT_CLIENT_TEMP = BIT(11), |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 123 | }; |
| 124 | |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 125 | /* claim frame types for the bridge loop avoidance */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 126 | enum batadv_bla_claimframe { |
Simon Wunderlich | 3eb8773 | 2012-06-23 12:34:18 +0200 | [diff] [blame] | 127 | BATADV_CLAIM_TYPE_CLAIM = 0x00, |
| 128 | BATADV_CLAIM_TYPE_UNCLAIM = 0x01, |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 129 | BATADV_CLAIM_TYPE_ANNOUNCE = 0x02, |
| 130 | BATADV_CLAIM_TYPE_REQUEST = 0x03, |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 131 | }; |
| 132 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 133 | /** |
| 134 | * enum batadv_tvlv_type - tvlv type definitions |
| 135 | * @BATADV_TVLV_GW: gateway tvlv |
Marek Lindner | 17cf0ea | 2013-04-23 21:39:59 +0800 | [diff] [blame] | 136 | * @BATADV_TVLV_DAT: distributed arp table tvlv |
Marek Lindner | 3f4841f | 2013-04-23 21:40:00 +0800 | [diff] [blame] | 137 | * @BATADV_TVLV_NC: network coding tvlv |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 138 | * @BATADV_TVLV_TT: translation table tvlv |
Marek Lindner | 122edaa | 2013-04-23 21:40:03 +0800 | [diff] [blame] | 139 | * @BATADV_TVLV_ROAM: roaming advertisement tvlv |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 140 | */ |
| 141 | enum batadv_tvlv_type { |
| 142 | BATADV_TVLV_GW = 0x01, |
Marek Lindner | 17cf0ea | 2013-04-23 21:39:59 +0800 | [diff] [blame] | 143 | BATADV_TVLV_DAT = 0x02, |
Marek Lindner | 3f4841f | 2013-04-23 21:40:00 +0800 | [diff] [blame] | 144 | BATADV_TVLV_NC = 0x03, |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 145 | BATADV_TVLV_TT = 0x04, |
Marek Lindner | 122edaa | 2013-04-23 21:40:03 +0800 | [diff] [blame] | 146 | BATADV_TVLV_ROAM = 0x05, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 147 | }; |
| 148 | |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 149 | /* the destination hardware field in the ARP frame is used to |
| 150 | * transport the claim type and the group id |
| 151 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 152 | struct batadv_bla_claim_dst { |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 153 | uint8_t magic[3]; /* FF:43:05 */ |
| 154 | uint8_t type; /* bla_claimframe */ |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 155 | __be16 group; /* group id */ |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 156 | }; |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 157 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 158 | struct batadv_header { |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 159 | uint8_t packet_type; |
| 160 | uint8_t version; /* batman version field */ |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 161 | uint8_t ttl; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 162 | /* the parent struct has to add a byte after the header to make |
| 163 | * everything 4 bytes aligned again |
| 164 | */ |
| 165 | }; |
Sven Eckelmann | 76543d1 | 2011-11-20 15:47:38 +0100 | [diff] [blame] | 166 | |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 167 | /** |
| 168 | * struct batadv_ogm_packet - ogm (routing protocol) packet |
| 169 | * @header: common batman packet header |
Simon Wunderlich | 18c68d5 | 2013-04-25 10:37:25 +0200 | [diff] [blame] | 170 | * @flags: contains routing relevant flags - see enum batadv_iv_flags |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 171 | * @tvlv_len: length of tvlv data following the ogm header |
| 172 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 173 | struct batadv_ogm_packet { |
| 174 | struct batadv_header header; |
Simon Wunderlich | 18c68d5 | 2013-04-25 10:37:25 +0200 | [diff] [blame] | 175 | uint8_t flags; |
Al Viro | e0f5211 | 2012-04-22 07:46:29 +0100 | [diff] [blame] | 176 | __be32 seqno; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 177 | uint8_t orig[ETH_ALEN]; |
| 178 | uint8_t prev_sender[ETH_ALEN]; |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 179 | uint8_t reserved; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 180 | uint8_t tq; |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 181 | __be16 tvlv_len; |
Simon Wunderlich | 9284a47 | 2013-04-25 10:37:24 +0200 | [diff] [blame] | 182 | /* __packed is not needed as the struct size is divisible by 4, |
| 183 | * and the largest data type in this struct has a size of 4. |
| 184 | */ |
| 185 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 186 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 187 | #define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 188 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 189 | struct batadv_icmp_packet { |
| 190 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 191 | uint8_t msg_type; /* see ICMP message types above */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 192 | uint8_t dst[ETH_ALEN]; |
| 193 | uint8_t orig[ETH_ALEN]; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 194 | __be16 seqno; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 195 | uint8_t uid; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 196 | uint8_t reserved; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 197 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 198 | |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 199 | #define BATADV_RR_LEN 16 |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 200 | |
| 201 | /* icmp_packet_rr must start with all fields from imcp_packet |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 202 | * as this is assumed by code that handles ICMP packets |
| 203 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 204 | struct batadv_icmp_packet_rr { |
| 205 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 206 | uint8_t msg_type; /* see ICMP message types above */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 207 | uint8_t dst[ETH_ALEN]; |
| 208 | uint8_t orig[ETH_ALEN]; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 209 | __be16 seqno; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 210 | uint8_t uid; |
| 211 | uint8_t rr_cur; |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 212 | uint8_t rr[BATADV_RR_LEN][ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 213 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 214 | |
Sven Eckelmann | e022b95 | 2012-11-05 21:25:27 +0100 | [diff] [blame] | 215 | /* All packet headers in front of an ethernet header have to be completely |
| 216 | * divisible by 2 but not by 4 to make the payload after the ethernet |
| 217 | * header again 4 bytes boundary aligned. |
| 218 | * |
| 219 | * A packing of 2 is necessary to avoid extra padding at the end of the struct |
| 220 | * caused by a structure member which is larger than two bytes. Otherwise |
| 221 | * the structure would not fulfill the previously mentioned rule to avoid the |
| 222 | * misalignment of the payload after the ethernet header. It may also lead to |
| 223 | * leakage of information when the padding it not initialized before sending. |
| 224 | */ |
| 225 | #pragma pack(2) |
| 226 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 227 | struct batadv_unicast_packet { |
| 228 | struct batadv_header header; |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 229 | uint8_t ttvn; /* destination translation table version number */ |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 230 | uint8_t dest[ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 231 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 232 | * following ethernet header again 4 bytes boundary aligned |
| 233 | */ |
| 234 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 235 | |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 236 | /** |
| 237 | * struct batadv_unicast_4addr_packet - extended unicast packet |
| 238 | * @u: common unicast packet header |
| 239 | * @src: address of the source |
| 240 | * @subtype: packet subtype |
| 241 | */ |
| 242 | struct batadv_unicast_4addr_packet { |
| 243 | struct batadv_unicast_packet u; |
| 244 | uint8_t src[ETH_ALEN]; |
| 245 | uint8_t subtype; |
| 246 | uint8_t reserved; |
| 247 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 248 | * following ethernet header again 4 bytes boundary aligned |
| 249 | */ |
| 250 | }; |
| 251 | |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 252 | /** |
| 253 | * struct batadv_frag_packet - fragmented packet |
| 254 | * @header: common batman packet header with type, compatversion, and ttl |
| 255 | * @dest: final destination used when routing fragments |
| 256 | * @orig: originator of the fragment used when merging the packet |
| 257 | * @no: fragment number within this sequence |
| 258 | * @reserved: reserved byte for alignment |
| 259 | * @seqno: sequence identification |
| 260 | * @total_size: size of the merged packet |
| 261 | */ |
| 262 | struct batadv_frag_packet { |
| 263 | struct batadv_header header; |
| 264 | #if defined(__BIG_ENDIAN_BITFIELD) |
| 265 | uint8_t no:4; |
| 266 | uint8_t reserved:4; |
| 267 | #elif defined(__LITTLE_ENDIAN_BITFIELD) |
| 268 | uint8_t reserved:4; |
| 269 | uint8_t no:4; |
| 270 | #else |
| 271 | #error "unknown bitfield endianess" |
| 272 | #endif |
| 273 | uint8_t dest[ETH_ALEN]; |
| 274 | uint8_t orig[ETH_ALEN]; |
| 275 | __be16 seqno; |
| 276 | __be16 total_size; |
| 277 | }; |
| 278 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 279 | struct batadv_bcast_packet { |
| 280 | struct batadv_header header; |
Antonio Quartulli | 3b27ffb | 2011-05-28 14:51:06 +0200 | [diff] [blame] | 281 | uint8_t reserved; |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 282 | __be32 seqno; |
Antonio Quartulli | c1faead | 2012-01-30 20:59:17 +0100 | [diff] [blame] | 283 | uint8_t orig[ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 284 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 285 | * following ethernet header again 4 bytes boundary aligned |
| 286 | */ |
Sven Eckelmann | e022b95 | 2012-11-05 21:25:27 +0100 | [diff] [blame] | 287 | }; |
| 288 | |
| 289 | #pragma pack() |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 290 | |
Martin Hundebøll | 3c12de9 | 2013-01-25 11:12:41 +0100 | [diff] [blame] | 291 | /** |
| 292 | * struct batadv_coded_packet - network coded packet |
| 293 | * @header: common batman packet header and ttl of first included packet |
| 294 | * @reserved: Align following fields to 2-byte boundaries |
| 295 | * @first_source: original source of first included packet |
| 296 | * @first_orig_dest: original destinal of first included packet |
| 297 | * @first_crc: checksum of first included packet |
| 298 | * @first_ttvn: tt-version number of first included packet |
| 299 | * @second_ttl: ttl of second packet |
| 300 | * @second_dest: second receiver of this coded packet |
| 301 | * @second_source: original source of second included packet |
| 302 | * @second_orig_dest: original destination of second included packet |
| 303 | * @second_crc: checksum of second included packet |
| 304 | * @second_ttvn: tt version number of second included packet |
| 305 | * @coded_len: length of network coded part of the payload |
| 306 | */ |
| 307 | struct batadv_coded_packet { |
| 308 | struct batadv_header header; |
| 309 | uint8_t first_ttvn; |
| 310 | /* uint8_t first_dest[ETH_ALEN]; - saved in mac header destination */ |
| 311 | uint8_t first_source[ETH_ALEN]; |
| 312 | uint8_t first_orig_dest[ETH_ALEN]; |
| 313 | __be32 first_crc; |
| 314 | uint8_t second_ttl; |
| 315 | uint8_t second_ttvn; |
| 316 | uint8_t second_dest[ETH_ALEN]; |
| 317 | uint8_t second_source[ETH_ALEN]; |
| 318 | uint8_t second_orig_dest[ETH_ALEN]; |
| 319 | __be32 second_crc; |
Martin Hundebøll | e6a0b49 | 2013-03-14 21:30:21 +0100 | [diff] [blame] | 320 | __be16 coded_len; |
Martin Hundebøll | 3c12de9 | 2013-01-25 11:12:41 +0100 | [diff] [blame] | 321 | }; |
| 322 | |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 323 | /** |
| 324 | * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload |
| 325 | * @header: common batman packet header |
| 326 | * @reserved: reserved field (for packet alignment) |
| 327 | * @src: address of the source |
| 328 | * @dst: address of the destination |
| 329 | * @tvlv_len: length of tvlv data following the unicast tvlv header |
| 330 | * @align: 2 bytes to align the header to a 4 byte boundry |
| 331 | */ |
| 332 | struct batadv_unicast_tvlv_packet { |
| 333 | struct batadv_header header; |
| 334 | uint8_t reserved; |
| 335 | uint8_t dst[ETH_ALEN]; |
| 336 | uint8_t src[ETH_ALEN]; |
| 337 | __be16 tvlv_len; |
| 338 | uint16_t align; |
| 339 | }; |
| 340 | |
| 341 | /** |
| 342 | * struct batadv_tvlv_hdr - base tvlv header struct |
| 343 | * @type: tvlv container type (see batadv_tvlv_type) |
| 344 | * @version: tvlv container version |
| 345 | * @len: tvlv container length |
| 346 | */ |
| 347 | struct batadv_tvlv_hdr { |
| 348 | uint8_t type; |
| 349 | uint8_t version; |
| 350 | __be16 len; |
| 351 | }; |
| 352 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 353 | /** |
| 354 | * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv |
| 355 | * container |
| 356 | * @bandwidth_down: advertised uplink download bandwidth |
| 357 | * @bandwidth_up: advertised uplink upload bandwidth |
| 358 | */ |
| 359 | struct batadv_tvlv_gateway_data { |
| 360 | __be32 bandwidth_down; |
| 361 | __be32 bandwidth_up; |
| 362 | }; |
| 363 | |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 364 | /** |
| 365 | * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container |
| 366 | * @flags: translation table flags (see batadv_tt_data_flags) |
| 367 | * @ttvn: translation table version number |
Antonio Quartulli | ced7293 | 2013-04-24 16:37:51 +0200 | [diff] [blame] | 368 | * @reserved: field reserved for future use |
| 369 | * @crc: crc32 checksum of the local translation table |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 370 | */ |
| 371 | struct batadv_tvlv_tt_data { |
| 372 | uint8_t flags; |
| 373 | uint8_t ttvn; |
Antonio Quartulli | ced7293 | 2013-04-24 16:37:51 +0200 | [diff] [blame] | 374 | uint16_t reserved; |
| 375 | __be32 crc; |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 376 | }; |
| 377 | |
| 378 | /** |
| 379 | * struct batadv_tvlv_tt_change - translation table diff data |
| 380 | * @flags: status indicators concerning the non-mesh client (see |
| 381 | * batadv_tt_client_flags) |
| 382 | * @reserved: reserved field |
| 383 | * @addr: mac address of non-mesh client that triggered this tt change |
| 384 | */ |
| 385 | struct batadv_tvlv_tt_change { |
| 386 | uint8_t flags; |
| 387 | uint8_t reserved; |
| 388 | uint8_t addr[ETH_ALEN]; |
| 389 | }; |
| 390 | |
Marek Lindner | 122edaa | 2013-04-23 21:40:03 +0800 | [diff] [blame] | 391 | /** |
| 392 | * struct batadv_tvlv_roam_adv - roaming advertisement |
| 393 | * @client: mac address of roaming client |
| 394 | * @reserved: field reserved for future use |
| 395 | */ |
| 396 | struct batadv_tvlv_roam_adv { |
| 397 | uint8_t client[ETH_ALEN]; |
| 398 | uint16_t reserved; |
| 399 | }; |
| 400 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 401 | #endif /* _NET_BATMAN_ADV_PACKET_H_ */ |