hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// SPDX-License-Identifier: GPL-2.0-only
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/netfilter.h>
#include <linux/rhashtable.h>
#include <net/netfilter/nf_flow_table.h>
#include <net/netfilter/nf_tables.h>
 
static unsigned int
nf_flow_offload_inet_hook(void *priv, struct sk_buff *skb,
             const struct nf_hook_state *state)
{
   switch (skb->protocol) {
   case htons(ETH_P_IP):
       return nf_flow_offload_ip_hook(priv, skb, state);
   case htons(ETH_P_IPV6):
       return nf_flow_offload_ipv6_hook(priv, skb, state);
   }
 
   return NF_ACCEPT;
}
 
static int nf_flow_rule_route_inet(struct net *net,
                  const struct flow_offload *flow,
                  enum flow_offload_tuple_dir dir,
                  struct nf_flow_rule *flow_rule)
{
   const struct flow_offload_tuple *flow_tuple = &flow->tuplehash[dir].tuple;
   int err;
 
   switch (flow_tuple->l3proto) {
   case NFPROTO_IPV4:
       err = nf_flow_rule_route_ipv4(net, flow, dir, flow_rule);
       break;
   case NFPROTO_IPV6:
       err = nf_flow_rule_route_ipv6(net, flow, dir, flow_rule);
       break;
   default:
       err = -1;
       break;
   }
 
   return err;
}
 
static struct nf_flowtable_type flowtable_inet = {
   .family        = NFPROTO_INET,
   .init        = nf_flow_table_init,
   .setup        = nf_flow_table_offload_setup,
   .action        = nf_flow_rule_route_inet,
   .free        = nf_flow_table_free,
   .hook        = nf_flow_offload_inet_hook,
   .owner        = THIS_MODULE,
};
 
static int __init nf_flow_inet_module_init(void)
{
   nft_register_flowtable_type(&flowtable_inet);
 
   return 0;
}
 
static void __exit nf_flow_inet_module_exit(void)
{
   nft_unregister_flowtable_type(&flowtable_inet);
}
 
module_init(nf_flow_inet_module_init);
module_exit(nf_flow_inet_module_exit);
 
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
MODULE_ALIAS_NF_FLOWTABLE(1); /* NFPROTO_INET */
MODULE_DESCRIPTION("Netfilter flow table mixed IPv4/IPv6 module");