mcast-snooping: Use IPv6 address for MDB
[cascardo/ovs.git] / lib / packets.c
1 /*
2  * Copyright (c) 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 #include <config.h>
18 #include "packets.h"
19 #include <arpa/inet.h>
20 #include <sys/socket.h>
21 #include <netinet/in.h>
22 #include <netinet/ip6.h>
23 #include <netinet/icmp6.h>
24 #include <stdlib.h>
25 #include "byte-order.h"
26 #include "csum.h"
27 #include "crc32c.h"
28 #include "flow.h"
29 #include "hmap.h"
30 #include "dynamic-string.h"
31 #include "ovs-thread.h"
32 #include "odp-util.h"
33 #include "dp-packet.h"
34 #include "unaligned.h"
35
36 const struct in6_addr in6addr_exact = IN6ADDR_EXACT_INIT;
37
38 /* Parses 's' as a 16-digit hexadecimal number representing a datapath ID.  On
39  * success stores the dpid into '*dpidp' and returns true, on failure stores 0
40  * into '*dpidp' and returns false.
41  *
42  * Rejects an all-zeros dpid as invalid. */
43 bool
44 dpid_from_string(const char *s, uint64_t *dpidp)
45 {
46     *dpidp = (strlen(s) == 16 && strspn(s, "0123456789abcdefABCDEF") == 16
47               ? strtoull(s, NULL, 16)
48               : 0);
49     return *dpidp != 0;
50 }
51
52 /* Returns true if 'ea' is a reserved address, that a bridge must never
53  * forward, false otherwise.
54  *
55  * If you change this function's behavior, please update corresponding
56  * documentation in vswitch.xml at the same time. */
57 bool
58 eth_addr_is_reserved(const uint8_t ea[ETH_ADDR_LEN])
59 {
60     struct eth_addr_node {
61         struct hmap_node hmap_node;
62         const uint64_t ea64;
63     };
64
65     static struct eth_addr_node nodes[] = {
66         /* STP, IEEE pause frames, and other reserved protocols. */
67         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000000ULL },
68         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000001ULL },
69         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000002ULL },
70         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000003ULL },
71         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000004ULL },
72         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000005ULL },
73         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000006ULL },
74         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000007ULL },
75         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000008ULL },
76         { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000009ULL },
77         { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000aULL },
78         { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000bULL },
79         { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000cULL },
80         { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000dULL },
81         { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000eULL },
82         { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000fULL },
83
84         /* Extreme protocols. */
85         { HMAP_NODE_NULL_INITIALIZER, 0x00e02b000000ULL }, /* EDP. */
86         { HMAP_NODE_NULL_INITIALIZER, 0x00e02b000004ULL }, /* EAPS. */
87         { HMAP_NODE_NULL_INITIALIZER, 0x00e02b000006ULL }, /* EAPS. */
88
89         /* Cisco protocols. */
90         { HMAP_NODE_NULL_INITIALIZER, 0x01000c000000ULL }, /* ISL. */
91         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccccULL }, /* PAgP, UDLD, CDP,
92                                                             * DTP, VTP. */
93         { HMAP_NODE_NULL_INITIALIZER, 0x01000ccccccdULL }, /* PVST+. */
94         { HMAP_NODE_NULL_INITIALIZER, 0x01000ccdcdcdULL }, /* STP Uplink Fast,
95                                                             * FlexLink. */
96
97         /* Cisco CFM. */
98         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc0ULL },
99         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc1ULL },
100         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc2ULL },
101         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc3ULL },
102         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc4ULL },
103         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc5ULL },
104         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc6ULL },
105         { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc7ULL },
106     };
107
108     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
109     struct eth_addr_node *node;
110     static struct hmap addrs;
111     uint64_t ea64;
112
113     if (ovsthread_once_start(&once)) {
114         hmap_init(&addrs);
115         for (node = nodes; node < &nodes[ARRAY_SIZE(nodes)]; node++) {
116             hmap_insert(&addrs, &node->hmap_node, hash_uint64(node->ea64));
117         }
118         ovsthread_once_done(&once);
119     }
120
121     ea64 = eth_addr_to_uint64(ea);
122     HMAP_FOR_EACH_IN_BUCKET (node, hmap_node, hash_uint64(ea64), &addrs) {
123         if (node->ea64 == ea64) {
124             return true;
125         }
126     }
127     return false;
128 }
129
130 bool
131 eth_addr_from_string(const char *s, uint8_t ea[ETH_ADDR_LEN])
132 {
133     if (ovs_scan(s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(ea))) {
134         return true;
135     } else {
136         memset(ea, 0, ETH_ADDR_LEN);
137         return false;
138     }
139 }
140
141 /* Fills 'b' with a Reverse ARP packet with Ethernet source address 'eth_src'.
142  * This function is used by Open vSwitch to compose packets in cases where
143  * context is important but content doesn't (or shouldn't) matter.
144  *
145  * The returned packet has enough headroom to insert an 802.1Q VLAN header if
146  * desired. */
147 void
148 compose_rarp(struct dp_packet *b, const uint8_t eth_src[ETH_ADDR_LEN])
149 {
150     struct eth_header *eth;
151     struct arp_eth_header *arp;
152
153     dp_packet_clear(b);
154     dp_packet_prealloc_tailroom(b, 2 + ETH_HEADER_LEN + VLAN_HEADER_LEN
155                              + ARP_ETH_HEADER_LEN);
156     dp_packet_reserve(b, 2 + VLAN_HEADER_LEN);
157     eth = dp_packet_put_uninit(b, sizeof *eth);
158     memcpy(eth->eth_dst, eth_addr_broadcast, ETH_ADDR_LEN);
159     memcpy(eth->eth_src, eth_src, ETH_ADDR_LEN);
160     eth->eth_type = htons(ETH_TYPE_RARP);
161
162     arp = dp_packet_put_uninit(b, sizeof *arp);
163     arp->ar_hrd = htons(ARP_HRD_ETHERNET);
164     arp->ar_pro = htons(ARP_PRO_IP);
165     arp->ar_hln = sizeof arp->ar_sha;
166     arp->ar_pln = sizeof arp->ar_spa;
167     arp->ar_op = htons(ARP_OP_RARP);
168     memcpy(arp->ar_sha, eth_src, ETH_ADDR_LEN);
169     put_16aligned_be32(&arp->ar_spa, htonl(0));
170     memcpy(arp->ar_tha, eth_src, ETH_ADDR_LEN);
171     put_16aligned_be32(&arp->ar_tpa, htonl(0));
172
173     dp_packet_reset_offsets(b);
174     dp_packet_set_l3(b, arp);
175 }
176
177 /* Insert VLAN header according to given TCI. Packet passed must be Ethernet
178  * packet.  Ignores the CFI bit of 'tci' using 0 instead.
179  *
180  * Also adjusts the layer offsets accordingly. */
181 void
182 eth_push_vlan(struct dp_packet *packet, ovs_be16 tpid, ovs_be16 tci)
183 {
184     struct vlan_eth_header *veh;
185
186     /* Insert new 802.1Q header. */
187     veh = dp_packet_resize_l2(packet, VLAN_HEADER_LEN);
188     memmove(veh, (char *)veh + VLAN_HEADER_LEN, 2 * ETH_ADDR_LEN);
189     veh->veth_type = tpid;
190     veh->veth_tci = tci & htons(~VLAN_CFI);
191 }
192
193 /* Removes outermost VLAN header (if any is present) from 'packet'.
194  *
195  * 'packet->l2_5' should initially point to 'packet''s outer-most VLAN header
196  * or may be NULL if there are no VLAN headers. */
197 void
198 eth_pop_vlan(struct dp_packet *packet)
199 {
200     struct vlan_eth_header *veh = dp_packet_l2(packet);
201
202     if (veh && dp_packet_size(packet) >= sizeof *veh
203         && eth_type_vlan(veh->veth_type)) {
204
205         memmove((char *)veh + VLAN_HEADER_LEN, veh, 2 * ETH_ADDR_LEN);
206         dp_packet_resize_l2(packet, -VLAN_HEADER_LEN);
207     }
208 }
209
210 /* Set ethertype of the packet. */
211 static void
212 set_ethertype(struct dp_packet *packet, ovs_be16 eth_type)
213 {
214     struct eth_header *eh = dp_packet_l2(packet);
215
216     if (!eh) {
217         return;
218     }
219
220     if (eth_type_vlan(eh->eth_type)) {
221         ovs_be16 *p;
222         char *l2_5 = dp_packet_l2_5(packet);
223
224         p = ALIGNED_CAST(ovs_be16 *,
225                          (l2_5 ? l2_5 : (char *)dp_packet_l3(packet)) - 2);
226         *p = eth_type;
227     } else {
228         eh->eth_type = eth_type;
229     }
230 }
231
232 static bool is_mpls(struct dp_packet *packet)
233 {
234     return packet->l2_5_ofs != UINT16_MAX;
235 }
236
237 /* Set time to live (TTL) of an MPLS label stack entry (LSE). */
238 void
239 set_mpls_lse_ttl(ovs_be32 *lse, uint8_t ttl)
240 {
241     *lse &= ~htonl(MPLS_TTL_MASK);
242     *lse |= htonl((ttl << MPLS_TTL_SHIFT) & MPLS_TTL_MASK);
243 }
244
245 /* Set traffic class (TC) of an MPLS label stack entry (LSE). */
246 void
247 set_mpls_lse_tc(ovs_be32 *lse, uint8_t tc)
248 {
249     *lse &= ~htonl(MPLS_TC_MASK);
250     *lse |= htonl((tc << MPLS_TC_SHIFT) & MPLS_TC_MASK);
251 }
252
253 /* Set label of an MPLS label stack entry (LSE). */
254 void
255 set_mpls_lse_label(ovs_be32 *lse, ovs_be32 label)
256 {
257     *lse &= ~htonl(MPLS_LABEL_MASK);
258     *lse |= htonl((ntohl(label) << MPLS_LABEL_SHIFT) & MPLS_LABEL_MASK);
259 }
260
261 /* Set bottom of stack (BoS) bit of an MPLS label stack entry (LSE). */
262 void
263 set_mpls_lse_bos(ovs_be32 *lse, uint8_t bos)
264 {
265     *lse &= ~htonl(MPLS_BOS_MASK);
266     *lse |= htonl((bos << MPLS_BOS_SHIFT) & MPLS_BOS_MASK);
267 }
268
269 /* Compose an MPLS label stack entry (LSE) from its components:
270  * label, traffic class (TC), time to live (TTL) and
271  * bottom of stack (BoS) bit. */
272 ovs_be32
273 set_mpls_lse_values(uint8_t ttl, uint8_t tc, uint8_t bos, ovs_be32 label)
274 {
275     ovs_be32 lse = htonl(0);
276     set_mpls_lse_ttl(&lse, ttl);
277     set_mpls_lse_tc(&lse, tc);
278     set_mpls_lse_bos(&lse, bos);
279     set_mpls_lse_label(&lse, label);
280     return lse;
281 }
282
283 /* Set MPLS label stack entry to outermost MPLS header.*/
284 void
285 set_mpls_lse(struct dp_packet *packet, ovs_be32 mpls_lse)
286 {
287     /* Packet type should be MPLS to set label stack entry. */
288     if (is_mpls(packet)) {
289         struct mpls_hdr *mh = dp_packet_l2_5(packet);
290
291         /* Update mpls label stack entry. */
292         put_16aligned_be32(&mh->mpls_lse, mpls_lse);
293     }
294 }
295
296 /* Push MPLS label stack entry 'lse' onto 'packet' as the the outermost MPLS
297  * header.  If 'packet' does not already have any MPLS labels, then its
298  * Ethertype is changed to 'ethtype' (which must be an MPLS Ethertype). */
299 void
300 push_mpls(struct dp_packet *packet, ovs_be16 ethtype, ovs_be32 lse)
301 {
302     char * header;
303     size_t len;
304
305     if (!eth_type_mpls(ethtype)) {
306         return;
307     }
308
309     if (!is_mpls(packet)) {
310         /* Set MPLS label stack offset. */
311         packet->l2_5_ofs = packet->l3_ofs;
312     }
313
314     set_ethertype(packet, ethtype);
315
316     /* Push new MPLS shim header onto packet. */
317     len = packet->l2_5_ofs;
318     header = dp_packet_resize_l2_5(packet, MPLS_HLEN);
319     memmove(header, header + MPLS_HLEN, len);
320     memcpy(header + len, &lse, sizeof lse);
321 }
322
323 /* If 'packet' is an MPLS packet, removes its outermost MPLS label stack entry.
324  * If the label that was removed was the only MPLS label, changes 'packet''s
325  * Ethertype to 'ethtype' (which ordinarily should not be an MPLS
326  * Ethertype). */
327 void
328 pop_mpls(struct dp_packet *packet, ovs_be16 ethtype)
329 {
330     if (is_mpls(packet)) {
331         struct mpls_hdr *mh = dp_packet_l2_5(packet);
332         size_t len = packet->l2_5_ofs;
333
334         set_ethertype(packet, ethtype);
335         if (get_16aligned_be32(&mh->mpls_lse) & htonl(MPLS_BOS_MASK)) {
336             dp_packet_set_l2_5(packet, NULL);
337         }
338         /* Shift the l2 header forward. */
339         memmove((char*)dp_packet_data(packet) + MPLS_HLEN, dp_packet_data(packet), len);
340         dp_packet_resize_l2_5(packet, -MPLS_HLEN);
341     }
342 }
343
344 /* Converts hex digits in 'hex' to an Ethernet packet in '*packetp'.  The
345  * caller must free '*packetp'.  On success, returns NULL.  On failure, returns
346  * an error message and stores NULL in '*packetp'.
347  *
348  * Aligns the L3 header of '*packetp' on a 32-bit boundary. */
349 const char *
350 eth_from_hex(const char *hex, struct dp_packet **packetp)
351 {
352     struct dp_packet *packet;
353
354     /* Use 2 bytes of headroom to 32-bit align the L3 header. */
355     packet = *packetp = dp_packet_new_with_headroom(strlen(hex) / 2, 2);
356
357     if (dp_packet_put_hex(packet, hex, NULL)[0] != '\0') {
358         dp_packet_delete(packet);
359         *packetp = NULL;
360         return "Trailing garbage in packet data";
361     }
362
363     if (dp_packet_size(packet) < ETH_HEADER_LEN) {
364         dp_packet_delete(packet);
365         *packetp = NULL;
366         return "Packet data too short for Ethernet";
367     }
368
369     return NULL;
370 }
371
372 void
373 eth_format_masked(const uint8_t eth[ETH_ADDR_LEN],
374                   const uint8_t mask[ETH_ADDR_LEN], struct ds *s)
375 {
376     ds_put_format(s, ETH_ADDR_FMT, ETH_ADDR_ARGS(eth));
377     if (mask && !eth_mask_is_exact(mask)) {
378         ds_put_format(s, "/"ETH_ADDR_FMT, ETH_ADDR_ARGS(mask));
379     }
380 }
381
382 void
383 eth_addr_bitand(const uint8_t src[ETH_ADDR_LEN],
384                 const uint8_t mask[ETH_ADDR_LEN],
385                 uint8_t dst[ETH_ADDR_LEN])
386 {
387     int i;
388
389     for (i = 0; i < ETH_ADDR_LEN; i++) {
390         dst[i] = src[i] & mask[i];
391     }
392 }
393
394 /* Given the IP netmask 'netmask', returns the number of bits of the IP address
395  * that it specifies, that is, the number of 1-bits in 'netmask'.
396  *
397  * If 'netmask' is not a CIDR netmask (see ip_is_cidr()), the return value will
398  * still be in the valid range but isn't otherwise meaningful. */
399 int
400 ip_count_cidr_bits(ovs_be32 netmask)
401 {
402     return 32 - ctz32(ntohl(netmask));
403 }
404
405 void
406 ip_format_masked(ovs_be32 ip, ovs_be32 mask, struct ds *s)
407 {
408     ds_put_format(s, IP_FMT, IP_ARGS(ip));
409     if (mask != OVS_BE32_MAX) {
410         if (ip_is_cidr(mask)) {
411             ds_put_format(s, "/%d", ip_count_cidr_bits(mask));
412         } else {
413             ds_put_format(s, "/"IP_FMT, IP_ARGS(mask));
414         }
415     }
416 }
417
418
419 /* Stores the string representation of the IPv6 address 'addr' into the
420  * character array 'addr_str', which must be at least INET6_ADDRSTRLEN
421  * bytes long. */
422 void
423 format_ipv6_addr(char *addr_str, const struct in6_addr *addr)
424 {
425     inet_ntop(AF_INET6, addr, addr_str, INET6_ADDRSTRLEN);
426 }
427
428 void
429 print_ipv6_addr(struct ds *string, const struct in6_addr *addr)
430 {
431     char *dst;
432
433     ds_reserve(string, string->length + INET6_ADDRSTRLEN);
434
435     dst = string->string + string->length;
436     format_ipv6_addr(dst, addr);
437     string->length += strlen(dst);
438 }
439
440 void
441 print_ipv6_mapped(struct ds *s, const struct in6_addr *addr)
442 {
443     if (IN6_IS_ADDR_V4MAPPED(addr)) {
444         ds_put_format(s, IP_FMT, addr->s6_addr[12], addr->s6_addr[13],
445                                  addr->s6_addr[14], addr->s6_addr[15]);
446     } else {
447         print_ipv6_addr(s, addr);
448     }
449 }
450
451 void
452 print_ipv6_masked(struct ds *s, const struct in6_addr *addr,
453                   const struct in6_addr *mask)
454 {
455     print_ipv6_addr(s, addr);
456     if (mask && !ipv6_mask_is_exact(mask)) {
457         if (ipv6_is_cidr(mask)) {
458             int cidr_bits = ipv6_count_cidr_bits(mask);
459             ds_put_format(s, "/%d", cidr_bits);
460         } else {
461             ds_put_char(s, '/');
462             print_ipv6_addr(s, mask);
463         }
464     }
465 }
466
467 struct in6_addr ipv6_addr_bitand(const struct in6_addr *a,
468                                  const struct in6_addr *b)
469 {
470     int i;
471     struct in6_addr dst;
472
473 #ifdef s6_addr32
474     for (i=0; i<4; i++) {
475         dst.s6_addr32[i] = a->s6_addr32[i] & b->s6_addr32[i];
476     }
477 #else
478     for (i=0; i<16; i++) {
479         dst.s6_addr[i] = a->s6_addr[i] & b->s6_addr[i];
480     }
481 #endif
482
483     return dst;
484 }
485
486 /* Returns an in6_addr consisting of 'mask' high-order 1-bits and 128-N
487  * low-order 0-bits. */
488 struct in6_addr
489 ipv6_create_mask(int mask)
490 {
491     struct in6_addr netmask;
492     uint8_t *netmaskp = &netmask.s6_addr[0];
493
494     memset(&netmask, 0, sizeof netmask);
495     while (mask > 8) {
496         *netmaskp = 0xff;
497         netmaskp++;
498         mask -= 8;
499     }
500
501     if (mask) {
502         *netmaskp = 0xff << (8 - mask);
503     }
504
505     return netmask;
506 }
507
508 /* Given the IPv6 netmask 'netmask', returns the number of bits of the IPv6
509  * address that it specifies, that is, the number of 1-bits in 'netmask'.
510  * 'netmask' must be a CIDR netmask (see ipv6_is_cidr()).
511  *
512  * If 'netmask' is not a CIDR netmask (see ipv6_is_cidr()), the return value
513  * will still be in the valid range but isn't otherwise meaningful. */
514 int
515 ipv6_count_cidr_bits(const struct in6_addr *netmask)
516 {
517     int i;
518     int count = 0;
519     const uint8_t *netmaskp = &netmask->s6_addr[0];
520
521     for (i=0; i<16; i++) {
522         if (netmaskp[i] == 0xff) {
523             count += 8;
524         } else {
525             uint8_t nm;
526
527             for(nm = netmaskp[i]; nm; nm <<= 1) {
528                 count++;
529             }
530             break;
531         }
532
533     }
534
535     return count;
536 }
537
538 /* Returns true if 'netmask' is a CIDR netmask, that is, if it consists of N
539  * high-order 1-bits and 128-N low-order 0-bits. */
540 bool
541 ipv6_is_cidr(const struct in6_addr *netmask)
542 {
543     const uint8_t *netmaskp = &netmask->s6_addr[0];
544     int i;
545
546     for (i=0; i<16; i++) {
547         if (netmaskp[i] != 0xff) {
548             uint8_t x = ~netmaskp[i];
549             if (x & (x + 1)) {
550                 return false;
551             }
552             while (++i < 16) {
553                 if (netmaskp[i]) {
554                     return false;
555                 }
556             }
557         }
558     }
559
560     return true;
561 }
562
563 /* Populates 'b' with an Ethernet II packet headed with the given 'eth_dst',
564  * 'eth_src' and 'eth_type' parameters.  A payload of 'size' bytes is allocated
565  * in 'b' and returned.  This payload may be populated with appropriate
566  * information by the caller.  Sets 'b''s 'frame' pointer and 'l3' offset to
567  * the Ethernet header and payload respectively.  Aligns b->l3 on a 32-bit
568  * boundary.
569  *
570  * The returned packet has enough headroom to insert an 802.1Q VLAN header if
571  * desired. */
572 void *
573 eth_compose(struct dp_packet *b, const uint8_t eth_dst[ETH_ADDR_LEN],
574             const uint8_t eth_src[ETH_ADDR_LEN], uint16_t eth_type,
575             size_t size)
576 {
577     void *data;
578     struct eth_header *eth;
579
580     dp_packet_clear(b);
581
582     /* The magic 2 here ensures that the L3 header (when it is added later)
583      * will be 32-bit aligned. */
584     dp_packet_prealloc_tailroom(b, 2 + ETH_HEADER_LEN + VLAN_HEADER_LEN + size);
585     dp_packet_reserve(b, 2 + VLAN_HEADER_LEN);
586     eth = dp_packet_put_uninit(b, ETH_HEADER_LEN);
587     data = dp_packet_put_uninit(b, size);
588
589     memcpy(eth->eth_dst, eth_dst, ETH_ADDR_LEN);
590     memcpy(eth->eth_src, eth_src, ETH_ADDR_LEN);
591     eth->eth_type = htons(eth_type);
592
593     dp_packet_reset_offsets(b);
594     dp_packet_set_l3(b, data);
595
596     return data;
597 }
598
599 static void
600 packet_set_ipv4_addr(struct dp_packet *packet,
601                      ovs_16aligned_be32 *addr, ovs_be32 new_addr)
602 {
603     struct ip_header *nh = dp_packet_l3(packet);
604     ovs_be32 old_addr = get_16aligned_be32(addr);
605     size_t l4_size = dp_packet_l4_size(packet);
606
607     if (nh->ip_proto == IPPROTO_TCP && l4_size >= TCP_HEADER_LEN) {
608         struct tcp_header *th = dp_packet_l4(packet);
609
610         th->tcp_csum = recalc_csum32(th->tcp_csum, old_addr, new_addr);
611     } else if (nh->ip_proto == IPPROTO_UDP && l4_size >= UDP_HEADER_LEN ) {
612         struct udp_header *uh = dp_packet_l4(packet);
613
614         if (uh->udp_csum) {
615             uh->udp_csum = recalc_csum32(uh->udp_csum, old_addr, new_addr);
616             if (!uh->udp_csum) {
617                 uh->udp_csum = htons(0xffff);
618             }
619         }
620     }
621     nh->ip_csum = recalc_csum32(nh->ip_csum, old_addr, new_addr);
622     put_16aligned_be32(addr, new_addr);
623 }
624
625 /* Returns true, if packet contains at least one routing header where
626  * segements_left > 0.
627  *
628  * This function assumes that L3 and L4 offsets are set in the packet. */
629 static bool
630 packet_rh_present(struct dp_packet *packet)
631 {
632     const struct ovs_16aligned_ip6_hdr *nh;
633     int nexthdr;
634     size_t len;
635     size_t remaining;
636     uint8_t *data = dp_packet_l3(packet);
637
638     remaining = packet->l4_ofs - packet->l3_ofs;
639
640     if (remaining < sizeof *nh) {
641         return false;
642     }
643     nh = ALIGNED_CAST(struct ovs_16aligned_ip6_hdr *, data);
644     data += sizeof *nh;
645     remaining -= sizeof *nh;
646     nexthdr = nh->ip6_nxt;
647
648     while (1) {
649         if ((nexthdr != IPPROTO_HOPOPTS)
650                 && (nexthdr != IPPROTO_ROUTING)
651                 && (nexthdr != IPPROTO_DSTOPTS)
652                 && (nexthdr != IPPROTO_AH)
653                 && (nexthdr != IPPROTO_FRAGMENT)) {
654             /* It's either a terminal header (e.g., TCP, UDP) or one we
655              * don't understand.  In either case, we're done with the
656              * packet, so use it to fill in 'nw_proto'. */
657             break;
658         }
659
660         /* We only verify that at least 8 bytes of the next header are
661          * available, but many of these headers are longer.  Ensure that
662          * accesses within the extension header are within those first 8
663          * bytes. All extension headers are required to be at least 8
664          * bytes. */
665         if (remaining < 8) {
666             return false;
667         }
668
669         if (nexthdr == IPPROTO_AH) {
670             /* A standard AH definition isn't available, but the fields
671              * we care about are in the same location as the generic
672              * option header--only the header length is calculated
673              * differently. */
674             const struct ip6_ext *ext_hdr = (struct ip6_ext *)data;
675
676             nexthdr = ext_hdr->ip6e_nxt;
677             len = (ext_hdr->ip6e_len + 2) * 4;
678         } else if (nexthdr == IPPROTO_FRAGMENT) {
679             const struct ovs_16aligned_ip6_frag *frag_hdr
680                 = ALIGNED_CAST(struct ovs_16aligned_ip6_frag *, data);
681
682             nexthdr = frag_hdr->ip6f_nxt;
683             len = sizeof *frag_hdr;
684         } else if (nexthdr == IPPROTO_ROUTING) {
685             const struct ip6_rthdr *rh = (struct ip6_rthdr *)data;
686
687             if (rh->ip6r_segleft > 0) {
688                 return true;
689             }
690
691             nexthdr = rh->ip6r_nxt;
692             len = (rh->ip6r_len + 1) * 8;
693         } else {
694             const struct ip6_ext *ext_hdr = (struct ip6_ext *)data;
695
696             nexthdr = ext_hdr->ip6e_nxt;
697             len = (ext_hdr->ip6e_len + 1) * 8;
698         }
699
700         if (remaining < len) {
701             return false;
702         }
703         remaining -= len;
704         data += len;
705     }
706
707     return false;
708 }
709
710 static void
711 packet_update_csum128(struct dp_packet *packet, uint8_t proto,
712                      ovs_16aligned_be32 addr[4], const ovs_be32 new_addr[4])
713 {
714     size_t l4_size = dp_packet_l4_size(packet);
715
716     if (proto == IPPROTO_TCP && l4_size >= TCP_HEADER_LEN) {
717         struct tcp_header *th = dp_packet_l4(packet);
718
719         th->tcp_csum = recalc_csum128(th->tcp_csum, addr, new_addr);
720     } else if (proto == IPPROTO_UDP && l4_size >= UDP_HEADER_LEN) {
721         struct udp_header *uh = dp_packet_l4(packet);
722
723         if (uh->udp_csum) {
724             uh->udp_csum = recalc_csum128(uh->udp_csum, addr, new_addr);
725             if (!uh->udp_csum) {
726                 uh->udp_csum = htons(0xffff);
727             }
728         }
729     } else if (proto == IPPROTO_ICMPV6 &&
730                l4_size >= sizeof(struct icmp6_header)) {
731         struct icmp6_header *icmp = dp_packet_l4(packet);
732
733         icmp->icmp6_cksum = recalc_csum128(icmp->icmp6_cksum, addr, new_addr);
734     }
735 }
736
737 static void
738 packet_set_ipv6_addr(struct dp_packet *packet, uint8_t proto,
739                      ovs_16aligned_be32 addr[4], const ovs_be32 new_addr[4],
740                      bool recalculate_csum)
741 {
742     if (recalculate_csum) {
743         packet_update_csum128(packet, proto, addr, new_addr);
744     }
745     memcpy(addr, new_addr, sizeof(ovs_be32[4]));
746 }
747
748 static void
749 packet_set_ipv6_flow_label(ovs_16aligned_be32 *flow_label, ovs_be32 flow_key)
750 {
751     ovs_be32 old_label = get_16aligned_be32(flow_label);
752     ovs_be32 new_label = (old_label & htonl(~IPV6_LABEL_MASK)) | flow_key;
753     put_16aligned_be32(flow_label, new_label);
754 }
755
756 static void
757 packet_set_ipv6_tc(ovs_16aligned_be32 *flow_label, uint8_t tc)
758 {
759     ovs_be32 old_label = get_16aligned_be32(flow_label);
760     ovs_be32 new_label = (old_label & htonl(0xF00FFFFF)) | htonl(tc << 20);
761     put_16aligned_be32(flow_label, new_label);
762 }
763
764 /* Modifies the IPv4 header fields of 'packet' to be consistent with 'src',
765  * 'dst', 'tos', and 'ttl'.  Updates 'packet''s L4 checksums as appropriate.
766  * 'packet' must contain a valid IPv4 packet with correctly populated l[347]
767  * markers. */
768 void
769 packet_set_ipv4(struct dp_packet *packet, ovs_be32 src, ovs_be32 dst,
770                 uint8_t tos, uint8_t ttl)
771 {
772     struct ip_header *nh = dp_packet_l3(packet);
773
774     if (get_16aligned_be32(&nh->ip_src) != src) {
775         packet_set_ipv4_addr(packet, &nh->ip_src, src);
776     }
777
778     if (get_16aligned_be32(&nh->ip_dst) != dst) {
779         packet_set_ipv4_addr(packet, &nh->ip_dst, dst);
780     }
781
782     if (nh->ip_tos != tos) {
783         uint8_t *field = &nh->ip_tos;
784
785         nh->ip_csum = recalc_csum16(nh->ip_csum, htons((uint16_t) *field),
786                                     htons((uint16_t) tos));
787         *field = tos;
788     }
789
790     if (nh->ip_ttl != ttl) {
791         uint8_t *field = &nh->ip_ttl;
792
793         nh->ip_csum = recalc_csum16(nh->ip_csum, htons(*field << 8),
794                                     htons(ttl << 8));
795         *field = ttl;
796     }
797 }
798
799 /* Modifies the IPv6 header fields of 'packet' to be consistent with 'src',
800  * 'dst', 'traffic class', and 'next hop'.  Updates 'packet''s L4 checksums as
801  * appropriate. 'packet' must contain a valid IPv6 packet with correctly
802  * populated l[34] offsets. */
803 void
804 packet_set_ipv6(struct dp_packet *packet, uint8_t proto, const ovs_be32 src[4],
805                 const ovs_be32 dst[4], uint8_t key_tc, ovs_be32 key_fl,
806                 uint8_t key_hl)
807 {
808     struct ovs_16aligned_ip6_hdr *nh = dp_packet_l3(packet);
809
810     if (memcmp(&nh->ip6_src, src, sizeof(ovs_be32[4]))) {
811         packet_set_ipv6_addr(packet, proto, nh->ip6_src.be32, src, true);
812     }
813
814     if (memcmp(&nh->ip6_dst, dst, sizeof(ovs_be32[4]))) {
815         packet_set_ipv6_addr(packet, proto, nh->ip6_dst.be32, dst,
816                              !packet_rh_present(packet));
817     }
818
819     packet_set_ipv6_tc(&nh->ip6_flow, key_tc);
820
821     packet_set_ipv6_flow_label(&nh->ip6_flow, key_fl);
822
823     nh->ip6_hlim = key_hl;
824 }
825
826 static void
827 packet_set_port(ovs_be16 *port, ovs_be16 new_port, ovs_be16 *csum)
828 {
829     if (*port != new_port) {
830         *csum = recalc_csum16(*csum, *port, new_port);
831         *port = new_port;
832     }
833 }
834
835 /* Sets the TCP source and destination port ('src' and 'dst' respectively) of
836  * the TCP header contained in 'packet'.  'packet' must be a valid TCP packet
837  * with its l4 offset properly populated. */
838 void
839 packet_set_tcp_port(struct dp_packet *packet, ovs_be16 src, ovs_be16 dst)
840 {
841     struct tcp_header *th = dp_packet_l4(packet);
842
843     packet_set_port(&th->tcp_src, src, &th->tcp_csum);
844     packet_set_port(&th->tcp_dst, dst, &th->tcp_csum);
845 }
846
847 /* Sets the UDP source and destination port ('src' and 'dst' respectively) of
848  * the UDP header contained in 'packet'.  'packet' must be a valid UDP packet
849  * with its l4 offset properly populated. */
850 void
851 packet_set_udp_port(struct dp_packet *packet, ovs_be16 src, ovs_be16 dst)
852 {
853     struct udp_header *uh = dp_packet_l4(packet);
854
855     if (uh->udp_csum) {
856         packet_set_port(&uh->udp_src, src, &uh->udp_csum);
857         packet_set_port(&uh->udp_dst, dst, &uh->udp_csum);
858
859         if (!uh->udp_csum) {
860             uh->udp_csum = htons(0xffff);
861         }
862     } else {
863         uh->udp_src = src;
864         uh->udp_dst = dst;
865     }
866 }
867
868 /* Sets the SCTP source and destination port ('src' and 'dst' respectively) of
869  * the SCTP header contained in 'packet'.  'packet' must be a valid SCTP packet
870  * with its l4 offset properly populated. */
871 void
872 packet_set_sctp_port(struct dp_packet *packet, ovs_be16 src, ovs_be16 dst)
873 {
874     struct sctp_header *sh = dp_packet_l4(packet);
875     ovs_be32 old_csum, old_correct_csum, new_csum;
876     uint16_t tp_len = dp_packet_l4_size(packet);
877
878     old_csum = get_16aligned_be32(&sh->sctp_csum);
879     put_16aligned_be32(&sh->sctp_csum, 0);
880     old_correct_csum = crc32c((void *)sh, tp_len);
881
882     sh->sctp_src = src;
883     sh->sctp_dst = dst;
884
885     new_csum = crc32c((void *)sh, tp_len);
886     put_16aligned_be32(&sh->sctp_csum, old_csum ^ old_correct_csum ^ new_csum);
887 }
888
889 void
890 packet_set_nd(struct dp_packet *packet, const ovs_be32 target[4],
891               const uint8_t sll[ETH_ADDR_LEN],
892               const uint8_t tll[ETH_ADDR_LEN]) {
893     struct ovs_nd_msg *ns;
894     struct ovs_nd_opt *nd_opt;
895     int bytes_remain = dp_packet_l4_size(packet);
896
897     if (OVS_UNLIKELY(bytes_remain < sizeof(*ns))) {
898         return;
899     }
900
901     ns = dp_packet_l4(packet);
902     nd_opt = &ns->options[0];
903     bytes_remain -= sizeof(*ns);
904
905     if (memcmp(&ns->target, target, sizeof(ovs_be32[4]))) {
906         packet_set_ipv6_addr(packet, IPPROTO_ICMPV6,
907                              ns->target.be32,
908                              target, true);
909     }
910
911     while (bytes_remain >= ND_OPT_LEN && nd_opt->nd_opt_len != 0) {
912         if (nd_opt->nd_opt_type == ND_OPT_SOURCE_LINKADDR
913             && nd_opt->nd_opt_len == 1) {
914             if (memcmp(nd_opt->nd_opt_data, sll, ETH_ADDR_LEN)) {
915                 ovs_be16 *csum = &(ns->icmph.icmp6_cksum);
916
917                 *csum = recalc_csum48(*csum, nd_opt->nd_opt_data, sll);
918                 memcpy(nd_opt->nd_opt_data, sll, ETH_ADDR_LEN);
919             }
920
921             /* A packet can only contain one SLL or TLL option */
922             break;
923         } else if (nd_opt->nd_opt_type == ND_OPT_TARGET_LINKADDR
924                    && nd_opt->nd_opt_len == 1) {
925             if (memcmp(nd_opt->nd_opt_data, tll, ETH_ADDR_LEN)) {
926                 ovs_be16 *csum = &(ns->icmph.icmp6_cksum);
927
928                 *csum = recalc_csum48(*csum, nd_opt->nd_opt_data, tll);
929                 memcpy(nd_opt->nd_opt_data, tll, ETH_ADDR_LEN);
930             }
931
932             /* A packet can only contain one SLL or TLL option */
933             break;
934         }
935
936         nd_opt += nd_opt->nd_opt_len;
937         bytes_remain -= nd_opt->nd_opt_len * ND_OPT_LEN;
938     }
939 }
940
941 const char *
942 packet_tcp_flag_to_string(uint32_t flag)
943 {
944     switch (flag) {
945     case TCP_FIN:
946         return "fin";
947     case TCP_SYN:
948         return "syn";
949     case TCP_RST:
950         return "rst";
951     case TCP_PSH:
952         return "psh";
953     case TCP_ACK:
954         return "ack";
955     case TCP_URG:
956         return "urg";
957     case TCP_ECE:
958         return "ece";
959     case TCP_CWR:
960         return "cwr";
961     case TCP_NS:
962         return "ns";
963     case 0x200:
964         return "[200]";
965     case 0x400:
966         return "[400]";
967     case 0x800:
968         return "[800]";
969     default:
970         return NULL;
971     }
972 }
973
974 /* Appends a string representation of the TCP flags value 'tcp_flags'
975  * (e.g. from struct flow.tcp_flags or obtained via TCP_FLAGS) to 's', in the
976  * format used by tcpdump. */
977 void
978 packet_format_tcp_flags(struct ds *s, uint16_t tcp_flags)
979 {
980     if (!tcp_flags) {
981         ds_put_cstr(s, "none");
982         return;
983     }
984
985     if (tcp_flags & TCP_SYN) {
986         ds_put_char(s, 'S');
987     }
988     if (tcp_flags & TCP_FIN) {
989         ds_put_char(s, 'F');
990     }
991     if (tcp_flags & TCP_PSH) {
992         ds_put_char(s, 'P');
993     }
994     if (tcp_flags & TCP_RST) {
995         ds_put_char(s, 'R');
996     }
997     if (tcp_flags & TCP_URG) {
998         ds_put_char(s, 'U');
999     }
1000     if (tcp_flags & TCP_ACK) {
1001         ds_put_char(s, '.');
1002     }
1003     if (tcp_flags & TCP_ECE) {
1004         ds_put_cstr(s, "E");
1005     }
1006     if (tcp_flags & TCP_CWR) {
1007         ds_put_cstr(s, "C");
1008     }
1009     if (tcp_flags & TCP_NS) {
1010         ds_put_cstr(s, "N");
1011     }
1012     if (tcp_flags & 0x200) {
1013         ds_put_cstr(s, "[200]");
1014     }
1015     if (tcp_flags & 0x400) {
1016         ds_put_cstr(s, "[400]");
1017     }
1018     if (tcp_flags & 0x800) {
1019         ds_put_cstr(s, "[800]");
1020     }
1021 }
1022
1023 #define ARP_PACKET_SIZE  (2 + ETH_HEADER_LEN + VLAN_HEADER_LEN + \
1024                           ARP_ETH_HEADER_LEN)
1025
1026 /* Clears 'b' and replaces its contents by an ARP frame with the specified
1027  * 'arp_op', 'arp_sha', 'arp_tha', 'arp_spa', and 'arp_tpa'.  The outer
1028  * Ethernet frame is initialized with Ethernet source 'arp_sha' and destination
1029  * 'arp_tha', except that destination ff:ff:ff:ff:ff:ff is used instead if
1030  * 'broadcast' is true. */
1031 void
1032 compose_arp(struct dp_packet *b, uint16_t arp_op,
1033             const uint8_t arp_sha[ETH_ADDR_LEN],
1034             const uint8_t arp_tha[ETH_ADDR_LEN], bool broadcast,
1035             ovs_be32 arp_spa, ovs_be32 arp_tpa)
1036 {
1037     struct eth_header *eth;
1038     struct arp_eth_header *arp;
1039
1040     dp_packet_clear(b);
1041     dp_packet_prealloc_tailroom(b, ARP_PACKET_SIZE);
1042     dp_packet_reserve(b, 2 + VLAN_HEADER_LEN);
1043
1044     eth = dp_packet_put_uninit(b, sizeof *eth);
1045     memcpy(eth->eth_dst, broadcast ? eth_addr_broadcast : arp_tha,
1046            ETH_ADDR_LEN);
1047     memcpy(eth->eth_src, arp_sha, ETH_ADDR_LEN);
1048     eth->eth_type = htons(ETH_TYPE_ARP);
1049
1050     arp = dp_packet_put_uninit(b, sizeof *arp);
1051     arp->ar_hrd = htons(ARP_HRD_ETHERNET);
1052     arp->ar_pro = htons(ARP_PRO_IP);
1053     arp->ar_hln = sizeof arp->ar_sha;
1054     arp->ar_pln = sizeof arp->ar_spa;
1055     arp->ar_op = htons(arp_op);
1056     memcpy(arp->ar_sha, arp_sha, ETH_ADDR_LEN);
1057     memcpy(arp->ar_tha, arp_tha, ETH_ADDR_LEN);
1058
1059     put_16aligned_be32(&arp->ar_spa, arp_spa);
1060     put_16aligned_be32(&arp->ar_tpa, arp_tpa);
1061
1062     dp_packet_reset_offsets(b);
1063     dp_packet_set_l3(b, arp);
1064 }
1065
1066 uint32_t
1067 packet_csum_pseudoheader(const struct ip_header *ip)
1068 {
1069     uint32_t partial = 0;
1070
1071     partial = csum_add32(partial, get_16aligned_be32(&ip->ip_src));
1072     partial = csum_add32(partial, get_16aligned_be32(&ip->ip_dst));
1073     partial = csum_add16(partial, htons(ip->ip_proto));
1074     partial = csum_add16(partial, htons(ntohs(ip->ip_tot_len) -
1075                                         IP_IHL(ip->ip_ihl_ver) * 4));
1076
1077     return partial;
1078 }