datapath: Avoid using wrong metadata for recic action.
[cascardo/ovs.git] / datapath / actions.c
1 /*
2  * Copyright (c) 2007-2014 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/sctp.h>
26 #include <linux/tcp.h>
27 #include <linux/udp.h>
28 #include <linux/in6.h>
29 #include <linux/if_arp.h>
30 #include <linux/if_vlan.h>
31 #include <net/ip.h>
32 #include <net/ipv6.h>
33 #include <net/checksum.h>
34 #include <net/dsfield.h>
35 #include <net/sctp/checksum.h>
36
37 #include "datapath.h"
38 #include "gso.h"
39 #include "mpls.h"
40 #include "vlan.h"
41 #include "vport.h"
42
43 static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
44                               const struct nlattr *attr, int len);
45
46 static int make_writable(struct sk_buff *skb, int write_len)
47 {
48         if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
49                 return 0;
50
51         return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
52 }
53
54 /* The end of the mac header.
55  *
56  * For non-MPLS skbs this will correspond to the network header.
57  * For MPLS skbs it will be before the network_header as the MPLS
58  * label stack lies between the end of the mac header and the network
59  * header. That is, for MPLS skbs the end of the mac header
60  * is the top of the MPLS label stack.
61  */
62 static unsigned char *mac_header_end(const struct sk_buff *skb)
63 {
64         return skb_mac_header(skb) + skb->mac_len;
65 }
66
67 static int push_mpls(struct sk_buff *skb,
68                      const struct ovs_action_push_mpls *mpls)
69 {
70         __be32 *new_mpls_lse;
71         struct ethhdr *hdr;
72
73         if (skb_cow_head(skb, MPLS_HLEN) < 0)
74                 return -ENOMEM;
75
76         skb_push(skb, MPLS_HLEN);
77         memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
78                 skb->mac_len);
79         skb_reset_mac_header(skb);
80
81         new_mpls_lse = (__be32 *)mac_header_end(skb);
82         *new_mpls_lse = mpls->mpls_lse;
83
84         if (skb->ip_summed == CHECKSUM_COMPLETE)
85                 skb->csum = csum_add(skb->csum, csum_partial(new_mpls_lse,
86                                                              MPLS_HLEN, 0));
87
88         hdr = eth_hdr(skb);
89         hdr->h_proto = mpls->mpls_ethertype;
90         if (!ovs_skb_get_inner_protocol(skb))
91                 ovs_skb_set_inner_protocol(skb, skb->protocol);
92         skb->protocol = mpls->mpls_ethertype;
93         return 0;
94 }
95
96 static int pop_mpls(struct sk_buff *skb, const __be16 ethertype)
97 {
98         struct ethhdr *hdr;
99         int err;
100
101         err = make_writable(skb, skb->mac_len + MPLS_HLEN);
102         if (unlikely(err))
103                 return err;
104
105         if (skb->ip_summed == CHECKSUM_COMPLETE)
106                 skb->csum = csum_sub(skb->csum,
107                                      csum_partial(mac_header_end(skb),
108                                                   MPLS_HLEN, 0));
109
110         memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
111                 skb->mac_len);
112
113         __skb_pull(skb, MPLS_HLEN);
114         skb_reset_mac_header(skb);
115
116         /* mac_header_end() is used to locate the ethertype
117          * field correctly in the presence of VLAN tags.
118          */
119         hdr = (struct ethhdr *)(mac_header_end(skb) - ETH_HLEN);
120         hdr->h_proto = ethertype;
121         if (eth_p_mpls(skb->protocol))
122                 skb->protocol = ethertype;
123         return 0;
124 }
125
126 static int set_mpls(struct sk_buff *skb, const __be32 *mpls_lse)
127 {
128         __be32 *stack = (__be32 *)mac_header_end(skb);
129         int err;
130
131         err = make_writable(skb, skb->mac_len + MPLS_HLEN);
132         if (unlikely(err))
133                 return err;
134
135         if (skb->ip_summed == CHECKSUM_COMPLETE) {
136                 __be32 diff[] = { ~(*stack), *mpls_lse };
137                 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
138                                           ~skb->csum);
139         }
140
141         *stack = *mpls_lse;
142
143         return 0;
144 }
145
146 /* remove VLAN header from packet and update csum accordingly. */
147 static int __pop_vlan_tci(struct sk_buff *skb, __be16 *current_tci)
148 {
149         struct vlan_hdr *vhdr;
150         int err;
151
152         err = make_writable(skb, VLAN_ETH_HLEN);
153         if (unlikely(err))
154                 return err;
155
156         if (skb->ip_summed == CHECKSUM_COMPLETE)
157                 skb->csum = csum_sub(skb->csum, csum_partial(skb->data
158                                         + (2 * ETH_ALEN), VLAN_HLEN, 0));
159
160         vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
161         *current_tci = vhdr->h_vlan_TCI;
162
163         memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
164         __skb_pull(skb, VLAN_HLEN);
165
166         vlan_set_encap_proto(skb, vhdr);
167         skb->mac_header += VLAN_HLEN;
168         /* Update mac_len for subsequent MPLS actions */
169         skb->mac_len -= VLAN_HLEN;
170
171         return 0;
172 }
173
174 static int pop_vlan(struct sk_buff *skb)
175 {
176         __be16 tci;
177         int err;
178
179         if (likely(vlan_tx_tag_present(skb))) {
180                 vlan_set_tci(skb, 0);
181         } else {
182                 if (unlikely(skb->protocol != htons(ETH_P_8021Q) ||
183                              skb->len < VLAN_ETH_HLEN))
184                         return 0;
185
186                 err = __pop_vlan_tci(skb, &tci);
187                 if (err)
188                         return err;
189         }
190         /* move next vlan tag to hw accel tag */
191         if (likely(skb->protocol != htons(ETH_P_8021Q) ||
192                    skb->len < VLAN_ETH_HLEN))
193                 return 0;
194
195         err = __pop_vlan_tci(skb, &tci);
196         if (unlikely(err))
197                 return err;
198
199         __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(tci));
200         return 0;
201 }
202
203 static int push_vlan(struct sk_buff *skb, const struct ovs_action_push_vlan *vlan)
204 {
205         if (unlikely(vlan_tx_tag_present(skb))) {
206                 u16 current_tag;
207
208                 /* push down current VLAN tag */
209                 current_tag = vlan_tx_tag_get(skb);
210
211                 if (!__vlan_put_tag(skb, skb->vlan_proto, current_tag))
212                         return -ENOMEM;
213
214                 /* Update mac_len for subsequent MPLS actions */
215                 skb->mac_len += VLAN_HLEN;
216
217                 if (skb->ip_summed == CHECKSUM_COMPLETE)
218                         skb->csum = csum_add(skb->csum, csum_partial(skb->data
219                                         + (2 * ETH_ALEN), VLAN_HLEN, 0));
220
221         }
222         __vlan_hwaccel_put_tag(skb, vlan->vlan_tpid, ntohs(vlan->vlan_tci) & ~VLAN_TAG_PRESENT);
223         return 0;
224 }
225
226 static int set_eth_addr(struct sk_buff *skb,
227                         const struct ovs_key_ethernet *eth_key)
228 {
229         int err;
230         err = make_writable(skb, ETH_HLEN);
231         if (unlikely(err))
232                 return err;
233
234         skb_postpull_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
235
236         ether_addr_copy(eth_hdr(skb)->h_source, eth_key->eth_src);
237         ether_addr_copy(eth_hdr(skb)->h_dest, eth_key->eth_dst);
238
239         ovs_skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
240
241         return 0;
242 }
243
244 static void set_ip_addr(struct sk_buff *skb, struct iphdr *nh,
245                                 __be32 *addr, __be32 new_addr)
246 {
247         int transport_len = skb->len - skb_transport_offset(skb);
248
249         if (nh->protocol == IPPROTO_TCP) {
250                 if (likely(transport_len >= sizeof(struct tcphdr)))
251                         inet_proto_csum_replace4(&tcp_hdr(skb)->check, skb,
252                                                  *addr, new_addr, 1);
253         } else if (nh->protocol == IPPROTO_UDP) {
254                 if (likely(transport_len >= sizeof(struct udphdr))) {
255                         struct udphdr *uh = udp_hdr(skb);
256
257                         if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
258                                 inet_proto_csum_replace4(&uh->check, skb,
259                                                          *addr, new_addr, 1);
260                                 if (!uh->check)
261                                         uh->check = CSUM_MANGLED_0;
262                         }
263                 }
264         }
265
266         csum_replace4(&nh->check, *addr, new_addr);
267         skb_clear_hash(skb);
268         *addr = new_addr;
269 }
270
271 static void update_ipv6_checksum(struct sk_buff *skb, u8 l4_proto,
272                                  __be32 addr[4], const __be32 new_addr[4])
273 {
274         int transport_len = skb->len - skb_transport_offset(skb);
275
276         if (l4_proto == IPPROTO_TCP) {
277                 if (likely(transport_len >= sizeof(struct tcphdr)))
278                         inet_proto_csum_replace16(&tcp_hdr(skb)->check, skb,
279                                                   addr, new_addr, 1);
280         } else if (l4_proto == IPPROTO_UDP) {
281                 if (likely(transport_len >= sizeof(struct udphdr))) {
282                         struct udphdr *uh = udp_hdr(skb);
283
284                         if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
285                                 inet_proto_csum_replace16(&uh->check, skb,
286                                                           addr, new_addr, 1);
287                                 if (!uh->check)
288                                         uh->check = CSUM_MANGLED_0;
289                         }
290                 }
291         }
292 }
293
294 static void set_ipv6_addr(struct sk_buff *skb, u8 l4_proto,
295                           __be32 addr[4], const __be32 new_addr[4],
296                           bool recalculate_csum)
297 {
298         if (recalculate_csum)
299                 update_ipv6_checksum(skb, l4_proto, addr, new_addr);
300
301         skb_clear_hash(skb);
302         memcpy(addr, new_addr, sizeof(__be32[4]));
303 }
304
305 static void set_ipv6_tc(struct ipv6hdr *nh, u8 tc)
306 {
307         nh->priority = tc >> 4;
308         nh->flow_lbl[0] = (nh->flow_lbl[0] & 0x0F) | ((tc & 0x0F) << 4);
309 }
310
311 static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl)
312 {
313         nh->flow_lbl[0] = (nh->flow_lbl[0] & 0xF0) | (fl & 0x000F0000) >> 16;
314         nh->flow_lbl[1] = (fl & 0x0000FF00) >> 8;
315         nh->flow_lbl[2] = fl & 0x000000FF;
316 }
317
318 static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl)
319 {
320         csum_replace2(&nh->check, htons(nh->ttl << 8), htons(new_ttl << 8));
321         nh->ttl = new_ttl;
322 }
323
324 static int set_ipv4(struct sk_buff *skb, const struct ovs_key_ipv4 *ipv4_key)
325 {
326         struct iphdr *nh;
327         int err;
328
329         err = make_writable(skb, skb_network_offset(skb) +
330                                  sizeof(struct iphdr));
331         if (unlikely(err))
332                 return err;
333
334         nh = ip_hdr(skb);
335
336         if (ipv4_key->ipv4_src != nh->saddr)
337                 set_ip_addr(skb, nh, &nh->saddr, ipv4_key->ipv4_src);
338
339         if (ipv4_key->ipv4_dst != nh->daddr)
340                 set_ip_addr(skb, nh, &nh->daddr, ipv4_key->ipv4_dst);
341
342         if (ipv4_key->ipv4_tos != nh->tos)
343                 ipv4_change_dsfield(nh, 0, ipv4_key->ipv4_tos);
344
345         if (ipv4_key->ipv4_ttl != nh->ttl)
346                 set_ip_ttl(skb, nh, ipv4_key->ipv4_ttl);
347
348         return 0;
349 }
350
351 static int set_ipv6(struct sk_buff *skb, const struct ovs_key_ipv6 *ipv6_key)
352 {
353         struct ipv6hdr *nh;
354         int err;
355         __be32 *saddr;
356         __be32 *daddr;
357
358         err = make_writable(skb, skb_network_offset(skb) +
359                             sizeof(struct ipv6hdr));
360         if (unlikely(err))
361                 return err;
362
363         nh = ipv6_hdr(skb);
364         saddr = (__be32 *)&nh->saddr;
365         daddr = (__be32 *)&nh->daddr;
366
367         if (memcmp(ipv6_key->ipv6_src, saddr, sizeof(ipv6_key->ipv6_src)))
368                 set_ipv6_addr(skb, ipv6_key->ipv6_proto, saddr,
369                               ipv6_key->ipv6_src, true);
370
371         if (memcmp(ipv6_key->ipv6_dst, daddr, sizeof(ipv6_key->ipv6_dst))) {
372                 unsigned int offset = 0;
373                 int flags = OVS_IP6T_FH_F_SKIP_RH;
374                 bool recalc_csum = true;
375
376                 if (ipv6_ext_hdr(nh->nexthdr))
377                         recalc_csum = ipv6_find_hdr(skb, &offset,
378                                                     NEXTHDR_ROUTING, NULL,
379                                                     &flags) != NEXTHDR_ROUTING;
380
381                 set_ipv6_addr(skb, ipv6_key->ipv6_proto, daddr,
382                               ipv6_key->ipv6_dst, recalc_csum);
383         }
384
385         set_ipv6_tc(nh, ipv6_key->ipv6_tclass);
386         set_ipv6_fl(nh, ntohl(ipv6_key->ipv6_label));
387         nh->hop_limit = ipv6_key->ipv6_hlimit;
388
389         return 0;
390 }
391
392 /* Must follow make_writable() since that can move the skb data. */
393 static void set_tp_port(struct sk_buff *skb, __be16 *port,
394                          __be16 new_port, __sum16 *check)
395 {
396         inet_proto_csum_replace2(check, skb, *port, new_port, 0);
397         *port = new_port;
398         skb_clear_hash(skb);
399 }
400
401 static void set_udp_port(struct sk_buff *skb, __be16 *port, __be16 new_port)
402 {
403         struct udphdr *uh = udp_hdr(skb);
404
405         if (uh->check && skb->ip_summed != CHECKSUM_PARTIAL) {
406                 set_tp_port(skb, port, new_port, &uh->check);
407
408                 if (!uh->check)
409                         uh->check = CSUM_MANGLED_0;
410         } else {
411                 *port = new_port;
412                 skb_clear_hash(skb);
413         }
414 }
415
416 static int set_udp(struct sk_buff *skb, const struct ovs_key_udp *udp_port_key)
417 {
418         struct udphdr *uh;
419         int err;
420
421         err = make_writable(skb, skb_transport_offset(skb) +
422                                  sizeof(struct udphdr));
423         if (unlikely(err))
424                 return err;
425
426         uh = udp_hdr(skb);
427         if (udp_port_key->udp_src != uh->source)
428                 set_udp_port(skb, &uh->source, udp_port_key->udp_src);
429
430         if (udp_port_key->udp_dst != uh->dest)
431                 set_udp_port(skb, &uh->dest, udp_port_key->udp_dst);
432
433         return 0;
434 }
435
436 static int set_tcp(struct sk_buff *skb, const struct ovs_key_tcp *tcp_port_key)
437 {
438         struct tcphdr *th;
439         int err;
440
441         err = make_writable(skb, skb_transport_offset(skb) +
442                                  sizeof(struct tcphdr));
443         if (unlikely(err))
444                 return err;
445
446         th = tcp_hdr(skb);
447         if (tcp_port_key->tcp_src != th->source)
448                 set_tp_port(skb, &th->source, tcp_port_key->tcp_src, &th->check);
449
450         if (tcp_port_key->tcp_dst != th->dest)
451                 set_tp_port(skb, &th->dest, tcp_port_key->tcp_dst, &th->check);
452
453         return 0;
454 }
455
456 static int set_sctp(struct sk_buff *skb,
457                      const struct ovs_key_sctp *sctp_port_key)
458 {
459         struct sctphdr *sh;
460         int err;
461         unsigned int sctphoff = skb_transport_offset(skb);
462
463         err = make_writable(skb, sctphoff + sizeof(struct sctphdr));
464         if (unlikely(err))
465                 return err;
466
467         sh = sctp_hdr(skb);
468         if (sctp_port_key->sctp_src != sh->source ||
469             sctp_port_key->sctp_dst != sh->dest) {
470                 __le32 old_correct_csum, new_csum, old_csum;
471
472                 old_csum = sh->checksum;
473                 old_correct_csum = sctp_compute_cksum(skb, sctphoff);
474
475                 sh->source = sctp_port_key->sctp_src;
476                 sh->dest = sctp_port_key->sctp_dst;
477
478                 new_csum = sctp_compute_cksum(skb, sctphoff);
479
480                 /* Carry any checksum errors through. */
481                 sh->checksum = old_csum ^ old_correct_csum ^ new_csum;
482
483                 skb_clear_hash(skb);
484         }
485
486         return 0;
487 }
488
489 static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port)
490 {
491         struct vport *vport = ovs_vport_rcu(dp, out_port);
492
493         if (likely(vport))
494                 ovs_vport_send(vport, skb);
495         else
496                 kfree_skb(skb);
497 }
498
499 static int output_userspace(struct datapath *dp, struct sk_buff *skb,
500                             const struct nlattr *attr)
501 {
502         struct dp_upcall_info upcall;
503         const struct nlattr *a;
504         int rem;
505
506         upcall.cmd = OVS_PACKET_CMD_ACTION;
507         upcall.userdata = NULL;
508         upcall.portid = 0;
509
510         for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
511                  a = nla_next(a, &rem)) {
512                 switch (nla_type(a)) {
513                 case OVS_USERSPACE_ATTR_USERDATA:
514                         upcall.userdata = a;
515                         break;
516
517                 case OVS_USERSPACE_ATTR_PID:
518                         upcall.portid = nla_get_u32(a);
519                         break;
520                 }
521         }
522
523         return ovs_dp_upcall(dp, skb, &upcall);
524 }
525
526 static bool last_action(const struct nlattr *a, int rem)
527 {
528         return a->nla_len == rem;
529 }
530
531 static int sample(struct datapath *dp, struct sk_buff *skb,
532                   const struct nlattr *attr)
533 {
534         const struct nlattr *acts_list = NULL;
535         const struct nlattr *a;
536         struct sk_buff *sample_skb;
537         int rem;
538
539         for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
540                  a = nla_next(a, &rem)) {
541                 switch (nla_type(a)) {
542                 case OVS_SAMPLE_ATTR_PROBABILITY:
543                         if (prandom_u32() >= nla_get_u32(a))
544                                 return 0;
545                         break;
546
547                 case OVS_SAMPLE_ATTR_ACTIONS:
548                         acts_list = a;
549                         break;
550                 }
551         }
552
553         rem = nla_len(acts_list);
554         a = nla_data(acts_list);
555
556         /* Actions list is either empty or only contains a single user-space
557          * action, the latter being a special case as it is the only known
558          * usage of the sample action.
559          * In these special cases don't clone the skb as there are no
560          * side-effects in the nested actions.
561          * Otherwise, clone in case the nested actions have side effects. */
562         if (likely(rem == 0 ||
563                    (nla_type(a) == OVS_ACTION_ATTR_USERSPACE &&
564                     last_action(a, rem)))) {
565                 sample_skb = skb;
566                 skb_get(skb);
567         } else {
568                 sample_skb = skb_clone(skb, GFP_ATOMIC);
569                 if (!sample_skb)
570                         /* Skip the sample action when out of memory. */
571                         return 0;
572         }
573
574         /* Note that do_execute_actions() never consumes skb.
575          * In the case where skb has been cloned above it is the clone that
576          * is consumed.  Otherwise the skb_get(skb) call prevents
577          * consumption by do_execute_actions(). Thus, it is safe to simply
578          * return the error code and let the caller (also
579          * do_execute_actions()) free skb on error. */
580         return do_execute_actions(dp, sample_skb, a, rem);
581 }
582
583 static void execute_hash(struct sk_buff *skb, const struct nlattr *attr)
584 {
585         struct sw_flow_key *key = OVS_CB(skb)->pkt_key;
586         struct ovs_action_hash *hash_act = nla_data(attr);
587         u32 hash = 0;
588
589         /* OVS_HASH_ALG_L4 is the only possible hash algorithm.  */
590         hash = skb_get_hash(skb);
591         hash = jhash_1word(hash, hash_act->hash_basis);
592         if (!hash)
593                 hash = 0x1;
594
595         key->ovs_flow_hash = hash;
596 }
597
598 static int execute_set_action(struct sk_buff *skb,
599                                  const struct nlattr *nested_attr)
600 {
601         int err = 0;
602
603         switch (nla_type(nested_attr)) {
604         case OVS_KEY_ATTR_PRIORITY:
605                 skb->priority = nla_get_u32(nested_attr);
606                 break;
607
608         case OVS_KEY_ATTR_SKB_MARK:
609                 skb->mark = nla_get_u32(nested_attr);
610                 break;
611
612         case OVS_KEY_ATTR_TUNNEL_INFO:
613                 OVS_CB(skb)->tun_info = nla_data(nested_attr);
614                 break;
615
616         case OVS_KEY_ATTR_ETHERNET:
617                 err = set_eth_addr(skb, nla_data(nested_attr));
618                 break;
619
620         case OVS_KEY_ATTR_IPV4:
621                 err = set_ipv4(skb, nla_data(nested_attr));
622                 break;
623
624         case OVS_KEY_ATTR_IPV6:
625                 err = set_ipv6(skb, nla_data(nested_attr));
626                 break;
627
628         case OVS_KEY_ATTR_TCP:
629                 err = set_tcp(skb, nla_data(nested_attr));
630                 break;
631
632         case OVS_KEY_ATTR_UDP:
633                 err = set_udp(skb, nla_data(nested_attr));
634                 break;
635
636         case OVS_KEY_ATTR_SCTP:
637                 err = set_sctp(skb, nla_data(nested_attr));
638                 break;
639
640         case OVS_KEY_ATTR_MPLS:
641                 err = set_mpls(skb, nla_data(nested_attr));
642                 break;
643         }
644
645         return err;
646 }
647
648 static int execute_recirc(struct datapath *dp, struct sk_buff *skb,
649                                  const struct nlattr *a)
650 {
651         struct sw_flow_key recirc_key;
652         int err;
653
654         err = ovs_flow_key_extract_recirc(nla_get_u32(a), OVS_CB(skb)->pkt_key,
655                                           skb, &recirc_key);
656         if (err) {
657                 kfree_skb(skb);
658                 return err;
659         }
660
661
662         ovs_dp_process_packet_with_key(skb, &recirc_key, true);
663
664         return 0;
665 }
666
667 /* Execute a list of actions against 'skb'. */
668 static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
669                         const struct nlattr *attr, int len)
670 {
671         /* Every output action needs a separate clone of 'skb', but the common
672          * case is just a single output action, so that doing a clone and
673          * then freeing the original skbuff is wasteful.  So the following code
674          * is slightly obscure just to avoid that. */
675         int prev_port = -1;
676         const struct nlattr *a;
677         int rem;
678
679         for (a = attr, rem = len; rem > 0;
680              a = nla_next(a, &rem)) {
681                 int err = 0;
682
683                 if (unlikely(prev_port != -1)) {
684                         struct sk_buff *out_skb = skb_clone(skb, GFP_ATOMIC);
685
686                         if (out_skb)
687                                 do_output(dp, out_skb, prev_port);
688
689                         prev_port = -1;
690                 }
691
692                 switch (nla_type(a)) {
693                 case OVS_ACTION_ATTR_OUTPUT:
694                         prev_port = nla_get_u32(a);
695                         break;
696
697                 case OVS_ACTION_ATTR_USERSPACE:
698                         output_userspace(dp, skb, a);
699                         break;
700
701                 case OVS_ACTION_ATTR_HASH:
702                         execute_hash(skb, a);
703                         break;
704
705                 case OVS_ACTION_ATTR_PUSH_MPLS:
706                         err = push_mpls(skb, nla_data(a));
707                         break;
708
709                 case OVS_ACTION_ATTR_POP_MPLS:
710                         err = pop_mpls(skb, nla_get_be16(a));
711                         break;
712
713                 case OVS_ACTION_ATTR_PUSH_VLAN:
714                         err = push_vlan(skb, nla_data(a));
715                         if (unlikely(err)) /* skb already freed. */
716                                 return err;
717                         break;
718
719                 case OVS_ACTION_ATTR_POP_VLAN:
720                         err = pop_vlan(skb);
721                         break;
722
723                 case OVS_ACTION_ATTR_RECIRC: {
724                         struct sk_buff *recirc_skb;
725
726                         if (last_action(a, rem))
727                                 return execute_recirc(dp, skb, a);
728
729                         /* Recirc action is the not the last action
730                          * of the action list. */
731                         recirc_skb = skb_clone(skb, GFP_ATOMIC);
732
733                         /* Skip the recirc action when out of memory, but
734                          * continue on with the rest of the action list. */
735                         if (recirc_skb)
736                                 err = execute_recirc(dp, recirc_skb, a);
737
738                         break;
739                 }
740
741                 case OVS_ACTION_ATTR_SET:
742                         err = execute_set_action(skb, nla_data(a));
743                         break;
744
745                 case OVS_ACTION_ATTR_SAMPLE:
746                         err = sample(dp, skb, a);
747                         break;
748                 }
749
750                 if (unlikely(err)) {
751                         kfree_skb(skb);
752                         return err;
753                 }
754         }
755
756         if (prev_port != -1)
757                 do_output(dp, skb, prev_port);
758         else
759                 consume_skb(skb);
760
761         return 0;
762 }
763
764 /* We limit the number of times that we pass into execute_actions()
765  * to avoid blowing out the stack in the event that we have a loop.
766  *
767  * Each loop adds some (estimated) cost to the kernel stack.
768  * The loop terminates when the max cost is exceeded.
769  * */
770 #define RECIRC_STACK_COST 1
771 #define DEFAULT_STACK_COST 4
772 /* Allow up to 4 regular services, and up to 3 recirculations */
773 #define MAX_STACK_COST (DEFAULT_STACK_COST * 4 + RECIRC_STACK_COST * 3)
774
775 struct loop_counter {
776         u8 stack_cost;          /* loop stack cost. */
777         bool looping;           /* Loop detected? */
778 };
779
780 static DEFINE_PER_CPU(struct loop_counter, loop_counters);
781
782 static int loop_suppress(struct datapath *dp, struct sw_flow_actions *actions)
783 {
784         if (net_ratelimit())
785                 pr_warn("%s: flow loop detected, dropping\n",
786                                 ovs_dp_name(dp));
787         actions->actions_len = 0;
788         return -ELOOP;
789 }
790
791 /* Execute a list of actions against 'skb'. */
792 int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb, bool recirc)
793 {
794         struct sw_flow_actions *acts = rcu_dereference(OVS_CB(skb)->flow->sf_acts);
795         const u8 stack_cost = recirc ? RECIRC_STACK_COST : DEFAULT_STACK_COST;
796         struct loop_counter *loop;
797         int error;
798
799         /* Check whether we've looped too much. */
800         loop = &__get_cpu_var(loop_counters);
801         loop->stack_cost += stack_cost;
802         if (unlikely(loop->stack_cost > MAX_STACK_COST))
803                 loop->looping = true;
804         if (unlikely(loop->looping)) {
805                 error = loop_suppress(dp, acts);
806                 kfree_skb(skb);
807                 goto out_loop;
808         }
809
810         OVS_CB(skb)->tun_info = NULL;
811         error = do_execute_actions(dp, skb, acts->actions, acts->actions_len);
812
813         /* Check whether sub-actions looped too much. */
814         if (unlikely(loop->looping))
815                 error = loop_suppress(dp, acts);
816
817 out_loop:
818         /* Decrement loop stack cost. */
819         loop->stack_cost -= stack_cost;
820         if (!loop->stack_cost)
821                 loop->looping = false;
822
823         return error;
824 }