Sven Eckelmann | 0046b04 | 2016-01-01 00:01:03 +0100 | [diff] [blame] | 1 | /* Copyright (C) 2007-2016 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 |
Antonio Quartulli | ebf38fb | 2013-11-03 20:40:48 +0100 | [diff] [blame] | 15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | #ifndef _NET_BATMAN_ADV_PACKET_H_ |
| 19 | #define _NET_BATMAN_ADV_PACKET_H_ |
| 20 | |
Sven Eckelmann | 1e2c2a4 | 2015-04-17 19:40:28 +0200 | [diff] [blame] | 21 | #include <asm/byteorder.h> |
| 22 | #include <linux/types.h> |
| 23 | |
Sven Eckelmann | 4c7da0f | 2016-09-21 09:23:50 +0200 | [diff] [blame] | 24 | #define batadv_tp_is_error(n) ((u8)(n) > 127 ? 1 : 0) |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 25 | |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 26 | /** |
| 27 | * enum batadv_packettype - types for batman-adv encapsulated packets |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 28 | * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV |
| 29 | * @BATADV_BCAST: broadcast packets carrying broadcast payload |
| 30 | * @BATADV_CODED: network coded packets |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 31 | * @BATADV_ELP: echo location packets for B.A.T.M.A.N. V |
Antonio Quartulli | 0da0035 | 2016-01-16 16:40:12 +0800 | [diff] [blame] | 32 | * @BATADV_OGM2: originator messages for B.A.T.M.A.N. V |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 33 | * |
| 34 | * @BATADV_UNICAST: unicast packets carrying unicast payload traffic |
| 35 | * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original |
| 36 | * payload packet |
| 37 | * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of |
| 38 | * the sender |
| 39 | * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 40 | * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers |
| 41 | */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 42 | enum batadv_packettype { |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 43 | /* 0x00 - 0x3f: local packets or special rules for handling */ |
| 44 | BATADV_IV_OGM = 0x00, |
| 45 | BATADV_BCAST = 0x01, |
| 46 | BATADV_CODED = 0x02, |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 47 | BATADV_ELP = 0x03, |
Antonio Quartulli | 0da0035 | 2016-01-16 16:40:12 +0800 | [diff] [blame] | 48 | BATADV_OGM2 = 0x04, |
Simon Wunderlich | a1f1ac5 | 2013-04-25 10:37:23 +0200 | [diff] [blame] | 49 | /* 0x40 - 0x7f: unicast */ |
| 50 | #define BATADV_UNICAST_MIN 0x40 |
| 51 | BATADV_UNICAST = 0x40, |
| 52 | BATADV_UNICAST_FRAG = 0x41, |
| 53 | BATADV_UNICAST_4ADDR = 0x42, |
| 54 | BATADV_ICMP = 0x43, |
| 55 | BATADV_UNICAST_TVLV = 0x44, |
| 56 | #define BATADV_UNICAST_MAX 0x7f |
| 57 | /* 0x80 - 0xff: reserved */ |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | /** |
| 61 | * enum batadv_subtype - packet subtype for unicast4addr |
| 62 | * @BATADV_P_DATA: user payload |
Antonio Quartulli | 5c3a0e5 | 2011-06-02 12:29:51 +0200 | [diff] [blame] | 63 | * @BATADV_P_DAT_DHT_GET: DHT request message |
| 64 | * @BATADV_P_DAT_DHT_PUT: DHT store message |
| 65 | * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 66 | */ |
| 67 | enum batadv_subtype { |
Antonio Quartulli | 5c3a0e5 | 2011-06-02 12:29:51 +0200 | [diff] [blame] | 68 | BATADV_P_DATA = 0x01, |
| 69 | BATADV_P_DAT_DHT_GET = 0x02, |
| 70 | BATADV_P_DAT_DHT_PUT = 0x03, |
| 71 | BATADV_P_DAT_CACHE_REPLY = 0x04, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 72 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 73 | |
| 74 | /* this file is included by batctl which needs these defines */ |
Antonio Quartulli | 60cf798 | 2013-04-20 15:59:13 +0200 | [diff] [blame] | 75 | #define BATADV_COMPAT_VERSION 15 |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 76 | |
Simon Wunderlich | 18c68d5 | 2013-04-25 10:37:25 +0200 | [diff] [blame] | 77 | /** |
| 78 | * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets |
| 79 | * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was |
| 80 | * previously received from someone else than the best neighbor. |
Marek Lindner | 143d157 | 2015-08-09 23:56:50 +0800 | [diff] [blame] | 81 | * @BATADV_PRIMARIES_FIRST_HOP: flag unused. |
Simon Wunderlich | 18c68d5 | 2013-04-25 10:37:25 +0200 | [diff] [blame] | 82 | * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a |
| 83 | * one hop neighbor on the interface where it was originally received. |
| 84 | */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 85 | enum batadv_iv_flags { |
Simon Wunderlich | 18c68d5 | 2013-04-25 10:37:25 +0200 | [diff] [blame] | 86 | BATADV_NOT_BEST_NEXT_HOP = BIT(0), |
| 87 | BATADV_PRIMARIES_FIRST_HOP = BIT(1), |
| 88 | BATADV_DIRECTLINK = BIT(2), |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 89 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 90 | |
| 91 | /* ICMP message types */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 92 | enum batadv_icmp_packettype { |
| 93 | BATADV_ECHO_REPLY = 0, |
| 94 | BATADV_DESTINATION_UNREACHABLE = 3, |
| 95 | BATADV_ECHO_REQUEST = 8, |
| 96 | BATADV_TTL_EXCEEDED = 11, |
| 97 | BATADV_PARAMETER_PROBLEM = 12, |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 98 | BATADV_TP = 15, |
Sven Eckelmann | e8958db | 2011-06-04 11:26:00 +0200 | [diff] [blame] | 99 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 100 | |
Linus Lüssing | ab49886 | 2014-02-15 17:47:53 +0100 | [diff] [blame] | 101 | /** |
| 102 | * enum batadv_mcast_flags - flags for multicast capabilities and settings |
| 103 | * @BATADV_MCAST_WANT_ALL_UNSNOOPABLES: we want all packets destined for |
| 104 | * 224.0.0.0/24 or ff02::1 |
Linus Lüssing | 4c8755d | 2014-02-15 17:47:54 +0100 | [diff] [blame] | 105 | * @BATADV_MCAST_WANT_ALL_IPV4: we want all IPv4 multicast packets |
| 106 | * @BATADV_MCAST_WANT_ALL_IPV6: we want all IPv6 multicast packets |
Linus Lüssing | ab49886 | 2014-02-15 17:47:53 +0100 | [diff] [blame] | 107 | */ |
| 108 | enum batadv_mcast_flags { |
| 109 | BATADV_MCAST_WANT_ALL_UNSNOOPABLES = BIT(0), |
Linus Lüssing | 4c8755d | 2014-02-15 17:47:54 +0100 | [diff] [blame] | 110 | BATADV_MCAST_WANT_ALL_IPV4 = BIT(1), |
| 111 | BATADV_MCAST_WANT_ALL_IPV6 = BIT(2), |
Linus Lüssing | ab49886 | 2014-02-15 17:47:53 +0100 | [diff] [blame] | 112 | }; |
| 113 | |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 114 | /* tt data subtypes */ |
| 115 | #define BATADV_TT_DATA_TYPE_MASK 0x0F |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 116 | |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 117 | /** |
| 118 | * enum batadv_tt_data_flags - flags for tt data tvlv |
| 119 | * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM |
| 120 | * @BATADV_TT_REQUEST: TT request message |
| 121 | * @BATADV_TT_RESPONSE: TT response message |
| 122 | * @BATADV_TT_FULL_TABLE: contains full table to replace existing table |
| 123 | */ |
| 124 | enum batadv_tt_data_flags { |
| 125 | BATADV_TT_OGM_DIFF = BIT(0), |
| 126 | BATADV_TT_REQUEST = BIT(1), |
| 127 | BATADV_TT_RESPONSE = BIT(2), |
| 128 | BATADV_TT_FULL_TABLE = BIT(4), |
Antonio Quartulli | a73105b | 2011-04-27 14:27:44 +0200 | [diff] [blame] | 129 | }; |
| 130 | |
Antonio Quartulli | 43e6f65 | 2014-02-22 16:48:14 +0100 | [diff] [blame] | 131 | /** |
Sven Eckelmann | 6f68b00 | 2015-09-06 21:38:49 +0200 | [diff] [blame] | 132 | * enum batadv_vlan_flags - flags for the four MSB of any vlan ID field |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 133 | * @BATADV_VLAN_HAS_TAG: whether the field contains a valid vlan tag or not |
| 134 | */ |
| 135 | enum batadv_vlan_flags { |
| 136 | BATADV_VLAN_HAS_TAG = BIT(15), |
| 137 | }; |
| 138 | |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 139 | /* claim frame types for the bridge loop avoidance */ |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 140 | enum batadv_bla_claimframe { |
Simon Wunderlich | 3eb8773 | 2012-06-23 12:34:18 +0200 | [diff] [blame] | 141 | BATADV_CLAIM_TYPE_CLAIM = 0x00, |
| 142 | BATADV_CLAIM_TYPE_UNCLAIM = 0x01, |
Sven Eckelmann | acd34af | 2012-06-03 22:19:21 +0200 | [diff] [blame] | 143 | BATADV_CLAIM_TYPE_ANNOUNCE = 0x02, |
| 144 | BATADV_CLAIM_TYPE_REQUEST = 0x03, |
Simon Wunderlich | cd9c7bf | 2016-03-12 10:49:33 +0100 | [diff] [blame] | 145 | BATADV_CLAIM_TYPE_LOOPDETECT = 0x04, |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 146 | }; |
| 147 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 148 | /** |
| 149 | * enum batadv_tvlv_type - tvlv type definitions |
| 150 | * @BATADV_TVLV_GW: gateway tvlv |
Marek Lindner | 17cf0ea | 2013-04-23 21:39:59 +0800 | [diff] [blame] | 151 | * @BATADV_TVLV_DAT: distributed arp table tvlv |
Marek Lindner | 3f4841f | 2013-04-23 21:40:00 +0800 | [diff] [blame] | 152 | * @BATADV_TVLV_NC: network coding tvlv |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 153 | * @BATADV_TVLV_TT: translation table tvlv |
Marek Lindner | 122edaa | 2013-04-23 21:40:03 +0800 | [diff] [blame] | 154 | * @BATADV_TVLV_ROAM: roaming advertisement tvlv |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 155 | * @BATADV_TVLV_MCAST: multicast capability tvlv |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 156 | */ |
| 157 | enum batadv_tvlv_type { |
| 158 | BATADV_TVLV_GW = 0x01, |
Marek Lindner | 17cf0ea | 2013-04-23 21:39:59 +0800 | [diff] [blame] | 159 | BATADV_TVLV_DAT = 0x02, |
Marek Lindner | 3f4841f | 2013-04-23 21:40:00 +0800 | [diff] [blame] | 160 | BATADV_TVLV_NC = 0x03, |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 161 | BATADV_TVLV_TT = 0x04, |
Marek Lindner | 122edaa | 2013-04-23 21:40:03 +0800 | [diff] [blame] | 162 | BATADV_TVLV_ROAM = 0x05, |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 163 | BATADV_TVLV_MCAST = 0x06, |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 164 | }; |
| 165 | |
Simon Wunderlich | 2f7a318 | 2013-12-02 20:38:33 +0100 | [diff] [blame] | 166 | #pragma pack(2) |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 167 | /* the destination hardware field in the ARP frame is used to |
| 168 | * transport the claim type and the group id |
| 169 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 170 | struct batadv_bla_claim_dst { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 171 | u8 magic[3]; /* FF:43:05 */ |
| 172 | u8 type; /* bla_claimframe */ |
Al Viro | 3e2f1a1 | 2012-04-22 07:47:50 +0100 | [diff] [blame] | 173 | __be16 group; /* group id */ |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 174 | }; |
Antonio Quartulli | aa143d2 | 2014-09-01 14:37:27 +0200 | [diff] [blame] | 175 | |
Simon Wunderlich | 2f7a318 | 2013-12-02 20:38:33 +0100 | [diff] [blame] | 176 | #pragma pack() |
Simon Wunderlich | 2372138 | 2012-01-22 20:00:19 +0100 | [diff] [blame] | 177 | |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 178 | /** |
| 179 | * struct batadv_ogm_packet - ogm (routing protocol) packet |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 180 | * @packet_type: batman-adv packet type, part of the general header |
| 181 | * @version: batman-adv protocol version, part of the genereal header |
| 182 | * @ttl: time to live for this packet, part of the genereal header |
Simon Wunderlich | 18c68d5 | 2013-04-25 10:37:25 +0200 | [diff] [blame] | 183 | * @flags: contains routing relevant flags - see enum batadv_iv_flags |
Sven Eckelmann | 7afcbbe | 2015-10-31 12:29:29 +0100 | [diff] [blame] | 184 | * @seqno: sequence identification |
| 185 | * @orig: address of the source node |
| 186 | * @prev_sender: address of the previous sender |
| 187 | * @reserved: reserved byte for alignment |
| 188 | * @tq: transmission quality |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 189 | * @tvlv_len: length of tvlv data following the ogm header |
| 190 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 191 | struct batadv_ogm_packet { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 192 | u8 packet_type; |
| 193 | u8 version; |
| 194 | u8 ttl; |
| 195 | u8 flags; |
| 196 | __be32 seqno; |
| 197 | u8 orig[ETH_ALEN]; |
| 198 | u8 prev_sender[ETH_ALEN]; |
| 199 | u8 reserved; |
| 200 | u8 tq; |
| 201 | __be16 tvlv_len; |
Simon Wunderlich | 9284a47 | 2013-04-25 10:37:24 +0200 | [diff] [blame] | 202 | /* __packed is not needed as the struct size is divisible by 4, |
| 203 | * and the largest data type in this struct has a size of 4. |
| 204 | */ |
| 205 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 206 | |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 207 | #define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet) |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 208 | |
Antonio Quartulli | 0bf84c1 | 2013-05-18 14:56:57 +0200 | [diff] [blame] | 209 | /** |
Antonio Quartulli | 0da0035 | 2016-01-16 16:40:12 +0800 | [diff] [blame] | 210 | * struct batadv_ogm2_packet - ogm2 (routing protocol) packet |
| 211 | * @packet_type: batman-adv packet type, part of the general header |
| 212 | * @version: batman-adv protocol version, part of the general header |
| 213 | * @ttl: time to live for this packet, part of the general header |
| 214 | * @flags: reseved for routing relevant flags - currently always 0 |
| 215 | * @seqno: sequence number |
| 216 | * @orig: originator mac address |
| 217 | * @tvlv_len: length of the appended tvlv buffer (in bytes) |
| 218 | * @throughput: the currently flooded path throughput |
| 219 | */ |
| 220 | struct batadv_ogm2_packet { |
| 221 | u8 packet_type; |
| 222 | u8 version; |
| 223 | u8 ttl; |
| 224 | u8 flags; |
| 225 | __be32 seqno; |
| 226 | u8 orig[ETH_ALEN]; |
| 227 | __be16 tvlv_len; |
| 228 | __be32 throughput; |
| 229 | /* __packed is not needed as the struct size is divisible by 4, |
| 230 | * and the largest data type in this struct has a size of 4. |
| 231 | */ |
| 232 | }; |
| 233 | |
| 234 | #define BATADV_OGM2_HLEN sizeof(struct batadv_ogm2_packet) |
| 235 | |
| 236 | /** |
Linus Luessing | d6f94d9 | 2016-01-16 16:40:09 +0800 | [diff] [blame] | 237 | * struct batadv_elp_packet - elp (neighbor discovery) packet |
| 238 | * @packet_type: batman-adv packet type, part of the general header |
| 239 | * @version: batman-adv protocol version, part of the genereal header |
| 240 | * @orig: originator mac address |
| 241 | * @seqno: sequence number |
| 242 | * @elp_interval: currently used ELP sending interval in ms |
| 243 | */ |
| 244 | struct batadv_elp_packet { |
| 245 | u8 packet_type; |
| 246 | u8 version; |
| 247 | u8 orig[ETH_ALEN]; |
| 248 | __be32 seqno; |
| 249 | __be32 elp_interval; |
| 250 | }; |
| 251 | |
| 252 | #define BATADV_ELP_HLEN sizeof(struct batadv_elp_packet) |
| 253 | |
| 254 | /** |
Sven Eckelmann | 6f68b00 | 2015-09-06 21:38:49 +0200 | [diff] [blame] | 255 | * struct batadv_icmp_header - common members among all the ICMP packets |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 256 | * @packet_type: batman-adv packet type, part of the general header |
| 257 | * @version: batman-adv protocol version, part of the genereal header |
| 258 | * @ttl: time to live for this packet, part of the genereal header |
Antonio Quartulli | 0bf84c1 | 2013-05-18 14:56:57 +0200 | [diff] [blame] | 259 | * @msg_type: ICMP packet type |
| 260 | * @dst: address of the destination node |
| 261 | * @orig: address of the source node |
| 262 | * @uid: local ICMP socket identifier |
Antonio Quartulli | 27a417e | 2013-12-05 15:33:00 +0100 | [diff] [blame] | 263 | * @align: not used - useful for alignment purposes only |
| 264 | * |
| 265 | * This structure is used for ICMP packets parsing only and it is never sent |
| 266 | * over the wire. The alignment field at the end is there to ensure that |
| 267 | * members are padded the same way as they are in real packets. |
Antonio Quartulli | 0bf84c1 | 2013-05-18 14:56:57 +0200 | [diff] [blame] | 268 | */ |
| 269 | struct batadv_icmp_header { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 270 | u8 packet_type; |
| 271 | u8 version; |
| 272 | u8 ttl; |
| 273 | u8 msg_type; /* see ICMP message types above */ |
| 274 | u8 dst[ETH_ALEN]; |
| 275 | u8 orig[ETH_ALEN]; |
| 276 | u8 uid; |
| 277 | u8 align[3]; |
Antonio Quartulli | 0bf84c1 | 2013-05-18 14:56:57 +0200 | [diff] [blame] | 278 | }; |
| 279 | |
| 280 | /** |
Sven Eckelmann | 6f68b00 | 2015-09-06 21:38:49 +0200 | [diff] [blame] | 281 | * struct batadv_icmp_packet - ICMP packet |
Antonio Quartulli | 27a417e | 2013-12-05 15:33:00 +0100 | [diff] [blame] | 282 | * @packet_type: batman-adv packet type, part of the general header |
| 283 | * @version: batman-adv protocol version, part of the genereal header |
| 284 | * @ttl: time to live for this packet, part of the genereal header |
| 285 | * @msg_type: ICMP packet type |
| 286 | * @dst: address of the destination node |
| 287 | * @orig: address of the source node |
| 288 | * @uid: local ICMP socket identifier |
Antonio Quartulli | 0bf84c1 | 2013-05-18 14:56:57 +0200 | [diff] [blame] | 289 | * @reserved: not used - useful for alignment |
| 290 | * @seqno: ICMP sequence number |
| 291 | */ |
| 292 | struct batadv_icmp_packet { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 293 | u8 packet_type; |
| 294 | u8 version; |
| 295 | u8 ttl; |
| 296 | u8 msg_type; /* see ICMP message types above */ |
| 297 | u8 dst[ETH_ALEN]; |
| 298 | u8 orig[ETH_ALEN]; |
| 299 | u8 uid; |
| 300 | u8 reserved; |
| 301 | __be16 seqno; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 302 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 303 | |
Antonio Quartulli | 33a3bb4 | 2016-05-05 13:09:43 +0200 | [diff] [blame] | 304 | /** |
| 305 | * struct batadv_icmp_tp_packet - ICMP TP Meter packet |
| 306 | * @packet_type: batman-adv packet type, part of the general header |
| 307 | * @version: batman-adv protocol version, part of the genereal header |
| 308 | * @ttl: time to live for this packet, part of the genereal header |
| 309 | * @msg_type: ICMP packet type |
| 310 | * @dst: address of the destination node |
| 311 | * @orig: address of the source node |
| 312 | * @uid: local ICMP socket identifier |
| 313 | * @subtype: TP packet subtype (see batadv_icmp_tp_subtype) |
| 314 | * @session: TP session identifier |
| 315 | * @seqno: the TP sequence number |
| 316 | * @timestamp: time when the packet has been sent. This value is filled in a |
| 317 | * TP_MSG and echoed back in the next TP_ACK so that the sender can compute the |
| 318 | * RTT. Since it is read only by the host which wrote it, there is no need to |
| 319 | * store it using network order |
| 320 | */ |
| 321 | struct batadv_icmp_tp_packet { |
| 322 | u8 packet_type; |
| 323 | u8 version; |
| 324 | u8 ttl; |
| 325 | u8 msg_type; /* see ICMP message types above */ |
| 326 | u8 dst[ETH_ALEN]; |
| 327 | u8 orig[ETH_ALEN]; |
| 328 | u8 uid; |
| 329 | u8 subtype; |
| 330 | u8 session[2]; |
| 331 | __be32 seqno; |
| 332 | __be32 timestamp; |
| 333 | }; |
| 334 | |
| 335 | /** |
| 336 | * enum batadv_icmp_tp_subtype - ICMP TP Meter packet subtypes |
| 337 | * @BATADV_TP_MSG: Msg from sender to receiver |
| 338 | * @BATADV_TP_ACK: acknowledgment from receiver to sender |
| 339 | */ |
| 340 | enum batadv_icmp_tp_subtype { |
| 341 | BATADV_TP_MSG = 0, |
| 342 | BATADV_TP_ACK, |
| 343 | }; |
| 344 | |
Sven Eckelmann | 7e071c7 | 2012-06-03 22:19:13 +0200 | [diff] [blame] | 345 | #define BATADV_RR_LEN 16 |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 346 | |
Antonio Quartulli | 0bf84c1 | 2013-05-18 14:56:57 +0200 | [diff] [blame] | 347 | /** |
Sven Eckelmann | 6f68b00 | 2015-09-06 21:38:49 +0200 | [diff] [blame] | 348 | * struct batadv_icmp_packet_rr - ICMP RouteRecord packet |
Antonio Quartulli | 27a417e | 2013-12-05 15:33:00 +0100 | [diff] [blame] | 349 | * @packet_type: batman-adv packet type, part of the general header |
| 350 | * @version: batman-adv protocol version, part of the genereal header |
| 351 | * @ttl: time to live for this packet, part of the genereal header |
| 352 | * @msg_type: ICMP packet type |
| 353 | * @dst: address of the destination node |
| 354 | * @orig: address of the source node |
| 355 | * @uid: local ICMP socket identifier |
Antonio Quartulli | 0bf84c1 | 2013-05-18 14:56:57 +0200 | [diff] [blame] | 356 | * @rr_cur: number of entries the rr array |
| 357 | * @seqno: ICMP sequence number |
| 358 | * @rr: route record array |
Sven Eckelmann | 9cfc7bd | 2012-05-12 02:09:43 +0200 | [diff] [blame] | 359 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 360 | struct batadv_icmp_packet_rr { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 361 | u8 packet_type; |
| 362 | u8 version; |
| 363 | u8 ttl; |
| 364 | u8 msg_type; /* see ICMP message types above */ |
| 365 | u8 dst[ETH_ALEN]; |
| 366 | u8 orig[ETH_ALEN]; |
| 367 | u8 uid; |
| 368 | u8 rr_cur; |
| 369 | __be16 seqno; |
| 370 | u8 rr[BATADV_RR_LEN][ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 371 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 372 | |
Simon Wunderlich | da6b8c2 | 2013-10-22 22:50:09 +0200 | [diff] [blame] | 373 | #define BATADV_ICMP_MAX_PACKET_SIZE sizeof(struct batadv_icmp_packet_rr) |
| 374 | |
Sven Eckelmann | e022b95 | 2012-11-05 21:25:27 +0100 | [diff] [blame] | 375 | /* All packet headers in front of an ethernet header have to be completely |
| 376 | * divisible by 2 but not by 4 to make the payload after the ethernet |
| 377 | * header again 4 bytes boundary aligned. |
| 378 | * |
| 379 | * A packing of 2 is necessary to avoid extra padding at the end of the struct |
| 380 | * caused by a structure member which is larger than two bytes. Otherwise |
| 381 | * the structure would not fulfill the previously mentioned rule to avoid the |
| 382 | * misalignment of the payload after the ethernet header. It may also lead to |
| 383 | * leakage of information when the padding it not initialized before sending. |
| 384 | */ |
| 385 | #pragma pack(2) |
| 386 | |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 387 | /** |
| 388 | * struct batadv_unicast_packet - unicast packet for network payload |
| 389 | * @packet_type: batman-adv packet type, part of the general header |
| 390 | * @version: batman-adv protocol version, part of the genereal header |
| 391 | * @ttl: time to live for this packet, part of the genereal header |
| 392 | * @ttvn: translation table version number |
| 393 | * @dest: originator destination of the unicast packet |
| 394 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 395 | struct batadv_unicast_packet { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 396 | u8 packet_type; |
| 397 | u8 version; |
| 398 | u8 ttl; |
| 399 | u8 ttvn; /* destination translation table version number */ |
| 400 | u8 dest[ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 401 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 402 | * following ethernet header again 4 bytes boundary aligned |
| 403 | */ |
| 404 | }; |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 405 | |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 406 | /** |
| 407 | * struct batadv_unicast_4addr_packet - extended unicast packet |
| 408 | * @u: common unicast packet header |
| 409 | * @src: address of the source |
| 410 | * @subtype: packet subtype |
Sven Eckelmann | 7afcbbe | 2015-10-31 12:29:29 +0100 | [diff] [blame] | 411 | * @reserved: reserved byte for alignment |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 412 | */ |
| 413 | struct batadv_unicast_4addr_packet { |
| 414 | struct batadv_unicast_packet u; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 415 | u8 src[ETH_ALEN]; |
| 416 | u8 subtype; |
| 417 | u8 reserved; |
Antonio Quartulli | 7cdcf6d | 2012-10-01 09:57:35 +0200 | [diff] [blame] | 418 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 419 | * following ethernet header again 4 bytes boundary aligned |
| 420 | */ |
| 421 | }; |
| 422 | |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 423 | /** |
| 424 | * struct batadv_frag_packet - fragmented packet |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 425 | * @packet_type: batman-adv packet type, part of the general header |
| 426 | * @version: batman-adv protocol version, part of the genereal header |
| 427 | * @ttl: time to live for this packet, part of the genereal header |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 428 | * @dest: final destination used when routing fragments |
| 429 | * @orig: originator of the fragment used when merging the packet |
| 430 | * @no: fragment number within this sequence |
Andrew Lunn | c0f25c8 | 2016-05-09 20:03:36 +0200 | [diff] [blame] | 431 | * @priority: priority of frame, from ToS IP precedence or 802.1p |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 432 | * @reserved: reserved byte for alignment |
| 433 | * @seqno: sequence identification |
| 434 | * @total_size: size of the merged packet |
| 435 | */ |
| 436 | struct batadv_frag_packet { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 437 | u8 packet_type; |
| 438 | u8 version; /* batman version field */ |
| 439 | u8 ttl; |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 440 | #if defined(__BIG_ENDIAN_BITFIELD) |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 441 | u8 no:4; |
Andrew Lunn | c0f25c8 | 2016-05-09 20:03:36 +0200 | [diff] [blame] | 442 | u8 priority:3; |
| 443 | u8 reserved:1; |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 444 | #elif defined(__LITTLE_ENDIAN_BITFIELD) |
Andrew Lunn | c0f25c8 | 2016-05-09 20:03:36 +0200 | [diff] [blame] | 445 | u8 reserved:1; |
| 446 | u8 priority:3; |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 447 | u8 no:4; |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 448 | #else |
Antonio Quartulli | 3f68785 | 2014-11-02 11:29:56 +0100 | [diff] [blame] | 449 | #error "unknown bitfield endianness" |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 450 | #endif |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 451 | u8 dest[ETH_ALEN]; |
| 452 | u8 orig[ETH_ALEN]; |
| 453 | __be16 seqno; |
| 454 | __be16 total_size; |
Martin Hundebøll | 610bfc6bc | 2013-05-23 16:53:02 +0200 | [diff] [blame] | 455 | }; |
| 456 | |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 457 | /** |
| 458 | * struct batadv_bcast_packet - broadcast packet for network payload |
| 459 | * @packet_type: batman-adv packet type, part of the general header |
| 460 | * @version: batman-adv protocol version, part of the genereal header |
| 461 | * @ttl: time to live for this packet, part of the genereal header |
| 462 | * @reserved: reserved byte for alignment |
| 463 | * @seqno: sequence identification |
| 464 | * @orig: originator of the broadcast packet |
| 465 | */ |
Sven Eckelmann | 9641269 | 2012-06-05 22:31:30 +0200 | [diff] [blame] | 466 | struct batadv_bcast_packet { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 467 | u8 packet_type; |
| 468 | u8 version; /* batman version field */ |
| 469 | u8 ttl; |
| 470 | u8 reserved; |
| 471 | __be32 seqno; |
| 472 | u8 orig[ETH_ALEN]; |
Sven Eckelmann | f6c57a4 | 2012-11-05 21:25:26 +0100 | [diff] [blame] | 473 | /* "4 bytes boundary + 2 bytes" long to make the payload after the |
| 474 | * following ethernet header again 4 bytes boundary aligned |
| 475 | */ |
Sven Eckelmann | e022b95 | 2012-11-05 21:25:27 +0100 | [diff] [blame] | 476 | }; |
| 477 | |
Martin Hundebøll | 3c12de9 | 2013-01-25 11:12:41 +0100 | [diff] [blame] | 478 | /** |
| 479 | * struct batadv_coded_packet - network coded packet |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 480 | * @packet_type: batman-adv packet type, part of the general header |
| 481 | * @version: batman-adv protocol version, part of the genereal header |
| 482 | * @ttl: time to live for this packet, part of the genereal header |
Martin Hundebøll | 3c12de9 | 2013-01-25 11:12:41 +0100 | [diff] [blame] | 483 | * @first_source: original source of first included packet |
| 484 | * @first_orig_dest: original destinal of first included packet |
| 485 | * @first_crc: checksum of first included packet |
| 486 | * @first_ttvn: tt-version number of first included packet |
| 487 | * @second_ttl: ttl of second packet |
| 488 | * @second_dest: second receiver of this coded packet |
| 489 | * @second_source: original source of second included packet |
| 490 | * @second_orig_dest: original destination of second included packet |
| 491 | * @second_crc: checksum of second included packet |
| 492 | * @second_ttvn: tt version number of second included packet |
| 493 | * @coded_len: length of network coded part of the payload |
| 494 | */ |
| 495 | struct batadv_coded_packet { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 496 | u8 packet_type; |
| 497 | u8 version; /* batman version field */ |
| 498 | u8 ttl; |
| 499 | u8 first_ttvn; |
| 500 | /* u8 first_dest[ETH_ALEN]; - saved in mac header destination */ |
| 501 | u8 first_source[ETH_ALEN]; |
| 502 | u8 first_orig_dest[ETH_ALEN]; |
| 503 | __be32 first_crc; |
| 504 | u8 second_ttl; |
| 505 | u8 second_ttvn; |
| 506 | u8 second_dest[ETH_ALEN]; |
| 507 | u8 second_source[ETH_ALEN]; |
| 508 | u8 second_orig_dest[ETH_ALEN]; |
| 509 | __be32 second_crc; |
| 510 | __be16 coded_len; |
Martin Hundebøll | 3c12de9 | 2013-01-25 11:12:41 +0100 | [diff] [blame] | 511 | }; |
| 512 | |
Simon Wunderlich | 46b76e0 | 2013-12-02 20:38:30 +0100 | [diff] [blame] | 513 | #pragma pack() |
| 514 | |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 515 | /** |
Antonio Quartulli | 6d030de | 2016-03-11 16:36:19 +0100 | [diff] [blame] | 516 | * struct batadv_unicast_tvlv_packet - generic unicast packet with tvlv payload |
Simon Wunderlich | a40d9b0 | 2013-12-02 20:38:31 +0100 | [diff] [blame] | 517 | * @packet_type: batman-adv packet type, part of the general header |
| 518 | * @version: batman-adv protocol version, part of the genereal header |
| 519 | * @ttl: time to live for this packet, part of the genereal header |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 520 | * @reserved: reserved field (for packet alignment) |
| 521 | * @src: address of the source |
| 522 | * @dst: address of the destination |
| 523 | * @tvlv_len: length of tvlv data following the unicast tvlv header |
Antonio Quartulli | 3f68785 | 2014-11-02 11:29:56 +0100 | [diff] [blame] | 524 | * @align: 2 bytes to align the header to a 4 byte boundary |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 525 | */ |
| 526 | struct batadv_unicast_tvlv_packet { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 527 | u8 packet_type; |
| 528 | u8 version; /* batman version field */ |
| 529 | u8 ttl; |
| 530 | u8 reserved; |
| 531 | u8 dst[ETH_ALEN]; |
| 532 | u8 src[ETH_ALEN]; |
| 533 | __be16 tvlv_len; |
| 534 | u16 align; |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 535 | }; |
| 536 | |
| 537 | /** |
| 538 | * struct batadv_tvlv_hdr - base tvlv header struct |
| 539 | * @type: tvlv container type (see batadv_tvlv_type) |
| 540 | * @version: tvlv container version |
| 541 | * @len: tvlv container length |
| 542 | */ |
| 543 | struct batadv_tvlv_hdr { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 544 | u8 type; |
| 545 | u8 version; |
| 546 | __be16 len; |
Marek Lindner | ef26157 | 2013-04-23 21:39:57 +0800 | [diff] [blame] | 547 | }; |
| 548 | |
Marek Lindner | 414254e | 2013-04-23 21:39:58 +0800 | [diff] [blame] | 549 | /** |
| 550 | * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv |
| 551 | * container |
| 552 | * @bandwidth_down: advertised uplink download bandwidth |
| 553 | * @bandwidth_up: advertised uplink upload bandwidth |
| 554 | */ |
| 555 | struct batadv_tvlv_gateway_data { |
| 556 | __be32 bandwidth_down; |
| 557 | __be32 bandwidth_up; |
| 558 | }; |
| 559 | |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 560 | /** |
| 561 | * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container |
| 562 | * @flags: translation table flags (see batadv_tt_data_flags) |
| 563 | * @ttvn: translation table version number |
Sven Eckelmann | e51f039 | 2015-09-06 21:38:51 +0200 | [diff] [blame] | 564 | * @num_vlan: number of announced VLANs. In the TVLV this struct is followed by |
Antonio Quartulli | 7ea7b4a | 2013-07-30 22:16:25 +0200 | [diff] [blame] | 565 | * one batadv_tvlv_tt_vlan_data object per announced vlan |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 566 | */ |
| 567 | struct batadv_tvlv_tt_data { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 568 | u8 flags; |
| 569 | u8 ttvn; |
| 570 | __be16 num_vlan; |
Antonio Quartulli | 7ea7b4a | 2013-07-30 22:16:25 +0200 | [diff] [blame] | 571 | }; |
| 572 | |
| 573 | /** |
| 574 | * struct batadv_tvlv_tt_vlan_data - vlan specific tt data propagated through |
| 575 | * the tt tvlv container |
| 576 | * @crc: crc32 checksum of the entries belonging to this vlan |
| 577 | * @vid: vlan identifier |
| 578 | * @reserved: unused, useful for alignment purposes |
| 579 | */ |
| 580 | struct batadv_tvlv_tt_vlan_data { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 581 | __be32 crc; |
| 582 | __be16 vid; |
| 583 | u16 reserved; |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 584 | }; |
| 585 | |
| 586 | /** |
| 587 | * struct batadv_tvlv_tt_change - translation table diff data |
| 588 | * @flags: status indicators concerning the non-mesh client (see |
| 589 | * batadv_tt_client_flags) |
Antonio Quartulli | ca66304 | 2013-12-15 13:26:55 +0100 | [diff] [blame] | 590 | * @reserved: reserved field - useful for alignment purposes only |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 591 | * @addr: mac address of non-mesh client that triggered this tt change |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 592 | * @vid: VLAN identifier |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 593 | */ |
| 594 | struct batadv_tvlv_tt_change { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 595 | u8 flags; |
| 596 | u8 reserved[3]; |
| 597 | u8 addr[ETH_ALEN]; |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 598 | __be16 vid; |
Marek Lindner | e1bf0c1 | 2013-04-23 21:40:01 +0800 | [diff] [blame] | 599 | }; |
| 600 | |
Marek Lindner | 122edaa | 2013-04-23 21:40:03 +0800 | [diff] [blame] | 601 | /** |
| 602 | * struct batadv_tvlv_roam_adv - roaming advertisement |
| 603 | * @client: mac address of roaming client |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 604 | * @vid: VLAN identifier |
Marek Lindner | 122edaa | 2013-04-23 21:40:03 +0800 | [diff] [blame] | 605 | */ |
| 606 | struct batadv_tvlv_roam_adv { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 607 | u8 client[ETH_ALEN]; |
Antonio Quartulli | c018ad3 | 2013-06-04 12:11:39 +0200 | [diff] [blame] | 608 | __be16 vid; |
Marek Lindner | 122edaa | 2013-04-23 21:40:03 +0800 | [diff] [blame] | 609 | }; |
| 610 | |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 611 | /** |
| 612 | * struct batadv_tvlv_mcast_data - payload of a multicast tvlv |
| 613 | * @flags: multicast flags announced by the orig node |
| 614 | * @reserved: reserved field |
| 615 | */ |
| 616 | struct batadv_tvlv_mcast_data { |
Sven Eckelmann | 6b5e971 | 2015-05-26 18:34:26 +0200 | [diff] [blame] | 617 | u8 flags; |
| 618 | u8 reserved[3]; |
Linus Lüssing | 60432d7 | 2014-02-15 17:47:51 +0100 | [diff] [blame] | 619 | }; |
| 620 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 621 | #endif /* _NET_BATMAN_ADV_PACKET_H_ */ |