a1dd113901fd5168dc50b87edfb45549d58d24ad
[cascardo/ovs.git] / lib / packets.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 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 "geneve.h"
27 #include "openvswitch/types.h"
28 #include "odp-netlink.h"
29 #include "random.h"
30 #include "hash.h"
31 #include "tun-metadata.h"
32 #include "unaligned.h"
33 #include "util.h"
34
35 struct dp_packet;
36 struct ds;
37
38 /* Tunnel information used in flow key and metadata. */
39 struct flow_tnl {
40     ovs_be32 ip_dst;
41     struct in6_addr ipv6_dst;
42     ovs_be32 ip_src;
43     struct in6_addr ipv6_src;
44     ovs_be64 tun_id;
45     uint16_t flags;
46     uint8_t ip_tos;
47     uint8_t ip_ttl;
48     ovs_be16 tp_src;
49     ovs_be16 tp_dst;
50     ovs_be16 gbp_id;
51     uint8_t  gbp_flags;
52     uint8_t  pad1[5];        /* Pad to 64 bits. */
53     struct tun_metadata metadata;
54 };
55
56 /* Some flags are exposed through OpenFlow while others are used only
57  * internally. */
58
59 /* Public flags */
60 #define FLOW_TNL_F_OAM (1 << 0)
61
62 #define FLOW_TNL_PUB_F_MASK ((1 << 1) - 1)
63
64 /* Private flags */
65 #define FLOW_TNL_F_DONT_FRAGMENT (1 << 1)
66 #define FLOW_TNL_F_CSUM (1 << 2)
67 #define FLOW_TNL_F_KEY (1 << 3)
68
69 #define FLOW_TNL_F_MASK ((1 << 4) - 1)
70
71 /* Purely internal to OVS userspace. These flags should never be exposed to
72  * the outside world and so aren't included in the flags mask. */
73
74 /* Tunnel information is in userspace datapath format. */
75 #define FLOW_TNL_F_UDPIF (1 << 4)
76
77 static inline bool ipv6_addr_is_set(const struct in6_addr *addr);
78
79 static inline bool
80 flow_tnl_dst_is_set(const struct flow_tnl *tnl)
81 {
82     return tnl->ip_dst || ipv6_addr_is_set(&tnl->ipv6_dst);
83 }
84
85 struct in6_addr flow_tnl_dst(const struct flow_tnl *tnl);
86 struct in6_addr flow_tnl_src(const struct flow_tnl *tnl);
87
88 /* Returns an offset to 'src' covering all the meaningful fields in 'src'. */
89 static inline size_t
90 flow_tnl_size(const struct flow_tnl *src)
91 {
92     if (!flow_tnl_dst_is_set(src)) {
93         /* Covers ip_dst and ipv6_dst only. */
94         return offsetof(struct flow_tnl, ip_src);
95     }
96     if (src->flags & FLOW_TNL_F_UDPIF) {
97         /* Datapath format, cover all options we have. */
98         return offsetof(struct flow_tnl, metadata.opts)
99             + src->metadata.present.len;
100     }
101     if (!src->metadata.present.map) {
102         /* No TLVs, opts is irrelevant. */
103         return offsetof(struct flow_tnl, metadata.opts);
104     }
105     /* Have decoded TLVs, opts is relevant. */
106     return sizeof *src;
107 }
108
109 /* Copy flow_tnl, but avoid copying unused portions of tun_metadata.  Unused
110  * data in 'dst' is NOT cleared, so this must not be used in cases where the
111  * uninitialized portion may be hashed over. */
112 static inline void
113 flow_tnl_copy__(struct flow_tnl *dst, const struct flow_tnl *src)
114 {
115     memcpy(dst, src, flow_tnl_size(src));
116 }
117
118 static inline bool
119 flow_tnl_equal(const struct flow_tnl *a, const struct flow_tnl *b)
120 {
121     size_t a_size = flow_tnl_size(a);
122
123     return a_size == flow_tnl_size(b) && !memcmp(a, b, a_size);
124 }
125
126 /* Unfortunately, a "struct flow" sometimes has to handle OpenFlow port
127  * numbers and other times datapath (dpif) port numbers.  This union allows
128  * access to both. */
129 union flow_in_port {
130     odp_port_t odp_port;
131     ofp_port_t ofp_port;
132 };
133
134 /* Datapath packet metadata */
135 struct pkt_metadata {
136     uint32_t recirc_id;         /* Recirculation id carried with the
137                                    recirculating packets. 0 for packets
138                                    received from the wire. */
139     uint32_t dp_hash;           /* hash value computed by the recirculation
140                                    action. */
141     uint32_t skb_priority;      /* Packet priority for QoS. */
142     uint32_t pkt_mark;          /* Packet mark. */
143     uint16_t ct_state;          /* Connection state. */
144     uint16_t ct_zone;           /* Connection zone. */
145     uint32_t ct_mark;           /* Connection mark. */
146     ovs_u128 ct_label;          /* Connection label. */
147     union flow_in_port in_port; /* Input port. */
148     struct flow_tnl tunnel;     /* Encapsulating tunnel parameters. Note that
149                                  * if 'ip_dst' == 0, the rest of the fields may
150                                  * be uninitialized. */
151 };
152
153 static inline void
154 pkt_metadata_init(struct pkt_metadata *md, odp_port_t port)
155 {
156     /* It can be expensive to zero out all of the tunnel metadata. However,
157      * we can just zero out ip_dst and the rest of the data will never be
158      * looked at. */
159     memset(md, 0, offsetof(struct pkt_metadata, in_port));
160     md->tunnel.ip_dst = 0;
161     md->tunnel.ipv6_dst = in6addr_any;
162
163     md->in_port.odp_port = port;
164 }
165
166 bool dpid_from_string(const char *s, uint64_t *dpidp);
167
168 #define ETH_ADDR_LEN           6
169
170 static const struct eth_addr eth_addr_broadcast OVS_UNUSED
171     = { { { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } } };
172
173 static const struct eth_addr eth_addr_exact OVS_UNUSED
174     = { { { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } } };
175
176 static const struct eth_addr eth_addr_zero OVS_UNUSED
177     = { { { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } } };
178
179 static const struct eth_addr eth_addr_stp OVS_UNUSED
180     = { { { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x00 } } };
181
182 static const struct eth_addr eth_addr_lacp OVS_UNUSED
183     = { { { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x02 } } };
184
185 static const struct eth_addr eth_addr_bfd OVS_UNUSED
186     = { { { 0x00, 0x23, 0x20, 0x00, 0x00, 0x01 } } };
187
188 static inline bool eth_addr_is_broadcast(const struct eth_addr a)
189 {
190     return (a.be16[0] & a.be16[1] & a.be16[2]) == htons(0xffff);
191 }
192
193 static inline bool eth_addr_is_multicast(const struct eth_addr a)
194 {
195     return a.ea[0] & 1;
196 }
197
198 static inline bool eth_addr_is_local(const struct eth_addr a)
199 {
200     /* Local if it is either a locally administered address or a Nicira random
201      * address. */
202     return a.ea[0] & 2
203         || (a.be16[0] == htons(0x0023)
204             && (a.be16[1] & htons(0xff80)) == htons(0x2080));
205 }
206 static inline bool eth_addr_is_zero(const struct eth_addr a)
207 {
208     return !(a.be16[0] | a.be16[1] | a.be16[2]);
209 }
210
211 static inline int eth_mask_is_exact(const struct eth_addr a)
212 {
213     return (a.be16[0] & a.be16[1] & a.be16[2]) == htons(0xffff);
214 }
215
216 static inline int eth_addr_compare_3way(const struct eth_addr a,
217                                         const struct eth_addr b)
218 {
219     return memcmp(&a, &b, sizeof a);
220 }
221
222 static inline bool eth_addr_equals(const struct eth_addr a,
223                                    const struct eth_addr b)
224 {
225     return !eth_addr_compare_3way(a, b);
226 }
227
228 static inline bool eth_addr_equal_except(const struct eth_addr a,
229                                          const struct eth_addr b,
230                                          const struct eth_addr mask)
231 {
232     return !(((a.be16[0] ^ b.be16[0]) & mask.be16[0])
233              || ((a.be16[1] ^ b.be16[1]) & mask.be16[1])
234              || ((a.be16[2] ^ b.be16[2]) & mask.be16[2]));
235 }
236
237 static inline uint64_t eth_addr_to_uint64(const struct eth_addr ea)
238 {
239     return (((uint64_t) ntohs(ea.be16[0]) << 32)
240             | ((uint64_t) ntohs(ea.be16[1]) << 16)
241             | ntohs(ea.be16[2]));
242 }
243
244 static inline uint64_t eth_addr_vlan_to_uint64(const struct eth_addr ea,
245                                                uint16_t vlan)
246 {
247     return (((uint64_t)vlan << 48) | eth_addr_to_uint64(ea));
248 }
249
250 static inline void eth_addr_from_uint64(uint64_t x, struct eth_addr *ea)
251 {
252     ea->be16[0] = htons(x >> 32);
253     ea->be16[1] = htons((x & 0xFFFF0000) >> 16);
254     ea->be16[2] = htons(x & 0xFFFF);
255 }
256
257 static inline struct eth_addr eth_addr_invert(const struct eth_addr src)
258 {
259     struct eth_addr dst;
260
261     for (int i = 0; i < ARRAY_SIZE(src.be16); i++) {
262         dst.be16[i] = ~src.be16[i];
263     }
264
265     return dst;
266 }
267
268 static inline void eth_addr_mark_random(struct eth_addr *ea)
269 {
270     ea->ea[0] &= ~1;                /* Unicast. */
271     ea->ea[0] |= 2;                 /* Private. */
272 }
273
274 static inline void eth_addr_random(struct eth_addr *ea)
275 {
276     random_bytes((uint8_t *)ea, sizeof *ea);
277     eth_addr_mark_random(ea);
278 }
279
280 static inline void eth_addr_nicira_random(struct eth_addr *ea)
281 {
282     eth_addr_random(ea);
283
284     /* Set the OUI to the Nicira one. */
285     ea->ea[0] = 0x00;
286     ea->ea[1] = 0x23;
287     ea->ea[2] = 0x20;
288
289     /* Set the top bit to indicate random Nicira address. */
290     ea->ea[3] |= 0x80;
291 }
292 static inline uint32_t hash_mac(const struct eth_addr ea,
293                                 const uint16_t vlan, const uint32_t basis)
294 {
295     return hash_uint64_basis(eth_addr_vlan_to_uint64(ea, vlan), basis);
296 }
297
298 bool eth_addr_is_reserved(const struct eth_addr);
299 bool eth_addr_from_string(const char *, struct eth_addr *);
300
301 void compose_rarp(struct dp_packet *, const struct eth_addr);
302
303 void eth_push_vlan(struct dp_packet *, ovs_be16 tpid, ovs_be16 tci);
304 void eth_pop_vlan(struct dp_packet *);
305
306 const char *eth_from_hex(const char *hex, struct dp_packet **packetp);
307 void eth_format_masked(const struct eth_addr ea,
308                        const struct eth_addr *mask, struct ds *s);
309
310 void set_mpls_lse(struct dp_packet *, ovs_be32 label);
311 void push_mpls(struct dp_packet *packet, ovs_be16 ethtype, ovs_be32 lse);
312 void pop_mpls(struct dp_packet *, ovs_be16 ethtype);
313
314 void set_mpls_lse_ttl(ovs_be32 *lse, uint8_t ttl);
315 void set_mpls_lse_tc(ovs_be32 *lse, uint8_t tc);
316 void set_mpls_lse_label(ovs_be32 *lse, ovs_be32 label);
317 void set_mpls_lse_bos(ovs_be32 *lse, uint8_t bos);
318 ovs_be32 set_mpls_lse_values(uint8_t ttl, uint8_t tc, uint8_t bos,
319                              ovs_be32 label);
320
321 /* Example:
322  *
323  * struct eth_addr mac;
324  *    [...]
325  * printf("The Ethernet address is "ETH_ADDR_FMT"\n", ETH_ADDR_ARGS(mac));
326  *
327  */
328 #define ETH_ADDR_FMT                                                    \
329     "%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8
330 #define ETH_ADDR_ARGS(EA) ETH_ADDR_BYTES_ARGS((EA).ea)
331 #define ETH_ADDR_BYTES_ARGS(EAB) \
332          (EAB)[0], (EAB)[1], (EAB)[2], (EAB)[3], (EAB)[4], (EAB)[5]
333 #define ETH_ADDR_STRLEN 17
334
335 /* Example:
336  *
337  * char *string = "1 00:11:22:33:44:55 2";
338  * struct eth_addr mac;
339  * int a, b;
340  *
341  * if (ovs_scan(string, "%d"ETH_ADDR_SCAN_FMT"%d",
342  *              &a, ETH_ADDR_SCAN_ARGS(mac), &b)) {
343  *     ...
344  * }
345  */
346 #define ETH_ADDR_SCAN_FMT "%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8
347 #define ETH_ADDR_SCAN_ARGS(EA) \
348     &(EA).ea[0], &(EA).ea[1], &(EA).ea[2], &(EA).ea[3], &(EA).ea[4], &(EA).ea[5]
349
350 #define ETH_TYPE_IP            0x0800
351 #define ETH_TYPE_ARP           0x0806
352 #define ETH_TYPE_TEB           0x6558
353 #define ETH_TYPE_VLAN_8021Q    0x8100
354 #define ETH_TYPE_VLAN          ETH_TYPE_VLAN_8021Q
355 #define ETH_TYPE_VLAN_8021AD   0x88a8
356 #define ETH_TYPE_IPV6          0x86dd
357 #define ETH_TYPE_LACP          0x8809
358 #define ETH_TYPE_RARP          0x8035
359 #define ETH_TYPE_MPLS          0x8847
360 #define ETH_TYPE_MPLS_MCAST    0x8848
361
362 static inline bool eth_type_mpls(ovs_be16 eth_type)
363 {
364     return eth_type == htons(ETH_TYPE_MPLS) ||
365         eth_type == htons(ETH_TYPE_MPLS_MCAST);
366 }
367
368 static inline bool eth_type_vlan(ovs_be16 eth_type)
369 {
370     return eth_type == htons(ETH_TYPE_VLAN_8021Q) ||
371         eth_type == htons(ETH_TYPE_VLAN_8021AD);
372 }
373
374
375 /* Minimum value for an Ethernet type.  Values below this are IEEE 802.2 frame
376  * lengths. */
377 #define ETH_TYPE_MIN           0x600
378
379 #define ETH_HEADER_LEN 14
380 #define ETH_PAYLOAD_MIN 46
381 #define ETH_PAYLOAD_MAX 1500
382 #define ETH_TOTAL_MIN (ETH_HEADER_LEN + ETH_PAYLOAD_MIN)
383 #define ETH_TOTAL_MAX (ETH_HEADER_LEN + ETH_PAYLOAD_MAX)
384 #define ETH_VLAN_TOTAL_MAX (ETH_HEADER_LEN + VLAN_HEADER_LEN + ETH_PAYLOAD_MAX)
385 OVS_PACKED(
386 struct eth_header {
387     struct eth_addr eth_dst;
388     struct eth_addr eth_src;
389     ovs_be16 eth_type;
390 });
391 BUILD_ASSERT_DECL(ETH_HEADER_LEN == sizeof(struct eth_header));
392
393 #define LLC_DSAP_SNAP 0xaa
394 #define LLC_SSAP_SNAP 0xaa
395 #define LLC_CNTL_SNAP 3
396
397 #define LLC_HEADER_LEN 3
398 OVS_PACKED(
399 struct llc_header {
400     uint8_t llc_dsap;
401     uint8_t llc_ssap;
402     uint8_t llc_cntl;
403 });
404 BUILD_ASSERT_DECL(LLC_HEADER_LEN == sizeof(struct llc_header));
405
406 /* LLC field values used for STP frames. */
407 #define STP_LLC_SSAP 0x42
408 #define STP_LLC_DSAP 0x42
409 #define STP_LLC_CNTL 0x03
410
411 #define SNAP_ORG_ETHERNET "\0\0" /* The compiler adds a null byte, so
412                                     sizeof(SNAP_ORG_ETHERNET) == 3. */
413 #define SNAP_HEADER_LEN 5
414 OVS_PACKED(
415 struct snap_header {
416     uint8_t snap_org[3];
417     ovs_be16 snap_type;
418 });
419 BUILD_ASSERT_DECL(SNAP_HEADER_LEN == sizeof(struct snap_header));
420
421 #define LLC_SNAP_HEADER_LEN (LLC_HEADER_LEN + SNAP_HEADER_LEN)
422 OVS_PACKED(
423 struct llc_snap_header {
424     struct llc_header llc;
425     struct snap_header snap;
426 });
427 BUILD_ASSERT_DECL(LLC_SNAP_HEADER_LEN == sizeof(struct llc_snap_header));
428
429 #define VLAN_VID_MASK 0x0fff
430 #define VLAN_VID_SHIFT 0
431
432 #define VLAN_PCP_MASK 0xe000
433 #define VLAN_PCP_SHIFT 13
434
435 #define VLAN_CFI 0x1000
436 #define VLAN_CFI_SHIFT 12
437
438 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
439  * returns the VLAN ID in host byte order. */
440 static inline uint16_t
441 vlan_tci_to_vid(ovs_be16 vlan_tci)
442 {
443     return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
444 }
445
446 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
447  * returns the priority code point (PCP) in host byte order. */
448 static inline int
449 vlan_tci_to_pcp(ovs_be16 vlan_tci)
450 {
451     return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
452 }
453
454 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
455  * returns the Canonical Format Indicator (CFI). */
456 static inline int
457 vlan_tci_to_cfi(ovs_be16 vlan_tci)
458 {
459     return (vlan_tci & htons(VLAN_CFI)) != 0;
460 }
461
462 #define VLAN_HEADER_LEN 4
463 struct vlan_header {
464     ovs_be16 vlan_tci;          /* Lowest 12 bits are VLAN ID. */
465     ovs_be16 vlan_next_type;
466 };
467 BUILD_ASSERT_DECL(VLAN_HEADER_LEN == sizeof(struct vlan_header));
468
469 #define VLAN_ETH_HEADER_LEN (ETH_HEADER_LEN + VLAN_HEADER_LEN)
470 OVS_PACKED(
471 struct vlan_eth_header {
472     struct eth_addr veth_dst;
473     struct eth_addr veth_src;
474     ovs_be16 veth_type;         /* Always htons(ETH_TYPE_VLAN). */
475     ovs_be16 veth_tci;          /* Lowest 12 bits are VLAN ID. */
476     ovs_be16 veth_next_type;
477 });
478 BUILD_ASSERT_DECL(VLAN_ETH_HEADER_LEN == sizeof(struct vlan_eth_header));
479
480 /* MPLS related definitions */
481 #define MPLS_TTL_MASK       0x000000ff
482 #define MPLS_TTL_SHIFT      0
483
484 #define MPLS_BOS_MASK       0x00000100
485 #define MPLS_BOS_SHIFT      8
486
487 #define MPLS_TC_MASK        0x00000e00
488 #define MPLS_TC_SHIFT       9
489
490 #define MPLS_LABEL_MASK     0xfffff000
491 #define MPLS_LABEL_SHIFT    12
492
493 #define MPLS_HLEN           4
494
495 struct mpls_hdr {
496     ovs_16aligned_be32 mpls_lse;
497 };
498 BUILD_ASSERT_DECL(MPLS_HLEN == sizeof(struct mpls_hdr));
499
500 /* Given a mpls label stack entry in network byte order
501  * return mpls label in host byte order */
502 static inline uint32_t
503 mpls_lse_to_label(ovs_be32 mpls_lse)
504 {
505     return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
506 }
507
508 /* Given a mpls label stack entry in network byte order
509  * return mpls tc */
510 static inline uint8_t
511 mpls_lse_to_tc(ovs_be32 mpls_lse)
512 {
513     return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
514 }
515
516 /* Given a mpls label stack entry in network byte order
517  * return mpls ttl */
518 static inline uint8_t
519 mpls_lse_to_ttl(ovs_be32 mpls_lse)
520 {
521     return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
522 }
523
524 /* Set TTL in mpls lse. */
525 static inline void
526 flow_set_mpls_lse_ttl(ovs_be32 *mpls_lse, uint8_t ttl)
527 {
528     *mpls_lse &= ~htonl(MPLS_TTL_MASK);
529     *mpls_lse |= htonl(ttl << MPLS_TTL_SHIFT);
530 }
531
532 /* Given a mpls label stack entry in network byte order
533  * return mpls BoS bit  */
534 static inline uint8_t
535 mpls_lse_to_bos(ovs_be32 mpls_lse)
536 {
537     return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
538 }
539
540 #define IP_FMT "%"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32
541 #define IP_ARGS(ip)                             \
542     ntohl(ip) >> 24,                            \
543     (ntohl(ip) >> 16) & 0xff,                   \
544     (ntohl(ip) >> 8) & 0xff,                    \
545     ntohl(ip) & 0xff
546
547 /* Example:
548  *
549  * char *string = "1 33.44.55.66 2";
550  * ovs_be32 ip;
551  * int a, b;
552  *
553  * if (ovs_scan(string, "%d"IP_SCAN_FMT"%d", &a, IP_SCAN_ARGS(&ip), &b)) {
554  *     ...
555  * }
556  */
557 #define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
558 #define IP_SCAN_ARGS(ip)                                    \
559         ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
560         &((uint8_t *) ip)[1],                               \
561         &((uint8_t *) ip)[2],                               \
562         &((uint8_t *) ip)[3]
563
564 /* Returns true if 'netmask' is a CIDR netmask, that is, if it consists of N
565  * high-order 1-bits and 32-N low-order 0-bits. */
566 static inline bool
567 ip_is_cidr(ovs_be32 netmask)
568 {
569     uint32_t x = ~ntohl(netmask);
570     return !(x & (x + 1));
571 }
572 static inline bool
573 ip_is_multicast(ovs_be32 ip)
574 {
575     return (ip & htonl(0xf0000000)) == htonl(0xe0000000);
576 }
577 static inline bool
578 ip_is_local_multicast(ovs_be32 ip)
579 {
580     return (ip & htonl(0xffffff00)) == htonl(0xe0000000);
581 }
582 int ip_count_cidr_bits(ovs_be32 netmask);
583 void ip_format_masked(ovs_be32 ip, ovs_be32 mask, struct ds *);
584 char *ip_parse_masked(const char *s, ovs_be32 *ip, ovs_be32 *mask)
585     OVS_WARN_UNUSED_RESULT;
586
587 #define IP_VER(ip_ihl_ver) ((ip_ihl_ver) >> 4)
588 #define IP_IHL(ip_ihl_ver) ((ip_ihl_ver) & 15)
589 #define IP_IHL_VER(ihl, ver) (((ver) << 4) | (ihl))
590
591 #ifndef IPPROTO_SCTP
592 #define IPPROTO_SCTP 132
593 #endif
594
595 /* TOS fields. */
596 #define IP_ECN_NOT_ECT 0x0
597 #define IP_ECN_ECT_1 0x01
598 #define IP_ECN_ECT_0 0x02
599 #define IP_ECN_CE 0x03
600 #define IP_ECN_MASK 0x03
601 #define IP_DSCP_MASK 0xfc
602
603 #define IP_VERSION 4
604
605 #define IP_DONT_FRAGMENT  0x4000 /* Don't fragment. */
606 #define IP_MORE_FRAGMENTS 0x2000 /* More fragments. */
607 #define IP_FRAG_OFF_MASK  0x1fff /* Fragment offset. */
608 #define IP_IS_FRAGMENT(ip_frag_off) \
609         ((ip_frag_off) & htons(IP_MORE_FRAGMENTS | IP_FRAG_OFF_MASK))
610
611 #define IP_HEADER_LEN 20
612 struct ip_header {
613     uint8_t ip_ihl_ver;
614     uint8_t ip_tos;
615     ovs_be16 ip_tot_len;
616     ovs_be16 ip_id;
617     ovs_be16 ip_frag_off;
618     uint8_t ip_ttl;
619     uint8_t ip_proto;
620     ovs_be16 ip_csum;
621     ovs_16aligned_be32 ip_src;
622     ovs_16aligned_be32 ip_dst;
623 };
624
625 BUILD_ASSERT_DECL(IP_HEADER_LEN == sizeof(struct ip_header));
626
627 #define ICMP_HEADER_LEN 8
628 struct icmp_header {
629     uint8_t icmp_type;
630     uint8_t icmp_code;
631     ovs_be16 icmp_csum;
632     union {
633         struct {
634             ovs_be16 id;
635             ovs_be16 seq;
636         } echo;
637         struct {
638             ovs_be16 empty;
639             ovs_be16 mtu;
640         } frag;
641         ovs_16aligned_be32 gateway;
642     } icmp_fields;
643 };
644 BUILD_ASSERT_DECL(ICMP_HEADER_LEN == sizeof(struct icmp_header));
645
646 #define IGMP_HEADER_LEN 8
647 struct igmp_header {
648     uint8_t igmp_type;
649     uint8_t igmp_code;
650     ovs_be16 igmp_csum;
651     ovs_16aligned_be32 group;
652 };
653 BUILD_ASSERT_DECL(IGMP_HEADER_LEN == sizeof(struct igmp_header));
654
655 #define IGMPV3_HEADER_LEN 8
656 struct igmpv3_header {
657     uint8_t type;
658     uint8_t rsvr1;
659     ovs_be16 csum;
660     ovs_be16 rsvr2;
661     ovs_be16 ngrp;
662 };
663 BUILD_ASSERT_DECL(IGMPV3_HEADER_LEN == sizeof(struct igmpv3_header));
664
665 #define IGMPV3_RECORD_LEN 8
666 struct igmpv3_record {
667     uint8_t type;
668     uint8_t aux_len;
669     ovs_be16 nsrcs;
670     ovs_16aligned_be32 maddr;
671 };
672 BUILD_ASSERT_DECL(IGMPV3_RECORD_LEN == sizeof(struct igmpv3_record));
673
674 #define IGMP_HOST_MEMBERSHIP_QUERY    0x11 /* From RFC1112 */
675 #define IGMP_HOST_MEMBERSHIP_REPORT   0x12 /* Ditto */
676 #define IGMPV2_HOST_MEMBERSHIP_REPORT 0x16 /* V2 version of 0x12 */
677 #define IGMP_HOST_LEAVE_MESSAGE       0x17
678 #define IGMPV3_HOST_MEMBERSHIP_REPORT 0x22 /* V3 version of 0x12 */
679
680 /*
681  * IGMPv3 and MLDv2 use the same codes.
682  */
683 #define IGMPV3_MODE_IS_INCLUDE 1
684 #define IGMPV3_MODE_IS_EXCLUDE 2
685 #define IGMPV3_CHANGE_TO_INCLUDE_MODE 3
686 #define IGMPV3_CHANGE_TO_EXCLUDE_MODE 4
687 #define IGMPV3_ALLOW_NEW_SOURCES 5
688 #define IGMPV3_BLOCK_OLD_SOURCES 6
689
690 #define SCTP_HEADER_LEN 12
691 struct sctp_header {
692     ovs_be16 sctp_src;
693     ovs_be16 sctp_dst;
694     ovs_16aligned_be32 sctp_vtag;
695     ovs_16aligned_be32 sctp_csum;
696 };
697 BUILD_ASSERT_DECL(SCTP_HEADER_LEN == sizeof(struct sctp_header));
698
699 #define UDP_HEADER_LEN 8
700 struct udp_header {
701     ovs_be16 udp_src;
702     ovs_be16 udp_dst;
703     ovs_be16 udp_len;
704     ovs_be16 udp_csum;
705 };
706 BUILD_ASSERT_DECL(UDP_HEADER_LEN == sizeof(struct udp_header));
707
708 #define TCP_FIN 0x001
709 #define TCP_SYN 0x002
710 #define TCP_RST 0x004
711 #define TCP_PSH 0x008
712 #define TCP_ACK 0x010
713 #define TCP_URG 0x020
714 #define TCP_ECE 0x040
715 #define TCP_CWR 0x080
716 #define TCP_NS  0x100
717
718 #define TCP_CTL(flags, offset) (htons((flags) | ((offset) << 12)))
719 #define TCP_FLAGS(tcp_ctl) (ntohs(tcp_ctl) & 0x0fff)
720 #define TCP_FLAGS_BE16(tcp_ctl) ((tcp_ctl) & htons(0x0fff))
721 #define TCP_OFFSET(tcp_ctl) (ntohs(tcp_ctl) >> 12)
722
723 #define TCP_HEADER_LEN 20
724 struct tcp_header {
725     ovs_be16 tcp_src;
726     ovs_be16 tcp_dst;
727     ovs_16aligned_be32 tcp_seq;
728     ovs_16aligned_be32 tcp_ack;
729     ovs_be16 tcp_ctl;
730     ovs_be16 tcp_winsz;
731     ovs_be16 tcp_csum;
732     ovs_be16 tcp_urg;
733 };
734 BUILD_ASSERT_DECL(TCP_HEADER_LEN == sizeof(struct tcp_header));
735
736 /* Connection states */
737 enum {
738     CS_NEW_BIT =         0,
739     CS_ESTABLISHED_BIT = 1,
740     CS_RELATED_BIT =     2,
741     CS_REPLY_DIR_BIT =   3,
742     CS_INVALID_BIT =     4,
743     CS_TRACKED_BIT =     5,
744     CS_SRC_NAT_BIT =     6,
745     CS_DST_NAT_BIT =     7,
746 };
747
748 enum {
749     CS_NEW =         (1 << CS_NEW_BIT),
750     CS_ESTABLISHED = (1 << CS_ESTABLISHED_BIT),
751     CS_RELATED =     (1 << CS_RELATED_BIT),
752     CS_REPLY_DIR =   (1 << CS_REPLY_DIR_BIT),
753     CS_INVALID =     (1 << CS_INVALID_BIT),
754     CS_TRACKED =     (1 << CS_TRACKED_BIT),
755     CS_SRC_NAT =     (1 << CS_SRC_NAT_BIT),
756     CS_DST_NAT =     (1 << CS_DST_NAT_BIT),
757 };
758
759 /* Undefined connection state bits. */
760 #define CS_SUPPORTED_MASK    (CS_NEW | CS_ESTABLISHED | CS_RELATED \
761                               | CS_INVALID | CS_REPLY_DIR | CS_TRACKED \
762                               | CS_SRC_NAT | CS_DST_NAT)
763 #define CS_UNSUPPORTED_MASK  (~(uint32_t)CS_SUPPORTED_MASK)
764
765 #define ARP_HRD_ETHERNET 1
766 #define ARP_PRO_IP 0x0800
767 #define ARP_OP_REQUEST 1
768 #define ARP_OP_REPLY 2
769 #define ARP_OP_RARP 3
770
771 #define ARP_ETH_HEADER_LEN 28
772 struct arp_eth_header {
773     /* Generic members. */
774     ovs_be16 ar_hrd;           /* Hardware type. */
775     ovs_be16 ar_pro;           /* Protocol type. */
776     uint8_t ar_hln;            /* Hardware address length. */
777     uint8_t ar_pln;            /* Protocol address length. */
778     ovs_be16 ar_op;            /* Opcode. */
779
780     /* Ethernet+IPv4 specific members. */
781     struct eth_addr ar_sha;     /* Sender hardware address. */
782     ovs_16aligned_be32 ar_spa;  /* Sender protocol address. */
783     struct eth_addr ar_tha;     /* Target hardware address. */
784     ovs_16aligned_be32 ar_tpa;  /* Target protocol address. */
785 };
786 BUILD_ASSERT_DECL(ARP_ETH_HEADER_LEN == sizeof(struct arp_eth_header));
787
788 #define IPV6_HEADER_LEN 40
789
790 /* Like struct in6_addr, but whereas that struct requires 32-bit alignment on
791  * most implementations, this one only requires 16-bit alignment. */
792 union ovs_16aligned_in6_addr {
793     ovs_be16 be16[8];
794     ovs_16aligned_be32 be32[4];
795 };
796
797 /* Like struct in6_hdr, but whereas that struct requires 32-bit alignment, this
798  * one only requires 16-bit alignment. */
799 struct ovs_16aligned_ip6_hdr {
800     union {
801         struct ovs_16aligned_ip6_hdrctl {
802             ovs_16aligned_be32 ip6_un1_flow;
803             ovs_be16 ip6_un1_plen;
804             uint8_t ip6_un1_nxt;
805             uint8_t ip6_un1_hlim;
806         } ip6_un1;
807         uint8_t ip6_un2_vfc;
808     } ip6_ctlun;
809     union ovs_16aligned_in6_addr ip6_src;
810     union ovs_16aligned_in6_addr ip6_dst;
811 };
812
813 /* Like struct in6_frag, but whereas that struct requires 32-bit alignment,
814  * this one only requires 16-bit alignment. */
815 struct ovs_16aligned_ip6_frag {
816     uint8_t ip6f_nxt;
817     uint8_t ip6f_reserved;
818     ovs_be16 ip6f_offlg;
819     ovs_16aligned_be32 ip6f_ident;
820 };
821
822 #define ICMP6_HEADER_LEN 4
823 struct icmp6_header {
824     uint8_t icmp6_type;
825     uint8_t icmp6_code;
826     ovs_be16 icmp6_cksum;
827 };
828 BUILD_ASSERT_DECL(ICMP6_HEADER_LEN == sizeof(struct icmp6_header));
829
830 uint32_t packet_csum_pseudoheader6(const struct ovs_16aligned_ip6_hdr *);
831
832 /* Neighbor Discovery option field.
833  * ND options are always a multiple of 8 bytes in size. */
834 #define ND_OPT_LEN 8
835 struct ovs_nd_opt {
836     uint8_t  nd_opt_type;      /* Values defined in icmp6.h */
837     uint8_t  nd_opt_len;       /* in units of 8 octets (the size of this struct) */
838     struct eth_addr nd_opt_mac;   /* Ethernet address in the case of SLL or TLL options */
839 };
840 BUILD_ASSERT_DECL(ND_OPT_LEN == sizeof(struct ovs_nd_opt));
841
842 /* Like struct nd_msg (from ndisc.h), but whereas that struct requires 32-bit
843  * alignment, this one only requires 16-bit alignment. */
844 #define ND_MSG_LEN 24
845 struct ovs_nd_msg {
846     struct icmp6_header icmph;
847     ovs_16aligned_be32 rco_flags;
848     union ovs_16aligned_in6_addr target;
849     struct ovs_nd_opt options[0];
850 };
851 BUILD_ASSERT_DECL(ND_MSG_LEN == sizeof(struct ovs_nd_msg));
852
853 /*
854  * Use the same struct for MLD and MLD2, naming members as the defined fields in
855  * in the corresponding version of the protocol, though they are reserved in the
856  * other one.
857  */
858 #define MLD_HEADER_LEN 8
859 struct mld_header {
860     uint8_t type;
861     uint8_t code;
862     ovs_be16 csum;
863     ovs_be16 mrd;
864     ovs_be16 ngrp;
865 };
866 BUILD_ASSERT_DECL(MLD_HEADER_LEN == sizeof(struct mld_header));
867
868 #define MLD2_RECORD_LEN 20
869 struct mld2_record {
870     uint8_t type;
871     uint8_t aux_len;
872     ovs_be16 nsrcs;
873     union ovs_16aligned_in6_addr maddr;
874 };
875 BUILD_ASSERT_DECL(MLD2_RECORD_LEN == sizeof(struct mld2_record));
876
877 #define MLD_QUERY 130
878 #define MLD_REPORT 131
879 #define MLD_DONE 132
880 #define MLD2_REPORT 143
881
882 /* The IPv6 flow label is in the lower 20 bits of the first 32-bit word. */
883 #define IPV6_LABEL_MASK 0x000fffff
884
885 /* Example:
886  *
887  * char *string = "1 ::1 2";
888  * char ipv6_s[IPV6_SCAN_LEN + 1];
889  * struct in6_addr ipv6;
890  *
891  * if (ovs_scan(string, "%d"IPV6_SCAN_FMT"%d", &a, ipv6_s, &b)
892  *     && inet_pton(AF_INET6, ipv6_s, &ipv6) == 1) {
893  *     ...
894  * }
895  */
896 #define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
897 #define IPV6_SCAN_LEN 46
898
899 extern const struct in6_addr in6addr_exact;
900 #define IN6ADDR_EXACT_INIT { { { 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, \
901                                  0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff } } }
902
903 extern const struct in6_addr in6addr_all_hosts;
904 #define IN6ADDR_ALL_HOSTS_INIT { { { 0xff,0x02,0x00,0x00,0x00,0x00,0x00,0x00, \
905                                      0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01 } } }
906
907 static inline bool ipv6_addr_equals(const struct in6_addr *a,
908                                     const struct in6_addr *b)
909 {
910 #ifdef IN6_ARE_ADDR_EQUAL
911     return IN6_ARE_ADDR_EQUAL(a, b);
912 #else
913     return !memcmp(a, b, sizeof(*a));
914 #endif
915 }
916
917 static inline bool ipv6_mask_is_any(const struct in6_addr *mask) {
918     return ipv6_addr_equals(mask, &in6addr_any);
919 }
920
921 static inline bool ipv6_mask_is_exact(const struct in6_addr *mask) {
922     return ipv6_addr_equals(mask, &in6addr_exact);
923 }
924
925 static inline bool ipv6_is_all_hosts(const struct in6_addr *addr) {
926     return ipv6_addr_equals(addr, &in6addr_all_hosts);
927 }
928
929 static inline bool ipv6_addr_is_set(const struct in6_addr *addr) {
930     return !ipv6_addr_equals(addr, &in6addr_any);
931 }
932
933 static inline bool ipv6_addr_is_multicast(const struct in6_addr *ip) {
934     return ip->s6_addr[0] == 0xff;
935 }
936
937 static inline struct in6_addr
938 in6_addr_mapped_ipv4(ovs_be32 ip4)
939 {
940     struct in6_addr ip6 = { .s6_addr = { [10] = 0xff, [11] = 0xff } };
941     memcpy(&ip6.s6_addr[12], &ip4, 4);
942     return ip6;
943 }
944
945 static inline void
946 in6_addr_set_mapped_ipv4(struct in6_addr *ip6, ovs_be32 ip4)
947 {
948     *ip6 = in6_addr_mapped_ipv4(ip4);
949 }
950
951 static inline ovs_be32
952 in6_addr_get_mapped_ipv4(const struct in6_addr *addr)
953 {
954     union ovs_16aligned_in6_addr *taddr = (void *) addr;
955     if (IN6_IS_ADDR_V4MAPPED(addr)) {
956         return get_16aligned_be32(&taddr->be32[3]);
957     } else {
958         return INADDR_ANY;
959     }
960 }
961
962 static inline void
963 in6_addr_solicited_node(struct in6_addr *addr, const struct in6_addr *ip6)
964 {
965     union ovs_16aligned_in6_addr *taddr = (void *) addr;
966     memset(taddr->be16, 0, sizeof(taddr->be16));
967     taddr->be16[0] = htons(0xff02);
968     taddr->be16[5] = htons(0x1);
969     taddr->be16[6] = htons(0xff00);
970     memcpy(&addr->s6_addr[13], &ip6->s6_addr[13], 3);
971 }
972
973 static inline void
974 ipv6_multicast_to_ethernet(struct eth_addr *eth, const struct in6_addr *ip6)
975 {
976     eth->ea[0] = 0x33;
977     eth->ea[1] = 0x33;
978     eth->ea[2] = ip6->s6_addr[12];
979     eth->ea[3] = ip6->s6_addr[13];
980     eth->ea[4] = ip6->s6_addr[14];
981     eth->ea[5] = ip6->s6_addr[15];
982 }
983
984 static inline bool dl_type_is_ip_any(ovs_be16 dl_type)
985 {
986     return dl_type == htons(ETH_TYPE_IP)
987         || dl_type == htons(ETH_TYPE_IPV6);
988 }
989
990 /* Tunnel header */
991
992 /* GRE protocol header */
993 struct gre_base_hdr {
994     ovs_be16 flags;
995     ovs_be16 protocol;
996 };
997
998 #define GRE_CSUM        0x8000
999 #define GRE_ROUTING     0x4000
1000 #define GRE_KEY         0x2000
1001 #define GRE_SEQ         0x1000
1002 #define GRE_STRICT      0x0800
1003 #define GRE_REC         0x0700
1004 #define GRE_FLAGS       0x00F8
1005 #define GRE_VERSION     0x0007
1006
1007 /* VXLAN protocol header */
1008 struct vxlanhdr {
1009     ovs_16aligned_be32 vx_flags;
1010     ovs_16aligned_be32 vx_vni;
1011 };
1012
1013 #define VXLAN_FLAGS 0x08000000  /* struct vxlanhdr.vx_flags required value. */
1014
1015 void ipv6_format_addr(const struct in6_addr *addr, struct ds *);
1016 void ipv6_format_addr_bracket(const struct in6_addr *addr, struct ds *,
1017                               bool bracket);
1018 void ipv6_format_mapped(const struct in6_addr *addr, struct ds *);
1019 void ipv6_format_masked(const struct in6_addr *addr,
1020                         const struct in6_addr *mask, struct ds *);
1021 const char * ipv6_string_mapped(char *addr_str, const struct in6_addr *addr);
1022 struct in6_addr ipv6_addr_bitand(const struct in6_addr *src,
1023                                  const struct in6_addr *mask);
1024 struct in6_addr ipv6_create_mask(int mask);
1025 int ipv6_count_cidr_bits(const struct in6_addr *netmask);
1026 bool ipv6_is_cidr(const struct in6_addr *netmask);
1027 char *ipv6_parse_masked(const char *s, struct in6_addr *ipv6,
1028                         struct in6_addr *mask);
1029
1030 void *eth_compose(struct dp_packet *, const struct eth_addr eth_dst,
1031                   const struct eth_addr eth_src, uint16_t eth_type,
1032                   size_t size);
1033 void *snap_compose(struct dp_packet *, const struct eth_addr eth_dst,
1034                    const struct eth_addr eth_src,
1035                    unsigned int oui, uint16_t snap_type, size_t size);
1036 void packet_set_ipv4(struct dp_packet *, ovs_be32 src, ovs_be32 dst, uint8_t tos,
1037                      uint8_t ttl);
1038 void packet_set_ipv6(struct dp_packet *, uint8_t proto, const ovs_be32 src[4],
1039                      const ovs_be32 dst[4], uint8_t tc,
1040                      ovs_be32 fl, uint8_t hlmit);
1041 void packet_set_tcp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
1042 void packet_set_udp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
1043 void packet_set_sctp_port(struct dp_packet *, ovs_be16 src, ovs_be16 dst);
1044 void packet_set_icmp(struct dp_packet *, uint8_t type, uint8_t code);
1045 void packet_set_nd(struct dp_packet *, const ovs_be32 target[4],
1046                    const struct eth_addr sll, const struct eth_addr tll);
1047
1048 void packet_format_tcp_flags(struct ds *, uint16_t);
1049 const char *packet_tcp_flag_to_string(uint32_t flag);
1050 void compose_arp(struct dp_packet *, uint16_t arp_op,
1051                  const struct eth_addr arp_sha,
1052                  const struct eth_addr arp_tha, bool broadcast,
1053                  ovs_be32 arp_spa, ovs_be32 arp_tpa);
1054 void compose_nd(struct dp_packet *, const struct eth_addr eth_src,
1055                 struct in6_addr *, struct in6_addr *);
1056 uint32_t packet_csum_pseudoheader(const struct ip_header *);
1057
1058 #endif /* packets.h */