ovs-dpctl: Add mega flow support
[sliver-openvswitch.git] / lib / packets.h
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 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 "flow.h"
27 #include "openvswitch/types.h"
28 #include "random.h"
29 #include "util.h"
30
31 struct ofpbuf;
32 struct ds;
33
34 bool dpid_from_string(const char *s, uint64_t *dpidp);
35
36 #define ETH_ADDR_LEN           6
37
38 static const uint8_t eth_addr_broadcast[ETH_ADDR_LEN] OVS_UNUSED
39     = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
40
41 static const uint8_t eth_addr_stp[ETH_ADDR_LEN] OVS_UNUSED
42     = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x00 };
43
44 static const uint8_t eth_addr_lacp[ETH_ADDR_LEN] OVS_UNUSED
45     = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x02 };
46
47 static inline bool eth_addr_is_broadcast(const uint8_t ea[6])
48 {
49     return (ea[0] & ea[1] & ea[2] & ea[3] & ea[4] & ea[5]) == 0xff;
50 }
51
52 static inline bool eth_addr_is_multicast(const uint8_t ea[6])
53 {
54     return ea[0] & 1;
55 }
56 static inline bool eth_addr_is_local(const uint8_t ea[6])
57 {
58     /* Local if it is either a locally administered address or a Nicira random
59      * address. */
60     return ea[0] & 2
61        || (ea[0] == 0x00 && ea[1] == 0x23 && ea[2] == 0x20 && ea[3] & 0x80);
62 }
63 static inline bool eth_addr_is_zero(const uint8_t ea[6])
64 {
65     return !(ea[0] | ea[1] | ea[2] | ea[3] | ea[4] | ea[5]);
66 }
67
68 static inline int eth_mask_is_exact(const uint8_t ea[ETH_ADDR_LEN])
69 {
70     return (ea[0] & ea[1] & ea[2] & ea[3] & ea[4] & ea[5]) == 0xff;
71 }
72
73 static inline int eth_addr_compare_3way(const uint8_t a[ETH_ADDR_LEN],
74                                         const uint8_t b[ETH_ADDR_LEN])
75 {
76     return memcmp(a, b, ETH_ADDR_LEN);
77 }
78 static inline bool eth_addr_equals(const uint8_t a[ETH_ADDR_LEN],
79                                    const uint8_t b[ETH_ADDR_LEN])
80 {
81     return !eth_addr_compare_3way(a, b);
82 }
83 static inline bool eth_addr_equal_except(const uint8_t a[ETH_ADDR_LEN],
84                                     const uint8_t b[ETH_ADDR_LEN],
85                                     const uint8_t mask[ETH_ADDR_LEN])
86 {
87     return !(((a[0] ^ b[0]) & mask[0])
88              || ((a[1] ^ b[1]) & mask[1])
89              || ((a[2] ^ b[2]) & mask[2])
90              || ((a[3] ^ b[3]) & mask[3])
91              || ((a[4] ^ b[4]) & mask[4])
92              || ((a[5] ^ b[5]) & mask[5]));
93 }
94 static inline uint64_t eth_addr_to_uint64(const uint8_t ea[ETH_ADDR_LEN])
95 {
96     return (((uint64_t) ea[0] << 40)
97             | ((uint64_t) ea[1] << 32)
98             | ((uint64_t) ea[2] << 24)
99             | ((uint64_t) ea[3] << 16)
100             | ((uint64_t) ea[4] << 8)
101             | ea[5]);
102 }
103 static inline void eth_addr_from_uint64(uint64_t x, uint8_t ea[ETH_ADDR_LEN])
104 {
105     ea[0] = x >> 40;
106     ea[1] = x >> 32;
107     ea[2] = x >> 24;
108     ea[3] = x >> 16;
109     ea[4] = x >> 8;
110     ea[5] = x;
111 }
112 static inline void eth_addr_mark_random(uint8_t ea[ETH_ADDR_LEN])
113 {
114     ea[0] &= ~1;                /* Unicast. */
115     ea[0] |= 2;                 /* Private. */
116 }
117 static inline void eth_addr_random(uint8_t ea[ETH_ADDR_LEN])
118 {
119     random_bytes(ea, ETH_ADDR_LEN);
120     eth_addr_mark_random(ea);
121 }
122 static inline void eth_addr_nicira_random(uint8_t ea[ETH_ADDR_LEN])
123 {
124     eth_addr_random(ea);
125
126     /* Set the OUI to the Nicira one. */
127     ea[0] = 0x00;
128     ea[1] = 0x23;
129     ea[2] = 0x20;
130
131     /* Set the top bit to indicate random Nicira address. */
132     ea[3] |= 0x80;
133 }
134
135 bool eth_addr_is_reserved(const uint8_t ea[ETH_ADDR_LEN]);
136 bool eth_addr_from_string(const char *, uint8_t ea[ETH_ADDR_LEN]);
137
138 void compose_rarp(struct ofpbuf *, const uint8_t eth_src[ETH_ADDR_LEN]);
139
140 void eth_push_vlan(struct ofpbuf *, ovs_be16 tci);
141 void eth_pop_vlan(struct ofpbuf *);
142
143 uint16_t eth_mpls_depth(const struct ofpbuf *packet);
144
145 void set_ethertype(struct ofpbuf *packet, ovs_be16 eth_type);
146
147 const char *eth_from_hex(const char *hex, struct ofpbuf **packetp);
148 void eth_format_masked(const uint8_t eth[ETH_ADDR_LEN],
149                        const uint8_t mask[ETH_ADDR_LEN], struct ds *s);
150 void eth_addr_bitand(const uint8_t src[ETH_ADDR_LEN],
151                      const uint8_t mask[ETH_ADDR_LEN],
152                      uint8_t dst[ETH_ADDR_LEN]);
153
154 void set_mpls_lse(struct ofpbuf *, ovs_be32 label);
155 void push_mpls(struct ofpbuf *packet, ovs_be16 ethtype, ovs_be32 lse);
156 void pop_mpls(struct ofpbuf *, ovs_be16 ethtype);
157
158 void set_mpls_lse_ttl(ovs_be32 *lse, uint8_t ttl);
159 void set_mpls_lse_tc(ovs_be32 *lse, uint8_t tc);
160 void set_mpls_lse_label(ovs_be32 *lse, ovs_be32 label);
161 void set_mpls_lse_bos(ovs_be32 *lse, uint8_t bos);
162 ovs_be32 set_mpls_lse_values(uint8_t ttl, uint8_t tc, uint8_t bos,
163                              ovs_be32 label);
164
165 /* Example:
166  *
167  * uint8_t mac[ETH_ADDR_LEN];
168  *    [...]
169  * printf("The Ethernet address is "ETH_ADDR_FMT"\n", ETH_ADDR_ARGS(mac));
170  *
171  */
172 #define ETH_ADDR_FMT                                                    \
173     "%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8":%02"PRIx8
174 #define ETH_ADDR_ARGS(ea)                                   \
175     (ea)[0], (ea)[1], (ea)[2], (ea)[3], (ea)[4], (ea)[5]
176
177 /* Example:
178  *
179  * char *string = "1 00:11:22:33:44:55 2";
180  * uint8_t mac[ETH_ADDR_LEN];
181  * int a, b;
182  *
183  * if (sscanf(string, "%d"ETH_ADDR_SCAN_FMT"%d",
184  *     &a, ETH_ADDR_SCAN_ARGS(mac), &b) == 1 + ETH_ADDR_SCAN_COUNT + 1) {
185  *     ...
186  * }
187  */
188 #define ETH_ADDR_SCAN_FMT "%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8":%"SCNx8
189 #define ETH_ADDR_SCAN_ARGS(ea) \
190         &(ea)[0], &(ea)[1], &(ea)[2], &(ea)[3], &(ea)[4], &(ea)[5]
191 #define ETH_ADDR_SCAN_COUNT 6
192
193 #define ETH_TYPE_IP            0x0800
194 #define ETH_TYPE_ARP           0x0806
195 #define ETH_TYPE_VLAN_8021Q    0x8100
196 #define ETH_TYPE_VLAN          ETH_TYPE_VLAN_8021Q
197 #define ETH_TYPE_VLAN_8021AD   0x88a8
198 #define ETH_TYPE_IPV6          0x86dd
199 #define ETH_TYPE_LACP          0x8809
200 #define ETH_TYPE_RARP          0x8035
201 #define ETH_TYPE_MPLS          0x8847
202 #define ETH_TYPE_MPLS_MCAST    0x8848
203
204 static inline bool eth_type_mpls(ovs_be16 eth_type)
205 {
206     return eth_type == htons(ETH_TYPE_MPLS) ||
207         eth_type == htons(ETH_TYPE_MPLS_MCAST);
208 }
209
210 /* Minimum value for an Ethernet type.  Values below this are IEEE 802.2 frame
211  * lengths. */
212 #define ETH_TYPE_MIN           0x600
213
214 #define ETH_HEADER_LEN 14
215 #define ETH_PAYLOAD_MIN 46
216 #define ETH_PAYLOAD_MAX 1500
217 #define ETH_TOTAL_MIN (ETH_HEADER_LEN + ETH_PAYLOAD_MIN)
218 #define ETH_TOTAL_MAX (ETH_HEADER_LEN + ETH_PAYLOAD_MAX)
219 #define ETH_VLAN_TOTAL_MAX (ETH_HEADER_LEN + VLAN_HEADER_LEN + ETH_PAYLOAD_MAX)
220 struct eth_header {
221     uint8_t eth_dst[ETH_ADDR_LEN];
222     uint8_t eth_src[ETH_ADDR_LEN];
223     ovs_be16 eth_type;
224 } __attribute__((packed));
225 BUILD_ASSERT_DECL(ETH_HEADER_LEN == sizeof(struct eth_header));
226
227 #define LLC_DSAP_SNAP 0xaa
228 #define LLC_SSAP_SNAP 0xaa
229 #define LLC_CNTL_SNAP 3
230
231 #define LLC_HEADER_LEN 3
232 struct llc_header {
233     uint8_t llc_dsap;
234     uint8_t llc_ssap;
235     uint8_t llc_cntl;
236 } __attribute__((packed));
237 BUILD_ASSERT_DECL(LLC_HEADER_LEN == sizeof(struct llc_header));
238
239 #define SNAP_ORG_ETHERNET "\0\0" /* The compiler adds a null byte, so
240                                     sizeof(SNAP_ORG_ETHERNET) == 3. */
241 #define SNAP_HEADER_LEN 5
242 struct snap_header {
243     uint8_t snap_org[3];
244     ovs_be16 snap_type;
245 } __attribute__((packed));
246 BUILD_ASSERT_DECL(SNAP_HEADER_LEN == sizeof(struct snap_header));
247
248 #define LLC_SNAP_HEADER_LEN (LLC_HEADER_LEN + SNAP_HEADER_LEN)
249 struct llc_snap_header {
250     struct llc_header llc;
251     struct snap_header snap;
252 } __attribute__((packed));
253 BUILD_ASSERT_DECL(LLC_SNAP_HEADER_LEN == sizeof(struct llc_snap_header));
254
255 #define VLAN_VID_MASK 0x0fff
256 #define VLAN_VID_SHIFT 0
257
258 #define VLAN_PCP_MASK 0xe000
259 #define VLAN_PCP_SHIFT 13
260
261 #define VLAN_CFI 0x1000
262 #define VLAN_CFI_SHIFT 12
263
264 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
265  * returns the VLAN ID in host byte order. */
266 static inline uint16_t
267 vlan_tci_to_vid(ovs_be16 vlan_tci)
268 {
269     return (ntohs(vlan_tci) & VLAN_VID_MASK) >> VLAN_VID_SHIFT;
270 }
271
272 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
273  * returns the priority code point (PCP) in host byte order. */
274 static inline int
275 vlan_tci_to_pcp(ovs_be16 vlan_tci)
276 {
277     return (ntohs(vlan_tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT;
278 }
279
280 /* Given the vlan_tci field from an 802.1Q header, in network byte order,
281  * returns the Canonical Format Indicator (CFI). */
282 static inline int
283 vlan_tci_to_cfi(ovs_be16 vlan_tci)
284 {
285     return (vlan_tci & htons(VLAN_CFI)) != 0;
286 }
287
288 #define VLAN_HEADER_LEN 4
289 struct vlan_header {
290     ovs_be16 vlan_tci;          /* Lowest 12 bits are VLAN ID. */
291     ovs_be16 vlan_next_type;
292 };
293 BUILD_ASSERT_DECL(VLAN_HEADER_LEN == sizeof(struct vlan_header));
294
295 #define VLAN_ETH_HEADER_LEN (ETH_HEADER_LEN + VLAN_HEADER_LEN)
296 struct vlan_eth_header {
297     uint8_t veth_dst[ETH_ADDR_LEN];
298     uint8_t veth_src[ETH_ADDR_LEN];
299     ovs_be16 veth_type;         /* Always htons(ETH_TYPE_VLAN). */
300     ovs_be16 veth_tci;          /* Lowest 12 bits are VLAN ID. */
301     ovs_be16 veth_next_type;
302 } __attribute__((packed));
303 BUILD_ASSERT_DECL(VLAN_ETH_HEADER_LEN == sizeof(struct vlan_eth_header));
304
305 /* MPLS related definitions */
306 #define MPLS_TTL_MASK       0x000000ff
307 #define MPLS_TTL_SHIFT      0
308
309 #define MPLS_BOS_MASK       0x00000100
310 #define MPLS_BOS_SHIFT      8
311
312 #define MPLS_TC_MASK        0x00000e00
313 #define MPLS_TC_SHIFT       9
314
315 #define MPLS_LABEL_MASK     0xfffff000
316 #define MPLS_LABEL_SHIFT    12
317
318 #define MPLS_HLEN           4
319
320 struct mpls_hdr {
321     ovs_be32 mpls_lse;
322 };
323 BUILD_ASSERT_DECL(MPLS_HLEN == sizeof(struct mpls_hdr));
324
325 /* Given a mpls label stack entry in network byte order
326  * return mpls label in host byte order */
327 static inline uint32_t
328 mpls_lse_to_label(ovs_be32 mpls_lse)
329 {
330     return (ntohl(mpls_lse) & MPLS_LABEL_MASK) >> MPLS_LABEL_SHIFT;
331 }
332
333 /* Given a mpls label stack entry in network byte order
334  * return mpls tc */
335 static inline uint8_t
336 mpls_lse_to_tc(ovs_be32 mpls_lse)
337 {
338     return (ntohl(mpls_lse) & MPLS_TC_MASK) >> MPLS_TC_SHIFT;
339 }
340
341 /* Given a mpls label stack entry in network byte order
342  * return mpls ttl */
343 static inline uint8_t
344 mpls_lse_to_ttl(ovs_be32 mpls_lse)
345 {
346     return (ntohl(mpls_lse) & MPLS_TTL_MASK) >> MPLS_TTL_SHIFT;
347 }
348
349 /* Set TTL in mpls lse. */
350 static inline void
351 flow_set_mpls_lse_ttl(ovs_be32 *mpls_lse, uint8_t ttl)
352 {
353     *mpls_lse &= ~htonl(MPLS_TTL_MASK);
354     *mpls_lse |= htonl(ttl << MPLS_TTL_SHIFT);
355 }
356
357 /* Given a mpls label stack entry in network byte order
358  * return mpls BoS bit  */
359 static inline uint8_t
360 mpls_lse_to_bos(ovs_be32 mpls_lse)
361 {
362     return (mpls_lse & htonl(MPLS_BOS_MASK)) != 0;
363 }
364
365 #define IP_FMT "%"PRIu32".%"PRIu32".%"PRIu32".%"PRIu32
366 #define IP_ARGS(ip)                             \
367     ntohl(ip) >> 24,                            \
368     (ntohl(ip) >> 16) & 0xff,                   \
369     (ntohl(ip) >> 8) & 0xff,                    \
370     ntohl(ip) & 0xff
371
372 /* Example:
373  *
374  * char *string = "1 33.44.55.66 2";
375  * ovs_be32 ip;
376  * int a, b;
377  *
378  * if (sscanf(string, "%d"IP_SCAN_FMT"%d",
379  *     &a, IP_SCAN_ARGS(&ip), &b) == 1 + IP_SCAN_COUNT + 1) {
380  *     ...
381  * }
382  */
383 #define IP_SCAN_FMT "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8
384 #define IP_SCAN_ARGS(ip)                                    \
385         ((void) (ovs_be32) *(ip), &((uint8_t *) ip)[0]),    \
386         &((uint8_t *) ip)[1],                               \
387         &((uint8_t *) ip)[2],                               \
388         &((uint8_t *) ip)[3]
389 #define IP_SCAN_COUNT 4
390
391 /* Returns true if 'netmask' is a CIDR netmask, that is, if it consists of N
392  * high-order 1-bits and 32-N low-order 0-bits. */
393 static inline bool
394 ip_is_cidr(ovs_be32 netmask)
395 {
396     uint32_t x = ~ntohl(netmask);
397     return !(x & (x + 1));
398 }
399 static inline bool
400 ip_is_multicast(ovs_be32 ip)
401 {
402     return (ip & htonl(0xf0000000)) == htonl(0xe0000000);
403 }
404 int ip_count_cidr_bits(ovs_be32 netmask);
405 void ip_format_masked(ovs_be32 ip, ovs_be32 mask, struct ds *);
406
407 #define IP_VER(ip_ihl_ver) ((ip_ihl_ver) >> 4)
408 #define IP_IHL(ip_ihl_ver) ((ip_ihl_ver) & 15)
409 #define IP_IHL_VER(ihl, ver) (((ver) << 4) | (ihl))
410
411 #ifndef IPPROTO_SCTP
412 #define IPPROTO_SCTP 132
413 #endif
414
415 /* TOS fields. */
416 #define IP_ECN_NOT_ECT 0x0
417 #define IP_ECN_ECT_1 0x01
418 #define IP_ECN_ECT_0 0x02
419 #define IP_ECN_CE 0x03
420 #define IP_ECN_MASK 0x03
421 #define IP_DSCP_MASK 0xfc
422
423 #define IP_VERSION 4
424
425 #define IP_DONT_FRAGMENT  0x4000 /* Don't fragment. */
426 #define IP_MORE_FRAGMENTS 0x2000 /* More fragments. */
427 #define IP_FRAG_OFF_MASK  0x1fff /* Fragment offset. */
428 #define IP_IS_FRAGMENT(ip_frag_off) \
429         ((ip_frag_off) & htons(IP_MORE_FRAGMENTS | IP_FRAG_OFF_MASK))
430
431 #define IP_HEADER_LEN 20
432 struct ip_header {
433     uint8_t ip_ihl_ver;
434     uint8_t ip_tos;
435     ovs_be16 ip_tot_len;
436     ovs_be16 ip_id;
437     ovs_be16 ip_frag_off;
438     uint8_t ip_ttl;
439     uint8_t ip_proto;
440     ovs_be16 ip_csum;
441     ovs_be32 ip_src;
442     ovs_be32 ip_dst;
443 };
444 BUILD_ASSERT_DECL(IP_HEADER_LEN == sizeof(struct ip_header));
445
446 #define ICMP_HEADER_LEN 8
447 struct icmp_header {
448     uint8_t icmp_type;
449     uint8_t icmp_code;
450     ovs_be16 icmp_csum;
451     union {
452         struct {
453             ovs_be16 id;
454             ovs_be16 seq;
455         } echo;
456         struct {
457             ovs_be16 empty;
458             ovs_be16 mtu;
459         } frag;
460         ovs_be32 gateway;
461     } icmp_fields;
462     uint8_t icmp_data[0];
463 };
464 BUILD_ASSERT_DECL(ICMP_HEADER_LEN == sizeof(struct icmp_header));
465
466 #define UDP_HEADER_LEN 8
467 struct udp_header {
468     ovs_be16 udp_src;
469     ovs_be16 udp_dst;
470     ovs_be16 udp_len;
471     ovs_be16 udp_csum;
472 };
473 BUILD_ASSERT_DECL(UDP_HEADER_LEN == sizeof(struct udp_header));
474
475 #define TCP_FIN 0x01
476 #define TCP_SYN 0x02
477 #define TCP_RST 0x04
478 #define TCP_PSH 0x08
479 #define TCP_ACK 0x10
480 #define TCP_URG 0x20
481
482 #define TCP_CTL(flags, offset) (htons((flags) | ((offset) << 12)))
483 #define TCP_FLAGS(tcp_ctl) (ntohs(tcp_ctl) & 0x003f)
484 #define TCP_OFFSET(tcp_ctl) (ntohs(tcp_ctl) >> 12)
485
486 #define TCP_HEADER_LEN 20
487 struct tcp_header {
488     ovs_be16 tcp_src;
489     ovs_be16 tcp_dst;
490     ovs_be32 tcp_seq;
491     ovs_be32 tcp_ack;
492     ovs_be16 tcp_ctl;
493     ovs_be16 tcp_winsz;
494     ovs_be16 tcp_csum;
495     ovs_be16 tcp_urg;
496 };
497 BUILD_ASSERT_DECL(TCP_HEADER_LEN == sizeof(struct tcp_header));
498
499 #define ARP_HRD_ETHERNET 1
500 #define ARP_PRO_IP 0x0800
501 #define ARP_OP_REQUEST 1
502 #define ARP_OP_REPLY 2
503 #define ARP_OP_RARP 3
504
505 #define ARP_ETH_HEADER_LEN 28
506 struct arp_eth_header {
507     /* Generic members. */
508     ovs_be16 ar_hrd;           /* Hardware type. */
509     ovs_be16 ar_pro;           /* Protocol type. */
510     uint8_t ar_hln;            /* Hardware address length. */
511     uint8_t ar_pln;            /* Protocol address length. */
512     ovs_be16 ar_op;            /* Opcode. */
513
514     /* Ethernet+IPv4 specific members. */
515     uint8_t ar_sha[ETH_ADDR_LEN]; /* Sender hardware address. */
516     ovs_be32 ar_spa;           /* Sender protocol address. */
517     uint8_t ar_tha[ETH_ADDR_LEN]; /* Target hardware address. */
518     ovs_be32 ar_tpa;           /* Target protocol address. */
519 } __attribute__((packed));
520 BUILD_ASSERT_DECL(ARP_ETH_HEADER_LEN == sizeof(struct arp_eth_header));
521
522 /* The IPv6 flow label is in the lower 20 bits of the first 32-bit word. */
523 #define IPV6_LABEL_MASK 0x000fffff
524
525 /* Example:
526  *
527  * char *string = "1 ::1 2";
528  * char ipv6_s[IPV6_SCAN_LEN + 1];
529  * struct in6_addr ipv6;
530  *
531  * if (sscanf(string, "%d"IPV6_SCAN_FMT"%d", &a, ipv6_s, &b) == 3
532  *     && inet_pton(AF_INET6, ipv6_s, &ipv6) == 1) {
533  *     ...
534  * }
535  */
536 #define IPV6_SCAN_FMT "%46[0123456789abcdefABCDEF:.]"
537 #define IPV6_SCAN_LEN 46
538
539 extern const struct in6_addr in6addr_exact;
540 #define IN6ADDR_EXACT_INIT { { { 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, \
541                                  0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff } } }
542
543 static inline bool ipv6_addr_equals(const struct in6_addr *a,
544                                     const struct in6_addr *b)
545 {
546 #ifdef IN6_ARE_ADDR_EQUAL
547     return IN6_ARE_ADDR_EQUAL(a, b);
548 #else
549     return !memcmp(a, b, sizeof(*a));
550 #endif
551 }
552
553 static inline bool ipv6_mask_is_any(const struct in6_addr *mask) {
554     return ipv6_addr_equals(mask, &in6addr_any);
555 }
556
557 static inline bool ipv6_mask_is_exact(const struct in6_addr *mask) {
558     return ipv6_addr_equals(mask, &in6addr_exact);
559 }
560
561 static inline bool dl_type_is_ip_any(ovs_be16 dl_type)
562 {
563     return dl_type == htons(ETH_TYPE_IP)
564         || dl_type == htons(ETH_TYPE_IPV6);
565 }
566
567 static inline bool is_ip_any(const struct flow *flow)
568 {
569     return dl_type_is_ip_any(flow->dl_type);
570 }
571
572 void format_ipv6_addr(char *addr_str, const struct in6_addr *addr);
573 void print_ipv6_addr(struct ds *string, const struct in6_addr *addr);
574 void print_ipv6_masked(struct ds *string, const struct in6_addr *addr,
575                        const struct in6_addr *mask);
576 struct in6_addr ipv6_addr_bitand(const struct in6_addr *src,
577                                  const struct in6_addr *mask);
578 struct in6_addr ipv6_create_mask(int mask);
579 int ipv6_count_cidr_bits(const struct in6_addr *netmask);
580 bool ipv6_is_cidr(const struct in6_addr *netmask);
581
582 void *eth_compose(struct ofpbuf *, const uint8_t eth_dst[ETH_ADDR_LEN],
583                   const uint8_t eth_src[ETH_ADDR_LEN], uint16_t eth_type,
584                   size_t size);
585 void *snap_compose(struct ofpbuf *, const uint8_t eth_dst[ETH_ADDR_LEN],
586                    const uint8_t eth_src[ETH_ADDR_LEN],
587                    unsigned int oui, uint16_t snap_type, size_t size);
588 void packet_set_ipv4(struct ofpbuf *, ovs_be32 src, ovs_be32 dst, uint8_t tos,
589                      uint8_t ttl);
590 void packet_set_ipv6(struct ofpbuf *, uint8_t proto, const ovs_be32 src[4],
591                      const ovs_be32 dst[4], uint8_t tc,
592                      ovs_be32 fl, uint8_t hlmit);
593 void packet_set_tcp_port(struct ofpbuf *, ovs_be16 src, ovs_be16 dst);
594 void packet_set_udp_port(struct ofpbuf *, ovs_be16 src, ovs_be16 dst);
595
596 uint8_t packet_get_tcp_flags(const struct ofpbuf *, const struct flow *);
597 void packet_format_tcp_flags(struct ds *, uint8_t);
598
599 #endif /* packets.h */