e80de6bc6b631690e97b787fe1781ca84726f8fd
[cascardo/ovs.git] / lib / packets.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef PACKETS_H
18 #define PACKETS_H 1
19
20 #include <inttypes.h>
21 #include <sys/types.h>
22 #include <netinet/in.h>
23 #include <stdint.h>
24 #include <string.h>
25 #include "compiler.h"
26 #include "openvswitch/types.h"
27 #include "random.h"
28 #include "hash.h"
29 #include "util.h"
30
31 struct dp_packet;
32 struct ds;
33
34 /* Tunnel information used in flow key and metadata. */
35 struct flow_tnl {
36     ovs_be64 tun_id;
37     ovs_be32 ip_src;
38     ovs_be32 ip_dst;
39     uint16_t flags;
40     uint8_t ip_tos;
41     uint8_t ip_ttl;
42     ovs_be16 tp_src;
43     ovs_be16 tp_dst;
44     ovs_be16 gbp_id;
45     uint8_t  gbp_flags;
46     uint8_t  pad1[5];        /* Pad to 64 bits. */
47 };
48
49 /* Unfortunately, a "struct flow" sometimes has to handle OpenFlow port
50  * numbers and other times datapath (dpif) port numbers.  This union allows
51  * access to both. */
52 union flow_in_port {
53     odp_port_t odp_port;
54     ofp_port_t ofp_port;
55 };
56
57 /* Datapath packet metadata */
58 struct pkt_metadata {
59     uint32_t recirc_id;         /* Recirculation id carried with the
60                                    recirculating packets. 0 for packets
61                                    received from the wire. */
62     uint32_t dp_hash;           /* hash value computed by the recirculation
63                                    action. */
64     struct flow_tnl tunnel;     /* Encapsulating tunnel parameters. */
65     uint32_t skb_priority;      /* Packet priority for QoS. */
66     uint32_t pkt_mark;          /* Packet mark. */
67     union flow_in_port in_port; /* Input port. */
68 };
69
70 #define PKT_METADATA_INITIALIZER(PORT) \
71     (struct pkt_metadata){ .in_port.odp_port = PORT }
72
73 bool dpid_from_string(const char *s, uint64_t *dpidp);
74
75 #define ETH_ADDR_LEN           6
76
77 static const uint8_t eth_addr_broadcast[ETH_ADDR_LEN] OVS_UNUSED
78     = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
79
80 static const uint8_t eth_addr_stp[ETH_ADDR_LEN] OVS_UNUSED
81     = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x00 };
82
83 static const uint8_t eth_addr_lacp[ETH_ADDR_LEN] OVS_UNUSED
84     = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x02 };
85
86 static const uint8_t eth_addr_bfd[ETH_ADDR_LEN] OVS_UNUSED
87     = { 0x00, 0x23, 0x20, 0x00, 0x00, 0x01 };
88
89 static inline bool eth_addr_is_broadcast(const uint8_t ea[ETH_ADDR_LEN])
90 {
91     return (ea[0] & ea[1] & ea[2] & ea[3] & ea[4] & ea[5]) == 0xff;
92 }
93
94 static inline bool eth_addr_is_multicast(const uint8_t ea[ETH_ADDR_LEN])
95 {
96     return ea[0] & 1;
97 }
98 static inline bool eth_addr_is_local(const uint8_t ea[ETH_ADDR_LEN])
99 {
100     /* Local if it is either a locally administered address or a Nicira random
101      * address. */
102     return ea[0] & 2
103        || (ea[0] == 0x00 && ea[1] == 0x23 && ea[2] == 0x20 && ea[3] & 0x80);
104 }
105 static inline bool eth_addr_is_zero(const uint8_t ea[ETH_ADDR_LEN])
106 {
107     return !(ea[0] | ea[1] | ea[2] | ea[3] | ea[4] | ea[5]);
108 }
109
110 static inline int eth_mask_is_exact(const uint8_t ea[ETH_ADDR_LEN])
111 {
112     return (ea[0] & ea[1] & ea[2] & ea[3] & ea[4] & ea[5]) == 0xff;
113 }
114
115 static inline int eth_addr_compare_3way(const uint8_t a[ETH_ADDR_LEN],
116                                         const uint8_t b[ETH_ADDR_LEN])
117 {
118     return memcmp(a, b, ETH_ADDR_LEN);
119 }
120 static inline bool eth_addr_equals(const uint8_t a[ETH_ADDR_LEN],
121                                    const uint8_t b[ETH_ADDR_LEN])
122 {
123     return !eth_addr_compare_3way(a, b);
124 }
125 static inline bool eth_addr_equal_except(const uint8_t a[ETH_ADDR_LEN],
126                                     const uint8_t b[ETH_ADDR_LEN],
127                                     const uint8_t mask[ETH_ADDR_LEN])
128 {
129     return !(((a[0] ^ b[0]) & mask[0])
130              || ((a[1] ^ b[1]) & mask[1])
131              || ((a[2] ^ b[2]) & mask[2])
132              || ((a[3] ^ b[3]) & mask[3])
133              || ((a[4] ^ b[4]) & mask[4])
134              || ((a[5] ^ b[5]) & mask[5]));
135 }
136 static inline uint64_t eth_addr_to_uint64(const uint8_t ea[ETH_ADDR_LEN])
137 {
138     return (((uint64_t) ea[0] << 40)
139             | ((uint64_t) ea[1] << 32)
140             | ((uint64_t) ea[2] << 24)
141             | ((uint64_t) ea[3] << 16)
142             | ((uint64_t) ea[4] << 8)
143             | ea[5]);
144 }
145 static inline uint64_t eth_addr_vlan_to_uint64(const uint8_t ea[ETH_ADDR_LEN],
146                                                uint16_t vlan)
147 {
148     return (((uint64_t)vlan << 48) | eth_addr_to_uint64(ea));
149 }
150 static inline void eth_addr_from_uint64(uint64_t x, uint8_t ea[ETH_ADDR_LEN])
151 {
152     ea[0] = x >> 40;
153     ea[1] = x >> 32;
154     ea[2] = x >> 24;
155     ea[3] = x >> 16;
156     ea[4] = x >> 8;
157     ea[5] = x;
158 }
159 static inline void eth_addr_mark_random(uint8_t ea[ETH_ADDR_LEN])
160 {
161     ea[0] &= ~1;                /* Unicast. */
162     ea[0] |= 2;                 /* Private. */
163 }
164 static inline void eth_addr_random(uint8_t ea[ETH_ADDR_LEN])
165 {
166     random_bytes(ea, ETH_ADDR_LEN);
167     eth_addr_mark_random(ea);
168 }
169 static inline void eth_addr_nicira_random(uint8_t ea[ETH_ADDR_LEN])
170 {
171     eth_addr_random(ea);
172
173     /* Set the OUI to the Nicira one. */
174     ea[0] = 0x00;
175     ea[1] = 0x23;
176     ea[2] = 0x20;
177
178     /* Set the top bit to indicate random Nicira address. */
179     ea[3] |= 0x80;
180 }
181 static inline uint32_t hash_mac(const uint8_t ea[ETH_ADDR_LEN],
182                                 const uint16_t vlan, const uint32_t basis)
183 {
184     return hash_uint64_basis(eth_addr_vlan_to_uint64(ea, vlan), basis);
185 }
186
187 bool eth_addr_is_reserved(const uint8_t ea[ETH_ADDR_LEN]);
188 bool eth_addr_from_string(const char *, uint8_t ea[ETH_ADDR_LEN]);
189
190 void compose_rarp(struct dp_packet *, const uint8_t eth_src[ETH_ADDR_LEN]);
191
192 void eth_push_vlan(struct dp_packet *, ovs_be16 tpid, ovs_be16 tci);
193 void eth_pop_vlan(struct dp_packet *);
194
195 const char *eth_from_hex(const char *hex, struct dp_packet **packetp);
196 void eth_format_masked(const uint8_t eth[ETH_ADDR_LEN],
197                        const uint8_t mask[ETH_ADDR_LEN], struct ds *s);
198 void eth_addr_bitand(const uint8_t src[ETH_ADDR_LEN],
199                      const uint8_t mask[ETH_ADDR_LEN],
200                      uint8_t dst[ETH_ADDR_LEN]);
201
202 void set_mpls_lse(struct dp_packet *, ovs_be32 label);
203 void push_mpls(struct dp_packet *packet, ovs_be16 ethtype, ovs_be32 lse);
204 void pop_mpls(struct dp_packet *, ovs_be16 ethtype);
205
206 void set_mpls_lse_ttl(ovs_be32 *lse, uint8_t ttl);
207 void set_mpls_lse_tc(ovs_be32 *lse, uint8_t tc);
208 void set_mpls_lse_label(ovs_be32 *lse, ovs_be32 label);
209 void set_mpls_lse_bos(ovs_be32 *lse, uint8_t bos);
210 ovs_be32 set_mpls_lse_values(uint8_t ttl, uint8_t tc, uint8_t bos,
211                              ovs_be32 label);
212
213 /* Example:
214  *
215  * uint8_t mac[ETH_ADDR_LEN];
216  *    [...]
217  * printf("The Ethernet address is "ETH_ADDR_FMT"\n", ETH_ADDR_ARGS(mac));
218  *
219  */
220 #define ETH_ADDR_FMT                                                    \
221     "%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8
222 #define ETH_ADDR_ARGS(ea)                                   \
223     (ea)[0], (ea)[1], (ea)[2], (ea)[3], (ea)[4], (ea)[5]
224
225 /* Example:
226  *
227  * char *string = "1 00:11:22:33:44:55 2";
228  * uint8_t mac[ETH_ADDR_LEN];
229  * int a, b;
230  *
231  * if (ovs_scan(string, "%d"ETH_ADDR_SCAN_FMT"%d",
232  *              &a, ETH_ADDR_SCAN_ARGS(mac), &b)) {
233  *     ...
234  * }
235  */
236 #define ETH_ADDR_SCAN_FMT "%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8
237 #define ETH_ADDR_SCAN_ARGS(ea) \
238         &(ea)[0], &(ea)[1], &(ea)[2], &(ea)[3], &(ea)[4], &(ea)[5]
239
240 #define ETH_TYPE_IP            0x0800
241 #define ETH_TYPE_ARP           0x0806
242 #define ETH_TYPE_TEB           0x6558
243 #define ETH_TYPE_VLAN_8021Q    0x8100
244 #define ETH_TYPE_VLAN          ETH_TYPE_VLAN_8021Q
245 #define ETH_TYPE_VLAN_8021AD   0x88a8
246 #define ETH_TYPE_IPV6          0x86dd
247 #define ETH_TYPE_LACP          0x8809
248 #define ETH_TYPE_RARP          0x8035
249 #define ETH_TYPE_MPLS          0x8847
250 #define ETH_TYPE_MPLS_MCAST    0x8848
251
252 static inline bool eth_type_mpls(ovs_be16 eth_type)
253 {
254     return eth_type == htons(ETH_TYPE_MPLS) ||
255         eth_type == htons(ETH_TYPE_MPLS_MCAST);
256 }
257
258 /* Minimum value for an Ethernet type.  Values below this are IEEE 802.2 frame
259  * lengths. */
260 #define ETH_TYPE_MIN           0x600
261
262 #define ETH_HEADER_LEN 14
263 #define ETH_PAYLOAD_MIN 46
264 #define ETH_PAYLOAD_MAX 1500
265 #define ETH_TOTAL_MIN (ETH_HEADER_LEN + ETH_PAYLOAD_MIN)
266 #define ETH_TOTAL_MAX (ETH_HEADER_LEN + ETH_PAYLOAD_MAX)
267 #define ETH_VLAN_TOTAL_MAX (ETH_HEADER_LEN + VLAN_HEADER_LEN + ETH_PAYLOAD_MAX)
268 OVS_PACKED(
269 struct eth_header {
270     uint8_t eth_dst[ETH_ADDR_LEN];
271     uint8_t eth_src[ETH_ADDR_LEN];
272     ovs_be16 eth_type;
273 });
274 BUILD_ASSERT_DECL(ETH_HEADER_LEN == sizeof(struct eth_header));
275
276 #define LLC_DSAP_SNAP 0xaa
277 #define LLC_SSAP_SNAP 0xaa
278 #define LLC_CNTL_SNAP 3
279
280 #define LLC_HEADER_LEN 3
281 OVS_PACKED(
282 struct llc_header {
283     uint8_t llc_dsap;
284     uint8_t llc_ssap;
285     uint8_t llc_cntl;
286 });
287 BUILD_ASSERT_DECL(LLC_HEADER_LEN == sizeof(struct llc_header));
288
289 /* LLC field values used for STP frames. */
290 #define STP_LLC_SSAP 0x42
291 #define STP_LLC_DSAP 0x42
292 #define STP_LLC_CNTL 0x03
293
294 #define SNAP_ORG_ETHERNET "\0\0" /* The compiler adds a null byte, so
295                                     sizeof(SNAP_ORG_ETHERNET) == 3. */
296 #define SNAP_HEADER_LEN 5
297 OVS_PACKED(
298 struct snap_header {
299     uint8_t snap_org[3];
300     ovs_be16 snap_type;
301 });
302 BUILD_ASSERT_DECL(SNAP_HEADER_LEN == sizeof(struct snap_header));
303
304 #define LLC_SNAP_HEADER_LEN (LLC_HEADER_LEN + SNAP_HEADER_LEN)
305 OVS_PACKED(
306 struct llc_snap_header {
307     struct llc_header llc;
308     struct snap_header snap;
309 });
310 BUILD_ASSERT_DECL(LLC_SNAP_HEADER_LEN == sizeof(struct llc_snap_header));
311
312 #define VLAN_VID_MASK 0x0fff
313 #define VLAN_VID_SHIFT 0
314
315 #define VLAN_PCP_MASK 0xe000
316 #define VLAN_PCP_SHIFT 13
317
318 #define VLAN_CFI 0x1000
319 #define VLAN_CFI_SHIFT 12
320
321 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
322  * returns the VLAN ID in host byte order. */
323 static inline uint16_t
324 vlan_tci_to_vid(ovs_be16 vlan_tci)
325 {
326     return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
327 }
328
329 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
330  * returns the priority code point (PCP) in host byte order. */
331 static inline int
332 vlan_tci_to_pcp(ovs_be16 vlan_tci)
333 {
334     return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
335 }
336
337 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
338  * returns the Canonical Format Indicator (CFI). */
339 static inline int
340 vlan_tci_to_cfi(ovs_be16 vlan_tci)
341 {
342     return (vlan_tci & htons(VLAN_CFI)) != 0;
343 }
344
345 #define VLAN_HEADER_LEN 4
346 struct vlan_header {
347     ovs_be16 vlan_tci;          /* Lowest 12 bits are VLAN ID. */
348     ovs_be16 vlan_next_type;
349 };
350 BUILD_ASSERT_DECL(VLAN_HEADER_LEN == sizeof(struct vlan_header));
351
352 #define VLAN_ETH_HEADER_LEN (ETH_HEADER_LEN + VLAN_HEADER_LEN)
353 OVS_PACKED(
354 struct vlan_eth_header {
355     uint8_t veth_dst[ETH_ADDR_LEN];
356     uint8_t veth_src[ETH_ADDR_LEN];
357     ovs_be16 veth_type;         /* Always htons(ETH_TYPE_VLAN). */
358     ovs_be16 veth_tci;          /* Lowest 12 bits are VLAN ID. */
359     ovs_be16 veth_next_type;
360 });
361 BUILD_ASSERT_DECL(VLAN_ETH_HEADER_LEN == sizeof(struct vlan_eth_header));
362
363 /* MPLS related definitions */
364 #define MPLS_TTL_MASK       0x000000ff
365 #define MPLS_TTL_SHIFT      0
366
367 #define MPLS_BOS_MASK       0x00000100
368 #define MPLS_BOS_SHIFT      8
369
370 #define MPLS_TC_MASK        0x00000e00
371 #define MPLS_TC_SHIFT       9
372
373 #define MPLS_LABEL_MASK     0xfffff000
374 #define MPLS_LABEL_SHIFT    12
375
376 #define MPLS_HLEN           4
377
378 struct mpls_hdr {
379     ovs_16aligned_be32 mpls_lse;
380 };
381 BUILD_ASSERT_DECL(MPLS_HLEN == sizeof(struct mpls_hdr));
382
383 /* Given a mpls label stack entry in network byte order
384  * return mpls label in host byte order */
385 static inline uint32_t
386 mpls_lse_to_label(ovs_be32 mpls_lse)
387 {
388     return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
389 }
390
391 /* Given a mpls label stack entry in network byte order
392  * return mpls tc */
393 static inline uint8_t
394 mpls_lse_to_tc(ovs_be32 mpls_lse)
395 {
396     return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
397 }
398
399 /* Given a mpls label stack entry in network byte order
400  * return mpls ttl */
401 static inline uint8_t
402 mpls_lse_to_ttl(ovs_be32 mpls_lse)
403 {
404     return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
405 }
406
407 /* Set TTL in mpls lse. */
408 static inline void
409 flow_set_mpls_lse_ttl(ovs_be32 *mpls_lse, uint8_t ttl)
410 {
411     *mpls_lse &= ~htonl(MPLS_TTL_MASK);
412     *mpls_lse |= htonl(ttl << MPLS_TTL_SHIFT);
413 }
414
415 /* Given a mpls label stack entry in network byte order
416  * return mpls BoS bit  */
417 static inline uint8_t
418 mpls_lse_to_bos(ovs_be32 mpls_lse)
419 {
420     return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
421 }
422
423 #define IP_FMT "%"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32
424 #define IP_ARGS(ip)                             \
425     ntohl(ip) >> 24,                            \
426     (ntohl(ip) >> 16) & 0xff,                   \
427     (ntohl(ip) >> 8) & 0xff,                    \
428     ntohl(ip) & 0xff
429
430 /* Example:
431  *
432  * char *string = "1 33.44.55.66 2";
433  * ovs_be32 ip;
434  * int a, b;
435  *
436  * if (ovs_scan(string, "%d"IP_SCAN_FMT"%d", &a, IP_SCAN_ARGS(&ip), &b)) {
437  *     ...
438  * }
439  */
440 #define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
441 #define IP_SCAN_ARGS(ip)                                    \
442         ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
443         &((uint8_t *) ip)[1],                               \
444         &((uint8_t *) ip)[2],                               \
445         &((uint8_t *) ip)[3]
446
447 /* Returns true if 'netmask' is a CIDR netmask, that is, if it consists of N
448  * high-order 1-bits and 32-N low-order 0-bits. */
449 static inline bool
450 ip_is_cidr(ovs_be32 netmask)
451 {
452     uint32_t x = ~ntohl(netmask);
453     return !(x & (x + 1));
454 }
455 static inline bool
456 ip_is_multicast(ovs_be32 ip)
457 {
458     return (ip & htonl(0xf0000000)) == htonl(0xe0000000);
459 }
460 static inline bool
461 ip_is_local_multicast(ovs_be32 ip)
462 {
463     return (ip & htonl(0xffffff00)) == htonl(0xe0000000);
464 }
465 int ip_count_cidr_bits(ovs_be32 netmask);
466 void ip_format_masked(ovs_be32 ip, ovs_be32 mask, struct ds *);
467
468 #define IP_VER(ip_ihl_ver) ((ip_ihl_ver) >> 4)
469 #define IP_IHL(ip_ihl_ver) ((ip_ihl_ver) & 15)
470 #define IP_IHL_VER(ihl, ver) (((ver) << 4) | (ihl))
471
472 #ifndef IPPROTO_SCTP
473 #define IPPROTO_SCTP 132
474 #endif
475
476 /* TOS fields. */
477 #define IP_ECN_NOT_ECT 0x0
478 #define IP_ECN_ECT_1 0x01
479 #define IP_ECN_ECT_0 0x02
480 #define IP_ECN_CE 0x03
481 #define IP_ECN_MASK 0x03
482 #define IP_DSCP_MASK 0xfc
483
484 #define IP_VERSION 4
485
486 #define IP_DONT_FRAGMENT  0x4000 /* Don't fragment. */
487 #define IP_MORE_FRAGMENTS 0x2000 /* More fragments. */
488 #define IP_FRAG_OFF_MASK  0x1fff /* Fragment offset. */
489 #define IP_IS_FRAGMENT(ip_frag_off) \
490         ((ip_frag_off) & htons(IP_MORE_FRAGMENTS | IP_FRAG_OFF_MASK))
491
492 #define IP_HEADER_LEN 20
493 struct ip_header {
494     uint8_t ip_ihl_ver;
495     uint8_t ip_tos;
496     ovs_be16 ip_tot_len;
497     ovs_be16 ip_id;
498     ovs_be16 ip_frag_off;
499     uint8_t ip_ttl;
500     uint8_t ip_proto;
501     ovs_be16 ip_csum;
502     ovs_16aligned_be32 ip_src;
503     ovs_16aligned_be32 ip_dst;
504 };
505
506 BUILD_ASSERT_DECL(IP_HEADER_LEN == sizeof(struct ip_header));
507
508 #define ICMP_HEADER_LEN 8
509 struct icmp_header {
510     uint8_t icmp_type;
511     uint8_t icmp_code;
512     ovs_be16 icmp_csum;
513     union {
514         struct {
515             ovs_be16 id;
516             ovs_be16 seq;
517         } echo;
518         struct {
519             ovs_be16 empty;
520             ovs_be16 mtu;
521         } frag;
522         ovs_16aligned_be32 gateway;
523     } icmp_fields;
524 };
525 BUILD_ASSERT_DECL(ICMP_HEADER_LEN == sizeof(struct icmp_header));
526
527 #define IGMP_HEADER_LEN 8
528 struct igmp_header {
529     uint8_t igmp_type;
530     uint8_t igmp_code;
531     ovs_be16 igmp_csum;
532     ovs_16aligned_be32 group;
533 };
534 BUILD_ASSERT_DECL(IGMP_HEADER_LEN == sizeof(struct igmp_header));
535
536 #define IGMP_HOST_MEMBERSHIP_QUERY    0x11 /* From RFC1112 */
537 #define IGMP_HOST_MEMBERSHIP_REPORT   0x12 /* Ditto */
538 #define IGMPV2_HOST_MEMBERSHIP_REPORT 0x16 /* V2 version of 0x12 */
539 #define IGMP_HOST_LEAVE_MESSAGE       0x17
540 #define IGMPV3_HOST_MEMBERSHIP_REPORT 0x22 /* V3 version of 0x12 */
541
542 #define SCTP_HEADER_LEN 12
543 struct sctp_header {
544     ovs_be16 sctp_src;
545     ovs_be16 sctp_dst;
546     ovs_16aligned_be32 sctp_vtag;
547     ovs_16aligned_be32 sctp_csum;
548 };
549 BUILD_ASSERT_DECL(SCTP_HEADER_LEN == sizeof(struct sctp_header));
550
551 #define UDP_HEADER_LEN 8
552 struct udp_header {
553     ovs_be16 udp_src;
554     ovs_be16 udp_dst;
555     ovs_be16 udp_len;
556     ovs_be16 udp_csum;
557 };
558 BUILD_ASSERT_DECL(UDP_HEADER_LEN == sizeof(struct udp_header));
559
560 #define TCP_FIN 0x001
561 #define TCP_SYN 0x002
562 #define TCP_RST 0x004
563 #define TCP_PSH 0x008
564 #define TCP_ACK 0x010
565 #define TCP_URG 0x020
566 #define TCP_ECE 0x040
567 #define TCP_CWR 0x080
568 #define TCP_NS  0x100
569
570 #define TCP_CTL(flags, offset) (htons((flags) | ((offset) << 12)))
571 #define TCP_FLAGS(tcp_ctl) (ntohs(tcp_ctl) & 0x0fff)
572 #define TCP_FLAGS_BE16(tcp_ctl) ((tcp_ctl) & htons(0x0fff))
573 #define TCP_OFFSET(tcp_ctl) (ntohs(tcp_ctl) >> 12)
574
575 #define TCP_HEADER_LEN 20
576 struct tcp_header {
577     ovs_be16 tcp_src;
578     ovs_be16 tcp_dst;
579     ovs_16aligned_be32 tcp_seq;
580     ovs_16aligned_be32 tcp_ack;
581     ovs_be16 tcp_ctl;
582     ovs_be16 tcp_winsz;
583     ovs_be16 tcp_csum;
584     ovs_be16 tcp_urg;
585 };
586 BUILD_ASSERT_DECL(TCP_HEADER_LEN == sizeof(struct tcp_header));
587
588 #define ARP_HRD_ETHERNET 1
589 #define ARP_PRO_IP 0x0800
590 #define ARP_OP_REQUEST 1
591 #define ARP_OP_REPLY 2
592 #define ARP_OP_RARP 3
593
594 #define ARP_ETH_HEADER_LEN 28
595 struct arp_eth_header {
596     /* Generic members. */
597     ovs_be16 ar_hrd;           /* Hardware type. */
598     ovs_be16 ar_pro;           /* Protocol type. */
599     uint8_t ar_hln;            /* Hardware address length. */
600     uint8_t ar_pln;            /* Protocol address length. */
601     ovs_be16 ar_op;            /* Opcode. */
602
603     /* Ethernet+IPv4 specific members. */
604     uint8_t ar_sha[ETH_ADDR_LEN]; /* Sender hardware address. */
605     ovs_16aligned_be32 ar_spa;           /* Sender protocol address. */
606     uint8_t ar_tha[ETH_ADDR_LEN]; /* Target hardware address. */
607     ovs_16aligned_be32 ar_tpa;           /* Target protocol address. */
608 };
609 BUILD_ASSERT_DECL(ARP_ETH_HEADER_LEN == sizeof(struct arp_eth_header));
610
611 /* Like struct in6_addr, but whereas that struct requires 32-bit alignment on
612  * most implementations, this one only requires 16-bit alignment. */
613 union ovs_16aligned_in6_addr {
614     ovs_be16 be16[8];
615     ovs_16aligned_be32 be32[4];
616 };
617
618 /* Like struct in6_hdr, but whereas that struct requires 32-bit alignment, this
619  * one only requires 16-bit alignment. */
620 struct ovs_16aligned_ip6_hdr {
621     union {
622         struct ovs_16aligned_ip6_hdrctl {
623             ovs_16aligned_be32 ip6_un1_flow;
624             ovs_be16 ip6_un1_plen;
625             uint8_t ip6_un1_nxt;
626             uint8_t ip6_un1_hlim;
627         } ip6_un1;
628         uint8_t ip6_un2_vfc;
629     } ip6_ctlun;
630     union ovs_16aligned_in6_addr ip6_src;
631     union ovs_16aligned_in6_addr ip6_dst;
632 };
633
634 /* Like struct in6_frag, but whereas that struct requires 32-bit alignment,
635  * this one only requires 16-bit alignment. */
636 struct ovs_16aligned_ip6_frag {
637     uint8_t ip6f_nxt;
638     uint8_t ip6f_reserved;
639     ovs_be16 ip6f_offlg;
640     ovs_16aligned_be32 ip6f_ident;
641 };
642
643 #define ICMP6_HEADER_LEN 4
644 struct icmp6_header {
645     uint8_t icmp6_type;
646     uint8_t icmp6_code;
647     ovs_be16 icmp6_cksum;
648 };
649 BUILD_ASSERT_DECL(ICMP6_HEADER_LEN == sizeof(struct icmp6_header));
650
651 /* Neighbor Discovery option field.
652  * ND options are always a multiple of 8 bytes in size. */
653 #define ND_OPT_LEN 8
654 struct ovs_nd_opt {
655     uint8_t  nd_opt_type;      /* Values defined in icmp6.h */
656     uint8_t  nd_opt_len;       /* in units of 8 octets (the size of this struct) */
657     uint8_t  nd_opt_data[6];   /* Ethernet address in the case of SLL or TLL options */
658 };
659 BUILD_ASSERT_DECL(ND_OPT_LEN == sizeof(struct ovs_nd_opt));
660
661 /* Like struct nd_msg (from ndisc.h), but whereas that struct requires 32-bit
662  * alignment, this one only requires 16-bit alignment. */
663 #define ND_MSG_LEN 24
664 struct ovs_nd_msg {
665     struct icmp6_header icmph;
666     ovs_16aligned_be32 rco_flags;
667     union ovs_16aligned_in6_addr target;
668     struct ovs_nd_opt options[0];
669 };
670 BUILD_ASSERT_DECL(ND_MSG_LEN == sizeof(struct ovs_nd_msg));
671
672 /* The IPv6 flow label is in the lower 20 bits of the first 32-bit word. */
673 #define IPV6_LABEL_MASK 0x000fffff
674
675 /* Example:
676  *
677  * char *string = "1 ::1 2";
678  * char ipv6_s[IPV6_SCAN_LEN + 1];
679  * struct in6_addr ipv6;
680  *
681  * if (ovs_scan(string, "%d"IPV6_SCAN_FMT"%d", &a, ipv6_s, &b)
682  *     && inet_pton(AF_INET6, ipv6_s, &ipv6) == 1) {
683  *     ...
684  * }
685  */
686 #define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
687 #define IPV6_SCAN_LEN 46
688
689 extern const struct in6_addr in6addr_exact;
690 #define IN6ADDR_EXACT_INIT { { { 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, \
691                                  0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff } } }
692
693 static inline bool ipv6_addr_equals(const struct in6_addr *a,
694                                     const struct in6_addr *b)
695 {
696 #ifdef IN6_ARE_ADDR_EQUAL
697     return IN6_ARE_ADDR_EQUAL(a, b);
698 #else
699     return !memcmp(a, b, sizeof(*a));
700 #endif
701 }
702
703 static inline bool ipv6_mask_is_any(const struct in6_addr *mask) {
704     return ipv6_addr_equals(mask, &in6addr_any);
705 }
706
707 static inline bool ipv6_mask_is_exact(const struct in6_addr *mask) {
708     return ipv6_addr_equals(mask, &in6addr_exact);
709 }
710
711 static inline bool dl_type_is_ip_any(ovs_be16 dl_type)
712 {
713     return dl_type == htons(ETH_TYPE_IP)
714         || dl_type == htons(ETH_TYPE_IPV6);
715 }
716
717 /* Tunnel header */
718 #define GENEVE_CRIT_OPT_TYPE (1 << 7)
719 struct geneve_opt {
720     ovs_be16  opt_class;
721     uint8_t   type;
722 #ifdef WORDS_BIGENDIAN
723     uint8_t   r1:1;
724     uint8_t   r2:1;
725     uint8_t   r3:1;
726     uint8_t   length:5;
727 #else
728     uint8_t   length:5;
729     uint8_t   r3:1;
730     uint8_t   r2:1;
731     uint8_t   r1:1;
732 #endif
733     uint8_t   opt_data[];
734 };
735
736 /* GRE protocol header */
737 struct gre_base_hdr {
738     ovs_be16 flags;
739     ovs_be16 protocol;
740 };
741
742 #define GRE_CSUM        0x8000
743 #define GRE_ROUTING     0x4000
744 #define GRE_KEY         0x2000
745 #define GRE_SEQ         0x1000
746 #define GRE_STRICT      0x0800
747 #define GRE_REC         0x0700
748 #define GRE_FLAGS       0x00F8
749 #define GRE_VERSION     0x0007
750
751 /* VXLAN protocol header */
752 struct vxlanhdr {
753     ovs_16aligned_be32 vx_flags;
754     ovs_16aligned_be32 vx_vni;
755 };
756
757 #define VXLAN_FLAGS 0x08000000  /* struct vxlanhdr.vx_flags required value. */
758
759 void format_ipv6_addr(char *addr_str, const struct in6_addr *addr);
760 void print_ipv6_addr(struct ds *string, const struct in6_addr *addr);
761 void print_ipv6_masked(struct ds *string, const struct in6_addr *addr,
762                        const struct in6_addr *mask);
763 struct in6_addr ipv6_addr_bitand(const struct in6_addr *src,
764                                  const struct in6_addr *mask);
765 struct in6_addr ipv6_create_mask(int mask);
766 int ipv6_count_cidr_bits(const struct in6_addr *netmask);
767 bool ipv6_is_cidr(const struct in6_addr *netmask);
768
769 void *eth_compose(struct dp_packet *, const uint8_t eth_dst[ETH_ADDR_LEN],
770                   const uint8_t eth_src[ETH_ADDR_LEN], uint16_t eth_type,
771                   size_t size);
772 void *snap_compose(struct dp_packet *, const uint8_t eth_dst[ETH_ADDR_LEN],
773                    const uint8_t eth_src[ETH_ADDR_LEN],
774                    unsigned int oui, uint16_t snap_type, size_t size);
775 void packet_set_ipv4(struct dp_packet *, ovs_be32 src, ovs_be32 dst, uint8_t tos,
776                      uint8_t ttl);
777 void packet_set_ipv6(struct dp_packet *, uint8_t proto, const ovs_be32 src[4],
778                      const ovs_be32 dst[4], uint8_t tc,
779                      ovs_be32 fl, uint8_t hlmit);
780 void packet_set_tcp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
781 void packet_set_udp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
782 void packet_set_sctp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
783 void packet_set_nd(struct dp_packet *, const ovs_be32 target[4],
784                    const uint8_t sll[6], const uint8_t tll[6]);
785
786 void packet_format_tcp_flags(struct ds *, uint16_t);
787 const char *packet_tcp_flag_to_string(uint32_t flag);
788 void compose_arp(struct dp_packet *b, const uint8_t eth_src[ETH_ADDR_LEN],
789                  ovs_be32 ip_src, ovs_be32 ip_dst);
790
791 #endif /* packets.h */