Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / net / batman-adv / packet.h
1 /* Copyright (C) 2007-2014 B.A.T.M.A.N. contributors:
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, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef _NET_BATMAN_ADV_PACKET_H_
19 #define _NET_BATMAN_ADV_PACKET_H_
20
21 /**
22  * enum batadv_packettype - types for batman-adv encapsulated packets
23  * @BATADV_IV_OGM: originator messages for B.A.T.M.A.N. IV
24  * @BATADV_BCAST: broadcast packets carrying broadcast payload
25  * @BATADV_CODED: network coded packets
26  *
27  * @BATADV_UNICAST: unicast packets carrying unicast payload traffic
28  * @BATADV_UNICAST_FRAG: unicast packets carrying a fragment of the original
29  *     payload packet
30  * @BATADV_UNICAST_4ADDR: unicast packet including the originator address of
31  *     the sender
32  * @BATADV_ICMP: unicast packet like IP ICMP used for ping or traceroute
33  * @BATADV_UNICAST_TVLV: unicast packet carrying TVLV containers
34  */
35 enum batadv_packettype {
36         /* 0x00 - 0x3f: local packets or special rules for handling */
37         BATADV_IV_OGM           = 0x00,
38         BATADV_BCAST            = 0x01,
39         BATADV_CODED            = 0x02,
40         /* 0x40 - 0x7f: unicast */
41 #define BATADV_UNICAST_MIN     0x40
42         BATADV_UNICAST          = 0x40,
43         BATADV_UNICAST_FRAG     = 0x41,
44         BATADV_UNICAST_4ADDR    = 0x42,
45         BATADV_ICMP             = 0x43,
46         BATADV_UNICAST_TVLV     = 0x44,
47 #define BATADV_UNICAST_MAX     0x7f
48         /* 0x80 - 0xff: reserved */
49 };
50
51 /**
52  * enum batadv_subtype - packet subtype for unicast4addr
53  * @BATADV_P_DATA: user payload
54  * @BATADV_P_DAT_DHT_GET: DHT request message
55  * @BATADV_P_DAT_DHT_PUT: DHT store message
56  * @BATADV_P_DAT_CACHE_REPLY: ARP reply generated by DAT
57  */
58 enum batadv_subtype {
59         BATADV_P_DATA                   = 0x01,
60         BATADV_P_DAT_DHT_GET            = 0x02,
61         BATADV_P_DAT_DHT_PUT            = 0x03,
62         BATADV_P_DAT_CACHE_REPLY        = 0x04,
63 };
64
65 /* this file is included by batctl which needs these defines */
66 #define BATADV_COMPAT_VERSION 15
67
68 /**
69  * enum batadv_iv_flags - flags used in B.A.T.M.A.N. IV OGM packets
70  * @BATADV_NOT_BEST_NEXT_HOP: flag is set when ogm packet is forwarded and was
71  *     previously received from someone else than the best neighbor.
72  * @BATADV_PRIMARIES_FIRST_HOP: flag is set when the primary interface address
73  *     is used, and the packet travels its first hop.
74  * @BATADV_DIRECTLINK: flag is for the first hop or if rebroadcasted from a
75  *     one hop neighbor on the interface where it was originally received.
76  */
77 enum batadv_iv_flags {
78         BATADV_NOT_BEST_NEXT_HOP   = BIT(0),
79         BATADV_PRIMARIES_FIRST_HOP = BIT(1),
80         BATADV_DIRECTLINK          = BIT(2),
81 };
82
83 /* ICMP message types */
84 enum batadv_icmp_packettype {
85         BATADV_ECHO_REPLY              = 0,
86         BATADV_DESTINATION_UNREACHABLE = 3,
87         BATADV_ECHO_REQUEST            = 8,
88         BATADV_TTL_EXCEEDED            = 11,
89         BATADV_PARAMETER_PROBLEM       = 12,
90 };
91
92 /**
93  * enum batadv_mcast_flags - flags for multicast capabilities and settings
94  * @BATADV_MCAST_WANT_ALL_UNSNOOPABLES: we want all packets destined for
95  *  224.0.0.0/24 or ff02::1
96  * @BATADV_MCAST_WANT_ALL_IPV4: we want all IPv4 multicast packets
97  * @BATADV_MCAST_WANT_ALL_IPV6: we want all IPv6 multicast packets
98  */
99 enum batadv_mcast_flags {
100         BATADV_MCAST_WANT_ALL_UNSNOOPABLES      = BIT(0),
101         BATADV_MCAST_WANT_ALL_IPV4              = BIT(1),
102         BATADV_MCAST_WANT_ALL_IPV6              = BIT(2),
103 };
104
105 /* tt data subtypes */
106 #define BATADV_TT_DATA_TYPE_MASK 0x0F
107
108 /**
109  * enum batadv_tt_data_flags - flags for tt data tvlv
110  * @BATADV_TT_OGM_DIFF: TT diff propagated through OGM
111  * @BATADV_TT_REQUEST: TT request message
112  * @BATADV_TT_RESPONSE: TT response message
113  * @BATADV_TT_FULL_TABLE: contains full table to replace existing table
114  */
115 enum batadv_tt_data_flags {
116         BATADV_TT_OGM_DIFF   = BIT(0),
117         BATADV_TT_REQUEST    = BIT(1),
118         BATADV_TT_RESPONSE   = BIT(2),
119         BATADV_TT_FULL_TABLE = BIT(4),
120 };
121
122 /**
123  * enum batadv_tt_client_flags - TT client specific flags
124  * @BATADV_TT_CLIENT_DEL: the client has to be deleted from the table
125  * @BATADV_TT_CLIENT_ROAM: the client roamed to/from another node and the new
126  *  update telling its new real location has not been received/sent yet
127  * @BATADV_TT_CLIENT_WIFI: this client is connected through a wifi interface.
128  *  This information is used by the "AP Isolation" feature
129  * @BATADV_TT_CLIENT_ISOLA: this client is considered "isolated". This
130  *  information is used by the Extended Isolation feature
131  * @BATADV_TT_CLIENT_NOPURGE: this client should never be removed from the table
132  * @BATADV_TT_CLIENT_NEW: this client has been added to the local table but has
133  *  not been announced yet
134  * @BATADV_TT_CLIENT_PENDING: this client is marked for removal but it is kept
135  *  in the table for one more originator interval for consistency purposes
136  * @BATADV_TT_CLIENT_TEMP: this global client has been detected to be part of
137  *  the network but no nnode has already announced it
138  *
139  * Bits from 0 to 7 are called _remote flags_ because they are sent on the wire.
140  * Bits from 8 to 15 are called _local flags_ because they are used for local
141  * computations only.
142  *
143  * Bits from 4 to 7 - a subset of remote flags - are ensured to be in sync with
144  * the other nodes in the network. To achieve this goal these flags are included
145  * in the TT CRC computation.
146  */
147 enum batadv_tt_client_flags {
148         BATADV_TT_CLIENT_DEL     = BIT(0),
149         BATADV_TT_CLIENT_ROAM    = BIT(1),
150         BATADV_TT_CLIENT_WIFI    = BIT(4),
151         BATADV_TT_CLIENT_ISOLA   = BIT(5),
152         BATADV_TT_CLIENT_NOPURGE = BIT(8),
153         BATADV_TT_CLIENT_NEW     = BIT(9),
154         BATADV_TT_CLIENT_PENDING = BIT(10),
155         BATADV_TT_CLIENT_TEMP    = BIT(11),
156 };
157
158 /**
159  * batadv_vlan_flags - flags for the four MSB of any vlan ID field
160  * @BATADV_VLAN_HAS_TAG: whether the field contains a valid vlan tag or not
161  */
162 enum batadv_vlan_flags {
163         BATADV_VLAN_HAS_TAG     = BIT(15),
164 };
165
166 /* claim frame types for the bridge loop avoidance */
167 enum batadv_bla_claimframe {
168         BATADV_CLAIM_TYPE_CLAIM         = 0x00,
169         BATADV_CLAIM_TYPE_UNCLAIM       = 0x01,
170         BATADV_CLAIM_TYPE_ANNOUNCE      = 0x02,
171         BATADV_CLAIM_TYPE_REQUEST       = 0x03,
172 };
173
174 /**
175  * enum batadv_tvlv_type - tvlv type definitions
176  * @BATADV_TVLV_GW: gateway tvlv
177  * @BATADV_TVLV_DAT: distributed arp table tvlv
178  * @BATADV_TVLV_NC: network coding tvlv
179  * @BATADV_TVLV_TT: translation table tvlv
180  * @BATADV_TVLV_ROAM: roaming advertisement tvlv
181  * @BATADV_TVLV_MCAST: multicast capability tvlv
182  */
183 enum batadv_tvlv_type {
184         BATADV_TVLV_GW          = 0x01,
185         BATADV_TVLV_DAT         = 0x02,
186         BATADV_TVLV_NC          = 0x03,
187         BATADV_TVLV_TT          = 0x04,
188         BATADV_TVLV_ROAM        = 0x05,
189         BATADV_TVLV_MCAST       = 0x06,
190 };
191
192 #pragma pack(2)
193 /* the destination hardware field in the ARP frame is used to
194  * transport the claim type and the group id
195  */
196 struct batadv_bla_claim_dst {
197         uint8_t magic[3];       /* FF:43:05 */
198         uint8_t type;           /* bla_claimframe */
199         __be16 group;           /* group id */
200 };
201
202 #pragma pack()
203
204 /**
205  * struct batadv_ogm_packet - ogm (routing protocol) packet
206  * @packet_type: batman-adv packet type, part of the general header
207  * @version: batman-adv protocol version, part of the genereal header
208  * @ttl: time to live for this packet, part of the genereal header
209  * @flags: contains routing relevant flags - see enum batadv_iv_flags
210  * @tvlv_len: length of tvlv data following the ogm header
211  */
212 struct batadv_ogm_packet {
213         uint8_t  packet_type;
214         uint8_t  version;
215         uint8_t  ttl;
216         uint8_t  flags;
217         __be32   seqno;
218         uint8_t  orig[ETH_ALEN];
219         uint8_t  prev_sender[ETH_ALEN];
220         uint8_t  reserved;
221         uint8_t  tq;
222         __be16   tvlv_len;
223         /* __packed is not needed as the struct size is divisible by 4,
224          * and the largest data type in this struct has a size of 4.
225          */
226 };
227
228 #define BATADV_OGM_HLEN sizeof(struct batadv_ogm_packet)
229
230 /**
231  * batadv_icmp_header - common members among all the ICMP packets
232  * @packet_type: batman-adv packet type, part of the general header
233  * @version: batman-adv protocol version, part of the genereal header
234  * @ttl: time to live for this packet, part of the genereal header
235  * @msg_type: ICMP packet type
236  * @dst: address of the destination node
237  * @orig: address of the source node
238  * @uid: local ICMP socket identifier
239  * @align: not used - useful for alignment purposes only
240  *
241  * This structure is used for ICMP packets parsing only and it is never sent
242  * over the wire. The alignment field at the end is there to ensure that
243  * members are padded the same way as they are in real packets.
244  */
245 struct batadv_icmp_header {
246         uint8_t  packet_type;
247         uint8_t  version;
248         uint8_t  ttl;
249         uint8_t  msg_type; /* see ICMP message types above */
250         uint8_t  dst[ETH_ALEN];
251         uint8_t  orig[ETH_ALEN];
252         uint8_t  uid;
253         uint8_t  align[3];
254 };
255
256 /**
257  * batadv_icmp_packet - ICMP packet
258  * @packet_type: batman-adv packet type, part of the general header
259  * @version: batman-adv protocol version, part of the genereal header
260  * @ttl: time to live for this packet, part of the genereal header
261  * @msg_type: ICMP packet type
262  * @dst: address of the destination node
263  * @orig: address of the source node
264  * @uid: local ICMP socket identifier
265  * @reserved: not used - useful for alignment
266  * @seqno: ICMP sequence number
267  */
268 struct batadv_icmp_packet {
269         uint8_t  packet_type;
270         uint8_t  version;
271         uint8_t  ttl;
272         uint8_t  msg_type; /* see ICMP message types above */
273         uint8_t  dst[ETH_ALEN];
274         uint8_t  orig[ETH_ALEN];
275         uint8_t  uid;
276         uint8_t  reserved;
277         __be16   seqno;
278 };
279
280 #define BATADV_RR_LEN 16
281
282 /**
283  * batadv_icmp_packet_rr - ICMP RouteRecord packet
284  * @packet_type: batman-adv packet type, part of the general header
285  * @version: batman-adv protocol version, part of the genereal header
286  * @ttl: time to live for this packet, part of the genereal header
287  * @msg_type: ICMP packet type
288  * @dst: address of the destination node
289  * @orig: address of the source node
290  * @uid: local ICMP socket identifier
291  * @rr_cur: number of entries the rr array
292  * @seqno: ICMP sequence number
293  * @rr: route record array
294  */
295 struct batadv_icmp_packet_rr {
296         uint8_t  packet_type;
297         uint8_t  version;
298         uint8_t  ttl;
299         uint8_t  msg_type; /* see ICMP message types above */
300         uint8_t  dst[ETH_ALEN];
301         uint8_t  orig[ETH_ALEN];
302         uint8_t  uid;
303         uint8_t  rr_cur;
304         __be16   seqno;
305         uint8_t  rr[BATADV_RR_LEN][ETH_ALEN];
306 };
307
308 #define BATADV_ICMP_MAX_PACKET_SIZE     sizeof(struct batadv_icmp_packet_rr)
309
310 /* All packet headers in front of an ethernet header have to be completely
311  * divisible by 2 but not by 4 to make the payload after the ethernet
312  * header again 4 bytes boundary aligned.
313  *
314  * A packing of 2 is necessary to avoid extra padding at the end of the struct
315  * caused by a structure member which is larger than two bytes. Otherwise
316  * the structure would not fulfill the previously mentioned rule to avoid the
317  * misalignment of the payload after the ethernet header. It may also lead to
318  * leakage of information when the padding it not initialized before sending.
319  */
320 #pragma pack(2)
321
322 /**
323  * struct batadv_unicast_packet - unicast packet for network payload
324  * @packet_type: batman-adv packet type, part of the general header
325  * @version: batman-adv protocol version, part of the genereal header
326  * @ttl: time to live for this packet, part of the genereal header
327  * @ttvn: translation table version number
328  * @dest: originator destination of the unicast packet
329  */
330 struct batadv_unicast_packet {
331         uint8_t  packet_type;
332         uint8_t  version;
333         uint8_t  ttl;
334         uint8_t  ttvn; /* destination translation table version number */
335         uint8_t  dest[ETH_ALEN];
336         /* "4 bytes boundary + 2 bytes" long to make the payload after the
337          * following ethernet header again 4 bytes boundary aligned
338          */
339 };
340
341 /**
342  * struct batadv_unicast_4addr_packet - extended unicast packet
343  * @u: common unicast packet header
344  * @src: address of the source
345  * @subtype: packet subtype
346  */
347 struct batadv_unicast_4addr_packet {
348         struct batadv_unicast_packet u;
349         uint8_t src[ETH_ALEN];
350         uint8_t subtype;
351         uint8_t reserved;
352         /* "4 bytes boundary + 2 bytes" long to make the payload after the
353          * following ethernet header again 4 bytes boundary aligned
354          */
355 };
356
357 /**
358  * struct batadv_frag_packet - fragmented packet
359  * @packet_type: batman-adv packet type, part of the general header
360  * @version: batman-adv protocol version, part of the genereal header
361  * @ttl: time to live for this packet, part of the genereal header
362  * @dest: final destination used when routing fragments
363  * @orig: originator of the fragment used when merging the packet
364  * @no: fragment number within this sequence
365  * @reserved: reserved byte for alignment
366  * @seqno: sequence identification
367  * @total_size: size of the merged packet
368  */
369 struct batadv_frag_packet {
370         uint8_t packet_type;
371         uint8_t version;  /* batman version field */
372         uint8_t ttl;
373 #if defined(__BIG_ENDIAN_BITFIELD)
374         uint8_t no:4;
375         uint8_t reserved:4;
376 #elif defined(__LITTLE_ENDIAN_BITFIELD)
377         uint8_t reserved:4;
378         uint8_t no:4;
379 #else
380 #error "unknown bitfield endianness"
381 #endif
382         uint8_t dest[ETH_ALEN];
383         uint8_t orig[ETH_ALEN];
384         __be16  seqno;
385         __be16  total_size;
386 };
387
388 /**
389  * struct batadv_bcast_packet - broadcast packet for network payload
390  * @packet_type: batman-adv packet type, part of the general header
391  * @version: batman-adv protocol version, part of the genereal header
392  * @ttl: time to live for this packet, part of the genereal header
393  * @reserved: reserved byte for alignment
394  * @seqno: sequence identification
395  * @orig: originator of the broadcast packet
396  */
397 struct batadv_bcast_packet {
398         uint8_t  packet_type;
399         uint8_t  version;  /* batman version field */
400         uint8_t  ttl;
401         uint8_t  reserved;
402         __be32   seqno;
403         uint8_t  orig[ETH_ALEN];
404         /* "4 bytes boundary + 2 bytes" long to make the payload after the
405          * following ethernet header again 4 bytes boundary aligned
406          */
407 };
408
409 /**
410  * struct batadv_coded_packet - network coded packet
411  * @packet_type: batman-adv packet type, part of the general header
412  * @version: batman-adv protocol version, part of the genereal header
413  * @ttl: time to live for this packet, part of the genereal header
414  * @reserved: Align following fields to 2-byte boundaries
415  * @first_source: original source of first included packet
416  * @first_orig_dest: original destinal of first included packet
417  * @first_crc: checksum of first included packet
418  * @first_ttvn: tt-version number of first included packet
419  * @second_ttl: ttl of second packet
420  * @second_dest: second receiver of this coded packet
421  * @second_source: original source of second included packet
422  * @second_orig_dest: original destination of second included packet
423  * @second_crc: checksum of second included packet
424  * @second_ttvn: tt version number of second included packet
425  * @coded_len: length of network coded part of the payload
426  */
427 struct batadv_coded_packet {
428         uint8_t  packet_type;
429         uint8_t  version;  /* batman version field */
430         uint8_t  ttl;
431         uint8_t  first_ttvn;
432         /* uint8_t  first_dest[ETH_ALEN]; - saved in mac header destination */
433         uint8_t  first_source[ETH_ALEN];
434         uint8_t  first_orig_dest[ETH_ALEN];
435         __be32   first_crc;
436         uint8_t  second_ttl;
437         uint8_t  second_ttvn;
438         uint8_t  second_dest[ETH_ALEN];
439         uint8_t  second_source[ETH_ALEN];
440         uint8_t  second_orig_dest[ETH_ALEN];
441         __be32   second_crc;
442         __be16   coded_len;
443 };
444
445 #pragma pack()
446
447 /**
448  * struct batadv_unicast_tvlv - generic unicast packet with tvlv payload
449  * @packet_type: batman-adv packet type, part of the general header
450  * @version: batman-adv protocol version, part of the genereal header
451  * @ttl: time to live for this packet, part of the genereal header
452  * @reserved: reserved field (for packet alignment)
453  * @src: address of the source
454  * @dst: address of the destination
455  * @tvlv_len: length of tvlv data following the unicast tvlv header
456  * @align: 2 bytes to align the header to a 4 byte boundary
457  */
458 struct batadv_unicast_tvlv_packet {
459         uint8_t  packet_type;
460         uint8_t  version;  /* batman version field */
461         uint8_t  ttl;
462         uint8_t  reserved;
463         uint8_t  dst[ETH_ALEN];
464         uint8_t  src[ETH_ALEN];
465         __be16   tvlv_len;
466         uint16_t align;
467 };
468
469 /**
470  * struct batadv_tvlv_hdr - base tvlv header struct
471  * @type: tvlv container type (see batadv_tvlv_type)
472  * @version: tvlv container version
473  * @len: tvlv container length
474  */
475 struct batadv_tvlv_hdr {
476         uint8_t type;
477         uint8_t version;
478         __be16  len;
479 };
480
481 /**
482  * struct batadv_tvlv_gateway_data - gateway data propagated through gw tvlv
483  *  container
484  * @bandwidth_down: advertised uplink download bandwidth
485  * @bandwidth_up: advertised uplink upload bandwidth
486  */
487 struct batadv_tvlv_gateway_data {
488         __be32 bandwidth_down;
489         __be32 bandwidth_up;
490 };
491
492 /**
493  * struct batadv_tvlv_tt_data - tt data propagated through the tt tvlv container
494  * @flags: translation table flags (see batadv_tt_data_flags)
495  * @ttvn: translation table version number
496  * @vlan_num: number of announced VLANs. In the TVLV this struct is followed by
497  *  one batadv_tvlv_tt_vlan_data object per announced vlan
498  */
499 struct batadv_tvlv_tt_data {
500         uint8_t flags;
501         uint8_t ttvn;
502         __be16  num_vlan;
503 };
504
505 /**
506  * struct batadv_tvlv_tt_vlan_data - vlan specific tt data propagated through
507  *  the tt tvlv container
508  * @crc: crc32 checksum of the entries belonging to this vlan
509  * @vid: vlan identifier
510  * @reserved: unused, useful for alignment purposes
511  */
512 struct batadv_tvlv_tt_vlan_data {
513         __be32  crc;
514         __be16  vid;
515         uint16_t reserved;
516 };
517
518 /**
519  * struct batadv_tvlv_tt_change - translation table diff data
520  * @flags: status indicators concerning the non-mesh client (see
521  *  batadv_tt_client_flags)
522  * @reserved: reserved field - useful for alignment purposes only
523  * @addr: mac address of non-mesh client that triggered this tt change
524  * @vid: VLAN identifier
525  */
526 struct batadv_tvlv_tt_change {
527         uint8_t flags;
528         uint8_t reserved[3];
529         uint8_t addr[ETH_ALEN];
530         __be16 vid;
531 };
532
533 /**
534  * struct batadv_tvlv_roam_adv - roaming advertisement
535  * @client: mac address of roaming client
536  * @vid: VLAN identifier
537  */
538 struct batadv_tvlv_roam_adv {
539         uint8_t  client[ETH_ALEN];
540         __be16 vid;
541 };
542
543 /**
544  * struct batadv_tvlv_mcast_data - payload of a multicast tvlv
545  * @flags: multicast flags announced by the orig node
546  * @reserved: reserved field
547  */
548 struct batadv_tvlv_mcast_data {
549         uint8_t flags;
550         uint8_t reserved[3];
551 };
552
553 #endif /* _NET_BATMAN_ADV_PACKET_H_ */