blob: 036047f9b0f2924bb0aeaaee03a921d4bff57f06 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This is the 1999 rewrite of IP Firewalling, aiming for kernel 2.3.x.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
5 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam@netfilter.org>
6 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/netfilter_ipv4/ip_tables.h>
13#include <linux/netdevice.h>
14#include <linux/skbuff.h>
15#include <net/sock.h>
16#include <net/route.h>
17#include <linux/ip.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030018#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20MODULE_LICENSE("GPL");
21MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
22MODULE_DESCRIPTION("iptables mangle table");
23
Patrick McHardy6e23ae22007-11-19 18:53:30 -080024#define MANGLE_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | \
25 (1 << NF_INET_LOCAL_IN) | \
26 (1 << NF_INET_FORWARD) | \
27 (1 << NF_INET_LOCAL_OUT) | \
28 (1 << NF_INET_POST_ROUTING))
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/* Ouch - five different hooks? Maybe this should be a config option..... -- BC */
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020031static const struct
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
33 struct ipt_replace repl;
34 struct ipt_standard entries[5];
35 struct ipt_error term;
Alexey Dobriyan9335f042008-01-31 04:03:23 -080036} initial_table __net_initdata = {
Patrick McHardy3c2ad462007-05-10 14:14:16 -070037 .repl = {
38 .name = "mangle",
39 .valid_hooks = MANGLE_VALID_HOOKS,
40 .num_entries = 6,
41 .size = sizeof(struct ipt_standard) * 5 + sizeof(struct ipt_error),
42 .hook_entry = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080043 [NF_INET_PRE_ROUTING] = 0,
44 [NF_INET_LOCAL_IN] = sizeof(struct ipt_standard),
45 [NF_INET_FORWARD] = sizeof(struct ipt_standard) * 2,
46 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard) * 3,
47 [NF_INET_POST_ROUTING] = sizeof(struct ipt_standard) * 4,
Patrick McHardy3c2ad462007-05-10 14:14:16 -070048 },
49 .underflow = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080050 [NF_INET_PRE_ROUTING] = 0,
51 [NF_INET_LOCAL_IN] = sizeof(struct ipt_standard),
52 [NF_INET_FORWARD] = sizeof(struct ipt_standard) * 2,
53 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard) * 3,
54 [NF_INET_POST_ROUTING] = sizeof(struct ipt_standard) * 4,
Patrick McHardy3c2ad462007-05-10 14:14:16 -070055 },
56 },
57 .entries = {
58 IPT_STANDARD_INIT(NF_ACCEPT), /* PRE_ROUTING */
59 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_IN */
60 IPT_STANDARD_INIT(NF_ACCEPT), /* FORWARD */
61 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
62 IPT_STANDARD_INIT(NF_ACCEPT), /* POST_ROUTING */
63 },
64 .term = IPT_ERROR_INIT, /* ERROR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020067static const struct xt_table packet_mangler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 .name = "mangle",
69 .valid_hooks = MANGLE_VALID_HOOKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020071 .af = NFPROTO_IPV4,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
74/* The work comes in here from netfilter.c. */
75static unsigned int
Alexey Dobriyan666953df2008-04-14 09:56:02 +020076ipt_pre_routing_hook(unsigned int hook,
77 struct sk_buff *skb,
78 const struct net_device *in,
79 const struct net_device *out,
80 int (*okfn)(struct sk_buff *))
81{
82 return ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +020083 dev_net(in)->ipv4.iptable_mangle);
Alexey Dobriyan666953df2008-04-14 09:56:02 +020084}
85
86static unsigned int
87ipt_post_routing_hook(unsigned int hook,
88 struct sk_buff *skb,
89 const struct net_device *in,
90 const struct net_device *out,
91 int (*okfn)(struct sk_buff *))
92{
93 return ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +020094 dev_net(out)->ipv4.iptable_mangle);
Alexey Dobriyan666953df2008-04-14 09:56:02 +020095}
96
97static unsigned int
98ipt_local_in_hook(unsigned int hook,
99 struct sk_buff *skb,
100 const struct net_device *in,
101 const struct net_device *out,
102 int (*okfn)(struct sk_buff *))
103{
104 return ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +0200105 dev_net(in)->ipv4.iptable_mangle);
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200106}
107
108static unsigned int
109ipt_forward_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700110 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 const struct net_device *in,
112 const struct net_device *out,
113 int (*okfn)(struct sk_buff *))
114{
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200115 return ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +0200116 dev_net(in)->ipv4.iptable_mangle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119static unsigned int
120ipt_local_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700121 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 const struct net_device *in,
123 const struct net_device *out,
124 int (*okfn)(struct sk_buff *))
125{
126 unsigned int ret;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700127 const struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 u_int8_t tos;
Al Viro6a19d612006-09-28 14:22:24 -0700129 __be32 saddr, daddr;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800130 u_int32_t mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700133 if (skb->len < sizeof(struct iphdr)
Patrick McHardy88843102009-01-12 00:06:00 +0000134 || ip_hdrlen(skb) < sizeof(struct iphdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 /* Save things which could affect route */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700138 mark = skb->mark;
139 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700140 saddr = iph->saddr;
141 daddr = iph->daddr;
142 tos = iph->tos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200144 ret = ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +0200145 dev_net(out)->ipv4.iptable_mangle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 /* Reroute for ANY change. */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700147 if (ret != NF_DROP && ret != NF_STOLEN && ret != NF_QUEUE) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700148 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700149
150 if (iph->saddr != saddr ||
151 iph->daddr != daddr ||
Herbert Xu3db05fe2007-10-15 00:53:15 -0700152 skb->mark != mark ||
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700153 iph->tos != tos)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700154 if (ip_route_me_harder(skb, RTN_UNSPEC))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700155 ret = NF_DROP;
156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 return ret;
159}
160
Patrick McHardy19994142007-12-05 01:23:00 -0800161static struct nf_hook_ops ipt_ops[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 {
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200163 .hook = ipt_pre_routing_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 .owner = THIS_MODULE,
Jan Engelhardt24c232d2009-06-13 06:20:29 +0200165 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800166 .hooknum = NF_INET_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .priority = NF_IP_PRI_MANGLE,
168 },
169 {
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200170 .hook = ipt_local_in_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 .owner = THIS_MODULE,
Jan Engelhardt24c232d2009-06-13 06:20:29 +0200172 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800173 .hooknum = NF_INET_LOCAL_IN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 .priority = NF_IP_PRI_MANGLE,
175 },
176 {
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200177 .hook = ipt_forward_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .owner = THIS_MODULE,
Jan Engelhardt24c232d2009-06-13 06:20:29 +0200179 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800180 .hooknum = NF_INET_FORWARD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 .priority = NF_IP_PRI_MANGLE,
182 },
183 {
184 .hook = ipt_local_hook,
185 .owner = THIS_MODULE,
Jan Engelhardt24c232d2009-06-13 06:20:29 +0200186 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800187 .hooknum = NF_INET_LOCAL_OUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 .priority = NF_IP_PRI_MANGLE,
189 },
190 {
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200191 .hook = ipt_post_routing_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 .owner = THIS_MODULE,
Jan Engelhardt24c232d2009-06-13 06:20:29 +0200193 .pf = NFPROTO_IPV4,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800194 .hooknum = NF_INET_POST_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 .priority = NF_IP_PRI_MANGLE,
196 },
197};
198
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800199static int __net_init iptable_mangle_net_init(struct net *net)
200{
201 /* Register table */
202 net->ipv4.iptable_mangle =
203 ipt_register_table(net, &packet_mangler, &initial_table.repl);
204 if (IS_ERR(net->ipv4.iptable_mangle))
205 return PTR_ERR(net->ipv4.iptable_mangle);
206 return 0;
207}
208
209static void __net_exit iptable_mangle_net_exit(struct net *net)
210{
211 ipt_unregister_table(net->ipv4.iptable_mangle);
212}
213
214static struct pernet_operations iptable_mangle_net_ops = {
215 .init = iptable_mangle_net_init,
216 .exit = iptable_mangle_net_exit,
217};
218
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800219static int __init iptable_mangle_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int ret;
222
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800223 ret = register_pernet_subsys(&iptable_mangle_net_ops);
224 if (ret < 0)
225 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 /* Register hooks */
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700228 ret = nf_register_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (ret < 0)
230 goto cleanup_table;
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return ret;
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 cleanup_table:
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800235 unregister_pernet_subsys(&iptable_mangle_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return ret;
237}
238
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800239static void __exit iptable_mangle_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700241 nf_unregister_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800242 unregister_pernet_subsys(&iptable_mangle_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800245module_init(iptable_mangle_init);
246module_exit(iptable_mangle_fini);