2 * IPv6 packet mangling table, a port of the IPv4 mangle table to IPv6
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/module.h>
12 #include <linux/netfilter_ipv6/ip6_tables.h>
13 #include <linux/slab.h>
16 MODULE_LICENSE("GPL");
18 MODULE_DESCRIPTION("ip6tables mangle table");
20 #define MANGLE_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | \
21 (1 << NF_INET_LOCAL_IN) | \
22 (1 << NF_INET_FORWARD) | \
23 (1 << NF_INET_LOCAL_OUT) | \
24 (1 << NF_INET_POST_ROUTING))
26 static int __net_init ip6table_mangle_table_init(struct net *net);
28 static const struct xt_table packet_mangler = {
30 .valid_hooks = MANGLE_VALID_HOOKS,
33 .priority = NF_IP6_PRI_MANGLE,
34 .table_init = ip6table_mangle_table_init,
38 ip6t_mangle_out(struct sk_buff *skb, const struct nf_hook_state *state)
41 struct in6_addr saddr, daddr;
43 u_int32_t flowlabel, mark;
46 /* root is playing with raw sockets. */
47 if (skb->len < sizeof(struct iphdr) ||
48 ip_hdrlen(skb) < sizeof(struct iphdr)) {
49 net_warn_ratelimited("ip6t_hook: happy cracking\n");
54 /* save source/dest address, mark, hoplimit, flowlabel, priority, */
55 memcpy(&saddr, &ipv6_hdr(skb)->saddr, sizeof(saddr));
56 memcpy(&daddr, &ipv6_hdr(skb)->daddr, sizeof(daddr));
58 hop_limit = ipv6_hdr(skb)->hop_limit;
60 /* flowlabel and prio (includes version, which shouldn't change either */
61 flowlabel = *((u_int32_t *)ipv6_hdr(skb));
63 ret = ip6t_do_table(skb, state, state->net->ipv6.ip6table_mangle);
65 if (ret != NF_DROP && ret != NF_STOLEN &&
66 (!ipv6_addr_equal(&ipv6_hdr(skb)->saddr, &saddr) ||
67 !ipv6_addr_equal(&ipv6_hdr(skb)->daddr, &daddr) ||
69 ipv6_hdr(skb)->hop_limit != hop_limit ||
70 flowlabel != *((u_int32_t *)ipv6_hdr(skb)))) {
71 err = ip6_route_me_harder(state->net, skb);
73 ret = NF_DROP_ERR(err);
79 /* The work comes in here from netfilter.c. */
81 ip6table_mangle_hook(void *priv, struct sk_buff *skb,
82 const struct nf_hook_state *state)
84 if (state->hook == NF_INET_LOCAL_OUT)
85 return ip6t_mangle_out(skb, state);
86 return ip6t_do_table(skb, state, state->net->ipv6.ip6table_mangle);
89 static struct nf_hook_ops *mangle_ops __read_mostly;
90 static int __net_init ip6table_mangle_table_init(struct net *net)
92 struct ip6t_replace *repl;
95 if (net->ipv6.ip6table_mangle)
98 repl = ip6t_alloc_initial_table(&packet_mangler);
101 ret = ip6t_register_table(net, &packet_mangler, repl, mangle_ops,
102 &net->ipv6.ip6table_mangle);
107 static void __net_exit ip6table_mangle_net_exit(struct net *net)
109 if (!net->ipv6.ip6table_mangle)
112 ip6t_unregister_table(net, net->ipv6.ip6table_mangle, mangle_ops);
113 net->ipv6.ip6table_mangle = NULL;
116 static struct pernet_operations ip6table_mangle_net_ops = {
117 .exit = ip6table_mangle_net_exit,
120 static int __init ip6table_mangle_init(void)
124 mangle_ops = xt_hook_ops_alloc(&packet_mangler, ip6table_mangle_hook);
125 if (IS_ERR(mangle_ops))
126 return PTR_ERR(mangle_ops);
128 ret = register_pernet_subsys(&ip6table_mangle_net_ops);
134 ret = ip6table_mangle_table_init(&init_net);
136 unregister_pernet_subsys(&ip6table_mangle_net_ops);
142 static void __exit ip6table_mangle_fini(void)
144 unregister_pernet_subsys(&ip6table_mangle_net_ops);
148 module_init(ip6table_mangle_init);
149 module_exit(ip6table_mangle_fini);