blob: 06ab64e30e88673d77b1a0fdf7c6fc5419d48e41 [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>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030016#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18MODULE_LICENSE("GPL");
19MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
20MODULE_DESCRIPTION("iptables filter table");
21
Patrick McHardy6e23ae22007-11-19 18:53:30 -080022#define FILTER_VALID_HOOKS ((1 << NF_INET_LOCAL_IN) | \
23 (1 << NF_INET_FORWARD) | \
24 (1 << NF_INET_LOCAL_OUT))
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static struct
27{
28 struct ipt_replace repl;
29 struct ipt_standard entries[3];
30 struct ipt_error term;
Patrick McHardy3c2ad462007-05-10 14:14:16 -070031} initial_table __initdata = {
32 .repl = {
33 .name = "filter",
34 .valid_hooks = FILTER_VALID_HOOKS,
35 .num_entries = 4,
36 .size = sizeof(struct ipt_standard) * 3 + sizeof(struct ipt_error),
37 .hook_entry = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080038 [NF_INET_LOCAL_IN] = 0,
39 [NF_INET_FORWARD] = sizeof(struct ipt_standard),
40 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard) * 2,
Patrick McHardy3c2ad462007-05-10 14:14:16 -070041 },
42 .underflow = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080043 [NF_INET_LOCAL_IN] = 0,
44 [NF_INET_FORWARD] = sizeof(struct ipt_standard),
45 [NF_INET_LOCAL_OUT] = sizeof(struct ipt_standard) * 2,
Patrick McHardy3c2ad462007-05-10 14:14:16 -070046 },
47 },
48 .entries = {
49 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_IN */
50 IPT_STANDARD_INIT(NF_ACCEPT), /* FORWARD */
51 IPT_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
52 },
53 .term = IPT_ERROR_INIT, /* ERROR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
Jan Engelhardte60a13e2007-02-07 15:12:33 -080056static struct xt_table packet_filter = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .name = "filter",
58 .valid_hooks = FILTER_VALID_HOOKS,
59 .lock = RW_LOCK_UNLOCKED,
Harald Welte2e4e6a12006-01-12 13:30:04 -080060 .me = THIS_MODULE,
61 .af = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
64/* The work comes in here from netfilter.c. */
65static unsigned int
66ipt_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070067 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 const struct net_device *in,
69 const struct net_device *out,
70 int (*okfn)(struct sk_buff *))
71{
Herbert Xu3db05fe2007-10-15 00:53:15 -070072 return ipt_do_table(skb, hook, in, out, &packet_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75static unsigned int
76ipt_local_out_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070077 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 const struct net_device *in,
79 const struct net_device *out,
80 int (*okfn)(struct sk_buff *))
81{
82 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -070083 if (skb->len < sizeof(struct iphdr) ||
84 ip_hdrlen(skb) < sizeof(struct iphdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (net_ratelimit())
Patrick McHardy4a176c12007-05-10 14:16:56 -070086 printk("iptable_filter: ignoring short SOCK_RAW "
87 "packet.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return NF_ACCEPT;
89 }
90
Herbert Xu3db05fe2007-10-15 00:53:15 -070091 return ipt_do_table(skb, hook, in, out, &packet_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94static struct nf_hook_ops ipt_ops[] = {
95 {
96 .hook = ipt_hook,
97 .owner = THIS_MODULE,
98 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -080099 .hooknum = NF_INET_LOCAL_IN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 .priority = NF_IP_PRI_FILTER,
101 },
102 {
103 .hook = ipt_hook,
104 .owner = THIS_MODULE,
105 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800106 .hooknum = NF_INET_FORWARD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 .priority = NF_IP_PRI_FILTER,
108 },
109 {
110 .hook = ipt_local_out_hook,
111 .owner = THIS_MODULE,
112 .pf = PF_INET,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800113 .hooknum = NF_INET_LOCAL_OUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .priority = NF_IP_PRI_FILTER,
115 },
116};
117
118/* Default to forward because I got too much mail already. */
119static int forward = NF_ACCEPT;
120module_param(forward, bool, 0000);
121
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800122static int __init iptable_filter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 int ret;
125
126 if (forward < 0 || forward > NF_MAX_VERDICT) {
127 printk("iptables forward must be 0 or 1\n");
128 return -EINVAL;
129 }
130
131 /* Entry 1 is the FORWARD hook */
132 initial_table.entries[1].target.verdict = -forward - 1;
133
134 /* Register table */
135 ret = ipt_register_table(&packet_filter, &initial_table.repl);
136 if (ret < 0)
137 return ret;
138
139 /* Register hooks */
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700140 ret = nf_register_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (ret < 0)
142 goto cleanup_table;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return ret;
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 cleanup_table:
147 ipt_unregister_table(&packet_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return ret;
149}
150
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800151static void __exit iptable_filter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700153 nf_unregister_hooks(ipt_ops, ARRAY_SIZE(ipt_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 ipt_unregister_table(&packet_filter);
155}
156
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800157module_init(iptable_filter_init);
158module_exit(iptable_filter_fini);