GNU Linux-libre 4.19.295-gnu1
[releases.git] / net / netfilter / nf_flow_table_inet.c
1 #include <linux/kernel.h>
2 #include <linux/init.h>
3 #include <linux/module.h>
4 #include <linux/netfilter.h>
5 #include <linux/rhashtable.h>
6 #include <net/netfilter/nf_flow_table.h>
7 #include <net/netfilter/nf_tables.h>
8
9 static unsigned int
10 nf_flow_offload_inet_hook(void *priv, struct sk_buff *skb,
11                           const struct nf_hook_state *state)
12 {
13         switch (skb->protocol) {
14         case htons(ETH_P_IP):
15                 return nf_flow_offload_ip_hook(priv, skb, state);
16         case htons(ETH_P_IPV6):
17                 return nf_flow_offload_ipv6_hook(priv, skb, state);
18         }
19
20         return NF_ACCEPT;
21 }
22
23 static struct nf_flowtable_type flowtable_inet = {
24         .family         = NFPROTO_INET,
25         .init           = nf_flow_table_init,
26         .free           = nf_flow_table_free,
27         .hook           = nf_flow_offload_inet_hook,
28         .owner          = THIS_MODULE,
29 };
30
31 static int __init nf_flow_inet_module_init(void)
32 {
33         nft_register_flowtable_type(&flowtable_inet);
34
35         return 0;
36 }
37
38 static void __exit nf_flow_inet_module_exit(void)
39 {
40         nft_unregister_flowtable_type(&flowtable_inet);
41 }
42
43 module_init(nf_flow_inet_module_init);
44 module_exit(nf_flow_inet_module_exit);
45
46 MODULE_LICENSE("GPL");
47 MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
48 MODULE_ALIAS_NF_FLOWTABLE(1); /* NFPROTO_INET */