9 * This table lets you choose between routing and bridging for frames
10 * entering on a bridge enslaved nic. This table is traversed before any
11 * other ebtables table. See net/bridge/br_input.c.
14 #include <linux/netfilter_bridge/ebtables.h>
15 #include <linux/module.h>
16 #include <linux/if_bridge.h>
18 /* EBT_ACCEPT means the frame will be bridged
19 * EBT_DROP means the frame will be routed
21 static struct ebt_entries initial_chain = {
26 static struct ebt_replace_kernel initial_table = {
28 .valid_hooks = 1 << NF_BR_BROUTING,
29 .entries_size = sizeof(struct ebt_entries),
31 [NF_BR_BROUTING] = &initial_chain,
33 .entries = (char *)&initial_chain,
36 static int check(const struct ebt_table_info *info, unsigned int valid_hooks)
38 if (valid_hooks & ~(1 << NF_BR_BROUTING))
43 static const struct ebt_table broute_table = {
45 .table = &initial_table,
46 .valid_hooks = 1 << NF_BR_BROUTING,
51 static int ebt_broute(struct sk_buff *skb)
55 ret = ebt_do_table(NF_BR_BROUTING, skb, skb->dev, NULL,
56 dev_net(skb->dev)->xt.broute_table);
58 return 1; /* route it */
59 return 0; /* bridge it */
62 static int __net_init broute_net_init(struct net *net)
64 net->xt.broute_table = ebt_register_table(net, &broute_table);
65 return PTR_ERR_OR_ZERO(net->xt.broute_table);
68 static void __net_exit broute_net_exit(struct net *net)
70 ebt_unregister_table(net, net->xt.broute_table);
73 static struct pernet_operations broute_net_ops = {
74 .init = broute_net_init,
75 .exit = broute_net_exit,
78 static int __init ebtable_broute_init(void)
82 ret = register_pernet_subsys(&broute_net_ops);
86 RCU_INIT_POINTER(br_should_route_hook,
87 (br_should_route_hook_t *)ebt_broute);
91 static void __exit ebtable_broute_fini(void)
93 RCU_INIT_POINTER(br_should_route_hook, NULL);
95 unregister_pernet_subsys(&broute_net_ops);
98 module_init(ebtable_broute_init);
99 module_exit(ebtable_broute_fini);
100 MODULE_LICENSE("GPL");