]> asedeno.scripts.mit.edu Git - linux.git/blob - include/net/netfilter/nf_flow_table.h
netfilter: nf_flow_table: remove union from flow_offload structure
[linux.git] / include / net / netfilter / nf_flow_table.h
1 #ifndef _NF_FLOW_TABLE_H
2 #define _NF_FLOW_TABLE_H
3
4 #include <linux/in.h>
5 #include <linux/in6.h>
6 #include <linux/netdevice.h>
7 #include <linux/rhashtable-types.h>
8 #include <linux/rcupdate.h>
9 #include <linux/netfilter.h>
10 #include <linux/netfilter/nf_conntrack_tuple_common.h>
11 #include <net/dst.h>
12
13 struct nf_flowtable;
14
15 struct nf_flowtable_type {
16         struct list_head                list;
17         int                             family;
18         int                             (*init)(struct nf_flowtable *ft);
19         void                            (*free)(struct nf_flowtable *ft);
20         nf_hookfn                       *hook;
21         struct module                   *owner;
22 };
23
24 struct nf_flowtable {
25         struct list_head                list;
26         struct rhashtable               rhashtable;
27         int                             priority;
28         const struct nf_flowtable_type  *type;
29         struct delayed_work             gc_work;
30 };
31
32 enum flow_offload_tuple_dir {
33         FLOW_OFFLOAD_DIR_ORIGINAL = IP_CT_DIR_ORIGINAL,
34         FLOW_OFFLOAD_DIR_REPLY = IP_CT_DIR_REPLY,
35         FLOW_OFFLOAD_DIR_MAX = IP_CT_DIR_MAX
36 };
37
38 struct flow_offload_tuple {
39         union {
40                 struct in_addr          src_v4;
41                 struct in6_addr         src_v6;
42         };
43         union {
44                 struct in_addr          dst_v4;
45                 struct in6_addr         dst_v6;
46         };
47         struct {
48                 __be16                  src_port;
49                 __be16                  dst_port;
50         };
51
52         int                             iifidx;
53
54         u8                              l3proto;
55         u8                              l4proto;
56         u8                              dir;
57
58         u16                             mtu;
59
60         struct dst_entry                *dst_cache;
61 };
62
63 struct flow_offload_tuple_rhash {
64         struct rhash_head               node;
65         struct flow_offload_tuple       tuple;
66 };
67
68 #define FLOW_OFFLOAD_SNAT       0x1
69 #define FLOW_OFFLOAD_DNAT       0x2
70 #define FLOW_OFFLOAD_DYING      0x4
71 #define FLOW_OFFLOAD_TEARDOWN   0x8
72
73 struct flow_offload {
74         struct flow_offload_tuple_rhash         tuplehash[FLOW_OFFLOAD_DIR_MAX];
75         struct nf_conn                          *ct;
76         u32                                     flags;
77         u32                                     timeout;
78 };
79
80 #define NF_FLOW_TIMEOUT (30 * HZ)
81
82 struct nf_flow_route {
83         struct {
84                 struct dst_entry        *dst;
85         } tuple[FLOW_OFFLOAD_DIR_MAX];
86 };
87
88 struct flow_offload *flow_offload_alloc(struct nf_conn *ct,
89                                         struct nf_flow_route *route);
90 void flow_offload_free(struct flow_offload *flow);
91
92 int flow_offload_add(struct nf_flowtable *flow_table, struct flow_offload *flow);
93 struct flow_offload_tuple_rhash *flow_offload_lookup(struct nf_flowtable *flow_table,
94                                                      struct flow_offload_tuple *tuple);
95 void nf_flow_table_cleanup(struct net_device *dev);
96
97 int nf_flow_table_init(struct nf_flowtable *flow_table);
98 void nf_flow_table_free(struct nf_flowtable *flow_table);
99
100 void flow_offload_teardown(struct flow_offload *flow);
101 static inline void flow_offload_dead(struct flow_offload *flow)
102 {
103         flow->flags |= FLOW_OFFLOAD_DYING;
104 }
105
106 int nf_flow_snat_port(const struct flow_offload *flow,
107                       struct sk_buff *skb, unsigned int thoff,
108                       u8 protocol, enum flow_offload_tuple_dir dir);
109 int nf_flow_dnat_port(const struct flow_offload *flow,
110                       struct sk_buff *skb, unsigned int thoff,
111                       u8 protocol, enum flow_offload_tuple_dir dir);
112
113 struct flow_ports {
114         __be16 source, dest;
115 };
116
117 unsigned int nf_flow_offload_ip_hook(void *priv, struct sk_buff *skb,
118                                      const struct nf_hook_state *state);
119 unsigned int nf_flow_offload_ipv6_hook(void *priv, struct sk_buff *skb,
120                                        const struct nf_hook_state *state);
121
122 #define MODULE_ALIAS_NF_FLOWTABLE(family)       \
123         MODULE_ALIAS("nf-flowtable-" __stringify(family))
124
125 #endif /* _NF_FLOW_TABLE_H */