1 // SPDX-License-Identifier: GPL-2.0-only
3 * This is the 1999 rewrite of IP Firewalling, aiming for kernel 2.3.x.
5 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
8 #include <linux/module.h>
9 #include <linux/netfilter_ipv4/ip_tables.h>
10 #include <linux/netdevice.h>
11 #include <linux/skbuff.h>
12 #include <linux/slab.h>
14 #include <net/route.h>
18 MODULE_LICENSE("GPL");
20 MODULE_DESCRIPTION("iptables mangle table");
22 #define MANGLE_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | \
23 (1 << NF_INET_LOCAL_IN) | \
24 (1 << NF_INET_FORWARD) | \
25 (1 << NF_INET_LOCAL_OUT) | \
26 (1 << NF_INET_POST_ROUTING))
28 static const struct xt_table packet_mangler = {
30 .valid_hooks = MANGLE_VALID_HOOKS,
33 .priority = NF_IP_PRI_MANGLE,
37 ipt_mangle_out(void *priv, struct sk_buff *skb, const struct nf_hook_state *state)
40 const struct iphdr *iph;
46 /* Save things which could affect route */
53 ret = ipt_do_table(priv, skb, state);
54 /* Reroute for ANY change. */
55 if (ret != NF_DROP && ret != NF_STOLEN) {
58 if (iph->saddr != saddr ||
59 iph->daddr != daddr ||
62 err = ip_route_me_harder(state->net, state->sk, skb, RTN_UNSPEC);
64 ret = NF_DROP_ERR(err);
71 /* The work comes in here from netfilter.c. */
73 iptable_mangle_hook(void *priv,
75 const struct nf_hook_state *state)
77 if (state->hook == NF_INET_LOCAL_OUT)
78 return ipt_mangle_out(priv, skb, state);
79 return ipt_do_table(priv, skb, state);
82 static struct nf_hook_ops *mangle_ops __read_mostly;
83 static int iptable_mangle_table_init(struct net *net)
85 struct ipt_replace *repl;
88 repl = ipt_alloc_initial_table(&packet_mangler);
91 ret = ipt_register_table(net, &packet_mangler, repl, mangle_ops);
96 static void __net_exit iptable_mangle_net_pre_exit(struct net *net)
98 ipt_unregister_table_pre_exit(net, "mangle");
101 static void __net_exit iptable_mangle_net_exit(struct net *net)
103 ipt_unregister_table_exit(net, "mangle");
106 static struct pernet_operations iptable_mangle_net_ops = {
107 .pre_exit = iptable_mangle_net_pre_exit,
108 .exit = iptable_mangle_net_exit,
111 static int __init iptable_mangle_init(void)
113 int ret = xt_register_template(&packet_mangler,
114 iptable_mangle_table_init);
118 mangle_ops = xt_hook_ops_alloc(&packet_mangler, iptable_mangle_hook);
119 if (IS_ERR(mangle_ops)) {
120 xt_unregister_template(&packet_mangler);
121 ret = PTR_ERR(mangle_ops);
125 ret = register_pernet_subsys(&iptable_mangle_net_ops);
127 xt_unregister_template(&packet_mangler);
135 static void __exit iptable_mangle_fini(void)
137 unregister_pernet_subsys(&iptable_mangle_net_ops);
138 xt_unregister_template(&packet_mangler);
142 module_init(iptable_mangle_init);
143 module_exit(iptable_mangle_fini);