br.c 1.95 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *	Generic parts
 *	Linux ethernet bridge
 *
 *	Authors:
 *	Lennert Buytenhek		<buytenh@gnu.org>
 *
 *	$Id: br.c,v 1.47 2001/12/24 00:56:41 davem Exp $
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; either version
 *	2 of the License, or (at your option) any later version.
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/init.h>
21 22
#include <linux/llc.h>
#include <net/llc.h>
Linus Torvalds's avatar
Linus Torvalds committed
23 24 25

#include "br_private.h"

26
int (*br_should_route_hook)(struct sk_buff *skb);
Linus Torvalds's avatar
Linus Torvalds committed
27

28 29
static struct llc_sap *br_stp_sap;

Linus Torvalds's avatar
Linus Torvalds committed
30 31
static int __init br_init(void)
{
32 33
	int err;

34 35 36
	br_stp_sap = llc_sap_open(LLC_SAP_BSPAN, br_stp_rcv);
	if (!br_stp_sap) {
		printk(KERN_ERR "bridge: can't register sap for STP\n");
37
		return -EADDRINUSE;
38 39
	}

40 41
	err = br_fdb_init();
	if (err)
42
		goto err_out;
Linus Torvalds's avatar
Linus Torvalds committed
43

44 45 46 47 48 49 50 51
	err = br_netfilter_init();
	if (err)
		goto err_out1;

	err = register_netdevice_notifier(&br_device_notifier);
	if (err)
		goto err_out2;

52 53 54 55
	err = br_netlink_init();
	if (err)
		goto err_out3;

Linus Torvalds's avatar
Linus Torvalds committed
56 57 58 59 60 61 62
	brioctl_set(br_ioctl_deviceless_stub);
	br_handle_frame_hook = br_handle_frame;

	br_fdb_get_hook = br_fdb_get;
	br_fdb_put_hook = br_fdb_put;

	return 0;
63 64
err_out3:
	unregister_netdevice_notifier(&br_device_notifier);
65 66 67
err_out2:
	br_netfilter_fini();
err_out1:
68 69
	br_fdb_fini();
err_out:
70 71
	llc_sap_put(br_stp_sap);
	return err;
Linus Torvalds's avatar
Linus Torvalds committed
72 73 74 75
}

static void __exit br_deinit(void)
{
76
	rcu_assign_pointer(br_stp_sap->rcv_func, NULL);
77

78
	br_netlink_fini();
Linus Torvalds's avatar
Linus Torvalds committed
79 80 81 82 83 84 85
	unregister_netdevice_notifier(&br_device_notifier);
	brioctl_set(NULL);

	br_cleanup_bridges();

	synchronize_net();

86
	br_netfilter_fini();
87
	llc_sap_put(br_stp_sap);
Linus Torvalds's avatar
Linus Torvalds committed
88 89 90 91 92 93 94 95 96 97 98 99
	br_fdb_get_hook = NULL;
	br_fdb_put_hook = NULL;

	br_handle_frame_hook = NULL;
	br_fdb_fini();
}

EXPORT_SYMBOL(br_should_route_hook);

module_init(br_init)
module_exit(br_deinit)
MODULE_LICENSE("GPL");
100
MODULE_VERSION(BR_VERSION);