blob: e4610676299bcdac626db1a30cd4da44ccc62c0b [file] [log] [blame]
Jesse Grossccb13522011-10-25 19:26:31 -07001/*
andy zhou4572ef52017-03-20 16:32:28 -07002 * Copyright (c) 2007-2017 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>
Joe Stringer7b85b4d2015-08-27 15:25:46 -070036#include <net/ip6_fib.h>
Jesse Grossccb13522011-10-25 19:26:31 -070037#include <net/checksum.h>
38#include <net/dsfield.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -070039#include <net/mpls.h>
Joe Stringera175a722013-08-22 12:30:48 -070040#include <net/sctp/checksum.h>
Jesse Grossccb13522011-10-25 19:26:31 -070041
42#include "datapath.h"
Andy Zhou971427f32014-09-15 19:37:25 -070043#include "flow.h"
Joe Stringer7f8a4362015-08-26 11:31:48 -070044#include "conntrack.h"
Jesse Grossccb13522011-10-25 19:26:31 -070045#include "vport.h"
46
Andy Zhou971427f32014-09-15 19:37:25 -070047struct deferred_action {
48 struct sk_buff *skb;
49 const struct nlattr *actions;
andy zhou47c697a2017-03-20 16:32:27 -070050 int actions_len;
Andy Zhou971427f32014-09-15 19:37:25 -070051
52 /* Store pkt_key clone when creating deferred action. */
53 struct sw_flow_key pkt_key;
54};
55
Joe Stringer7f8a4362015-08-26 11:31:48 -070056#define MAX_L2_LEN (VLAN_ETH_HLEN + 3 * MPLS_HLEN)
57struct ovs_frag_data {
58 unsigned long dst;
59 struct vport *vport;
60 struct ovs_skb_cb cb;
61 __be16 inner_protocol;
Jiri Bencc66549f2016-10-05 15:01:57 +020062 u16 network_offset; /* valid only for MPLS */
63 u16 vlan_tci;
Joe Stringer7f8a4362015-08-26 11:31:48 -070064 __be16 vlan_proto;
65 unsigned int l2_len;
Jiri Bence2d9d832016-11-10 16:28:19 +010066 u8 mac_proto;
Joe Stringer7f8a4362015-08-26 11:31:48 -070067 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
Lance Richardson2679d042016-09-13 10:08:54 -040073#define OVS_RECURSION_LIMIT 5
74#define OVS_DEFERRED_ACTION_THRESHOLD (OVS_RECURSION_LIMIT - 2)
Andy Zhou971427f32014-09-15 19:37:25 -070075struct action_fifo {
76 int head;
77 int tail;
78 /* Deferred action fifo queue storage. */
79 struct deferred_action fifo[DEFERRED_ACTION_FIFO_SIZE];
80};
81
andy zhou4572ef52017-03-20 16:32:28 -070082struct action_flow_keys {
Lance Richardson2679d042016-09-13 10:08:54 -040083 struct sw_flow_key key[OVS_DEFERRED_ACTION_THRESHOLD];
84};
85
Andy Zhou971427f32014-09-15 19:37:25 -070086static struct action_fifo __percpu *action_fifos;
andy zhou4572ef52017-03-20 16:32:28 -070087static struct action_flow_keys __percpu *flow_keys;
Andy Zhou971427f32014-09-15 19:37:25 -070088static DEFINE_PER_CPU(int, exec_actions_level);
89
andy zhou4572ef52017-03-20 16:32:28 -070090/* Make a clone of the 'key', using the pre-allocated percpu 'flow_keys'
91 * space. Return NULL if out of key spaces.
92 */
93static struct sw_flow_key *clone_key(const struct sw_flow_key *key_)
94{
95 struct action_flow_keys *keys = this_cpu_ptr(flow_keys);
96 int level = this_cpu_read(exec_actions_level);
97 struct sw_flow_key *key = NULL;
98
99 if (level <= OVS_DEFERRED_ACTION_THRESHOLD) {
100 key = &keys->key[level - 1];
101 *key = *key_;
102 }
103
104 return key;
105}
106
Andy Zhou971427f32014-09-15 19:37:25 -0700107static void action_fifo_init(struct action_fifo *fifo)
108{
109 fifo->head = 0;
110 fifo->tail = 0;
111}
112
Thomas Graf12eb18f2014-11-06 06:58:52 -0800113static bool action_fifo_is_empty(const struct action_fifo *fifo)
Andy Zhou971427f32014-09-15 19:37:25 -0700114{
115 return (fifo->head == fifo->tail);
116}
117
118static struct deferred_action *action_fifo_get(struct action_fifo *fifo)
119{
120 if (action_fifo_is_empty(fifo))
121 return NULL;
122
123 return &fifo->fifo[fifo->tail++];
124}
125
126static struct deferred_action *action_fifo_put(struct action_fifo *fifo)
127{
128 if (fifo->head >= DEFERRED_ACTION_FIFO_SIZE - 1)
129 return NULL;
130
131 return &fifo->fifo[fifo->head++];
132}
133
134/* Return true if fifo is not full */
135static struct deferred_action *add_deferred_actions(struct sk_buff *skb,
andy zhou47c697a2017-03-20 16:32:27 -0700136 const struct sw_flow_key *key,
137 const struct nlattr *actions,
138 const int actions_len)
Andy Zhou971427f32014-09-15 19:37:25 -0700139{
140 struct action_fifo *fifo;
141 struct deferred_action *da;
142
143 fifo = this_cpu_ptr(action_fifos);
144 da = action_fifo_put(fifo);
145 if (da) {
146 da->skb = skb;
andy zhou47c697a2017-03-20 16:32:27 -0700147 da->actions = actions;
148 da->actions_len = actions_len;
Andy Zhou971427f32014-09-15 19:37:25 -0700149 da->pkt_key = *key;
150 }
151
152 return da;
153}
154
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800155static void invalidate_flow_key(struct sw_flow_key *key)
156{
Jiri Benc329f45b2016-11-10 16:28:18 +0100157 key->mac_proto |= SW_FLOW_KEY_INVALID;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800158}
159
160static bool is_flow_key_valid(const struct sw_flow_key *key)
161{
Jiri Benc329f45b2016-11-10 16:28:18 +0100162 return !(key->mac_proto & SW_FLOW_KEY_INVALID);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800163}
164
andy zhoubef7f752017-03-20 16:32:30 -0700165static int clone_execute(struct datapath *dp, struct sk_buff *skb,
166 struct sw_flow_key *key,
167 u32 recirc_id,
168 const struct nlattr *actions, int len,
169 bool last, bool clone_flow_key);
170
Simon Hormanbc7cc592016-05-30 14:04:25 +0900171static void update_ethertype(struct sk_buff *skb, struct ethhdr *hdr,
172 __be16 ethertype)
173{
174 if (skb->ip_summed == CHECKSUM_COMPLETE) {
175 __be16 diff[] = { ~(hdr->h_proto), ethertype };
176
177 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
178 ~skb->csum);
179 }
180
181 hdr->h_proto = ethertype;
182}
183
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800184static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key,
Simon Horman25cd9ba2014-10-06 05:05:13 -0700185 const struct ovs_action_push_mpls *mpls)
186{
Jiri Benc85de4a22016-09-30 19:08:07 +0200187 struct mpls_shim_hdr *new_mpls_lse;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700188
189 /* Networking stack do not allow simultaneous Tunnel and MPLS GSO. */
190 if (skb->encapsulation)
191 return -ENOTSUPP;
192
193 if (skb_cow_head(skb, MPLS_HLEN) < 0)
194 return -ENOMEM;
195
David Ahern48d2ab62016-08-24 20:10:44 -0700196 if (!skb->inner_protocol) {
197 skb_set_inner_network_header(skb, skb->mac_len);
198 skb_set_inner_protocol(skb, skb->protocol);
199 }
200
Simon Horman25cd9ba2014-10-06 05:05:13 -0700201 skb_push(skb, MPLS_HLEN);
202 memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
203 skb->mac_len);
204 skb_reset_mac_header(skb);
David Ahern48d2ab62016-08-24 20:10:44 -0700205 skb_set_network_header(skb, skb->mac_len);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700206
Jiri Benc85de4a22016-09-30 19:08:07 +0200207 new_mpls_lse = mpls_hdr(skb);
208 new_mpls_lse->label_stack_entry = mpls->mpls_lse;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700209
Daniel Borkmann6b83d282016-02-20 00:29:30 +0100210 skb_postpush_rcsum(skb, new_mpls_lse, MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700211
Jiri Benc1560a072016-11-10 16:28:20 +0100212 if (ovs_key_mac_proto(key) == MAC_PROTO_ETHERNET)
213 update_ethertype(skb, eth_hdr(skb), mpls->mpls_ethertype);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700214 skb->protocol = mpls->mpls_ethertype;
215
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800216 invalidate_flow_key(key);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700217 return 0;
218}
219
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800220static int pop_mpls(struct sk_buff *skb, struct sw_flow_key *key,
221 const __be16 ethertype)
Simon Horman25cd9ba2014-10-06 05:05:13 -0700222{
Simon Horman25cd9ba2014-10-06 05:05:13 -0700223 int err;
224
Jiri Pirkoe2195122014-11-19 14:05:01 +0100225 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700226 if (unlikely(err))
227 return err;
228
Jiri Benc85de4a22016-09-30 19:08:07 +0200229 skb_postpull_rcsum(skb, mpls_hdr(skb), MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700230
231 memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
232 skb->mac_len);
233
234 __skb_pull(skb, MPLS_HLEN);
235 skb_reset_mac_header(skb);
David Ahern48d2ab62016-08-24 20:10:44 -0700236 skb_set_network_header(skb, skb->mac_len);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700237
Jiri Benc1560a072016-11-10 16:28:20 +0100238 if (ovs_key_mac_proto(key) == MAC_PROTO_ETHERNET) {
239 struct ethhdr *hdr;
240
241 /* mpls_hdr() is used to locate the ethertype field correctly in the
242 * presence of VLAN tags.
243 */
244 hdr = (struct ethhdr *)((void *)mpls_hdr(skb) - ETH_HLEN);
245 update_ethertype(skb, hdr, ethertype);
246 }
Simon Horman25cd9ba2014-10-06 05:05:13 -0700247 if (eth_p_mpls(skb->protocol))
248 skb->protocol = ethertype;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800249
250 invalidate_flow_key(key);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700251 return 0;
252}
253
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800254static int set_mpls(struct sk_buff *skb, struct sw_flow_key *flow_key,
255 const __be32 *mpls_lse, const __be32 *mask)
Simon Horman25cd9ba2014-10-06 05:05:13 -0700256{
Jiri Benc85de4a22016-09-30 19:08:07 +0200257 struct mpls_shim_hdr *stack;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800258 __be32 lse;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700259 int err;
260
Jiri Pirkoe2195122014-11-19 14:05:01 +0100261 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700262 if (unlikely(err))
263 return err;
264
Jiri Benc85de4a22016-09-30 19:08:07 +0200265 stack = mpls_hdr(skb);
266 lse = OVS_MASKED(stack->label_stack_entry, *mpls_lse, *mask);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700267 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Jiri Benc85de4a22016-09-30 19:08:07 +0200268 __be32 diff[] = { ~(stack->label_stack_entry), lse };
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800269
Simon Horman25cd9ba2014-10-06 05:05:13 -0700270 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
271 ~skb->csum);
272 }
273
Jiri Benc85de4a22016-09-30 19:08:07 +0200274 stack->label_stack_entry = lse;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800275 flow_key->mpls.top_lse = lse;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700276 return 0;
277}
278
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800279static int pop_vlan(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700280{
Jesse Grossccb13522011-10-25 19:26:31 -0700281 int err;
282
Jiri Pirko93515d52014-11-19 14:05:02 +0100283 err = skb_vlan_pop(skb);
Eric Garver018c1dd2016-09-07 12:56:59 -0400284 if (skb_vlan_tag_present(skb)) {
Jiri Pirko93515d52014-11-19 14:05:02 +0100285 invalidate_flow_key(key);
Eric Garver018c1dd2016-09-07 12:56:59 -0400286 } else {
287 key->eth.vlan.tci = 0;
288 key->eth.vlan.tpid = 0;
289 }
Jiri Pirko93515d52014-11-19 14:05:02 +0100290 return err;
Jesse Grossccb13522011-10-25 19:26:31 -0700291}
292
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800293static int push_vlan(struct sk_buff *skb, struct sw_flow_key *key,
294 const struct ovs_action_push_vlan *vlan)
Jesse Grossccb13522011-10-25 19:26:31 -0700295{
Eric Garver018c1dd2016-09-07 12:56:59 -0400296 if (skb_vlan_tag_present(skb)) {
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800297 invalidate_flow_key(key);
Eric Garver018c1dd2016-09-07 12:56:59 -0400298 } else {
299 key->eth.vlan.tci = vlan->vlan_tci;
300 key->eth.vlan.tpid = vlan->vlan_tpid;
301 }
Jiri Pirko93515d52014-11-19 14:05:02 +0100302 return skb_vlan_push(skb, vlan->vlan_tpid,
303 ntohs(vlan->vlan_tci) & ~VLAN_TAG_PRESENT);
Jesse Grossccb13522011-10-25 19:26:31 -0700304}
305
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800306/* 'src' is already properly masked. */
307static void ether_addr_copy_masked(u8 *dst_, const u8 *src_, const u8 *mask_)
308{
309 u16 *dst = (u16 *)dst_;
310 const u16 *src = (const u16 *)src_;
311 const u16 *mask = (const u16 *)mask_;
312
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700313 OVS_SET_MASKED(dst[0], src[0], mask[0]);
314 OVS_SET_MASKED(dst[1], src[1], mask[1]);
315 OVS_SET_MASKED(dst[2], src[2], mask[2]);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800316}
317
318static int set_eth_addr(struct sk_buff *skb, struct sw_flow_key *flow_key,
319 const struct ovs_key_ethernet *key,
320 const struct ovs_key_ethernet *mask)
Jesse Grossccb13522011-10-25 19:26:31 -0700321{
322 int err;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800323
Jiri Pirkoe2195122014-11-19 14:05:01 +0100324 err = skb_ensure_writable(skb, ETH_HLEN);
Jesse Grossccb13522011-10-25 19:26:31 -0700325 if (unlikely(err))
326 return err;
327
Pravin B Shelarb34df5e2013-06-13 11:11:44 -0700328 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
329
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800330 ether_addr_copy_masked(eth_hdr(skb)->h_source, key->eth_src,
331 mask->eth_src);
332 ether_addr_copy_masked(eth_hdr(skb)->h_dest, key->eth_dst,
333 mask->eth_dst);
Jesse Grossccb13522011-10-25 19:26:31 -0700334
Daniel Borkmann6b83d282016-02-20 00:29:30 +0100335 skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
Pravin B Shelarb34df5e2013-06-13 11:11:44 -0700336
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800337 ether_addr_copy(flow_key->eth.src, eth_hdr(skb)->h_source);
338 ether_addr_copy(flow_key->eth.dst, eth_hdr(skb)->h_dest);
Jesse Grossccb13522011-10-25 19:26:31 -0700339 return 0;
340}
341
Jiri Benc91820da2016-11-10 16:28:23 +0100342/* pop_eth does not support VLAN packets as this action is never called
343 * for them.
344 */
345static int pop_eth(struct sk_buff *skb, struct sw_flow_key *key)
346{
347 skb_pull_rcsum(skb, ETH_HLEN);
348 skb_reset_mac_header(skb);
349 skb_reset_mac_len(skb);
350
351 /* safe right before invalidate_flow_key */
352 key->mac_proto = MAC_PROTO_NONE;
353 invalidate_flow_key(key);
354 return 0;
355}
356
357static int push_eth(struct sk_buff *skb, struct sw_flow_key *key,
358 const struct ovs_action_push_eth *ethh)
359{
360 struct ethhdr *hdr;
361
362 /* Add the new Ethernet header */
363 if (skb_cow_head(skb, ETH_HLEN) < 0)
364 return -ENOMEM;
365
366 skb_push(skb, ETH_HLEN);
367 skb_reset_mac_header(skb);
368 skb_reset_mac_len(skb);
369
370 hdr = eth_hdr(skb);
371 ether_addr_copy(hdr->h_source, ethh->addresses.eth_src);
372 ether_addr_copy(hdr->h_dest, ethh->addresses.eth_dst);
373 hdr->h_proto = skb->protocol;
374
375 skb_postpush_rcsum(skb, hdr, ETH_HLEN);
376
377 /* safe right before invalidate_flow_key */
378 key->mac_proto = MAC_PROTO_ETHERNET;
379 invalidate_flow_key(key);
380 return 0;
381}
382
Glenn Griffin3576fd72015-08-03 09:56:54 -0700383static void update_ip_l4_checksum(struct sk_buff *skb, struct iphdr *nh,
384 __be32 addr, __be32 new_addr)
Jesse Grossccb13522011-10-25 19:26:31 -0700385{
386 int transport_len = skb->len - skb_transport_offset(skb);
387
Glenn Griffin3576fd72015-08-03 09:56:54 -0700388 if (nh->frag_off & htons(IP_OFFSET))
389 return;
390
Jesse Grossccb13522011-10-25 19:26:31 -0700391 if (nh->protocol == IPPROTO_TCP) {
392 if (likely(transport_len >= sizeof(struct tcphdr)))
393 inet_proto_csum_replace4(&tcp_hdr(skb)->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700394 addr, new_addr, true);
Jesse Grossccb13522011-10-25 19:26:31 -0700395 } else if (nh->protocol == IPPROTO_UDP) {
Jesse Gross81e5d412012-03-06 15:05:46 -0800396 if (likely(transport_len >= sizeof(struct udphdr))) {
397 struct udphdr *uh = udp_hdr(skb);
398
399 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
400 inet_proto_csum_replace4(&uh->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700401 addr, new_addr, true);
Jesse Gross81e5d412012-03-06 15:05:46 -0800402 if (!uh->check)
403 uh->check = CSUM_MANGLED_0;
404 }
405 }
Jesse Grossccb13522011-10-25 19:26:31 -0700406 }
Glenn Griffin3576fd72015-08-03 09:56:54 -0700407}
Jesse Grossccb13522011-10-25 19:26:31 -0700408
Glenn Griffin3576fd72015-08-03 09:56:54 -0700409static void set_ip_addr(struct sk_buff *skb, struct iphdr *nh,
410 __be32 *addr, __be32 new_addr)
411{
412 update_ip_l4_checksum(skb, nh, *addr, new_addr);
Jesse Grossccb13522011-10-25 19:26:31 -0700413 csum_replace4(&nh->check, *addr, new_addr);
Tom Herbert7539fad2013-12-15 22:12:18 -0800414 skb_clear_hash(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700415 *addr = new_addr;
416}
417
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800418static void update_ipv6_checksum(struct sk_buff *skb, u8 l4_proto,
419 __be32 addr[4], const __be32 new_addr[4])
420{
421 int transport_len = skb->len - skb_transport_offset(skb);
422
Jesse Gross856447d2014-11-11 14:32:20 -0800423 if (l4_proto == NEXTHDR_TCP) {
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800424 if (likely(transport_len >= sizeof(struct tcphdr)))
425 inet_proto_csum_replace16(&tcp_hdr(skb)->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700426 addr, new_addr, true);
Jesse Gross856447d2014-11-11 14:32:20 -0800427 } else if (l4_proto == NEXTHDR_UDP) {
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800428 if (likely(transport_len >= sizeof(struct udphdr))) {
429 struct udphdr *uh = udp_hdr(skb);
430
431 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
432 inet_proto_csum_replace16(&uh->check, skb,
Tom Herbert4b048d62015-08-17 13:42:25 -0700433 addr, new_addr, true);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800434 if (!uh->check)
435 uh->check = CSUM_MANGLED_0;
436 }
437 }
Jesse Gross856447d2014-11-11 14:32:20 -0800438 } else if (l4_proto == NEXTHDR_ICMP) {
439 if (likely(transport_len >= sizeof(struct icmp6hdr)))
440 inet_proto_csum_replace16(&icmp6_hdr(skb)->icmp6_cksum,
Tom Herbert4b048d62015-08-17 13:42:25 -0700441 skb, addr, new_addr, true);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800442 }
443}
444
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800445static void mask_ipv6_addr(const __be32 old[4], const __be32 addr[4],
446 const __be32 mask[4], __be32 masked[4])
447{
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700448 masked[0] = OVS_MASKED(old[0], addr[0], mask[0]);
449 masked[1] = OVS_MASKED(old[1], addr[1], mask[1]);
450 masked[2] = OVS_MASKED(old[2], addr[2], mask[2]);
451 masked[3] = OVS_MASKED(old[3], addr[3], mask[3]);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800452}
453
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800454static void set_ipv6_addr(struct sk_buff *skb, u8 l4_proto,
455 __be32 addr[4], const __be32 new_addr[4],
456 bool recalculate_csum)
457{
458 if (recalculate_csum)
459 update_ipv6_checksum(skb, l4_proto, addr, new_addr);
460
Tom Herbert7539fad2013-12-15 22:12:18 -0800461 skb_clear_hash(skb);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800462 memcpy(addr, new_addr, sizeof(__be32[4]));
463}
464
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800465static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl, u32 mask)
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800466{
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800467 /* Bits 21-24 are always unmasked, so this retains their values. */
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700468 OVS_SET_MASKED(nh->flow_lbl[0], (u8)(fl >> 16), (u8)(mask >> 16));
469 OVS_SET_MASKED(nh->flow_lbl[1], (u8)(fl >> 8), (u8)(mask >> 8));
470 OVS_SET_MASKED(nh->flow_lbl[2], (u8)fl, (u8)mask);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800471}
472
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800473static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl,
474 u8 mask)
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800475{
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700476 new_ttl = OVS_MASKED(nh->ttl, new_ttl, mask);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800477
Jesse Grossccb13522011-10-25 19:26:31 -0700478 csum_replace2(&nh->check, htons(nh->ttl << 8), htons(new_ttl << 8));
479 nh->ttl = new_ttl;
480}
481
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800482static int set_ipv4(struct sk_buff *skb, struct sw_flow_key *flow_key,
483 const struct ovs_key_ipv4 *key,
484 const struct ovs_key_ipv4 *mask)
Jesse Grossccb13522011-10-25 19:26:31 -0700485{
486 struct iphdr *nh;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800487 __be32 new_addr;
Jesse Grossccb13522011-10-25 19:26:31 -0700488 int err;
489
Jiri Pirkoe2195122014-11-19 14:05:01 +0100490 err = skb_ensure_writable(skb, skb_network_offset(skb) +
491 sizeof(struct iphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700492 if (unlikely(err))
493 return err;
494
495 nh = ip_hdr(skb);
496
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800497 /* Setting an IP addresses is typically only a side effect of
498 * matching on them in the current userspace implementation, so it
499 * makes sense to check if the value actually changed.
500 */
501 if (mask->ipv4_src) {
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700502 new_addr = OVS_MASKED(nh->saddr, key->ipv4_src, mask->ipv4_src);
Jesse Grossccb13522011-10-25 19:26:31 -0700503
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800504 if (unlikely(new_addr != nh->saddr)) {
505 set_ip_addr(skb, nh, &nh->saddr, new_addr);
506 flow_key->ipv4.addr.src = new_addr;
507 }
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800508 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800509 if (mask->ipv4_dst) {
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700510 new_addr = OVS_MASKED(nh->daddr, key->ipv4_dst, mask->ipv4_dst);
Jesse Grossccb13522011-10-25 19:26:31 -0700511
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800512 if (unlikely(new_addr != nh->daddr)) {
513 set_ip_addr(skb, nh, &nh->daddr, new_addr);
514 flow_key->ipv4.addr.dst = new_addr;
515 }
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800516 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800517 if (mask->ipv4_tos) {
518 ipv4_change_dsfield(nh, ~mask->ipv4_tos, key->ipv4_tos);
519 flow_key->ip.tos = nh->tos;
520 }
521 if (mask->ipv4_ttl) {
522 set_ip_ttl(skb, nh, key->ipv4_ttl, mask->ipv4_ttl);
523 flow_key->ip.ttl = nh->ttl;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800524 }
Jesse Grossccb13522011-10-25 19:26:31 -0700525
526 return 0;
527}
528
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800529static bool is_ipv6_mask_nonzero(const __be32 addr[4])
530{
531 return !!(addr[0] | addr[1] | addr[2] | addr[3]);
532}
533
534static int set_ipv6(struct sk_buff *skb, struct sw_flow_key *flow_key,
535 const struct ovs_key_ipv6 *key,
536 const struct ovs_key_ipv6 *mask)
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800537{
538 struct ipv6hdr *nh;
539 int err;
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800540
Jiri Pirkoe2195122014-11-19 14:05:01 +0100541 err = skb_ensure_writable(skb, skb_network_offset(skb) +
542 sizeof(struct ipv6hdr));
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800543 if (unlikely(err))
544 return err;
545
546 nh = ipv6_hdr(skb);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800547
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800548 /* Setting an IP addresses is typically only a side effect of
549 * matching on them in the current userspace implementation, so it
550 * makes sense to check if the value actually changed.
551 */
552 if (is_ipv6_mask_nonzero(mask->ipv6_src)) {
553 __be32 *saddr = (__be32 *)&nh->saddr;
554 __be32 masked[4];
555
556 mask_ipv6_addr(saddr, key->ipv6_src, mask->ipv6_src, masked);
557
558 if (unlikely(memcmp(saddr, masked, sizeof(masked)))) {
Simon Hormanb4f70522016-04-21 11:49:15 +1000559 set_ipv6_addr(skb, flow_key->ip.proto, saddr, masked,
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800560 true);
561 memcpy(&flow_key->ipv6.addr.src, masked,
562 sizeof(flow_key->ipv6.addr.src));
563 }
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800564 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800565 if (is_ipv6_mask_nonzero(mask->ipv6_dst)) {
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800566 unsigned int offset = 0;
567 int flags = IP6_FH_F_SKIP_RH;
568 bool recalc_csum = true;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800569 __be32 *daddr = (__be32 *)&nh->daddr;
570 __be32 masked[4];
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800571
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800572 mask_ipv6_addr(daddr, key->ipv6_dst, mask->ipv6_dst, masked);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800573
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800574 if (unlikely(memcmp(daddr, masked, sizeof(masked)))) {
575 if (ipv6_ext_hdr(nh->nexthdr))
576 recalc_csum = (ipv6_find_hdr(skb, &offset,
577 NEXTHDR_ROUTING,
578 NULL, &flags)
579 != NEXTHDR_ROUTING);
580
Simon Hormanb4f70522016-04-21 11:49:15 +1000581 set_ipv6_addr(skb, flow_key->ip.proto, daddr, masked,
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800582 recalc_csum);
583 memcpy(&flow_key->ipv6.addr.dst, masked,
584 sizeof(flow_key->ipv6.addr.dst));
585 }
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800586 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800587 if (mask->ipv6_tclass) {
588 ipv6_change_dsfield(nh, ~mask->ipv6_tclass, key->ipv6_tclass);
589 flow_key->ip.tos = ipv6_get_dsfield(nh);
590 }
591 if (mask->ipv6_label) {
592 set_ipv6_fl(nh, ntohl(key->ipv6_label),
593 ntohl(mask->ipv6_label));
594 flow_key->ipv6.label =
595 *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL);
596 }
597 if (mask->ipv6_hlimit) {
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700598 OVS_SET_MASKED(nh->hop_limit, key->ipv6_hlimit,
599 mask->ipv6_hlimit);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800600 flow_key->ip.ttl = nh->hop_limit;
601 }
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800602 return 0;
603}
604
Jiri Pirkoe2195122014-11-19 14:05:01 +0100605/* Must follow skb_ensure_writable() since that can move the skb data. */
Jesse Grossccb13522011-10-25 19:26:31 -0700606static void set_tp_port(struct sk_buff *skb, __be16 *port,
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800607 __be16 new_port, __sum16 *check)
Jesse Grossccb13522011-10-25 19:26:31 -0700608{
Tom Herbert4b048d62015-08-17 13:42:25 -0700609 inet_proto_csum_replace2(check, skb, *port, new_port, false);
Jesse Grossccb13522011-10-25 19:26:31 -0700610 *port = new_port;
Jesse Grossccb13522011-10-25 19:26:31 -0700611}
612
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800613static int set_udp(struct sk_buff *skb, struct sw_flow_key *flow_key,
614 const struct ovs_key_udp *key,
615 const struct ovs_key_udp *mask)
Jesse Grossccb13522011-10-25 19:26:31 -0700616{
617 struct udphdr *uh;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800618 __be16 src, dst;
Jesse Grossccb13522011-10-25 19:26:31 -0700619 int err;
620
Jiri Pirkoe2195122014-11-19 14:05:01 +0100621 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
622 sizeof(struct udphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700623 if (unlikely(err))
624 return err;
625
626 uh = udp_hdr(skb);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800627 /* Either of the masks is non-zero, so do not bother checking them. */
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700628 src = OVS_MASKED(uh->source, key->udp_src, mask->udp_src);
629 dst = OVS_MASKED(uh->dest, key->udp_dst, mask->udp_dst);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800630
631 if (uh->check && skb->ip_summed != CHECKSUM_PARTIAL) {
632 if (likely(src != uh->source)) {
633 set_tp_port(skb, &uh->source, src, &uh->check);
634 flow_key->tp.src = src;
635 }
636 if (likely(dst != uh->dest)) {
637 set_tp_port(skb, &uh->dest, dst, &uh->check);
638 flow_key->tp.dst = dst;
639 }
640
641 if (unlikely(!uh->check))
642 uh->check = CSUM_MANGLED_0;
643 } else {
644 uh->source = src;
645 uh->dest = dst;
646 flow_key->tp.src = src;
647 flow_key->tp.dst = dst;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800648 }
Jesse Grossccb13522011-10-25 19:26:31 -0700649
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800650 skb_clear_hash(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700651
652 return 0;
653}
654
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800655static int set_tcp(struct sk_buff *skb, struct sw_flow_key *flow_key,
656 const struct ovs_key_tcp *key,
657 const struct ovs_key_tcp *mask)
Jesse Grossccb13522011-10-25 19:26:31 -0700658{
659 struct tcphdr *th;
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800660 __be16 src, dst;
Jesse Grossccb13522011-10-25 19:26:31 -0700661 int err;
662
Jiri Pirkoe2195122014-11-19 14:05:01 +0100663 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
664 sizeof(struct tcphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700665 if (unlikely(err))
666 return err;
667
668 th = tcp_hdr(skb);
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700669 src = OVS_MASKED(th->source, key->tcp_src, mask->tcp_src);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800670 if (likely(src != th->source)) {
671 set_tp_port(skb, &th->source, src, &th->check);
672 flow_key->tp.src = src;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800673 }
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700674 dst = OVS_MASKED(th->dest, key->tcp_dst, mask->tcp_dst);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800675 if (likely(dst != th->dest)) {
676 set_tp_port(skb, &th->dest, dst, &th->check);
677 flow_key->tp.dst = dst;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800678 }
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800679 skb_clear_hash(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700680
681 return 0;
682}
683
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800684static int set_sctp(struct sk_buff *skb, struct sw_flow_key *flow_key,
685 const struct ovs_key_sctp *key,
686 const struct ovs_key_sctp *mask)
Joe Stringera175a722013-08-22 12:30:48 -0700687{
Joe Stringera175a722013-08-22 12:30:48 -0700688 unsigned int sctphoff = skb_transport_offset(skb);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800689 struct sctphdr *sh;
690 __le32 old_correct_csum, new_csum, old_csum;
691 int err;
Joe Stringera175a722013-08-22 12:30:48 -0700692
Jiri Pirkoe2195122014-11-19 14:05:01 +0100693 err = skb_ensure_writable(skb, sctphoff + sizeof(struct sctphdr));
Joe Stringera175a722013-08-22 12:30:48 -0700694 if (unlikely(err))
695 return err;
696
697 sh = sctp_hdr(skb);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800698 old_csum = sh->checksum;
699 old_correct_csum = sctp_compute_cksum(skb, sctphoff);
Joe Stringera175a722013-08-22 12:30:48 -0700700
Joe Stringerbe26b9a2015-08-26 11:31:45 -0700701 sh->source = OVS_MASKED(sh->source, key->sctp_src, mask->sctp_src);
702 sh->dest = OVS_MASKED(sh->dest, key->sctp_dst, mask->sctp_dst);
Joe Stringera175a722013-08-22 12:30:48 -0700703
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800704 new_csum = sctp_compute_cksum(skb, sctphoff);
Joe Stringera175a722013-08-22 12:30:48 -0700705
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800706 /* Carry any checksum errors through. */
707 sh->checksum = old_csum ^ old_correct_csum ^ new_csum;
Joe Stringera175a722013-08-22 12:30:48 -0700708
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800709 skb_clear_hash(skb);
710 flow_key->tp.src = sh->source;
711 flow_key->tp.dst = sh->dest;
Joe Stringera175a722013-08-22 12:30:48 -0700712
713 return 0;
714}
715
Eric W. Biederman188515f2015-09-14 20:08:51 -0500716static int ovs_vport_output(struct net *net, struct sock *sk, struct sk_buff *skb)
Joe Stringer7f8a4362015-08-26 11:31:48 -0700717{
718 struct ovs_frag_data *data = this_cpu_ptr(&ovs_frag_data_storage);
719 struct vport *vport = data->vport;
720
721 if (skb_cow_head(skb, data->l2_len) < 0) {
722 kfree_skb(skb);
723 return -ENOMEM;
724 }
725
726 __skb_dst_copy(skb, data->dst);
727 *OVS_CB(skb) = data->cb;
728 skb->inner_protocol = data->inner_protocol;
729 skb->vlan_tci = data->vlan_tci;
730 skb->vlan_proto = data->vlan_proto;
731
732 /* Reconstruct the MAC header. */
733 skb_push(skb, data->l2_len);
734 memcpy(skb->data, &data->l2_data, data->l2_len);
Daniel Borkmann6b83d282016-02-20 00:29:30 +0100735 skb_postpush_rcsum(skb, skb->data, data->l2_len);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700736 skb_reset_mac_header(skb);
737
Jiri Bencc66549f2016-10-05 15:01:57 +0200738 if (eth_p_mpls(skb->protocol)) {
739 skb->inner_network_header = skb->network_header;
740 skb_set_network_header(skb, data->network_offset);
741 skb_reset_mac_len(skb);
742 }
743
Jiri Bence2d9d832016-11-10 16:28:19 +0100744 ovs_vport_send(vport, skb, data->mac_proto);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700745 return 0;
746}
747
748static unsigned int
749ovs_dst_get_mtu(const struct dst_entry *dst)
750{
751 return dst->dev->mtu;
752}
753
754static struct dst_ops ovs_dst_ops = {
755 .family = AF_UNSPEC,
756 .mtu = ovs_dst_get_mtu,
757};
758
759/* prepare_frag() is called once per (larger-than-MTU) frame; its inverse is
760 * ovs_vport_output(), which is called once per fragmented packet.
761 */
Jiri Bencc66549f2016-10-05 15:01:57 +0200762static void prepare_frag(struct vport *vport, struct sk_buff *skb,
Jiri Bence2d9d832016-11-10 16:28:19 +0100763 u16 orig_network_offset, u8 mac_proto)
Joe Stringer7f8a4362015-08-26 11:31:48 -0700764{
765 unsigned int hlen = skb_network_offset(skb);
766 struct ovs_frag_data *data;
767
768 data = this_cpu_ptr(&ovs_frag_data_storage);
769 data->dst = skb->_skb_refdst;
770 data->vport = vport;
771 data->cb = *OVS_CB(skb);
772 data->inner_protocol = skb->inner_protocol;
Jiri Bencc66549f2016-10-05 15:01:57 +0200773 data->network_offset = orig_network_offset;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700774 data->vlan_tci = skb->vlan_tci;
775 data->vlan_proto = skb->vlan_proto;
Jiri Bence2d9d832016-11-10 16:28:19 +0100776 data->mac_proto = mac_proto;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700777 data->l2_len = hlen;
778 memcpy(&data->l2_data, skb->data, hlen);
779
780 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
781 skb_pull(skb, hlen);
782}
783
Eric W. Biedermanc559cd32015-09-14 20:10:28 -0500784static void ovs_fragment(struct net *net, struct vport *vport,
Jiri Bence2d9d832016-11-10 16:28:19 +0100785 struct sk_buff *skb, u16 mru,
786 struct sw_flow_key *key)
Joe Stringer7f8a4362015-08-26 11:31:48 -0700787{
Jiri Bencc66549f2016-10-05 15:01:57 +0200788 u16 orig_network_offset = 0;
789
790 if (eth_p_mpls(skb->protocol)) {
791 orig_network_offset = skb_network_offset(skb);
792 skb->network_header = skb->inner_network_header;
793 }
794
Joe Stringer7f8a4362015-08-26 11:31:48 -0700795 if (skb_network_offset(skb) > MAX_L2_LEN) {
796 OVS_NLERR(1, "L2 header too long to fragment");
Joe Stringerb8f22572015-10-06 10:59:57 -0700797 goto err;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700798 }
799
Jiri Bence2d9d832016-11-10 16:28:19 +0100800 if (key->eth.type == htons(ETH_P_IP)) {
Joe Stringer7f8a4362015-08-26 11:31:48 -0700801 struct dst_entry ovs_dst;
802 unsigned long orig_dst;
803
Jiri Bence2d9d832016-11-10 16:28:19 +0100804 prepare_frag(vport, skb, orig_network_offset,
805 ovs_key_mac_proto(key));
Joe Stringer7f8a4362015-08-26 11:31:48 -0700806 dst_init(&ovs_dst, &ovs_dst_ops, NULL, 1,
807 DST_OBSOLETE_NONE, DST_NOCOUNT);
808 ovs_dst.dev = vport->dev;
809
810 orig_dst = skb->_skb_refdst;
811 skb_dst_set_noref(skb, &ovs_dst);
812 IPCB(skb)->frag_max_size = mru;
813
Eric W. Biederman694869b2015-06-12 21:55:31 -0500814 ip_do_fragment(net, skb->sk, skb, ovs_vport_output);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700815 refdst_drop(orig_dst);
Jiri Bence2d9d832016-11-10 16:28:19 +0100816 } else if (key->eth.type == htons(ETH_P_IPV6)) {
Joe Stringer7f8a4362015-08-26 11:31:48 -0700817 const struct nf_ipv6_ops *v6ops = nf_get_ipv6_ops();
818 unsigned long orig_dst;
819 struct rt6_info ovs_rt;
820
Peter Downsf1304f72017-03-01 01:01:17 -0800821 if (!v6ops)
Joe Stringerb8f22572015-10-06 10:59:57 -0700822 goto err;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700823
Jiri Bence2d9d832016-11-10 16:28:19 +0100824 prepare_frag(vport, skb, orig_network_offset,
825 ovs_key_mac_proto(key));
Joe Stringer7f8a4362015-08-26 11:31:48 -0700826 memset(&ovs_rt, 0, sizeof(ovs_rt));
827 dst_init(&ovs_rt.dst, &ovs_dst_ops, NULL, 1,
828 DST_OBSOLETE_NONE, DST_NOCOUNT);
829 ovs_rt.dst.dev = vport->dev;
830
831 orig_dst = skb->_skb_refdst;
832 skb_dst_set_noref(skb, &ovs_rt.dst);
833 IP6CB(skb)->frag_max_size = mru;
834
Eric W. Biederman7d8c6e32015-06-12 22:12:04 -0500835 v6ops->fragment(net, skb->sk, skb, ovs_vport_output);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700836 refdst_drop(orig_dst);
837 } else {
838 WARN_ONCE(1, "Failed fragment ->%s: eth=%04x, MRU=%d, MTU=%d.",
Jiri Bence2d9d832016-11-10 16:28:19 +0100839 ovs_vport_name(vport), ntohs(key->eth.type), mru,
Joe Stringer7f8a4362015-08-26 11:31:48 -0700840 vport->dev->mtu);
Joe Stringerb8f22572015-10-06 10:59:57 -0700841 goto err;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700842 }
Joe Stringerb8f22572015-10-06 10:59:57 -0700843
844 return;
845err:
846 kfree_skb(skb);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700847}
848
849static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port,
850 struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700851{
Andy Zhou738967b2014-09-08 00:35:02 -0700852 struct vport *vport = ovs_vport_rcu(dp, out_port);
Jesse Grossccb13522011-10-25 19:26:31 -0700853
Joe Stringer7f8a4362015-08-26 11:31:48 -0700854 if (likely(vport)) {
855 u16 mru = OVS_CB(skb)->mru;
William Tuf2a4d082016-06-10 11:49:33 -0700856 u32 cutlen = OVS_CB(skb)->cutlen;
857
858 if (unlikely(cutlen > 0)) {
Jiri Bence2d9d832016-11-10 16:28:19 +0100859 if (skb->len - cutlen > ovs_mac_header_len(key))
William Tuf2a4d082016-06-10 11:49:33 -0700860 pskb_trim(skb, skb->len - cutlen);
861 else
Jiri Bence2d9d832016-11-10 16:28:19 +0100862 pskb_trim(skb, ovs_mac_header_len(key));
William Tuf2a4d082016-06-10 11:49:33 -0700863 }
Joe Stringer7f8a4362015-08-26 11:31:48 -0700864
Jiri Benc738314a2016-11-10 16:28:17 +0100865 if (likely(!mru ||
866 (skb->len <= mru + vport->dev->hard_header_len))) {
Jiri Bence2d9d832016-11-10 16:28:19 +0100867 ovs_vport_send(vport, skb, ovs_key_mac_proto(key));
Joe Stringer7f8a4362015-08-26 11:31:48 -0700868 } else if (mru <= vport->dev->mtu) {
Eric W. Biedermanc559cd32015-09-14 20:10:28 -0500869 struct net *net = read_pnet(&dp->net);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700870
Jiri Bence2d9d832016-11-10 16:28:19 +0100871 ovs_fragment(net, vport, skb, mru, key);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700872 } else {
873 kfree_skb(skb);
874 }
875 } else {
Jesse Grossccb13522011-10-25 19:26:31 -0700876 kfree_skb(skb);
Joe Stringer7f8a4362015-08-26 11:31:48 -0700877 }
Jesse Grossccb13522011-10-25 19:26:31 -0700878}
879
880static int output_userspace(struct datapath *dp, struct sk_buff *skb,
Neil McKeeccea7442015-05-26 20:59:43 -0700881 struct sw_flow_key *key, const struct nlattr *attr,
William Tuf2a4d082016-06-10 11:49:33 -0700882 const struct nlattr *actions, int actions_len,
883 uint32_t cutlen)
Jesse Grossccb13522011-10-25 19:26:31 -0700884{
885 struct dp_upcall_info upcall;
886 const struct nlattr *a;
887 int rem;
888
Neil McKeeccea7442015-05-26 20:59:43 -0700889 memset(&upcall, 0, sizeof(upcall));
Jesse Grossccb13522011-10-25 19:26:31 -0700890 upcall.cmd = OVS_PACKET_CMD_ACTION;
Joe Stringer7f8a4362015-08-26 11:31:48 -0700891 upcall.mru = OVS_CB(skb)->mru;
Jesse Grossccb13522011-10-25 19:26:31 -0700892
893 for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
894 a = nla_next(a, &rem)) {
895 switch (nla_type(a)) {
896 case OVS_USERSPACE_ATTR_USERDATA:
897 upcall.userdata = a;
898 break;
899
900 case OVS_USERSPACE_ATTR_PID:
Eric W. Biederman15e47302012-09-07 20:12:54 +0000901 upcall.portid = nla_get_u32(a);
Jesse Grossccb13522011-10-25 19:26:31 -0700902 break;
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800903
904 case OVS_USERSPACE_ATTR_EGRESS_TUN_PORT: {
905 /* Get out tunnel info. */
906 struct vport *vport;
907
908 vport = ovs_vport_rcu(dp, nla_get_u32(a));
909 if (vport) {
910 int err;
911
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700912 err = dev_fill_metadata_dst(vport->dev, skb);
913 if (!err)
914 upcall.egress_tun_info = skb_tunnel_info(skb);
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800915 }
Pravin B Shelar4c222792015-08-30 18:09:38 -0700916
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800917 break;
Jesse Grossccb13522011-10-25 19:26:31 -0700918 }
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800919
Neil McKeeccea7442015-05-26 20:59:43 -0700920 case OVS_USERSPACE_ATTR_ACTIONS: {
921 /* Include actions. */
922 upcall.actions = actions;
923 upcall.actions_len = actions_len;
924 break;
925 }
926
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800927 } /* End of switch. */
Jesse Grossccb13522011-10-25 19:26:31 -0700928 }
929
William Tuf2a4d082016-06-10 11:49:33 -0700930 return ovs_dp_upcall(dp, skb, key, &upcall, cutlen);
Jesse Grossccb13522011-10-25 19:26:31 -0700931}
932
andy zhou798c1662017-03-20 16:32:29 -0700933/* When 'last' is true, sample() should always consume the 'skb'.
934 * Otherwise, sample() should keep 'skb' intact regardless what
935 * actions are executed within sample().
936 */
Jesse Grossccb13522011-10-25 19:26:31 -0700937static int sample(struct datapath *dp, struct sk_buff *skb,
Neil McKeeccea7442015-05-26 20:59:43 -0700938 struct sw_flow_key *key, const struct nlattr *attr,
andy zhou798c1662017-03-20 16:32:29 -0700939 bool last)
Jesse Grossccb13522011-10-25 19:26:31 -0700940{
andy zhou798c1662017-03-20 16:32:29 -0700941 struct nlattr *actions;
942 struct nlattr *sample_arg;
andy zhou798c1662017-03-20 16:32:29 -0700943 int rem = nla_len(attr);
andy zhou798c1662017-03-20 16:32:29 -0700944 const struct sample_arg *arg;
andy zhoubef7f752017-03-20 16:32:30 -0700945 bool clone_flow_key;
Jesse Grossccb13522011-10-25 19:26:31 -0700946
andy zhou798c1662017-03-20 16:32:29 -0700947 /* The first action is always 'OVS_SAMPLE_ATTR_ARG'. */
948 sample_arg = nla_data(attr);
949 arg = nla_data(sample_arg);
950 actions = nla_next(sample_arg, &rem);
Wenyu Zhange05176a2015-08-05 00:30:47 -0700951
andy zhou798c1662017-03-20 16:32:29 -0700952 if ((arg->probability != U32_MAX) &&
953 (!arg->probability || prandom_u32() > arg->probability)) {
954 if (last)
955 consume_skb(skb);
956 return 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700957 }
958
andy zhoubef7f752017-03-20 16:32:30 -0700959 clone_flow_key = !arg->exec;
960 return clone_execute(dp, skb, key, 0, actions, rem, last,
961 clone_flow_key);
Andy Zhou971427f32014-09-15 19:37:25 -0700962}
963
964static void execute_hash(struct sk_buff *skb, struct sw_flow_key *key,
965 const struct nlattr *attr)
966{
967 struct ovs_action_hash *hash_act = nla_data(attr);
968 u32 hash = 0;
969
970 /* OVS_HASH_ALG_L4 is the only possible hash algorithm. */
971 hash = skb_get_hash(skb);
972 hash = jhash_1word(hash, hash_act->hash_basis);
973 if (!hash)
974 hash = 0x1;
975
976 key->ovs_flow_hash = hash;
Jesse Grossccb13522011-10-25 19:26:31 -0700977}
978
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800979static int execute_set_action(struct sk_buff *skb,
980 struct sw_flow_key *flow_key,
981 const struct nlattr *a)
982{
983 /* Only tunnel set execution is supported without a mask. */
984 if (nla_type(a) == OVS_KEY_ATTR_TUNNEL_INFO) {
Thomas Graf34ae9322015-07-21 10:44:03 +0200985 struct ovs_tunnel_info *tun = nla_data(a);
986
987 skb_dst_drop(skb);
988 dst_hold((struct dst_entry *)tun->tun_dst);
989 skb_dst_set(skb, (struct dst_entry *)tun->tun_dst);
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -0800990 return 0;
991 }
992
993 return -EINVAL;
994}
995
996/* Mask is at the midpoint of the data. */
997#define get_mask(a, type) ((const type)nla_data(a) + 1)
998
999static int execute_masked_set_action(struct sk_buff *skb,
1000 struct sw_flow_key *flow_key,
1001 const struct nlattr *a)
Jesse Grossccb13522011-10-25 19:26:31 -07001002{
1003 int err = 0;
1004
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001005 switch (nla_type(a)) {
Jesse Grossccb13522011-10-25 19:26:31 -07001006 case OVS_KEY_ATTR_PRIORITY:
Joe Stringerbe26b9a2015-08-26 11:31:45 -07001007 OVS_SET_MASKED(skb->priority, nla_get_u32(a),
1008 *get_mask(a, u32 *));
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001009 flow_key->phy.priority = skb->priority;
Jesse Grossccb13522011-10-25 19:26:31 -07001010 break;
1011
Ansis Atteka39c7caeb2012-11-26 11:24:11 -08001012 case OVS_KEY_ATTR_SKB_MARK:
Joe Stringerbe26b9a2015-08-26 11:31:45 -07001013 OVS_SET_MASKED(skb->mark, nla_get_u32(a), *get_mask(a, u32 *));
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001014 flow_key->phy.skb_mark = skb->mark;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -08001015 break;
1016
Jesse Grossf0b128c2014-10-03 15:35:31 -07001017 case OVS_KEY_ATTR_TUNNEL_INFO:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001018 /* Masked data not supported for tunnel. */
1019 err = -EINVAL;
Pravin B Shelar7d5437c2013-06-17 17:50:18 -07001020 break;
1021
Jesse Grossccb13522011-10-25 19:26:31 -07001022 case OVS_KEY_ATTR_ETHERNET:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001023 err = set_eth_addr(skb, flow_key, nla_data(a),
1024 get_mask(a, struct ovs_key_ethernet *));
Jesse Grossccb13522011-10-25 19:26:31 -07001025 break;
1026
1027 case OVS_KEY_ATTR_IPV4:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001028 err = set_ipv4(skb, flow_key, nla_data(a),
1029 get_mask(a, struct ovs_key_ipv4 *));
Jesse Grossccb13522011-10-25 19:26:31 -07001030 break;
1031
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -08001032 case OVS_KEY_ATTR_IPV6:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001033 err = set_ipv6(skb, flow_key, nla_data(a),
1034 get_mask(a, struct ovs_key_ipv6 *));
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -08001035 break;
1036
Jesse Grossccb13522011-10-25 19:26:31 -07001037 case OVS_KEY_ATTR_TCP:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001038 err = set_tcp(skb, flow_key, nla_data(a),
1039 get_mask(a, struct ovs_key_tcp *));
Jesse Grossccb13522011-10-25 19:26:31 -07001040 break;
1041
1042 case OVS_KEY_ATTR_UDP:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001043 err = set_udp(skb, flow_key, nla_data(a),
1044 get_mask(a, struct ovs_key_udp *));
Jesse Grossccb13522011-10-25 19:26:31 -07001045 break;
Joe Stringera175a722013-08-22 12:30:48 -07001046
1047 case OVS_KEY_ATTR_SCTP:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001048 err = set_sctp(skb, flow_key, nla_data(a),
1049 get_mask(a, struct ovs_key_sctp *));
Joe Stringera175a722013-08-22 12:30:48 -07001050 break;
Simon Horman25cd9ba2014-10-06 05:05:13 -07001051
1052 case OVS_KEY_ATTR_MPLS:
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001053 err = set_mpls(skb, flow_key, nla_data(a), get_mask(a,
1054 __be32 *));
Simon Horman25cd9ba2014-10-06 05:05:13 -07001055 break;
Joe Stringer7f8a4362015-08-26 11:31:48 -07001056
1057 case OVS_KEY_ATTR_CT_STATE:
1058 case OVS_KEY_ATTR_CT_ZONE:
Joe Stringer182e3042015-08-26 11:31:49 -07001059 case OVS_KEY_ATTR_CT_MARK:
Joe Stringer33db4122015-10-01 15:00:37 -07001060 case OVS_KEY_ATTR_CT_LABELS:
Jarno Rajahalme9dd7f892017-02-09 11:21:59 -08001061 case OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV4:
1062 case OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV6:
Joe Stringer7f8a4362015-08-26 11:31:48 -07001063 err = -EINVAL;
1064 break;
Jesse Grossccb13522011-10-25 19:26:31 -07001065 }
1066
1067 return err;
1068}
1069
Andy Zhou971427f32014-09-15 19:37:25 -07001070static int execute_recirc(struct datapath *dp, struct sk_buff *skb,
1071 struct sw_flow_key *key,
andy zhoubef7f752017-03-20 16:32:30 -07001072 const struct nlattr *a, bool last)
Andy Zhou971427f32014-09-15 19:37:25 -07001073{
andy zhoubef7f752017-03-20 16:32:30 -07001074 u32 recirc_id;
Andy Zhou971427f32014-09-15 19:37:25 -07001075
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001076 if (!is_flow_key_valid(key)) {
1077 int err;
1078
1079 err = ovs_flow_key_update(skb, key);
1080 if (err)
1081 return err;
1082 }
1083 BUG_ON(!is_flow_key_valid(key));
Andy Zhou971427f32014-09-15 19:37:25 -07001084
andy zhoubef7f752017-03-20 16:32:30 -07001085 recirc_id = nla_get_u32(a);
1086 return clone_execute(dp, skb, key, recirc_id, NULL, 0, last, true);
Andy Zhou971427f32014-09-15 19:37:25 -07001087}
1088
Jesse Grossccb13522011-10-25 19:26:31 -07001089/* Execute a list of actions against 'skb'. */
1090static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -07001091 struct sw_flow_key *key,
Simon Horman651887b2014-07-21 15:12:34 -07001092 const struct nlattr *attr, int len)
Jesse Grossccb13522011-10-25 19:26:31 -07001093{
Jesse Grossccb13522011-10-25 19:26:31 -07001094 const struct nlattr *a;
1095 int rem;
1096
1097 for (a = attr, rem = len; rem > 0;
1098 a = nla_next(a, &rem)) {
1099 int err = 0;
1100
Jesse Grossccb13522011-10-25 19:26:31 -07001101 switch (nla_type(a)) {
andy zhou5b8784a2017-01-27 13:45:28 -08001102 case OVS_ACTION_ATTR_OUTPUT: {
1103 int port = nla_get_u32(a);
1104 struct sk_buff *clone;
1105
1106 /* Every output action needs a separate clone
1107 * of 'skb', In case the output action is the
1108 * last action, cloning can be avoided.
1109 */
1110 if (nla_is_last(a, rem)) {
1111 do_output(dp, skb, port, key);
1112 /* 'skb' has been used for output.
1113 */
1114 return 0;
1115 }
1116
1117 clone = skb_clone(skb, GFP_ATOMIC);
1118 if (clone)
1119 do_output(dp, clone, port, key);
1120 OVS_CB(skb)->cutlen = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001121 break;
andy zhou5b8784a2017-01-27 13:45:28 -08001122 }
Jesse Grossccb13522011-10-25 19:26:31 -07001123
William Tuf2a4d082016-06-10 11:49:33 -07001124 case OVS_ACTION_ATTR_TRUNC: {
1125 struct ovs_action_trunc *trunc = nla_data(a);
1126
1127 if (skb->len > trunc->max_len)
1128 OVS_CB(skb)->cutlen = skb->len - trunc->max_len;
1129 break;
1130 }
1131
Jesse Grossccb13522011-10-25 19:26:31 -07001132 case OVS_ACTION_ATTR_USERSPACE:
William Tuf2a4d082016-06-10 11:49:33 -07001133 output_userspace(dp, skb, key, a, attr,
1134 len, OVS_CB(skb)->cutlen);
1135 OVS_CB(skb)->cutlen = 0;
Jesse Grossccb13522011-10-25 19:26:31 -07001136 break;
1137
Andy Zhou971427f32014-09-15 19:37:25 -07001138 case OVS_ACTION_ATTR_HASH:
1139 execute_hash(skb, key, a);
1140 break;
1141
Simon Horman25cd9ba2014-10-06 05:05:13 -07001142 case OVS_ACTION_ATTR_PUSH_MPLS:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001143 err = push_mpls(skb, key, nla_data(a));
Simon Horman25cd9ba2014-10-06 05:05:13 -07001144 break;
1145
1146 case OVS_ACTION_ATTR_POP_MPLS:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001147 err = pop_mpls(skb, key, nla_get_be16(a));
Simon Horman25cd9ba2014-10-06 05:05:13 -07001148 break;
1149
Jesse Grossccb13522011-10-25 19:26:31 -07001150 case OVS_ACTION_ATTR_PUSH_VLAN:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001151 err = push_vlan(skb, key, nla_data(a));
Jesse Grossccb13522011-10-25 19:26:31 -07001152 break;
1153
1154 case OVS_ACTION_ATTR_POP_VLAN:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001155 err = pop_vlan(skb, key);
Jesse Grossccb13522011-10-25 19:26:31 -07001156 break;
1157
andy zhoubef7f752017-03-20 16:32:30 -07001158 case OVS_ACTION_ATTR_RECIRC: {
1159 bool last = nla_is_last(a, rem);
1160
1161 err = execute_recirc(dp, skb, key, a, last);
1162 if (last) {
Andy Zhou971427f32014-09-15 19:37:25 -07001163 /* If this is the last action, the skb has
1164 * been consumed or freed.
1165 * Return immediately.
1166 */
1167 return err;
1168 }
1169 break;
andy zhoubef7f752017-03-20 16:32:30 -07001170 }
Andy Zhou971427f32014-09-15 19:37:25 -07001171
Jesse Grossccb13522011-10-25 19:26:31 -07001172 case OVS_ACTION_ATTR_SET:
Pravin B Shelarfff06c32014-11-06 06:55:14 -08001173 err = execute_set_action(skb, key, nla_data(a));
Jesse Grossccb13522011-10-25 19:26:31 -07001174 break;
1175
Jarno Rajahalme83d2b9b2015-02-05 13:40:49 -08001176 case OVS_ACTION_ATTR_SET_MASKED:
1177 case OVS_ACTION_ATTR_SET_TO_MASKED:
1178 err = execute_masked_set_action(skb, key, nla_data(a));
1179 break;
1180
andy zhou798c1662017-03-20 16:32:29 -07001181 case OVS_ACTION_ATTR_SAMPLE: {
1182 bool last = nla_is_last(a, rem);
1183
1184 err = sample(dp, skb, key, a, last);
1185 if (last)
1186 return err;
1187
Jesse Grossccb13522011-10-25 19:26:31 -07001188 break;
andy zhou798c1662017-03-20 16:32:29 -07001189 }
Joe Stringer7f8a4362015-08-26 11:31:48 -07001190
1191 case OVS_ACTION_ATTR_CT:
Joe Stringerec0d0432015-10-06 10:59:58 -07001192 if (!is_flow_key_valid(key)) {
1193 err = ovs_flow_key_update(skb, key);
1194 if (err)
1195 return err;
1196 }
1197
Joe Stringer7f8a4362015-08-26 11:31:48 -07001198 err = ovs_ct_execute(ovs_dp_get_net(dp), skb, key,
1199 nla_data(a));
1200
1201 /* Hide stolen IP fragments from user space. */
Joe Stringer74c16612015-10-25 20:21:48 -07001202 if (err)
1203 return err == -EINPROGRESS ? 0 : err;
Joe Stringer7f8a4362015-08-26 11:31:48 -07001204 break;
Jiri Benc91820da2016-11-10 16:28:23 +01001205
1206 case OVS_ACTION_ATTR_PUSH_ETH:
1207 err = push_eth(skb, key, nla_data(a));
1208 break;
1209
1210 case OVS_ACTION_ATTR_POP_ETH:
1211 err = pop_eth(skb, key);
1212 break;
Jesse Grossccb13522011-10-25 19:26:31 -07001213 }
1214
1215 if (unlikely(err)) {
1216 kfree_skb(skb);
1217 return err;
1218 }
1219 }
1220
andy zhou5b8784a2017-01-27 13:45:28 -08001221 consume_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -07001222 return 0;
1223}
1224
andy zhoubef7f752017-03-20 16:32:30 -07001225/* Execute the actions on the clone of the packet. The effect of the
1226 * execution does not affect the original 'skb' nor the original 'key'.
1227 *
1228 * The execution may be deferred in case the actions can not be executed
1229 * immediately.
1230 */
1231static int clone_execute(struct datapath *dp, struct sk_buff *skb,
1232 struct sw_flow_key *key, u32 recirc_id,
1233 const struct nlattr *actions, int len,
1234 bool last, bool clone_flow_key)
1235{
1236 struct deferred_action *da;
1237 struct sw_flow_key *clone;
1238
1239 skb = last ? skb : skb_clone(skb, GFP_ATOMIC);
1240 if (!skb) {
1241 /* Out of memory, skip this action.
1242 */
1243 return 0;
1244 }
1245
1246 /* When clone_flow_key is false, the 'key' will not be change
1247 * by the actions, then the 'key' can be used directly.
1248 * Otherwise, try to clone key from the next recursion level of
1249 * 'flow_keys'. If clone is successful, execute the actions
1250 * without deferring.
1251 */
1252 clone = clone_flow_key ? clone_key(key) : key;
1253 if (clone) {
1254 int err = 0;
1255
1256 if (actions) { /* Sample action */
1257 if (clone_flow_key)
1258 __this_cpu_inc(exec_actions_level);
1259
1260 err = do_execute_actions(dp, skb, clone,
1261 actions, len);
1262
1263 if (clone_flow_key)
1264 __this_cpu_dec(exec_actions_level);
1265 } else { /* Recirc action */
1266 clone->recirc_id = recirc_id;
1267 ovs_dp_process_packet(skb, clone);
1268 }
1269 return err;
1270 }
1271
1272 /* Out of 'flow_keys' space. Defer actions */
1273 da = add_deferred_actions(skb, key, actions, len);
1274 if (da) {
1275 if (!actions) { /* Recirc action */
1276 key = &da->pkt_key;
1277 key->recirc_id = recirc_id;
1278 }
1279 } else {
1280 /* Out of per CPU action FIFO space. Drop the 'skb' and
1281 * log an error.
1282 */
1283 kfree_skb(skb);
1284
1285 if (net_ratelimit()) {
1286 if (actions) { /* Sample action */
1287 pr_warn("%s: deferred action limit reached, drop sample action\n",
1288 ovs_dp_name(dp));
1289 } else { /* Recirc action */
1290 pr_warn("%s: deferred action limit reached, drop recirc action\n",
1291 ovs_dp_name(dp));
1292 }
1293 }
1294 }
1295 return 0;
1296}
1297
Andy Zhou971427f32014-09-15 19:37:25 -07001298static void process_deferred_actions(struct datapath *dp)
1299{
1300 struct action_fifo *fifo = this_cpu_ptr(action_fifos);
1301
1302 /* Do not touch the FIFO in case there is no deferred actions. */
1303 if (action_fifo_is_empty(fifo))
1304 return;
1305
1306 /* Finishing executing all deferred actions. */
1307 do {
1308 struct deferred_action *da = action_fifo_get(fifo);
1309 struct sk_buff *skb = da->skb;
1310 struct sw_flow_key *key = &da->pkt_key;
1311 const struct nlattr *actions = da->actions;
andy zhou47c697a2017-03-20 16:32:27 -07001312 int actions_len = da->actions_len;
Andy Zhou971427f32014-09-15 19:37:25 -07001313
1314 if (actions)
andy zhou47c697a2017-03-20 16:32:27 -07001315 do_execute_actions(dp, skb, key, actions, actions_len);
Andy Zhou971427f32014-09-15 19:37:25 -07001316 else
1317 ovs_dp_process_packet(skb, key);
1318 } while (!action_fifo_is_empty(fifo));
1319
1320 /* Reset FIFO for the next packet. */
1321 action_fifo_init(fifo);
1322}
1323
Jesse Grossccb13522011-10-25 19:26:31 -07001324/* Execute a list of actions against 'skb'. */
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -07001325int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb,
Thomas Graf12eb18f2014-11-06 06:58:52 -08001326 const struct sw_flow_actions *acts,
1327 struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -07001328{
Hannes Frederic Sowab064d0d2016-01-18 18:03:48 +01001329 int err, level;
Jesse Grossccb13522011-10-25 19:26:31 -07001330
Hannes Frederic Sowab064d0d2016-01-18 18:03:48 +01001331 level = __this_cpu_inc_return(exec_actions_level);
Lance Richardson2679d042016-09-13 10:08:54 -04001332 if (unlikely(level > OVS_RECURSION_LIMIT)) {
Hannes Frederic Sowab064d0d2016-01-18 18:03:48 +01001333 net_crit_ratelimited("ovs: recursion limit reached on datapath %s, probable configuration error\n",
1334 ovs_dp_name(dp));
1335 kfree_skb(skb);
1336 err = -ENETDOWN;
1337 goto out;
1338 }
1339
Andy Zhou971427f32014-09-15 19:37:25 -07001340 err = do_execute_actions(dp, skb, key,
1341 acts->actions, acts->actions_len);
1342
Hannes Frederic Sowab064d0d2016-01-18 18:03:48 +01001343 if (level == 1)
Andy Zhou971427f32014-09-15 19:37:25 -07001344 process_deferred_actions(dp);
1345
Hannes Frederic Sowab064d0d2016-01-18 18:03:48 +01001346out:
1347 __this_cpu_dec(exec_actions_level);
Andy Zhou971427f32014-09-15 19:37:25 -07001348 return err;
1349}
1350
1351int action_fifos_init(void)
1352{
1353 action_fifos = alloc_percpu(struct action_fifo);
1354 if (!action_fifos)
1355 return -ENOMEM;
1356
andy zhou4572ef52017-03-20 16:32:28 -07001357 flow_keys = alloc_percpu(struct action_flow_keys);
1358 if (!flow_keys) {
Lance Richardson2679d042016-09-13 10:08:54 -04001359 free_percpu(action_fifos);
1360 return -ENOMEM;
1361 }
1362
Andy Zhou971427f32014-09-15 19:37:25 -07001363 return 0;
1364}
1365
1366void action_fifos_exit(void)
1367{
1368 free_percpu(action_fifos);
andy zhou4572ef52017-03-20 16:32:28 -07001369 free_percpu(flow_keys);
Jesse Grossccb13522011-10-25 19:26:31 -07001370}