blob: 72ca2c491b0aa793b1be52bdd7e7482bcd646bee [file] [log] [blame]
Jesse Grossccb13522011-10-25 19:26:31 -07001/*
Andy Zhou971427f32014-09-15 19:37:25 -07002 * Copyright (c) 2007-2014 Nicira, Inc.
Jesse Grossccb13522011-10-25 19:26:31 -07003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301, USA
17 */
18
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21#include <linux/skbuff.h>
22#include <linux/in.h>
23#include <linux/ip.h>
24#include <linux/openvswitch.h>
Joe Stringer7f8a4362015-08-26 11:31:48 -070025#include <linux/netfilter_ipv6.h>
Joe Stringera175a722013-08-22 12:30:48 -070026#include <linux/sctp.h>
Jesse Grossccb13522011-10-25 19:26:31 -070027#include <linux/tcp.h>
28#include <linux/udp.h>
29#include <linux/in6.h>
30#include <linux/if_arp.h>
31#include <linux/if_vlan.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -070032
Joe Stringer7f8a4362015-08-26 11:31:48 -070033#include <net/dst.h>
Jesse Grossccb13522011-10-25 19:26:31 -070034#include <net/ip.h>
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -080035#include <net/ipv6.h>
Jesse Grossccb13522011-10-25 19:26:31 -070036#include <net/checksum.h>
37#include <net/dsfield.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -070038#include <net/mpls.h>
Joe Stringera175a722013-08-22 12:30:48 -070039#include <net/sctp/checksum.h>
Jesse Grossccb13522011-10-25 19:26:31 -070040
41#include "datapath.h"
Andy Zhou971427f32014-09-15 19:37:25 -070042#include "flow.h"
Joe Stringer7f8a4362015-08-26 11:31:48 -070043#include "conntrack.h"
Jesse Grossccb13522011-10-25 19:26:31 -070044#include "vport.h"
45
46static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -070047 struct sw_flow_key *key,
Simon Horman651887b2014-07-21 15:12:34 -070048 const struct nlattr *attr, int len);
Jesse Grossccb13522011-10-25 19:26:31 -070049
Andy Zhou971427f32014-09-15 19:37:25 -070050struct deferred_action {
51 struct sk_buff *skb;
52 const struct nlattr *actions;
53
54 /* Store pkt_key clone when creating deferred action. */
55 struct sw_flow_key pkt_key;
56};
57
Joe Stringer7f8a4362015-08-26 11:31:48 -070058#define MAX_L2_LEN (VLAN_ETH_HLEN + 3 * MPLS_HLEN)
59struct ovs_frag_data {
60 unsigned long dst;
61 struct vport *vport;
62 struct ovs_skb_cb cb;
63 __be16 inner_protocol;
64 __u16 vlan_tci;
65 __be16 vlan_proto;
66 unsigned int l2_len;
67 u8 l2_data[MAX_L2_LEN];
68};
69
70static DEFINE_PER_CPU(struct ovs_frag_data, ovs_frag_data_storage);
71
Andy Zhou971427f32014-09-15 19:37:25 -070072#define DEFERRED_ACTION_FIFO_SIZE 10
73struct action_fifo {
74 int head;
75 int tail;
76 /* Deferred action fifo queue storage. */
77 struct deferred_action fifo[DEFERRED_ACTION_FIFO_SIZE];
78};
79
80static struct action_fifo __percpu *action_fifos;
81static DEFINE_PER_CPU(int, exec_actions_level);
82
83static void action_fifo_init(struct action_fifo *fifo)
84{
85 fifo->head = 0;
86 fifo->tail = 0;
87}
88
Thomas Graf12eb18f2014-11-06 06:58:52 -080089static bool action_fifo_is_empty(const struct action_fifo *fifo)
Andy Zhou971427f32014-09-15 19:37:25 -070090{
91 return (fifo->head == fifo->tail);
92}
93
94static struct deferred_action *action_fifo_get(struct action_fifo *fifo)
95{
96 if (action_fifo_is_empty(fifo))
97 return NULL;
98
99 return &fifo->fifo[fifo->tail++];
100}
101
102static struct deferred_action *action_fifo_put(struct action_fifo *fifo)
103{
104 if (fifo->head >= DEFERRED_ACTION_FIFO_SIZE - 1)
105 return NULL;
106
107 return &fifo->fifo[fifo->head++];
108}
109
110/* Return true if fifo is not full */
111static struct deferred_action *add_deferred_actions(struct sk_buff *skb,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800112 const struct sw_flow_key *key,
Andy Zhou971427f32014-09-15 19:37:25 -0700113 const struct nlattr *attr)
114{
115 struct action_fifo *fifo;
116 struct deferred_action *da;
117
118 fifo = this_cpu_ptr(action_fifos);
119 da = action_fifo_put(fifo);
120 if (da) {
121 da->skb = skb;
122 da->actions = attr;
123 da->pkt_key = *key;
124 }
125
126 return da;
127}
128
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800129static void invalidate_flow_key(struct sw_flow_key *key)
130{
131 key->eth.type = htons(0);
132}
133
134static bool is_flow_key_valid(const struct sw_flow_key *key)
135{
136 return !!key->eth.type;
137}
138
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800139static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key,
Simon Horman25cd9ba2014-10-06 05:05:13 -0700140 const struct ovs_action_push_mpls *mpls)
141{
142 __be32 *new_mpls_lse;
143 struct ethhdr *hdr;
144
145 /* Networking stack do not allow simultaneous Tunnel and MPLS GSO. */
146 if (skb->encapsulation)
147 return -ENOTSUPP;
148
149 if (skb_cow_head(skb, MPLS_HLEN) < 0)
150 return -ENOMEM;
151
152 skb_push(skb, MPLS_HLEN);
153 memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
154 skb->mac_len);
155 skb_reset_mac_header(skb);
156
157 new_mpls_lse = (__be32 *)skb_mpls_header(skb);
158 *new_mpls_lse = mpls->mpls_lse;
159
160 if (skb->ip_summed == CHECKSUM_COMPLETE)
161 skb->csum = csum_add(skb->csum, csum_partial(new_mpls_lse,
162 MPLS_HLEN, 0));
163
164 hdr = eth_hdr(skb);
165 hdr->h_proto = mpls->mpls_ethertype;
166
Pravin B Shelarcbe7e762014-12-23 16:20:28 -0800167 if (!skb->inner_protocol)
168 skb_set_inner_protocol(skb, skb->protocol);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700169 skb->protocol = mpls->mpls_ethertype;
170
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800171 invalidate_flow_key(key);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700172 return 0;
173}
174
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800175static int pop_mpls(struct sk_buff *skb, struct sw_flow_key *key,
176 const __be16 ethertype)
Simon Horman25cd9ba2014-10-06 05:05:13 -0700177{
178 struct ethhdr *hdr;
179 int err;
180
Jiri Pirkoe2195122014-11-19 14:05:01 +0100181 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700182 if (unlikely(err))
183 return err;
184
Jiri Pirko1abcd822014-11-19 14:04:55 +0100185 skb_postpull_rcsum(skb, skb_mpls_header(skb), MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700186
187 memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
188 skb->mac_len);
189
190 __skb_pull(skb, MPLS_HLEN);
191 skb_reset_mac_header(skb);
192
193 /* skb_mpls_header() is used to locate the ethertype
194 * field correctly in the presence of VLAN tags.
195 */
196 hdr = (struct ethhdr *)(skb_mpls_header(skb) - ETH_HLEN);
197 hdr->h_proto = ethertype;
198 if (eth_p_mpls(skb->protocol))
199 skb->protocol = ethertype;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800200
201 invalidate_flow_key(key);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700202 return 0;
203}
204
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800205static int set_mpls(struct sk_buff *skb, struct sw_flow_key *flow_key,
206 const __be32 *mpls_lse, const __be32 *mask)
Simon Horman25cd9ba2014-10-06 05:05:13 -0700207{
208 __be32 *stack;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800209 __be32 lse;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700210 int err;
211
Jiri Pirkoe2195122014-11-19 14:05:01 +0100212 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700213 if (unlikely(err))
214 return err;
215
216 stack = (__be32 *)skb_mpls_header(skb);
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700217 lse = OVS_MASKED(*stack, *mpls_lse, *mask);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700218 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800219 __be32 diff[] = { ~(*stack), lse };
220
Simon Horman25cd9ba2014-10-06 05:05:13 -0700221 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
222 ~skb->csum);
223 }
224
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800225 *stack = lse;
226 flow_key->mpls.top_lse = lse;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700227 return 0;
228}
229
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800230static int pop_vlan(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700231{
Jesse Grossccb13522011-10-25 19:26:31 -0700232 int err;
233
Jiri Pirko93515d52014-11-19 14:05:02 +0100234 err = skb_vlan_pop(skb);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100235 if (skb_vlan_tag_present(skb))
Jiri Pirko93515d52014-11-19 14:05:02 +0100236 invalidate_flow_key(key);
237 else
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800238 key->eth.tci = 0;
Jiri Pirko93515d52014-11-19 14:05:02 +0100239 return err;
Jesse Grossccb13522011-10-25 19:26:31 -0700240}
241
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800242static int push_vlan(struct sk_buff *skb, struct sw_flow_key *key,
243 const struct ovs_action_push_vlan *vlan)
Jesse Grossccb13522011-10-25 19:26:31 -0700244{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100245 if (skb_vlan_tag_present(skb))
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800246 invalidate_flow_key(key);
Jiri Pirko93515d52014-11-19 14:05:02 +0100247 else
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800248 key->eth.tci = vlan->vlan_tci;
Jiri Pirko93515d52014-11-19 14:05:02 +0100249 return skb_vlan_push(skb, vlan->vlan_tpid,
250 ntohs(vlan->vlan_tci) & ~VLAN_TAG_PRESENT);
Jesse Grossccb13522011-10-25 19:26:31 -0700251}
252
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800253/* 'src' is already properly masked. */
254static void ether_addr_copy_masked(u8 *dst_, const u8 *src_, const u8 *mask_)
255{
256 u16 *dst = (u16 *)dst_;
257 const u16 *src = (const u16 *)src_;
258 const u16 *mask = (const u16 *)mask_;
259
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700260 OVS_SET_MASKED(dst[0], src[0], mask[0]);
261 OVS_SET_MASKED(dst[1], src[1], mask[1]);
262 OVS_SET_MASKED(dst[2], src[2], mask[2]);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800263}
264
265static int set_eth_addr(struct sk_buff *skb, struct sw_flow_key *flow_key,
266 const struct ovs_key_ethernet *key,
267 const struct ovs_key_ethernet *mask)
Jesse Grossccb13522011-10-25 19:26:31 -0700268{
269 int err;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800270
Jiri Pirkoe2195122014-11-19 14:05:01 +0100271 err = skb_ensure_writable(skb, ETH_HLEN);
Jesse Grossccb13522011-10-25 19:26:31 -0700272 if (unlikely(err))
273 return err;
274
Pravin B Shelarb34df5e2013-06-13 11:11:44 -0700275 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
276
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800277 ether_addr_copy_masked(eth_hdr(skb)->h_source, key->eth_src,
278 mask->eth_src);
279 ether_addr_copy_masked(eth_hdr(skb)->h_dest, key->eth_dst,
280 mask->eth_dst);
Jesse Grossccb13522011-10-25 19:26:31 -0700281
Pravin B Shelarb34df5e2013-06-13 11:11:44 -0700282 ovs_skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
283
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800284 ether_addr_copy(flow_key->eth.src, eth_hdr(skb)->h_source);
285 ether_addr_copy(flow_key->eth.dst, eth_hdr(skb)->h_dest);
Jesse Grossccb13522011-10-25 19:26:31 -0700286 return 0;
287}
288
Glenn Griffin3576fd72015-08-03 09:56:54 -0700289static void update_ip_l4_checksum(struct sk_buff *skb, struct iphdr *nh,
290 __be32 addr, __be32 new_addr)
Jesse Grossccb13522011-10-25 19:26:31 -0700291{
292 int transport_len = skb->len - skb_transport_offset(skb);
293
Glenn Griffin3576fd72015-08-03 09:56:54 -0700294 if (nh->frag_off & htons(IP_OFFSET))
295 return;
296
Jesse Grossccb13522011-10-25 19:26:31 -0700297 if (nh->protocol == IPPROTO_TCP) {
298 if (likely(transport_len >= sizeof(struct tcphdr)))
299 inet_proto_csum_replace4(&tcp_hdr(skb)->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700300 addr, new_addr, true);
Jesse Grossccb13522011-10-25 19:26:31 -0700301 } else if (nh->protocol == IPPROTO_UDP) {
Jesse Gross81e5d412012-03-06 15:05:46 -0800302 if (likely(transport_len >= sizeof(struct udphdr))) {
303 struct udphdr *uh = udp_hdr(skb);
304
305 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
306 inet_proto_csum_replace4(&uh->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700307 addr, new_addr, true);
Jesse Gross81e5d412012-03-06 15:05:46 -0800308 if (!uh->check)
309 uh->check = CSUM_MANGLED_0;
310 }
311 }
Jesse Grossccb13522011-10-25 19:26:31 -0700312 }
Glenn Griffin3576fd72015-08-03 09:56:54 -0700313}
Jesse Grossccb13522011-10-25 19:26:31 -0700314
Glenn Griffin3576fd72015-08-03 09:56:54 -0700315static void set_ip_addr(struct sk_buff *skb, struct iphdr *nh,
316 __be32 *addr, __be32 new_addr)
317{
318 update_ip_l4_checksum(skb, nh, *addr, new_addr);
Jesse Grossccb13522011-10-25 19:26:31 -0700319 csum_replace4(&nh->check, *addr, new_addr);
Tom Herbert7539fad2013-12-15 22:12:18 -0800320 skb_clear_hash(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700321 *addr = new_addr;
322}
323
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800324static void update_ipv6_checksum(struct sk_buff *skb, u8 l4_proto,
325 __be32 addr[4], const __be32 new_addr[4])
326{
327 int transport_len = skb->len - skb_transport_offset(skb);
328
Jesse Gross856447d2014-11-11 14:32:20 -0800329 if (l4_proto == NEXTHDR_TCP) {
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800330 if (likely(transport_len >= sizeof(struct tcphdr)))
331 inet_proto_csum_replace16(&tcp_hdr(skb)->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700332 addr, new_addr, true);
Jesse Gross856447d2014-11-11 14:32:20 -0800333 } else if (l4_proto == NEXTHDR_UDP) {
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800334 if (likely(transport_len >= sizeof(struct udphdr))) {
335 struct udphdr *uh = udp_hdr(skb);
336
337 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
338 inet_proto_csum_replace16(&uh->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700339 addr, new_addr, true);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800340 if (!uh->check)
341 uh->check = CSUM_MANGLED_0;
342 }
343 }
Jesse Gross856447d2014-11-11 14:32:20 -0800344 } else if (l4_proto == NEXTHDR_ICMP) {
345 if (likely(transport_len >= sizeof(struct icmp6hdr)))
346 inet_proto_csum_replace16(&icmp6_hdr(skb)->icmp6_cksum,
Tom Herbert4b048d62015-08-17 13:42:25 -0700347 skb, addr, new_addr, true);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800348 }
349}
350
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800351static void mask_ipv6_addr(const __be32 old[4], const __be32 addr[4],
352 const __be32 mask[4], __be32 masked[4])
353{
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700354 masked[0] = OVS_MASKED(old[0], addr[0], mask[0]);
355 masked[1] = OVS_MASKED(old[1], addr[1], mask[1]);
356 masked[2] = OVS_MASKED(old[2], addr[2], mask[2]);
357 masked[3] = OVS_MASKED(old[3], addr[3], mask[3]);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800358}
359
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800360static void set_ipv6_addr(struct sk_buff *skb, u8 l4_proto,
361 __be32 addr[4], const __be32 new_addr[4],
362 bool recalculate_csum)
363{
364 if (recalculate_csum)
365 update_ipv6_checksum(skb, l4_proto, addr, new_addr);
366
Tom Herbert7539fad2013-12-15 22:12:18 -0800367 skb_clear_hash(skb);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800368 memcpy(addr, new_addr, sizeof(__be32[4]));
369}
370
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800371static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl, u32 mask)
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800372{
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800373 /* Bits 21-24 are always unmasked, so this retains their values. */
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700374 OVS_SET_MASKED(nh->flow_lbl[0], (u8)(fl >> 16), (u8)(mask >> 16));
375 OVS_SET_MASKED(nh->flow_lbl[1], (u8)(fl >> 8), (u8)(mask >> 8));
376 OVS_SET_MASKED(nh->flow_lbl[2], (u8)fl, (u8)mask);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800377}
378
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800379static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl,
380 u8 mask)
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800381{
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700382 new_ttl = OVS_MASKED(nh->ttl, new_ttl, mask);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800383
Jesse Grossccb13522011-10-25 19:26:31 -0700384 csum_replace2(&nh->check, htons(nh->ttl << 8), htons(new_ttl << 8));
385 nh->ttl = new_ttl;
386}
387
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800388static int set_ipv4(struct sk_buff *skb, struct sw_flow_key *flow_key,
389 const struct ovs_key_ipv4 *key,
390 const struct ovs_key_ipv4 *mask)
Jesse Grossccb13522011-10-25 19:26:31 -0700391{
392 struct iphdr *nh;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800393 __be32 new_addr;
Jesse Grossccb13522011-10-25 19:26:31 -0700394 int err;
395
Jiri Pirkoe2195122014-11-19 14:05:01 +0100396 err = skb_ensure_writable(skb, skb_network_offset(skb) +
397 sizeof(struct iphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700398 if (unlikely(err))
399 return err;
400
401 nh = ip_hdr(skb);
402
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800403 /* Setting an IP addresses is typically only a side effect of
404 * matching on them in the current userspace implementation, so it
405 * makes sense to check if the value actually changed.
406 */
407 if (mask->ipv4_src) {
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700408 new_addr = OVS_MASKED(nh->saddr, key->ipv4_src, mask->ipv4_src);
Jesse Grossccb13522011-10-25 19:26:31 -0700409
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800410 if (unlikely(new_addr != nh->saddr)) {
411 set_ip_addr(skb, nh, &nh->saddr, new_addr);
412 flow_key->ipv4.addr.src = new_addr;
413 }
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800414 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800415 if (mask->ipv4_dst) {
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700416 new_addr = OVS_MASKED(nh->daddr, key->ipv4_dst, mask->ipv4_dst);
Jesse Grossccb13522011-10-25 19:26:31 -0700417
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800418 if (unlikely(new_addr != nh->daddr)) {
419 set_ip_addr(skb, nh, &nh->daddr, new_addr);
420 flow_key->ipv4.addr.dst = new_addr;
421 }
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800422 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800423 if (mask->ipv4_tos) {
424 ipv4_change_dsfield(nh, ~mask->ipv4_tos, key->ipv4_tos);
425 flow_key->ip.tos = nh->tos;
426 }
427 if (mask->ipv4_ttl) {
428 set_ip_ttl(skb, nh, key->ipv4_ttl, mask->ipv4_ttl);
429 flow_key->ip.ttl = nh->ttl;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800430 }
Jesse Grossccb13522011-10-25 19:26:31 -0700431
432 return 0;
433}
434
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800435static bool is_ipv6_mask_nonzero(const __be32 addr[4])
436{
437 return !!(addr[0] | addr[1] | addr[2] | addr[3]);
438}
439
440static int set_ipv6(struct sk_buff *skb, struct sw_flow_key *flow_key,
441 const struct ovs_key_ipv6 *key,
442 const struct ovs_key_ipv6 *mask)
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800443{
444 struct ipv6hdr *nh;
445 int err;
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800446
Jiri Pirkoe2195122014-11-19 14:05:01 +0100447 err = skb_ensure_writable(skb, skb_network_offset(skb) +
448 sizeof(struct ipv6hdr));
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800449 if (unlikely(err))
450 return err;
451
452 nh = ipv6_hdr(skb);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800453
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800454 /* Setting an IP addresses is typically only a side effect of
455 * matching on them in the current userspace implementation, so it
456 * makes sense to check if the value actually changed.
457 */
458 if (is_ipv6_mask_nonzero(mask->ipv6_src)) {
459 __be32 *saddr = (__be32 *)&nh->saddr;
460 __be32 masked[4];
461
462 mask_ipv6_addr(saddr, key->ipv6_src, mask->ipv6_src, masked);
463
464 if (unlikely(memcmp(saddr, masked, sizeof(masked)))) {
465 set_ipv6_addr(skb, key->ipv6_proto, saddr, masked,
466 true);
467 memcpy(&flow_key->ipv6.addr.src, masked,
468 sizeof(flow_key->ipv6.addr.src));
469 }
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800470 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800471 if (is_ipv6_mask_nonzero(mask->ipv6_dst)) {
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800472 unsigned int offset = 0;
473 int flags = IP6_FH_F_SKIP_RH;
474 bool recalc_csum = true;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800475 __be32 *daddr = (__be32 *)&nh->daddr;
476 __be32 masked[4];
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800477
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800478 mask_ipv6_addr(daddr, key->ipv6_dst, mask->ipv6_dst, masked);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800479
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800480 if (unlikely(memcmp(daddr, masked, sizeof(masked)))) {
481 if (ipv6_ext_hdr(nh->nexthdr))
482 recalc_csum = (ipv6_find_hdr(skb, &offset,
483 NEXTHDR_ROUTING,
484 NULL, &flags)
485 != NEXTHDR_ROUTING);
486
487 set_ipv6_addr(skb, key->ipv6_proto, daddr, masked,
488 recalc_csum);
489 memcpy(&flow_key->ipv6.addr.dst, masked,
490 sizeof(flow_key->ipv6.addr.dst));
491 }
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800492 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800493 if (mask->ipv6_tclass) {
494 ipv6_change_dsfield(nh, ~mask->ipv6_tclass, key->ipv6_tclass);
495 flow_key->ip.tos = ipv6_get_dsfield(nh);
496 }
497 if (mask->ipv6_label) {
498 set_ipv6_fl(nh, ntohl(key->ipv6_label),
499 ntohl(mask->ipv6_label));
500 flow_key->ipv6.label =
501 *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL);
502 }
503 if (mask->ipv6_hlimit) {
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700504 OVS_SET_MASKED(nh->hop_limit, key->ipv6_hlimit,
505 mask->ipv6_hlimit);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800506 flow_key->ip.ttl = nh->hop_limit;
507 }
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800508 return 0;
509}
510
Jiri Pirkoe2195122014-11-19 14:05:01 +0100511/* Must follow skb_ensure_writable() since that can move the skb data. */
Jesse Grossccb13522011-10-25 19:26:31 -0700512static void set_tp_port(struct sk_buff *skb, __be16 *port,
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800513 __be16 new_port, __sum16 *check)
Jesse Grossccb13522011-10-25 19:26:31 -0700514{
Tom Herbert4b048d62015-08-17 13:42:25 -0700515 inet_proto_csum_replace2(check, skb, *port, new_port, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700516 *port = new_port;
Jesse Grossccb13522011-10-25 19:26:31 -0700517}
518
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800519static int set_udp(struct sk_buff *skb, struct sw_flow_key *flow_key,
520 const struct ovs_key_udp *key,
521 const struct ovs_key_udp *mask)
Jesse Grossccb13522011-10-25 19:26:31 -0700522{
523 struct udphdr *uh;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800524 __be16 src, dst;
Jesse Grossccb13522011-10-25 19:26:31 -0700525 int err;
526
Jiri Pirkoe2195122014-11-19 14:05:01 +0100527 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
528 sizeof(struct udphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700529 if (unlikely(err))
530 return err;
531
532 uh = udp_hdr(skb);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800533 /* Either of the masks is non-zero, so do not bother checking them. */
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700534 src = OVS_MASKED(uh->source, key->udp_src, mask->udp_src);
535 dst = OVS_MASKED(uh->dest, key->udp_dst, mask->udp_dst);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800536
537 if (uh->check && skb->ip_summed != CHECKSUM_PARTIAL) {
538 if (likely(src != uh->source)) {
539 set_tp_port(skb, &uh->source, src, &uh->check);
540 flow_key->tp.src = src;
541 }
542 if (likely(dst != uh->dest)) {
543 set_tp_port(skb, &uh->dest, dst, &uh->check);
544 flow_key->tp.dst = dst;
545 }
546
547 if (unlikely(!uh->check))
548 uh->check = CSUM_MANGLED_0;
549 } else {
550 uh->source = src;
551 uh->dest = dst;
552 flow_key->tp.src = src;
553 flow_key->tp.dst = dst;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800554 }
Jesse Grossccb13522011-10-25 19:26:31 -0700555
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800556 skb_clear_hash(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700557
558 return 0;
559}
560
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800561static int set_tcp(struct sk_buff *skb, struct sw_flow_key *flow_key,
562 const struct ovs_key_tcp *key,
563 const struct ovs_key_tcp *mask)
Jesse Grossccb13522011-10-25 19:26:31 -0700564{
565 struct tcphdr *th;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800566 __be16 src, dst;
Jesse Grossccb13522011-10-25 19:26:31 -0700567 int err;
568
Jiri Pirkoe2195122014-11-19 14:05:01 +0100569 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
570 sizeof(struct tcphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700571 if (unlikely(err))
572 return err;
573
574 th = tcp_hdr(skb);
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700575 src = OVS_MASKED(th->source, key->tcp_src, mask->tcp_src);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800576 if (likely(src != th->source)) {
577 set_tp_port(skb, &th->source, src, &th->check);
578 flow_key->tp.src = src;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800579 }
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700580 dst = OVS_MASKED(th->dest, key->tcp_dst, mask->tcp_dst);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800581 if (likely(dst != th->dest)) {
582 set_tp_port(skb, &th->dest, dst, &th->check);
583 flow_key->tp.dst = dst;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800584 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800585 skb_clear_hash(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700586
587 return 0;
588}
589
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800590static int set_sctp(struct sk_buff *skb, struct sw_flow_key *flow_key,
591 const struct ovs_key_sctp *key,
592 const struct ovs_key_sctp *mask)
Joe Stringera175a722013-08-22 12:30:48 -0700593{
Joe Stringera175a722013-08-22 12:30:48 -0700594 unsigned int sctphoff = skb_transport_offset(skb);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800595 struct sctphdr *sh;
596 __le32 old_correct_csum, new_csum, old_csum;
597 int err;
Joe Stringera175a722013-08-22 12:30:48 -0700598
Jiri Pirkoe2195122014-11-19 14:05:01 +0100599 err = skb_ensure_writable(skb, sctphoff + sizeof(struct sctphdr));
Joe Stringera175a722013-08-22 12:30:48 -0700600 if (unlikely(err))
601 return err;
602
603 sh = sctp_hdr(skb);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800604 old_csum = sh->checksum;
605 old_correct_csum = sctp_compute_cksum(skb, sctphoff);
Joe Stringera175a722013-08-22 12:30:48 -0700606
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700607 sh->source = OVS_MASKED(sh->source, key->sctp_src, mask->sctp_src);
608 sh->dest = OVS_MASKED(sh->dest, key->sctp_dst, mask->sctp_dst);
Joe Stringera175a722013-08-22 12:30:48 -0700609
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800610 new_csum = sctp_compute_cksum(skb, sctphoff);
Joe Stringera175a722013-08-22 12:30:48 -0700611
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800612 /* Carry any checksum errors through. */
613 sh->checksum = old_csum ^ old_correct_csum ^ new_csum;
Joe Stringera175a722013-08-22 12:30:48 -0700614
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800615 skb_clear_hash(skb);
616 flow_key->tp.src = sh->source;
617 flow_key->tp.dst = sh->dest;
Joe Stringera175a722013-08-22 12:30:48 -0700618
619 return 0;
620}
621
Joe Stringer7f8a4362015-08-26 11:31:48 -0700622static int ovs_vport_output(struct sock *sock, struct sk_buff *skb)
623{
624 struct ovs_frag_data *data = this_cpu_ptr(&ovs_frag_data_storage);
625 struct vport *vport = data->vport;
626
627 if (skb_cow_head(skb, data->l2_len) < 0) {
628 kfree_skb(skb);
629 return -ENOMEM;
630 }
631
632 __skb_dst_copy(skb, data->dst);
633 *OVS_CB(skb) = data->cb;
634 skb->inner_protocol = data->inner_protocol;
635 skb->vlan_tci = data->vlan_tci;
636 skb->vlan_proto = data->vlan_proto;
637
638 /* Reconstruct the MAC header. */
639 skb_push(skb, data->l2_len);
640 memcpy(skb->data, &data->l2_data, data->l2_len);
641 ovs_skb_postpush_rcsum(skb, skb->data, data->l2_len);
642 skb_reset_mac_header(skb);
643
644 ovs_vport_send(vport, skb);
645 return 0;
646}
647
648static unsigned int
649ovs_dst_get_mtu(const struct dst_entry *dst)
650{
651 return dst->dev->mtu;
652}
653
654static struct dst_ops ovs_dst_ops = {
655 .family = AF_UNSPEC,
656 .mtu = ovs_dst_get_mtu,
657};
658
659/* prepare_frag() is called once per (larger-than-MTU) frame; its inverse is
660 * ovs_vport_output(), which is called once per fragmented packet.
661 */
662static void prepare_frag(struct vport *vport, struct sk_buff *skb)
663{
664 unsigned int hlen = skb_network_offset(skb);
665 struct ovs_frag_data *data;
666
667 data = this_cpu_ptr(&ovs_frag_data_storage);
668 data->dst = skb->_skb_refdst;
669 data->vport = vport;
670 data->cb = *OVS_CB(skb);
671 data->inner_protocol = skb->inner_protocol;
672 data->vlan_tci = skb->vlan_tci;
673 data->vlan_proto = skb->vlan_proto;
674 data->l2_len = hlen;
675 memcpy(&data->l2_data, skb->data, hlen);
676
677 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
678 skb_pull(skb, hlen);
679}
680
681static void ovs_fragment(struct vport *vport, struct sk_buff *skb, u16 mru,
682 __be16 ethertype)
683{
684 if (skb_network_offset(skb) > MAX_L2_LEN) {
685 OVS_NLERR(1, "L2 header too long to fragment");
686 return;
687 }
688
689 if (ethertype == htons(ETH_P_IP)) {
690 struct dst_entry ovs_dst;
691 unsigned long orig_dst;
692
693 prepare_frag(vport, skb);
694 dst_init(&ovs_dst, &ovs_dst_ops, NULL, 1,
695 DST_OBSOLETE_NONE, DST_NOCOUNT);
696 ovs_dst.dev = vport->dev;
697
698 orig_dst = skb->_skb_refdst;
699 skb_dst_set_noref(skb, &ovs_dst);
700 IPCB(skb)->frag_max_size = mru;
701
702 ip_do_fragment(skb->sk, skb, ovs_vport_output);
703 refdst_drop(orig_dst);
704 } else if (ethertype == htons(ETH_P_IPV6)) {
705 const struct nf_ipv6_ops *v6ops = nf_get_ipv6_ops();
706 unsigned long orig_dst;
707 struct rt6_info ovs_rt;
708
709 if (!v6ops) {
710 kfree_skb(skb);
711 return;
712 }
713
714 prepare_frag(vport, skb);
715 memset(&ovs_rt, 0, sizeof(ovs_rt));
716 dst_init(&ovs_rt.dst, &ovs_dst_ops, NULL, 1,
717 DST_OBSOLETE_NONE, DST_NOCOUNT);
718 ovs_rt.dst.dev = vport->dev;
719
720 orig_dst = skb->_skb_refdst;
721 skb_dst_set_noref(skb, &ovs_rt.dst);
722 IP6CB(skb)->frag_max_size = mru;
723
724 v6ops->fragment(skb->sk, skb, ovs_vport_output);
725 refdst_drop(orig_dst);
726 } else {
727 WARN_ONCE(1, "Failed fragment ->%s: eth=%04x, MRU=%d, MTU=%d.",
728 ovs_vport_name(vport), ntohs(ethertype), mru,
729 vport->dev->mtu);
730 kfree_skb(skb);
731 }
732}
733
734static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port,
735 struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700736{
Andy Zhou738967b2014-09-08 00:35:02 -0700737 struct vport *vport = ovs_vport_rcu(dp, out_port);
Jesse Grossccb13522011-10-25 19:26:31 -0700738
Joe Stringer7f8a4362015-08-26 11:31:48 -0700739 if (likely(vport)) {
740 u16 mru = OVS_CB(skb)->mru;
741
742 if (likely(!mru || (skb->len <= mru + ETH_HLEN))) {
743 ovs_vport_send(vport, skb);
744 } else if (mru <= vport->dev->mtu) {
745 __be16 ethertype = key->eth.type;
746
747 if (!is_flow_key_valid(key)) {
748 if (eth_p_mpls(skb->protocol))
749 ethertype = skb->inner_protocol;
750 else
751 ethertype = vlan_get_protocol(skb);
752 }
753
754 ovs_fragment(vport, skb, mru, ethertype);
755 } else {
756 kfree_skb(skb);
757 }
758 } else {
Jesse Grossccb13522011-10-25 19:26:31 -0700759 kfree_skb(skb);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700760 }
Jesse Grossccb13522011-10-25 19:26:31 -0700761}
762
763static int output_userspace(struct datapath *dp, struct sk_buff *skb,
Neil McKeeccea7442015-05-26 20:59:43 -0700764 struct sw_flow_key *key, const struct nlattr *attr,
765 const struct nlattr *actions, int actions_len)
Jesse Grossccb13522011-10-25 19:26:31 -0700766{
Thomas Graf1d8fff92015-07-21 10:43:54 +0200767 struct ip_tunnel_info info;
Jesse Grossccb13522011-10-25 19:26:31 -0700768 struct dp_upcall_info upcall;
769 const struct nlattr *a;
770 int rem;
771
Neil McKeeccea7442015-05-26 20:59:43 -0700772 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700773 upcall.cmd = OVS_PACKET_CMD_ACTION;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700774 upcall.mru = OVS_CB(skb)->mru;
Jesse Grossccb13522011-10-25 19:26:31 -0700775
776 for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
777 a = nla_next(a, &rem)) {
778 switch (nla_type(a)) {
779 case OVS_USERSPACE_ATTR_USERDATA:
780 upcall.userdata = a;
781 break;
782
783 case OVS_USERSPACE_ATTR_PID:
Eric W. Biederman15e47302012-09-07 20:12:54 +0000784 upcall.portid = nla_get_u32(a);
Jesse Grossccb13522011-10-25 19:26:31 -0700785 break;
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800786
787 case OVS_USERSPACE_ATTR_EGRESS_TUN_PORT: {
788 /* Get out tunnel info. */
789 struct vport *vport;
790
791 vport = ovs_vport_rcu(dp, nla_get_u32(a));
792 if (vport) {
793 int err;
794
795 err = ovs_vport_get_egress_tun_info(vport, skb,
796 &info);
797 if (!err)
798 upcall.egress_tun_info = &info;
799 }
800 break;
Jesse Grossccb13522011-10-25 19:26:31 -0700801 }
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800802
Neil McKeeccea7442015-05-26 20:59:43 -0700803 case OVS_USERSPACE_ATTR_ACTIONS: {
804 /* Include actions. */
805 upcall.actions = actions;
806 upcall.actions_len = actions_len;
807 break;
808 }
809
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800810 } /* End of switch. */
Jesse Grossccb13522011-10-25 19:26:31 -0700811 }
812
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800813 return ovs_dp_upcall(dp, skb, key, &upcall);
Jesse Grossccb13522011-10-25 19:26:31 -0700814}
815
816static int sample(struct datapath *dp, struct sk_buff *skb,
Neil McKeeccea7442015-05-26 20:59:43 -0700817 struct sw_flow_key *key, const struct nlattr *attr,
818 const struct nlattr *actions, int actions_len)
Jesse Grossccb13522011-10-25 19:26:31 -0700819{
820 const struct nlattr *acts_list = NULL;
821 const struct nlattr *a;
822 int rem;
823
824 for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
825 a = nla_next(a, &rem)) {
Wenyu Zhange05176a2015-08-05 00:30:47 -0700826 u32 probability;
827
Jesse Grossccb13522011-10-25 19:26:31 -0700828 switch (nla_type(a)) {
829 case OVS_SAMPLE_ATTR_PROBABILITY:
Wenyu Zhange05176a2015-08-05 00:30:47 -0700830 probability = nla_get_u32(a);
831 if (!probability || prandom_u32() > probability)
Jesse Grossccb13522011-10-25 19:26:31 -0700832 return 0;
833 break;
834
835 case OVS_SAMPLE_ATTR_ACTIONS:
836 acts_list = a;
837 break;
838 }
839 }
840
Simon Horman651887b2014-07-21 15:12:34 -0700841 rem = nla_len(acts_list);
842 a = nla_data(acts_list);
843
Andy Zhou32ae87f2014-09-15 19:33:50 -0700844 /* Actions list is empty, do nothing */
845 if (unlikely(!rem))
846 return 0;
Simon Horman651887b2014-07-21 15:12:34 -0700847
Andy Zhou32ae87f2014-09-15 19:33:50 -0700848 /* The only known usage of sample action is having a single user-space
849 * action. Treat this usage as a special case.
850 * The output_userspace() should clone the skb to be sent to the
851 * user space. This skb will be consumed by its caller.
Simon Horman651887b2014-07-21 15:12:34 -0700852 */
Andy Zhou32ae87f2014-09-15 19:33:50 -0700853 if (likely(nla_type(a) == OVS_ACTION_ATTR_USERSPACE &&
Simon Horman941d8eb2014-10-27 16:12:16 +0900854 nla_is_last(a, rem)))
Neil McKeeccea7442015-05-26 20:59:43 -0700855 return output_userspace(dp, skb, key, a, actions, actions_len);
Andy Zhou32ae87f2014-09-15 19:33:50 -0700856
857 skb = skb_clone(skb, GFP_ATOMIC);
858 if (!skb)
859 /* Skip the sample action when out of memory. */
860 return 0;
861
Andy Zhou971427f32014-09-15 19:37:25 -0700862 if (!add_deferred_actions(skb, key, a)) {
863 if (net_ratelimit())
864 pr_warn("%s: deferred actions limit reached, dropping sample action\n",
865 ovs_dp_name(dp));
866
867 kfree_skb(skb);
868 }
869 return 0;
870}
871
872static void execute_hash(struct sk_buff *skb, struct sw_flow_key *key,
873 const struct nlattr *attr)
874{
875 struct ovs_action_hash *hash_act = nla_data(attr);
876 u32 hash = 0;
877
878 /* OVS_HASH_ALG_L4 is the only possible hash algorithm. */
879 hash = skb_get_hash(skb);
880 hash = jhash_1word(hash, hash_act->hash_basis);
881 if (!hash)
882 hash = 0x1;
883
884 key->ovs_flow_hash = hash;
Jesse Grossccb13522011-10-25 19:26:31 -0700885}
886
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800887static int execute_set_action(struct sk_buff *skb,
888 struct sw_flow_key *flow_key,
889 const struct nlattr *a)
890{
891 /* Only tunnel set execution is supported without a mask. */
892 if (nla_type(a) == OVS_KEY_ATTR_TUNNEL_INFO) {
Thomas Graf34ae9322015-07-21 10:44:03 +0200893 struct ovs_tunnel_info *tun = nla_data(a);
894
895 skb_dst_drop(skb);
896 dst_hold((struct dst_entry *)tun->tun_dst);
897 skb_dst_set(skb, (struct dst_entry *)tun->tun_dst);
898
899 /* FIXME: Remove when all vports have been converted */
900 OVS_CB(skb)->egress_tun_info = &tun->tun_dst->u.tun_info;
901
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800902 return 0;
903 }
904
905 return -EINVAL;
906}
907
908/* Mask is at the midpoint of the data. */
909#define get_mask(a, type) ((const type)nla_data(a) + 1)
910
911static int execute_masked_set_action(struct sk_buff *skb,
912 struct sw_flow_key *flow_key,
913 const struct nlattr *a)
Jesse Grossccb13522011-10-25 19:26:31 -0700914{
915 int err = 0;
916
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800917 switch (nla_type(a)) {
Jesse Grossccb13522011-10-25 19:26:31 -0700918 case OVS_KEY_ATTR_PRIORITY:
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700919 OVS_SET_MASKED(skb->priority, nla_get_u32(a),
920 *get_mask(a, u32 *));
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800921 flow_key->phy.priority = skb->priority;
Jesse Grossccb13522011-10-25 19:26:31 -0700922 break;
923
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800924 case OVS_KEY_ATTR_SKB_MARK:
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700925 OVS_SET_MASKED(skb->mark, nla_get_u32(a), *get_mask(a, u32 *));
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800926 flow_key->phy.skb_mark = skb->mark;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800927 break;
928
Jesse Grossf0b128c2014-10-03 15:35:31 -0700929 case OVS_KEY_ATTR_TUNNEL_INFO:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800930 /* Masked data not supported for tunnel. */
931 err = -EINVAL;
Pravin B Shelar7d5437c2013-06-17 17:50:18 -0700932 break;
933
Jesse Grossccb13522011-10-25 19:26:31 -0700934 case OVS_KEY_ATTR_ETHERNET:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800935 err = set_eth_addr(skb, flow_key, nla_data(a),
936 get_mask(a, struct ovs_key_ethernet *));
Jesse Grossccb13522011-10-25 19:26:31 -0700937 break;
938
939 case OVS_KEY_ATTR_IPV4:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800940 err = set_ipv4(skb, flow_key, nla_data(a),
941 get_mask(a, struct ovs_key_ipv4 *));
Jesse Grossccb13522011-10-25 19:26:31 -0700942 break;
943
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800944 case OVS_KEY_ATTR_IPV6:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800945 err = set_ipv6(skb, flow_key, nla_data(a),
946 get_mask(a, struct ovs_key_ipv6 *));
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800947 break;
948
Jesse Grossccb13522011-10-25 19:26:31 -0700949 case OVS_KEY_ATTR_TCP:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800950 err = set_tcp(skb, flow_key, nla_data(a),
951 get_mask(a, struct ovs_key_tcp *));
Jesse Grossccb13522011-10-25 19:26:31 -0700952 break;
953
954 case OVS_KEY_ATTR_UDP:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800955 err = set_udp(skb, flow_key, nla_data(a),
956 get_mask(a, struct ovs_key_udp *));
Jesse Grossccb13522011-10-25 19:26:31 -0700957 break;
Joe Stringera175a722013-08-22 12:30:48 -0700958
959 case OVS_KEY_ATTR_SCTP:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800960 err = set_sctp(skb, flow_key, nla_data(a),
961 get_mask(a, struct ovs_key_sctp *));
Joe Stringera175a722013-08-22 12:30:48 -0700962 break;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700963
964 case OVS_KEY_ATTR_MPLS:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800965 err = set_mpls(skb, flow_key, nla_data(a), get_mask(a,
966 __be32 *));
Simon Horman25cd9ba2014-10-06 05:05:13 -0700967 break;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700968
969 case OVS_KEY_ATTR_CT_STATE:
970 case OVS_KEY_ATTR_CT_ZONE:
971 err = -EINVAL;
972 break;
Jesse Grossccb13522011-10-25 19:26:31 -0700973 }
974
975 return err;
976}
977
Andy Zhou971427f32014-09-15 19:37:25 -0700978static int execute_recirc(struct datapath *dp, struct sk_buff *skb,
979 struct sw_flow_key *key,
980 const struct nlattr *a, int rem)
981{
982 struct deferred_action *da;
Andy Zhou971427f32014-09-15 19:37:25 -0700983
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800984 if (!is_flow_key_valid(key)) {
985 int err;
986
987 err = ovs_flow_key_update(skb, key);
988 if (err)
989 return err;
990 }
991 BUG_ON(!is_flow_key_valid(key));
Andy Zhou971427f32014-09-15 19:37:25 -0700992
Simon Horman941d8eb2014-10-27 16:12:16 +0900993 if (!nla_is_last(a, rem)) {
Andy Zhou971427f32014-09-15 19:37:25 -0700994 /* Recirc action is the not the last action
995 * of the action list, need to clone the skb.
996 */
997 skb = skb_clone(skb, GFP_ATOMIC);
998
999 /* Skip the recirc action when out of memory, but
1000 * continue on with the rest of the action list.
1001 */
1002 if (!skb)
1003 return 0;
1004 }
1005
1006 da = add_deferred_actions(skb, key, NULL);
1007 if (da) {
1008 da->pkt_key.recirc_id = nla_get_u32(a);
1009 } else {
1010 kfree_skb(skb);
1011
1012 if (net_ratelimit())
1013 pr_warn("%s: deferred action limit reached, drop recirc action\n",
1014 ovs_dp_name(dp));
1015 }
1016
1017 return 0;
1018}
1019
Jesse Grossccb13522011-10-25 19:26:31 -07001020/* Execute a list of actions against 'skb'. */
1021static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -07001022 struct sw_flow_key *key,
Simon Horman651887b2014-07-21 15:12:34 -07001023 const struct nlattr *attr, int len)
Jesse Grossccb13522011-10-25 19:26:31 -07001024{
1025 /* Every output action needs a separate clone of 'skb', but the common
1026 * case is just a single output action, so that doing a clone and
1027 * then freeing the original skbuff is wasteful. So the following code
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001028 * is slightly obscure just to avoid that.
1029 */
Jesse Grossccb13522011-10-25 19:26:31 -07001030 int prev_port = -1;
1031 const struct nlattr *a;
1032 int rem;
1033
1034 for (a = attr, rem = len; rem > 0;
1035 a = nla_next(a, &rem)) {
1036 int err = 0;
1037
Andy Zhou738967b2014-09-08 00:35:02 -07001038 if (unlikely(prev_port != -1)) {
1039 struct sk_buff *out_skb = skb_clone(skb, GFP_ATOMIC);
1040
1041 if (out_skb)
Joe Stringer7f8a4362015-08-26 11:31:48 -07001042 do_output(dp, out_skb, prev_port, key);
Andy Zhou738967b2014-09-08 00:35:02 -07001043
Jesse Grossccb13522011-10-25 19:26:31 -07001044 prev_port = -1;
1045 }
1046
1047 switch (nla_type(a)) {
1048 case OVS_ACTION_ATTR_OUTPUT:
1049 prev_port = nla_get_u32(a);
1050 break;
1051
1052 case OVS_ACTION_ATTR_USERSPACE:
Neil McKeeccea7442015-05-26 20:59:43 -07001053 output_userspace(dp, skb, key, a, attr, len);
Jesse Grossccb13522011-10-25 19:26:31 -07001054 break;
1055
Andy Zhou971427f32014-09-15 19:37:25 -07001056 case OVS_ACTION_ATTR_HASH:
1057 execute_hash(skb, key, a);
1058 break;
1059
Simon Horman25cd9ba2014-10-06 05:05:13 -07001060 case OVS_ACTION_ATTR_PUSH_MPLS:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001061 err = push_mpls(skb, key, nla_data(a));
Simon Horman25cd9ba2014-10-06 05:05:13 -07001062 break;
1063
1064 case OVS_ACTION_ATTR_POP_MPLS:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001065 err = pop_mpls(skb, key, nla_get_be16(a));
Simon Horman25cd9ba2014-10-06 05:05:13 -07001066 break;
1067
Jesse Grossccb13522011-10-25 19:26:31 -07001068 case OVS_ACTION_ATTR_PUSH_VLAN:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001069 err = push_vlan(skb, key, nla_data(a));
Jesse Grossccb13522011-10-25 19:26:31 -07001070 break;
1071
1072 case OVS_ACTION_ATTR_POP_VLAN:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001073 err = pop_vlan(skb, key);
Jesse Grossccb13522011-10-25 19:26:31 -07001074 break;
1075
Andy Zhou971427f32014-09-15 19:37:25 -07001076 case OVS_ACTION_ATTR_RECIRC:
1077 err = execute_recirc(dp, skb, key, a, rem);
Simon Horman941d8eb2014-10-27 16:12:16 +09001078 if (nla_is_last(a, rem)) {
Andy Zhou971427f32014-09-15 19:37:25 -07001079 /* If this is the last action, the skb has
1080 * been consumed or freed.
1081 * Return immediately.
1082 */
1083 return err;
1084 }
1085 break;
1086
Jesse Grossccb13522011-10-25 19:26:31 -07001087 case OVS_ACTION_ATTR_SET:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001088 err = execute_set_action(skb, key, nla_data(a));
Jesse Grossccb13522011-10-25 19:26:31 -07001089 break;
1090
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001091 case OVS_ACTION_ATTR_SET_MASKED:
1092 case OVS_ACTION_ATTR_SET_TO_MASKED:
1093 err = execute_masked_set_action(skb, key, nla_data(a));
1094 break;
1095
Jesse Grossccb13522011-10-25 19:26:31 -07001096 case OVS_ACTION_ATTR_SAMPLE:
Neil McKeeccea7442015-05-26 20:59:43 -07001097 err = sample(dp, skb, key, a, attr, len);
Jesse Grossccb13522011-10-25 19:26:31 -07001098 break;
Joe Stringer7f8a4362015-08-26 11:31:48 -07001099
1100 case OVS_ACTION_ATTR_CT:
1101 err = ovs_ct_execute(ovs_dp_get_net(dp), skb, key,
1102 nla_data(a));
1103
1104 /* Hide stolen IP fragments from user space. */
1105 if (err == -EINPROGRESS)
1106 return 0;
1107 break;
Jesse Grossccb13522011-10-25 19:26:31 -07001108 }
1109
1110 if (unlikely(err)) {
1111 kfree_skb(skb);
1112 return err;
1113 }
1114 }
1115
Simon Horman651887b2014-07-21 15:12:34 -07001116 if (prev_port != -1)
Joe Stringer7f8a4362015-08-26 11:31:48 -07001117 do_output(dp, skb, prev_port, key);
Simon Horman651887b2014-07-21 15:12:34 -07001118 else
Jesse Grossccb13522011-10-25 19:26:31 -07001119 consume_skb(skb);
1120
1121 return 0;
1122}
1123
Andy Zhou971427f32014-09-15 19:37:25 -07001124static void process_deferred_actions(struct datapath *dp)
1125{
1126 struct action_fifo *fifo = this_cpu_ptr(action_fifos);
1127
1128 /* Do not touch the FIFO in case there is no deferred actions. */
1129 if (action_fifo_is_empty(fifo))
1130 return;
1131
1132 /* Finishing executing all deferred actions. */
1133 do {
1134 struct deferred_action *da = action_fifo_get(fifo);
1135 struct sk_buff *skb = da->skb;
1136 struct sw_flow_key *key = &da->pkt_key;
1137 const struct nlattr *actions = da->actions;
1138
1139 if (actions)
1140 do_execute_actions(dp, skb, key, actions,
1141 nla_len(actions));
1142 else
1143 ovs_dp_process_packet(skb, key);
1144 } while (!action_fifo_is_empty(fifo));
1145
1146 /* Reset FIFO for the next packet. */
1147 action_fifo_init(fifo);
1148}
1149
Jesse Grossccb13522011-10-25 19:26:31 -07001150/* Execute a list of actions against 'skb'. */
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -07001151int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001152 const struct sw_flow_actions *acts,
1153 struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -07001154{
Andy Zhou971427f32014-09-15 19:37:25 -07001155 int level = this_cpu_read(exec_actions_level);
Andy Zhou971427f32014-09-15 19:37:25 -07001156 int err;
Jesse Grossccb13522011-10-25 19:26:31 -07001157
Andy Zhou971427f32014-09-15 19:37:25 -07001158 this_cpu_inc(exec_actions_level);
Jesse Grossf0b128c2014-10-03 15:35:31 -07001159 OVS_CB(skb)->egress_tun_info = NULL;
Andy Zhou971427f32014-09-15 19:37:25 -07001160 err = do_execute_actions(dp, skb, key,
1161 acts->actions, acts->actions_len);
1162
1163 if (!level)
1164 process_deferred_actions(dp);
1165
1166 this_cpu_dec(exec_actions_level);
1167 return err;
1168}
1169
1170int action_fifos_init(void)
1171{
1172 action_fifos = alloc_percpu(struct action_fifo);
1173 if (!action_fifos)
1174 return -ENOMEM;
1175
1176 return 0;
1177}
1178
1179void action_fifos_exit(void)
1180{
1181 free_percpu(action_fifos);
Jesse Grossccb13522011-10-25 19:26:31 -07001182}