packets: Use RARPs for learning packets.
[sliver-openvswitch.git] / lib / packets.c
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012 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 <assert.h>
20 #include <arpa/inet.h>
21 #include <sys/socket.h>
22 #include <netinet/in.h>
23 #include <stdlib.h>
24 #include "byte-order.h"
25 #include "csum.h"
26 #include "flow.h"
27 #include "dynamic-string.h"
28 #include "ofpbuf.h"
29
30 const struct in6_addr in6addr_exact = IN6ADDR_EXACT_INIT;
31
32 /* Parses 's' as a 16-digit hexadecimal number representing a datapath ID.  On
33  * success stores the dpid into '*dpidp' and returns true, on failure stores 0
34  * into '*dpidp' and returns false.
35  *
36  * Rejects an all-zeros dpid as invalid. */
37 bool
38 dpid_from_string(const char *s, uint64_t *dpidp)
39 {
40     *dpidp = (strlen(s) == 16 && strspn(s, "0123456789abcdefABCDEF") == 16
41               ? strtoull(s, NULL, 16)
42               : 0);
43     return *dpidp != 0;
44 }
45
46 /* Returns true if 'ea' is a reserved multicast address, that a bridge must
47  * never forward, false otherwise.  Includes some proprietary vendor protocols
48  * that shouldn't be forwarded as well.
49  *
50  * If you change this function's behavior, please update corresponding
51  * documentation in vswitch.xml at the same time. */
52 bool
53 eth_addr_is_reserved(const uint8_t ea[ETH_ADDR_LEN])
54 {
55     struct masked_eth_addr {
56         uint8_t ea[ETH_ADDR_LEN];
57         uint8_t mask[ETH_ADDR_LEN];
58     };
59
60     static struct masked_eth_addr mea[] = {
61         { /* STP, IEEE pause frames, and other reserved protocols. */
62             {0x01, 0x08, 0xc2, 0x00, 0x00, 0x00},
63             {0xff, 0xff, 0xff, 0xff, 0xff, 0xf0}},
64
65         { /* VRRP IPv4. */
66             {0x00, 0x00, 0x5e, 0x00, 0x01, 0x00},
67             {0xff, 0xff, 0xff, 0xff, 0xff, 0x00}},
68
69         { /* VRRP IPv6. */
70             {0x00, 0x00, 0x5e, 0x00, 0x02, 0x00},
71             {0xff, 0xff, 0xff, 0xff, 0xff, 0x00}},
72
73         { /* HSRPv1. */
74             {0x00, 0x00, 0x0c, 0x07, 0xac, 0x00},
75             {0xff, 0xff, 0xff, 0xff, 0xff, 0x00}},
76
77         { /* HSRPv2. */
78             {0x00, 0x00, 0x0c, 0x9f, 0xf0, 0x00},
79             {0xff, 0xff, 0xff, 0xff, 0xf0, 0x00}},
80
81         { /* GLBP. */
82             {0x00, 0x07, 0xb4, 0x00, 0x00, 0x00},
83             {0xff, 0xff, 0xff, 0x00, 0x00, 0x00}},
84
85         { /* Extreme Discovery Protocol. */
86             {0x00, 0xE0, 0x2B, 0x00, 0x00, 0x00},
87             {0xff, 0xff, 0xff, 0xff, 0xf0, 0x00}},
88
89         { /* Cisco Inter Switch Link. */
90             {0x01, 0x00, 0x0c, 0x00, 0x00, 0x00},
91             {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}},
92
93         { /* Cisco protocols plus others following the same pattern:
94            *
95            * CDP, VTP, DTP, PAgP  (01-00-0c-cc-cc-cc)
96            * Spanning Tree PVSTP+ (01-00-0c-cc-cc-cd)
97            * STP Uplink Fast      (01-00-0c-cd-cd-cd) */
98             {0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc},
99             {0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe}}};
100
101     size_t i;
102
103     for (i = 0; i < ARRAY_SIZE(mea); i++) {
104         if (eth_addr_equal_except(ea, mea[i].ea, mea[i].mask)) {
105             return true;
106         }
107     }
108     return false;
109 }
110
111 bool
112 eth_addr_from_string(const char *s, uint8_t ea[ETH_ADDR_LEN])
113 {
114     if (sscanf(s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(ea))
115         == ETH_ADDR_SCAN_COUNT) {
116         return true;
117     } else {
118         memset(ea, 0, ETH_ADDR_LEN);
119         return false;
120     }
121 }
122
123 /* Fills 'b' with a Reverse ARP packet with Ethernet source address 'eth_src'.
124  * This function is used by Open vSwitch to compose packets in cases where
125  * context is important but content doesn't (or shouldn't) matter.
126  *
127  * The returned packet has enough headroom to insert an 802.1Q VLAN header if
128  * desired. */
129 void
130 compose_benign_packet(struct ofpbuf *b, const uint8_t eth_src[ETH_ADDR_LEN])
131 {
132     struct eth_header *eth;
133     struct rarp_header *rarp;
134
135     ofpbuf_clear(b);
136     ofpbuf_prealloc_tailroom(b, ETH_HEADER_LEN + VLAN_HEADER_LEN
137                              + RARP_HEADER_LEN);
138     ofpbuf_reserve(b, VLAN_HEADER_LEN);
139     eth = ofpbuf_put_uninit(b, sizeof *eth);
140     memcpy(eth->eth_dst, eth_addr_broadcast, ETH_ADDR_LEN);
141     memcpy(eth->eth_src, eth_src, ETH_ADDR_LEN);
142     eth->eth_type = htons(ETH_TYPE_RARP);
143
144     rarp = ofpbuf_put_uninit(b, sizeof *rarp);
145     rarp->hw_addr_space = htons(ARP_HTYPE_ETH);
146     rarp->proto_addr_space = htons(ETH_TYPE_IP);
147     rarp->hw_addr_length = ETH_ADDR_LEN;
148     rarp->proto_addr_length = sizeof rarp->src_proto_addr;
149     rarp->opcode = htons(RARP_REQUEST_REVERSE);
150     memcpy(rarp->src_hw_addr, eth_src, ETH_ADDR_LEN);
151     rarp->src_proto_addr = htonl(0);
152     memcpy(rarp->target_hw_addr, eth_src, ETH_ADDR_LEN);
153     rarp->target_proto_addr = htonl(0);
154 }
155
156 /* Insert VLAN header according to given TCI. Packet passed must be Ethernet
157  * packet.  Ignores the CFI bit of 'tci' using 0 instead.
158  *
159  * Also sets 'packet->l2' to point to the new Ethernet header. */
160 void
161 eth_push_vlan(struct ofpbuf *packet, ovs_be16 tci)
162 {
163     struct eth_header *eh = packet->data;
164     struct vlan_eth_header *veh;
165
166     /* Insert new 802.1Q header. */
167     struct vlan_eth_header tmp;
168     memcpy(tmp.veth_dst, eh->eth_dst, ETH_ADDR_LEN);
169     memcpy(tmp.veth_src, eh->eth_src, ETH_ADDR_LEN);
170     tmp.veth_type = htons(ETH_TYPE_VLAN);
171     tmp.veth_tci = tci & htons(~VLAN_CFI);
172     tmp.veth_next_type = eh->eth_type;
173
174     veh = ofpbuf_push_uninit(packet, VLAN_HEADER_LEN);
175     memcpy(veh, &tmp, sizeof tmp);
176
177     packet->l2 = packet->data;
178 }
179
180 /* Removes outermost VLAN header (if any is present) from 'packet'.
181  *
182  * 'packet->l2' must initially point to 'packet''s Ethernet header. */
183 void
184 eth_pop_vlan(struct ofpbuf *packet)
185 {
186     struct vlan_eth_header *veh = packet->l2;
187     if (packet->size >= sizeof *veh
188         && veh->veth_type == htons(ETH_TYPE_VLAN)) {
189         struct eth_header tmp;
190
191         memcpy(tmp.eth_dst, veh->veth_dst, ETH_ADDR_LEN);
192         memcpy(tmp.eth_src, veh->veth_src, ETH_ADDR_LEN);
193         tmp.eth_type = veh->veth_next_type;
194
195         ofpbuf_pull(packet, VLAN_HEADER_LEN);
196         packet->l2 = (char*)packet->l2 + VLAN_HEADER_LEN;
197         memcpy(packet->data, &tmp, sizeof tmp);
198     }
199 }
200
201 /* Converts hex digits in 'hex' to an Ethernet packet in '*packetp'.  The
202  * caller must free '*packetp'.  On success, returns NULL.  On failure, returns
203  * an error message and stores NULL in '*packetp'. */
204 const char *
205 eth_from_hex(const char *hex, struct ofpbuf **packetp)
206 {
207     struct ofpbuf *packet;
208
209     packet = *packetp = ofpbuf_new(strlen(hex) / 2);
210
211     if (ofpbuf_put_hex(packet, hex, NULL)[0] != '\0') {
212         ofpbuf_delete(packet);
213         *packetp = NULL;
214         return "Trailing garbage in packet data";
215     }
216
217     if (packet->size < ETH_HEADER_LEN) {
218         ofpbuf_delete(packet);
219         *packetp = NULL;
220         return "Packet data too short for Ethernet";
221     }
222
223     return NULL;
224 }
225
226 void
227 eth_format_masked(const uint8_t eth[ETH_ADDR_LEN],
228                   const uint8_t mask[ETH_ADDR_LEN], struct ds *s)
229 {
230     ds_put_format(s, ETH_ADDR_FMT, ETH_ADDR_ARGS(eth));
231     if (mask && !eth_mask_is_exact(mask)) {
232         ds_put_format(s, "/"ETH_ADDR_FMT, ETH_ADDR_ARGS(mask));
233     }
234 }
235
236 void
237 eth_addr_bitand(const uint8_t src[ETH_ADDR_LEN],
238                 const uint8_t mask[ETH_ADDR_LEN],
239                 uint8_t dst[ETH_ADDR_LEN])
240 {
241     int i;
242
243     for (i = 0; i < ETH_ADDR_LEN; i++) {
244         dst[i] = src[i] & mask[i];
245     }
246 }
247
248 /* Given the IP netmask 'netmask', returns the number of bits of the IP address
249  * that it specifies, that is, the number of 1-bits in 'netmask'.  'netmask'
250  * must be a CIDR netmask (see ip_is_cidr()). */
251 int
252 ip_count_cidr_bits(ovs_be32 netmask)
253 {
254     assert(ip_is_cidr(netmask));
255     return 32 - ctz(ntohl(netmask));
256 }
257
258 void
259 ip_format_masked(ovs_be32 ip, ovs_be32 mask, struct ds *s)
260 {
261     ds_put_format(s, IP_FMT, IP_ARGS(&ip));
262     if (mask != htonl(UINT32_MAX)) {
263         if (ip_is_cidr(mask)) {
264             ds_put_format(s, "/%d", ip_count_cidr_bits(mask));
265         } else {
266             ds_put_format(s, "/"IP_FMT, IP_ARGS(&mask));
267         }
268     }
269 }
270
271
272 /* Stores the string representation of the IPv6 address 'addr' into the
273  * character array 'addr_str', which must be at least INET6_ADDRSTRLEN
274  * bytes long. */
275 void
276 format_ipv6_addr(char *addr_str, const struct in6_addr *addr)
277 {
278     inet_ntop(AF_INET6, addr, addr_str, INET6_ADDRSTRLEN);
279 }
280
281 void
282 print_ipv6_addr(struct ds *string, const struct in6_addr *addr)
283 {
284     char *dst;
285
286     ds_reserve(string, string->length + INET6_ADDRSTRLEN);
287
288     dst = string->string + string->length;
289     format_ipv6_addr(dst, addr);
290     string->length += strlen(dst);
291 }
292
293 void
294 print_ipv6_masked(struct ds *s, const struct in6_addr *addr,
295                   const struct in6_addr *mask)
296 {
297     print_ipv6_addr(s, addr);
298     if (mask && !ipv6_mask_is_exact(mask)) {
299         if (ipv6_is_cidr(mask)) {
300             int cidr_bits = ipv6_count_cidr_bits(mask);
301             ds_put_format(s, "/%d", cidr_bits);
302         } else {
303             ds_put_char(s, '/');
304             print_ipv6_addr(s, mask);
305         }
306     }
307 }
308
309 struct in6_addr ipv6_addr_bitand(const struct in6_addr *a,
310                                  const struct in6_addr *b)
311 {
312     int i;
313     struct in6_addr dst;
314
315 #ifdef s6_addr32
316     for (i=0; i<4; i++) {
317         dst.s6_addr32[i] = a->s6_addr32[i] & b->s6_addr32[i];
318     }
319 #else
320     for (i=0; i<16; i++) {
321         dst.s6_addr[i] = a->s6_addr[i] & b->s6_addr[i];
322     }
323 #endif
324
325     return dst;
326 }
327
328 /* Returns an in6_addr consisting of 'mask' high-order 1-bits and 128-N
329  * low-order 0-bits. */
330 struct in6_addr
331 ipv6_create_mask(int mask)
332 {
333     struct in6_addr netmask;
334     uint8_t *netmaskp = &netmask.s6_addr[0];
335
336     memset(&netmask, 0, sizeof netmask);
337     while (mask > 8) {
338         *netmaskp = 0xff;
339         netmaskp++;
340         mask -= 8;
341     }
342
343     if (mask) {
344         *netmaskp = 0xff << (8 - mask);
345     }
346
347     return netmask;
348 }
349
350 /* Given the IPv6 netmask 'netmask', returns the number of bits of the IPv6
351  * address that it specifies, that is, the number of 1-bits in 'netmask'.
352  * 'netmask' must be a CIDR netmask (see ipv6_is_cidr()). */
353 int
354 ipv6_count_cidr_bits(const struct in6_addr *netmask)
355 {
356     int i;
357     int count = 0;
358     const uint8_t *netmaskp = &netmask->s6_addr[0];
359
360     assert(ipv6_is_cidr(netmask));
361
362     for (i=0; i<16; i++) {
363         if (netmaskp[i] == 0xff) {
364             count += 8;
365         } else {
366             uint8_t nm;
367
368             for(nm = netmaskp[i]; nm; nm <<= 1) {
369                 count++;
370             }
371             break;
372         }
373
374     }
375
376     return count;
377 }
378
379 /* Returns true if 'netmask' is a CIDR netmask, that is, if it consists of N
380  * high-order 1-bits and 128-N low-order 0-bits. */
381 bool
382 ipv6_is_cidr(const struct in6_addr *netmask)
383 {
384     const uint8_t *netmaskp = &netmask->s6_addr[0];
385     int i;
386
387     for (i=0; i<16; i++) {
388         if (netmaskp[i] != 0xff) {
389             uint8_t x = ~netmaskp[i];
390             if (x & (x + 1)) {
391                 return false;
392             }
393             while (++i < 16) {
394                 if (netmaskp[i]) {
395                     return false;
396                 }
397             }
398         }
399     }
400
401     return true;
402 }
403
404 /* Populates 'b' with an Ethernet II packet headed with the given 'eth_dst',
405  * 'eth_src' and 'eth_type' parameters.  A payload of 'size' bytes is allocated
406  * in 'b' and returned.  This payload may be populated with appropriate
407  * information by the caller.  Sets 'b''s 'l2' and 'l3' pointers to the
408  * Ethernet header and payload respectively.
409  *
410  * The returned packet has enough headroom to insert an 802.1Q VLAN header if
411  * desired. */
412 void *
413 eth_compose(struct ofpbuf *b, const uint8_t eth_dst[ETH_ADDR_LEN],
414             const uint8_t eth_src[ETH_ADDR_LEN], uint16_t eth_type,
415             size_t size)
416 {
417     void *data;
418     struct eth_header *eth;
419
420     ofpbuf_clear(b);
421
422     ofpbuf_prealloc_tailroom(b, ETH_HEADER_LEN + VLAN_HEADER_LEN + size);
423     ofpbuf_reserve(b, VLAN_HEADER_LEN);
424     eth = ofpbuf_put_uninit(b, ETH_HEADER_LEN);
425     data = ofpbuf_put_uninit(b, size);
426
427     memcpy(eth->eth_dst, eth_dst, ETH_ADDR_LEN);
428     memcpy(eth->eth_src, eth_src, ETH_ADDR_LEN);
429     eth->eth_type = htons(eth_type);
430
431     b->l2 = eth;
432     b->l3 = data;
433
434     return data;
435 }
436
437 static void
438 packet_set_ipv4_addr(struct ofpbuf *packet, ovs_be32 *addr, ovs_be32 new_addr)
439 {
440     struct ip_header *nh = packet->l3;
441
442     if (nh->ip_proto == IPPROTO_TCP && packet->l7) {
443         struct tcp_header *th = packet->l4;
444
445         th->tcp_csum = recalc_csum32(th->tcp_csum, *addr, new_addr);
446     } else if (nh->ip_proto == IPPROTO_UDP && packet->l7) {
447         struct udp_header *uh = packet->l4;
448
449         if (uh->udp_csum) {
450             uh->udp_csum = recalc_csum32(uh->udp_csum, *addr, new_addr);
451             if (!uh->udp_csum) {
452                 uh->udp_csum = htons(0xffff);
453             }
454         }
455     }
456     nh->ip_csum = recalc_csum32(nh->ip_csum, *addr, new_addr);
457     *addr = new_addr;
458 }
459
460 /* Modifies the IPv4 header fields of 'packet' to be consistent with 'src',
461  * 'dst', 'tos', and 'ttl'.  Updates 'packet''s L4 checksums as appropriate.
462  * 'packet' must contain a valid IPv4 packet with correctly populated l[347]
463  * markers. */
464 void
465 packet_set_ipv4(struct ofpbuf *packet, ovs_be32 src, ovs_be32 dst,
466                 uint8_t tos, uint8_t ttl)
467 {
468     struct ip_header *nh = packet->l3;
469
470     if (nh->ip_src != src) {
471         packet_set_ipv4_addr(packet, &nh->ip_src, src);
472     }
473
474     if (nh->ip_dst != dst) {
475         packet_set_ipv4_addr(packet, &nh->ip_dst, dst);
476     }
477
478     if (nh->ip_tos != tos) {
479         uint8_t *field = &nh->ip_tos;
480
481         nh->ip_csum = recalc_csum16(nh->ip_csum, htons((uint16_t) *field),
482                                     htons((uint16_t) tos));
483         *field = tos;
484     }
485
486     if (nh->ip_ttl != ttl) {
487         uint8_t *field = &nh->ip_ttl;
488
489         nh->ip_csum = recalc_csum16(nh->ip_csum, htons(*field << 8),
490                                     htons(ttl << 8));
491         *field = ttl;
492     }
493 }
494
495 static void
496 packet_set_port(ovs_be16 *port, ovs_be16 new_port, ovs_be16 *csum)
497 {
498     if (*port != new_port) {
499         *csum = recalc_csum16(*csum, *port, new_port);
500         *port = new_port;
501     }
502 }
503
504 /* Sets the TCP source and destination port ('src' and 'dst' respectively) of
505  * the TCP header contained in 'packet'.  'packet' must be a valid TCP packet
506  * with its l4 marker properly populated. */
507 void
508 packet_set_tcp_port(struct ofpbuf *packet, ovs_be16 src, ovs_be16 dst)
509 {
510     struct tcp_header *th = packet->l4;
511
512     packet_set_port(&th->tcp_src, src, &th->tcp_csum);
513     packet_set_port(&th->tcp_dst, dst, &th->tcp_csum);
514 }
515
516 /* Sets the UDP source and destination port ('src' and 'dst' respectively) of
517  * the UDP header contained in 'packet'.  'packet' must be a valid UDP packet
518  * with its l4 marker properly populated. */
519 void
520 packet_set_udp_port(struct ofpbuf *packet, ovs_be16 src, ovs_be16 dst)
521 {
522     struct udp_header *uh = packet->l4;
523
524     if (uh->udp_csum) {
525         packet_set_port(&uh->udp_src, src, &uh->udp_csum);
526         packet_set_port(&uh->udp_dst, dst, &uh->udp_csum);
527
528         if (!uh->udp_csum) {
529             uh->udp_csum = htons(0xffff);
530         }
531     } else {
532         uh->udp_src = src;
533         uh->udp_dst = dst;
534     }
535 }
536
537 /* If 'packet' is a TCP packet, returns the TCP flags.  Otherwise, returns 0.
538  *
539  * 'flow' must be the flow corresponding to 'packet' and 'packet''s header
540  * pointers must be properly initialized (e.g. with flow_extract()). */
541 uint8_t
542 packet_get_tcp_flags(const struct ofpbuf *packet, const struct flow *flow)
543 {
544     if ((flow->dl_type == htons(ETH_TYPE_IP) ||
545          flow->dl_type == htons(ETH_TYPE_IPV6)) &&
546         flow->nw_proto == IPPROTO_TCP && packet->l7) {
547         const struct tcp_header *tcp = packet->l4;
548         return TCP_FLAGS(tcp->tcp_ctl);
549     } else {
550         return 0;
551     }
552 }
553
554 /* Appends a string representation of the TCP flags value 'tcp_flags'
555  * (e.g. obtained via packet_get_tcp_flags() or TCP_FLAGS) to 's', in the
556  * format used by tcpdump. */
557 void
558 packet_format_tcp_flags(struct ds *s, uint8_t tcp_flags)
559 {
560     if (!tcp_flags) {
561         ds_put_cstr(s, "none");
562         return;
563     }
564
565     if (tcp_flags & TCP_SYN) {
566         ds_put_char(s, 'S');
567     }
568     if (tcp_flags & TCP_FIN) {
569         ds_put_char(s, 'F');
570     }
571     if (tcp_flags & TCP_PSH) {
572         ds_put_char(s, 'P');
573     }
574     if (tcp_flags & TCP_RST) {
575         ds_put_char(s, 'R');
576     }
577     if (tcp_flags & TCP_URG) {
578         ds_put_char(s, 'U');
579     }
580     if (tcp_flags & TCP_ACK) {
581         ds_put_char(s, '.');
582     }
583     if (tcp_flags & 0x40) {
584         ds_put_cstr(s, "[40]");
585     }
586     if (tcp_flags & 0x80) {
587         ds_put_cstr(s, "[80]");
588     }
589 }