blob: bafe16029bd75dbad6e1843de6b3673c592e5423 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ebtable_nat
3 *
4 * Authors:
5 * Bart De Schuymer <bdschuym@pandora.be>
6 *
7 * April, 2002
8 *
9 */
10
11#include <linux/netfilter_bridge/ebtables.h>
12#include <linux/module.h>
13
14#define NAT_VALID_HOOKS ((1 << NF_BR_PRE_ROUTING) | (1 << NF_BR_LOCAL_OUT) | \
15 (1 << NF_BR_POST_ROUTING))
16
17static struct ebt_entries initial_chains[] =
18{
19 {
20 .name = "PREROUTING",
21 .policy = EBT_ACCEPT,
22 },
23 {
24 .name = "OUTPUT",
25 .policy = EBT_ACCEPT,
26 },
27 {
28 .name = "POSTROUTING",
29 .policy = EBT_ACCEPT,
30 }
31};
32
Al Viro1e419cd2006-11-30 19:28:48 -080033static struct ebt_replace_kernel initial_table =
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
35 .name = "nat",
36 .valid_hooks = NAT_VALID_HOOKS,
37 .entries_size = 3 * sizeof(struct ebt_entries),
38 .hook_entry = {
39 [NF_BR_PRE_ROUTING] = &initial_chains[0],
40 [NF_BR_LOCAL_OUT] = &initial_chains[1],
41 [NF_BR_POST_ROUTING] = &initial_chains[2],
42 },
43 .entries = (char *)initial_chains,
44};
45
46static int check(const struct ebt_table_info *info, unsigned int valid_hooks)
47{
48 if (valid_hooks & ~NAT_VALID_HOOKS)
49 return -EINVAL;
50 return 0;
51}
52
53static struct ebt_table frame_nat =
54{
55 .name = "nat",
56 .table = &initial_table,
57 .valid_hooks = NAT_VALID_HOOKS,
Robert P. J. Day0718300c2008-04-14 09:56:03 +020058 .lock = __RW_LOCK_UNLOCKED(frame_nat.lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 .check = check,
60 .me = THIS_MODULE,
61};
62
63static unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -070064ebt_nat_dst(unsigned int hook, struct sk_buff *skb, const struct net_device *in
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 , const struct net_device *out, int (*okfn)(struct sk_buff *))
66{
Herbert Xu3db05fe2007-10-15 00:53:15 -070067 return ebt_do_table(hook, skb, in, out, &frame_nat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
70static unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -070071ebt_nat_src(unsigned int hook, struct sk_buff *skb, const struct net_device *in
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 , const struct net_device *out, int (*okfn)(struct sk_buff *))
73{
Herbert Xu3db05fe2007-10-15 00:53:15 -070074 return ebt_do_table(hook, skb, in, out, &frame_nat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Patrick McHardy19994142007-12-05 01:23:00 -080077static struct nf_hook_ops ebt_ops_nat[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 {
79 .hook = ebt_nat_dst,
80 .owner = THIS_MODULE,
81 .pf = PF_BRIDGE,
82 .hooknum = NF_BR_LOCAL_OUT,
83 .priority = NF_BR_PRI_NAT_DST_OTHER,
84 },
85 {
86 .hook = ebt_nat_src,
87 .owner = THIS_MODULE,
88 .pf = PF_BRIDGE,
89 .hooknum = NF_BR_POST_ROUTING,
90 .priority = NF_BR_PRI_NAT_SRC,
91 },
92 {
93 .hook = ebt_nat_dst,
94 .owner = THIS_MODULE,
95 .pf = PF_BRIDGE,
96 .hooknum = NF_BR_PRE_ROUTING,
97 .priority = NF_BR_PRI_NAT_DST_BRIDGED,
98 },
99};
100
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800101static int __init ebtable_nat_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Alexey Dobriyane40f51a2008-07-26 17:47:53 -0700103 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Alexey Dobriyan511061e2008-11-04 14:22:55 +0100105 ret = ebt_register_table(&init_net, &frame_nat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (ret < 0)
107 return ret;
Alexey Dobriyane40f51a2008-07-26 17:47:53 -0700108 ret = nf_register_hooks(ebt_ops_nat, ARRAY_SIZE(ebt_ops_nat));
109 if (ret < 0)
110 ebt_unregister_table(&frame_nat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return ret;
112}
113
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800114static void __exit ebtable_nat_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Alexey Dobriyane40f51a2008-07-26 17:47:53 -0700116 nf_unregister_hooks(ebt_ops_nat, ARRAY_SIZE(ebt_ops_nat));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 ebt_unregister_table(&frame_nat);
118}
119
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800120module_init(ebtable_nat_init);
121module_exit(ebtable_nat_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122MODULE_LICENSE("GPL");