blob: 7ffa3771626569856f9997cf764bf91e3bd13502 [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 Stringera175a722013-08-22 12:30:48 -070025#include <linux/sctp.h>
Jesse Grossccb13522011-10-25 19:26:31 -070026#include <linux/tcp.h>
27#include <linux/udp.h>
28#include <linux/in6.h>
29#include <linux/if_arp.h>
30#include <linux/if_vlan.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -070031
Jesse Grossccb13522011-10-25 19:26:31 -070032#include <net/ip.h>
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -080033#include <net/ipv6.h>
Jesse Grossccb13522011-10-25 19:26:31 -070034#include <net/checksum.h>
35#include <net/dsfield.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -070036#include <net/mpls.h>
Joe Stringera175a722013-08-22 12:30:48 -070037#include <net/sctp/checksum.h>
Jesse Grossccb13522011-10-25 19:26:31 -070038
39#include "datapath.h"
Andy Zhou971427f32014-09-15 19:37:25 -070040#include "flow.h"
Jesse Grossccb13522011-10-25 19:26:31 -070041#include "vport.h"
42
43static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -070044 struct sw_flow_key *key,
Simon Horman651887b2014-07-21 15:12:34 -070045 const struct nlattr *attr, int len);
Jesse Grossccb13522011-10-25 19:26:31 -070046
Andy Zhou971427f32014-09-15 19:37:25 -070047struct deferred_action {
48 struct sk_buff *skb;
49 const struct nlattr *actions;
50
51 /* Store pkt_key clone when creating deferred action. */
52 struct sw_flow_key pkt_key;
53};
54
55#define DEFERRED_ACTION_FIFO_SIZE 10
56struct action_fifo {
57 int head;
58 int tail;
59 /* Deferred action fifo queue storage. */
60 struct deferred_action fifo[DEFERRED_ACTION_FIFO_SIZE];
61};
62
63static struct action_fifo __percpu *action_fifos;
64static DEFINE_PER_CPU(int, exec_actions_level);
65
66static void action_fifo_init(struct action_fifo *fifo)
67{
68 fifo->head = 0;
69 fifo->tail = 0;
70}
71
Thomas Graf12eb18f2014-11-06 06:58:52 -080072static bool action_fifo_is_empty(const struct action_fifo *fifo)
Andy Zhou971427f32014-09-15 19:37:25 -070073{
74 return (fifo->head == fifo->tail);
75}
76
77static struct deferred_action *action_fifo_get(struct action_fifo *fifo)
78{
79 if (action_fifo_is_empty(fifo))
80 return NULL;
81
82 return &fifo->fifo[fifo->tail++];
83}
84
85static struct deferred_action *action_fifo_put(struct action_fifo *fifo)
86{
87 if (fifo->head >= DEFERRED_ACTION_FIFO_SIZE - 1)
88 return NULL;
89
90 return &fifo->fifo[fifo->head++];
91}
92
93/* Return true if fifo is not full */
94static struct deferred_action *add_deferred_actions(struct sk_buff *skb,
Thomas Graf12eb18f2014-11-06 06:58:52 -080095 const struct sw_flow_key *key,
Andy Zhou971427f32014-09-15 19:37:25 -070096 const struct nlattr *attr)
97{
98 struct action_fifo *fifo;
99 struct deferred_action *da;
100
101 fifo = this_cpu_ptr(action_fifos);
102 da = action_fifo_put(fifo);
103 if (da) {
104 da->skb = skb;
105 da->actions = attr;
106 da->pkt_key = *key;
107 }
108
109 return da;
110}
111
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800112static void invalidate_flow_key(struct sw_flow_key *key)
113{
114 key->eth.type = htons(0);
115}
116
117static bool is_flow_key_valid(const struct sw_flow_key *key)
118{
119 return !!key->eth.type;
120}
121
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800122static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key,
Simon Horman25cd9ba2014-10-06 05:05:13 -0700123 const struct ovs_action_push_mpls *mpls)
124{
125 __be32 *new_mpls_lse;
126 struct ethhdr *hdr;
127
128 /* Networking stack do not allow simultaneous Tunnel and MPLS GSO. */
129 if (skb->encapsulation)
130 return -ENOTSUPP;
131
132 if (skb_cow_head(skb, MPLS_HLEN) < 0)
133 return -ENOMEM;
134
135 skb_push(skb, MPLS_HLEN);
136 memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
137 skb->mac_len);
138 skb_reset_mac_header(skb);
139
140 new_mpls_lse = (__be32 *)skb_mpls_header(skb);
141 *new_mpls_lse = mpls->mpls_lse;
142
143 if (skb->ip_summed == CHECKSUM_COMPLETE)
144 skb->csum = csum_add(skb->csum, csum_partial(new_mpls_lse,
145 MPLS_HLEN, 0));
146
147 hdr = eth_hdr(skb);
148 hdr->h_proto = mpls->mpls_ethertype;
149
150 skb_set_inner_protocol(skb, skb->protocol);
151 skb->protocol = mpls->mpls_ethertype;
152
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800153 invalidate_flow_key(key);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700154 return 0;
155}
156
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800157static int pop_mpls(struct sk_buff *skb, struct sw_flow_key *key,
158 const __be16 ethertype)
Simon Horman25cd9ba2014-10-06 05:05:13 -0700159{
160 struct ethhdr *hdr;
161 int err;
162
Jiri Pirkoe2195122014-11-19 14:05:01 +0100163 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700164 if (unlikely(err))
165 return err;
166
Jiri Pirko1abcd822014-11-19 14:04:55 +0100167 skb_postpull_rcsum(skb, skb_mpls_header(skb), MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700168
169 memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
170 skb->mac_len);
171
172 __skb_pull(skb, MPLS_HLEN);
173 skb_reset_mac_header(skb);
174
175 /* skb_mpls_header() is used to locate the ethertype
176 * field correctly in the presence of VLAN tags.
177 */
178 hdr = (struct ethhdr *)(skb_mpls_header(skb) - ETH_HLEN);
179 hdr->h_proto = ethertype;
180 if (eth_p_mpls(skb->protocol))
181 skb->protocol = ethertype;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800182
183 invalidate_flow_key(key);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700184 return 0;
185}
186
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800187static int set_mpls(struct sk_buff *skb, struct sw_flow_key *key,
188 const __be32 *mpls_lse)
Simon Horman25cd9ba2014-10-06 05:05:13 -0700189{
190 __be32 *stack;
191 int err;
192
Jiri Pirkoe2195122014-11-19 14:05:01 +0100193 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
Simon Horman25cd9ba2014-10-06 05:05:13 -0700194 if (unlikely(err))
195 return err;
196
197 stack = (__be32 *)skb_mpls_header(skb);
198 if (skb->ip_summed == CHECKSUM_COMPLETE) {
199 __be32 diff[] = { ~(*stack), *mpls_lse };
Simon Horman25cd9ba2014-10-06 05:05:13 -0700200 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
201 ~skb->csum);
202 }
203
204 *stack = *mpls_lse;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800205 key->mpls.top_lse = *mpls_lse;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700206 return 0;
207}
208
Joe Stringer39855b52012-08-31 15:28:28 -0700209/* remove VLAN header from packet and update csum accordingly. */
Jesse Grossccb13522011-10-25 19:26:31 -0700210static int __pop_vlan_tci(struct sk_buff *skb, __be16 *current_tci)
211{
212 struct vlan_hdr *vhdr;
213 int err;
214
Jiri Pirkoe2195122014-11-19 14:05:01 +0100215 err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
Jesse Grossccb13522011-10-25 19:26:31 -0700216 if (unlikely(err))
217 return err;
218
Jiri Pirko1abcd822014-11-19 14:04:55 +0100219 skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
Jesse Grossccb13522011-10-25 19:26:31 -0700220
221 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
222 *current_tci = vhdr->h_vlan_TCI;
223
224 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
225 __skb_pull(skb, VLAN_HLEN);
226
227 vlan_set_encap_proto(skb, vhdr);
228 skb->mac_header += VLAN_HLEN;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700229
Jiri Benc2ba5af42014-08-21 21:33:44 +0200230 if (skb_network_offset(skb) < ETH_HLEN)
231 skb_set_network_header(skb, ETH_HLEN);
Jesse Grossccb13522011-10-25 19:26:31 -0700232
Simon Horman25cd9ba2014-10-06 05:05:13 -0700233 /* Update mac_len for subsequent MPLS actions */
234 skb_reset_mac_len(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700235 return 0;
236}
237
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800238static int pop_vlan(struct sk_buff *skb, struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700239{
240 __be16 tci;
241 int err;
242
243 if (likely(vlan_tx_tag_present(skb))) {
244 skb->vlan_tci = 0;
245 } else {
246 if (unlikely(skb->protocol != htons(ETH_P_8021Q) ||
247 skb->len < VLAN_ETH_HLEN))
248 return 0;
249
250 err = __pop_vlan_tci(skb, &tci);
251 if (err)
252 return err;
253 }
254 /* move next vlan tag to hw accel tag */
255 if (likely(skb->protocol != htons(ETH_P_8021Q) ||
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800256 skb->len < VLAN_ETH_HLEN)) {
257 key->eth.tci = 0;
Jesse Grossccb13522011-10-25 19:26:31 -0700258 return 0;
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800259 }
Jesse Grossccb13522011-10-25 19:26:31 -0700260
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800261 invalidate_flow_key(key);
Jesse Grossccb13522011-10-25 19:26:31 -0700262 err = __pop_vlan_tci(skb, &tci);
263 if (unlikely(err))
264 return err;
265
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000266 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(tci));
Jesse Grossccb13522011-10-25 19:26:31 -0700267 return 0;
268}
269
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800270static int push_vlan(struct sk_buff *skb, struct sw_flow_key *key,
271 const struct ovs_action_push_vlan *vlan)
Jesse Grossccb13522011-10-25 19:26:31 -0700272{
273 if (unlikely(vlan_tx_tag_present(skb))) {
274 u16 current_tag;
275
276 /* push down current VLAN tag */
277 current_tag = vlan_tx_tag_get(skb);
278
Jiri Pirko62749e22014-11-19 14:04:58 +0100279 skb = vlan_insert_tag_set_proto(skb, skb->vlan_proto,
280 current_tag);
281 if (!skb)
Jesse Grossccb13522011-10-25 19:26:31 -0700282 return -ENOMEM;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700283 /* Update mac_len for subsequent MPLS actions */
284 skb->mac_len += VLAN_HLEN;
Jesse Grossccb13522011-10-25 19:26:31 -0700285
286 if (skb->ip_summed == CHECKSUM_COMPLETE)
287 skb->csum = csum_add(skb->csum, csum_partial(skb->data
Cong Wang7b024082013-02-22 17:32:26 +0800288 + (2 * ETH_ALEN), VLAN_HLEN, 0));
Jesse Grossccb13522011-10-25 19:26:31 -0700289
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800290 invalidate_flow_key(key);
291 } else {
292 key->eth.tci = vlan->vlan_tci;
Jesse Grossccb13522011-10-25 19:26:31 -0700293 }
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000294 __vlan_hwaccel_put_tag(skb, vlan->vlan_tpid, ntohs(vlan->vlan_tci) & ~VLAN_TAG_PRESENT);
Jesse Grossccb13522011-10-25 19:26:31 -0700295 return 0;
296}
297
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800298static int set_eth_addr(struct sk_buff *skb, struct sw_flow_key *key,
Jesse Grossccb13522011-10-25 19:26:31 -0700299 const struct ovs_key_ethernet *eth_key)
300{
301 int err;
Jiri Pirkoe2195122014-11-19 14:05:01 +0100302 err = skb_ensure_writable(skb, ETH_HLEN);
Jesse Grossccb13522011-10-25 19:26:31 -0700303 if (unlikely(err))
304 return err;
305
Pravin B Shelarb34df5e2013-06-13 11:11:44 -0700306 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
307
Joe Perches8c63ff02014-02-18 11:15:45 -0800308 ether_addr_copy(eth_hdr(skb)->h_source, eth_key->eth_src);
309 ether_addr_copy(eth_hdr(skb)->h_dest, eth_key->eth_dst);
Jesse Grossccb13522011-10-25 19:26:31 -0700310
Pravin B Shelarb34df5e2013-06-13 11:11:44 -0700311 ovs_skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
312
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800313 ether_addr_copy(key->eth.src, eth_key->eth_src);
314 ether_addr_copy(key->eth.dst, eth_key->eth_dst);
Jesse Grossccb13522011-10-25 19:26:31 -0700315 return 0;
316}
317
318static void set_ip_addr(struct sk_buff *skb, struct iphdr *nh,
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800319 __be32 *addr, __be32 new_addr)
Jesse Grossccb13522011-10-25 19:26:31 -0700320{
321 int transport_len = skb->len - skb_transport_offset(skb);
322
323 if (nh->protocol == IPPROTO_TCP) {
324 if (likely(transport_len >= sizeof(struct tcphdr)))
325 inet_proto_csum_replace4(&tcp_hdr(skb)->check, skb,
326 *addr, new_addr, 1);
327 } else if (nh->protocol == IPPROTO_UDP) {
Jesse Gross81e5d412012-03-06 15:05:46 -0800328 if (likely(transport_len >= sizeof(struct udphdr))) {
329 struct udphdr *uh = udp_hdr(skb);
330
331 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
332 inet_proto_csum_replace4(&uh->check, skb,
333 *addr, new_addr, 1);
334 if (!uh->check)
335 uh->check = CSUM_MANGLED_0;
336 }
337 }
Jesse Grossccb13522011-10-25 19:26:31 -0700338 }
339
340 csum_replace4(&nh->check, *addr, new_addr);
Tom Herbert7539fad2013-12-15 22:12:18 -0800341 skb_clear_hash(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700342 *addr = new_addr;
343}
344
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800345static void update_ipv6_checksum(struct sk_buff *skb, u8 l4_proto,
346 __be32 addr[4], const __be32 new_addr[4])
347{
348 int transport_len = skb->len - skb_transport_offset(skb);
349
350 if (l4_proto == IPPROTO_TCP) {
351 if (likely(transport_len >= sizeof(struct tcphdr)))
352 inet_proto_csum_replace16(&tcp_hdr(skb)->check, skb,
353 addr, new_addr, 1);
354 } else if (l4_proto == IPPROTO_UDP) {
355 if (likely(transport_len >= sizeof(struct udphdr))) {
356 struct udphdr *uh = udp_hdr(skb);
357
358 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
359 inet_proto_csum_replace16(&uh->check, skb,
360 addr, new_addr, 1);
361 if (!uh->check)
362 uh->check = CSUM_MANGLED_0;
363 }
364 }
365 }
366}
367
368static void set_ipv6_addr(struct sk_buff *skb, u8 l4_proto,
369 __be32 addr[4], const __be32 new_addr[4],
370 bool recalculate_csum)
371{
372 if (recalculate_csum)
373 update_ipv6_checksum(skb, l4_proto, addr, new_addr);
374
Tom Herbert7539fad2013-12-15 22:12:18 -0800375 skb_clear_hash(skb);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800376 memcpy(addr, new_addr, sizeof(__be32[4]));
377}
378
379static void set_ipv6_tc(struct ipv6hdr *nh, u8 tc)
380{
381 nh->priority = tc >> 4;
382 nh->flow_lbl[0] = (nh->flow_lbl[0] & 0x0F) | ((tc & 0x0F) << 4);
383}
384
385static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl)
386{
387 nh->flow_lbl[0] = (nh->flow_lbl[0] & 0xF0) | (fl & 0x000F0000) >> 16;
388 nh->flow_lbl[1] = (fl & 0x0000FF00) >> 8;
389 nh->flow_lbl[2] = fl & 0x000000FF;
390}
391
Jesse Grossccb13522011-10-25 19:26:31 -0700392static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl)
393{
394 csum_replace2(&nh->check, htons(nh->ttl << 8), htons(new_ttl << 8));
395 nh->ttl = new_ttl;
396}
397
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800398static int set_ipv4(struct sk_buff *skb, struct sw_flow_key *key,
399 const struct ovs_key_ipv4 *ipv4_key)
Jesse Grossccb13522011-10-25 19:26:31 -0700400{
401 struct iphdr *nh;
402 int err;
403
Jiri Pirkoe2195122014-11-19 14:05:01 +0100404 err = skb_ensure_writable(skb, skb_network_offset(skb) +
405 sizeof(struct iphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700406 if (unlikely(err))
407 return err;
408
409 nh = ip_hdr(skb);
410
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800411 if (ipv4_key->ipv4_src != nh->saddr) {
Jesse Grossccb13522011-10-25 19:26:31 -0700412 set_ip_addr(skb, nh, &nh->saddr, ipv4_key->ipv4_src);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800413 key->ipv4.addr.src = ipv4_key->ipv4_src;
414 }
Jesse Grossccb13522011-10-25 19:26:31 -0700415
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800416 if (ipv4_key->ipv4_dst != nh->daddr) {
Jesse Grossccb13522011-10-25 19:26:31 -0700417 set_ip_addr(skb, nh, &nh->daddr, ipv4_key->ipv4_dst);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800418 key->ipv4.addr.dst = ipv4_key->ipv4_dst;
419 }
Jesse Grossccb13522011-10-25 19:26:31 -0700420
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800421 if (ipv4_key->ipv4_tos != nh->tos) {
Jesse Grossccb13522011-10-25 19:26:31 -0700422 ipv4_change_dsfield(nh, 0, ipv4_key->ipv4_tos);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800423 key->ip.tos = nh->tos;
424 }
Jesse Grossccb13522011-10-25 19:26:31 -0700425
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800426 if (ipv4_key->ipv4_ttl != nh->ttl) {
Jesse Grossccb13522011-10-25 19:26:31 -0700427 set_ip_ttl(skb, nh, ipv4_key->ipv4_ttl);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800428 key->ip.ttl = ipv4_key->ipv4_ttl;
429 }
Jesse Grossccb13522011-10-25 19:26:31 -0700430
431 return 0;
432}
433
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800434static int set_ipv6(struct sk_buff *skb, struct sw_flow_key *key,
435 const struct ovs_key_ipv6 *ipv6_key)
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800436{
437 struct ipv6hdr *nh;
438 int err;
439 __be32 *saddr;
440 __be32 *daddr;
441
Jiri Pirkoe2195122014-11-19 14:05:01 +0100442 err = skb_ensure_writable(skb, skb_network_offset(skb) +
443 sizeof(struct ipv6hdr));
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800444 if (unlikely(err))
445 return err;
446
447 nh = ipv6_hdr(skb);
448 saddr = (__be32 *)&nh->saddr;
449 daddr = (__be32 *)&nh->daddr;
450
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800451 if (memcmp(ipv6_key->ipv6_src, saddr, sizeof(ipv6_key->ipv6_src))) {
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800452 set_ipv6_addr(skb, ipv6_key->ipv6_proto, saddr,
453 ipv6_key->ipv6_src, true);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800454 memcpy(&key->ipv6.addr.src, ipv6_key->ipv6_src,
455 sizeof(ipv6_key->ipv6_src));
456 }
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800457
458 if (memcmp(ipv6_key->ipv6_dst, daddr, sizeof(ipv6_key->ipv6_dst))) {
459 unsigned int offset = 0;
460 int flags = IP6_FH_F_SKIP_RH;
461 bool recalc_csum = true;
462
463 if (ipv6_ext_hdr(nh->nexthdr))
464 recalc_csum = ipv6_find_hdr(skb, &offset,
465 NEXTHDR_ROUTING, NULL,
466 &flags) != NEXTHDR_ROUTING;
467
468 set_ipv6_addr(skb, ipv6_key->ipv6_proto, daddr,
469 ipv6_key->ipv6_dst, recalc_csum);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800470 memcpy(&key->ipv6.addr.dst, ipv6_key->ipv6_dst,
471 sizeof(ipv6_key->ipv6_dst));
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800472 }
473
474 set_ipv6_tc(nh, ipv6_key->ipv6_tclass);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800475 key->ip.tos = ipv6_get_dsfield(nh);
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800476
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800477 set_ipv6_fl(nh, ntohl(ipv6_key->ipv6_label));
478 key->ipv6.label = *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL);
479
480 nh->hop_limit = ipv6_key->ipv6_hlimit;
481 key->ip.ttl = ipv6_key->ipv6_hlimit;
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800482 return 0;
483}
484
Jiri Pirkoe2195122014-11-19 14:05:01 +0100485/* Must follow skb_ensure_writable() since that can move the skb data. */
Jesse Grossccb13522011-10-25 19:26:31 -0700486static void set_tp_port(struct sk_buff *skb, __be16 *port,
487 __be16 new_port, __sum16 *check)
488{
489 inet_proto_csum_replace2(check, skb, *port, new_port, 0);
490 *port = new_port;
Tom Herbert7539fad2013-12-15 22:12:18 -0800491 skb_clear_hash(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700492}
493
Jesse Gross81e5d412012-03-06 15:05:46 -0800494static void set_udp_port(struct sk_buff *skb, __be16 *port, __be16 new_port)
495{
496 struct udphdr *uh = udp_hdr(skb);
497
498 if (uh->check && skb->ip_summed != CHECKSUM_PARTIAL) {
499 set_tp_port(skb, port, new_port, &uh->check);
500
501 if (!uh->check)
502 uh->check = CSUM_MANGLED_0;
503 } else {
504 *port = new_port;
Tom Herbert7539fad2013-12-15 22:12:18 -0800505 skb_clear_hash(skb);
Jesse Gross81e5d412012-03-06 15:05:46 -0800506 }
507}
508
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800509static int set_udp(struct sk_buff *skb, struct sw_flow_key *key,
510 const struct ovs_key_udp *udp_port_key)
Jesse Grossccb13522011-10-25 19:26:31 -0700511{
512 struct udphdr *uh;
513 int err;
514
Jiri Pirkoe2195122014-11-19 14:05:01 +0100515 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
516 sizeof(struct udphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700517 if (unlikely(err))
518 return err;
519
520 uh = udp_hdr(skb);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800521 if (udp_port_key->udp_src != uh->source) {
Jesse Gross81e5d412012-03-06 15:05:46 -0800522 set_udp_port(skb, &uh->source, udp_port_key->udp_src);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800523 key->tp.src = udp_port_key->udp_src;
524 }
Jesse Grossccb13522011-10-25 19:26:31 -0700525
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800526 if (udp_port_key->udp_dst != uh->dest) {
Jesse Gross81e5d412012-03-06 15:05:46 -0800527 set_udp_port(skb, &uh->dest, udp_port_key->udp_dst);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800528 key->tp.dst = udp_port_key->udp_dst;
529 }
Jesse Grossccb13522011-10-25 19:26:31 -0700530
531 return 0;
532}
533
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800534static int set_tcp(struct sk_buff *skb, struct sw_flow_key *key,
535 const struct ovs_key_tcp *tcp_port_key)
Jesse Grossccb13522011-10-25 19:26:31 -0700536{
537 struct tcphdr *th;
538 int err;
539
Jiri Pirkoe2195122014-11-19 14:05:01 +0100540 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
541 sizeof(struct tcphdr));
Jesse Grossccb13522011-10-25 19:26:31 -0700542 if (unlikely(err))
543 return err;
544
545 th = tcp_hdr(skb);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800546 if (tcp_port_key->tcp_src != th->source) {
Jesse Grossccb13522011-10-25 19:26:31 -0700547 set_tp_port(skb, &th->source, tcp_port_key->tcp_src, &th->check);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800548 key->tp.src = tcp_port_key->tcp_src;
549 }
Jesse Grossccb13522011-10-25 19:26:31 -0700550
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800551 if (tcp_port_key->tcp_dst != th->dest) {
Jesse Grossccb13522011-10-25 19:26:31 -0700552 set_tp_port(skb, &th->dest, tcp_port_key->tcp_dst, &th->check);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800553 key->tp.dst = tcp_port_key->tcp_dst;
554 }
Jesse Grossccb13522011-10-25 19:26:31 -0700555
556 return 0;
557}
558
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800559static int set_sctp(struct sk_buff *skb, struct sw_flow_key *key,
560 const struct ovs_key_sctp *sctp_port_key)
Joe Stringera175a722013-08-22 12:30:48 -0700561{
562 struct sctphdr *sh;
563 int err;
564 unsigned int sctphoff = skb_transport_offset(skb);
565
Jiri Pirkoe2195122014-11-19 14:05:01 +0100566 err = skb_ensure_writable(skb, sctphoff + sizeof(struct sctphdr));
Joe Stringera175a722013-08-22 12:30:48 -0700567 if (unlikely(err))
568 return err;
569
570 sh = sctp_hdr(skb);
571 if (sctp_port_key->sctp_src != sh->source ||
572 sctp_port_key->sctp_dst != sh->dest) {
573 __le32 old_correct_csum, new_csum, old_csum;
574
575 old_csum = sh->checksum;
576 old_correct_csum = sctp_compute_cksum(skb, sctphoff);
577
578 sh->source = sctp_port_key->sctp_src;
579 sh->dest = sctp_port_key->sctp_dst;
580
581 new_csum = sctp_compute_cksum(skb, sctphoff);
582
583 /* Carry any checksum errors through. */
584 sh->checksum = old_csum ^ old_correct_csum ^ new_csum;
585
Tom Herbert7539fad2013-12-15 22:12:18 -0800586 skb_clear_hash(skb);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800587 key->tp.src = sctp_port_key->sctp_src;
588 key->tp.dst = sctp_port_key->sctp_dst;
Joe Stringera175a722013-08-22 12:30:48 -0700589 }
590
591 return 0;
592}
593
Andy Zhou738967b2014-09-08 00:35:02 -0700594static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port)
Jesse Grossccb13522011-10-25 19:26:31 -0700595{
Andy Zhou738967b2014-09-08 00:35:02 -0700596 struct vport *vport = ovs_vport_rcu(dp, out_port);
Jesse Grossccb13522011-10-25 19:26:31 -0700597
Andy Zhou738967b2014-09-08 00:35:02 -0700598 if (likely(vport))
599 ovs_vport_send(vport, skb);
600 else
Jesse Grossccb13522011-10-25 19:26:31 -0700601 kfree_skb(skb);
Jesse Grossccb13522011-10-25 19:26:31 -0700602}
603
604static int output_userspace(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -0700605 struct sw_flow_key *key, const struct nlattr *attr)
Jesse Grossccb13522011-10-25 19:26:31 -0700606{
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800607 struct ovs_tunnel_info info;
Jesse Grossccb13522011-10-25 19:26:31 -0700608 struct dp_upcall_info upcall;
609 const struct nlattr *a;
610 int rem;
611
612 upcall.cmd = OVS_PACKET_CMD_ACTION;
Jesse Grossccb13522011-10-25 19:26:31 -0700613 upcall.userdata = NULL;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000614 upcall.portid = 0;
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800615 upcall.egress_tun_info = NULL;
Jesse Grossccb13522011-10-25 19:26:31 -0700616
617 for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
618 a = nla_next(a, &rem)) {
619 switch (nla_type(a)) {
620 case OVS_USERSPACE_ATTR_USERDATA:
621 upcall.userdata = a;
622 break;
623
624 case OVS_USERSPACE_ATTR_PID:
Eric W. Biederman15e47302012-09-07 20:12:54 +0000625 upcall.portid = nla_get_u32(a);
Jesse Grossccb13522011-10-25 19:26:31 -0700626 break;
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800627
628 case OVS_USERSPACE_ATTR_EGRESS_TUN_PORT: {
629 /* Get out tunnel info. */
630 struct vport *vport;
631
632 vport = ovs_vport_rcu(dp, nla_get_u32(a));
633 if (vport) {
634 int err;
635
636 err = ovs_vport_get_egress_tun_info(vport, skb,
637 &info);
638 if (!err)
639 upcall.egress_tun_info = &info;
640 }
641 break;
Jesse Grossccb13522011-10-25 19:26:31 -0700642 }
Wenyu Zhang8f0aad62014-11-06 06:51:24 -0800643
644 } /* End of switch. */
Jesse Grossccb13522011-10-25 19:26:31 -0700645 }
646
Pravin B Shelare8eedb82014-11-06 06:57:27 -0800647 return ovs_dp_upcall(dp, skb, key, &upcall);
Jesse Grossccb13522011-10-25 19:26:31 -0700648}
649
650static int sample(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -0700651 struct sw_flow_key *key, const struct nlattr *attr)
Jesse Grossccb13522011-10-25 19:26:31 -0700652{
653 const struct nlattr *acts_list = NULL;
654 const struct nlattr *a;
655 int rem;
656
657 for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
658 a = nla_next(a, &rem)) {
659 switch (nla_type(a)) {
660 case OVS_SAMPLE_ATTR_PROBABILITY:
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500661 if (prandom_u32() >= nla_get_u32(a))
Jesse Grossccb13522011-10-25 19:26:31 -0700662 return 0;
663 break;
664
665 case OVS_SAMPLE_ATTR_ACTIONS:
666 acts_list = a;
667 break;
668 }
669 }
670
Simon Horman651887b2014-07-21 15:12:34 -0700671 rem = nla_len(acts_list);
672 a = nla_data(acts_list);
673
Andy Zhou32ae87f2014-09-15 19:33:50 -0700674 /* Actions list is empty, do nothing */
675 if (unlikely(!rem))
676 return 0;
Simon Horman651887b2014-07-21 15:12:34 -0700677
Andy Zhou32ae87f2014-09-15 19:33:50 -0700678 /* The only known usage of sample action is having a single user-space
679 * action. Treat this usage as a special case.
680 * The output_userspace() should clone the skb to be sent to the
681 * user space. This skb will be consumed by its caller.
Simon Horman651887b2014-07-21 15:12:34 -0700682 */
Andy Zhou32ae87f2014-09-15 19:33:50 -0700683 if (likely(nla_type(a) == OVS_ACTION_ATTR_USERSPACE &&
Simon Horman941d8eb2014-10-27 16:12:16 +0900684 nla_is_last(a, rem)))
Andy Zhou32ae87f2014-09-15 19:33:50 -0700685 return output_userspace(dp, skb, key, a);
686
687 skb = skb_clone(skb, GFP_ATOMIC);
688 if (!skb)
689 /* Skip the sample action when out of memory. */
690 return 0;
691
Andy Zhou971427f32014-09-15 19:37:25 -0700692 if (!add_deferred_actions(skb, key, a)) {
693 if (net_ratelimit())
694 pr_warn("%s: deferred actions limit reached, dropping sample action\n",
695 ovs_dp_name(dp));
696
697 kfree_skb(skb);
698 }
699 return 0;
700}
701
702static void execute_hash(struct sk_buff *skb, struct sw_flow_key *key,
703 const struct nlattr *attr)
704{
705 struct ovs_action_hash *hash_act = nla_data(attr);
706 u32 hash = 0;
707
708 /* OVS_HASH_ALG_L4 is the only possible hash algorithm. */
709 hash = skb_get_hash(skb);
710 hash = jhash_1word(hash, hash_act->hash_basis);
711 if (!hash)
712 hash = 0x1;
713
714 key->ovs_flow_hash = hash;
Jesse Grossccb13522011-10-25 19:26:31 -0700715}
716
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800717static int execute_set_action(struct sk_buff *skb, struct sw_flow_key *key,
718 const struct nlattr *nested_attr)
Jesse Grossccb13522011-10-25 19:26:31 -0700719{
720 int err = 0;
721
722 switch (nla_type(nested_attr)) {
723 case OVS_KEY_ATTR_PRIORITY:
724 skb->priority = nla_get_u32(nested_attr);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800725 key->phy.priority = skb->priority;
Jesse Grossccb13522011-10-25 19:26:31 -0700726 break;
727
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800728 case OVS_KEY_ATTR_SKB_MARK:
729 skb->mark = nla_get_u32(nested_attr);
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800730 key->phy.skb_mark = skb->mark;
Ansis Atteka39c7caeb2012-11-26 11:24:11 -0800731 break;
732
Jesse Grossf0b128c2014-10-03 15:35:31 -0700733 case OVS_KEY_ATTR_TUNNEL_INFO:
734 OVS_CB(skb)->egress_tun_info = nla_data(nested_attr);
Pravin B Shelar7d5437c2013-06-17 17:50:18 -0700735 break;
736
Jesse Grossccb13522011-10-25 19:26:31 -0700737 case OVS_KEY_ATTR_ETHERNET:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800738 err = set_eth_addr(skb, key, nla_data(nested_attr));
Jesse Grossccb13522011-10-25 19:26:31 -0700739 break;
740
741 case OVS_KEY_ATTR_IPV4:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800742 err = set_ipv4(skb, key, nla_data(nested_attr));
Jesse Grossccb13522011-10-25 19:26:31 -0700743 break;
744
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800745 case OVS_KEY_ATTR_IPV6:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800746 err = set_ipv6(skb, key, nla_data(nested_attr));
Ansis Atteka3fdbd1c2012-11-13 15:44:14 -0800747 break;
748
Jesse Grossccb13522011-10-25 19:26:31 -0700749 case OVS_KEY_ATTR_TCP:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800750 err = set_tcp(skb, key, nla_data(nested_attr));
Jesse Grossccb13522011-10-25 19:26:31 -0700751 break;
752
753 case OVS_KEY_ATTR_UDP:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800754 err = set_udp(skb, key, nla_data(nested_attr));
Jesse Grossccb13522011-10-25 19:26:31 -0700755 break;
Joe Stringera175a722013-08-22 12:30:48 -0700756
757 case OVS_KEY_ATTR_SCTP:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800758 err = set_sctp(skb, key, nla_data(nested_attr));
Joe Stringera175a722013-08-22 12:30:48 -0700759 break;
Simon Horman25cd9ba2014-10-06 05:05:13 -0700760
761 case OVS_KEY_ATTR_MPLS:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800762 err = set_mpls(skb, key, nla_data(nested_attr));
Simon Horman25cd9ba2014-10-06 05:05:13 -0700763 break;
Jesse Grossccb13522011-10-25 19:26:31 -0700764 }
765
766 return err;
767}
768
Andy Zhou971427f32014-09-15 19:37:25 -0700769static int execute_recirc(struct datapath *dp, struct sk_buff *skb,
770 struct sw_flow_key *key,
771 const struct nlattr *a, int rem)
772{
773 struct deferred_action *da;
Andy Zhou971427f32014-09-15 19:37:25 -0700774
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800775 if (!is_flow_key_valid(key)) {
776 int err;
777
778 err = ovs_flow_key_update(skb, key);
779 if (err)
780 return err;
781 }
782 BUG_ON(!is_flow_key_valid(key));
Andy Zhou971427f32014-09-15 19:37:25 -0700783
Simon Horman941d8eb2014-10-27 16:12:16 +0900784 if (!nla_is_last(a, rem)) {
Andy Zhou971427f32014-09-15 19:37:25 -0700785 /* Recirc action is the not the last action
786 * of the action list, need to clone the skb.
787 */
788 skb = skb_clone(skb, GFP_ATOMIC);
789
790 /* Skip the recirc action when out of memory, but
791 * continue on with the rest of the action list.
792 */
793 if (!skb)
794 return 0;
795 }
796
797 da = add_deferred_actions(skb, key, NULL);
798 if (da) {
799 da->pkt_key.recirc_id = nla_get_u32(a);
800 } else {
801 kfree_skb(skb);
802
803 if (net_ratelimit())
804 pr_warn("%s: deferred action limit reached, drop recirc action\n",
805 ovs_dp_name(dp));
806 }
807
808 return 0;
809}
810
Jesse Grossccb13522011-10-25 19:26:31 -0700811/* Execute a list of actions against 'skb'. */
812static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -0700813 struct sw_flow_key *key,
Simon Horman651887b2014-07-21 15:12:34 -0700814 const struct nlattr *attr, int len)
Jesse Grossccb13522011-10-25 19:26:31 -0700815{
816 /* Every output action needs a separate clone of 'skb', but the common
817 * case is just a single output action, so that doing a clone and
818 * then freeing the original skbuff is wasteful. So the following code
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800819 * is slightly obscure just to avoid that.
820 */
Jesse Grossccb13522011-10-25 19:26:31 -0700821 int prev_port = -1;
822 const struct nlattr *a;
823 int rem;
824
825 for (a = attr, rem = len; rem > 0;
826 a = nla_next(a, &rem)) {
827 int err = 0;
828
Andy Zhou738967b2014-09-08 00:35:02 -0700829 if (unlikely(prev_port != -1)) {
830 struct sk_buff *out_skb = skb_clone(skb, GFP_ATOMIC);
831
832 if (out_skb)
833 do_output(dp, out_skb, prev_port);
834
Jesse Grossccb13522011-10-25 19:26:31 -0700835 prev_port = -1;
836 }
837
838 switch (nla_type(a)) {
839 case OVS_ACTION_ATTR_OUTPUT:
840 prev_port = nla_get_u32(a);
841 break;
842
843 case OVS_ACTION_ATTR_USERSPACE:
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -0700844 output_userspace(dp, skb, key, a);
Jesse Grossccb13522011-10-25 19:26:31 -0700845 break;
846
Andy Zhou971427f32014-09-15 19:37:25 -0700847 case OVS_ACTION_ATTR_HASH:
848 execute_hash(skb, key, a);
849 break;
850
Simon Horman25cd9ba2014-10-06 05:05:13 -0700851 case OVS_ACTION_ATTR_PUSH_MPLS:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800852 err = push_mpls(skb, key, nla_data(a));
Simon Horman25cd9ba2014-10-06 05:05:13 -0700853 break;
854
855 case OVS_ACTION_ATTR_POP_MPLS:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800856 err = pop_mpls(skb, key, nla_get_be16(a));
Simon Horman25cd9ba2014-10-06 05:05:13 -0700857 break;
858
Jesse Grossccb13522011-10-25 19:26:31 -0700859 case OVS_ACTION_ATTR_PUSH_VLAN:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800860 err = push_vlan(skb, key, nla_data(a));
Jesse Grossccb13522011-10-25 19:26:31 -0700861 if (unlikely(err)) /* skb already freed. */
862 return err;
863 break;
864
865 case OVS_ACTION_ATTR_POP_VLAN:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800866 err = pop_vlan(skb, key);
Jesse Grossccb13522011-10-25 19:26:31 -0700867 break;
868
Andy Zhou971427f32014-09-15 19:37:25 -0700869 case OVS_ACTION_ATTR_RECIRC:
870 err = execute_recirc(dp, skb, key, a, rem);
Simon Horman941d8eb2014-10-27 16:12:16 +0900871 if (nla_is_last(a, rem)) {
Andy Zhou971427f32014-09-15 19:37:25 -0700872 /* If this is the last action, the skb has
873 * been consumed or freed.
874 * Return immediately.
875 */
876 return err;
877 }
878 break;
879
Jesse Grossccb13522011-10-25 19:26:31 -0700880 case OVS_ACTION_ATTR_SET:
Pravin B Shelarfff06c32014-11-06 06:55:14 -0800881 err = execute_set_action(skb, key, nla_data(a));
Jesse Grossccb13522011-10-25 19:26:31 -0700882 break;
883
884 case OVS_ACTION_ATTR_SAMPLE:
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -0700885 err = sample(dp, skb, key, a);
Andy Zhoufe984c02014-05-06 17:23:48 -0700886 if (unlikely(err)) /* skb already freed. */
887 return err;
Jesse Grossccb13522011-10-25 19:26:31 -0700888 break;
889 }
890
891 if (unlikely(err)) {
892 kfree_skb(skb);
893 return err;
894 }
895 }
896
Simon Horman651887b2014-07-21 15:12:34 -0700897 if (prev_port != -1)
Jesse Grossccb13522011-10-25 19:26:31 -0700898 do_output(dp, skb, prev_port);
Simon Horman651887b2014-07-21 15:12:34 -0700899 else
Jesse Grossccb13522011-10-25 19:26:31 -0700900 consume_skb(skb);
901
902 return 0;
903}
904
Andy Zhou971427f32014-09-15 19:37:25 -0700905static void process_deferred_actions(struct datapath *dp)
906{
907 struct action_fifo *fifo = this_cpu_ptr(action_fifos);
908
909 /* Do not touch the FIFO in case there is no deferred actions. */
910 if (action_fifo_is_empty(fifo))
911 return;
912
913 /* Finishing executing all deferred actions. */
914 do {
915 struct deferred_action *da = action_fifo_get(fifo);
916 struct sk_buff *skb = da->skb;
917 struct sw_flow_key *key = &da->pkt_key;
918 const struct nlattr *actions = da->actions;
919
920 if (actions)
921 do_execute_actions(dp, skb, key, actions,
922 nla_len(actions));
923 else
924 ovs_dp_process_packet(skb, key);
925 } while (!action_fifo_is_empty(fifo));
926
927 /* Reset FIFO for the next packet. */
928 action_fifo_init(fifo);
929}
930
Jesse Grossccb13522011-10-25 19:26:31 -0700931/* Execute a list of actions against 'skb'. */
Pravin B Shelar2ff3e4e2014-09-15 19:15:28 -0700932int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800933 const struct sw_flow_actions *acts,
934 struct sw_flow_key *key)
Jesse Grossccb13522011-10-25 19:26:31 -0700935{
Andy Zhou971427f32014-09-15 19:37:25 -0700936 int level = this_cpu_read(exec_actions_level);
Andy Zhou971427f32014-09-15 19:37:25 -0700937 int err;
Jesse Grossccb13522011-10-25 19:26:31 -0700938
Andy Zhou971427f32014-09-15 19:37:25 -0700939 this_cpu_inc(exec_actions_level);
Jesse Grossf0b128c2014-10-03 15:35:31 -0700940 OVS_CB(skb)->egress_tun_info = NULL;
Andy Zhou971427f32014-09-15 19:37:25 -0700941 err = do_execute_actions(dp, skb, key,
942 acts->actions, acts->actions_len);
943
944 if (!level)
945 process_deferred_actions(dp);
946
947 this_cpu_dec(exec_actions_level);
948 return err;
949}
950
951int action_fifos_init(void)
952{
953 action_fifos = alloc_percpu(struct action_fifo);
954 if (!action_fifos)
955 return -ENOMEM;
956
957 return 0;
958}
959
960void action_fifos_exit(void)
961{
962 free_percpu(action_fifos);
Jesse Grossccb13522011-10-25 19:26:31 -0700963}