blob: 3fe1ae87e35f912cdb0e255cadff4deb579d121f [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
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010053static struct ebt_table frame_nat =
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 .name = "nat",
56 .table = &initial_table,
57 .valid_hooks = NAT_VALID_HOOKS,
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010058 .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
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010064ebt_nat_in(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{
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010067 return ebt_do_table(hook, skb, in, out, dev_net(in)->xt.frame_nat);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
70static unsigned int
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010071ebt_nat_out(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{
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010074 return ebt_do_table(hook, skb, in, out, dev_net(out)->xt.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 {
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010079 .hook = ebt_nat_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .owner = THIS_MODULE,
81 .pf = PF_BRIDGE,
82 .hooknum = NF_BR_LOCAL_OUT,
83 .priority = NF_BR_PRI_NAT_DST_OTHER,
84 },
85 {
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010086 .hook = ebt_nat_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .owner = THIS_MODULE,
88 .pf = PF_BRIDGE,
89 .hooknum = NF_BR_POST_ROUTING,
90 .priority = NF_BR_PRI_NAT_SRC,
91 },
92 {
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +010093 .hook = ebt_nat_in,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 .owner = THIS_MODULE,
95 .pf = PF_BRIDGE,
96 .hooknum = NF_BR_PRE_ROUTING,
97 .priority = NF_BR_PRI_NAT_DST_BRIDGED,
98 },
99};
100
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +0100101static int __net_init frame_nat_net_init(struct net *net)
102{
103 net->xt.frame_nat = ebt_register_table(net, &frame_nat);
104 if (IS_ERR(net->xt.frame_nat))
105 return PTR_ERR(net->xt.frame_nat);
106 return 0;
107}
108
109static void __net_exit frame_nat_net_exit(struct net *net)
110{
111 ebt_unregister_table(net->xt.frame_nat);
112}
113
114static struct pernet_operations frame_nat_net_ops = {
115 .init = frame_nat_net_init,
116 .exit = frame_nat_net_exit,
117};
118
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800119static int __init ebtable_nat_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Alexey Dobriyane40f51a2008-07-26 17:47:53 -0700121 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +0100123 ret = register_pernet_subsys(&frame_nat_net_ops);
124 if (ret < 0)
125 return ret;
Alexey Dobriyane40f51a2008-07-26 17:47:53 -0700126 ret = nf_register_hooks(ebt_ops_nat, ARRAY_SIZE(ebt_ops_nat));
127 if (ret < 0)
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +0100128 unregister_pernet_subsys(&frame_nat_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return ret;
130}
131
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800132static void __exit ebtable_nat_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Alexey Dobriyane40f51a2008-07-26 17:47:53 -0700134 nf_unregister_hooks(ebt_ops_nat, ARRAY_SIZE(ebt_ops_nat));
Alexey Dobriyanb71b30a2008-11-04 14:30:46 +0100135 unregister_pernet_subsys(&frame_nat_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800138module_init(ebtable_nat_init);
139module_exit(ebtable_nat_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140MODULE_LICENSE("GPL");