netfilter: iptables: remove unused function arguments
[safe/jmp/linux-2.6] / net / ipv4 / netfilter / iptable_mangle.c
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.
10  */
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>
18 #include <net/ip.h>
19
20 MODULE_LICENSE("GPL");
21 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
22 MODULE_DESCRIPTION("iptables mangle table");
23
24 #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))
29
30 static const struct xt_table packet_mangler = {
31         .name           = "mangle",
32         .valid_hooks    = MANGLE_VALID_HOOKS,
33         .me             = THIS_MODULE,
34         .af             = NFPROTO_IPV4,
35         .priority       = NF_IP_PRI_MANGLE,
36 };
37
38 static unsigned int
39 ipt_mangle_out(struct sk_buff *skb, const struct net_device *out)
40 {
41         unsigned int ret;
42         const struct iphdr *iph;
43         u_int8_t tos;
44         __be32 saddr, daddr;
45         u_int32_t mark;
46
47         /* root is playing with raw sockets. */
48         if (skb->len < sizeof(struct iphdr) ||
49             ip_hdrlen(skb) < sizeof(struct iphdr))
50                 return NF_ACCEPT;
51
52         /* Save things which could affect route */
53         mark = skb->mark;
54         iph = ip_hdr(skb);
55         saddr = iph->saddr;
56         daddr = iph->daddr;
57         tos = iph->tos;
58
59         ret = ipt_do_table(skb, NF_INET_LOCAL_OUT, NULL, out,
60                            dev_net(out)->ipv4.iptable_mangle);
61         /* Reroute for ANY change. */
62         if (ret != NF_DROP && ret != NF_STOLEN && ret != NF_QUEUE) {
63                 iph = ip_hdr(skb);
64
65                 if (iph->saddr != saddr ||
66                     iph->daddr != daddr ||
67                     skb->mark != mark ||
68                     iph->tos != tos)
69                         if (ip_route_me_harder(skb, RTN_UNSPEC))
70                                 ret = NF_DROP;
71         }
72
73         return ret;
74 }
75
76 /* The work comes in here from netfilter.c. */
77 static unsigned int
78 iptable_mangle_hook(unsigned int hook,
79                      struct sk_buff *skb,
80                      const struct net_device *in,
81                      const struct net_device *out,
82                      int (*okfn)(struct sk_buff *))
83 {
84         if (hook == NF_INET_LOCAL_OUT)
85                 return ipt_mangle_out(skb, out);
86         if (hook == NF_INET_POST_ROUTING)
87                 return ipt_do_table(skb, hook, in, out,
88                                     dev_net(out)->ipv4.iptable_mangle);
89         /* PREROUTING/INPUT/FORWARD: */
90         return ipt_do_table(skb, hook, in, out,
91                             dev_net(in)->ipv4.iptable_mangle);
92 }
93
94 static struct nf_hook_ops *mangle_ops __read_mostly;
95
96 static int __net_init iptable_mangle_net_init(struct net *net)
97 {
98         struct ipt_replace *repl;
99
100         repl = ipt_alloc_initial_table(&packet_mangler);
101         if (repl == NULL)
102                 return -ENOMEM;
103         net->ipv4.iptable_mangle =
104                 ipt_register_table(net, &packet_mangler, repl);
105         kfree(repl);
106         if (IS_ERR(net->ipv4.iptable_mangle))
107                 return PTR_ERR(net->ipv4.iptable_mangle);
108         return 0;
109 }
110
111 static void __net_exit iptable_mangle_net_exit(struct net *net)
112 {
113         ipt_unregister_table(net, net->ipv4.iptable_mangle);
114 }
115
116 static struct pernet_operations iptable_mangle_net_ops = {
117         .init = iptable_mangle_net_init,
118         .exit = iptable_mangle_net_exit,
119 };
120
121 static int __init iptable_mangle_init(void)
122 {
123         int ret;
124
125         ret = register_pernet_subsys(&iptable_mangle_net_ops);
126         if (ret < 0)
127                 return ret;
128
129         /* Register hooks */
130         mangle_ops = xt_hook_link(&packet_mangler, iptable_mangle_hook);
131         if (IS_ERR(mangle_ops)) {
132                 ret = PTR_ERR(mangle_ops);
133                 goto cleanup_table;
134         }
135
136         return ret;
137
138  cleanup_table:
139         unregister_pernet_subsys(&iptable_mangle_net_ops);
140         return ret;
141 }
142
143 static void __exit iptable_mangle_fini(void)
144 {
145         xt_hook_unlink(&packet_mangler, mangle_ops);
146         unregister_pernet_subsys(&iptable_mangle_net_ops);
147 }
148
149 module_init(iptable_mangle_init);
150 module_exit(iptable_mangle_fini);