blob: 573acdf6f9ff1ca8469f0008ebcbe192a5907d22 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic parts
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/netdevice.h>
17#include <linux/etherdevice.h>
18#include <linux/init.h>
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -080019#include <linux/llc.h>
20#include <net/llc.h>
Patrick McHardy7c85fbf2008-07-05 21:25:56 -070021#include <net/stp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include "br_private.h"
24
Herbert Xu3db05fe2007-10-15 00:53:15 -070025int (*br_should_route_hook)(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Patrick McHardy7c85fbf2008-07-05 21:25:56 -070027static const struct stp_proto br_stp_proto = {
28 .rcv = br_stp_rcv,
29};
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -080030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int __init br_init(void)
32{
Stephen Hemmingerc0909712006-05-25 15:59:33 -070033 int err;
34
Patrick McHardy7c85fbf2008-07-05 21:25:56 -070035 err = stp_proto_register(&br_stp_proto);
36 if (err < 0) {
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -080037 printk(KERN_ERR "bridge: can't register sap for STP\n");
Patrick McHardy7c85fbf2008-07-05 21:25:56 -070038 return err;
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -080039 }
40
Akinobu Mita87a596e2007-04-07 18:57:07 +090041 err = br_fdb_init();
42 if (err)
Pavel Emelyanov17efdd42007-11-29 23:41:43 +110043 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Stephen Hemmingerc0909712006-05-25 15:59:33 -070045 err = br_netfilter_init();
46 if (err)
47 goto err_out1;
48
49 err = register_netdevice_notifier(&br_device_notifier);
50 if (err)
51 goto err_out2;
52
Thomas Graf32fe21c2007-03-22 11:59:03 -070053 err = br_netlink_init();
54 if (err)
55 goto err_out3;
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 brioctl_set(br_ioctl_deviceless_stub);
58 br_handle_frame_hook = br_handle_frame;
59
60 br_fdb_get_hook = br_fdb_get;
61 br_fdb_put_hook = br_fdb_put;
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return 0;
Thomas Graf32fe21c2007-03-22 11:59:03 -070064err_out3:
65 unregister_netdevice_notifier(&br_device_notifier);
Stephen Hemmingerc0909712006-05-25 15:59:33 -070066err_out2:
67 br_netfilter_fini();
68err_out1:
Pavel Emelyanov17efdd42007-11-29 23:41:43 +110069 br_fdb_fini();
70err_out:
Patrick McHardy7c85fbf2008-07-05 21:25:56 -070071 stp_proto_unregister(&br_stp_proto);
Stephen Hemmingerc0909712006-05-25 15:59:33 -070072 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75static void __exit br_deinit(void)
76{
Patrick McHardy7c85fbf2008-07-05 21:25:56 -070077 stp_proto_unregister(&br_stp_proto);
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -080078
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070079 br_netlink_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 unregister_netdevice_notifier(&br_device_notifier);
81 brioctl_set(NULL);
82
83 br_cleanup_bridges();
84
85 synchronize_net();
86
Bodo Stroesserd69efb12008-04-29 03:18:13 -070087 br_netfilter_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 br_fdb_get_hook = NULL;
89 br_fdb_put_hook = NULL;
90
91 br_handle_frame_hook = NULL;
92 br_fdb_fini();
93}
94
95EXPORT_SYMBOL(br_should_route_hook);
96
97module_init(br_init)
98module_exit(br_deinit)
99MODULE_LICENSE("GPL");
Stephen Hemminger8cbb512e2005-12-21 19:01:30 -0800100MODULE_VERSION(BR_VERSION);