[NETFILTER]: Replace sk_buff ** with sk_buff *
[linux-2.6-block.git] / net / ipv4 / netfilter / iptable_mangle.c
CommitLineData
1da177e4
LT
1/*
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.
1da177e4 10 */
1da177e4
LT
11#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>
c9bdd4b5 18#include <net/ip.h>
1da177e4
LT
19
20MODULE_LICENSE("GPL");
21MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
22MODULE_DESCRIPTION("iptables mangle table");
23
24#define MANGLE_VALID_HOOKS ((1 << NF_IP_PRE_ROUTING) | \
25 (1 << NF_IP_LOCAL_IN) | \
26 (1 << NF_IP_FORWARD) | \
27 (1 << NF_IP_LOCAL_OUT) | \
28 (1 << NF_IP_POST_ROUTING))
29
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;
3c2ad469
PM
36} initial_table __initdata = {
37 .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 = {
43 [NF_IP_PRE_ROUTING] = 0,
44 [NF_IP_LOCAL_IN] = sizeof(struct ipt_standard),
45 [NF_IP_FORWARD] = sizeof(struct ipt_standard) * 2,
46 [NF_IP_LOCAL_OUT] = sizeof(struct ipt_standard) * 3,
47 [NF_IP_POST_ROUTING] = sizeof(struct ipt_standard) * 4,
48 },
49 .underflow = {
50 [NF_IP_PRE_ROUTING] = 0,
51 [NF_IP_LOCAL_IN] = sizeof(struct ipt_standard),
52 [NF_IP_FORWARD] = sizeof(struct ipt_standard) * 2,
53 [NF_IP_LOCAL_OUT] = sizeof(struct ipt_standard) * 3,
54 [NF_IP_POST_ROUTING] = sizeof(struct ipt_standard) * 4,
55 },
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 */
1da177e4
LT
65};
66
e60a13e0 67static struct xt_table packet_mangler = {
1da177e4
LT
68 .name = "mangle",
69 .valid_hooks = MANGLE_VALID_HOOKS,
70 .lock = RW_LOCK_UNLOCKED,
71 .me = THIS_MODULE,
2e4e6a17 72 .af = AF_INET,
1da177e4
LT
73};
74
75/* The work comes in here from netfilter.c. */
76static unsigned int
77ipt_route_hook(unsigned int hook,
3db05fea 78 struct sk_buff *skb,
1da177e4
LT
79 const struct net_device *in,
80 const struct net_device *out,
81 int (*okfn)(struct sk_buff *))
82{
3db05fea 83 return ipt_do_table(skb, hook, in, out, &packet_mangler);
1da177e4
LT
84}
85
86static unsigned int
87ipt_local_hook(unsigned int hook,
3db05fea 88 struct sk_buff *skb,
1da177e4
LT
89 const struct net_device *in,
90 const struct net_device *out,
91 int (*okfn)(struct sk_buff *))
92{
93 unsigned int ret;
eddc9ec5 94 const struct iphdr *iph;
1da177e4 95 u_int8_t tos;
6a19d614 96 __be32 saddr, daddr;
82e91ffe 97 u_int32_t mark;
1da177e4
LT
98
99 /* root is playing with raw sockets. */
3db05fea
HX
100 if (skb->len < sizeof(struct iphdr)
101 || ip_hdrlen(skb) < sizeof(struct iphdr)) {
1da177e4 102 if (net_ratelimit())
4a176c1a
PM
103 printk("iptable_mangle: ignoring short SOCK_RAW "
104 "packet.\n");
1da177e4
LT
105 return NF_ACCEPT;
106 }
107
108 /* Save things which could affect route */
3db05fea
HX
109 mark = skb->mark;
110 iph = ip_hdr(skb);
eddc9ec5
ACM
111 saddr = iph->saddr;
112 daddr = iph->daddr;
113 tos = iph->tos;
1da177e4 114
3db05fea 115 ret = ipt_do_table(skb, hook, in, out, &packet_mangler);
1da177e4 116 /* Reroute for ANY change. */
eddc9ec5 117 if (ret != NF_DROP && ret != NF_STOLEN && ret != NF_QUEUE) {
3db05fea 118 iph = ip_hdr(skb);
eddc9ec5
ACM
119
120 if (iph->saddr != saddr ||
121 iph->daddr != daddr ||
3db05fea 122 skb->mark != mark ||
eddc9ec5 123 iph->tos != tos)
3db05fea 124 if (ip_route_me_harder(skb, RTN_UNSPEC))
eddc9ec5
ACM
125 ret = NF_DROP;
126 }
1da177e4
LT
127
128 return ret;
129}
130
131static struct nf_hook_ops ipt_ops[] = {
132 {
133 .hook = ipt_route_hook,
134 .owner = THIS_MODULE,
135 .pf = PF_INET,
e905a9ed 136 .hooknum = NF_IP_PRE_ROUTING,
1da177e4
LT
137 .priority = NF_IP_PRI_MANGLE,
138 },
139 {
140 .hook = ipt_route_hook,
141 .owner = THIS_MODULE,
142 .pf = PF_INET,
143 .hooknum = NF_IP_LOCAL_IN,
144 .priority = NF_IP_PRI_MANGLE,
145 },
146 {
147 .hook = ipt_route_hook,
148 .owner = THIS_MODULE,
149 .pf = PF_INET,
150 .hooknum = NF_IP_FORWARD,
151 .priority = NF_IP_PRI_MANGLE,
152 },
153 {
154 .hook = ipt_local_hook,
155 .owner = THIS_MODULE,
156 .pf = PF_INET,
157 .hooknum = NF_IP_LOCAL_OUT,
158 .priority = NF_IP_PRI_MANGLE,
159 },
160 {
161 .hook = ipt_route_hook,
162 .owner = THIS_MODULE,
163 .pf = PF_INET,
164 .hooknum = NF_IP_POST_ROUTING,
165 .priority = NF_IP_PRI_MANGLE,
166 },
167};
168
65b4b4e8 169static int __init iptable_mangle_init(void)
1da177e4
LT
170{
171 int ret;
172
173 /* Register table */
174 ret = ipt_register_table(&packet_mangler, &initial_table.repl);
175 if (ret < 0)
176 return ret;
177
178 /* Register hooks */
964ddaa1 179 ret = nf_register_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
1da177e4
LT
180 if (ret < 0)
181 goto cleanup_table;
182
1da177e4
LT
183 return ret;
184
1da177e4
LT
185 cleanup_table:
186 ipt_unregister_table(&packet_mangler);
1da177e4
LT
187 return ret;
188}
189
65b4b4e8 190static void __exit iptable_mangle_fini(void)
1da177e4 191{
964ddaa1 192 nf_unregister_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
1da177e4
LT
193 ipt_unregister_table(&packet_mangler);
194}
195
65b4b4e8
AM
196module_init(iptable_mangle_init);
197module_exit(iptable_mangle_fini);