1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2007-2017 Nicira, Inc.
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8 #include <linux/skbuff.h>
11 #include <linux/openvswitch.h>
12 #include <linux/netfilter_ipv6.h>
13 #include <linux/sctp.h>
14 #include <linux/tcp.h>
15 #include <linux/udp.h>
16 #include <linux/in6.h>
17 #include <linux/if_arp.h>
18 #include <linux/if_vlan.h>
23 #include <net/ip6_fib.h>
24 #include <net/checksum.h>
25 #include <net/dsfield.h>
27 #include <net/sctp/checksum.h>
31 #include "conntrack.h"
33 #include "flow_netlink.h"
35 struct deferred_action
{
37 const struct nlattr
*actions
;
40 /* Store pkt_key clone when creating deferred action. */
41 struct sw_flow_key pkt_key
;
44 #define MAX_L2_LEN (VLAN_ETH_HLEN + 3 * MPLS_HLEN)
45 struct ovs_frag_data
{
49 __be16 inner_protocol
;
50 u16 network_offset
; /* valid only for MPLS */
55 u8 l2_data
[MAX_L2_LEN
];
58 static DEFINE_PER_CPU(struct ovs_frag_data
, ovs_frag_data_storage
);
60 #define DEFERRED_ACTION_FIFO_SIZE 10
61 #define OVS_RECURSION_LIMIT 5
62 #define OVS_DEFERRED_ACTION_THRESHOLD (OVS_RECURSION_LIMIT - 2)
66 /* Deferred action fifo queue storage. */
67 struct deferred_action fifo
[DEFERRED_ACTION_FIFO_SIZE
];
70 struct action_flow_keys
{
71 struct sw_flow_key key
[OVS_DEFERRED_ACTION_THRESHOLD
];
74 static struct action_fifo __percpu
*action_fifos
;
75 static struct action_flow_keys __percpu
*flow_keys
;
76 static DEFINE_PER_CPU(int, exec_actions_level
);
78 /* Make a clone of the 'key', using the pre-allocated percpu 'flow_keys'
79 * space. Return NULL if out of key spaces.
81 static struct sw_flow_key
*clone_key(const struct sw_flow_key
*key_
)
83 struct action_flow_keys
*keys
= this_cpu_ptr(flow_keys
);
84 int level
= this_cpu_read(exec_actions_level
);
85 struct sw_flow_key
*key
= NULL
;
87 if (level
<= OVS_DEFERRED_ACTION_THRESHOLD
) {
88 key
= &keys
->key
[level
- 1];
95 static void action_fifo_init(struct action_fifo
*fifo
)
101 static bool action_fifo_is_empty(const struct action_fifo
*fifo
)
103 return (fifo
->head
== fifo
->tail
);
106 static struct deferred_action
*action_fifo_get(struct action_fifo
*fifo
)
108 if (action_fifo_is_empty(fifo
))
111 return &fifo
->fifo
[fifo
->tail
++];
114 static struct deferred_action
*action_fifo_put(struct action_fifo
*fifo
)
116 if (fifo
->head
>= DEFERRED_ACTION_FIFO_SIZE
- 1)
119 return &fifo
->fifo
[fifo
->head
++];
122 /* Return true if fifo is not full */
123 static struct deferred_action
*add_deferred_actions(struct sk_buff
*skb
,
124 const struct sw_flow_key
*key
,
125 const struct nlattr
*actions
,
126 const int actions_len
)
128 struct action_fifo
*fifo
;
129 struct deferred_action
*da
;
131 fifo
= this_cpu_ptr(action_fifos
);
132 da
= action_fifo_put(fifo
);
135 da
->actions
= actions
;
136 da
->actions_len
= actions_len
;
143 static void invalidate_flow_key(struct sw_flow_key
*key
)
145 key
->mac_proto
|= SW_FLOW_KEY_INVALID
;
148 static bool is_flow_key_valid(const struct sw_flow_key
*key
)
150 return !(key
->mac_proto
& SW_FLOW_KEY_INVALID
);
153 static int clone_execute(struct datapath
*dp
, struct sk_buff
*skb
,
154 struct sw_flow_key
*key
,
156 const struct nlattr
*actions
, int len
,
157 bool last
, bool clone_flow_key
);
159 static int do_execute_actions(struct datapath
*dp
, struct sk_buff
*skb
,
160 struct sw_flow_key
*key
,
161 const struct nlattr
*attr
, int len
);
163 static void update_ethertype(struct sk_buff
*skb
, struct ethhdr
*hdr
,
166 if (skb
->ip_summed
== CHECKSUM_COMPLETE
) {
167 __be16 diff
[] = { ~(hdr
->h_proto
), ethertype
};
169 skb
->csum
= ~csum_partial((char *)diff
, sizeof(diff
),
173 hdr
->h_proto
= ethertype
;
176 static int push_mpls(struct sk_buff
*skb
, struct sw_flow_key
*key
,
177 const struct ovs_action_push_mpls
*mpls
)
179 struct mpls_shim_hdr
*new_mpls_lse
;
181 /* Networking stack do not allow simultaneous Tunnel and MPLS GSO. */
182 if (skb
->encapsulation
)
185 if (skb_cow_head(skb
, MPLS_HLEN
) < 0)
188 if (!skb
->inner_protocol
) {
189 skb_set_inner_network_header(skb
, skb
->mac_len
);
190 skb_set_inner_protocol(skb
, skb
->protocol
);
193 skb_push(skb
, MPLS_HLEN
);
194 memmove(skb_mac_header(skb
) - MPLS_HLEN
, skb_mac_header(skb
),
196 skb_reset_mac_header(skb
);
197 skb_set_network_header(skb
, skb
->mac_len
);
199 new_mpls_lse
= mpls_hdr(skb
);
200 new_mpls_lse
->label_stack_entry
= mpls
->mpls_lse
;
202 skb_postpush_rcsum(skb
, new_mpls_lse
, MPLS_HLEN
);
204 if (ovs_key_mac_proto(key
) == MAC_PROTO_ETHERNET
)
205 update_ethertype(skb
, eth_hdr(skb
), mpls
->mpls_ethertype
);
206 skb
->protocol
= mpls
->mpls_ethertype
;
208 invalidate_flow_key(key
);
212 static int pop_mpls(struct sk_buff
*skb
, struct sw_flow_key
*key
,
213 const __be16 ethertype
)
217 err
= skb_ensure_writable(skb
, skb
->mac_len
+ MPLS_HLEN
);
221 skb_postpull_rcsum(skb
, mpls_hdr(skb
), MPLS_HLEN
);
223 memmove(skb_mac_header(skb
) + MPLS_HLEN
, skb_mac_header(skb
),
226 __skb_pull(skb
, MPLS_HLEN
);
227 skb_reset_mac_header(skb
);
228 skb_set_network_header(skb
, skb
->mac_len
);
230 if (ovs_key_mac_proto(key
) == MAC_PROTO_ETHERNET
) {
233 /* mpls_hdr() is used to locate the ethertype field correctly in the
234 * presence of VLAN tags.
236 hdr
= (struct ethhdr
*)((void *)mpls_hdr(skb
) - ETH_HLEN
);
237 update_ethertype(skb
, hdr
, ethertype
);
239 if (eth_p_mpls(skb
->protocol
))
240 skb
->protocol
= ethertype
;
242 invalidate_flow_key(key
);
246 static int set_mpls(struct sk_buff
*skb
, struct sw_flow_key
*flow_key
,
247 const __be32
*mpls_lse
, const __be32
*mask
)
249 struct mpls_shim_hdr
*stack
;
253 err
= skb_ensure_writable(skb
, skb
->mac_len
+ MPLS_HLEN
);
257 stack
= mpls_hdr(skb
);
258 lse
= OVS_MASKED(stack
->label_stack_entry
, *mpls_lse
, *mask
);
259 if (skb
->ip_summed
== CHECKSUM_COMPLETE
) {
260 __be32 diff
[] = { ~(stack
->label_stack_entry
), lse
};
262 skb
->csum
= ~csum_partial((char *)diff
, sizeof(diff
),
266 stack
->label_stack_entry
= lse
;
267 flow_key
->mpls
.top_lse
= lse
;
271 static int pop_vlan(struct sk_buff
*skb
, struct sw_flow_key
*key
)
275 err
= skb_vlan_pop(skb
);
276 if (skb_vlan_tag_present(skb
)) {
277 invalidate_flow_key(key
);
279 key
->eth
.vlan
.tci
= 0;
280 key
->eth
.vlan
.tpid
= 0;
285 static int push_vlan(struct sk_buff
*skb
, struct sw_flow_key
*key
,
286 const struct ovs_action_push_vlan
*vlan
)
288 if (skb_vlan_tag_present(skb
)) {
289 invalidate_flow_key(key
);
291 key
->eth
.vlan
.tci
= vlan
->vlan_tci
;
292 key
->eth
.vlan
.tpid
= vlan
->vlan_tpid
;
294 return skb_vlan_push(skb
, vlan
->vlan_tpid
,
295 ntohs(vlan
->vlan_tci
) & ~VLAN_CFI_MASK
);
298 /* 'src' is already properly masked. */
299 static void ether_addr_copy_masked(u8
*dst_
, const u8
*src_
, const u8
*mask_
)
301 u16
*dst
= (u16
*)dst_
;
302 const u16
*src
= (const u16
*)src_
;
303 const u16
*mask
= (const u16
*)mask_
;
305 OVS_SET_MASKED(dst
[0], src
[0], mask
[0]);
306 OVS_SET_MASKED(dst
[1], src
[1], mask
[1]);
307 OVS_SET_MASKED(dst
[2], src
[2], mask
[2]);
310 static int set_eth_addr(struct sk_buff
*skb
, struct sw_flow_key
*flow_key
,
311 const struct ovs_key_ethernet
*key
,
312 const struct ovs_key_ethernet
*mask
)
316 err
= skb_ensure_writable(skb
, ETH_HLEN
);
320 skb_postpull_rcsum(skb
, eth_hdr(skb
), ETH_ALEN
* 2);
322 ether_addr_copy_masked(eth_hdr(skb
)->h_source
, key
->eth_src
,
324 ether_addr_copy_masked(eth_hdr(skb
)->h_dest
, key
->eth_dst
,
327 skb_postpush_rcsum(skb
, eth_hdr(skb
), ETH_ALEN
* 2);
329 ether_addr_copy(flow_key
->eth
.src
, eth_hdr(skb
)->h_source
);
330 ether_addr_copy(flow_key
->eth
.dst
, eth_hdr(skb
)->h_dest
);
334 /* pop_eth does not support VLAN packets as this action is never called
337 static int pop_eth(struct sk_buff
*skb
, struct sw_flow_key
*key
)
339 skb_pull_rcsum(skb
, ETH_HLEN
);
340 skb_reset_mac_header(skb
);
341 skb_reset_mac_len(skb
);
343 /* safe right before invalidate_flow_key */
344 key
->mac_proto
= MAC_PROTO_NONE
;
345 invalidate_flow_key(key
);
349 static int push_eth(struct sk_buff
*skb
, struct sw_flow_key
*key
,
350 const struct ovs_action_push_eth
*ethh
)
354 /* Add the new Ethernet header */
355 if (skb_cow_head(skb
, ETH_HLEN
) < 0)
358 skb_push(skb
, ETH_HLEN
);
359 skb_reset_mac_header(skb
);
360 skb_reset_mac_len(skb
);
363 ether_addr_copy(hdr
->h_source
, ethh
->addresses
.eth_src
);
364 ether_addr_copy(hdr
->h_dest
, ethh
->addresses
.eth_dst
);
365 hdr
->h_proto
= skb
->protocol
;
367 skb_postpush_rcsum(skb
, hdr
, ETH_HLEN
);
369 /* safe right before invalidate_flow_key */
370 key
->mac_proto
= MAC_PROTO_ETHERNET
;
371 invalidate_flow_key(key
);
375 static int push_nsh(struct sk_buff
*skb
, struct sw_flow_key
*key
,
376 const struct nshhdr
*nh
)
380 err
= nsh_push(skb
, nh
);
384 /* safe right before invalidate_flow_key */
385 key
->mac_proto
= MAC_PROTO_NONE
;
386 invalidate_flow_key(key
);
390 static int pop_nsh(struct sk_buff
*skb
, struct sw_flow_key
*key
)
398 /* safe right before invalidate_flow_key */
399 if (skb
->protocol
== htons(ETH_P_TEB
))
400 key
->mac_proto
= MAC_PROTO_ETHERNET
;
402 key
->mac_proto
= MAC_PROTO_NONE
;
403 invalidate_flow_key(key
);
407 static void update_ip_l4_checksum(struct sk_buff
*skb
, struct iphdr
*nh
,
408 __be32 addr
, __be32 new_addr
)
410 int transport_len
= skb
->len
- skb_transport_offset(skb
);
412 if (nh
->frag_off
& htons(IP_OFFSET
))
415 if (nh
->protocol
== IPPROTO_TCP
) {
416 if (likely(transport_len
>= sizeof(struct tcphdr
)))
417 inet_proto_csum_replace4(&tcp_hdr(skb
)->check
, skb
,
418 addr
, new_addr
, true);
419 } else if (nh
->protocol
== IPPROTO_UDP
) {
420 if (likely(transport_len
>= sizeof(struct udphdr
))) {
421 struct udphdr
*uh
= udp_hdr(skb
);
423 if (uh
->check
|| skb
->ip_summed
== CHECKSUM_PARTIAL
) {
424 inet_proto_csum_replace4(&uh
->check
, skb
,
425 addr
, new_addr
, true);
427 uh
->check
= CSUM_MANGLED_0
;
433 static void set_ip_addr(struct sk_buff
*skb
, struct iphdr
*nh
,
434 __be32
*addr
, __be32 new_addr
)
436 update_ip_l4_checksum(skb
, nh
, *addr
, new_addr
);
437 csum_replace4(&nh
->check
, *addr
, new_addr
);
442 static void update_ipv6_checksum(struct sk_buff
*skb
, u8 l4_proto
,
443 __be32 addr
[4], const __be32 new_addr
[4])
445 int transport_len
= skb
->len
- skb_transport_offset(skb
);
447 if (l4_proto
== NEXTHDR_TCP
) {
448 if (likely(transport_len
>= sizeof(struct tcphdr
)))
449 inet_proto_csum_replace16(&tcp_hdr(skb
)->check
, skb
,
450 addr
, new_addr
, true);
451 } else if (l4_proto
== NEXTHDR_UDP
) {
452 if (likely(transport_len
>= sizeof(struct udphdr
))) {
453 struct udphdr
*uh
= udp_hdr(skb
);
455 if (uh
->check
|| skb
->ip_summed
== CHECKSUM_PARTIAL
) {
456 inet_proto_csum_replace16(&uh
->check
, skb
,
457 addr
, new_addr
, true);
459 uh
->check
= CSUM_MANGLED_0
;
462 } else if (l4_proto
== NEXTHDR_ICMP
) {
463 if (likely(transport_len
>= sizeof(struct icmp6hdr
)))
464 inet_proto_csum_replace16(&icmp6_hdr(skb
)->icmp6_cksum
,
465 skb
, addr
, new_addr
, true);
469 static void mask_ipv6_addr(const __be32 old
[4], const __be32 addr
[4],
470 const __be32 mask
[4], __be32 masked
[4])
472 masked
[0] = OVS_MASKED(old
[0], addr
[0], mask
[0]);
473 masked
[1] = OVS_MASKED(old
[1], addr
[1], mask
[1]);
474 masked
[2] = OVS_MASKED(old
[2], addr
[2], mask
[2]);
475 masked
[3] = OVS_MASKED(old
[3], addr
[3], mask
[3]);
478 static void set_ipv6_addr(struct sk_buff
*skb
, u8 l4_proto
,
479 __be32 addr
[4], const __be32 new_addr
[4],
480 bool recalculate_csum
)
482 if (recalculate_csum
)
483 update_ipv6_checksum(skb
, l4_proto
, addr
, new_addr
);
486 memcpy(addr
, new_addr
, sizeof(__be32
[4]));
489 static void set_ipv6_fl(struct ipv6hdr
*nh
, u32 fl
, u32 mask
)
491 /* Bits 21-24 are always unmasked, so this retains their values. */
492 OVS_SET_MASKED(nh
->flow_lbl
[0], (u8
)(fl
>> 16), (u8
)(mask
>> 16));
493 OVS_SET_MASKED(nh
->flow_lbl
[1], (u8
)(fl
>> 8), (u8
)(mask
>> 8));
494 OVS_SET_MASKED(nh
->flow_lbl
[2], (u8
)fl
, (u8
)mask
);
497 static void set_ip_ttl(struct sk_buff
*skb
, struct iphdr
*nh
, u8 new_ttl
,
500 new_ttl
= OVS_MASKED(nh
->ttl
, new_ttl
, mask
);
502 csum_replace2(&nh
->check
, htons(nh
->ttl
<< 8), htons(new_ttl
<< 8));
506 static int set_ipv4(struct sk_buff
*skb
, struct sw_flow_key
*flow_key
,
507 const struct ovs_key_ipv4
*key
,
508 const struct ovs_key_ipv4
*mask
)
514 err
= skb_ensure_writable(skb
, skb_network_offset(skb
) +
515 sizeof(struct iphdr
));
521 /* Setting an IP addresses is typically only a side effect of
522 * matching on them in the current userspace implementation, so it
523 * makes sense to check if the value actually changed.
525 if (mask
->ipv4_src
) {
526 new_addr
= OVS_MASKED(nh
->saddr
, key
->ipv4_src
, mask
->ipv4_src
);
528 if (unlikely(new_addr
!= nh
->saddr
)) {
529 set_ip_addr(skb
, nh
, &nh
->saddr
, new_addr
);
530 flow_key
->ipv4
.addr
.src
= new_addr
;
533 if (mask
->ipv4_dst
) {
534 new_addr
= OVS_MASKED(nh
->daddr
, key
->ipv4_dst
, mask
->ipv4_dst
);
536 if (unlikely(new_addr
!= nh
->daddr
)) {
537 set_ip_addr(skb
, nh
, &nh
->daddr
, new_addr
);
538 flow_key
->ipv4
.addr
.dst
= new_addr
;
541 if (mask
->ipv4_tos
) {
542 ipv4_change_dsfield(nh
, ~mask
->ipv4_tos
, key
->ipv4_tos
);
543 flow_key
->ip
.tos
= nh
->tos
;
545 if (mask
->ipv4_ttl
) {
546 set_ip_ttl(skb
, nh
, key
->ipv4_ttl
, mask
->ipv4_ttl
);
547 flow_key
->ip
.ttl
= nh
->ttl
;
553 static bool is_ipv6_mask_nonzero(const __be32 addr
[4])
555 return !!(addr
[0] | addr
[1] | addr
[2] | addr
[3]);
558 static int set_ipv6(struct sk_buff
*skb
, struct sw_flow_key
*flow_key
,
559 const struct ovs_key_ipv6
*key
,
560 const struct ovs_key_ipv6
*mask
)
565 err
= skb_ensure_writable(skb
, skb_network_offset(skb
) +
566 sizeof(struct ipv6hdr
));
572 /* Setting an IP addresses is typically only a side effect of
573 * matching on them in the current userspace implementation, so it
574 * makes sense to check if the value actually changed.
576 if (is_ipv6_mask_nonzero(mask
->ipv6_src
)) {
577 __be32
*saddr
= (__be32
*)&nh
->saddr
;
580 mask_ipv6_addr(saddr
, key
->ipv6_src
, mask
->ipv6_src
, masked
);
582 if (unlikely(memcmp(saddr
, masked
, sizeof(masked
)))) {
583 set_ipv6_addr(skb
, flow_key
->ip
.proto
, saddr
, masked
,
585 memcpy(&flow_key
->ipv6
.addr
.src
, masked
,
586 sizeof(flow_key
->ipv6
.addr
.src
));
589 if (is_ipv6_mask_nonzero(mask
->ipv6_dst
)) {
590 unsigned int offset
= 0;
591 int flags
= IP6_FH_F_SKIP_RH
;
592 bool recalc_csum
= true;
593 __be32
*daddr
= (__be32
*)&nh
->daddr
;
596 mask_ipv6_addr(daddr
, key
->ipv6_dst
, mask
->ipv6_dst
, masked
);
598 if (unlikely(memcmp(daddr
, masked
, sizeof(masked
)))) {
599 if (ipv6_ext_hdr(nh
->nexthdr
))
600 recalc_csum
= (ipv6_find_hdr(skb
, &offset
,
605 set_ipv6_addr(skb
, flow_key
->ip
.proto
, daddr
, masked
,
607 memcpy(&flow_key
->ipv6
.addr
.dst
, masked
,
608 sizeof(flow_key
->ipv6
.addr
.dst
));
611 if (mask
->ipv6_tclass
) {
612 ipv6_change_dsfield(nh
, ~mask
->ipv6_tclass
, key
->ipv6_tclass
);
613 flow_key
->ip
.tos
= ipv6_get_dsfield(nh
);
615 if (mask
->ipv6_label
) {
616 set_ipv6_fl(nh
, ntohl(key
->ipv6_label
),
617 ntohl(mask
->ipv6_label
));
618 flow_key
->ipv6
.label
=
619 *(__be32
*)nh
& htonl(IPV6_FLOWINFO_FLOWLABEL
);
621 if (mask
->ipv6_hlimit
) {
622 OVS_SET_MASKED(nh
->hop_limit
, key
->ipv6_hlimit
,
624 flow_key
->ip
.ttl
= nh
->hop_limit
;
629 static int set_nsh(struct sk_buff
*skb
, struct sw_flow_key
*flow_key
,
630 const struct nlattr
*a
)
639 struct ovs_key_nsh key
;
640 struct ovs_key_nsh mask
;
642 err
= nsh_key_from_nlattr(a
, &key
, &mask
);
646 /* Make sure the NSH base header is there */
647 if (!pskb_may_pull(skb
, skb_network_offset(skb
) + NSH_BASE_HDR_LEN
))
651 length
= nsh_hdr_len(nh
);
653 /* Make sure the whole NSH header is there */
654 err
= skb_ensure_writable(skb
, skb_network_offset(skb
) +
660 skb_postpull_rcsum(skb
, nh
, length
);
661 flags
= nsh_get_flags(nh
);
662 flags
= OVS_MASKED(flags
, key
.base
.flags
, mask
.base
.flags
);
663 flow_key
->nsh
.base
.flags
= flags
;
664 ttl
= nsh_get_ttl(nh
);
665 ttl
= OVS_MASKED(ttl
, key
.base
.ttl
, mask
.base
.ttl
);
666 flow_key
->nsh
.base
.ttl
= ttl
;
667 nsh_set_flags_and_ttl(nh
, flags
, ttl
);
668 nh
->path_hdr
= OVS_MASKED(nh
->path_hdr
, key
.base
.path_hdr
,
670 flow_key
->nsh
.base
.path_hdr
= nh
->path_hdr
;
671 switch (nh
->mdtype
) {
673 for (i
= 0; i
< NSH_MD1_CONTEXT_SIZE
; i
++) {
675 OVS_MASKED(nh
->md1
.context
[i
], key
.context
[i
],
678 memcpy(flow_key
->nsh
.context
, nh
->md1
.context
,
679 sizeof(nh
->md1
.context
));
682 memset(flow_key
->nsh
.context
, 0,
683 sizeof(flow_key
->nsh
.context
));
688 skb_postpush_rcsum(skb
, nh
, length
);
692 /* Must follow skb_ensure_writable() since that can move the skb data. */
693 static void set_tp_port(struct sk_buff
*skb
, __be16
*port
,
694 __be16 new_port
, __sum16
*check
)
696 inet_proto_csum_replace2(check
, skb
, *port
, new_port
, false);
700 static int set_udp(struct sk_buff
*skb
, struct sw_flow_key
*flow_key
,
701 const struct ovs_key_udp
*key
,
702 const struct ovs_key_udp
*mask
)
708 err
= skb_ensure_writable(skb
, skb_transport_offset(skb
) +
709 sizeof(struct udphdr
));
714 /* Either of the masks is non-zero, so do not bother checking them. */
715 src
= OVS_MASKED(uh
->source
, key
->udp_src
, mask
->udp_src
);
716 dst
= OVS_MASKED(uh
->dest
, key
->udp_dst
, mask
->udp_dst
);
718 if (uh
->check
&& skb
->ip_summed
!= CHECKSUM_PARTIAL
) {
719 if (likely(src
!= uh
->source
)) {
720 set_tp_port(skb
, &uh
->source
, src
, &uh
->check
);
721 flow_key
->tp
.src
= src
;
723 if (likely(dst
!= uh
->dest
)) {
724 set_tp_port(skb
, &uh
->dest
, dst
, &uh
->check
);
725 flow_key
->tp
.dst
= dst
;
728 if (unlikely(!uh
->check
))
729 uh
->check
= CSUM_MANGLED_0
;
733 flow_key
->tp
.src
= src
;
734 flow_key
->tp
.dst
= dst
;
742 static int set_tcp(struct sk_buff
*skb
, struct sw_flow_key
*flow_key
,
743 const struct ovs_key_tcp
*key
,
744 const struct ovs_key_tcp
*mask
)
750 err
= skb_ensure_writable(skb
, skb_transport_offset(skb
) +
751 sizeof(struct tcphdr
));
756 src
= OVS_MASKED(th
->source
, key
->tcp_src
, mask
->tcp_src
);
757 if (likely(src
!= th
->source
)) {
758 set_tp_port(skb
, &th
->source
, src
, &th
->check
);
759 flow_key
->tp
.src
= src
;
761 dst
= OVS_MASKED(th
->dest
, key
->tcp_dst
, mask
->tcp_dst
);
762 if (likely(dst
!= th
->dest
)) {
763 set_tp_port(skb
, &th
->dest
, dst
, &th
->check
);
764 flow_key
->tp
.dst
= dst
;
771 static int set_sctp(struct sk_buff
*skb
, struct sw_flow_key
*flow_key
,
772 const struct ovs_key_sctp
*key
,
773 const struct ovs_key_sctp
*mask
)
775 unsigned int sctphoff
= skb_transport_offset(skb
);
777 __le32 old_correct_csum
, new_csum
, old_csum
;
780 err
= skb_ensure_writable(skb
, sctphoff
+ sizeof(struct sctphdr
));
785 old_csum
= sh
->checksum
;
786 old_correct_csum
= sctp_compute_cksum(skb
, sctphoff
);
788 sh
->source
= OVS_MASKED(sh
->source
, key
->sctp_src
, mask
->sctp_src
);
789 sh
->dest
= OVS_MASKED(sh
->dest
, key
->sctp_dst
, mask
->sctp_dst
);
791 new_csum
= sctp_compute_cksum(skb
, sctphoff
);
793 /* Carry any checksum errors through. */
794 sh
->checksum
= old_csum
^ old_correct_csum
^ new_csum
;
797 flow_key
->tp
.src
= sh
->source
;
798 flow_key
->tp
.dst
= sh
->dest
;
803 static int ovs_vport_output(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
805 struct ovs_frag_data
*data
= this_cpu_ptr(&ovs_frag_data_storage
);
806 struct vport
*vport
= data
->vport
;
808 if (skb_cow_head(skb
, data
->l2_len
) < 0) {
813 __skb_dst_copy(skb
, data
->dst
);
814 *OVS_CB(skb
) = data
->cb
;
815 skb
->inner_protocol
= data
->inner_protocol
;
816 if (data
->vlan_tci
& VLAN_CFI_MASK
)
817 __vlan_hwaccel_put_tag(skb
, data
->vlan_proto
, data
->vlan_tci
& ~VLAN_CFI_MASK
);
819 __vlan_hwaccel_clear_tag(skb
);
821 /* Reconstruct the MAC header. */
822 skb_push(skb
, data
->l2_len
);
823 memcpy(skb
->data
, &data
->l2_data
, data
->l2_len
);
824 skb_postpush_rcsum(skb
, skb
->data
, data
->l2_len
);
825 skb_reset_mac_header(skb
);
827 if (eth_p_mpls(skb
->protocol
)) {
828 skb
->inner_network_header
= skb
->network_header
;
829 skb_set_network_header(skb
, data
->network_offset
);
830 skb_reset_mac_len(skb
);
833 ovs_vport_send(vport
, skb
, data
->mac_proto
);
838 ovs_dst_get_mtu(const struct dst_entry
*dst
)
840 return dst
->dev
->mtu
;
843 static struct dst_ops ovs_dst_ops
= {
845 .mtu
= ovs_dst_get_mtu
,
848 /* prepare_frag() is called once per (larger-than-MTU) frame; its inverse is
849 * ovs_vport_output(), which is called once per fragmented packet.
851 static void prepare_frag(struct vport
*vport
, struct sk_buff
*skb
,
852 u16 orig_network_offset
, u8 mac_proto
)
854 unsigned int hlen
= skb_network_offset(skb
);
855 struct ovs_frag_data
*data
;
857 data
= this_cpu_ptr(&ovs_frag_data_storage
);
858 data
->dst
= skb
->_skb_refdst
;
860 data
->cb
= *OVS_CB(skb
);
861 data
->inner_protocol
= skb
->inner_protocol
;
862 data
->network_offset
= orig_network_offset
;
863 if (skb_vlan_tag_present(skb
))
864 data
->vlan_tci
= skb_vlan_tag_get(skb
) | VLAN_CFI_MASK
;
867 data
->vlan_proto
= skb
->vlan_proto
;
868 data
->mac_proto
= mac_proto
;
870 memcpy(&data
->l2_data
, skb
->data
, hlen
);
872 memset(IPCB(skb
), 0, sizeof(struct inet_skb_parm
));
876 static void ovs_fragment(struct net
*net
, struct vport
*vport
,
877 struct sk_buff
*skb
, u16 mru
,
878 struct sw_flow_key
*key
)
880 u16 orig_network_offset
= 0;
882 if (eth_p_mpls(skb
->protocol
)) {
883 orig_network_offset
= skb_network_offset(skb
);
884 skb
->network_header
= skb
->inner_network_header
;
887 if (skb_network_offset(skb
) > MAX_L2_LEN
) {
888 OVS_NLERR(1, "L2 header too long to fragment");
892 if (key
->eth
.type
== htons(ETH_P_IP
)) {
893 struct dst_entry ovs_dst
;
894 unsigned long orig_dst
;
896 prepare_frag(vport
, skb
, orig_network_offset
,
897 ovs_key_mac_proto(key
));
898 dst_init(&ovs_dst
, &ovs_dst_ops
, NULL
, 1,
899 DST_OBSOLETE_NONE
, DST_NOCOUNT
);
900 ovs_dst
.dev
= vport
->dev
;
902 orig_dst
= skb
->_skb_refdst
;
903 skb_dst_set_noref(skb
, &ovs_dst
);
904 IPCB(skb
)->frag_max_size
= mru
;
906 ip_do_fragment(net
, skb
->sk
, skb
, ovs_vport_output
);
907 refdst_drop(orig_dst
);
908 } else if (key
->eth
.type
== htons(ETH_P_IPV6
)) {
909 const struct nf_ipv6_ops
*v6ops
= nf_get_ipv6_ops();
910 unsigned long orig_dst
;
911 struct rt6_info ovs_rt
;
916 prepare_frag(vport
, skb
, orig_network_offset
,
917 ovs_key_mac_proto(key
));
918 memset(&ovs_rt
, 0, sizeof(ovs_rt
));
919 dst_init(&ovs_rt
.dst
, &ovs_dst_ops
, NULL
, 1,
920 DST_OBSOLETE_NONE
, DST_NOCOUNT
);
921 ovs_rt
.dst
.dev
= vport
->dev
;
923 orig_dst
= skb
->_skb_refdst
;
924 skb_dst_set_noref(skb
, &ovs_rt
.dst
);
925 IP6CB(skb
)->frag_max_size
= mru
;
927 v6ops
->fragment(net
, skb
->sk
, skb
, ovs_vport_output
);
928 refdst_drop(orig_dst
);
930 WARN_ONCE(1, "Failed fragment ->%s: eth=%04x, MRU=%d, MTU=%d.",
931 ovs_vport_name(vport
), ntohs(key
->eth
.type
), mru
,
941 static void do_output(struct datapath
*dp
, struct sk_buff
*skb
, int out_port
,
942 struct sw_flow_key
*key
)
944 struct vport
*vport
= ovs_vport_rcu(dp
, out_port
);
947 u16 mru
= OVS_CB(skb
)->mru
;
948 u32 cutlen
= OVS_CB(skb
)->cutlen
;
950 if (unlikely(cutlen
> 0)) {
951 if (skb
->len
- cutlen
> ovs_mac_header_len(key
))
952 pskb_trim(skb
, skb
->len
- cutlen
);
954 pskb_trim(skb
, ovs_mac_header_len(key
));
958 (skb
->len
<= mru
+ vport
->dev
->hard_header_len
))) {
959 ovs_vport_send(vport
, skb
, ovs_key_mac_proto(key
));
960 } else if (mru
<= vport
->dev
->mtu
) {
961 struct net
*net
= read_pnet(&dp
->net
);
963 ovs_fragment(net
, vport
, skb
, mru
, key
);
972 static int output_userspace(struct datapath
*dp
, struct sk_buff
*skb
,
973 struct sw_flow_key
*key
, const struct nlattr
*attr
,
974 const struct nlattr
*actions
, int actions_len
,
977 struct dp_upcall_info upcall
;
978 const struct nlattr
*a
;
981 memset(&upcall
, 0, sizeof(upcall
));
982 upcall
.cmd
= OVS_PACKET_CMD_ACTION
;
983 upcall
.mru
= OVS_CB(skb
)->mru
;
985 for (a
= nla_data(attr
), rem
= nla_len(attr
); rem
> 0;
986 a
= nla_next(a
, &rem
)) {
987 switch (nla_type(a
)) {
988 case OVS_USERSPACE_ATTR_USERDATA
:
992 case OVS_USERSPACE_ATTR_PID
:
993 upcall
.portid
= nla_get_u32(a
);
996 case OVS_USERSPACE_ATTR_EGRESS_TUN_PORT
: {
997 /* Get out tunnel info. */
1000 vport
= ovs_vport_rcu(dp
, nla_get_u32(a
));
1004 err
= dev_fill_metadata_dst(vport
->dev
, skb
);
1006 upcall
.egress_tun_info
= skb_tunnel_info(skb
);
1012 case OVS_USERSPACE_ATTR_ACTIONS
: {
1013 /* Include actions. */
1014 upcall
.actions
= actions
;
1015 upcall
.actions_len
= actions_len
;
1019 } /* End of switch. */
1022 return ovs_dp_upcall(dp
, skb
, key
, &upcall
, cutlen
);
1025 /* When 'last' is true, sample() should always consume the 'skb'.
1026 * Otherwise, sample() should keep 'skb' intact regardless what
1027 * actions are executed within sample().
1029 static int sample(struct datapath
*dp
, struct sk_buff
*skb
,
1030 struct sw_flow_key
*key
, const struct nlattr
*attr
,
1033 struct nlattr
*actions
;
1034 struct nlattr
*sample_arg
;
1035 int rem
= nla_len(attr
);
1036 const struct sample_arg
*arg
;
1037 bool clone_flow_key
;
1039 /* The first action is always 'OVS_SAMPLE_ATTR_ARG'. */
1040 sample_arg
= nla_data(attr
);
1041 arg
= nla_data(sample_arg
);
1042 actions
= nla_next(sample_arg
, &rem
);
1044 if ((arg
->probability
!= U32_MAX
) &&
1045 (!arg
->probability
|| prandom_u32() > arg
->probability
)) {
1051 clone_flow_key
= !arg
->exec
;
1052 return clone_execute(dp
, skb
, key
, 0, actions
, rem
, last
,
1056 /* When 'last' is true, clone() should always consume the 'skb'.
1057 * Otherwise, clone() should keep 'skb' intact regardless what
1058 * actions are executed within clone().
1060 static int clone(struct datapath
*dp
, struct sk_buff
*skb
,
1061 struct sw_flow_key
*key
, const struct nlattr
*attr
,
1064 struct nlattr
*actions
;
1065 struct nlattr
*clone_arg
;
1066 int rem
= nla_len(attr
);
1067 bool dont_clone_flow_key
;
1069 /* The first action is always 'OVS_CLONE_ATTR_ARG'. */
1070 clone_arg
= nla_data(attr
);
1071 dont_clone_flow_key
= nla_get_u32(clone_arg
);
1072 actions
= nla_next(clone_arg
, &rem
);
1074 return clone_execute(dp
, skb
, key
, 0, actions
, rem
, last
,
1075 !dont_clone_flow_key
);
1078 static void execute_hash(struct sk_buff
*skb
, struct sw_flow_key
*key
,
1079 const struct nlattr
*attr
)
1081 struct ovs_action_hash
*hash_act
= nla_data(attr
);
1084 /* OVS_HASH_ALG_L4 is the only possible hash algorithm. */
1085 hash
= skb_get_hash(skb
);
1086 hash
= jhash_1word(hash
, hash_act
->hash_basis
);
1090 key
->ovs_flow_hash
= hash
;
1093 static int execute_set_action(struct sk_buff
*skb
,
1094 struct sw_flow_key
*flow_key
,
1095 const struct nlattr
*a
)
1097 /* Only tunnel set execution is supported without a mask. */
1098 if (nla_type(a
) == OVS_KEY_ATTR_TUNNEL_INFO
) {
1099 struct ovs_tunnel_info
*tun
= nla_data(a
);
1102 dst_hold((struct dst_entry
*)tun
->tun_dst
);
1103 skb_dst_set(skb
, (struct dst_entry
*)tun
->tun_dst
);
1110 /* Mask is at the midpoint of the data. */
1111 #define get_mask(a, type) ((const type)nla_data(a) + 1)
1113 static int execute_masked_set_action(struct sk_buff
*skb
,
1114 struct sw_flow_key
*flow_key
,
1115 const struct nlattr
*a
)
1119 switch (nla_type(a
)) {
1120 case OVS_KEY_ATTR_PRIORITY
:
1121 OVS_SET_MASKED(skb
->priority
, nla_get_u32(a
),
1122 *get_mask(a
, u32
*));
1123 flow_key
->phy
.priority
= skb
->priority
;
1126 case OVS_KEY_ATTR_SKB_MARK
:
1127 OVS_SET_MASKED(skb
->mark
, nla_get_u32(a
), *get_mask(a
, u32
*));
1128 flow_key
->phy
.skb_mark
= skb
->mark
;
1131 case OVS_KEY_ATTR_TUNNEL_INFO
:
1132 /* Masked data not supported for tunnel. */
1136 case OVS_KEY_ATTR_ETHERNET
:
1137 err
= set_eth_addr(skb
, flow_key
, nla_data(a
),
1138 get_mask(a
, struct ovs_key_ethernet
*));
1141 case OVS_KEY_ATTR_NSH
:
1142 err
= set_nsh(skb
, flow_key
, a
);
1145 case OVS_KEY_ATTR_IPV4
:
1146 err
= set_ipv4(skb
, flow_key
, nla_data(a
),
1147 get_mask(a
, struct ovs_key_ipv4
*));
1150 case OVS_KEY_ATTR_IPV6
:
1151 err
= set_ipv6(skb
, flow_key
, nla_data(a
),
1152 get_mask(a
, struct ovs_key_ipv6
*));
1155 case OVS_KEY_ATTR_TCP
:
1156 err
= set_tcp(skb
, flow_key
, nla_data(a
),
1157 get_mask(a
, struct ovs_key_tcp
*));
1160 case OVS_KEY_ATTR_UDP
:
1161 err
= set_udp(skb
, flow_key
, nla_data(a
),
1162 get_mask(a
, struct ovs_key_udp
*));
1165 case OVS_KEY_ATTR_SCTP
:
1166 err
= set_sctp(skb
, flow_key
, nla_data(a
),
1167 get_mask(a
, struct ovs_key_sctp
*));
1170 case OVS_KEY_ATTR_MPLS
:
1171 err
= set_mpls(skb
, flow_key
, nla_data(a
), get_mask(a
,
1175 case OVS_KEY_ATTR_CT_STATE
:
1176 case OVS_KEY_ATTR_CT_ZONE
:
1177 case OVS_KEY_ATTR_CT_MARK
:
1178 case OVS_KEY_ATTR_CT_LABELS
:
1179 case OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV4
:
1180 case OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV6
:
1188 static int execute_recirc(struct datapath
*dp
, struct sk_buff
*skb
,
1189 struct sw_flow_key
*key
,
1190 const struct nlattr
*a
, bool last
)
1194 if (!is_flow_key_valid(key
)) {
1197 err
= ovs_flow_key_update(skb
, key
);
1201 BUG_ON(!is_flow_key_valid(key
));
1203 recirc_id
= nla_get_u32(a
);
1204 return clone_execute(dp
, skb
, key
, recirc_id
, NULL
, 0, last
, true);
1207 static int execute_check_pkt_len(struct datapath
*dp
, struct sk_buff
*skb
,
1208 struct sw_flow_key
*key
,
1209 const struct nlattr
*attr
, bool last
)
1211 const struct nlattr
*actions
, *cpl_arg
;
1212 const struct check_pkt_len_arg
*arg
;
1213 int rem
= nla_len(attr
);
1214 bool clone_flow_key
;
1216 /* The first netlink attribute in 'attr' is always
1217 * 'OVS_CHECK_PKT_LEN_ATTR_ARG'.
1219 cpl_arg
= nla_data(attr
);
1220 arg
= nla_data(cpl_arg
);
1222 if (skb
->len
<= arg
->pkt_len
) {
1223 /* Second netlink attribute in 'attr' is always
1224 * 'OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_LESS_EQUAL'.
1226 actions
= nla_next(cpl_arg
, &rem
);
1227 clone_flow_key
= !arg
->exec_for_lesser_equal
;
1229 /* Third netlink attribute in 'attr' is always
1230 * 'OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_GREATER'.
1232 actions
= nla_next(cpl_arg
, &rem
);
1233 actions
= nla_next(actions
, &rem
);
1234 clone_flow_key
= !arg
->exec_for_greater
;
1237 return clone_execute(dp
, skb
, key
, 0, nla_data(actions
),
1238 nla_len(actions
), last
, clone_flow_key
);
1241 /* Execute a list of actions against 'skb'. */
1242 static int do_execute_actions(struct datapath
*dp
, struct sk_buff
*skb
,
1243 struct sw_flow_key
*key
,
1244 const struct nlattr
*attr
, int len
)
1246 const struct nlattr
*a
;
1249 for (a
= attr
, rem
= len
; rem
> 0;
1250 a
= nla_next(a
, &rem
)) {
1253 switch (nla_type(a
)) {
1254 case OVS_ACTION_ATTR_OUTPUT
: {
1255 int port
= nla_get_u32(a
);
1256 struct sk_buff
*clone
;
1258 /* Every output action needs a separate clone
1259 * of 'skb', In case the output action is the
1260 * last action, cloning can be avoided.
1262 if (nla_is_last(a
, rem
)) {
1263 do_output(dp
, skb
, port
, key
);
1264 /* 'skb' has been used for output.
1269 clone
= skb_clone(skb
, GFP_ATOMIC
);
1271 do_output(dp
, clone
, port
, key
);
1272 OVS_CB(skb
)->cutlen
= 0;
1276 case OVS_ACTION_ATTR_TRUNC
: {
1277 struct ovs_action_trunc
*trunc
= nla_data(a
);
1279 if (skb
->len
> trunc
->max_len
)
1280 OVS_CB(skb
)->cutlen
= skb
->len
- trunc
->max_len
;
1284 case OVS_ACTION_ATTR_USERSPACE
:
1285 output_userspace(dp
, skb
, key
, a
, attr
,
1286 len
, OVS_CB(skb
)->cutlen
);
1287 OVS_CB(skb
)->cutlen
= 0;
1290 case OVS_ACTION_ATTR_HASH
:
1291 execute_hash(skb
, key
, a
);
1294 case OVS_ACTION_ATTR_PUSH_MPLS
:
1295 err
= push_mpls(skb
, key
, nla_data(a
));
1298 case OVS_ACTION_ATTR_POP_MPLS
:
1299 err
= pop_mpls(skb
, key
, nla_get_be16(a
));
1302 case OVS_ACTION_ATTR_PUSH_VLAN
:
1303 err
= push_vlan(skb
, key
, nla_data(a
));
1306 case OVS_ACTION_ATTR_POP_VLAN
:
1307 err
= pop_vlan(skb
, key
);
1310 case OVS_ACTION_ATTR_RECIRC
: {
1311 bool last
= nla_is_last(a
, rem
);
1313 err
= execute_recirc(dp
, skb
, key
, a
, last
);
1315 /* If this is the last action, the skb has
1316 * been consumed or freed.
1317 * Return immediately.
1324 case OVS_ACTION_ATTR_SET
:
1325 err
= execute_set_action(skb
, key
, nla_data(a
));
1328 case OVS_ACTION_ATTR_SET_MASKED
:
1329 case OVS_ACTION_ATTR_SET_TO_MASKED
:
1330 err
= execute_masked_set_action(skb
, key
, nla_data(a
));
1333 case OVS_ACTION_ATTR_SAMPLE
: {
1334 bool last
= nla_is_last(a
, rem
);
1336 err
= sample(dp
, skb
, key
, a
, last
);
1343 case OVS_ACTION_ATTR_CT
:
1344 if (!is_flow_key_valid(key
)) {
1345 err
= ovs_flow_key_update(skb
, key
);
1350 err
= ovs_ct_execute(ovs_dp_get_net(dp
), skb
, key
,
1353 /* Hide stolen IP fragments from user space. */
1355 return err
== -EINPROGRESS
? 0 : err
;
1358 case OVS_ACTION_ATTR_CT_CLEAR
:
1359 err
= ovs_ct_clear(skb
, key
);
1362 case OVS_ACTION_ATTR_PUSH_ETH
:
1363 err
= push_eth(skb
, key
, nla_data(a
));
1366 case OVS_ACTION_ATTR_POP_ETH
:
1367 err
= pop_eth(skb
, key
);
1370 case OVS_ACTION_ATTR_PUSH_NSH
: {
1371 u8 buffer
[NSH_HDR_MAX_LEN
];
1372 struct nshhdr
*nh
= (struct nshhdr
*)buffer
;
1374 err
= nsh_hdr_from_nlattr(nla_data(a
), nh
,
1378 err
= push_nsh(skb
, key
, nh
);
1382 case OVS_ACTION_ATTR_POP_NSH
:
1383 err
= pop_nsh(skb
, key
);
1386 case OVS_ACTION_ATTR_METER
:
1387 if (ovs_meter_execute(dp
, skb
, key
, nla_get_u32(a
))) {
1393 case OVS_ACTION_ATTR_CLONE
: {
1394 bool last
= nla_is_last(a
, rem
);
1396 err
= clone(dp
, skb
, key
, a
, last
);
1403 case OVS_ACTION_ATTR_CHECK_PKT_LEN
: {
1404 bool last
= nla_is_last(a
, rem
);
1406 err
= execute_check_pkt_len(dp
, skb
, key
, a
, last
);
1414 if (unlikely(err
)) {
1424 /* Execute the actions on the clone of the packet. The effect of the
1425 * execution does not affect the original 'skb' nor the original 'key'.
1427 * The execution may be deferred in case the actions can not be executed
1430 static int clone_execute(struct datapath
*dp
, struct sk_buff
*skb
,
1431 struct sw_flow_key
*key
, u32 recirc_id
,
1432 const struct nlattr
*actions
, int len
,
1433 bool last
, bool clone_flow_key
)
1435 struct deferred_action
*da
;
1436 struct sw_flow_key
*clone
;
1438 skb
= last
? skb
: skb_clone(skb
, GFP_ATOMIC
);
1440 /* Out of memory, skip this action.
1445 /* When clone_flow_key is false, the 'key' will not be change
1446 * by the actions, then the 'key' can be used directly.
1447 * Otherwise, try to clone key from the next recursion level of
1448 * 'flow_keys'. If clone is successful, execute the actions
1449 * without deferring.
1451 clone
= clone_flow_key
? clone_key(key
) : key
;
1455 if (actions
) { /* Sample action */
1457 __this_cpu_inc(exec_actions_level
);
1459 err
= do_execute_actions(dp
, skb
, clone
,
1463 __this_cpu_dec(exec_actions_level
);
1464 } else { /* Recirc action */
1465 clone
->recirc_id
= recirc_id
;
1466 ovs_dp_process_packet(skb
, clone
);
1471 /* Out of 'flow_keys' space. Defer actions */
1472 da
= add_deferred_actions(skb
, key
, actions
, len
);
1474 if (!actions
) { /* Recirc action */
1476 key
->recirc_id
= recirc_id
;
1479 /* Out of per CPU action FIFO space. Drop the 'skb' and
1484 if (net_ratelimit()) {
1485 if (actions
) { /* Sample action */
1486 pr_warn("%s: deferred action limit reached, drop sample action\n",
1488 } else { /* Recirc action */
1489 pr_warn("%s: deferred action limit reached, drop recirc action\n",
1497 static void process_deferred_actions(struct datapath
*dp
)
1499 struct action_fifo
*fifo
= this_cpu_ptr(action_fifos
);
1501 /* Do not touch the FIFO in case there is no deferred actions. */
1502 if (action_fifo_is_empty(fifo
))
1505 /* Finishing executing all deferred actions. */
1507 struct deferred_action
*da
= action_fifo_get(fifo
);
1508 struct sk_buff
*skb
= da
->skb
;
1509 struct sw_flow_key
*key
= &da
->pkt_key
;
1510 const struct nlattr
*actions
= da
->actions
;
1511 int actions_len
= da
->actions_len
;
1514 do_execute_actions(dp
, skb
, key
, actions
, actions_len
);
1516 ovs_dp_process_packet(skb
, key
);
1517 } while (!action_fifo_is_empty(fifo
));
1519 /* Reset FIFO for the next packet. */
1520 action_fifo_init(fifo
);
1523 /* Execute a list of actions against 'skb'. */
1524 int ovs_execute_actions(struct datapath
*dp
, struct sk_buff
*skb
,
1525 const struct sw_flow_actions
*acts
,
1526 struct sw_flow_key
*key
)
1530 level
= __this_cpu_inc_return(exec_actions_level
);
1531 if (unlikely(level
> OVS_RECURSION_LIMIT
)) {
1532 net_crit_ratelimited("ovs: recursion limit reached on datapath %s, probable configuration error\n",
1539 OVS_CB(skb
)->acts_origlen
= acts
->orig_len
;
1540 err
= do_execute_actions(dp
, skb
, key
,
1541 acts
->actions
, acts
->actions_len
);
1544 process_deferred_actions(dp
);
1547 __this_cpu_dec(exec_actions_level
);
1551 int action_fifos_init(void)
1553 action_fifos
= alloc_percpu(struct action_fifo
);
1557 flow_keys
= alloc_percpu(struct action_flow_keys
);
1559 free_percpu(action_fifos
);
1566 void action_fifos_exit(void)
1568 free_percpu(action_fifos
);
1569 free_percpu(flow_keys
);