br.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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/config.h>
  16. #include <linux/module.h>
  17. #include <linux/kernel.h>
  18. #include <linux/netdevice.h>
  19. #include <linux/etherdevice.h>
  20. #include <linux/init.h>
  21. #include <linux/llc.h>
  22. #include <net/llc.h>
  23. #include "br_private.h"
  24. int (*br_should_route_hook) (struct sk_buff **pskb) = NULL;
  25. static struct llc_sap *br_stp_sap;
  26. static int __init br_init(void)
  27. {
  28. int err;
  29. br_stp_sap = llc_sap_open(LLC_SAP_BSPAN, br_stp_rcv);
  30. if (!br_stp_sap) {
  31. printk(KERN_ERR "bridge: can't register sap for STP\n");
  32. return -EADDRINUSE;
  33. }
  34. br_fdb_init();
  35. err = br_netfilter_init();
  36. if (err)
  37. goto err_out1;
  38. err = register_netdevice_notifier(&br_device_notifier);
  39. if (err)
  40. goto err_out2;
  41. br_netlink_init();
  42. brioctl_set(br_ioctl_deviceless_stub);
  43. br_handle_frame_hook = br_handle_frame;
  44. br_fdb_get_hook = br_fdb_get;
  45. br_fdb_put_hook = br_fdb_put;
  46. return 0;
  47. err_out2:
  48. br_netfilter_fini();
  49. err_out1:
  50. llc_sap_put(br_stp_sap);
  51. return err;
  52. }
  53. static void __exit br_deinit(void)
  54. {
  55. rcu_assign_pointer(br_stp_sap->rcv_func, NULL);
  56. br_netlink_fini();
  57. br_netfilter_fini();
  58. unregister_netdevice_notifier(&br_device_notifier);
  59. brioctl_set(NULL);
  60. br_cleanup_bridges();
  61. synchronize_net();
  62. llc_sap_put(br_stp_sap);
  63. br_fdb_get_hook = NULL;
  64. br_fdb_put_hook = NULL;
  65. br_handle_frame_hook = NULL;
  66. br_fdb_fini();
  67. }
  68. EXPORT_SYMBOL(br_should_route_hook);
  69. module_init(br_init)
  70. module_exit(br_deinit)
  71. MODULE_LICENSE("GPL");
  72. MODULE_VERSION(BR_VERSION);