blob: 50af5b45c050c22773db181353e2aee9e02137e3 [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 Russell523f6102012-03-22 12:27:06 +000055static bool forward = true;
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 =
Rusty Russell523f6102012-03-22 12:27:06 +000067 forward ? -NF_ACCEPT - 1 : -NF_DROP - 1;
Jan Engelhardte3eaa992009-06-17 22:14:54 +020068
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);
Rusty Russell8c6ffba2013-07-15 11:20:32 +093072 return PTR_ERR_OR_ZERO(net->ipv4.iptable_filter);
Alexey Dobriyan9335f042008-01-31 04:03:23 -080073}
74
75static void __net_exit iptable_filter_net_exit(struct net *net)
76{
Alexey Dobriyanf54e9362010-01-18 08:25:47 +010077 ipt_unregister_table(net, net->ipv4.iptable_filter);
Alexey Dobriyan9335f042008-01-31 04:03:23 -080078}
79
80static struct pernet_operations iptable_filter_net_ops = {
81 .init = iptable_filter_net_init,
82 .exit = iptable_filter_net_exit,
83};
84
Andrew Morton65b4b4e2006-03-28 16:37:06 -080085static int __init iptable_filter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 int ret;
88
Alexey Dobriyan9335f042008-01-31 04:03:23 -080089 ret = register_pernet_subsys(&iptable_filter_net_ops);
90 if (ret < 0)
91 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /* Register hooks */
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020094 filter_ops = xt_hook_link(&packet_filter, iptable_filter_hook);
95 if (IS_ERR(filter_ops)) {
96 ret = PTR_ERR(filter_ops);
Jean Sacren90efbed2012-08-19 15:11:32 +000097 unregister_pernet_subsys(&iptable_filter_net_ops);
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800103static void __exit iptable_filter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200105 xt_hook_unlink(&packet_filter, filter_ops);
Alexey Dobriyan9335f042008-01-31 04:03:23 -0800106 unregister_pernet_subsys(&iptable_filter_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800109module_init(iptable_filter_init);
110module_exit(iptable_filter_fini);