2 * Distributed under the terms of the GNU GPL version 2.
3 * Copyright (c) 2007, 2008, 2009, 2010 Nicira Networks.
5 * Significant portions of this file may be copied from parts of the Linux
6 * kernel, by Linus Torvalds and others.
9 /* Functions for executing flow actions. */
11 #include <linux/skbuff.h>
14 #include <linux/tcp.h>
15 #include <linux/udp.h>
16 #include <linux/in6.h>
17 #include <linux/if_arp.h>
18 #include <linux/if_vlan.h>
19 #include <net/inet_ecn.h>
21 #include <net/checksum.h>
25 #include "openvswitch/datapath-protocol.h"
28 static struct sk_buff *make_writable(struct sk_buff *skb, unsigned min_headroom, gfp_t gfp)
30 if (skb_cloned(skb)) {
32 unsigned headroom = max(min_headroom, skb_headroom(skb));
34 nskb = skb_copy_expand(skb, headroom, skb_tailroom(skb), gfp);
36 set_skb_csum_bits(skb, nskb);
41 unsigned int hdr_len = (skb_transport_offset(skb)
42 + sizeof(struct tcphdr));
43 if (pskb_may_pull(skb, min(hdr_len, skb->len)))
50 static struct sk_buff *vlan_pull_tag(struct sk_buff *skb)
52 struct vlan_ethhdr *vh = vlan_eth_hdr(skb);
55 /* Verify we were given a vlan packet */
56 if (vh->h_vlan_proto != htons(ETH_P_8021Q) || skb->len < VLAN_ETH_HLEN)
59 if (OVS_CB(skb)->ip_summed == OVS_CSUM_COMPLETE)
60 skb->csum = csum_sub(skb->csum, csum_partial(skb->data
61 + ETH_HLEN, VLAN_HLEN, 0));
63 memmove(skb->data + VLAN_HLEN, skb->data, 2 * VLAN_ETH_ALEN);
65 eh = (struct ethhdr *)skb_pull(skb, VLAN_HLEN);
67 skb->protocol = eh->h_proto;
68 skb->mac_header += VLAN_HLEN;
73 static struct sk_buff *modify_vlan_tci(struct datapath *dp, struct sk_buff *skb,
74 const struct odp_flow_key *key,
75 const union odp_action *a, int n_actions,
80 if (a->type == ODPAT_SET_VLAN_VID) {
81 tci = ntohs(a->vlan_vid.vlan_vid);
84 tci = a->vlan_pcp.vlan_pcp << VLAN_PCP_SHIFT;
88 skb = make_writable(skb, VLAN_HLEN, gfp);
90 return ERR_PTR(-ENOMEM);
92 if (skb->protocol == htons(ETH_P_8021Q)) {
93 /* Modify vlan id, but maintain other TCI values */
94 struct vlan_ethhdr *vh;
97 if (skb->len < VLAN_ETH_HLEN)
100 vh = vlan_eth_hdr(skb);
101 old_tci = vh->h_vlan_TCI;
103 vh->h_vlan_TCI = htons((ntohs(vh->h_vlan_TCI) & ~mask) | tci);
105 if (OVS_CB(skb)->ip_summed == OVS_CSUM_COMPLETE) {
106 __be16 diff[] = { ~old_tci, vh->h_vlan_TCI };
108 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
114 /* Add vlan header */
116 /* Set up checksumming pointers for checksum-deferred packets
117 * on Xen. Otherwise, dev_queue_xmit() will try to do this
118 * when we send the packet out on the wire, and it will fail at
119 * that point because skb_checksum_setup() will not look inside
120 * an 802.1Q header. */
121 err = vswitch_skb_checksum_setup(skb);
127 /* GSO is not implemented for packets with an 802.1Q header, so
128 * we have to do segmentation before we add that header.
130 * GSO does work with hardware-accelerated VLAN tagging, but we
131 * can't use hardware-accelerated VLAN tagging since it
132 * requires the device to have a VLAN group configured (with
133 * e.g. vconfig(8)) and we don't do that.
135 * Having to do this here may be a performance loss, since we
136 * can't take advantage of TSO hardware support, although it
137 * does not make a measurable network performance difference
138 * for 1G Ethernet. Fixing that would require patching the
139 * kernel (either to add GSO support to the VLAN protocol or to
140 * support hardware-accelerated VLAN tagging without VLAN
141 * groups configured). */
142 if (skb_is_gso(skb)) {
143 struct sk_buff *segs;
145 segs = skb_gso_segment(skb, 0);
147 if (unlikely(IS_ERR(segs)))
148 return ERR_CAST(segs);
151 struct sk_buff *nskb = segs->next;
156 /* GSO can change the checksum type so update.*/
157 compute_ip_summed(segs, true);
159 segs = __vlan_put_tag(segs, tci);
162 err = execute_actions(dp, segs,
169 while ((segs = nskb)) {
178 } while (segs->next);
181 compute_ip_summed(skb, true);
184 /* The hardware-accelerated version of vlan_put_tag() works
185 * only for a device that has a VLAN group configured (with
186 * e.g. vconfig(8)), so call the software-only version
187 * __vlan_put_tag() directly instead.
189 skb = __vlan_put_tag(skb, tci);
191 return ERR_PTR(-ENOMEM);
193 /* GSO doesn't fix up the hardware computed checksum so this
194 * will only be hit in the non-GSO case. */
195 if (OVS_CB(skb)->ip_summed == OVS_CSUM_COMPLETE)
196 skb->csum = csum_add(skb->csum, csum_partial(skb->data
197 + ETH_HLEN, VLAN_HLEN, 0));
203 static struct sk_buff *strip_vlan(struct sk_buff *skb, gfp_t gfp)
205 skb = make_writable(skb, 0, gfp);
212 static struct sk_buff *set_dl_addr(struct sk_buff *skb,
213 const struct odp_action_dl_addr *a,
216 skb = make_writable(skb, 0, gfp);
218 struct ethhdr *eh = eth_hdr(skb);
219 if (a->type == ODPAT_SET_DL_SRC)
220 memcpy(eh->h_source, a->dl_addr, ETH_ALEN);
222 memcpy(eh->h_dest, a->dl_addr, ETH_ALEN);
227 /* Updates 'sum', which is a field in 'skb''s data, given that a 4-byte field
228 * covered by the sum has been changed from 'from' to 'to'. If set,
229 * 'pseudohdr' indicates that the field is in the TCP or UDP pseudo-header.
230 * Based on nf_proto_csum_replace4. */
231 static void update_csum(__sum16 *sum, struct sk_buff *skb,
232 __be32 from, __be32 to, int pseudohdr)
234 __be32 diff[] = { ~from, to };
236 if (OVS_CB(skb)->ip_summed != OVS_CSUM_PARTIAL) {
237 *sum = csum_fold(csum_partial((char *)diff, sizeof(diff),
238 ~csum_unfold(*sum)));
239 if (OVS_CB(skb)->ip_summed == OVS_CSUM_COMPLETE && pseudohdr)
240 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
242 } else if (pseudohdr)
243 *sum = ~csum_fold(csum_partial((char *)diff, sizeof(diff),
247 static bool is_ip(struct sk_buff *skb, const struct odp_flow_key *key)
249 return (key->dl_type == htons(ETH_P_IP) &&
250 skb->transport_header > skb->network_header);
253 static __sum16 *get_l4_checksum(struct sk_buff *skb, const struct odp_flow_key *key)
255 int transport_len = skb->len - skb_transport_offset(skb);
256 if (key->nw_proto == IPPROTO_TCP) {
257 if (likely(transport_len >= sizeof(struct tcphdr)))
258 return &tcp_hdr(skb)->check;
259 } else if (key->nw_proto == IPPROTO_UDP) {
260 if (likely(transport_len >= sizeof(struct udphdr)))
261 return &udp_hdr(skb)->check;
266 static struct sk_buff *set_nw_addr(struct sk_buff *skb,
267 const struct odp_flow_key *key,
268 const struct odp_action_nw_addr *a,
275 if (unlikely(!is_ip(skb, key)))
278 skb = make_writable(skb, 0, gfp);
283 nwaddr = a->type == ODPAT_SET_NW_SRC ? &nh->saddr : &nh->daddr;
285 check = get_l4_checksum(skb, key);
287 update_csum(check, skb, *nwaddr, a->nw_addr, 1);
288 update_csum(&nh->check, skb, *nwaddr, a->nw_addr, 0);
290 *nwaddr = a->nw_addr;
295 static struct sk_buff *set_nw_tos(struct sk_buff *skb,
296 const struct odp_flow_key *key,
297 const struct odp_action_nw_tos *a,
300 if (unlikely(!is_ip(skb, key)))
303 skb = make_writable(skb, 0, gfp);
305 struct iphdr *nh = ip_hdr(skb);
310 /* Set the DSCP bits and preserve the ECN bits. */
311 new = a->nw_tos | (nh->tos & INET_ECN_MASK);
312 update_csum(&nh->check, skb, htons((u16)old),
319 static struct sk_buff *set_tp_port(struct sk_buff *skb,
320 const struct odp_flow_key *key,
321 const struct odp_action_tp_port *a, gfp_t gfp)
327 if (unlikely(!is_ip(skb, key)))
330 skb = make_writable(skb, 0, gfp);
334 /* Must follow make_writable() since that can move the skb data. */
335 check = get_l4_checksum(skb, key);
336 if (unlikely(!check))
340 * Update port and checksum.
342 * This is OK because source and destination port numbers are at the
343 * same offsets in both UDP and TCP headers, and get_l4_checksum() only
344 * supports those protocols.
347 port = a->type == ODPAT_SET_TP_SRC ? &th->source : &th->dest;
348 update_csum(check, skb, *port, a->tp_port, 0);
355 * is_spoofed_arp - check for invalid ARP packet
357 * @skb: skbuff containing an Ethernet packet, with network header pointing
358 * just past the Ethernet and optional 802.1Q header.
359 * @key: flow key extracted from @skb by flow_extract()
361 * Returns true if @skb is an invalid Ethernet+IPv4 ARP packet: one with screwy
362 * or truncated header fields or one whose inner and outer Ethernet address
365 static bool is_spoofed_arp(struct sk_buff *skb, const struct odp_flow_key *key)
367 struct arp_eth_header *arp;
369 if (key->dl_type != htons(ETH_P_ARP))
372 if (skb_network_offset(skb) + sizeof(struct arp_eth_header) > skb->len)
375 arp = (struct arp_eth_header *)skb_network_header(skb);
376 return (arp->ar_hrd != htons(ARPHRD_ETHER) ||
377 arp->ar_pro != htons(ETH_P_IP) ||
378 arp->ar_hln != ETH_ALEN ||
380 compare_ether_addr(arp->ar_sha, eth_hdr(skb)->h_source));
383 static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port)
390 p = rcu_dereference(dp->ports[out_port]);
394 vport_send(p->vport, skb);
401 /* Never consumes 'skb'. Returns a port that 'skb' should be sent to, -1 if
403 static int output_group(struct datapath *dp, __u16 group,
404 struct sk_buff *skb, gfp_t gfp)
406 struct dp_port_group *g = rcu_dereference(dp->groups[group]);
412 for (i = 0; i < g->n_ports; i++) {
413 struct dp_port *p = rcu_dereference(dp->ports[g->ports[i]]);
414 if (!p || OVS_CB(skb)->dp_port == p)
416 if (prev_port != -1) {
417 struct sk_buff *clone = skb_clone(skb, gfp);
420 do_output(dp, clone, prev_port);
422 prev_port = p->port_no;
427 static int output_control(struct datapath *dp, struct sk_buff *skb, u32 arg,
430 skb = skb_clone(skb, gfp);
433 return dp_output_control(dp, skb, _ODPL_ACTION_NR, arg);
436 /* Send a copy of this packet up to the sFlow agent, along with extra
437 * information about what happened to it. */
438 static void sflow_sample(struct datapath *dp, struct sk_buff *skb,
439 const union odp_action *a, int n_actions,
440 gfp_t gfp, struct dp_port *dp_port)
442 struct odp_sflow_sample_header *hdr;
443 unsigned int actlen = n_actions * sizeof(union odp_action);
444 unsigned int hdrlen = sizeof(struct odp_sflow_sample_header);
445 struct sk_buff *nskb;
447 nskb = skb_copy_expand(skb, actlen + hdrlen, 0, gfp);
451 memcpy(__skb_push(nskb, actlen), a, actlen);
452 hdr = (struct odp_sflow_sample_header*)__skb_push(nskb, hdrlen);
453 hdr->n_actions = n_actions;
454 hdr->sample_pool = atomic_read(&dp_port->sflow_pool);
455 dp_output_control(dp, nskb, _ODPL_SFLOW_NR, 0);
458 /* Execute a list of actions against 'skb'. */
459 int execute_actions(struct datapath *dp, struct sk_buff *skb,
460 const struct odp_flow_key *key,
461 const union odp_action *a, int n_actions,
464 /* Every output action needs a separate clone of 'skb', but the common
465 * case is just a single output action, so that doing a clone and
466 * then freeing the original skbuff is wasteful. So the following code
467 * is slightly obscure just to avoid that. */
469 u32 priority = skb->priority;
472 if (dp->sflow_probability) {
473 struct dp_port *p = OVS_CB(skb)->dp_port;
475 atomic_inc(&p->sflow_pool);
476 if (dp->sflow_probability == UINT_MAX ||
477 net_random() < dp->sflow_probability)
478 sflow_sample(dp, skb, a, n_actions, gfp, p);
482 OVS_CB(skb)->tun_id = 0;
484 for (; n_actions > 0; a++, n_actions--) {
485 if (prev_port != -1) {
486 do_output(dp, skb_clone(skb, gfp), prev_port);
492 prev_port = a->output.port;
495 case ODPAT_OUTPUT_GROUP:
496 prev_port = output_group(dp, a->output_group.group,
500 case ODPAT_CONTROLLER:
501 err = output_control(dp, skb, a->controller.arg, gfp);
508 case ODPAT_SET_TUNNEL:
509 OVS_CB(skb)->tun_id = a->tunnel.tun_id;
512 case ODPAT_SET_VLAN_VID:
513 case ODPAT_SET_VLAN_PCP:
514 skb = modify_vlan_tci(dp, skb, key, a, n_actions, gfp);
519 case ODPAT_STRIP_VLAN:
520 skb = strip_vlan(skb, gfp);
523 case ODPAT_SET_DL_SRC:
524 case ODPAT_SET_DL_DST:
525 skb = set_dl_addr(skb, &a->dl_addr, gfp);
528 case ODPAT_SET_NW_SRC:
529 case ODPAT_SET_NW_DST:
530 skb = set_nw_addr(skb, key, &a->nw_addr, gfp);
533 case ODPAT_SET_NW_TOS:
534 skb = set_nw_tos(skb, key, &a->nw_tos, gfp);
537 case ODPAT_SET_TP_SRC:
538 case ODPAT_SET_TP_DST:
539 skb = set_tp_port(skb, key, &a->tp_port, gfp);
542 case ODPAT_SET_PRIORITY:
543 skb->priority = a->priority.priority;
546 case ODPAT_POP_PRIORITY:
547 skb->priority = priority;
550 case ODPAT_DROP_SPOOFED_ARP:
551 if (unlikely(is_spoofed_arp(skb, key)))
560 do_output(dp, skb, prev_port);