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