5 * Bart De Schuymer <bdschuym@pandora.be>
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
[] =
28 .name
= "POSTROUTING",
33 static struct ebt_replace_kernel initial_table
=
36 .valid_hooks
= NAT_VALID_HOOKS
,
37 .entries_size
= 3 * sizeof(struct ebt_entries
),
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
)
53 static struct ebt_table frame_nat
=
56 .table
= &initial_table
,
57 .valid_hooks
= NAT_VALID_HOOKS
,
58 .lock
= RW_LOCK_UNLOCKED
,
64 ebt_nat_dst(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
, &frame_nat
);
71 ebt_nat_src(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
, &frame_nat
);
77 static struct nf_hook_ops ebt_ops_nat
[] __read_mostly
= {
82 .hooknum
= NF_BR_LOCAL_OUT
,
83 .priority
= NF_BR_PRI_NAT_DST_OTHER
,
89 .hooknum
= NF_BR_POST_ROUTING
,
90 .priority
= NF_BR_PRI_NAT_SRC
,
96 .hooknum
= NF_BR_PRE_ROUTING
,
97 .priority
= NF_BR_PRI_NAT_DST_BRIDGED
,
101 static int __init
ebtable_nat_init(void)
105 ret
= ebt_register_table(&frame_nat
);
108 for (i
= 0; i
< ARRAY_SIZE(ebt_ops_nat
); i
++)
109 if ((ret
= nf_register_hook(&ebt_ops_nat
[i
])) < 0)
113 for (j
= 0; j
< i
; j
++)
114 nf_unregister_hook(&ebt_ops_nat
[j
]);
115 ebt_unregister_table(&frame_nat
);
119 static void __exit
ebtable_nat_fini(void)
123 for (i
= 0; i
< ARRAY_SIZE(ebt_ops_nat
); i
++)
124 nf_unregister_hook(&ebt_ops_nat
[i
]);
125 ebt_unregister_table(&frame_nat
);
128 module_init(ebtable_nat_init
);
129 module_exit(ebtable_nat_fini
);
130 MODULE_LICENSE("GPL");