]> git.proxmox.com Git - mirror_ovs.git/blame - lib/packets.c
ofproto: Remove obsolete comment and assertion.
[mirror_ovs.git] / lib / packets.c
CommitLineData
b9e8b45a 1/*
48cecbdc 2 * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
b9e8b45a
BP
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"
d31f1109 19#include <arpa/inet.h>
6ca00f6f 20#include <sys/socket.h>
b9e8b45a 21#include <netinet/in.h>
bc7a5acd 22#include <netinet/ip6.h>
76343538 23#include <stdlib.h>
d31f1109 24#include "byte-order.h"
c97664b3 25#include "csum.h"
c6bcb685 26#include "crc32c.h"
12113c39 27#include "flow.h"
7d48a4cc 28#include "hmap.h"
d31f1109 29#include "dynamic-string.h"
b9e8b45a 30#include "ofpbuf.h"
8c45d00f 31#include "ovs-thread.h"
b9e8b45a 32
d31f1109
JP
33const struct in6_addr in6addr_exact = IN6ADDR_EXACT_INIT;
34
093ca5b3
BP
35/* Parses 's' as a 16-digit hexadecimal number representing a datapath ID. On
36 * success stores the dpid into '*dpidp' and returns true, on failure stores 0
37 * into '*dpidp' and returns false.
38 *
39 * Rejects an all-zeros dpid as invalid. */
76343538
BP
40bool
41dpid_from_string(const char *s, uint64_t *dpidp)
42{
b123cc3c 43 *dpidp = (strlen(s) == 16 && strspn(s, "0123456789abcdefABCDEF") == 16
093ca5b3 44 ? strtoull(s, NULL, 16)
76343538
BP
45 : 0);
46 return *dpidp != 0;
47}
48
7d48a4cc
BP
49/* Returns true if 'ea' is a reserved address, that a bridge must never
50 * forward, false otherwise.
05be4e2c
EJ
51 *
52 * If you change this function's behavior, please update corresponding
53 * documentation in vswitch.xml at the same time. */
54bool
55eth_addr_is_reserved(const uint8_t ea[ETH_ADDR_LEN])
56{
7d48a4cc
BP
57 struct eth_addr_node {
58 struct hmap_node hmap_node;
8c45d00f 59 const uint64_t ea64;
05be4e2c
EJ
60 };
61
7d48a4cc
BP
62 static struct eth_addr_node nodes[] = {
63 /* STP, IEEE pause frames, and other reserved protocols. */
f0ac9da9
BP
64 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000000ULL },
65 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000001ULL },
66 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000002ULL },
67 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000003ULL },
68 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000004ULL },
69 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000005ULL },
70 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000006ULL },
71 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000007ULL },
72 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000008ULL },
73 { HMAP_NODE_NULL_INITIALIZER, 0x0180c2000009ULL },
74 { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000aULL },
75 { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000bULL },
76 { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000cULL },
77 { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000dULL },
78 { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000eULL },
79 { HMAP_NODE_NULL_INITIALIZER, 0x0180c200000fULL },
7d48a4cc
BP
80
81 /* Extreme protocols. */
82 { HMAP_NODE_NULL_INITIALIZER, 0x00e02b000000ULL }, /* EDP. */
83 { HMAP_NODE_NULL_INITIALIZER, 0x00e02b000004ULL }, /* EAPS. */
84 { HMAP_NODE_NULL_INITIALIZER, 0x00e02b000006ULL }, /* EAPS. */
85
86 /* Cisco protocols. */
87 { HMAP_NODE_NULL_INITIALIZER, 0x01000c000000ULL }, /* ISL. */
88 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccccULL }, /* PAgP, UDLD, CDP,
89 * DTP, VTP. */
90 { HMAP_NODE_NULL_INITIALIZER, 0x01000ccccccdULL }, /* PVST+. */
91 { HMAP_NODE_NULL_INITIALIZER, 0x01000ccdcdcdULL }, /* STP Uplink Fast,
92 * FlexLink. */
93
94 /* Cisco CFM. */
95 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc0ULL },
96 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc1ULL },
97 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc2ULL },
98 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc3ULL },
99 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc4ULL },
100 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc5ULL },
101 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc6ULL },
102 { HMAP_NODE_NULL_INITIALIZER, 0x01000cccccc7ULL },
103 };
05be4e2c 104
8c45d00f 105 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
7d48a4cc 106 struct eth_addr_node *node;
8c45d00f 107 static struct hmap addrs;
7d48a4cc 108 uint64_t ea64;
05be4e2c 109
8c45d00f
BP
110 if (ovsthread_once_start(&once)) {
111 hmap_init(&addrs);
7d48a4cc
BP
112 for (node = nodes; node < &nodes[ARRAY_SIZE(nodes)]; node++) {
113 hmap_insert(&addrs, &node->hmap_node,
114 hash_2words(node->ea64, node->ea64 >> 32));
115 }
8c45d00f 116 ovsthread_once_done(&once);
7d48a4cc 117 }
05be4e2c 118
7d48a4cc
BP
119 ea64 = eth_addr_to_uint64(ea);
120 HMAP_FOR_EACH_IN_BUCKET (node, hmap_node, hash_2words(ea64, ea64 >> 32),
121 &addrs) {
122 if (node->ea64 == ea64) {
05be4e2c
EJ
123 return true;
124 }
125 }
126 return false;
127}
128
76343538
BP
129bool
130eth_addr_from_string(const char *s, uint8_t ea[ETH_ADDR_LEN])
131{
132 if (sscanf(s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(ea))
133 == ETH_ADDR_SCAN_COUNT) {
134 return true;
135 } else {
136 memset(ea, 0, ETH_ADDR_LEN);
137 return false;
138 }
139}
140
38f7147c 141/* Fills 'b' with a Reverse ARP packet with Ethernet source address 'eth_src'.
b9e8b45a 142 * This function is used by Open vSwitch to compose packets in cases where
38f7147c
EJ
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. */
b9e8b45a 147void
2ea838ac 148compose_rarp(struct ofpbuf *b, const uint8_t eth_src[ETH_ADDR_LEN])
b9e8b45a 149{
38f7147c 150 struct eth_header *eth;
7cb57d10 151 struct arp_eth_header *arp;
b9e8b45a 152
38f7147c
EJ
153 ofpbuf_clear(b);
154 ofpbuf_prealloc_tailroom(b, ETH_HEADER_LEN + VLAN_HEADER_LEN
7cb57d10 155 + ARP_ETH_HEADER_LEN);
38f7147c
EJ
156 ofpbuf_reserve(b, VLAN_HEADER_LEN);
157 eth = ofpbuf_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
7cb57d10
EJ
162 arp = ofpbuf_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 arp->ar_spa = htonl(0);
170 memcpy(arp->ar_tha, eth_src, ETH_ADDR_LEN);
171 arp->ar_tpa = htonl(0);
b9e8b45a 172}
d31f1109 173
d9065a90 174/* Insert VLAN header according to given TCI. Packet passed must be Ethernet
2f4ca41b 175 * packet. Ignores the CFI bit of 'tci' using 0 instead.
7c66b273
BP
176 *
177 * Also sets 'packet->l2' to point to the new Ethernet header. */
178void
d9065a90 179eth_push_vlan(struct ofpbuf *packet, ovs_be16 tci)
7c66b273
BP
180{
181 struct eth_header *eh = packet->data;
182 struct vlan_eth_header *veh;
183
d9065a90
PS
184 /* Insert new 802.1Q header. */
185 struct vlan_eth_header tmp;
186 memcpy(tmp.veth_dst, eh->eth_dst, ETH_ADDR_LEN);
187 memcpy(tmp.veth_src, eh->eth_src, ETH_ADDR_LEN);
188 tmp.veth_type = htons(ETH_TYPE_VLAN);
2f4ca41b 189 tmp.veth_tci = tci & htons(~VLAN_CFI);
d9065a90
PS
190 tmp.veth_next_type = eh->eth_type;
191
192 veh = ofpbuf_push_uninit(packet, VLAN_HEADER_LEN);
193 memcpy(veh, &tmp, sizeof tmp);
7c66b273 194
7c66b273
BP
195 packet->l2 = packet->data;
196}
197
f4ebc25e
BP
198/* Removes outermost VLAN header (if any is present) from 'packet'.
199 *
b02475c5
SH
200 * 'packet->l2_5' should initially point to 'packet''s outer-most MPLS header
201 * or may be NULL if there are no MPLS headers. */
f4ebc25e
BP
202void
203eth_pop_vlan(struct ofpbuf *packet)
204{
205 struct vlan_eth_header *veh = packet->l2;
206 if (packet->size >= sizeof *veh
207 && veh->veth_type == htons(ETH_TYPE_VLAN)) {
208 struct eth_header tmp;
209
210 memcpy(tmp.eth_dst, veh->veth_dst, ETH_ADDR_LEN);
211 memcpy(tmp.eth_src, veh->veth_src, ETH_ADDR_LEN);
212 tmp.eth_type = veh->veth_next_type;
213
214 ofpbuf_pull(packet, VLAN_HEADER_LEN);
215 packet->l2 = (char*)packet->l2 + VLAN_HEADER_LEN;
216 memcpy(packet->data, &tmp, sizeof tmp);
217 }
218}
219
b02475c5
SH
220/* Return depth of mpls stack.
221 *
222 * 'packet->l2_5' should initially point to 'packet''s outer-most MPLS header
223 * or may be NULL if there are no MPLS headers. */
224uint16_t
225eth_mpls_depth(const struct ofpbuf *packet)
226{
227 struct mpls_hdr *mh = packet->l2_5;
228 uint16_t depth;
229
230 if (!mh) {
231 return 0;
232 }
233
234 depth = 0;
235 while (packet->size >= ((char *)mh - (char *)packet->data) + sizeof *mh) {
236 depth++;
237 if (mh->mpls_lse & htonl(MPLS_BOS_MASK)) {
238 break;
239 }
240 mh++;
241 }
242
243 return depth;
244}
245
246/* Set ethertype of the packet. */
247void
248set_ethertype(struct ofpbuf *packet, ovs_be16 eth_type)
249{
250 struct eth_header *eh = packet->data;
251
252 if (eh->eth_type == htons(ETH_TYPE_VLAN)) {
253 ovs_be16 *p;
db5a1019
AW
254 p = ALIGNED_CAST(ovs_be16 *,
255 (char *)(packet->l2_5 ? packet->l2_5 : packet->l3) - 2);
b02475c5
SH
256 *p = eth_type;
257 } else {
258 eh->eth_type = eth_type;
259 }
260}
261
262static bool is_mpls(struct ofpbuf *packet)
263{
264 return packet->l2_5 != NULL;
265}
266
267/* Set time to live (TTL) of an MPLS label stack entry (LSE). */
b676167a 268void
b02475c5
SH
269set_mpls_lse_ttl(ovs_be32 *lse, uint8_t ttl)
270{
271 *lse &= ~htonl(MPLS_TTL_MASK);
272 *lse |= htonl((ttl << MPLS_TTL_SHIFT) & MPLS_TTL_MASK);
273}
274
275/* Set traffic class (TC) of an MPLS label stack entry (LSE). */
276void
277set_mpls_lse_tc(ovs_be32 *lse, uint8_t tc)
278{
279 *lse &= ~htonl(MPLS_TC_MASK);
280 *lse |= htonl((tc << MPLS_TC_SHIFT) & MPLS_TC_MASK);
281}
282
283/* Set label of an MPLS label stack entry (LSE). */
284void
285set_mpls_lse_label(ovs_be32 *lse, ovs_be32 label)
286{
287 *lse &= ~htonl(MPLS_LABEL_MASK);
288 *lse |= htonl((ntohl(label) << MPLS_LABEL_SHIFT) & MPLS_LABEL_MASK);
289}
290
291/* Set bottom of stack (BoS) bit of an MPLS label stack entry (LSE). */
292void
293set_mpls_lse_bos(ovs_be32 *lse, uint8_t bos)
294{
295 *lse &= ~htonl(MPLS_BOS_MASK);
296 *lse |= htonl((bos << MPLS_BOS_SHIFT) & MPLS_BOS_MASK);
297}
298
299/* Compose an MPLS label stack entry (LSE) from its components:
300 * label, traffic class (TC), time to live (TTL) and
301 * bottom of stack (BoS) bit. */
302ovs_be32
303set_mpls_lse_values(uint8_t ttl, uint8_t tc, uint8_t bos, ovs_be32 label)
304{
305 ovs_be32 lse = htonl(0);
306 set_mpls_lse_ttl(&lse, ttl);
307 set_mpls_lse_tc(&lse, tc);
308 set_mpls_lse_bos(&lse, bos);
309 set_mpls_lse_label(&lse, label);
310 return lse;
311}
312
313/* Push an new MPLS stack entry onto the MPLS stack and adjust 'packet->l2' and
314 * 'packet->l2_5' accordingly. The new entry will be the outermost entry on
315 * the stack.
316 *
317 * Previous to calling this function, 'packet->l2_5' must be set; if the MPLS
318 * label to be pushed will be the first label in 'packet', then it should be
319 * the same as 'packet->l3'. */
320static void
321push_mpls_lse(struct ofpbuf *packet, struct mpls_hdr *mh)
322{
323 char * header;
324 size_t len;
325 header = ofpbuf_push_uninit(packet, MPLS_HLEN);
326 len = (char *)packet->l2_5 - (char *)packet->l2;
327 memmove(header, packet->l2, len);
328 memcpy(header + len, mh, sizeof *mh);
329 packet->l2 = (char*)packet->l2 - MPLS_HLEN;
330 packet->l2_5 = (char*)packet->l2_5 - MPLS_HLEN;
331}
332
333/* Set MPLS label stack entry to outermost MPLS header.*/
334void
335set_mpls_lse(struct ofpbuf *packet, ovs_be32 mpls_lse)
336{
337 struct mpls_hdr *mh = packet->l2_5;
338
339 /* Packet type should be MPLS to set label stack entry. */
340 if (is_mpls(packet)) {
341 /* Update mpls label stack entry. */
342 mh->mpls_lse = mpls_lse;
343 }
344}
345
346/* Push MPLS label stack entry 'lse' onto 'packet' as the the outermost MPLS
347 * header. If 'packet' does not already have any MPLS labels, then its
348 * Ethertype is changed to 'ethtype' (which must be an MPLS Ethertype). */
349void
350push_mpls(struct ofpbuf *packet, ovs_be16 ethtype, ovs_be32 lse)
351{
352 struct mpls_hdr mh;
353
354 if (!eth_type_mpls(ethtype)) {
355 return;
356 }
357
358 if (!is_mpls(packet)) {
359 /* Set ethtype and MPLS label stack entry. */
360 set_ethertype(packet, ethtype);
361 packet->l2_5 = packet->l3;
362 }
363
364 /* Push new MPLS shim header onto packet. */
365 mh.mpls_lse = lse;
366 push_mpls_lse(packet, &mh);
367}
368
369/* If 'packet' is an MPLS packet, removes its outermost MPLS label stack entry.
370 * If the label that was removed was the only MPLS label, changes 'packet''s
371 * Ethertype to 'ethtype' (which ordinarily should not be an MPLS
372 * Ethertype). */
373void
374pop_mpls(struct ofpbuf *packet, ovs_be16 ethtype)
375{
376 struct mpls_hdr *mh = NULL;
377
378 if (is_mpls(packet)) {
379 size_t len;
380 mh = packet->l2_5;
381 len = (char*)packet->l2_5 - (char*)packet->l2;
799a91bb 382 set_ethertype(packet, ethtype);
b02475c5 383 if (mh->mpls_lse & htonl(MPLS_BOS_MASK)) {
2555b1db 384 packet->l2_5 = NULL;
b02475c5
SH
385 } else {
386 packet->l2_5 = (char*)packet->l2_5 + MPLS_HLEN;
387 }
388 /* Shift the l2 header forward. */
389 memmove((char*)packet->data + MPLS_HLEN, packet->data, len);
390 packet->size -= MPLS_HLEN;
391 packet->data = (char*)packet->data + MPLS_HLEN;
392 packet->l2 = (char*)packet->l2 + MPLS_HLEN;
393 }
394}
395
e22f1753
BP
396/* Converts hex digits in 'hex' to an Ethernet packet in '*packetp'. The
397 * caller must free '*packetp'. On success, returns NULL. On failure, returns
398 * an error message and stores NULL in '*packetp'. */
399const char *
400eth_from_hex(const char *hex, struct ofpbuf **packetp)
401{
402 struct ofpbuf *packet;
403
404 packet = *packetp = ofpbuf_new(strlen(hex) / 2);
405
406 if (ofpbuf_put_hex(packet, hex, NULL)[0] != '\0') {
407 ofpbuf_delete(packet);
408 *packetp = NULL;
409 return "Trailing garbage in packet data";
410 }
411
412 if (packet->size < ETH_HEADER_LEN) {
413 ofpbuf_delete(packet);
414 *packetp = NULL;
415 return "Packet data too short for Ethernet";
416 }
417
418 return NULL;
419}
420
3b4d8ad3
JS
421void
422eth_format_masked(const uint8_t eth[ETH_ADDR_LEN],
423 const uint8_t mask[ETH_ADDR_LEN], struct ds *s)
424{
425 ds_put_format(s, ETH_ADDR_FMT, ETH_ADDR_ARGS(eth));
73c0ce34 426 if (mask && !eth_mask_is_exact(mask)) {
3b4d8ad3
JS
427 ds_put_format(s, "/"ETH_ADDR_FMT, ETH_ADDR_ARGS(mask));
428 }
429}
430
431void
432eth_addr_bitand(const uint8_t src[ETH_ADDR_LEN],
433 const uint8_t mask[ETH_ADDR_LEN],
434 uint8_t dst[ETH_ADDR_LEN])
435{
436 int i;
437
438 for (i = 0; i < ETH_ADDR_LEN; i++) {
439 dst[i] = src[i] & mask[i];
440 }
441}
442
aad29cd1 443/* Given the IP netmask 'netmask', returns the number of bits of the IP address
c08201d6
BP
444 * that it specifies, that is, the number of 1-bits in 'netmask'.
445 *
446 * If 'netmask' is not a CIDR netmask (see ip_is_cidr()), the return value will
447 * still be in the valid range but isn't otherwise meaningful. */
aad29cd1
BP
448int
449ip_count_cidr_bits(ovs_be32 netmask)
450{
aad29cd1
BP
451 return 32 - ctz(ntohl(netmask));
452}
453
454void
455ip_format_masked(ovs_be32 ip, ovs_be32 mask, struct ds *s)
456{
ed36537e 457 ds_put_format(s, IP_FMT, IP_ARGS(ip));
aad29cd1
BP
458 if (mask != htonl(UINT32_MAX)) {
459 if (ip_is_cidr(mask)) {
460 ds_put_format(s, "/%d", ip_count_cidr_bits(mask));
461 } else {
ed36537e 462 ds_put_format(s, "/"IP_FMT, IP_ARGS(mask));
aad29cd1
BP
463 }
464 }
465}
466
467
d31f1109
JP
468/* Stores the string representation of the IPv6 address 'addr' into the
469 * character array 'addr_str', which must be at least INET6_ADDRSTRLEN
470 * bytes long. */
471void
472format_ipv6_addr(char *addr_str, const struct in6_addr *addr)
473{
474 inet_ntop(AF_INET6, addr, addr_str, INET6_ADDRSTRLEN);
475}
476
477void
478print_ipv6_addr(struct ds *string, const struct in6_addr *addr)
479{
aad29cd1
BP
480 char *dst;
481
482 ds_reserve(string, string->length + INET6_ADDRSTRLEN);
483
484 dst = string->string + string->length;
485 format_ipv6_addr(dst, addr);
486 string->length += strlen(dst);
487}
d31f1109 488
aad29cd1
BP
489void
490print_ipv6_masked(struct ds *s, const struct in6_addr *addr,
491 const struct in6_addr *mask)
492{
493 print_ipv6_addr(s, addr);
494 if (mask && !ipv6_mask_is_exact(mask)) {
495 if (ipv6_is_cidr(mask)) {
496 int cidr_bits = ipv6_count_cidr_bits(mask);
497 ds_put_format(s, "/%d", cidr_bits);
498 } else {
499 ds_put_char(s, '/');
500 print_ipv6_addr(s, mask);
501 }
502 }
d31f1109
JP
503}
504
505struct in6_addr ipv6_addr_bitand(const struct in6_addr *a,
506 const struct in6_addr *b)
507{
508 int i;
509 struct in6_addr dst;
510
511#ifdef s6_addr32
512 for (i=0; i<4; i++) {
513 dst.s6_addr32[i] = a->s6_addr32[i] & b->s6_addr32[i];
514 }
515#else
516 for (i=0; i<16; i++) {
517 dst.s6_addr[i] = a->s6_addr[i] & b->s6_addr[i];
518 }
519#endif
520
521 return dst;
522}
523
524/* Returns an in6_addr consisting of 'mask' high-order 1-bits and 128-N
525 * low-order 0-bits. */
526struct in6_addr
527ipv6_create_mask(int mask)
528{
529 struct in6_addr netmask;
530 uint8_t *netmaskp = &netmask.s6_addr[0];
531
532 memset(&netmask, 0, sizeof netmask);
533 while (mask > 8) {
534 *netmaskp = 0xff;
535 netmaskp++;
536 mask -= 8;
537 }
538
539 if (mask) {
540 *netmaskp = 0xff << (8 - mask);
541 }
542
543 return netmask;
544}
545
aad29cd1
BP
546/* Given the IPv6 netmask 'netmask', returns the number of bits of the IPv6
547 * address that it specifies, that is, the number of 1-bits in 'netmask'.
ff0b06ee
BP
548 * 'netmask' must be a CIDR netmask (see ipv6_is_cidr()).
549 *
550 * If 'netmask' is not a CIDR netmask (see ipv6_is_cidr()), the return value
551 * will still be in the valid range but isn't otherwise meaningful. */
d31f1109
JP
552int
553ipv6_count_cidr_bits(const struct in6_addr *netmask)
554{
555 int i;
556 int count = 0;
557 const uint8_t *netmaskp = &netmask->s6_addr[0];
558
d31f1109
JP
559 for (i=0; i<16; i++) {
560 if (netmaskp[i] == 0xff) {
561 count += 8;
562 } else {
563 uint8_t nm;
564
565 for(nm = netmaskp[i]; nm; nm <<= 1) {
566 count++;
567 }
568 break;
569 }
570
571 }
572
573 return count;
574}
575
d31f1109
JP
576/* Returns true if 'netmask' is a CIDR netmask, that is, if it consists of N
577 * high-order 1-bits and 128-N low-order 0-bits. */
578bool
579ipv6_is_cidr(const struct in6_addr *netmask)
580{
581 const uint8_t *netmaskp = &netmask->s6_addr[0];
582 int i;
583
584 for (i=0; i<16; i++) {
585 if (netmaskp[i] != 0xff) {
586 uint8_t x = ~netmaskp[i];
587 if (x & (x + 1)) {
588 return false;
589 }
590 while (++i < 16) {
591 if (netmaskp[i]) {
592 return false;
593 }
594 }
595 }
596 }
597
598 return true;
599}
c25c91fd 600
5de1bb5c
BP
601/* Populates 'b' with an Ethernet II packet headed with the given 'eth_dst',
602 * 'eth_src' and 'eth_type' parameters. A payload of 'size' bytes is allocated
603 * in 'b' and returned. This payload may be populated with appropriate
75a4ead1
EJ
604 * information by the caller. Sets 'b''s 'l2' and 'l3' pointers to the
605 * Ethernet header and payload respectively.
eda1f38d
BP
606 *
607 * The returned packet has enough headroom to insert an 802.1Q VLAN header if
608 * desired. */
40f78b38 609void *
5de1bb5c
BP
610eth_compose(struct ofpbuf *b, const uint8_t eth_dst[ETH_ADDR_LEN],
611 const uint8_t eth_src[ETH_ADDR_LEN], uint16_t eth_type,
612 size_t size)
c25c91fd 613{
40f78b38 614 void *data;
c25c91fd 615 struct eth_header *eth;
c25c91fd
EJ
616
617 ofpbuf_clear(b);
618
eda1f38d
BP
619 ofpbuf_prealloc_tailroom(b, ETH_HEADER_LEN + VLAN_HEADER_LEN + size);
620 ofpbuf_reserve(b, VLAN_HEADER_LEN);
40f78b38
EJ
621 eth = ofpbuf_put_uninit(b, ETH_HEADER_LEN);
622 data = ofpbuf_put_uninit(b, size);
c25c91fd 623
40f78b38 624 memcpy(eth->eth_dst, eth_dst, ETH_ADDR_LEN);
c25c91fd 625 memcpy(eth->eth_src, eth_src, ETH_ADDR_LEN);
40f78b38
EJ
626 eth->eth_type = htons(eth_type);
627
75a4ead1
EJ
628 b->l2 = eth;
629 b->l3 = data;
630
40f78b38 631 return data;
07a6cf77
EJ
632}
633
c97664b3
EJ
634static void
635packet_set_ipv4_addr(struct ofpbuf *packet, ovs_be32 *addr, ovs_be32 new_addr)
636{
637 struct ip_header *nh = packet->l3;
638
639 if (nh->ip_proto == IPPROTO_TCP && packet->l7) {
640 struct tcp_header *th = packet->l4;
641
642 th->tcp_csum = recalc_csum32(th->tcp_csum, *addr, new_addr);
643 } else if (nh->ip_proto == IPPROTO_UDP && packet->l7) {
644 struct udp_header *uh = packet->l4;
645
646 if (uh->udp_csum) {
647 uh->udp_csum = recalc_csum32(uh->udp_csum, *addr, new_addr);
648 if (!uh->udp_csum) {
649 uh->udp_csum = htons(0xffff);
650 }
651 }
652 }
653 nh->ip_csum = recalc_csum32(nh->ip_csum, *addr, new_addr);
654 *addr = new_addr;
655}
656
bc7a5acd
AA
657/* Returns true, if packet contains at least one routing header where
658 * segements_left > 0.
659 *
660 * This function assumes that L3 and L4 markers are set in the packet. */
661static bool
662packet_rh_present(struct ofpbuf *packet)
663{
664 const struct ip6_hdr *nh;
665 int nexthdr;
666 size_t len;
667 size_t remaining;
668 uint8_t *data = packet->l3;
669
670 remaining = (uint8_t *)packet->l4 - (uint8_t *)packet->l3;
671
672 if (remaining < sizeof *nh) {
673 return false;
674 }
db5a1019 675 nh = ALIGNED_CAST(struct ip6_hdr *, data);
bc7a5acd
AA
676 data += sizeof *nh;
677 remaining -= sizeof *nh;
678 nexthdr = nh->ip6_nxt;
679
680 while (1) {
681 if ((nexthdr != IPPROTO_HOPOPTS)
682 && (nexthdr != IPPROTO_ROUTING)
683 && (nexthdr != IPPROTO_DSTOPTS)
684 && (nexthdr != IPPROTO_AH)
685 && (nexthdr != IPPROTO_FRAGMENT)) {
686 /* It's either a terminal header (e.g., TCP, UDP) or one we
687 * don't understand. In either case, we're done with the
688 * packet, so use it to fill in 'nw_proto'. */
689 break;
690 }
691
692 /* We only verify that at least 8 bytes of the next header are
693 * available, but many of these headers are longer. Ensure that
694 * accesses within the extension header are within those first 8
695 * bytes. All extension headers are required to be at least 8
696 * bytes. */
697 if (remaining < 8) {
698 return false;
699 }
700
701 if (nexthdr == IPPROTO_AH) {
702 /* A standard AH definition isn't available, but the fields
703 * we care about are in the same location as the generic
704 * option header--only the header length is calculated
705 * differently. */
706 const struct ip6_ext *ext_hdr = (struct ip6_ext *)data;
707
708 nexthdr = ext_hdr->ip6e_nxt;
709 len = (ext_hdr->ip6e_len + 2) * 4;
710 } else if (nexthdr == IPPROTO_FRAGMENT) {
db5a1019
AW
711 const struct ip6_frag *frag_hdr = ALIGNED_CAST(struct ip6_frag *,
712 data);
bc7a5acd
AA
713
714 nexthdr = frag_hdr->ip6f_nxt;
715 len = sizeof *frag_hdr;
716 } else if (nexthdr == IPPROTO_ROUTING) {
717 const struct ip6_rthdr *rh = (struct ip6_rthdr *)data;
718
719 if (rh->ip6r_segleft > 0) {
720 return true;
721 }
722
723 nexthdr = rh->ip6r_nxt;
724 len = (rh->ip6r_len + 1) * 8;
725 } else {
726 const struct ip6_ext *ext_hdr = (struct ip6_ext *)data;
727
728 nexthdr = ext_hdr->ip6e_nxt;
729 len = (ext_hdr->ip6e_len + 1) * 8;
730 }
731
732 if (remaining < len) {
733 return false;
734 }
735 remaining -= len;
736 data += len;
737 }
738
739 return false;
740}
741
742static void
743packet_update_csum128(struct ofpbuf *packet, uint8_t proto,
744 ovs_be32 addr[4], const ovs_be32 new_addr[4])
745{
746 if (proto == IPPROTO_TCP && packet->l7) {
747 struct tcp_header *th = packet->l4;
748
749 th->tcp_csum = recalc_csum128(th->tcp_csum, addr, new_addr);
750 } else if (proto == IPPROTO_UDP && packet->l7) {
751 struct udp_header *uh = packet->l4;
752
753 if (uh->udp_csum) {
754 uh->udp_csum = recalc_csum128(uh->udp_csum, addr, new_addr);
755 if (!uh->udp_csum) {
756 uh->udp_csum = htons(0xffff);
757 }
758 }
759 }
760}
761
762static void
763packet_set_ipv6_addr(struct ofpbuf *packet, uint8_t proto,
764 struct in6_addr *addr, const ovs_be32 new_addr[4],
765 bool recalculate_csum)
766{
767 if (recalculate_csum) {
768 packet_update_csum128(packet, proto, (ovs_be32 *)addr, new_addr);
769 }
770 memcpy(addr, new_addr, sizeof(*addr));
771}
772
773static void
774packet_set_ipv6_flow_label(ovs_be32 *flow_label, ovs_be32 flow_key)
775{
776 *flow_label = (*flow_label & htonl(~IPV6_LABEL_MASK)) | flow_key;
777}
778
779static void
780packet_set_ipv6_tc(ovs_be32 *flow_label, uint8_t tc)
781{
782 *flow_label = (*flow_label & htonl(0xF00FFFFF)) | htonl(tc << 20);
783}
784
c97664b3
EJ
785/* Modifies the IPv4 header fields of 'packet' to be consistent with 'src',
786 * 'dst', 'tos', and 'ttl'. Updates 'packet''s L4 checksums as appropriate.
787 * 'packet' must contain a valid IPv4 packet with correctly populated l[347]
788 * markers. */
789void
790packet_set_ipv4(struct ofpbuf *packet, ovs_be32 src, ovs_be32 dst,
791 uint8_t tos, uint8_t ttl)
792{
793 struct ip_header *nh = packet->l3;
794
795 if (nh->ip_src != src) {
796 packet_set_ipv4_addr(packet, &nh->ip_src, src);
797 }
798
799 if (nh->ip_dst != dst) {
800 packet_set_ipv4_addr(packet, &nh->ip_dst, dst);
801 }
802
803 if (nh->ip_tos != tos) {
804 uint8_t *field = &nh->ip_tos;
805
806 nh->ip_csum = recalc_csum16(nh->ip_csum, htons((uint16_t) *field),
807 htons((uint16_t) tos));
808 *field = tos;
809 }
810
811 if (nh->ip_ttl != ttl) {
812 uint8_t *field = &nh->ip_ttl;
813
814 nh->ip_csum = recalc_csum16(nh->ip_csum, htons(*field << 8),
815 htons(ttl << 8));
816 *field = ttl;
817 }
818}
819
bc7a5acd
AA
820/* Modifies the IPv6 header fields of 'packet' to be consistent with 'src',
821 * 'dst', 'traffic class', and 'next hop'. Updates 'packet''s L4 checksums as
822 * appropriate. 'packet' must contain a valid IPv6 packet with correctly
823 * populated l[347] markers. */
824void
825packet_set_ipv6(struct ofpbuf *packet, uint8_t proto, const ovs_be32 src[4],
826 const ovs_be32 dst[4], uint8_t key_tc, ovs_be32 key_fl,
827 uint8_t key_hl)
828{
829 struct ip6_hdr *nh = packet->l3;
830
831 if (memcmp(&nh->ip6_src, src, sizeof(ovs_be32[4]))) {
832 packet_set_ipv6_addr(packet, proto, &nh->ip6_src, src, true);
833 }
834
835 if (memcmp(&nh->ip6_dst, dst, sizeof(ovs_be32[4]))) {
836 packet_set_ipv6_addr(packet, proto, &nh->ip6_dst, dst,
837 !packet_rh_present(packet));
838 }
839
840 packet_set_ipv6_tc(&nh->ip6_flow, key_tc);
841
842 packet_set_ipv6_flow_label(&nh->ip6_flow, key_fl);
843
844 nh->ip6_hlim = key_hl;
845}
846
c97664b3
EJ
847static void
848packet_set_port(ovs_be16 *port, ovs_be16 new_port, ovs_be16 *csum)
849{
850 if (*port != new_port) {
851 *csum = recalc_csum16(*csum, *port, new_port);
852 *port = new_port;
853 }
854}
855
856/* Sets the TCP source and destination port ('src' and 'dst' respectively) of
857 * the TCP header contained in 'packet'. 'packet' must be a valid TCP packet
858 * with its l4 marker properly populated. */
859void
860packet_set_tcp_port(struct ofpbuf *packet, ovs_be16 src, ovs_be16 dst)
861{
862 struct tcp_header *th = packet->l4;
863
864 packet_set_port(&th->tcp_src, src, &th->tcp_csum);
865 packet_set_port(&th->tcp_dst, dst, &th->tcp_csum);
866}
867
868/* Sets the UDP source and destination port ('src' and 'dst' respectively) of
869 * the UDP header contained in 'packet'. 'packet' must be a valid UDP packet
870 * with its l4 marker properly populated. */
871void
872packet_set_udp_port(struct ofpbuf *packet, ovs_be16 src, ovs_be16 dst)
873{
874 struct udp_header *uh = packet->l4;
875
876 if (uh->udp_csum) {
877 packet_set_port(&uh->udp_src, src, &uh->udp_csum);
878 packet_set_port(&uh->udp_dst, dst, &uh->udp_csum);
879
880 if (!uh->udp_csum) {
881 uh->udp_csum = htons(0xffff);
882 }
883 } else {
884 uh->udp_src = src;
885 uh->udp_dst = dst;
886 }
887}
12113c39 888
c6bcb685
JS
889/* Sets the SCTP source and destination port ('src' and 'dst' respectively) of
890 * the SCTP header contained in 'packet'. 'packet' must be a valid SCTP packet
891 * with its l4 marker properly populated. */
892void
893packet_set_sctp_port(struct ofpbuf *packet, ovs_be16 src, ovs_be16 dst)
894{
895 struct sctp_header *sh = packet->l4;
896 ovs_be32 old_csum, old_correct_csum, new_csum;
897 uint16_t tp_len = packet->size - ((uint8_t*)sh - (uint8_t*)packet->data);
898
899 old_csum = sh->sctp_csum;
900 sh->sctp_csum = 0;
901 old_correct_csum = crc32c(packet->l4, tp_len);
902
903 sh->sctp_src = src;
904 sh->sctp_dst = dst;
905
906 new_csum = crc32c(packet->l4, tp_len);
907 sh->sctp_csum = old_csum ^ old_correct_csum ^ new_csum;
908}
909
12113c39
BP
910/* If 'packet' is a TCP packet, returns the TCP flags. Otherwise, returns 0.
911 *
912 * 'flow' must be the flow corresponding to 'packet' and 'packet''s header
913 * pointers must be properly initialized (e.g. with flow_extract()). */
914uint8_t
915packet_get_tcp_flags(const struct ofpbuf *packet, const struct flow *flow)
916{
cff78c88 917 if (dl_type_is_ip_any(flow->dl_type) &&
e8c16d83 918 flow->nw_proto == IPPROTO_TCP && packet->l7) {
12113c39
BP
919 const struct tcp_header *tcp = packet->l4;
920 return TCP_FLAGS(tcp->tcp_ctl);
921 } else {
922 return 0;
923 }
924}
7393104d
BP
925
926/* Appends a string representation of the TCP flags value 'tcp_flags'
927 * (e.g. obtained via packet_get_tcp_flags() or TCP_FLAGS) to 's', in the
928 * format used by tcpdump. */
929void
930packet_format_tcp_flags(struct ds *s, uint8_t tcp_flags)
931{
932 if (!tcp_flags) {
933 ds_put_cstr(s, "none");
934 return;
935 }
936
937 if (tcp_flags & TCP_SYN) {
938 ds_put_char(s, 'S');
939 }
940 if (tcp_flags & TCP_FIN) {
941 ds_put_char(s, 'F');
942 }
943 if (tcp_flags & TCP_PSH) {
944 ds_put_char(s, 'P');
945 }
946 if (tcp_flags & TCP_RST) {
947 ds_put_char(s, 'R');
948 }
949 if (tcp_flags & TCP_URG) {
950 ds_put_char(s, 'U');
951 }
952 if (tcp_flags & TCP_ACK) {
953 ds_put_char(s, '.');
954 }
955 if (tcp_flags & 0x40) {
956 ds_put_cstr(s, "[40]");
957 }
958 if (tcp_flags & 0x80) {
959 ds_put_cstr(s, "[80]");
960 }
961}