Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / bridge / netfilter / ebtable_nat.c
blob3fe1ae87e35f912cdb0e255cadff4deb579d121f
1 /*
2 * ebtable_nat
4 * Authors:
5 * Bart De Schuymer <bdschuym@pandora.be>
7 * April, 2002
9 */
11 #include <linux/netfilter_bridge/ebtables.h>
12 #include <linux/module.h>
14 #define NAT_VALID_HOOKS ((1 << NF_BR_PRE_ROUTING) | (1 << NF_BR_LOCAL_OUT) | \
15 (1 << NF_BR_POST_ROUTING))
17 static struct ebt_entries initial_chains[] =
20 .name = "PREROUTING",
21 .policy = EBT_ACCEPT,
24 .name = "OUTPUT",
25 .policy = EBT_ACCEPT,
28 .name = "POSTROUTING",
29 .policy = EBT_ACCEPT,
33 static struct ebt_replace_kernel initial_table =
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],
43 .entries = (char *)initial_chains,
46 static int check(const struct ebt_table_info *info, unsigned int valid_hooks)
48 if (valid_hooks & ~NAT_VALID_HOOKS)
49 return -EINVAL;
50 return 0;
53 static struct ebt_table frame_nat =
55 .name = "nat",
56 .table = &initial_table,
57 .valid_hooks = NAT_VALID_HOOKS,
58 .lock = __RW_LOCK_UNLOCKED(frame_nat.lock),
59 .check = check,
60 .me = THIS_MODULE,
63 static unsigned int
64 ebt_nat_in(unsigned int hook, struct sk_buff *skb, const struct net_device *in
65 , const struct net_device *out, int (*okfn)(struct sk_buff *))
67 return ebt_do_table(hook, skb, in, out, dev_net(in)->xt.frame_nat);
70 static unsigned int
71 ebt_nat_out(unsigned int hook, struct sk_buff *skb, const struct net_device *in
72 , const struct net_device *out, int (*okfn)(struct sk_buff *))
74 return ebt_do_table(hook, skb, in, out, dev_net(out)->xt.frame_nat);
77 static struct nf_hook_ops ebt_ops_nat[] __read_mostly = {
79 .hook = ebt_nat_out,
80 .owner = THIS_MODULE,
81 .pf = PF_BRIDGE,
82 .hooknum = NF_BR_LOCAL_OUT,
83 .priority = NF_BR_PRI_NAT_DST_OTHER,
86 .hook = ebt_nat_out,
87 .owner = THIS_MODULE,
88 .pf = PF_BRIDGE,
89 .hooknum = NF_BR_POST_ROUTING,
90 .priority = NF_BR_PRI_NAT_SRC,
93 .hook = ebt_nat_in,
94 .owner = THIS_MODULE,
95 .pf = PF_BRIDGE,
96 .hooknum = NF_BR_PRE_ROUTING,
97 .priority = NF_BR_PRI_NAT_DST_BRIDGED,
101 static int __net_init frame_nat_net_init(struct net *net)
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;
109 static void __net_exit frame_nat_net_exit(struct net *net)
111 ebt_unregister_table(net->xt.frame_nat);
114 static struct pernet_operations frame_nat_net_ops = {
115 .init = frame_nat_net_init,
116 .exit = frame_nat_net_exit,
119 static int __init ebtable_nat_init(void)
121 int ret;
123 ret = register_pernet_subsys(&frame_nat_net_ops);
124 if (ret < 0)
125 return ret;
126 ret = nf_register_hooks(ebt_ops_nat, ARRAY_SIZE(ebt_ops_nat));
127 if (ret < 0)
128 unregister_pernet_subsys(&frame_nat_net_ops);
129 return ret;
132 static void __exit ebtable_nat_fini(void)
134 nf_unregister_hooks(ebt_ops_nat, ARRAY_SIZE(ebt_ops_nat));
135 unregister_pernet_subsys(&frame_nat_net_ops);
138 module_init(ebtable_nat_init);
139 module_exit(ebtable_nat_fini);
140 MODULE_LICENSE("GPL");