blob: 69f2c4287146a078b4f33910591bb30ec73797fd [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 */
31static struct
32{
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
Alexey Dobriyan9335f042008-01-31 04:03:23 -080067static struct xt_table packet_mangler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 .name = "mangle",
69 .valid_hooks = MANGLE_VALID_HOOKS,
Robert P. J. Dayfdccecd2008-04-14 09:56:03 +020070 .lock = __RW_LOCK_UNLOCKED(packet_mangler.lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 .me = THIS_MODULE,
Harald Welte2e4e6a12006-01-12 13:30:04 -080072 .af = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75/* The work comes in here from netfilter.c. */
76static unsigned int
Alexey Dobriyan666953df2008-04-14 09:56:02 +020077ipt_pre_routing_hook(unsigned int hook,
78 struct sk_buff *skb,
79 const struct net_device *in,
80 const struct net_device *out,
81 int (*okfn)(struct sk_buff *))
82{
83 return ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +020084 dev_net(in)->ipv4.iptable_mangle);
Alexey Dobriyan666953df2008-04-14 09:56:02 +020085}
86
87static unsigned int
88ipt_post_routing_hook(unsigned int hook,
89 struct sk_buff *skb,
90 const struct net_device *in,
91 const struct net_device *out,
92 int (*okfn)(struct sk_buff *))
93{
94 return ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +020095 dev_net(out)->ipv4.iptable_mangle);
Alexey Dobriyan666953df2008-04-14 09:56:02 +020096}
97
98static unsigned int
99ipt_local_in_hook(unsigned int hook,
100 struct sk_buff *skb,
101 const struct net_device *in,
102 const struct net_device *out,
103 int (*okfn)(struct sk_buff *))
104{
105 return ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +0200106 dev_net(in)->ipv4.iptable_mangle);
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200107}
108
109static unsigned int
110ipt_forward_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700111 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 const struct net_device *in,
113 const struct net_device *out,
114 int (*okfn)(struct sk_buff *))
115{
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200116 return ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +0200117 dev_net(in)->ipv4.iptable_mangle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
120static unsigned int
121ipt_local_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700122 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 const struct net_device *in,
124 const struct net_device *out,
125 int (*okfn)(struct sk_buff *))
126{
127 unsigned int ret;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700128 const struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 u_int8_t tos;
Al Viro6a19d612006-09-28 14:22:24 -0700130 __be32 saddr, daddr;
Thomas Graf82e91ff2006-11-09 15:19:14 -0800131 u_int32_t mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700134 if (skb->len < sizeof(struct iphdr)
135 || ip_hdrlen(skb) < sizeof(struct iphdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (net_ratelimit())
Patrick McHardy4a176c12007-05-10 14:16:56 -0700137 printk("iptable_mangle: ignoring short SOCK_RAW "
138 "packet.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return NF_ACCEPT;
140 }
141
142 /* Save things which could affect route */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700143 mark = skb->mark;
144 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700145 saddr = iph->saddr;
146 daddr = iph->daddr;
147 tos = iph->tos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200149 ret = ipt_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +0200150 dev_net(out)->ipv4.iptable_mangle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /* Reroute for ANY change. */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700152 if (ret != NF_DROP && ret != NF_STOLEN && ret != NF_QUEUE) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700153 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700154
155 if (iph->saddr != saddr ||
156 iph->daddr != daddr ||
Herbert Xu3db05fe2007-10-15 00:53:15 -0700157 skb->mark != mark ||
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700158 iph->tos != tos)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700159 if (ip_route_me_harder(skb, RTN_UNSPEC))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700160 ret = NF_DROP;
161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 return ret;
164}
165
Patrick McHardy19994142007-12-05 01:23:00 -0800166static struct nf_hook_ops ipt_ops[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 {
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200168 .hook = ipt_pre_routing_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 .owner = THIS_MODULE,
170 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800171 .hooknum = NF_INET_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 .priority = NF_IP_PRI_MANGLE,
173 },
174 {
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200175 .hook = ipt_local_in_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .owner = THIS_MODULE,
177 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800178 .hooknum = NF_INET_LOCAL_IN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 .priority = NF_IP_PRI_MANGLE,
180 },
181 {
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200182 .hook = ipt_forward_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 .owner = THIS_MODULE,
184 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800185 .hooknum = NF_INET_FORWARD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 .priority = NF_IP_PRI_MANGLE,
187 },
188 {
189 .hook = ipt_local_hook,
190 .owner = THIS_MODULE,
191 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800192 .hooknum = NF_INET_LOCAL_OUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 .priority = NF_IP_PRI_MANGLE,
194 },
195 {
Alexey Dobriyan666953df2008-04-14 09:56:02 +0200196 .hook = ipt_post_routing_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .owner = THIS_MODULE,
198 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800199 .hooknum = NF_INET_POST_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .priority = NF_IP_PRI_MANGLE,
201 },
202};
203
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800204static int __net_init iptable_mangle_net_init(struct net *net)
205{
206 /* Register table */
207 net->ipv4.iptable_mangle =
208 ipt_register_table(net, &packet_mangler, &initial_table.repl);
209 if (IS_ERR(net->ipv4.iptable_mangle))
210 return PTR_ERR(net->ipv4.iptable_mangle);
211 return 0;
212}
213
214static void __net_exit iptable_mangle_net_exit(struct net *net)
215{
216 ipt_unregister_table(net->ipv4.iptable_mangle);
217}
218
219static struct pernet_operations iptable_mangle_net_ops = {
220 .init = iptable_mangle_net_init,
221 .exit = iptable_mangle_net_exit,
222};
223
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800224static int __init iptable_mangle_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 int ret;
227
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800228 ret = register_pernet_subsys(&iptable_mangle_net_ops);
229 if (ret < 0)
230 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /* Register hooks */
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700233 ret = nf_register_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (ret < 0)
235 goto cleanup_table;
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return ret;
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 cleanup_table:
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800240 unregister_pernet_subsys(&iptable_mangle_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return ret;
242}
243
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800244static void __exit iptable_mangle_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700246 nf_unregister_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800247 unregister_pernet_subsys(&iptable_mangle_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800250module_init(iptable_mangle_init);
251module_exit(iptable_mangle_fini);