blob: 0e58f09e59fb345501123159952027f8f854e539 [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.
10 *
11 */
12
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/netfilter_ipv4/ip_tables.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030017#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19MODULE_LICENSE("GPL");
20MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
21MODULE_DESCRIPTION("iptables filter table");
22
Patrick McHardy6e23ae22007-11-19 18:53:30 -080023#define FILTER_VALID_HOOKS ((1 << NF_INET_LOCAL_IN) | \
24 (1 << NF_INET_FORWARD) | \
25 (1 << NF_INET_LOCAL_OUT))
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020027static const struct xt_table packet_filter = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 .name = "filter",
29 .valid_hooks = FILTER_VALID_HOOKS,
Harald Welte2e4e6a12006-01-12 13:30:04 -080030 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020031 .af = NFPROTO_IPV4,
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020032 .priority = NF_IP_PRI_FILTER,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static unsigned int
Jan Engelhardt737535c2009-06-13 06:46:36 +020036iptable_filter_hook(unsigned int hook, struct sk_buff *skb,
37 const struct net_device *in, const struct net_device *out,
38 int (*okfn)(struct sk_buff *))
Alexey Dobriyan666953df2008-04-14 09:56:02 +020039{
Jan Engelhardt2b21e052009-06-13 06:57:10 +020040 const struct net *net;
Jan Engelhardt737535c2009-06-13 06:46:36 +020041
Jan Engelhardt2b21e052009-06-13 06:57:10 +020042 if (hook == NF_INET_LOCAL_OUT &&
43 (skb->len < sizeof(struct iphdr) ||
44 ip_hdrlen(skb) < sizeof(struct iphdr)))
45 /* root is playing with raw sockets. */
46 return NF_ACCEPT;
Jan Engelhardt737535c2009-06-13 06:46:36 +020047
Jan Engelhardt2b21e052009-06-13 06:57:10 +020048 net = dev_net((in != NULL) ? in : out);
49 return ipt_do_table(skb, hook, in, out, net->ipv4.iptable_filter);
Alexey Dobriyan666953df2008-04-14 09:56:02 +020050}
51
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020052static struct nf_hook_ops *filter_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* Default to forward because I got too much mail already. */
Rusty Russelleb939922011-12-19 14:08:01 +000055static bool forward = NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056module_param(forward, bool, 0000);
57
Alexey Dobriyan9335f042008-01-31 04:03:23 -080058static int __net_init iptable_filter_net_init(struct net *net)
59{
Jan Engelhardte3eaa992009-06-17 22:14:54 +020060 struct ipt_replace *repl;
61
62 repl = ipt_alloc_initial_table(&packet_filter);
63 if (repl == NULL)
64 return -ENOMEM;
65 /* Entry 1 is the FORWARD hook */
66 ((struct ipt_standard *)repl->entries)[1].target.verdict =
67 -forward - 1;
68
Alexey Dobriyan9335f042008-01-31 04:03:23 -080069 net->ipv4.iptable_filter =
Jan Engelhardte3eaa992009-06-17 22:14:54 +020070 ipt_register_table(net, &packet_filter, repl);
71 kfree(repl);
Alexey Dobriyan9335f042008-01-31 04:03:23 -080072 if (IS_ERR(net->ipv4.iptable_filter))
73 return PTR_ERR(net->ipv4.iptable_filter);
74 return 0;
75}
76
77static void __net_exit iptable_filter_net_exit(struct net *net)
78{
Alexey Dobriyanf54e9362010-01-18 08:25:47 +010079 ipt_unregister_table(net, net->ipv4.iptable_filter);
Alexey Dobriyan9335f042008-01-31 04:03:23 -080080}
81
82static struct pernet_operations iptable_filter_net_ops = {
83 .init = iptable_filter_net_init,
84 .exit = iptable_filter_net_exit,
85};
86
Andrew Morton65b4b4e2006-03-28 16:37:06 -080087static int __init iptable_filter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 int ret;
90
91 if (forward < 0 || forward > NF_MAX_VERDICT) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +020092 pr_err("iptables forward must be 0 or 1\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return -EINVAL;
94 }
95
Alexey Dobriyan9335f042008-01-31 04:03:23 -080096 ret = register_pernet_subsys(&iptable_filter_net_ops);
97 if (ret < 0)
98 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* Register hooks */
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200101 filter_ops = xt_hook_link(&packet_filter, iptable_filter_hook);
102 if (IS_ERR(filter_ops)) {
103 ret = PTR_ERR(filter_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 goto cleanup_table;
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return ret;
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 cleanup_table:
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800110 unregister_pernet_subsys(&iptable_filter_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return ret;
112}
113
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800114static void __exit iptable_filter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200116 xt_hook_unlink(&packet_filter, filter_ops);
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800117 unregister_pernet_subsys(&iptable_filter_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800120module_init(iptable_filter_init);
121module_exit(iptable_filter_fini);