br.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 *skb);
  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. err = br_fdb_init();
  34. if (err)
  35. goto err_out;
  36. err = br_netfilter_init();
  37. if (err)
  38. goto err_out1;
  39. err = register_netdevice_notifier(&br_device_notifier);
  40. if (err)
  41. goto err_out2;
  42. err = br_netlink_init();
  43. if (err)
  44. goto err_out3;
  45. brioctl_set(br_ioctl_deviceless_stub);
  46. br_handle_frame_hook = br_handle_frame;
  47. br_fdb_get_hook = br_fdb_get;
  48. br_fdb_put_hook = br_fdb_put;
  49. return 0;
  50. err_out3:
  51. unregister_netdevice_notifier(&br_device_notifier);
  52. err_out2:
  53. br_netfilter_fini();
  54. err_out1:
  55. br_fdb_fini();
  56. err_out:
  57. llc_sap_put(br_stp_sap);
  58. return err;
  59. }
  60. static void __exit br_deinit(void)
  61. {
  62. rcu_assign_pointer(br_stp_sap->rcv_func, NULL);
  63. br_netlink_fini();
  64. br_netfilter_fini();
  65. unregister_netdevice_notifier(&br_device_notifier);
  66. brioctl_set(NULL);
  67. br_cleanup_bridges();
  68. synchronize_net();
  69. llc_sap_put(br_stp_sap);
  70. br_fdb_get_hook = NULL;
  71. br_fdb_put_hook = NULL;
  72. br_handle_frame_hook = NULL;
  73. br_fdb_fini();
  74. }
  75. EXPORT_SYMBOL(br_should_route_hook);
  76. module_init(br_init)
  77. module_exit(br_deinit)
  78. MODULE_LICENSE("GPL");
  79. MODULE_VERSION(BR_VERSION);