]> git.proxmox.com Git - mirror_ovs.git/blame - datapath/conntrack.h
cirrus: Use FreeBSD 12.2.
[mirror_ovs.git] / datapath / conntrack.h
CommitLineData
a94ebc39
JS
1/*
2 * Copyright (c) 2015 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
14#ifndef OVS_CONNTRACK_H
15#define OVS_CONNTRACK_H 1
16
17#include <linux/version.h>
18#include "flow.h"
19
20struct ovs_conntrack_info;
cb2a5486 21struct ovs_ct_limit_info;
a94ebc39
JS
22enum ovs_key_attr;
23
8063e095 24#if IS_ENABLED(CONFIG_NF_CONNTRACK)
cb2a5486 25int ovs_ct_init(struct net *);
038e34ab
JS
26void ovs_ct_exit(struct net *);
27bool ovs_ct_verify(struct net *, enum ovs_key_attr attr);
a94ebc39
JS
28int ovs_ct_copy_action(struct net *, const struct nlattr *,
29 const struct sw_flow_key *, struct sw_flow_actions **,
30 bool log);
31int ovs_ct_action_to_attr(const struct ovs_conntrack_info *, struct sk_buff *);
32
33int ovs_ct_execute(struct net *, struct sk_buff *, struct sw_flow_key *,
34 const struct ovs_conntrack_info *);
0cdfdddd 35int ovs_ct_clear(struct sk_buff *skb, struct sw_flow_key *key);
a94ebc39
JS
36
37void ovs_ct_fill_key(const struct sk_buff *skb, struct sw_flow_key *key);
c30b4cea
JR
38int ovs_ct_put_key(const struct sw_flow_key *swkey,
39 const struct sw_flow_key *output, struct sk_buff *skb);
a94ebc39 40void ovs_ct_free_action(const struct nlattr *a);
c05e2094
JS
41
42#define CT_SUPPORTED_MASK (OVS_CS_F_NEW | OVS_CS_F_ESTABLISHED | \
43 OVS_CS_F_RELATED | OVS_CS_F_REPLY_DIR | \
f8f97cdc
JR
44 OVS_CS_F_INVALID | OVS_CS_F_TRACKED | \
45 OVS_CS_F_SRC_NAT | OVS_CS_F_DST_NAT)
a94ebc39
JS
46#else
47#include <linux/errno.h>
48
cb2a5486 49static inline int ovs_ct_init(struct net *net) { return 0; }
038e34ab
JS
50
51static inline void ovs_ct_exit(struct net *net) { }
52
53static inline bool ovs_ct_verify(struct net *net, int attr)
a94ebc39
JS
54{
55 return false;
56}
57
58static inline int ovs_ct_copy_action(struct net *net, const struct nlattr *nla,
59 const struct sw_flow_key *key,
60 struct sw_flow_actions **acts, bool log)
61{
62 return -ENOTSUPP;
63}
64
65static inline int ovs_ct_action_to_attr(const struct ovs_conntrack_info *info,
66 struct sk_buff *skb)
67{
68 return -ENOTSUPP;
69}
70
71static inline int ovs_ct_execute(struct net *net, struct sk_buff *skb,
72 struct sw_flow_key *key,
73 const struct ovs_conntrack_info *info)
74{
c05e2094 75 kfree_skb(skb);
a94ebc39
JS
76 return -ENOTSUPP;
77}
78
0cdfdddd
EG
79static inline int ovs_ct_clear(struct sk_buff *skb,
80 struct sw_flow_key *key)
81{
82 return -ENOTSUPP;
83}
84
a94ebc39
JS
85static inline void ovs_ct_fill_key(const struct sk_buff *skb,
86 struct sw_flow_key *key)
87{
1963a885
JR
88 key->ct_state = 0;
89 key->ct_zone = 0;
372ce973 90 key->ct.mark = 0;
c05e2094 91 memset(&key->ct.labels, 0, sizeof(key->ct.labels));
1963a885 92 /* Clear 'ct_orig_proto' to mark the non-existence of original
c30b4cea
JR
93 * direction key fields.
94 */
1963a885 95 key->ct_orig_proto = 0;
a94ebc39
JS
96}
97
c30b4cea
JR
98static inline int ovs_ct_put_key(const struct sw_flow_key *swkey,
99 const struct sw_flow_key *output,
a94ebc39
JS
100 struct sk_buff *skb)
101{
102 return 0;
103}
104
105static inline void ovs_ct_free_action(const struct nlattr *a) { }
c05e2094
JS
106
107#define CT_SUPPORTED_MASK 0
a94ebc39 108#endif
cb2a5486
YHW
109
110#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
111extern struct genl_family dp_ct_limit_genl_family;
112#endif
a94ebc39 113#endif /* ovs_conntrack.h */