blob: ec94c6f1ae881461bb1c72fc7a8965c335de73fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ebtable_broute
3 *
4 * Authors:
5 * Bart De Schuymer <bdschuym@pandora.be>
6 *
7 * April, 2002
8 *
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.
12 */
13
14#include <linux/netfilter_bridge/ebtables.h>
15#include <linux/module.h>
16#include <linux/if_bridge.h>
17
18/* EBT_ACCEPT means the frame will be bridged
19 * EBT_DROP means the frame will be routed
20 */
21static struct ebt_entries initial_chain = {
22 .name = "BROUTING",
23 .policy = EBT_ACCEPT,
24};
25
tanxiaojun97ad8b52013-12-19 13:28:14 +080026static struct ebt_replace_kernel initial_table = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 .name = "broute",
28 .valid_hooks = 1 << NF_BR_BROUTING,
29 .entries_size = sizeof(struct ebt_entries),
30 .hook_entry = {
31 [NF_BR_BROUTING] = &initial_chain,
32 },
33 .entries = (char *)&initial_chain,
34};
35
36static int check(const struct ebt_table_info *info, unsigned int valid_hooks)
37{
38 if (valid_hooks & ~(1 << NF_BR_BROUTING))
39 return -EINVAL;
40 return 0;
41}
42
tanxiaojun97ad8b52013-12-19 13:28:14 +080043static const struct ebt_table broute_table = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .name = "broute",
45 .table = &initial_table,
46 .valid_hooks = 1 << NF_BR_BROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .check = check,
48 .me = THIS_MODULE,
49};
50
Herbert Xu3db05fe2007-10-15 00:53:15 -070051static int ebt_broute(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Eric W. Biederman97b59c32015-09-18 14:32:54 -050053 struct nf_hook_state state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 int ret;
55
Eric W. Biederman97b59c32015-09-18 14:32:54 -050056 nf_hook_state_init(&state, NULL, NF_BR_BROUTING, INT_MIN,
57 NFPROTO_BRIDGE, skb->dev, NULL, NULL,
58 dev_net(skb->dev), NULL);
59
60 ret = ebt_do_table(skb, &state, state.net->xt.broute_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 if (ret == NF_DROP)
62 return 1; /* route it */
63 return 0; /* bridge it */
64}
65
Alexey Dobriyan8157e6d2008-11-04 14:29:03 +010066static int __net_init broute_net_init(struct net *net)
67{
68 net->xt.broute_table = ebt_register_table(net, &broute_table);
Rusty Russell8c6ffba2013-07-15 11:20:32 +093069 return PTR_ERR_OR_ZERO(net->xt.broute_table);
Alexey Dobriyan8157e6d2008-11-04 14:29:03 +010070}
71
72static void __net_exit broute_net_exit(struct net *net)
73{
Alexey Dobriyanf54e9362010-01-18 08:25:47 +010074 ebt_unregister_table(net, net->xt.broute_table);
Alexey Dobriyan8157e6d2008-11-04 14:29:03 +010075}
76
77static struct pernet_operations broute_net_ops = {
78 .init = broute_net_init,
79 .exit = broute_net_exit,
80};
81
Andrew Morton65b4b4e2006-03-28 16:37:06 -080082static int __init ebtable_broute_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Alexey Dobriyan8157e6d2008-11-04 14:29:03 +010084 int ret;
85
86 ret = register_pernet_subsys(&broute_net_ops);
87 if (ret < 0)
88 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 /* see br_input.c */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000090 RCU_INIT_POINTER(br_should_route_hook,
Eric Dumazeta386f992010-11-15 06:38:11 +000091 (br_should_route_hook_t *)ebt_broute);
Alexey Dobriyan6beceee2008-11-04 14:27:15 +010092 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Andrew Morton65b4b4e2006-03-28 16:37:06 -080095static void __exit ebtable_broute_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000097 RCU_INIT_POINTER(br_should_route_hook, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 synchronize_net();
Alexey Dobriyan8157e6d2008-11-04 14:29:03 +010099 unregister_pernet_subsys(&broute_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800102module_init(ebtable_broute_init);
103module_exit(ebtable_broute_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104MODULE_LICENSE("GPL");