Merge branch 'for-davem' into for-next
[deliverable/linux.git] / net / ipv4 / netfilter / iptable_filter.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.
10 *
11 */
12
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/netfilter_ipv4/ip_tables.h>
5a0e3ad6 16#include <linux/slab.h>
c9bdd4b5 17#include <net/ip.h>
1da177e4
LT
18
19MODULE_LICENSE("GPL");
20MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
21MODULE_DESCRIPTION("iptables filter table");
22
6e23ae2a
PM
23#define FILTER_VALID_HOOKS ((1 << NF_INET_LOCAL_IN) | \
24 (1 << NF_INET_FORWARD) | \
25 (1 << NF_INET_LOCAL_OUT))
1da177e4 26
35aad0ff 27static const struct xt_table packet_filter = {
1da177e4
LT
28 .name = "filter",
29 .valid_hooks = FILTER_VALID_HOOKS,
2e4e6a17 30 .me = THIS_MODULE,
f88e6a8a 31 .af = NFPROTO_IPV4,
2b95efe7 32 .priority = NF_IP_PRI_FILTER,
1da177e4
LT
33};
34
666953df 35static unsigned int
795aa6ef 36iptable_filter_hook(const struct nf_hook_ops *ops, struct sk_buff *skb,
238e54c9 37 const struct nf_hook_state *state)
666953df 38{
2b21e051 39 const struct net *net;
666953df 40
795aa6ef 41 if (ops->hooknum == NF_INET_LOCAL_OUT &&
2b21e051
JE
42 (skb->len < sizeof(struct iphdr) ||
43 ip_hdrlen(skb) < sizeof(struct iphdr)))
44 /* root is playing with raw sockets. */
45 return NF_ACCEPT;
1da177e4 46
238e54c9 47 net = dev_net(state->in ? state->in : state->out);
1c491ba2 48 return ipt_do_table(skb, ops->hooknum, state, net->ipv4.iptable_filter);
1da177e4
LT
49}
50
2b95efe7 51static struct nf_hook_ops *filter_ops __read_mostly;
1da177e4
LT
52
53/* Default to forward because I got too much mail already. */
523f610e 54static bool forward = true;
1da177e4
LT
55module_param(forward, bool, 0000);
56
9335f047
AD
57static int __net_init iptable_filter_net_init(struct net *net)
58{
e3eaa991
JE
59 struct ipt_replace *repl;
60
61 repl = ipt_alloc_initial_table(&packet_filter);
62 if (repl == NULL)
63 return -ENOMEM;
64 /* Entry 1 is the FORWARD hook */
65 ((struct ipt_standard *)repl->entries)[1].target.verdict =
523f610e 66 forward ? -NF_ACCEPT - 1 : -NF_DROP - 1;
e3eaa991 67
9335f047 68 net->ipv4.iptable_filter =
e3eaa991
JE
69 ipt_register_table(net, &packet_filter, repl);
70 kfree(repl);
8c6ffba0 71 return PTR_ERR_OR_ZERO(net->ipv4.iptable_filter);
9335f047
AD
72}
73
74static void __net_exit iptable_filter_net_exit(struct net *net)
75{
f54e9367 76 ipt_unregister_table(net, net->ipv4.iptable_filter);
9335f047
AD
77}
78
79static struct pernet_operations iptable_filter_net_ops = {
80 .init = iptable_filter_net_init,
81 .exit = iptable_filter_net_exit,
82};
83
65b4b4e8 84static int __init iptable_filter_init(void)
1da177e4
LT
85{
86 int ret;
87
9335f047
AD
88 ret = register_pernet_subsys(&iptable_filter_net_ops);
89 if (ret < 0)
90 return ret;
1da177e4
LT
91
92 /* Register hooks */
2b95efe7
JE
93 filter_ops = xt_hook_link(&packet_filter, iptable_filter_hook);
94 if (IS_ERR(filter_ops)) {
95 ret = PTR_ERR(filter_ops);
90efbed1 96 unregister_pernet_subsys(&iptable_filter_net_ops);
2b95efe7 97 }
1da177e4 98
1da177e4 99 return ret;
1da177e4
LT
100}
101
65b4b4e8 102static void __exit iptable_filter_fini(void)
1da177e4 103{
2b95efe7 104 xt_hook_unlink(&packet_filter, filter_ops);
9335f047 105 unregister_pernet_subsys(&iptable_filter_net_ops);
1da177e4
LT
106}
107
65b4b4e8
AM
108module_init(iptable_filter_init);
109module_exit(iptable_filter_fini);
This page took 0.962027 seconds and 5 git commands to generate.