br.c 1.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *	Generic parts
 *	Linux ethernet bridge
 *
 *	Authors:
 *	Lennert Buytenhek		<buytenh@gnu.org>
 *
 *	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>
19 20
#include <linux/llc.h>
#include <net/llc.h>
L
Linus Torvalds 已提交
21 22 23

#include "br_private.h"

24
int (*br_should_route_hook)(struct sk_buff *skb);
L
Linus Torvalds 已提交
25

26 27
static struct llc_sap *br_stp_sap;

L
Linus Torvalds 已提交
28 29
static int __init br_init(void)
{
30 31
	int err;

32 33 34
	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");
35
		return -EADDRINUSE;
36 37
	}

38 39
	err = br_fdb_init();
	if (err)
40
		goto err_out;
L
Linus Torvalds 已提交
41

42 43 44 45 46 47 48 49
	err = br_netfilter_init();
	if (err)
		goto err_out1;

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

50 51 52 53
	err = br_netlink_init();
	if (err)
		goto err_out3;

L
Linus Torvalds 已提交
54 55 56 57 58 59 60
	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;
61 62
err_out3:
	unregister_netdevice_notifier(&br_device_notifier);
63 64 65
err_out2:
	br_netfilter_fini();
err_out1:
66 67
	br_fdb_fini();
err_out:
68 69
	llc_sap_put(br_stp_sap);
	return err;
L
Linus Torvalds 已提交
70 71 72 73
}

static void __exit br_deinit(void)
{
74
	rcu_assign_pointer(br_stp_sap->rcv_func, NULL);
75

76
	br_netlink_fini();
L
Linus Torvalds 已提交
77 78 79 80 81 82 83
	unregister_netdevice_notifier(&br_device_notifier);
	brioctl_set(NULL);

	br_cleanup_bridges();

	synchronize_net();

84
	br_netfilter_fini();
85
	llc_sap_put(br_stp_sap);
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93 94 95 96 97
	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");
S
Stephen Hemminger 已提交
98
MODULE_VERSION(BR_VERSION);