2 * IPv6 raw table, a port of the IPv4 raw table to IPv6
6 #include <linux/module.h>
7 #include <linux/netfilter_ipv6/ip6_tables.h>
8 #include <linux/slab.h>
10 #define RAW_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_OUT))
12 static const struct xt_table packet_raw = {
14 .valid_hooks = RAW_VALID_HOOKS,
17 .priority = NF_IP6_PRI_RAW,
20 /* The work comes in here from netfilter.c. */
22 ip6table_raw_hook(unsigned int hook, struct sk_buff *skb,
23 const struct net_device *in, const struct net_device *out,
24 int (*okfn)(struct sk_buff *))
26 const struct net *net = dev_net((in != NULL) ? in : out);
28 return ip6t_do_table(skb, hook, in, out, net->ipv6.ip6table_raw);
31 static struct nf_hook_ops *rawtable_ops __read_mostly;
33 static int __net_init ip6table_raw_net_init(struct net *net)
35 struct ip6t_replace *repl;
37 repl = ip6t_alloc_initial_table(&packet_raw);
40 net->ipv6.ip6table_raw =
41 ip6t_register_table(net, &packet_raw, repl);
43 return PTR_RET(net->ipv6.ip6table_raw);
46 static void __net_exit ip6table_raw_net_exit(struct net *net)
48 ip6t_unregister_table(net, net->ipv6.ip6table_raw);
51 static struct pernet_operations ip6table_raw_net_ops = {
52 .init = ip6table_raw_net_init,
53 .exit = ip6table_raw_net_exit,
56 static int __init ip6table_raw_init(void)
60 ret = register_pernet_subsys(&ip6table_raw_net_ops);
65 rawtable_ops = xt_hook_link(&packet_raw, ip6table_raw_hook);
66 if (IS_ERR(rawtable_ops)) {
67 ret = PTR_ERR(rawtable_ops);
74 unregister_pernet_subsys(&ip6table_raw_net_ops);
78 static void __exit ip6table_raw_fini(void)
80 xt_hook_unlink(&packet_raw, rawtable_ops);
81 unregister_pernet_subsys(&ip6table_raw_net_ops);
84 module_init(ip6table_raw_init);
85 module_exit(ip6table_raw_fini);
86 MODULE_LICENSE("GPL");