1 /* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) */
2 /* Copyright (C) 2007-2017 B.A.T.M.A.N. contributors:
4 * Marek Lindner, Simon Wunderlich
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #ifndef _UAPI_LINUX_BATADV_PACKET_H_
20 #define _UAPI_LINUX_BATADV_PACKET_H_
22 #include <asm/byteorder.h>
23 #include <linux/if_ether.h>
24 #include <linux/types.h>
27 * batadv_tp_is_error() - Check throughput meter return code for error
28 * @n: throughput meter return code
30 * Return: 0 when not error was detected, != 0 otherwise
32 #define batadv_tp_is_error(n) ((__u8)(n) > 127 ? 1 : 0)
35 * enum batadv_packettype - types for batman-adv encapsulated packets
36 * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV
37 * @BATADV_BCAST: broadcast packets carrying broadcast payload
38 * @BATADV_CODED: network coded packets
39 * @BATADV_ELP: echo location packets for B.A.T.M.A.N. V
40 * @BATADV_OGM2: originator messages for B.A.T.M.A.N. V
42 * @BATADV_UNICAST: unicast packets carrying unicast payload traffic
43 * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original
45 * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of
47 * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute
48 * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers
50 enum batadv_packettype
{
51 /* 0x00 - 0x3f: local packets or special rules for handling */
57 /* 0x40 - 0x7f: unicast */
58 #define BATADV_UNICAST_MIN 0x40
59 BATADV_UNICAST
= 0x40,
60 BATADV_UNICAST_FRAG
= 0x41,
61 BATADV_UNICAST_4ADDR
= 0x42,
63 BATADV_UNICAST_TVLV
= 0x44,
64 #define BATADV_UNICAST_MAX 0x7f
65 /* 0x80 - 0xff: reserved */
69 * enum batadv_subtype - packet subtype for unicast4addr
70 * @BATADV_P_DATA: user payload
71 * @BATADV_P_DAT_DHT_GET: DHT request message
72 * @BATADV_P_DAT_DHT_PUT: DHT store message
73 * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
77 BATADV_P_DAT_DHT_GET
= 0x02,
78 BATADV_P_DAT_DHT_PUT
= 0x03,
79 BATADV_P_DAT_CACHE_REPLY
= 0x04,
82 /* this file is included by batctl which needs these defines */
83 #define BATADV_COMPAT_VERSION 15
86 * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets
87 * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was
88 * previously received from someone else than the best neighbor.
89 * @BATADV_PRIMARIES_FIRST_HOP: flag unused.
90 * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a
91 * one hop neighbor on the interface where it was originally received.
93 enum batadv_iv_flags
{
94 BATADV_NOT_BEST_NEXT_HOP
= 1UL << 0,
95 BATADV_PRIMARIES_FIRST_HOP
= 1UL << 1,
96 BATADV_DIRECTLINK
= 1UL << 2,
100 * enum batadv_icmp_packettype - ICMP message types
101 * @BATADV_ECHO_REPLY: success reply to BATADV_ECHO_REQUEST
102 * @BATADV_DESTINATION_UNREACHABLE: failure when route to destination not found
103 * @BATADV_ECHO_REQUEST: request BATADV_ECHO_REPLY from destination
104 * @BATADV_TTL_EXCEEDED: error after BATADV_ECHO_REQUEST traversed too many hops
105 * @BATADV_PARAMETER_PROBLEM: return code for malformed messages
106 * @BATADV_TP: throughput meter packet
108 enum batadv_icmp_packettype
{
109 BATADV_ECHO_REPLY
= 0,
110 BATADV_DESTINATION_UNREACHABLE
= 3,
111 BATADV_ECHO_REQUEST
= 8,
112 BATADV_TTL_EXCEEDED
= 11,
113 BATADV_PARAMETER_PROBLEM
= 12,
118 * enum batadv_mcast_flags - flags for multicast capabilities and settings
119 * @BATADV_MCAST_WANT_ALL_UNSNOOPABLES: we want all packets destined for
120 * 224.0.0.0/24 or ff02::1
121 * @BATADV_MCAST_WANT_ALL_IPV4: we want all IPv4 multicast packets
122 * @BATADV_MCAST_WANT_ALL_IPV6: we want all IPv6 multicast packets
124 enum batadv_mcast_flags
{
125 BATADV_MCAST_WANT_ALL_UNSNOOPABLES
= 1UL << 0,
126 BATADV_MCAST_WANT_ALL_IPV4
= 1UL << 1,
127 BATADV_MCAST_WANT_ALL_IPV6
= 1UL << 2,
130 /* tt data subtypes */
131 #define BATADV_TT_DATA_TYPE_MASK 0x0F
134 * enum batadv_tt_data_flags - flags for tt data tvlv
135 * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
136 * @BATADV_TT_REQUEST: TT request message
137 * @BATADV_TT_RESPONSE: TT response message
138 * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
140 enum batadv_tt_data_flags
{
141 BATADV_TT_OGM_DIFF
= 1UL << 0,
142 BATADV_TT_REQUEST
= 1UL << 1,
143 BATADV_TT_RESPONSE
= 1UL << 2,
144 BATADV_TT_FULL_TABLE
= 1UL << 4,
148 * enum batadv_vlan_flags - flags for the four MSB of any vlan ID field
149 * @BATADV_VLAN_HAS_TAG: whether the field contains a valid vlan tag or not
151 enum batadv_vlan_flags
{
152 BATADV_VLAN_HAS_TAG
= 1UL << 15,
156 * enum batadv_bla_claimframe - claim frame types for the bridge loop avoidance
157 * @BATADV_CLAIM_TYPE_CLAIM: claim of a client mac address
158 * @BATADV_CLAIM_TYPE_UNCLAIM: unclaim of a client mac address
159 * @BATADV_CLAIM_TYPE_ANNOUNCE: announcement of backbone with current crc
160 * @BATADV_CLAIM_TYPE_REQUEST: request of full claim table
161 * @BATADV_CLAIM_TYPE_LOOPDETECT: mesh-traversing loop detect packet
163 enum batadv_bla_claimframe
{
164 BATADV_CLAIM_TYPE_CLAIM
= 0x00,
165 BATADV_CLAIM_TYPE_UNCLAIM
= 0x01,
166 BATADV_CLAIM_TYPE_ANNOUNCE
= 0x02,
167 BATADV_CLAIM_TYPE_REQUEST
= 0x03,
168 BATADV_CLAIM_TYPE_LOOPDETECT
= 0x04,
172 * enum batadv_tvlv_type - tvlv type definitions
173 * @BATADV_TVLV_GW: gateway tvlv
174 * @BATADV_TVLV_DAT: distributed arp table tvlv
175 * @BATADV_TVLV_NC: network coding tvlv
176 * @BATADV_TVLV_TT: translation table tvlv
177 * @BATADV_TVLV_ROAM: roaming advertisement tvlv
178 * @BATADV_TVLV_MCAST: multicast capability tvlv
180 enum batadv_tvlv_type
{
181 BATADV_TVLV_GW
= 0x01,
182 BATADV_TVLV_DAT
= 0x02,
183 BATADV_TVLV_NC
= 0x03,
184 BATADV_TVLV_TT
= 0x04,
185 BATADV_TVLV_ROAM
= 0x05,
186 BATADV_TVLV_MCAST
= 0x06,
190 /* the destination hardware field in the ARP frame is used to
191 * transport the claim type and the group id
193 struct batadv_bla_claim_dst
{
194 __u8 magic
[3]; /* FF:43:05 */
195 __u8 type
; /* bla_claimframe */
196 __be16 group
; /* group id */
202 * struct batadv_ogm_packet - ogm (routing protocol) packet
203 * @packet_type: batman-adv packet type, part of the general header
204 * @version: batman-adv protocol version, part of the genereal header
205 * @ttl: time to live for this packet, part of the genereal header
206 * @flags: contains routing relevant flags - see enum batadv_iv_flags
207 * @seqno: sequence identification
208 * @orig: address of the source node
209 * @prev_sender: address of the previous sender
210 * @reserved: reserved byte for alignment
211 * @tq: transmission quality
212 * @tvlv_len: length of tvlv data following the ogm header
214 struct batadv_ogm_packet
{
221 __u8 prev_sender
[ETH_ALEN
];
225 /* __packed is not needed as the struct size is divisible by 4,
226 * and the largest data type in this struct has a size of 4.
230 #define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
233 * struct batadv_ogm2_packet - ogm2 (routing protocol) packet
234 * @packet_type: batman-adv packet type, part of the general header
235 * @version: batman-adv protocol version, part of the general header
236 * @ttl: time to live for this packet, part of the general header
237 * @flags: reseved for routing relevant flags - currently always 0
238 * @seqno: sequence number
239 * @orig: originator mac address
240 * @tvlv_len: length of the appended tvlv buffer (in bytes)
241 * @throughput: the currently flooded path throughput
243 struct batadv_ogm2_packet
{
252 /* __packed is not needed as the struct size is divisible by 4,
253 * and the largest data type in this struct has a size of 4.
257 #define BATADV_OGM2_HLEN sizeof(struct batadv_ogm2_packet)
260 * struct batadv_elp_packet - elp (neighbor discovery) packet
261 * @packet_type: batman-adv packet type, part of the general header
262 * @version: batman-adv protocol version, part of the genereal header
263 * @orig: originator mac address
264 * @seqno: sequence number
265 * @elp_interval: currently used ELP sending interval in ms
267 struct batadv_elp_packet
{
275 #define BATADV_ELP_HLEN sizeof(struct batadv_elp_packet)
278 * struct batadv_icmp_header - common members among all the ICMP packets
279 * @packet_type: batman-adv packet type, part of the general header
280 * @version: batman-adv protocol version, part of the genereal header
281 * @ttl: time to live for this packet, part of the genereal header
282 * @msg_type: ICMP packet type
283 * @dst: address of the destination node
284 * @orig: address of the source node
285 * @uid: local ICMP socket identifier
286 * @align: not used - useful for alignment purposes only
288 * This structure is used for ICMP packets parsing only and it is never sent
289 * over the wire. The alignment field at the end is there to ensure that
290 * members are padded the same way as they are in real packets.
292 struct batadv_icmp_header
{
296 __u8 msg_type
; /* see ICMP message types above */
304 * struct batadv_icmp_packet - ICMP packet
305 * @packet_type: batman-adv packet type, part of the general header
306 * @version: batman-adv protocol version, part of the genereal header
307 * @ttl: time to live for this packet, part of the genereal header
308 * @msg_type: ICMP packet type
309 * @dst: address of the destination node
310 * @orig: address of the source node
311 * @uid: local ICMP socket identifier
312 * @reserved: not used - useful for alignment
313 * @seqno: ICMP sequence number
315 struct batadv_icmp_packet
{
319 __u8 msg_type
; /* see ICMP message types above */
328 * struct batadv_icmp_tp_packet - ICMP TP Meter packet
329 * @packet_type: batman-adv packet type, part of the general header
330 * @version: batman-adv protocol version, part of the genereal header
331 * @ttl: time to live for this packet, part of the genereal header
332 * @msg_type: ICMP packet type
333 * @dst: address of the destination node
334 * @orig: address of the source node
335 * @uid: local ICMP socket identifier
336 * @subtype: TP packet subtype (see batadv_icmp_tp_subtype)
337 * @session: TP session identifier
338 * @seqno: the TP sequence number
339 * @timestamp: time when the packet has been sent. This value is filled in a
340 * TP_MSG and echoed back in the next TP_ACK so that the sender can compute the
341 * RTT. Since it is read only by the host which wrote it, there is no need to
342 * store it using network order
344 struct batadv_icmp_tp_packet
{
348 __u8 msg_type
; /* see ICMP message types above */
359 * enum batadv_icmp_tp_subtype - ICMP TP Meter packet subtypes
360 * @BATADV_TP_MSG: Msg from sender to receiver
361 * @BATADV_TP_ACK: acknowledgment from receiver to sender
363 enum batadv_icmp_tp_subtype
{
368 #define BATADV_RR_LEN 16
371 * struct batadv_icmp_packet_rr - ICMP RouteRecord packet
372 * @packet_type: batman-adv packet type, part of the general header
373 * @version: batman-adv protocol version, part of the genereal header
374 * @ttl: time to live for this packet, part of the genereal header
375 * @msg_type: ICMP packet type
376 * @dst: address of the destination node
377 * @orig: address of the source node
378 * @uid: local ICMP socket identifier
379 * @rr_cur: number of entries the rr array
380 * @seqno: ICMP sequence number
381 * @rr: route record array
383 struct batadv_icmp_packet_rr
{
387 __u8 msg_type
; /* see ICMP message types above */
393 __u8 rr
[BATADV_RR_LEN
][ETH_ALEN
];
396 #define BATADV_ICMP_MAX_PACKET_SIZE sizeof(struct batadv_icmp_packet_rr)
398 /* All packet headers in front of an ethernet header have to be completely
399 * divisible by 2 but not by 4 to make the payload after the ethernet
400 * header again 4 bytes boundary aligned.
402 * A packing of 2 is necessary to avoid extra padding at the end of the struct
403 * caused by a structure member which is larger than two bytes. Otherwise
404 * the structure would not fulfill the previously mentioned rule to avoid the
405 * misalignment of the payload after the ethernet header. It may also lead to
406 * leakage of information when the padding it not initialized before sending.
411 * struct batadv_unicast_packet - unicast packet for network payload
412 * @packet_type: batman-adv packet type, part of the general header
413 * @version: batman-adv protocol version, part of the genereal header
414 * @ttl: time to live for this packet, part of the genereal header
415 * @ttvn: translation table version number
416 * @dest: originator destination of the unicast packet
418 struct batadv_unicast_packet
{
422 __u8 ttvn
; /* destination translation table version number */
424 /* "4 bytes boundary + 2 bytes" long to make the payload after the
425 * following ethernet header again 4 bytes boundary aligned
430 * struct batadv_unicast_4addr_packet - extended unicast packet
431 * @u: common unicast packet header
432 * @src: address of the source
433 * @subtype: packet subtype
434 * @reserved: reserved byte for alignment
436 struct batadv_unicast_4addr_packet
{
437 struct batadv_unicast_packet u
;
441 /* "4 bytes boundary + 2 bytes" long to make the payload after the
442 * following ethernet header again 4 bytes boundary aligned
447 * struct batadv_frag_packet - fragmented packet
448 * @packet_type: batman-adv packet type, part of the general header
449 * @version: batman-adv protocol version, part of the genereal header
450 * @ttl: time to live for this packet, part of the genereal header
451 * @dest: final destination used when routing fragments
452 * @orig: originator of the fragment used when merging the packet
453 * @no: fragment number within this sequence
454 * @priority: priority of frame, from ToS IP precedence or 802.1p
455 * @reserved: reserved byte for alignment
456 * @seqno: sequence identification
457 * @total_size: size of the merged packet
459 struct batadv_frag_packet
{
461 __u8 version
; /* batman version field */
463 #if defined(__BIG_ENDIAN_BITFIELD)
467 #elif defined(__LITTLE_ENDIAN_BITFIELD)
472 #error "unknown bitfield endianness"
481 * struct batadv_bcast_packet - broadcast packet for network payload
482 * @packet_type: batman-adv packet type, part of the general header
483 * @version: batman-adv protocol version, part of the genereal header
484 * @ttl: time to live for this packet, part of the genereal header
485 * @reserved: reserved byte for alignment
486 * @seqno: sequence identification
487 * @orig: originator of the broadcast packet
489 struct batadv_bcast_packet
{
491 __u8 version
; /* batman version field */
496 /* "4 bytes boundary + 2 bytes" long to make the payload after the
497 * following ethernet header again 4 bytes boundary aligned
502 * struct batadv_coded_packet - network coded packet
503 * @packet_type: batman-adv packet type, part of the general header
504 * @version: batman-adv protocol version, part of the genereal header
505 * @ttl: time to live for this packet, part of the genereal header
506 * @first_source: original source of first included packet
507 * @first_orig_dest: original destinal of first included packet
508 * @first_crc: checksum of first included packet
509 * @first_ttvn: tt-version number of first included packet
510 * @second_ttl: ttl of second packet
511 * @second_dest: second receiver of this coded packet
512 * @second_source: original source of second included packet
513 * @second_orig_dest: original destination of second included packet
514 * @second_crc: checksum of second included packet
515 * @second_ttvn: tt version number of second included packet
516 * @coded_len: length of network coded part of the payload
518 struct batadv_coded_packet
{
520 __u8 version
; /* batman version field */
523 /* __u8 first_dest[ETH_ALEN]; - saved in mac header destination */
524 __u8 first_source
[ETH_ALEN
];
525 __u8 first_orig_dest
[ETH_ALEN
];
529 __u8 second_dest
[ETH_ALEN
];
530 __u8 second_source
[ETH_ALEN
];
531 __u8 second_orig_dest
[ETH_ALEN
];
539 * struct batadv_unicast_tvlv_packet - generic unicast packet with tvlv payload
540 * @packet_type: batman-adv packet type, part of the general header
541 * @version: batman-adv protocol version, part of the genereal header
542 * @ttl: time to live for this packet, part of the genereal header
543 * @reserved: reserved field (for packet alignment)
544 * @src: address of the source
545 * @dst: address of the destination
546 * @tvlv_len: length of tvlv data following the unicast tvlv header
547 * @align: 2 bytes to align the header to a 4 byte boundary
549 struct batadv_unicast_tvlv_packet
{
551 __u8 version
; /* batman version field */
561 * struct batadv_tvlv_hdr - base tvlv header struct
562 * @type: tvlv container type (see batadv_tvlv_type)
563 * @version: tvlv container version
564 * @len: tvlv container length
566 struct batadv_tvlv_hdr
{
573 * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
575 * @bandwidth_down: advertised uplink download bandwidth
576 * @bandwidth_up: advertised uplink upload bandwidth
578 struct batadv_tvlv_gateway_data
{
579 __be32 bandwidth_down
;
584 * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
585 * @flags: translation table flags (see batadv_tt_data_flags)
586 * @ttvn: translation table version number
587 * @num_vlan: number of announced VLANs. In the TVLV this struct is followed by
588 * one batadv_tvlv_tt_vlan_data object per announced vlan
590 struct batadv_tvlv_tt_data
{
597 * struct batadv_tvlv_tt_vlan_data - vlan specific tt data propagated through
598 * the tt tvlv container
599 * @crc: crc32 checksum of the entries belonging to this vlan
600 * @vid: vlan identifier
601 * @reserved: unused, useful for alignment purposes
603 struct batadv_tvlv_tt_vlan_data
{
610 * struct batadv_tvlv_tt_change - translation table diff data
611 * @flags: status indicators concerning the non-mesh client (see
612 * batadv_tt_client_flags)
613 * @reserved: reserved field - useful for alignment purposes only
614 * @addr: mac address of non-mesh client that triggered this tt change
615 * @vid: VLAN identifier
617 struct batadv_tvlv_tt_change
{
625 * struct batadv_tvlv_roam_adv - roaming advertisement
626 * @client: mac address of roaming client
627 * @vid: VLAN identifier
629 struct batadv_tvlv_roam_adv
{
630 __u8 client
[ETH_ALEN
];
635 * struct batadv_tvlv_mcast_data - payload of a multicast tvlv
636 * @flags: multicast flags announced by the orig node
637 * @reserved: reserved field
639 struct batadv_tvlv_mcast_data
{
644 #endif /* _UAPI_LINUX_BATADV_PACKET_H_ */