blob: 763a3ec292e599081ad04394fde8d1e9914a2ea3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Device event handling
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#include <linux/kernel.h>
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070015#include <linux/rtnetlink.h>
Eric W. Biedermane9dc8652007-09-12 13:02:17 +020016#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include "br_private.h"
19
20static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr);
21
22struct notifier_block br_device_notifier = {
23 .notifier_call = br_device_event
24};
25
26/*
27 * Handle changes in state of network devices enslaved to a bridge.
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * Note: don't care about up/down if bridge itself is down, because
30 * port state is checked when bridge is brought up.
31 */
32static int br_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
33{
34 struct net_device *dev = ptr;
35 struct net_bridge_port *p = dev->br_port;
36 struct net_bridge *br;
37
38 /* not a port of a bridge */
39 if (p == NULL)
40 return NOTIFY_DONE;
41
42 br = p->br;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 switch (event) {
45 case NETDEV_CHANGEMTU:
46 dev_set_mtu(br->dev, br_min_mtu(br));
47 break;
48
49 case NETDEV_CHANGEADDR:
Stephen Hemminger269def72007-02-22 01:10:18 -080050 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 br_fdb_changeaddr(p, dev->dev_addr);
52 br_stp_recalculate_bridge_id(br);
Stephen Hemminger269def72007-02-22 01:10:18 -080053 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 break;
55
Stephen Hemminger4433f422005-12-20 15:19:51 -080056 case NETDEV_CHANGE:
Stephen Hemminger269def72007-02-22 01:10:18 -080057 br_port_carrier_check(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 break;
59
Stephen Hemminger81d35302005-05-29 14:15:17 -070060 case NETDEV_FEAT_CHANGE:
Stephen Hemminger269def72007-02-22 01:10:18 -080061 spin_lock_bh(&br->lock);
62 if (netif_running(br->dev))
Stephen Hemminger81d35302005-05-29 14:15:17 -070063 br_features_recompute(br);
Stephen Hemminger269def72007-02-22 01:10:18 -080064 spin_unlock_bh(&br->lock);
Stephen Hemminger81d35302005-05-29 14:15:17 -070065 break;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 case NETDEV_DOWN:
Stephen Hemminger269def72007-02-22 01:10:18 -080068 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (br->dev->flags & IFF_UP)
70 br_stp_disable_port(p);
Stephen Hemminger269def72007-02-22 01:10:18 -080071 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 break;
73
74 case NETDEV_UP:
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070075 if (netif_carrier_ok(dev) && (br->dev->flags & IFF_UP)) {
76 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 br_stp_enable_port(p);
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070078 spin_unlock_bh(&br->lock);
79 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 break;
81
82 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 br_del_if(br, dev);
Stephen Hemminger269def72007-02-22 01:10:18 -080084 break;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070087 /* Events that may cause spanning tree to refresh */
88 if (event == NETDEV_CHANGEADDR || event == NETDEV_UP ||
89 event == NETDEV_CHANGE || event == NETDEV_DOWN)
90 br_ifinfo_notify(RTM_NEWLINK, p);
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return NOTIFY_DONE;
93}