]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/openvswitch/actions.c
openvswitch: Add conntrack action
[mirror_ubuntu-bionic-kernel.git] / net / openvswitch / actions.c
CommitLineData
ccb1352e 1/*
971427f3 2 * Copyright (c) 2007-2014 Nicira, Inc.
ccb1352e
JG
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>
7f8a436e 25#include <linux/netfilter_ipv6.h>
a175a723 26#include <linux/sctp.h>
ccb1352e
JG
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>
25cd9ba0 32
7f8a436e 33#include <net/dst.h>
ccb1352e 34#include <net/ip.h>
3fdbd1ce 35#include <net/ipv6.h>
ccb1352e
JG
36#include <net/checksum.h>
37#include <net/dsfield.h>
25cd9ba0 38#include <net/mpls.h>
a175a723 39#include <net/sctp/checksum.h>
ccb1352e
JG
40
41#include "datapath.h"
971427f3 42#include "flow.h"
7f8a436e 43#include "conntrack.h"
ccb1352e
JG
44#include "vport.h"
45
46static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
2ff3e4e4 47 struct sw_flow_key *key,
651887b0 48 const struct nlattr *attr, int len);
ccb1352e 49
971427f3
AZ
50struct deferred_action {
51 struct sk_buff *skb;
52 const struct nlattr *actions;
53
54 /* Store pkt_key clone when creating deferred action. */
55 struct sw_flow_key pkt_key;
56};
57
7f8a436e
JS
58#define MAX_L2_LEN (VLAN_ETH_HLEN + 3 * MPLS_HLEN)
59struct ovs_frag_data {
60 unsigned long dst;
61 struct vport *vport;
62 struct ovs_skb_cb cb;
63 __be16 inner_protocol;
64 __u16 vlan_tci;
65 __be16 vlan_proto;
66 unsigned int l2_len;
67 u8 l2_data[MAX_L2_LEN];
68};
69
70static DEFINE_PER_CPU(struct ovs_frag_data, ovs_frag_data_storage);
71
971427f3
AZ
72#define DEFERRED_ACTION_FIFO_SIZE 10
73struct action_fifo {
74 int head;
75 int tail;
76 /* Deferred action fifo queue storage. */
77 struct deferred_action fifo[DEFERRED_ACTION_FIFO_SIZE];
78};
79
80static struct action_fifo __percpu *action_fifos;
81static DEFINE_PER_CPU(int, exec_actions_level);
82
83static void action_fifo_init(struct action_fifo *fifo)
84{
85 fifo->head = 0;
86 fifo->tail = 0;
87}
88
12eb18f7 89static bool action_fifo_is_empty(const struct action_fifo *fifo)
971427f3
AZ
90{
91 return (fifo->head == fifo->tail);
92}
93
94static struct deferred_action *action_fifo_get(struct action_fifo *fifo)
95{
96 if (action_fifo_is_empty(fifo))
97 return NULL;
98
99 return &fifo->fifo[fifo->tail++];
100}
101
102static struct deferred_action *action_fifo_put(struct action_fifo *fifo)
103{
104 if (fifo->head >= DEFERRED_ACTION_FIFO_SIZE - 1)
105 return NULL;
106
107 return &fifo->fifo[fifo->head++];
108}
109
110/* Return true if fifo is not full */
111static struct deferred_action *add_deferred_actions(struct sk_buff *skb,
12eb18f7 112 const struct sw_flow_key *key,
971427f3
AZ
113 const struct nlattr *attr)
114{
115 struct action_fifo *fifo;
116 struct deferred_action *da;
117
118 fifo = this_cpu_ptr(action_fifos);
119 da = action_fifo_put(fifo);
120 if (da) {
121 da->skb = skb;
122 da->actions = attr;
123 da->pkt_key = *key;
124 }
125
126 return da;
127}
128
fff06c36
PS
129static void invalidate_flow_key(struct sw_flow_key *key)
130{
131 key->eth.type = htons(0);
132}
133
134static bool is_flow_key_valid(const struct sw_flow_key *key)
135{
136 return !!key->eth.type;
137}
138
fff06c36 139static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key,
25cd9ba0
SH
140 const struct ovs_action_push_mpls *mpls)
141{
142 __be32 *new_mpls_lse;
143 struct ethhdr *hdr;
144
145 /* Networking stack do not allow simultaneous Tunnel and MPLS GSO. */
146 if (skb->encapsulation)
147 return -ENOTSUPP;
148
149 if (skb_cow_head(skb, MPLS_HLEN) < 0)
150 return -ENOMEM;
151
152 skb_push(skb, MPLS_HLEN);
153 memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
154 skb->mac_len);
155 skb_reset_mac_header(skb);
156
157 new_mpls_lse = (__be32 *)skb_mpls_header(skb);
158 *new_mpls_lse = mpls->mpls_lse;
159
160 if (skb->ip_summed == CHECKSUM_COMPLETE)
161 skb->csum = csum_add(skb->csum, csum_partial(new_mpls_lse,
162 MPLS_HLEN, 0));
163
164 hdr = eth_hdr(skb);
165 hdr->h_proto = mpls->mpls_ethertype;
166
cbe7e76d
PS
167 if (!skb->inner_protocol)
168 skb_set_inner_protocol(skb, skb->protocol);
25cd9ba0
SH
169 skb->protocol = mpls->mpls_ethertype;
170
fff06c36 171 invalidate_flow_key(key);
25cd9ba0
SH
172 return 0;
173}
174
fff06c36
PS
175static int pop_mpls(struct sk_buff *skb, struct sw_flow_key *key,
176 const __be16 ethertype)
25cd9ba0
SH
177{
178 struct ethhdr *hdr;
179 int err;
180
e2195121 181 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
25cd9ba0
SH
182 if (unlikely(err))
183 return err;
184
1abcd82c 185 skb_postpull_rcsum(skb, skb_mpls_header(skb), MPLS_HLEN);
25cd9ba0
SH
186
187 memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
188 skb->mac_len);
189
190 __skb_pull(skb, MPLS_HLEN);
191 skb_reset_mac_header(skb);
192
193 /* skb_mpls_header() is used to locate the ethertype
194 * field correctly in the presence of VLAN tags.
195 */
196 hdr = (struct ethhdr *)(skb_mpls_header(skb) - ETH_HLEN);
197 hdr->h_proto = ethertype;
198 if (eth_p_mpls(skb->protocol))
199 skb->protocol = ethertype;
fff06c36
PS
200
201 invalidate_flow_key(key);
25cd9ba0
SH
202 return 0;
203}
204
83d2b9ba
JR
205static int set_mpls(struct sk_buff *skb, struct sw_flow_key *flow_key,
206 const __be32 *mpls_lse, const __be32 *mask)
25cd9ba0
SH
207{
208 __be32 *stack;
83d2b9ba 209 __be32 lse;
25cd9ba0
SH
210 int err;
211
e2195121 212 err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
25cd9ba0
SH
213 if (unlikely(err))
214 return err;
215
216 stack = (__be32 *)skb_mpls_header(skb);
be26b9a8 217 lse = OVS_MASKED(*stack, *mpls_lse, *mask);
25cd9ba0 218 if (skb->ip_summed == CHECKSUM_COMPLETE) {
83d2b9ba
JR
219 __be32 diff[] = { ~(*stack), lse };
220
25cd9ba0
SH
221 skb->csum = ~csum_partial((char *)diff, sizeof(diff),
222 ~skb->csum);
223 }
224
83d2b9ba
JR
225 *stack = lse;
226 flow_key->mpls.top_lse = lse;
25cd9ba0
SH
227 return 0;
228}
229
fff06c36 230static int pop_vlan(struct sk_buff *skb, struct sw_flow_key *key)
ccb1352e 231{
ccb1352e
JG
232 int err;
233
93515d53 234 err = skb_vlan_pop(skb);
df8a39de 235 if (skb_vlan_tag_present(skb))
93515d53
JP
236 invalidate_flow_key(key);
237 else
fff06c36 238 key->eth.tci = 0;
93515d53 239 return err;
ccb1352e
JG
240}
241
fff06c36
PS
242static int push_vlan(struct sk_buff *skb, struct sw_flow_key *key,
243 const struct ovs_action_push_vlan *vlan)
ccb1352e 244{
df8a39de 245 if (skb_vlan_tag_present(skb))
fff06c36 246 invalidate_flow_key(key);
93515d53 247 else
fff06c36 248 key->eth.tci = vlan->vlan_tci;
93515d53
JP
249 return skb_vlan_push(skb, vlan->vlan_tpid,
250 ntohs(vlan->vlan_tci) & ~VLAN_TAG_PRESENT);
ccb1352e
JG
251}
252
83d2b9ba
JR
253/* 'src' is already properly masked. */
254static void ether_addr_copy_masked(u8 *dst_, const u8 *src_, const u8 *mask_)
255{
256 u16 *dst = (u16 *)dst_;
257 const u16 *src = (const u16 *)src_;
258 const u16 *mask = (const u16 *)mask_;
259
be26b9a8
JS
260 OVS_SET_MASKED(dst[0], src[0], mask[0]);
261 OVS_SET_MASKED(dst[1], src[1], mask[1]);
262 OVS_SET_MASKED(dst[2], src[2], mask[2]);
83d2b9ba
JR
263}
264
265static int set_eth_addr(struct sk_buff *skb, struct sw_flow_key *flow_key,
266 const struct ovs_key_ethernet *key,
267 const struct ovs_key_ethernet *mask)
ccb1352e
JG
268{
269 int err;
83d2b9ba 270
e2195121 271 err = skb_ensure_writable(skb, ETH_HLEN);
ccb1352e
JG
272 if (unlikely(err))
273 return err;
274
b34df5e8
PS
275 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
276
83d2b9ba
JR
277 ether_addr_copy_masked(eth_hdr(skb)->h_source, key->eth_src,
278 mask->eth_src);
279 ether_addr_copy_masked(eth_hdr(skb)->h_dest, key->eth_dst,
280 mask->eth_dst);
ccb1352e 281
b34df5e8
PS
282 ovs_skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2);
283
83d2b9ba
JR
284 ether_addr_copy(flow_key->eth.src, eth_hdr(skb)->h_source);
285 ether_addr_copy(flow_key->eth.dst, eth_hdr(skb)->h_dest);
ccb1352e
JG
286 return 0;
287}
288
3576fd79
GG
289static void update_ip_l4_checksum(struct sk_buff *skb, struct iphdr *nh,
290 __be32 addr, __be32 new_addr)
ccb1352e
JG
291{
292 int transport_len = skb->len - skb_transport_offset(skb);
293
3576fd79
GG
294 if (nh->frag_off & htons(IP_OFFSET))
295 return;
296
ccb1352e
JG
297 if (nh->protocol == IPPROTO_TCP) {
298 if (likely(transport_len >= sizeof(struct tcphdr)))
299 inet_proto_csum_replace4(&tcp_hdr(skb)->check, skb,
4b048d6d 300 addr, new_addr, true);
ccb1352e 301 } else if (nh->protocol == IPPROTO_UDP) {
81e5d41d
JG
302 if (likely(transport_len >= sizeof(struct udphdr))) {
303 struct udphdr *uh = udp_hdr(skb);
304
305 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
306 inet_proto_csum_replace4(&uh->check, skb,
4b048d6d 307 addr, new_addr, true);
81e5d41d
JG
308 if (!uh->check)
309 uh->check = CSUM_MANGLED_0;
310 }
311 }
ccb1352e 312 }
3576fd79 313}
ccb1352e 314
3576fd79
GG
315static void set_ip_addr(struct sk_buff *skb, struct iphdr *nh,
316 __be32 *addr, __be32 new_addr)
317{
318 update_ip_l4_checksum(skb, nh, *addr, new_addr);
ccb1352e 319 csum_replace4(&nh->check, *addr, new_addr);
7539fadc 320 skb_clear_hash(skb);
ccb1352e
JG
321 *addr = new_addr;
322}
323
3fdbd1ce
AA
324static void update_ipv6_checksum(struct sk_buff *skb, u8 l4_proto,
325 __be32 addr[4], const __be32 new_addr[4])
326{
327 int transport_len = skb->len - skb_transport_offset(skb);
328
856447d0 329 if (l4_proto == NEXTHDR_TCP) {
3fdbd1ce
AA
330 if (likely(transport_len >= sizeof(struct tcphdr)))
331 inet_proto_csum_replace16(&tcp_hdr(skb)->check, skb,
4b048d6d 332 addr, new_addr, true);
856447d0 333 } else if (l4_proto == NEXTHDR_UDP) {
3fdbd1ce
AA
334 if (likely(transport_len >= sizeof(struct udphdr))) {
335 struct udphdr *uh = udp_hdr(skb);
336
337 if (uh->check || skb->ip_summed == CHECKSUM_PARTIAL) {
338 inet_proto_csum_replace16(&uh->check, skb,
4b048d6d 339 addr, new_addr, true);
3fdbd1ce
AA
340 if (!uh->check)
341 uh->check = CSUM_MANGLED_0;
342 }
343 }
856447d0
JG
344 } else if (l4_proto == NEXTHDR_ICMP) {
345 if (likely(transport_len >= sizeof(struct icmp6hdr)))
346 inet_proto_csum_replace16(&icmp6_hdr(skb)->icmp6_cksum,
4b048d6d 347 skb, addr, new_addr, true);
3fdbd1ce
AA
348 }
349}
350
83d2b9ba
JR
351static void mask_ipv6_addr(const __be32 old[4], const __be32 addr[4],
352 const __be32 mask[4], __be32 masked[4])
353{
be26b9a8
JS
354 masked[0] = OVS_MASKED(old[0], addr[0], mask[0]);
355 masked[1] = OVS_MASKED(old[1], addr[1], mask[1]);
356 masked[2] = OVS_MASKED(old[2], addr[2], mask[2]);
357 masked[3] = OVS_MASKED(old[3], addr[3], mask[3]);
83d2b9ba
JR
358}
359
3fdbd1ce
AA
360static void set_ipv6_addr(struct sk_buff *skb, u8 l4_proto,
361 __be32 addr[4], const __be32 new_addr[4],
362 bool recalculate_csum)
363{
364 if (recalculate_csum)
365 update_ipv6_checksum(skb, l4_proto, addr, new_addr);
366
7539fadc 367 skb_clear_hash(skb);
3fdbd1ce
AA
368 memcpy(addr, new_addr, sizeof(__be32[4]));
369}
370
83d2b9ba 371static void set_ipv6_fl(struct ipv6hdr *nh, u32 fl, u32 mask)
3fdbd1ce 372{
83d2b9ba 373 /* Bits 21-24 are always unmasked, so this retains their values. */
be26b9a8
JS
374 OVS_SET_MASKED(nh->flow_lbl[0], (u8)(fl >> 16), (u8)(mask >> 16));
375 OVS_SET_MASKED(nh->flow_lbl[1], (u8)(fl >> 8), (u8)(mask >> 8));
376 OVS_SET_MASKED(nh->flow_lbl[2], (u8)fl, (u8)mask);
3fdbd1ce
AA
377}
378
83d2b9ba
JR
379static void set_ip_ttl(struct sk_buff *skb, struct iphdr *nh, u8 new_ttl,
380 u8 mask)
3fdbd1ce 381{
be26b9a8 382 new_ttl = OVS_MASKED(nh->ttl, new_ttl, mask);
3fdbd1ce 383
ccb1352e
JG
384 csum_replace2(&nh->check, htons(nh->ttl << 8), htons(new_ttl << 8));
385 nh->ttl = new_ttl;
386}
387
83d2b9ba
JR
388static int set_ipv4(struct sk_buff *skb, struct sw_flow_key *flow_key,
389 const struct ovs_key_ipv4 *key,
390 const struct ovs_key_ipv4 *mask)
ccb1352e
JG
391{
392 struct iphdr *nh;
83d2b9ba 393 __be32 new_addr;
ccb1352e
JG
394 int err;
395
e2195121
JP
396 err = skb_ensure_writable(skb, skb_network_offset(skb) +
397 sizeof(struct iphdr));
ccb1352e
JG
398 if (unlikely(err))
399 return err;
400
401 nh = ip_hdr(skb);
402
83d2b9ba
JR
403 /* Setting an IP addresses is typically only a side effect of
404 * matching on them in the current userspace implementation, so it
405 * makes sense to check if the value actually changed.
406 */
407 if (mask->ipv4_src) {
be26b9a8 408 new_addr = OVS_MASKED(nh->saddr, key->ipv4_src, mask->ipv4_src);
ccb1352e 409
83d2b9ba
JR
410 if (unlikely(new_addr != nh->saddr)) {
411 set_ip_addr(skb, nh, &nh->saddr, new_addr);
412 flow_key->ipv4.addr.src = new_addr;
413 }
fff06c36 414 }
83d2b9ba 415 if (mask->ipv4_dst) {
be26b9a8 416 new_addr = OVS_MASKED(nh->daddr, key->ipv4_dst, mask->ipv4_dst);
ccb1352e 417
83d2b9ba
JR
418 if (unlikely(new_addr != nh->daddr)) {
419 set_ip_addr(skb, nh, &nh->daddr, new_addr);
420 flow_key->ipv4.addr.dst = new_addr;
421 }
fff06c36 422 }
83d2b9ba
JR
423 if (mask->ipv4_tos) {
424 ipv4_change_dsfield(nh, ~mask->ipv4_tos, key->ipv4_tos);
425 flow_key->ip.tos = nh->tos;
426 }
427 if (mask->ipv4_ttl) {
428 set_ip_ttl(skb, nh, key->ipv4_ttl, mask->ipv4_ttl);
429 flow_key->ip.ttl = nh->ttl;
fff06c36 430 }
ccb1352e
JG
431
432 return 0;
433}
434
83d2b9ba
JR
435static bool is_ipv6_mask_nonzero(const __be32 addr[4])
436{
437 return !!(addr[0] | addr[1] | addr[2] | addr[3]);
438}
439
440static int set_ipv6(struct sk_buff *skb, struct sw_flow_key *flow_key,
441 const struct ovs_key_ipv6 *key,
442 const struct ovs_key_ipv6 *mask)
3fdbd1ce
AA
443{
444 struct ipv6hdr *nh;
445 int err;
3fdbd1ce 446
e2195121
JP
447 err = skb_ensure_writable(skb, skb_network_offset(skb) +
448 sizeof(struct ipv6hdr));
3fdbd1ce
AA
449 if (unlikely(err))
450 return err;
451
452 nh = ipv6_hdr(skb);
3fdbd1ce 453
83d2b9ba
JR
454 /* Setting an IP addresses is typically only a side effect of
455 * matching on them in the current userspace implementation, so it
456 * makes sense to check if the value actually changed.
457 */
458 if (is_ipv6_mask_nonzero(mask->ipv6_src)) {
459 __be32 *saddr = (__be32 *)&nh->saddr;
460 __be32 masked[4];
461
462 mask_ipv6_addr(saddr, key->ipv6_src, mask->ipv6_src, masked);
463
464 if (unlikely(memcmp(saddr, masked, sizeof(masked)))) {
465 set_ipv6_addr(skb, key->ipv6_proto, saddr, masked,
466 true);
467 memcpy(&flow_key->ipv6.addr.src, masked,
468 sizeof(flow_key->ipv6.addr.src));
469 }
470 }
471 if (is_ipv6_mask_nonzero(mask->ipv6_dst)) {
3fdbd1ce
AA
472 unsigned int offset = 0;
473 int flags = IP6_FH_F_SKIP_RH;
474 bool recalc_csum = true;
83d2b9ba
JR
475 __be32 *daddr = (__be32 *)&nh->daddr;
476 __be32 masked[4];
477
478 mask_ipv6_addr(daddr, key->ipv6_dst, mask->ipv6_dst, masked);
479
480 if (unlikely(memcmp(daddr, masked, sizeof(masked)))) {
481 if (ipv6_ext_hdr(nh->nexthdr))
482 recalc_csum = (ipv6_find_hdr(skb, &offset,
483 NEXTHDR_ROUTING,
484 NULL, &flags)
485 != NEXTHDR_ROUTING);
486
487 set_ipv6_addr(skb, key->ipv6_proto, daddr, masked,
488 recalc_csum);
489 memcpy(&flow_key->ipv6.addr.dst, masked,
490 sizeof(flow_key->ipv6.addr.dst));
491 }
492 }
493 if (mask->ipv6_tclass) {
494 ipv6_change_dsfield(nh, ~mask->ipv6_tclass, key->ipv6_tclass);
495 flow_key->ip.tos = ipv6_get_dsfield(nh);
496 }
497 if (mask->ipv6_label) {
498 set_ipv6_fl(nh, ntohl(key->ipv6_label),
499 ntohl(mask->ipv6_label));
500 flow_key->ipv6.label =
501 *(__be32 *)nh & htonl(IPV6_FLOWINFO_FLOWLABEL);
502 }
503 if (mask->ipv6_hlimit) {
be26b9a8
JS
504 OVS_SET_MASKED(nh->hop_limit, key->ipv6_hlimit,
505 mask->ipv6_hlimit);
83d2b9ba 506 flow_key->ip.ttl = nh->hop_limit;
3fdbd1ce 507 }
3fdbd1ce
AA
508 return 0;
509}
510
e2195121 511/* Must follow skb_ensure_writable() since that can move the skb data. */
ccb1352e 512static void set_tp_port(struct sk_buff *skb, __be16 *port,
83d2b9ba 513 __be16 new_port, __sum16 *check)
ccb1352e 514{
4b048d6d 515 inet_proto_csum_replace2(check, skb, *port, new_port, false);
ccb1352e 516 *port = new_port;
81e5d41d
JG
517}
518
83d2b9ba
JR
519static int set_udp(struct sk_buff *skb, struct sw_flow_key *flow_key,
520 const struct ovs_key_udp *key,
521 const struct ovs_key_udp *mask)
ccb1352e
JG
522{
523 struct udphdr *uh;
83d2b9ba 524 __be16 src, dst;
ccb1352e
JG
525 int err;
526
e2195121
JP
527 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
528 sizeof(struct udphdr));
ccb1352e
JG
529 if (unlikely(err))
530 return err;
531
532 uh = udp_hdr(skb);
83d2b9ba 533 /* Either of the masks is non-zero, so do not bother checking them. */
be26b9a8
JS
534 src = OVS_MASKED(uh->source, key->udp_src, mask->udp_src);
535 dst = OVS_MASKED(uh->dest, key->udp_dst, mask->udp_dst);
ccb1352e 536
83d2b9ba
JR
537 if (uh->check && skb->ip_summed != CHECKSUM_PARTIAL) {
538 if (likely(src != uh->source)) {
539 set_tp_port(skb, &uh->source, src, &uh->check);
540 flow_key->tp.src = src;
541 }
542 if (likely(dst != uh->dest)) {
543 set_tp_port(skb, &uh->dest, dst, &uh->check);
544 flow_key->tp.dst = dst;
545 }
546
547 if (unlikely(!uh->check))
548 uh->check = CSUM_MANGLED_0;
549 } else {
550 uh->source = src;
551 uh->dest = dst;
552 flow_key->tp.src = src;
553 flow_key->tp.dst = dst;
fff06c36 554 }
ccb1352e 555
83d2b9ba
JR
556 skb_clear_hash(skb);
557
ccb1352e
JG
558 return 0;
559}
560
83d2b9ba
JR
561static int set_tcp(struct sk_buff *skb, struct sw_flow_key *flow_key,
562 const struct ovs_key_tcp *key,
563 const struct ovs_key_tcp *mask)
ccb1352e
JG
564{
565 struct tcphdr *th;
83d2b9ba 566 __be16 src, dst;
ccb1352e
JG
567 int err;
568
e2195121
JP
569 err = skb_ensure_writable(skb, skb_transport_offset(skb) +
570 sizeof(struct tcphdr));
ccb1352e
JG
571 if (unlikely(err))
572 return err;
573
574 th = tcp_hdr(skb);
be26b9a8 575 src = OVS_MASKED(th->source, key->tcp_src, mask->tcp_src);
83d2b9ba
JR
576 if (likely(src != th->source)) {
577 set_tp_port(skb, &th->source, src, &th->check);
578 flow_key->tp.src = src;
fff06c36 579 }
be26b9a8 580 dst = OVS_MASKED(th->dest, key->tcp_dst, mask->tcp_dst);
83d2b9ba
JR
581 if (likely(dst != th->dest)) {
582 set_tp_port(skb, &th->dest, dst, &th->check);
583 flow_key->tp.dst = dst;
fff06c36 584 }
83d2b9ba 585 skb_clear_hash(skb);
ccb1352e
JG
586
587 return 0;
588}
589
83d2b9ba
JR
590static int set_sctp(struct sk_buff *skb, struct sw_flow_key *flow_key,
591 const struct ovs_key_sctp *key,
592 const struct ovs_key_sctp *mask)
a175a723 593{
83d2b9ba 594 unsigned int sctphoff = skb_transport_offset(skb);
a175a723 595 struct sctphdr *sh;
83d2b9ba 596 __le32 old_correct_csum, new_csum, old_csum;
a175a723 597 int err;
a175a723 598
e2195121 599 err = skb_ensure_writable(skb, sctphoff + sizeof(struct sctphdr));
a175a723
JS
600 if (unlikely(err))
601 return err;
602
603 sh = sctp_hdr(skb);
83d2b9ba
JR
604 old_csum = sh->checksum;
605 old_correct_csum = sctp_compute_cksum(skb, sctphoff);
a175a723 606
be26b9a8
JS
607 sh->source = OVS_MASKED(sh->source, key->sctp_src, mask->sctp_src);
608 sh->dest = OVS_MASKED(sh->dest, key->sctp_dst, mask->sctp_dst);
a175a723 609
83d2b9ba 610 new_csum = sctp_compute_cksum(skb, sctphoff);
a175a723 611
83d2b9ba
JR
612 /* Carry any checksum errors through. */
613 sh->checksum = old_csum ^ old_correct_csum ^ new_csum;
a175a723 614
83d2b9ba
JR
615 skb_clear_hash(skb);
616 flow_key->tp.src = sh->source;
617 flow_key->tp.dst = sh->dest;
a175a723
JS
618
619 return 0;
620}
621
7f8a436e
JS
622static int ovs_vport_output(struct sock *sock, struct sk_buff *skb)
623{
624 struct ovs_frag_data *data = this_cpu_ptr(&ovs_frag_data_storage);
625 struct vport *vport = data->vport;
626
627 if (skb_cow_head(skb, data->l2_len) < 0) {
628 kfree_skb(skb);
629 return -ENOMEM;
630 }
631
632 __skb_dst_copy(skb, data->dst);
633 *OVS_CB(skb) = data->cb;
634 skb->inner_protocol = data->inner_protocol;
635 skb->vlan_tci = data->vlan_tci;
636 skb->vlan_proto = data->vlan_proto;
637
638 /* Reconstruct the MAC header. */
639 skb_push(skb, data->l2_len);
640 memcpy(skb->data, &data->l2_data, data->l2_len);
641 ovs_skb_postpush_rcsum(skb, skb->data, data->l2_len);
642 skb_reset_mac_header(skb);
643
644 ovs_vport_send(vport, skb);
645 return 0;
646}
647
648static unsigned int
649ovs_dst_get_mtu(const struct dst_entry *dst)
650{
651 return dst->dev->mtu;
652}
653
654static struct dst_ops ovs_dst_ops = {
655 .family = AF_UNSPEC,
656 .mtu = ovs_dst_get_mtu,
657};
658
659/* prepare_frag() is called once per (larger-than-MTU) frame; its inverse is
660 * ovs_vport_output(), which is called once per fragmented packet.
661 */
662static void prepare_frag(struct vport *vport, struct sk_buff *skb)
663{
664 unsigned int hlen = skb_network_offset(skb);
665 struct ovs_frag_data *data;
666
667 data = this_cpu_ptr(&ovs_frag_data_storage);
668 data->dst = skb->_skb_refdst;
669 data->vport = vport;
670 data->cb = *OVS_CB(skb);
671 data->inner_protocol = skb->inner_protocol;
672 data->vlan_tci = skb->vlan_tci;
673 data->vlan_proto = skb->vlan_proto;
674 data->l2_len = hlen;
675 memcpy(&data->l2_data, skb->data, hlen);
676
677 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
678 skb_pull(skb, hlen);
679}
680
681static void ovs_fragment(struct vport *vport, struct sk_buff *skb, u16 mru,
682 __be16 ethertype)
683{
684 if (skb_network_offset(skb) > MAX_L2_LEN) {
685 OVS_NLERR(1, "L2 header too long to fragment");
686 return;
687 }
688
689 if (ethertype == htons(ETH_P_IP)) {
690 struct dst_entry ovs_dst;
691 unsigned long orig_dst;
692
693 prepare_frag(vport, skb);
694 dst_init(&ovs_dst, &ovs_dst_ops, NULL, 1,
695 DST_OBSOLETE_NONE, DST_NOCOUNT);
696 ovs_dst.dev = vport->dev;
697
698 orig_dst = skb->_skb_refdst;
699 skb_dst_set_noref(skb, &ovs_dst);
700 IPCB(skb)->frag_max_size = mru;
701
702 ip_do_fragment(skb->sk, skb, ovs_vport_output);
703 refdst_drop(orig_dst);
704 } else if (ethertype == htons(ETH_P_IPV6)) {
705 const struct nf_ipv6_ops *v6ops = nf_get_ipv6_ops();
706 unsigned long orig_dst;
707 struct rt6_info ovs_rt;
708
709 if (!v6ops) {
710 kfree_skb(skb);
711 return;
712 }
713
714 prepare_frag(vport, skb);
715 memset(&ovs_rt, 0, sizeof(ovs_rt));
716 dst_init(&ovs_rt.dst, &ovs_dst_ops, NULL, 1,
717 DST_OBSOLETE_NONE, DST_NOCOUNT);
718 ovs_rt.dst.dev = vport->dev;
719
720 orig_dst = skb->_skb_refdst;
721 skb_dst_set_noref(skb, &ovs_rt.dst);
722 IP6CB(skb)->frag_max_size = mru;
723
724 v6ops->fragment(skb->sk, skb, ovs_vport_output);
725 refdst_drop(orig_dst);
726 } else {
727 WARN_ONCE(1, "Failed fragment ->%s: eth=%04x, MRU=%d, MTU=%d.",
728 ovs_vport_name(vport), ntohs(ethertype), mru,
729 vport->dev->mtu);
730 kfree_skb(skb);
731 }
732}
733
734static void do_output(struct datapath *dp, struct sk_buff *skb, int out_port,
735 struct sw_flow_key *key)
ccb1352e 736{
738967b8 737 struct vport *vport = ovs_vport_rcu(dp, out_port);
ccb1352e 738
7f8a436e
JS
739 if (likely(vport)) {
740 u16 mru = OVS_CB(skb)->mru;
741
742 if (likely(!mru || (skb->len <= mru + ETH_HLEN))) {
743 ovs_vport_send(vport, skb);
744 } else if (mru <= vport->dev->mtu) {
745 __be16 ethertype = key->eth.type;
746
747 if (!is_flow_key_valid(key)) {
748 if (eth_p_mpls(skb->protocol))
749 ethertype = skb->inner_protocol;
750 else
751 ethertype = vlan_get_protocol(skb);
752 }
753
754 ovs_fragment(vport, skb, mru, ethertype);
755 } else {
756 kfree_skb(skb);
757 }
758 } else {
ccb1352e 759 kfree_skb(skb);
7f8a436e 760 }
ccb1352e
JG
761}
762
763static int output_userspace(struct datapath *dp, struct sk_buff *skb,
ccea7445
NM
764 struct sw_flow_key *key, const struct nlattr *attr,
765 const struct nlattr *actions, int actions_len)
ccb1352e 766{
1d8fff90 767 struct ip_tunnel_info info;
ccb1352e
JG
768 struct dp_upcall_info upcall;
769 const struct nlattr *a;
770 int rem;
771
ccea7445 772 memset(&upcall, 0, sizeof(upcall));
ccb1352e 773 upcall.cmd = OVS_PACKET_CMD_ACTION;
7f8a436e 774 upcall.mru = OVS_CB(skb)->mru;
ccb1352e
JG
775
776 for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
777 a = nla_next(a, &rem)) {
778 switch (nla_type(a)) {
779 case OVS_USERSPACE_ATTR_USERDATA:
780 upcall.userdata = a;
781 break;
782
783 case OVS_USERSPACE_ATTR_PID:
15e47304 784 upcall.portid = nla_get_u32(a);
ccb1352e 785 break;
8f0aad6f
WZ
786
787 case OVS_USERSPACE_ATTR_EGRESS_TUN_PORT: {
788 /* Get out tunnel info. */
789 struct vport *vport;
790
791 vport = ovs_vport_rcu(dp, nla_get_u32(a));
792 if (vport) {
793 int err;
794
795 err = ovs_vport_get_egress_tun_info(vport, skb,
796 &info);
797 if (!err)
798 upcall.egress_tun_info = &info;
799 }
800 break;
ccb1352e 801 }
8f0aad6f 802
ccea7445
NM
803 case OVS_USERSPACE_ATTR_ACTIONS: {
804 /* Include actions. */
805 upcall.actions = actions;
806 upcall.actions_len = actions_len;
807 break;
808 }
809
8f0aad6f 810 } /* End of switch. */
ccb1352e
JG
811 }
812
e8eedb85 813 return ovs_dp_upcall(dp, skb, key, &upcall);
ccb1352e
JG
814}
815
816static int sample(struct datapath *dp, struct sk_buff *skb,
ccea7445
NM
817 struct sw_flow_key *key, const struct nlattr *attr,
818 const struct nlattr *actions, int actions_len)
ccb1352e
JG
819{
820 const struct nlattr *acts_list = NULL;
821 const struct nlattr *a;
822 int rem;
823
824 for (a = nla_data(attr), rem = nla_len(attr); rem > 0;
825 a = nla_next(a, &rem)) {
e05176a3
WZ
826 u32 probability;
827
ccb1352e
JG
828 switch (nla_type(a)) {
829 case OVS_SAMPLE_ATTR_PROBABILITY:
e05176a3
WZ
830 probability = nla_get_u32(a);
831 if (!probability || prandom_u32() > probability)
ccb1352e
JG
832 return 0;
833 break;
834
835 case OVS_SAMPLE_ATTR_ACTIONS:
836 acts_list = a;
837 break;
838 }
839 }
840
651887b0
SH
841 rem = nla_len(acts_list);
842 a = nla_data(acts_list);
843
32ae87ff
AZ
844 /* Actions list is empty, do nothing */
845 if (unlikely(!rem))
846 return 0;
651887b0 847
32ae87ff
AZ
848 /* The only known usage of sample action is having a single user-space
849 * action. Treat this usage as a special case.
850 * The output_userspace() should clone the skb to be sent to the
851 * user space. This skb will be consumed by its caller.
651887b0 852 */
32ae87ff 853 if (likely(nla_type(a) == OVS_ACTION_ATTR_USERSPACE &&
941d8ebc 854 nla_is_last(a, rem)))
ccea7445 855 return output_userspace(dp, skb, key, a, actions, actions_len);
32ae87ff
AZ
856
857 skb = skb_clone(skb, GFP_ATOMIC);
858 if (!skb)
859 /* Skip the sample action when out of memory. */
860 return 0;
861
971427f3
AZ
862 if (!add_deferred_actions(skb, key, a)) {
863 if (net_ratelimit())
864 pr_warn("%s: deferred actions limit reached, dropping sample action\n",
865 ovs_dp_name(dp));
866
867 kfree_skb(skb);
868 }
869 return 0;
870}
871
872static void execute_hash(struct sk_buff *skb, struct sw_flow_key *key,
873 const struct nlattr *attr)
874{
875 struct ovs_action_hash *hash_act = nla_data(attr);
876 u32 hash = 0;
877
878 /* OVS_HASH_ALG_L4 is the only possible hash algorithm. */
879 hash = skb_get_hash(skb);
880 hash = jhash_1word(hash, hash_act->hash_basis);
881 if (!hash)
882 hash = 0x1;
883
884 key->ovs_flow_hash = hash;
ccb1352e
JG
885}
886
83d2b9ba
JR
887static int execute_set_action(struct sk_buff *skb,
888 struct sw_flow_key *flow_key,
889 const struct nlattr *a)
890{
891 /* Only tunnel set execution is supported without a mask. */
892 if (nla_type(a) == OVS_KEY_ATTR_TUNNEL_INFO) {
34ae932a
TG
893 struct ovs_tunnel_info *tun = nla_data(a);
894
895 skb_dst_drop(skb);
896 dst_hold((struct dst_entry *)tun->tun_dst);
897 skb_dst_set(skb, (struct dst_entry *)tun->tun_dst);
898
899 /* FIXME: Remove when all vports have been converted */
900 OVS_CB(skb)->egress_tun_info = &tun->tun_dst->u.tun_info;
901
83d2b9ba
JR
902 return 0;
903 }
904
905 return -EINVAL;
906}
907
908/* Mask is at the midpoint of the data. */
909#define get_mask(a, type) ((const type)nla_data(a) + 1)
910
911static int execute_masked_set_action(struct sk_buff *skb,
912 struct sw_flow_key *flow_key,
913 const struct nlattr *a)
ccb1352e
JG
914{
915 int err = 0;
916
83d2b9ba 917 switch (nla_type(a)) {
ccb1352e 918 case OVS_KEY_ATTR_PRIORITY:
be26b9a8
JS
919 OVS_SET_MASKED(skb->priority, nla_get_u32(a),
920 *get_mask(a, u32 *));
83d2b9ba 921 flow_key->phy.priority = skb->priority;
ccb1352e
JG
922 break;
923
39c7caeb 924 case OVS_KEY_ATTR_SKB_MARK:
be26b9a8 925 OVS_SET_MASKED(skb->mark, nla_get_u32(a), *get_mask(a, u32 *));
83d2b9ba 926 flow_key->phy.skb_mark = skb->mark;
39c7caeb
AA
927 break;
928
f0b128c1 929 case OVS_KEY_ATTR_TUNNEL_INFO:
83d2b9ba
JR
930 /* Masked data not supported for tunnel. */
931 err = -EINVAL;
7d5437c7
PS
932 break;
933
ccb1352e 934 case OVS_KEY_ATTR_ETHERNET:
83d2b9ba
JR
935 err = set_eth_addr(skb, flow_key, nla_data(a),
936 get_mask(a, struct ovs_key_ethernet *));
ccb1352e
JG
937 break;
938
939 case OVS_KEY_ATTR_IPV4:
83d2b9ba
JR
940 err = set_ipv4(skb, flow_key, nla_data(a),
941 get_mask(a, struct ovs_key_ipv4 *));
ccb1352e
JG
942 break;
943
3fdbd1ce 944 case OVS_KEY_ATTR_IPV6:
83d2b9ba
JR
945 err = set_ipv6(skb, flow_key, nla_data(a),
946 get_mask(a, struct ovs_key_ipv6 *));
3fdbd1ce
AA
947 break;
948
ccb1352e 949 case OVS_KEY_ATTR_TCP:
83d2b9ba
JR
950 err = set_tcp(skb, flow_key, nla_data(a),
951 get_mask(a, struct ovs_key_tcp *));
ccb1352e
JG
952 break;
953
954 case OVS_KEY_ATTR_UDP:
83d2b9ba
JR
955 err = set_udp(skb, flow_key, nla_data(a),
956 get_mask(a, struct ovs_key_udp *));
ccb1352e 957 break;
a175a723
JS
958
959 case OVS_KEY_ATTR_SCTP:
83d2b9ba
JR
960 err = set_sctp(skb, flow_key, nla_data(a),
961 get_mask(a, struct ovs_key_sctp *));
a175a723 962 break;
25cd9ba0
SH
963
964 case OVS_KEY_ATTR_MPLS:
83d2b9ba
JR
965 err = set_mpls(skb, flow_key, nla_data(a), get_mask(a,
966 __be32 *));
25cd9ba0 967 break;
7f8a436e
JS
968
969 case OVS_KEY_ATTR_CT_STATE:
970 case OVS_KEY_ATTR_CT_ZONE:
971 err = -EINVAL;
972 break;
ccb1352e
JG
973 }
974
975 return err;
976}
977
971427f3
AZ
978static int execute_recirc(struct datapath *dp, struct sk_buff *skb,
979 struct sw_flow_key *key,
980 const struct nlattr *a, int rem)
981{
982 struct deferred_action *da;
971427f3 983
fff06c36
PS
984 if (!is_flow_key_valid(key)) {
985 int err;
986
987 err = ovs_flow_key_update(skb, key);
988 if (err)
989 return err;
990 }
991 BUG_ON(!is_flow_key_valid(key));
971427f3 992
941d8ebc 993 if (!nla_is_last(a, rem)) {
971427f3
AZ
994 /* Recirc action is the not the last action
995 * of the action list, need to clone the skb.
996 */
997 skb = skb_clone(skb, GFP_ATOMIC);
998
999 /* Skip the recirc action when out of memory, but
1000 * continue on with the rest of the action list.
1001 */
1002 if (!skb)
1003 return 0;
1004 }
1005
1006 da = add_deferred_actions(skb, key, NULL);
1007 if (da) {
1008 da->pkt_key.recirc_id = nla_get_u32(a);
1009 } else {
1010 kfree_skb(skb);
1011
1012 if (net_ratelimit())
1013 pr_warn("%s: deferred action limit reached, drop recirc action\n",
1014 ovs_dp_name(dp));
1015 }
1016
1017 return 0;
1018}
1019
ccb1352e
JG
1020/* Execute a list of actions against 'skb'. */
1021static int do_execute_actions(struct datapath *dp, struct sk_buff *skb,
2ff3e4e4 1022 struct sw_flow_key *key,
651887b0 1023 const struct nlattr *attr, int len)
ccb1352e
JG
1024{
1025 /* Every output action needs a separate clone of 'skb', but the common
1026 * case is just a single output action, so that doing a clone and
1027 * then freeing the original skbuff is wasteful. So the following code
fff06c36
PS
1028 * is slightly obscure just to avoid that.
1029 */
ccb1352e
JG
1030 int prev_port = -1;
1031 const struct nlattr *a;
1032 int rem;
1033
1034 for (a = attr, rem = len; rem > 0;
1035 a = nla_next(a, &rem)) {
1036 int err = 0;
1037
738967b8
AZ
1038 if (unlikely(prev_port != -1)) {
1039 struct sk_buff *out_skb = skb_clone(skb, GFP_ATOMIC);
1040
1041 if (out_skb)
7f8a436e 1042 do_output(dp, out_skb, prev_port, key);
738967b8 1043
ccb1352e
JG
1044 prev_port = -1;
1045 }
1046
1047 switch (nla_type(a)) {
1048 case OVS_ACTION_ATTR_OUTPUT:
1049 prev_port = nla_get_u32(a);
1050 break;
1051
1052 case OVS_ACTION_ATTR_USERSPACE:
ccea7445 1053 output_userspace(dp, skb, key, a, attr, len);
ccb1352e
JG
1054 break;
1055
971427f3
AZ
1056 case OVS_ACTION_ATTR_HASH:
1057 execute_hash(skb, key, a);
1058 break;
1059
25cd9ba0 1060 case OVS_ACTION_ATTR_PUSH_MPLS:
fff06c36 1061 err = push_mpls(skb, key, nla_data(a));
25cd9ba0
SH
1062 break;
1063
1064 case OVS_ACTION_ATTR_POP_MPLS:
fff06c36 1065 err = pop_mpls(skb, key, nla_get_be16(a));
25cd9ba0
SH
1066 break;
1067
ccb1352e 1068 case OVS_ACTION_ATTR_PUSH_VLAN:
fff06c36 1069 err = push_vlan(skb, key, nla_data(a));
ccb1352e
JG
1070 break;
1071
1072 case OVS_ACTION_ATTR_POP_VLAN:
fff06c36 1073 err = pop_vlan(skb, key);
ccb1352e
JG
1074 break;
1075
971427f3
AZ
1076 case OVS_ACTION_ATTR_RECIRC:
1077 err = execute_recirc(dp, skb, key, a, rem);
941d8ebc 1078 if (nla_is_last(a, rem)) {
971427f3
AZ
1079 /* If this is the last action, the skb has
1080 * been consumed or freed.
1081 * Return immediately.
1082 */
1083 return err;
1084 }
1085 break;
1086
ccb1352e 1087 case OVS_ACTION_ATTR_SET:
fff06c36 1088 err = execute_set_action(skb, key, nla_data(a));
ccb1352e
JG
1089 break;
1090
83d2b9ba
JR
1091 case OVS_ACTION_ATTR_SET_MASKED:
1092 case OVS_ACTION_ATTR_SET_TO_MASKED:
1093 err = execute_masked_set_action(skb, key, nla_data(a));
1094 break;
1095
ccb1352e 1096 case OVS_ACTION_ATTR_SAMPLE:
ccea7445 1097 err = sample(dp, skb, key, a, attr, len);
ccb1352e 1098 break;
7f8a436e
JS
1099
1100 case OVS_ACTION_ATTR_CT:
1101 err = ovs_ct_execute(ovs_dp_get_net(dp), skb, key,
1102 nla_data(a));
1103
1104 /* Hide stolen IP fragments from user space. */
1105 if (err == -EINPROGRESS)
1106 return 0;
1107 break;
ccb1352e
JG
1108 }
1109
1110 if (unlikely(err)) {
1111 kfree_skb(skb);
1112 return err;
1113 }
1114 }
1115
651887b0 1116 if (prev_port != -1)
7f8a436e 1117 do_output(dp, skb, prev_port, key);
651887b0 1118 else
ccb1352e
JG
1119 consume_skb(skb);
1120
1121 return 0;
1122}
1123
971427f3
AZ
1124static void process_deferred_actions(struct datapath *dp)
1125{
1126 struct action_fifo *fifo = this_cpu_ptr(action_fifos);
1127
1128 /* Do not touch the FIFO in case there is no deferred actions. */
1129 if (action_fifo_is_empty(fifo))
1130 return;
1131
1132 /* Finishing executing all deferred actions. */
1133 do {
1134 struct deferred_action *da = action_fifo_get(fifo);
1135 struct sk_buff *skb = da->skb;
1136 struct sw_flow_key *key = &da->pkt_key;
1137 const struct nlattr *actions = da->actions;
1138
1139 if (actions)
1140 do_execute_actions(dp, skb, key, actions,
1141 nla_len(actions));
1142 else
1143 ovs_dp_process_packet(skb, key);
1144 } while (!action_fifo_is_empty(fifo));
1145
1146 /* Reset FIFO for the next packet. */
1147 action_fifo_init(fifo);
1148}
1149
ccb1352e 1150/* Execute a list of actions against 'skb'. */
2ff3e4e4 1151int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb,
12eb18f7
TG
1152 const struct sw_flow_actions *acts,
1153 struct sw_flow_key *key)
ccb1352e 1154{
971427f3 1155 int level = this_cpu_read(exec_actions_level);
971427f3
AZ
1156 int err;
1157
971427f3 1158 this_cpu_inc(exec_actions_level);
f0b128c1 1159 OVS_CB(skb)->egress_tun_info = NULL;
971427f3
AZ
1160 err = do_execute_actions(dp, skb, key,
1161 acts->actions, acts->actions_len);
1162
1163 if (!level)
1164 process_deferred_actions(dp);
1165
1166 this_cpu_dec(exec_actions_level);
1167 return err;
1168}
1169
1170int action_fifos_init(void)
1171{
1172 action_fifos = alloc_percpu(struct action_fifo);
1173 if (!action_fifos)
1174 return -ENOMEM;
ccb1352e 1175
971427f3
AZ
1176 return 0;
1177}
1178
1179void action_fifos_exit(void)
1180{
1181 free_percpu(action_fifos);
ccb1352e 1182}