]> git.proxmox.com Git - mirror_ovs.git/blame - datapath/actions.c
OVS: remove use of VLAN_TAG_PRESENT
[mirror_ovs.git] / datapath / actions.c
CommitLineData
064af421 1/*
58afdef1 2 * Copyright (c) 2007-2017 Nicira, Inc.
a14bc59f 3 *
a9a29d22
JG
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
064af421
BP
17 */
18
e9141eec
PS
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
064af421
BP
21#include <linux/skbuff.h>
22#include <linux/in.h>
23#include <linux/ip.h>
077257b8 24#include <linux/openvswitch.h>
a94ebc39 25#include <linux/netfilter_ipv6.h>
10f72e3d 26#include <linux/sctp.h>
064af421
BP
27#include <linux/tcp.h>
28#include <linux/udp.h>
29#include <linux/in6.h>
401eeb92 30#include <linux/if_arp.h>
064af421 31#include <linux/if_vlan.h>
a0fb56c1 32
a94ebc39 33#include <net/dst.h>
064af421 34#include <net/ip.h>
bc7a5acd 35#include <net/ipv6.h>
064af421 36#include <net/checksum.h>
530180fd 37#include <net/dsfield.h>
2baf0e0c 38#include <net/mpls.h>
10f72e3d 39#include <net/sctp/checksum.h>
f2459fe7 40
f2459fe7 41#include "datapath.h"
a94ebc39 42#include "conntrack.h"
ccf43786 43#include "gso.h"
f2459fe7 44#include "vport.h"
96b82f6d 45#include "flow_netlink.h"
064af421 46
e74d4817
PS
47static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
48 struct sw_flow_key *key,
49 const struct nlattr *attr, int len);
50
2c8c4fb7
AZ
51struct deferred_action {
52 struct sk_buff *skb;
53 const struct nlattr *actions;
615fa7ba 54 int actions_len;
2c8c4fb7
AZ
55
56 /* Store pkt_key clone when creating deferred action. */
57 struct sw_flow_key pkt_key;
58};
59
a94ebc39
JS
60#define MAX_L2_LEN (VLAN_ETH_HLEN + 3 * MPLS_HLEN)
61struct ovs_frag_data {
62 unsigned long dst;
63 struct vport *vport;
86c2eb45 64 struct ovs_gso_cb cb;
a94ebc39 65 __be16 inner_protocol;
279ecabe
YHW
66 u16 network_offset; /* valid only for MPLS */
67 u16 vlan_tci;
a94ebc39
JS
68 __be16 vlan_proto;
69 unsigned int l2_len;
f80d0524 70 u8 mac_proto;
a94ebc39
JS
71 u8 l2_data[MAX_L2_LEN];
72};
73
74static DEFINE_PER_CPU(struct ovs_frag_data, ovs_frag_data_storage);
75
2c8c4fb7 76#define DEFERRED_ACTION_FIFO_SIZE 10
615539ab
LR
77#define OVS_RECURSION_LIMIT 4
78#define OVS_DEFERRED_ACTION_THRESHOLD (OVS_RECURSION_LIMIT - 2)
2c8c4fb7
AZ
79struct action_fifo {
80 int head;
81 int tail;
82 /* Deferred action fifo queue storage. */
83 struct deferred_action fifo[DEFERRED_ACTION_FIFO_SIZE];
84};
85
58afdef1 86struct action_flow_keys {
615539ab
LR
87 struct sw_flow_key key[OVS_DEFERRED_ACTION_THRESHOLD];
88};
77a9a338 89
615539ab 90static struct action_fifo __percpu *action_fifos;
58afdef1 91static struct action_flow_keys __percpu *flow_keys;
2c8c4fb7
AZ
92static DEFINE_PER_CPU(int, exec_actions_level);
93
58afdef1
AZ
94/* Make a clone of the 'key', using the pre-allocated percpu 'flow_keys'
95 * space. Return NULL if out of key spaces.
96 */
97static struct sw_flow_key *clone_key(const struct sw_flow_key *key_)
98{
99 struct action_flow_keys *keys = this_cpu_ptr(flow_keys);
100 int level = this_cpu_read(exec_actions_level);
101 struct sw_flow_key *key = NULL;
102
103 if (level <= OVS_DEFERRED_ACTION_THRESHOLD) {
104 key = &keys->key[level - 1];
105 *key = *key_;
106 }
107
108 return key;
109}
110
2c8c4fb7
AZ
111static void action_fifo_init(struct action_fifo *fifo)
112{
113 fifo->head = 0;
114 fifo->tail = 0;
115}
116
f1f60b85 117static bool action_fifo_is_empty(const struct action_fifo *fifo)
2c8c4fb7
AZ
118{
119 return (fifo->head == fifo->tail);
120}
121
e74d4817 122static struct deferred_action *action_fifo_get(struct action_fifo *fifo)
2c8c4fb7
AZ
123{
124 if (action_fifo_is_empty(fifo))
125 return NULL;
126
127 return &fifo->fifo[fifo->tail++];
128}
129
e74d4817 130static struct deferred_action *action_fifo_put(struct action_fifo *fifo)
2c8c4fb7
AZ
131{
132 if (fifo->head >= DEFERRED_ACTION_FIFO_SIZE - 1)
133 return NULL;
134
135 return &fifo->fifo[fifo->head++];
136}
137
e74d4817
PS
138/* Return queue entry if fifo is not full */
139static struct deferred_action *add_deferred_actions(struct sk_buff *skb,
615fa7ba
AZ
140 const struct sw_flow_key *key,
141 const struct nlattr *actions,
142 const int actions_len)
2c8c4fb7
AZ
143{
144 struct action_fifo *fifo;
145 struct deferred_action *da;
146
147 fifo = this_cpu_ptr(action_fifos);
148 da = action_fifo_put(fifo);
149 if (da) {
150 da->skb = skb;
615fa7ba
AZ
151 da->actions = actions;
152 da->actions_len = actions_len;
e74d4817 153 da->pkt_key = *key;
2c8c4fb7
AZ
154 }
155
e74d4817 156 return da;
e16138e2
PS
157}
158
e74d4817 159static void invalidate_flow_key(struct sw_flow_key *key)
e16138e2 160{
16d76400 161 key->mac_proto |= SW_FLOW_KEY_INVALID;
e16138e2
PS
162}
163
f1f60b85 164static bool is_flow_key_valid(const struct sw_flow_key *key)
e16138e2 165{
16d76400 166 return !(key->mac_proto & SW_FLOW_KEY_INVALID);
e16138e2
PS
167}
168
d4004f8d
AZ
169static int clone_execute(struct datapath *dp, struct sk_buff *skb,
170 struct sw_flow_key *key,
171 u32 recirc_id,
172 const struct nlattr *actions, int len,
173 bool last, bool clone_flow_key);
174
b51367aa
PS
175static void update_ethertype(struct sk_buff *skb, struct ethhdr *hdr,
176 __be16 ethertype)
177{
178 if (skb->ip_summed == CHECKSUM_COMPLETE) {
179 __be16 diff[] = { ~(hdr->h_proto), ethertype };
180
181 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
182 ~skb->csum);
183 }
184
185 hdr->h_proto = ethertype;
186}
187
e74d4817 188static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key,
ccf43786
SH
189 const struct ovs_action_push_mpls *mpls)
190{
65590144 191 struct mpls_shim_hdr *new_mpls_lse;
ccf43786 192
2baf0e0c 193 /* Networking stack do not allow simultaneous Tunnel and MPLS GSO. */
8063e095 194 if (skb->encapsulation)
2baf0e0c
PS
195 return -ENOTSUPP;
196
ccf43786
SH
197 if (skb_cow_head(skb, MPLS_HLEN) < 0)
198 return -ENOMEM;
199
65590144
YHW
200 if (!ovs_skb_get_inner_protocol(skb)) {
201 skb_set_inner_network_header(skb, skb->mac_len);
202 ovs_skb_set_inner_protocol(skb, skb->protocol);
203 }
204
ccf43786
SH
205 skb_push(skb, MPLS_HLEN);
206 memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
207 skb->mac_len);
208 skb_reset_mac_header(skb);
65590144
YHW
209#ifdef MPLS_HEADER_IS_L3
210 skb_set_network_header(skb, skb->mac_len);
211#endif
ccf43786 212
65590144
YHW
213 new_mpls_lse = mpls_hdr(skb);
214 new_mpls_lse->label_stack_entry = mpls->mpls_lse;
ccf43786 215
ea3acd7a 216 skb_postpush_rcsum(skb, new_mpls_lse, MPLS_HLEN);
ccf43786 217
edd6d098
YY
218 if (ovs_key_mac_proto(key) == MAC_PROTO_ETHERNET)
219 update_ethertype(skb, eth_hdr(skb), mpls->mpls_ethertype);
ccf43786 220 skb->protocol = mpls->mpls_ethertype;
2baf0e0c 221
e74d4817 222 invalidate_flow_key(key);
ccf43786
SH
223 return 0;
224}
225
e74d4817
PS
226static int pop_mpls(struct sk_buff *skb, struct sw_flow_key *key,
227 const __be16 ethertype)
ccf43786 228{
ccf43786
SH
229 int err;
230
5cce04b6 231 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
ccf43786
SH
232 if (unlikely(err))
233 return err;
234
65590144 235 skb_postpull_rcsum(skb, mpls_hdr(skb), MPLS_HLEN);
ccf43786
SH
236
237 memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
238 skb->mac_len);
239
240 __skb_pull(skb, MPLS_HLEN);
241 skb_reset_mac_header(skb);
65590144 242 skb_set_network_header(skb, skb->mac_len);
ccf43786 243
edd6d098
YY
244 if (ovs_key_mac_proto(key) == MAC_PROTO_ETHERNET) {
245 struct ethhdr *hdr;
246
65590144 247 /* mpls_hdr() is used to locate the ethertype
edd6d098
YY
248 * field correctly in the presence of VLAN tags.
249 */
65590144 250 hdr = (struct ethhdr *)((void*)mpls_hdr(skb) - ETH_HLEN);
edd6d098
YY
251 update_ethertype(skb, hdr, ethertype);
252 }
ccf43786
SH
253 if (eth_p_mpls(skb->protocol))
254 skb->protocol = ethertype;
2baf0e0c 255
e74d4817 256 invalidate_flow_key(key);
ccf43786
SH
257 return 0;
258}
259
b940b3d7
JR
260static int set_mpls(struct sk_buff *skb, struct sw_flow_key *flow_key,
261 const __be32 *mpls_lse, const __be32 *mask)
ccf43786 262{
65590144 263 struct mpls_shim_hdr *stack;
b940b3d7 264 __be32 lse;
ccf43786
SH
265 int err;
266
5cce04b6 267 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
ccf43786
SH
268 if (unlikely(err))
269 return err;
270
65590144
YHW
271 stack = mpls_hdr(skb);
272 lse = OVS_MASKED(stack->label_stack_entry, *mpls_lse, *mask);
ccf43786 273 if (skb->ip_summed == CHECKSUM_COMPLETE) {
65590144 274 __be32 diff[] = { ~(stack->label_stack_entry), lse };
b940b3d7 275
ccf43786
SH
276 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
277 ~skb->csum);
278 }
279
65590144 280 stack->label_stack_entry = lse;
b940b3d7 281 flow_key->mpls.top_lse = lse;
ccf43786
SH
282 return 0;
283}
284
e74d4817 285static int pop_vlan(struct sk_buff *skb, struct sw_flow_key *key)
064af421 286{
d9065a90 287 int err;
10db8b20 288
97894370 289 err = skb_vlan_pop(skb);
d7efce7b 290 if (skb_vlan_tag_present(skb)) {
97894370 291 invalidate_flow_key(key);
d7efce7b
YY
292 } else {
293 key->eth.vlan.tci = 0;
294 key->eth.vlan.tpid = 0;
295 }
97894370 296 return err;
d9065a90
PS
297}
298
e74d4817
PS
299static int push_vlan(struct sk_buff *skb, struct sw_flow_key *key,
300 const struct ovs_action_push_vlan *vlan)
d9065a90 301{
d7efce7b 302 if (skb_vlan_tag_present(skb)) {
e74d4817 303 invalidate_flow_key(key);
d7efce7b
YY
304 } else {
305 key->eth.vlan.tci = vlan->vlan_tci;
306 key->eth.vlan.tpid = vlan->vlan_tpid;
307 }
97894370 308 return skb_vlan_push(skb, vlan->vlan_tpid,
9feb5bda 309 ntohs(vlan->vlan_tci) & ~VLAN_CFI_MASK);
064af421
BP
310}
311
b940b3d7
JR
312/* 'src' is already properly masked. */
313static void ether_addr_copy_masked(u8 *dst_, const u8 *src_, const u8 *mask_)
314{
315 u16 *dst = (u16 *)dst_;
316 const u16 *src = (const u16 *)src_;
317 const u16 *mask = (const u16 *)mask_;
318
e281bb23
JS
319 OVS_SET_MASKED(dst[0], src[0], mask[0]);
320 OVS_SET_MASKED(dst[1], src[1], mask[1]);
321 OVS_SET_MASKED(dst[2], src[2], mask[2]);
b940b3d7
JR
322}
323
324static int set_eth_addr(struct sk_buff *skb, struct sw_flow_key *flow_key,
325 const struct ovs_key_ethernet *key,
326 const struct ovs_key_ethernet *mask)
ca78c6b6 327{
4edb9ae9 328 int err;
b940b3d7 329
5cce04b6 330 err = skb_ensure_writable(skb, ETH_HLEN);
4edb9ae9
PS
331 if (unlikely(err))
332 return err;
333
237c4f2a 334 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
3cfede14 335
b940b3d7
JR
336 ether_addr_copy_masked(eth_hdr(skb)->h_source, key->eth_src,
337 mask->eth_src);
338 ether_addr_copy_masked(eth_hdr(skb)->h_dest, key->eth_dst,
339 mask->eth_dst);
4edb9ae9 340
ea3acd7a 341 skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
3cfede14 342
b940b3d7
JR
343 ether_addr_copy(flow_key->eth.src, eth_hdr(skb)->h_source);
344 ether_addr_copy(flow_key->eth.dst, eth_hdr(skb)->h_dest);
4edb9ae9 345 return 0;
ca78c6b6
BP
346}
347
6fcecb85
YY
348/* pop_eth does not support VLAN packets as this action is never called
349 * for them.
350 */
351static int pop_eth(struct sk_buff *skb, struct sw_flow_key *key)
352{
353 skb_pull_rcsum(skb, ETH_HLEN);
354 skb_reset_mac_header(skb);
355 skb_reset_mac_len(skb);
356
357 /* safe right before invalidate_flow_key */
358 key->mac_proto = MAC_PROTO_NONE;
359 invalidate_flow_key(key);
360 return 0;
361}
362
363static int push_eth(struct sk_buff *skb, struct sw_flow_key *key,
364 const struct ovs_action_push_eth *ethh)
365{
366 struct ethhdr *hdr;
367
368 /* Add the new Ethernet header */
369 if (skb_cow_head(skb, ETH_HLEN) < 0)
370 return -ENOMEM;
371
372 skb_push(skb, ETH_HLEN);
373 skb_reset_mac_header(skb);
374 skb_reset_mac_len(skb);
375
376 hdr = eth_hdr(skb);
377 ether_addr_copy(hdr->h_source, ethh->addresses.eth_src);
378 ether_addr_copy(hdr->h_dest, ethh->addresses.eth_dst);
379 hdr->h_proto = skb->protocol;
380
381 skb_postpush_rcsum(skb, hdr, ETH_HLEN);
382
383 /* safe right before invalidate_flow_key */
384 key->mac_proto = MAC_PROTO_ETHERNET;
385 invalidate_flow_key(key);
386 return 0;
387}
388
96b82f6d
YY
389static int push_nsh(struct sk_buff *skb, struct sw_flow_key *key,
390 const struct nshhdr *nh)
391{
392 int err;
393
394 err = ovs_nsh_push(skb, nh);
395 if (err)
396 return err;
397
398 /* safe right before invalidate_flow_key */
399 key->mac_proto = MAC_PROTO_NONE;
400 invalidate_flow_key(key);
401 return 0;
402}
403
404static int pop_nsh(struct sk_buff *skb, struct sw_flow_key *key)
405{
406 int err;
407
408 err = ovs_nsh_pop(skb);
409 if (err)
410 return err;
411
412 /* safe right before invalidate_flow_key */
413 if (skb->protocol == htons(ETH_P_TEB))
414 key->mac_proto = MAC_PROTO_ETHERNET;
415 else
416 key->mac_proto = MAC_PROTO_NONE;
417 invalidate_flow_key(key);
418 return 0;
419}
420
efdb0c9f
GG
421static void update_ip_l4_checksum(struct sk_buff *skb, struct iphdr *nh,
422 __be32 addr, __be32 new_addr)
ca78c6b6
BP
423{
424 int transport_len = skb->len - skb_transport_offset(skb);
4edb9ae9 425
efdb0c9f
GG
426 if (nh->frag_off & htons(IP_OFFSET))
427 return;
428
4edb9ae9 429 if (nh->protocol == IPPROTO_TCP) {
ca78c6b6 430 if (likely(transport_len >= sizeof(struct tcphdr)))
4edb9ae9 431 inet_proto_csum_replace4(&tcp_hdr(skb)->check, skb,
8063e095 432 addr, new_addr, true);
4edb9ae9 433 } else if (nh->protocol == IPPROTO_UDP) {
55ce87bc
JG
434 if (likely(transport_len >= sizeof(struct udphdr))) {
435 struct udphdr *uh = udp_hdr(skb);
436
237c4f2a 437 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
55ce87bc 438 inet_proto_csum_replace4(&uh->check, skb,
8063e095 439 addr, new_addr, true);
55ce87bc
JG
440 if (!uh->check)
441 uh->check = CSUM_MANGLED_0;
442 }
443 }
ca78c6b6 444 }
4edb9ae9 445
efdb0c9f
GG
446}
447
448static void set_ip_addr(struct sk_buff *skb, struct iphdr *nh,
449 __be32 *addr, __be32 new_addr)
450{
451 update_ip_l4_checksum(skb, nh, *addr, new_addr);
4edb9ae9 452 csum_replace4(&nh->check, *addr, new_addr);
e2f3178f 453 skb_clear_hash(skb);
4edb9ae9 454 *addr = new_addr;
ca78c6b6
BP
455}
456
bc7a5acd
AA
457static void update_ipv6_checksum(struct sk_buff *skb, u8 l4_proto,
458 __be32 addr[4], const __be32 new_addr[4])
459{
460 int transport_len = skb->len - skb_transport_offset(skb);
461
00894212 462 if (l4_proto == NEXTHDR_TCP) {
bc7a5acd
AA
463 if (likely(transport_len >= sizeof(struct tcphdr)))
464 inet_proto_csum_replace16(&tcp_hdr(skb)->check, skb,
8063e095 465 addr, new_addr, true);
00894212 466 } else if (l4_proto == NEXTHDR_UDP) {
bc7a5acd
AA
467 if (likely(transport_len >= sizeof(struct udphdr))) {
468 struct udphdr *uh = udp_hdr(skb);
469
237c4f2a 470 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
bc7a5acd 471 inet_proto_csum_replace16(&uh->check, skb,
8063e095 472 addr, new_addr, true);
bc7a5acd
AA
473 if (!uh->check)
474 uh->check = CSUM_MANGLED_0;
475 }
476 }
00894212
JG
477 } else if (l4_proto == NEXTHDR_ICMP) {
478 if (likely(transport_len >= sizeof(struct icmp6hdr)))
479 inet_proto_csum_replace16(&icmp6_hdr(skb)->icmp6_cksum,
8063e095 480 skb, addr, new_addr, true);
bc7a5acd
AA
481 }
482}
483
b940b3d7
JR
484static void mask_ipv6_addr(const __be32 old[4], const __be32 addr[4],
485 const __be32 mask[4], __be32 masked[4])
486{
e281bb23
JS
487 masked[0] = OVS_MASKED(old[0], addr[0], mask[0]);
488 masked[1] = OVS_MASKED(old[1], addr[1], mask[1]);
489 masked[2] = OVS_MASKED(old[2], addr[2], mask[2]);
490 masked[3] = OVS_MASKED(old[3], addr[3], mask[3]);
b940b3d7
JR
491}
492
bc7a5acd
AA
493static void set_ipv6_addr(struct sk_buff *skb, u8 l4_proto,
494 __be32 addr[4], const __be32 new_addr[4],
495 bool recalculate_csum)
496{
51cf5e71 497 if (likely(recalculate_csum))
bc7a5acd
AA
498 update_ipv6_checksum(skb, l4_proto, addr, new_addr);
499
e2f3178f 500 skb_clear_hash(skb);
bc7a5acd
AA
501 memcpy(addr, new_addr, sizeof(__be32[4]));
502}
503
b940b3d7 504static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl, u32 mask)
bc7a5acd 505{
b940b3d7 506 /* Bits 21-24 are always unmasked, so this retains their values. */
e281bb23
JS
507 OVS_SET_MASKED(nh->flow_lbl[0], (u8)(fl >> 16), (u8)(mask >> 16));
508 OVS_SET_MASKED(nh->flow_lbl[1], (u8)(fl >> 8), (u8)(mask >> 8));
509 OVS_SET_MASKED(nh->flow_lbl[2], (u8)fl, (u8)mask);
bc7a5acd
AA
510}
511
b940b3d7
JR
512static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl,
513 u8 mask)
bc7a5acd 514{
e281bb23 515 new_ttl = OVS_MASKED(nh->ttl, new_ttl, mask);
bc7a5acd 516
a61680c6
JP
517 csum_replace2(&nh->check, htons(nh->ttl << 8), htons(new_ttl << 8));
518 nh->ttl = new_ttl;
519}
520
b940b3d7
JR
521static int set_ipv4(struct sk_buff *skb, struct sw_flow_key *flow_key,
522 const struct ovs_key_ipv4 *key,
523 const struct ovs_key_ipv4 *mask)
064af421 524{
ca78c6b6 525 struct iphdr *nh;
b940b3d7 526 __be32 new_addr;
10db8b20 527 int err;
ca78c6b6 528
5cce04b6
TG
529 err = skb_ensure_writable(skb, skb_network_offset(skb) +
530 sizeof(struct iphdr));
10db8b20
JG
531 if (unlikely(err))
532 return err;
ca78c6b6
BP
533
534 nh = ip_hdr(skb);
ca78c6b6 535
b940b3d7
JR
536 /* Setting an IP addresses is typically only a side effect of
537 * matching on them in the current userspace implementation, so it
538 * makes sense to check if the value actually changed.
539 */
540 if (mask->ipv4_src) {
e281bb23 541 new_addr = OVS_MASKED(nh->saddr, key->ipv4_src, mask->ipv4_src);
ca78c6b6 542
b940b3d7
JR
543 if (unlikely(new_addr != nh->saddr)) {
544 set_ip_addr(skb, nh, &nh->saddr, new_addr);
545 flow_key->ipv4.addr.src = new_addr;
546 }
e16138e2 547 }
b940b3d7 548 if (mask->ipv4_dst) {
e281bb23 549 new_addr = OVS_MASKED(nh->daddr, key->ipv4_dst, mask->ipv4_dst);
a4a26436 550
b940b3d7
JR
551 if (unlikely(new_addr != nh->daddr)) {
552 set_ip_addr(skb, nh, &nh->daddr, new_addr);
553 flow_key->ipv4.addr.dst = new_addr;
554 }
e16138e2 555 }
b940b3d7
JR
556 if (mask->ipv4_tos) {
557 ipv4_change_dsfield(nh, ~mask->ipv4_tos, key->ipv4_tos);
558 flow_key->ip.tos = nh->tos;
559 }
560 if (mask->ipv4_ttl) {
561 set_ip_ttl(skb, nh, key->ipv4_ttl, mask->ipv4_ttl);
562 flow_key->ip.ttl = nh->ttl;
e16138e2 563 }
a61680c6 564
10db8b20 565 return 0;
064af421
BP
566}
567
b940b3d7
JR
568static bool is_ipv6_mask_nonzero(const __be32 addr[4])
569{
570 return !!(addr[0] | addr[1] | addr[2] | addr[3]);
571}
572
573static int set_ipv6(struct sk_buff *skb, struct sw_flow_key *flow_key,
574 const struct ovs_key_ipv6 *key,
575 const struct ovs_key_ipv6 *mask)
bc7a5acd
AA
576{
577 struct ipv6hdr *nh;
578 int err;
bc7a5acd 579
5cce04b6
TG
580 err = skb_ensure_writable(skb, skb_network_offset(skb) +
581 sizeof(struct ipv6hdr));
bc7a5acd
AA
582 if (unlikely(err))
583 return err;
584
585 nh = ipv6_hdr(skb);
bc7a5acd 586
b940b3d7
JR
587 /* Setting an IP addresses is typically only a side effect of
588 * matching on them in the current userspace implementation, so it
589 * makes sense to check if the value actually changed.
590 */
591 if (is_ipv6_mask_nonzero(mask->ipv6_src)) {
592 __be32 *saddr = (__be32 *)&nh->saddr;
593 __be32 masked[4];
594
595 mask_ipv6_addr(saddr, key->ipv6_src, mask->ipv6_src, masked);
596
597 if (unlikely(memcmp(saddr, masked, sizeof(masked)))) {
49a8eef8 598 set_ipv6_addr(skb, flow_key->ip.proto, saddr, masked,
b940b3d7
JR
599 true);
600 memcpy(&flow_key->ipv6.addr.src, masked,
601 sizeof(flow_key->ipv6.addr.src));
602 }
603 }
604 if (is_ipv6_mask_nonzero(mask->ipv6_dst)) {
bc7a5acd 605 unsigned int offset = 0;
8abaa53c 606 int flags = IP6_FH_F_SKIP_RH;
bc7a5acd 607 bool recalc_csum = true;
b940b3d7
JR
608 __be32 *daddr = (__be32 *)&nh->daddr;
609 __be32 masked[4];
610
611 mask_ipv6_addr(daddr, key->ipv6_dst, mask->ipv6_dst, masked);
612
613 if (unlikely(memcmp(daddr, masked, sizeof(masked)))) {
614 if (ipv6_ext_hdr(nh->nexthdr))
615 recalc_csum = (ipv6_find_hdr(skb, &offset,
616 NEXTHDR_ROUTING,
617 NULL, &flags)
618 != NEXTHDR_ROUTING);
619
49a8eef8 620 set_ipv6_addr(skb, flow_key->ip.proto, daddr, masked,
b940b3d7
JR
621 recalc_csum);
622 memcpy(&flow_key->ipv6.addr.dst, masked,
623 sizeof(flow_key->ipv6.addr.dst));
624 }
625 }
626 if (mask->ipv6_tclass) {
627 ipv6_change_dsfield(nh, ~mask->ipv6_tclass, key->ipv6_tclass);
628 flow_key->ip.tos = ipv6_get_dsfield(nh);
629 }
630 if (mask->ipv6_label) {
631 set_ipv6_fl(nh, ntohl(key->ipv6_label),
632 ntohl(mask->ipv6_label));
633 flow_key->ipv6.label =
634 *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL);
635 }
636 if (mask->ipv6_hlimit) {
e281bb23
JS
637 OVS_SET_MASKED(nh->hop_limit, key->ipv6_hlimit,
638 mask->ipv6_hlimit);
b940b3d7 639 flow_key->ip.ttl = nh->hop_limit;
bc7a5acd 640 }
bc7a5acd
AA
641 return 0;
642}
643
96b82f6d
YY
644static int set_nsh(struct sk_buff *skb, struct sw_flow_key *flow_key,
645 const struct nlattr *a)
646{
647 struct nshhdr *nh;
648 size_t length;
649 int err;
650 u8 flags;
651 u8 ttl;
652 int i;
653
654 struct ovs_key_nsh key;
655 struct ovs_key_nsh mask;
656
657 err = nsh_key_from_nlattr(a, &key, &mask);
658 if (err)
659 return err;
660
661 /* Make sure the NSH base header is there */
662 if (!pskb_may_pull(skb, skb_network_offset(skb) + NSH_BASE_HDR_LEN))
663 return -ENOMEM;
664
665 nh = nsh_hdr(skb);
666 length = nsh_hdr_len(nh);
667
668 /* Make sure the whole NSH header is there */
669 err = skb_ensure_writable(skb, skb_network_offset(skb) +
670 length);
671 if (unlikely(err))
672 return err;
673
674 nh = nsh_hdr(skb);
675 skb_postpull_rcsum(skb, nh, length);
676 flags = nsh_get_flags(nh);
677 flags = OVS_MASKED(flags, key.base.flags, mask.base.flags);
678 flow_key->nsh.base.flags = flags;
679 ttl = nsh_get_ttl(nh);
680 ttl = OVS_MASKED(ttl, key.base.ttl, mask.base.ttl);
681 flow_key->nsh.base.ttl = ttl;
682 nsh_set_flags_and_ttl(nh, flags, ttl);
683 nh->path_hdr = OVS_MASKED(nh->path_hdr, key.base.path_hdr,
684 mask.base.path_hdr);
685 flow_key->nsh.base.path_hdr = nh->path_hdr;
686 switch (nh->mdtype) {
687 case NSH_M_TYPE1:
688 for (i = 0; i < NSH_MD1_CONTEXT_SIZE; i++) {
689 nh->md1.context[i] =
690 OVS_MASKED(nh->md1.context[i], key.context[i],
691 mask.context[i]);
692 }
693 memcpy(flow_key->nsh.context, nh->md1.context,
694 sizeof(nh->md1.context));
695 break;
696 case NSH_M_TYPE2:
697 memset(flow_key->nsh.context, 0,
698 sizeof(flow_key->nsh.context));
699 break;
700 default:
701 return -EINVAL;
702 }
703 skb_postpush_rcsum(skb, nh, length);
704 return 0;
705}
706
5cce04b6 707/* Must follow skb_ensure_writable() since that can move the skb data. */
4edb9ae9 708static void set_tp_port(struct sk_buff *skb, __be16 *port,
b940b3d7 709 __be16 new_port, __sum16 *check)
959a2ecd 710{
8063e095 711 inet_proto_csum_replace2(check, skb, *port, new_port, false);
4edb9ae9 712 *port = new_port;
55ce87bc
JG
713}
714
b940b3d7
JR
715static int set_udp(struct sk_buff *skb, struct sw_flow_key *flow_key,
716 const struct ovs_key_udp *key,
717 const struct ovs_key_udp *mask)
4edb9ae9
PS
718{
719 struct udphdr *uh;
b940b3d7 720 __be16 src, dst;
4edb9ae9 721 int err;
10db8b20 722
5cce04b6
TG
723 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
724 sizeof(struct udphdr));
10db8b20
JG
725 if (unlikely(err))
726 return err;
727
4edb9ae9 728 uh = udp_hdr(skb);
b940b3d7 729 /* Either of the masks is non-zero, so do not bother checking them. */
e281bb23
JS
730 src = OVS_MASKED(uh->source, key->udp_src, mask->udp_src);
731 dst = OVS_MASKED(uh->dest, key->udp_dst, mask->udp_dst);
4edb9ae9 732
b940b3d7
JR
733 if (uh->check && skb->ip_summed != CHECKSUM_PARTIAL) {
734 if (likely(src != uh->source)) {
735 set_tp_port(skb, &uh->source, src, &uh->check);
736 flow_key->tp.src = src;
737 }
738 if (likely(dst != uh->dest)) {
739 set_tp_port(skb, &uh->dest, dst, &uh->check);
740 flow_key->tp.dst = dst;
741 }
742
743 if (unlikely(!uh->check))
744 uh->check = CSUM_MANGLED_0;
745 } else {
746 uh->source = src;
747 uh->dest = dst;
748 flow_key->tp.src = src;
749 flow_key->tp.dst = dst;
e16138e2 750 }
10db8b20 751
b940b3d7
JR
752 skb_clear_hash(skb);
753
10db8b20 754 return 0;
959a2ecd
JP
755}
756
b940b3d7
JR
757static int set_tcp(struct sk_buff *skb, struct sw_flow_key *flow_key,
758 const struct ovs_key_tcp *key,
759 const struct ovs_key_tcp *mask)
064af421 760{
4edb9ae9 761 struct tcphdr *th;
b940b3d7 762 __be16 src, dst;
10db8b20 763 int err;
064af421 764
5cce04b6
TG
765 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
766 sizeof(struct tcphdr));
10db8b20
JG
767 if (unlikely(err))
768 return err;
ca78c6b6 769
4edb9ae9 770 th = tcp_hdr(skb);
e281bb23 771 src = OVS_MASKED(th->source, key->tcp_src, mask->tcp_src);
b940b3d7
JR
772 if (likely(src != th->source)) {
773 set_tp_port(skb, &th->source, src, &th->check);
774 flow_key->tp.src = src;
775 }
e281bb23 776 dst = OVS_MASKED(th->dest, key->tcp_dst, mask->tcp_dst);
b940b3d7
JR
777 if (likely(dst != th->dest)) {
778 set_tp_port(skb, &th->dest, dst, &th->check);
779 flow_key->tp.dst = dst;
e16138e2 780 }
b940b3d7 781 skb_clear_hash(skb);
ca78c6b6 782
10db8b20 783 return 0;
064af421
BP
784}
785
b940b3d7
JR
786static int set_sctp(struct sk_buff *skb, struct sw_flow_key *flow_key,
787 const struct ovs_key_sctp *key,
788 const struct ovs_key_sctp *mask)
10f72e3d 789{
b940b3d7 790 unsigned int sctphoff = skb_transport_offset(skb);
10f72e3d 791 struct sctphdr *sh;
b940b3d7 792 __le32 old_correct_csum, new_csum, old_csum;
10f72e3d 793 int err;
10f72e3d 794
5cce04b6 795 err = skb_ensure_writable(skb, sctphoff + sizeof(struct sctphdr));
10f72e3d
JS
796 if (unlikely(err))
797 return err;
798
799 sh = sctp_hdr(skb);
b940b3d7
JR
800 old_csum = sh->checksum;
801 old_correct_csum = sctp_compute_cksum(skb, sctphoff);
10f72e3d 802
e281bb23
JS
803 sh->source = OVS_MASKED(sh->source, key->sctp_src, mask->sctp_src);
804 sh->dest = OVS_MASKED(sh->dest, key->sctp_dst, mask->sctp_dst);
10f72e3d 805
b940b3d7 806 new_csum = sctp_compute_cksum(skb, sctphoff);
10f72e3d 807
b940b3d7
JR
808 /* Carry any checksum errors through. */
809 sh->checksum = old_csum ^ old_correct_csum ^ new_csum;
10f72e3d 810
b940b3d7
JR
811 skb_clear_hash(skb);
812 flow_key->tp.src = sh->source;
813 flow_key->tp.dst = sh->dest;
10f72e3d
JS
814
815 return 0;
816}
817
a94ebc39
JS
818static int ovs_vport_output(OVS_VPORT_OUTPUT_PARAMS)
819{
e9326797 820 struct ovs_frag_data *data = this_cpu_ptr(&ovs_frag_data_storage);
a94ebc39
JS
821 struct vport *vport = data->vport;
822
823 if (skb_cow_head(skb, data->l2_len) < 0) {
824 kfree_skb(skb);
825 return -ENOMEM;
826 }
827
828 __skb_dst_copy(skb, data->dst);
86c2eb45 829 *OVS_GSO_CB(skb) = data->cb;
a94ebc39 830 ovs_skb_set_inner_protocol(skb, data->inner_protocol);
9feb5bda
MM
831 if (data->vlan_tci & VLAN_CFI_MASK)
832 __vlan_hwaccel_put_tag(skb, data->vlan_proto, data->vlan_tci & ~VLAN_CFI_MASK);
833 else
834 __vlan_hwaccel_clear_tag(skb);
a94ebc39
JS
835
836 /* Reconstruct the MAC header. */
837 skb_push(skb, data->l2_len);
838 memcpy(skb->data, &data->l2_data, data->l2_len);
ea3acd7a 839 skb_postpush_rcsum(skb, skb->data, data->l2_len);
a94ebc39
JS
840 skb_reset_mac_header(skb);
841
279ecabe
YHW
842 if (eth_p_mpls(skb->protocol)) {
843 skb->inner_network_header = skb->network_header;
844 skb_set_network_header(skb, data->network_offset);
845 skb_reset_mac_len(skb);
846 }
847
f80d0524 848 ovs_vport_send(vport, skb, data->mac_proto);
a94ebc39
JS
849 return 0;
850}
851
852static unsigned int
853ovs_dst_get_mtu(const struct dst_entry *dst)
854{
855 return dst->dev->mtu;
856}
857
858static struct dst_ops ovs_dst_ops = {
859 .family = AF_UNSPEC,
860 .mtu = ovs_dst_get_mtu,
861};
862
863/* prepare_frag() is called once per (larger-than-MTU) frame; its inverse is
864 * ovs_vport_output(), which is called once per fragmented packet.
865 */
f80d0524 866static void prepare_frag(struct vport *vport, struct sk_buff *skb,
279ecabe 867 u16 orig_network_offset, u8 mac_proto)
a94ebc39
JS
868{
869 unsigned int hlen = skb_network_offset(skb);
870 struct ovs_frag_data *data;
871
e9326797 872 data = this_cpu_ptr(&ovs_frag_data_storage);
a94ebc39
JS
873 data->dst = (unsigned long) skb_dst(skb);
874 data->vport = vport;
86c2eb45 875 data->cb = *OVS_GSO_CB(skb);
a94ebc39 876 data->inner_protocol = ovs_skb_get_inner_protocol(skb);
279ecabe 877 data->network_offset = orig_network_offset;
9feb5bda
MM
878 if (skb_vlan_tag_present(skb))
879 data->vlan_tci = skb_vlan_tag_get(skb) | VLAN_CFI_MASK;
880 else
881 data->vlan_tci = 0;
a94ebc39 882 data->vlan_proto = skb->vlan_proto;
f80d0524 883 data->mac_proto = mac_proto;
a94ebc39
JS
884 data->l2_len = hlen;
885 memcpy(&data->l2_data, skb->data, hlen);
886
887 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
888 skb_pull(skb, hlen);
889}
890
025813bb 891static void ovs_fragment(struct net *net, struct vport *vport,
f80d0524
YY
892 struct sk_buff *skb, u16 mru,
893 struct sw_flow_key *key)
a94ebc39 894{
279ecabe
YHW
895 u16 orig_network_offset = 0;
896
897 if (eth_p_mpls(skb->protocol)) {
898 orig_network_offset = skb_network_offset(skb);
899 skb->network_header = skb->inner_network_header;
900 }
901
a94ebc39
JS
902 if (skb_network_offset(skb) > MAX_L2_LEN) {
903 OVS_NLERR(1, "L2 header too long to fragment");
c05e2094 904 goto err;
a94ebc39
JS
905 }
906
f80d0524 907 if (key->eth.type == htons(ETH_P_IP)) {
a94ebc39
JS
908 struct dst_entry ovs_dst;
909 unsigned long orig_dst;
910
279ecabe
YHW
911 prepare_frag(vport, skb, orig_network_offset,
912 ovs_key_mac_proto(key));
a94ebc39
JS
913 dst_init(&ovs_dst, &ovs_dst_ops, NULL, 1,
914 DST_OBSOLETE_NONE, DST_NOCOUNT);
915 ovs_dst.dev = vport->dev;
916
917 orig_dst = (unsigned long) skb_dst(skb);
918 skb_dst_set_noref(skb, &ovs_dst);
919 IPCB(skb)->frag_max_size = mru;
920
0374bcbe 921 ip_do_fragment(net, skb->sk, skb, ovs_vport_output);
a94ebc39 922 refdst_drop(orig_dst);
f80d0524 923 } else if (key->eth.type == htons(ETH_P_IPV6)) {
a94ebc39
JS
924 const struct nf_ipv6_ops *v6ops = nf_get_ipv6_ops();
925 unsigned long orig_dst;
926 struct rt6_info ovs_rt;
927
09b26ccb 928 if (!v6ops)
c05e2094 929 goto err;
a94ebc39 930
279ecabe 931 prepare_frag(vport, skb, orig_network_offset,
f80d0524 932 ovs_key_mac_proto(key));
a94ebc39
JS
933 memset(&ovs_rt, 0, sizeof(ovs_rt));
934 dst_init(&ovs_rt.dst, &ovs_dst_ops, NULL, 1,
935 DST_OBSOLETE_NONE, DST_NOCOUNT);
936 ovs_rt.dst.dev = vport->dev;
937
938 orig_dst = (unsigned long) skb_dst(skb);
939 skb_dst_set_noref(skb, &ovs_rt.dst);
940 IP6CB(skb)->frag_max_size = mru;
0643a78b
PS
941#ifdef HAVE_IP_LOCAL_OUT_TAKES_NET
942 v6ops->fragment(net, skb->sk, skb, ovs_vport_output);
943#else
a94ebc39 944 v6ops->fragment(skb->sk, skb, ovs_vport_output);
0643a78b 945#endif
a94ebc39
JS
946 refdst_drop(orig_dst);
947 } else {
948 WARN_ONCE(1, "Failed fragment ->%s: eth=%04x, MRU=%d, MTU=%d.",
f80d0524 949 ovs_vport_name(vport), ntohs(key->eth.type), mru,
a94ebc39 950 vport->dev->mtu);
c05e2094 951 goto err;
a94ebc39 952 }
c05e2094
JS
953
954 return;
955err:
956 kfree_skb(skb);
a94ebc39 957}
a94ebc39
JS
958
959static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port,
960 struct sw_flow_key *key)
064af421 961{
fe90efd9 962 struct vport *vport = ovs_vport_rcu(dp, out_port);
064af421 963
a94ebc39
JS
964 if (likely(vport)) {
965 u16 mru = OVS_CB(skb)->mru;
4c7804f1
WT
966 u32 cutlen = OVS_CB(skb)->cutlen;
967
968 if (unlikely(cutlen > 0)) {
f80d0524 969 if (skb->len - cutlen > ovs_mac_header_len(key))
4c7804f1
WT
970 pskb_trim(skb, skb->len - cutlen);
971 else
f80d0524 972 pskb_trim(skb, ovs_mac_header_len(key));
4c7804f1 973 }
a94ebc39 974
f0b0bdd2
YY
975 if (likely(!mru ||
976 (skb->len <= mru + vport->dev->hard_header_len))) {
f80d0524 977 ovs_vport_send(vport, skb, ovs_key_mac_proto(key));
a94ebc39 978 } else if (mru <= vport->dev->mtu) {
025813bb 979 struct net *net = ovs_dp_get_net(dp);
a94ebc39 980
f80d0524 981 ovs_fragment(net, vport, skb, mru, key);
a94ebc39
JS
982 } else {
983 OVS_NLERR(true, "Cannot fragment IP frames");
984 kfree_skb(skb);
985 }
986 } else {
f15c8639 987 kfree_skb(skb);
a94ebc39 988 }
064af421 989}
aad7cb91 990
98403001 991static int output_userspace(struct datapath *dp, struct sk_buff *skb,
0e469d3b 992 struct sw_flow_key *key, const struct nlattr *attr,
4c7804f1
WT
993 const struct nlattr *actions, int actions_len,
994 uint32_t cutlen)
064af421 995{
856081f6 996 struct dp_upcall_info upcall;
98403001 997 const struct nlattr *a;
aad7cb91 998 int rem, err;
856081f6 999
0e469d3b 1000 memset(&upcall, 0, sizeof(upcall));
df2c07f4 1001 upcall.cmd = OVS_PACKET_CMD_ACTION;
a94ebc39 1002 upcall.mru = OVS_CB(skb)->mru;
98403001 1003
aad7cb91 1004 SKB_INIT_FILL_METADATA_DST(skb);
98403001
BP
1005 for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
1006 a = nla_next(a, &rem)) {
1007 switch (nla_type(a)) {
1008 case OVS_USERSPACE_ATTR_USERDATA:
1009 upcall.userdata = a;
1010 break;
1011
1012 case OVS_USERSPACE_ATTR_PID:
28aea917 1013 upcall.portid = nla_get_u32(a);
98403001 1014 break;
8b7ea2d4
WZ
1015
1016 case OVS_USERSPACE_ATTR_EGRESS_TUN_PORT: {
1017 /* Get out tunnel info. */
1018 struct vport *vport;
1019
1020 vport = ovs_vport_rcu(dp, nla_get_u32(a));
1021 if (vport) {
aad7cb91
PS
1022 err = dev_fill_metadata_dst(vport->dev, skb);
1023 if (!err)
1024 upcall.egress_tun_info = skb_tunnel_info(skb);
8b7ea2d4 1025 }
e23775f2 1026
8b7ea2d4 1027 break;
98403001 1028 }
8b7ea2d4 1029
0e469d3b
NM
1030 case OVS_USERSPACE_ATTR_ACTIONS: {
1031 /* Include actions. */
1032 upcall.actions = actions;
1033 upcall.actions_len = actions_len;
1034 break;
1035 }
1036
8b7ea2d4 1037 } /* End of switch. */
98403001
BP
1038 }
1039
aad7cb91
PS
1040 err = ovs_dp_upcall(dp, skb, key, &upcall, cutlen);
1041 SKB_RESTORE_FILL_METADATA_DST(skb);
1042 return err;
064af421
BP
1043}
1044
7d9595e3
AZ
1045/* When 'last' is true, sample() should always consume the 'skb'.
1046 * Otherwise, sample() should keep 'skb' intact regardless what
1047 * actions are executed within sample().
1048 */
6ff686f2 1049static int sample(struct datapath *dp, struct sk_buff *skb,
0e469d3b 1050 struct sw_flow_key *key, const struct nlattr *attr,
7d9595e3 1051 bool last)
6ff686f2 1052{
7d9595e3
AZ
1053 struct nlattr *actions;
1054 struct nlattr *sample_arg;
7d9595e3 1055 int rem = nla_len(attr);
7d9595e3 1056 const struct sample_arg *arg;
d4004f8d 1057 bool clone_flow_key;
6ff686f2 1058
7d9595e3
AZ
1059 /* The first action is always 'OVS_SAMPLE_ATTR_ARG'. */
1060 sample_arg = nla_data(attr);
1061 arg = nla_data(sample_arg);
1062 actions = nla_next(sample_arg, &rem);
c02c4967 1063
7d9595e3
AZ
1064 if ((arg->probability != U32_MAX) &&
1065 (!arg->probability || prandom_u32() > arg->probability)) {
1066 if (last)
1067 consume_skb(skb);
1068 return 0;
6ff686f2
PS
1069 }
1070
d4004f8d
AZ
1071 clone_flow_key = !arg->exec;
1072 return clone_execute(dp, skb, key, 0, actions, rem, last,
1073 clone_flow_key);
6ff686f2
PS
1074}
1075
5a77cf96
YS
1076/* When 'last' is true, clone() should always consume the 'skb'.
1077 * Otherwise, clone() should keep 'skb' intact regardless what
1078 * actions are executed within clone().
1079 */
1080static int clone(struct datapath *dp, struct sk_buff *skb,
1081 struct sw_flow_key *key, const struct nlattr *attr,
1082 bool last)
1083{
1084 struct nlattr *actions;
1085 struct nlattr *clone_arg;
1086 int rem = nla_len(attr);
1087 bool dont_clone_flow_key;
1088
1089 /* The first action is always 'OVS_CLONE_ATTR_ARG'. */
1090 clone_arg = nla_data(attr);
1091 dont_clone_flow_key = nla_get_u32(clone_arg);
1092 actions = nla_next(clone_arg, &rem);
1093
1094 return clone_execute(dp, skb, key, 0, actions, rem, last,
1095 !dont_clone_flow_key);
1096}
1097
e74d4817
PS
1098static void execute_hash(struct sk_buff *skb, struct sw_flow_key *key,
1099 const struct nlattr *attr)
7804df20 1100{
7804df20
AZ
1101 struct ovs_action_hash *hash_act = nla_data(attr);
1102 u32 hash = 0;
1103
1104 /* OVS_HASH_ALG_L4 is the only possible hash algorithm. */
e2f3178f 1105 hash = skb_get_hash(skb);
7804df20
AZ
1106 hash = jhash_1word(hash, hash_act->hash_basis);
1107 if (!hash)
1108 hash = 0x1;
1109
1110 key->ovs_flow_hash = hash;
1111}
1112
b940b3d7
JR
1113static int execute_set_action(struct sk_buff *skb,
1114 struct sw_flow_key *flow_key,
1115 const struct nlattr *a)
1116{
1117 /* Only tunnel set execution is supported without a mask. */
1118 if (nla_type(a) == OVS_KEY_ATTR_TUNNEL_INFO) {
e23775f2
PS
1119 struct ovs_tunnel_info *tun = nla_data(a);
1120
1121 ovs_skb_dst_drop(skb);
1122 ovs_dst_hold((struct dst_entry *)tun->tun_dst);
1123 ovs_skb_dst_set(skb, (struct dst_entry *)tun->tun_dst);
b940b3d7
JR
1124 return 0;
1125 }
1126
1127 return -EINVAL;
b940b3d7
JR
1128}
1129
1130/* Mask is at the midpoint of the data. */
1131#define get_mask(a, type) ((const type)nla_data(a) + 1)
1132
1133static int execute_masked_set_action(struct sk_buff *skb,
1134 struct sw_flow_key *flow_key,
1135 const struct nlattr *a)
4edb9ae9 1136{
15c39847 1137 int err = 0;
4edb9ae9 1138
b940b3d7 1139 switch (nla_type(a)) {
abff858b 1140 case OVS_KEY_ATTR_PRIORITY:
e281bb23
JS
1141 OVS_SET_MASKED(skb->priority, nla_get_u32(a),
1142 *get_mask(a, u32 *));
b940b3d7 1143 flow_key->phy.priority = skb->priority;
abff858b
PS
1144 break;
1145
72e8bf28 1146 case OVS_KEY_ATTR_SKB_MARK:
e281bb23 1147 OVS_SET_MASKED(skb->mark, nla_get_u32(a), *get_mask(a, u32 *));
b940b3d7 1148 flow_key->phy.skb_mark = skb->mark;
72e8bf28
AA
1149 break;
1150
f0cd669f 1151 case OVS_KEY_ATTR_TUNNEL_INFO:
b940b3d7
JR
1152 /* Masked data not supported for tunnel. */
1153 err = -EINVAL;
4edb9ae9
PS
1154 break;
1155
1156 case OVS_KEY_ATTR_ETHERNET:
b940b3d7
JR
1157 err = set_eth_addr(skb, flow_key, nla_data(a),
1158 get_mask(a, struct ovs_key_ethernet *));
4edb9ae9
PS
1159 break;
1160
96b82f6d
YY
1161 case OVS_KEY_ATTR_NSH:
1162 err = set_nsh(skb, flow_key, a);
1163 break;
1164
4edb9ae9 1165 case OVS_KEY_ATTR_IPV4:
b940b3d7
JR
1166 err = set_ipv4(skb, flow_key, nla_data(a),
1167 get_mask(a, struct ovs_key_ipv4 *));
4edb9ae9
PS
1168 break;
1169
bc7a5acd 1170 case OVS_KEY_ATTR_IPV6:
b940b3d7
JR
1171 err = set_ipv6(skb, flow_key, nla_data(a),
1172 get_mask(a, struct ovs_key_ipv6 *));
bc7a5acd
AA
1173 break;
1174
4edb9ae9 1175 case OVS_KEY_ATTR_TCP:
b940b3d7
JR
1176 err = set_tcp(skb, flow_key, nla_data(a),
1177 get_mask(a, struct ovs_key_tcp *));
4edb9ae9
PS
1178 break;
1179
1180 case OVS_KEY_ATTR_UDP:
b940b3d7
JR
1181 err = set_udp(skb, flow_key, nla_data(a),
1182 get_mask(a, struct ovs_key_udp *));
4edb9ae9 1183 break;
10f72e3d
JS
1184
1185 case OVS_KEY_ATTR_SCTP:
b940b3d7
JR
1186 err = set_sctp(skb, flow_key, nla_data(a),
1187 get_mask(a, struct ovs_key_sctp *));
10f72e3d 1188 break;
ccf43786
SH
1189
1190 case OVS_KEY_ATTR_MPLS:
b940b3d7
JR
1191 err = set_mpls(skb, flow_key, nla_data(a), get_mask(a,
1192 __be32 *));
ccf43786 1193 break;
a94ebc39
JS
1194
1195 case OVS_KEY_ATTR_CT_STATE:
1196 case OVS_KEY_ATTR_CT_ZONE:
372ce973 1197 case OVS_KEY_ATTR_CT_MARK:
c05e2094 1198 case OVS_KEY_ATTR_CT_LABELS:
c30b4cea
JR
1199 case OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV4:
1200 case OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV6:
a94ebc39
JS
1201 err = -EINVAL;
1202 break;
4edb9ae9 1203 }
15c39847 1204
4edb9ae9
PS
1205 return err;
1206}
1207
a6059080 1208static int execute_recirc(struct datapath *dp, struct sk_buff *skb,
7d16c847 1209 struct sw_flow_key *key,
d4004f8d 1210 const struct nlattr *a, bool last)
a6059080 1211{
d4004f8d 1212 u32 recirc_id;
e74d4817
PS
1213
1214 if (!is_flow_key_valid(key)) {
867e37ba
AZ
1215 int err;
1216
e74d4817 1217 err = ovs_flow_key_update(skb, key);
867e37ba
AZ
1218 if (err)
1219 return err;
867e37ba 1220 }
e74d4817 1221 BUG_ON(!is_flow_key_valid(key));
a6059080 1222
d4004f8d
AZ
1223 recirc_id = nla_get_u32(a);
1224 return clone_execute(dp, skb, key, recirc_id, NULL, 0, last, true);
a6059080
AZ
1225}
1226
faa3beb4
NS
1227static int execute_check_pkt_len(struct datapath *dp, struct sk_buff *skb,
1228 struct sw_flow_key *key,
1229 const struct nlattr *attr, bool last)
1230{
1231 const struct nlattr *actions, *cpl_arg;
1232 const struct check_pkt_len_arg *arg;
1233 int rem = nla_len(attr);
1234 bool clone_flow_key;
1235
1236 /* The first netlink attribute in 'attr' is always
1237 * 'OVS_CHECK_PKT_LEN_ATTR_ARG'.
1238 */
1239 cpl_arg = nla_data(attr);
1240 arg = nla_data(cpl_arg);
1241
1242 if (skb->len <= arg->pkt_len) {
1243 /* Second netlink attribute in 'attr' is always
1244 * 'OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_LESS_EQUAL'.
1245 */
1246 actions = nla_next(cpl_arg, &rem);
1247 clone_flow_key = !arg->exec_for_lesser_equal;
1248 } else {
1249 /* Third netlink attribute in 'attr' is always
1250 * 'OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_GREATER'.
1251 */
1252 actions = nla_next(cpl_arg, &rem);
1253 actions = nla_next(actions, &rem);
1254 clone_flow_key = !arg->exec_for_greater;
1255 }
1256
1257 return clone_execute(dp, skb, key, 0, nla_data(actions),
1258 nla_len(actions), last, clone_flow_key);
1259}
1260
064af421 1261/* Execute a list of actions against 'skb'. */
871dfe07 1262static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
e74d4817
PS
1263 struct sw_flow_key *key,
1264 const struct nlattr *attr, int len)
064af421 1265{
cdee00fd 1266 const struct nlattr *a;
10db8b20 1267 int rem;
72b06300 1268
6ff686f2 1269 for (a = attr, rem = len; rem > 0;
a4af2475 1270 a = nla_next(a, &rem)) {
10db8b20
JG
1271 int err = 0;
1272
2b6a82da
AZ
1273 switch (nla_type(a)) {
1274 case OVS_ACTION_ATTR_OUTPUT: {
1275 int port = nla_get_u32(a);
1276 struct sk_buff *clone;
1277
1278 /* Every output action needs a separate clone
1279 * of 'skb', In case the output action is the
1280 * last action, cloning can be avoided.
1281 */
1282 if (nla_is_last(a, rem)) {
1283 do_output(dp, skb, port, key);
1284 /* 'skb' has been used for output.
1285 */
1286 return 0;
1287 }
fe90efd9 1288
2b6a82da
AZ
1289 clone = skb_clone(skb, GFP_ATOMIC);
1290 if (clone)
1291 do_output(dp, clone, port, key);
4c7804f1 1292 OVS_CB(skb)->cutlen = 0;
064af421 1293 break;
2b6a82da 1294 }
064af421 1295
4c7804f1
WT
1296 case OVS_ACTION_ATTR_TRUNC: {
1297 struct ovs_action_trunc *trunc = nla_data(a);
1298
1299 if (skb->len > trunc->max_len)
1300 OVS_CB(skb)->cutlen = skb->len - trunc->max_len;
1301 break;
1302 }
1303
df2c07f4 1304 case OVS_ACTION_ATTR_USERSPACE:
4c7804f1
WT
1305 output_userspace(dp, skb, key, a, attr,
1306 len, OVS_CB(skb)->cutlen);
1307 OVS_CB(skb)->cutlen = 0;
064af421 1308 break;
7804df20
AZ
1309
1310 case OVS_ACTION_ATTR_HASH:
e74d4817 1311 execute_hash(skb, key, a);
7804df20 1312 break;
064af421 1313
ccf43786 1314 case OVS_ACTION_ATTR_PUSH_MPLS:
e74d4817 1315 err = push_mpls(skb, key, nla_data(a));
ccf43786
SH
1316 break;
1317
1318 case OVS_ACTION_ATTR_POP_MPLS:
e74d4817 1319 err = pop_mpls(skb, key, nla_get_be16(a));
ccf43786
SH
1320 break;
1321
fea393b1 1322 case OVS_ACTION_ATTR_PUSH_VLAN:
e74d4817 1323 err = push_vlan(skb, key, nla_data(a));
064af421
BP
1324 break;
1325
fea393b1 1326 case OVS_ACTION_ATTR_POP_VLAN:
e74d4817 1327 err = pop_vlan(skb, key);
064af421
BP
1328 break;
1329
d4004f8d
AZ
1330 case OVS_ACTION_ATTR_RECIRC: {
1331 bool last = nla_is_last(a, rem);
1332
1333 err = execute_recirc(dp, skb, key, a, last);
1334 if (last) {
867e37ba
AZ
1335 /* If this is the last action, the skb has
1336 * been consumed or freed.
e74d4817
PS
1337 * Return immediately.
1338 */
867e37ba
AZ
1339 return err;
1340 }
a6059080 1341 break;
d4004f8d 1342 }
a6059080 1343
4edb9ae9 1344 case OVS_ACTION_ATTR_SET:
e74d4817 1345 err = execute_set_action(skb, key, nla_data(a));
064af421 1346 break;
c1c9c9c4 1347
b940b3d7
JR
1348 case OVS_ACTION_ATTR_SET_MASKED:
1349 case OVS_ACTION_ATTR_SET_TO_MASKED:
1350 err = execute_masked_set_action(skb, key, nla_data(a));
1351 break;
1352
7d9595e3
AZ
1353 case OVS_ACTION_ATTR_SAMPLE: {
1354 bool last = nla_is_last(a, rem);
1355
1356 err = sample(dp, skb, key, a, last);
1357 if (last)
1358 return err;
1359
6ff686f2 1360 break;
7d9595e3 1361 }
a94ebc39
JS
1362
1363 case OVS_ACTION_ATTR_CT:
c05e2094
JS
1364 if (!is_flow_key_valid(key)) {
1365 err = ovs_flow_key_update(skb, key);
1366 if (err)
1367 return err;
1368 }
1369
a94ebc39
JS
1370 err = ovs_ct_execute(ovs_dp_get_net(dp), skb, key,
1371 nla_data(a));
1372
1373 /* Hide stolen IP fragments from user space. */
c05e2094
JS
1374 if (err)
1375 return err == -EINPROGRESS ? 0 : err;
a94ebc39 1376 break;
6fcecb85 1377
0cdfdddd
EG
1378 case OVS_ACTION_ATTR_CT_CLEAR:
1379 err = ovs_ct_clear(skb, key);
1380 break;
1381
6fcecb85
YY
1382 case OVS_ACTION_ATTR_PUSH_ETH:
1383 err = push_eth(skb, key, nla_data(a));
1384 break;
1385
1386 case OVS_ACTION_ATTR_POP_ETH:
1387 err = pop_eth(skb, key);
1388 break;
96b82f6d
YY
1389
1390 case OVS_ACTION_ATTR_PUSH_NSH: {
1391 u8 buffer[NSH_HDR_MAX_LEN];
1392 struct nshhdr *nh = (struct nshhdr *)buffer;
1393
1394 err = nsh_hdr_from_nlattr(nla_data(a), nh,
1395 NSH_HDR_MAX_LEN);
1396 if (unlikely(err))
1397 break;
1398 err = push_nsh(skb, key, nh);
1399 break;
1400 }
1401
1402 case OVS_ACTION_ATTR_POP_NSH:
1403 err = pop_nsh(skb, key);
1404 break;
e02b6f81
AZ
1405
1406 case OVS_ACTION_ATTR_METER:
1407 if (ovs_meter_execute(dp, skb, key, nla_get_u32(a))) {
1408 consume_skb(skb);
1409 return 0;
1410 }
5a77cf96
YS
1411 break;
1412
1413 case OVS_ACTION_ATTR_CLONE: {
1414 bool last = nla_is_last(a, rem);
1415
1416 err = clone(dp, skb, key, a, last);
1417 if (last)
1418 return err;
1419 break;
1420 }
faa3beb4
NS
1421
1422 case OVS_ACTION_ATTR_CHECK_PKT_LEN: {
1423 bool last = nla_is_last(a, rem);
1424
1425 err = execute_check_pkt_len(dp, skb, key, a, last);
1426 if (last)
1427 return err;
1428
1429 break;
1430 }
6ff686f2 1431 }
15c39847 1432
10db8b20
JG
1433 if (unlikely(err)) {
1434 kfree_skb(skb);
1435 return err;
1436 }
064af421 1437 }
6c222e55 1438
2b6a82da 1439 consume_skb(skb);
a5225dd6 1440 return 0;
064af421 1441}
871dfe07 1442
d4004f8d
AZ
1443/* Execute the actions on the clone of the packet. The effect of the
1444 * execution does not affect the original 'skb' nor the original 'key'.
1445 *
1446 * The execution may be deferred in case the actions can not be executed
1447 * immediately.
1448 */
1449static int clone_execute(struct datapath *dp, struct sk_buff *skb,
1450 struct sw_flow_key *key, u32 recirc_id,
1451 const struct nlattr *actions, int len,
1452 bool last, bool clone_flow_key)
1453{
1454 struct deferred_action *da;
1455 struct sw_flow_key *clone;
1456
1457 skb = last ? skb : skb_clone(skb, GFP_ATOMIC);
1458 if (!skb) {
1459 /* Out of memory, skip this action.
1460 */
1461 return 0;
1462 }
1463
1464 /* When clone_flow_key is false, the 'key' will not be change
1465 * by the actions, then the 'key' can be used directly.
1466 * Otherwise, try to clone key from the next recursion level of
1467 * 'flow_keys'. If clone is successful, execute the actions
1468 * without deferring.
1469 */
1470 clone = clone_flow_key ? clone_key(key) : key;
1471 if (clone) {
1472 int err = 0;
1473
1474 if (actions) { /* Sample action */
1475 if (clone_flow_key)
1476 __this_cpu_inc(exec_actions_level);
1477
1478 err = do_execute_actions(dp, skb, clone,
1479 actions, len);
1480
1481 if (clone_flow_key)
1482 __this_cpu_dec(exec_actions_level);
1483 } else { /* Recirc action */
1484 clone->recirc_id = recirc_id;
1485 ovs_dp_process_packet(skb, clone);
1486 }
1487 return err;
1488 }
1489
1490 /* Out of 'flow_keys' space. Defer actions */
1491 da = add_deferred_actions(skb, key, actions, len);
1492 if (da) {
1493 if (!actions) { /* Recirc action */
1494 key = &da->pkt_key;
1495 key->recirc_id = recirc_id;
1496 }
1497 } else {
1498 /* Out of per CPU action FIFO space. Drop the 'skb' and
1499 * log an error.
1500 */
1501 kfree_skb(skb);
1502
1503 if (net_ratelimit()) {
1504 if (actions) { /* Sample action */
1505 pr_warn("%s: deferred action limit reached, drop sample action\n",
1506 ovs_dp_name(dp));
1507 } else { /* Recirc action */
1508 pr_warn("%s: deferred action limit reached, drop recirc action\n",
1509 ovs_dp_name(dp));
1510 }
1511 }
1512 }
1513 return 0;
1514}
1515
2c8c4fb7
AZ
1516static void process_deferred_actions(struct datapath *dp)
1517{
1518 struct action_fifo *fifo = this_cpu_ptr(action_fifos);
1519
1520 /* Do not touch the FIFO in case there is no deferred actions. */
1521 if (action_fifo_is_empty(fifo))
1522 return;
1523
1524 /* Finishing executing all deferred actions. */
1525 do {
1526 struct deferred_action *da = action_fifo_get(fifo);
1527 struct sk_buff *skb = da->skb;
7d16c847 1528 struct sw_flow_key *key = &da->pkt_key;
2c8c4fb7 1529 const struct nlattr *actions = da->actions;
615fa7ba 1530 int actions_len = da->actions_len;
2c8c4fb7
AZ
1531
1532 if (actions)
615fa7ba 1533 do_execute_actions(dp, skb, key, actions, actions_len);
2c8c4fb7 1534 else
7d16c847 1535 ovs_dp_process_packet(skb, key);
2c8c4fb7
AZ
1536 } while (!action_fifo_is_empty(fifo));
1537
1538 /* Reset FIFO for the next packet. */
1539 action_fifo_init(fifo);
1540}
1541
871dfe07 1542/* Execute a list of actions against 'skb'. */
2c8c4fb7 1543int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb,
7d16c847
PS
1544 const struct sw_flow_actions *acts,
1545 struct sw_flow_key *key)
2c8c4fb7 1546{
77a9a338 1547 int err, level;
2c8c4fb7 1548
77a9a338 1549 level = __this_cpu_inc_return(exec_actions_level);
615539ab 1550 if (unlikely(level > OVS_RECURSION_LIMIT)) {
77a9a338
PS
1551 net_crit_ratelimited("ovs: recursion limit reached on datapath %s, probable configuration error\n",
1552 ovs_dp_name(dp));
2c8c4fb7 1553 kfree_skb(skb);
77a9a338
PS
1554 err = -ENETDOWN;
1555 goto out;
2c8c4fb7
AZ
1556 }
1557
6b330a60 1558 OVS_CB(skb)->acts_origlen = acts->orig_len;
7d16c847
PS
1559 err = do_execute_actions(dp, skb, key,
1560 acts->actions, acts->actions_len);
2c8c4fb7 1561
77a9a338 1562 if (level == 1)
2c8c4fb7
AZ
1563 process_deferred_actions(dp);
1564
77a9a338
PS
1565out:
1566 __this_cpu_dec(exec_actions_level);
2c8c4fb7
AZ
1567 return err;
1568}
1569
1570int action_fifos_init(void)
1571{
1572 action_fifos = alloc_percpu(struct action_fifo);
1573 if (!action_fifos)
1574 return -ENOMEM;
1575
58afdef1
AZ
1576 flow_keys = alloc_percpu(struct action_flow_keys);
1577 if (!flow_keys) {
615539ab
LR
1578 free_percpu(action_fifos);
1579 return -ENOMEM;
1580 }
1581
2c8c4fb7
AZ
1582 return 0;
1583}
1584
1585void action_fifos_exit(void)
60759b2b 1586{
2c8c4fb7 1587 free_percpu(action_fifos);
58afdef1 1588 free_percpu(flow_keys);
871dfe07 1589}