br.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Generic parts
  3. * Linux ethernet bridge
  4. *
  5. * Authors:
  6. * Lennert Buytenhek <buytenh@gnu.org>
  7. *
  8. * $Id: br.c,v 1.47 2001/12/24 00:56:41 davem Exp $
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. */
  15. #include <linux/module.h>
  16. #include <linux/kernel.h>
  17. #include <linux/netdevice.h>
  18. #include <linux/etherdevice.h>
  19. #include <linux/init.h>
  20. #include <linux/llc.h>
  21. #include <net/llc.h>
  22. #include "br_private.h"
  23. int (*br_should_route_hook) (struct sk_buff **pskb) = NULL;
  24. static struct llc_sap *br_stp_sap;
  25. static int __init br_init(void)
  26. {
  27. int err;
  28. br_stp_sap = llc_sap_open(LLC_SAP_BSPAN, br_stp_rcv);
  29. if (!br_stp_sap) {
  30. printk(KERN_ERR "bridge: can't register sap for STP\n");
  31. return -EADDRINUSE;
  32. }
  33. br_fdb_init();
  34. err = br_netfilter_init();
  35. if (err)
  36. goto err_out1;
  37. err = register_netdevice_notifier(&br_device_notifier);
  38. if (err)
  39. goto err_out2;
  40. br_netlink_init();
  41. brioctl_set(br_ioctl_deviceless_stub);
  42. br_handle_frame_hook = br_handle_frame;
  43. br_fdb_get_hook = br_fdb_get;
  44. br_fdb_put_hook = br_fdb_put;
  45. return 0;
  46. err_out2:
  47. br_netfilter_fini();
  48. err_out1:
  49. llc_sap_put(br_stp_sap);
  50. return err;
  51. }
  52. static void __exit br_deinit(void)
  53. {
  54. rcu_assign_pointer(br_stp_sap->rcv_func, NULL);
  55. br_netlink_fini();
  56. br_netfilter_fini();
  57. unregister_netdevice_notifier(&br_device_notifier);
  58. brioctl_set(NULL);
  59. br_cleanup_bridges();
  60. synchronize_net();
  61. llc_sap_put(br_stp_sap);
  62. br_fdb_get_hook = NULL;
  63. br_fdb_put_hook = NULL;
  64. br_handle_frame_hook = NULL;
  65. br_fdb_fini();
  66. }
  67. EXPORT_SYMBOL(br_should_route_hook);
  68. module_init(br_init)
  69. module_exit(br_deinit)
  70. MODULE_LICENSE("GPL");
  71. MODULE_VERSION(BR_VERSION);