2 * This is the 1999 rewrite of IP Firewalling, aiming for kernel 2.3.x.
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
5 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam@netfilter.org>
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.
13 #include <linux/module.h>
14 #include <linux/moduleparam.h>
15 #include <linux/netfilter_ipv4/ip_tables.h>
17 MODULE_LICENSE("GPL");
18 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
19 MODULE_DESCRIPTION("iptables filter table");
21 #define FILTER_VALID_HOOKS ((1 << NF_IP_LOCAL_IN) | (1 << NF_IP_FORWARD) | (1 << NF_IP_LOCAL_OUT))
25 struct ipt_replace repl
;
26 struct ipt_standard entries
[3];
27 struct ipt_error term
;
28 } initial_table __initdata
29 = { { "filter", FILTER_VALID_HOOKS
, 4,
30 sizeof(struct ipt_standard
) * 3 + sizeof(struct ipt_error
),
31 { [NF_IP_LOCAL_IN
] = 0,
32 [NF_IP_FORWARD
] = sizeof(struct ipt_standard
),
33 [NF_IP_LOCAL_OUT
] = sizeof(struct ipt_standard
) * 2 },
34 { [NF_IP_LOCAL_IN
] = 0,
35 [NF_IP_FORWARD
] = sizeof(struct ipt_standard
),
36 [NF_IP_LOCAL_OUT
] = sizeof(struct ipt_standard
) * 2 },
40 { { { { 0 }, { 0 }, { 0 }, { 0 }, "", "", { 0 }, { 0 }, 0, 0, 0 },
42 sizeof(struct ipt_entry
),
43 sizeof(struct ipt_standard
),
45 { { { { IPT_ALIGN(sizeof(struct ipt_standard_target
)), "" } }, { } },
48 { { { { 0 }, { 0 }, { 0 }, { 0 }, "", "", { 0 }, { 0 }, 0, 0, 0 },
50 sizeof(struct ipt_entry
),
51 sizeof(struct ipt_standard
),
53 { { { { IPT_ALIGN(sizeof(struct ipt_standard_target
)), "" } }, { } },
56 { { { { 0 }, { 0 }, { 0 }, { 0 }, "", "", { 0 }, { 0 }, 0, 0, 0 },
58 sizeof(struct ipt_entry
),
59 sizeof(struct ipt_standard
),
61 { { { { IPT_ALIGN(sizeof(struct ipt_standard_target
)), "" } }, { } },
65 { { { { 0 }, { 0 }, { 0 }, { 0 }, "", "", { 0 }, { 0 }, 0, 0, 0 },
67 sizeof(struct ipt_entry
),
68 sizeof(struct ipt_error
),
70 { { { { IPT_ALIGN(sizeof(struct ipt_error_target
)), IPT_ERROR_TARGET
} },
77 static struct ipt_table packet_filter
= {
79 .valid_hooks
= FILTER_VALID_HOOKS
,
80 .lock
= RW_LOCK_UNLOCKED
,
84 /* The work comes in here from netfilter.c. */
86 ipt_hook(unsigned int hook
,
87 struct sk_buff
**pskb
,
88 const struct net_device
*in
,
89 const struct net_device
*out
,
90 int (*okfn
)(struct sk_buff
*))
92 return ipt_do_table(pskb
, hook
, in
, out
, &packet_filter
, NULL
);
96 ipt_local_out_hook(unsigned int hook
,
97 struct sk_buff
**pskb
,
98 const struct net_device
*in
,
99 const struct net_device
*out
,
100 int (*okfn
)(struct sk_buff
*))
102 /* root is playing with raw sockets. */
103 if ((*pskb
)->len
< sizeof(struct iphdr
)
104 || (*pskb
)->nh
.iph
->ihl
* 4 < sizeof(struct iphdr
)) {
106 printk("ipt_hook: happy cracking.\n");
110 return ipt_do_table(pskb
, hook
, in
, out
, &packet_filter
, NULL
);
113 static struct nf_hook_ops ipt_ops
[] = {
116 .owner
= THIS_MODULE
,
118 .hooknum
= NF_IP_LOCAL_IN
,
119 .priority
= NF_IP_PRI_FILTER
,
123 .owner
= THIS_MODULE
,
125 .hooknum
= NF_IP_FORWARD
,
126 .priority
= NF_IP_PRI_FILTER
,
129 .hook
= ipt_local_out_hook
,
130 .owner
= THIS_MODULE
,
132 .hooknum
= NF_IP_LOCAL_OUT
,
133 .priority
= NF_IP_PRI_FILTER
,
137 /* Default to forward because I got too much mail already. */
138 static int forward
= NF_ACCEPT
;
139 module_param(forward
, bool, 0000);
141 static int __init
init(void)
145 if (forward
< 0 || forward
> NF_MAX_VERDICT
) {
146 printk("iptables forward must be 0 or 1\n");
150 /* Entry 1 is the FORWARD hook */
151 initial_table
.entries
[1].target
.verdict
= -forward
- 1;
154 ret
= ipt_register_table(&packet_filter
, &initial_table
.repl
);
159 ret
= nf_register_hook(&ipt_ops
[0]);
163 ret
= nf_register_hook(&ipt_ops
[1]);
167 ret
= nf_register_hook(&ipt_ops
[2]);
174 nf_unregister_hook(&ipt_ops
[1]);
176 nf_unregister_hook(&ipt_ops
[0]);
178 ipt_unregister_table(&packet_filter
);
183 static void __exit
fini(void)
187 for (i
= 0; i
< sizeof(ipt_ops
)/sizeof(struct nf_hook_ops
); i
++)
188 nf_unregister_hook(&ipt_ops
[i
]);
190 ipt_unregister_table(&packet_filter
);