blob: 76340bdd052e92ef9a801bd67e654dc667281d32 [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
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -070038 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +020039 return NOTIFY_DONE;
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 /* not a port of a bridge */
42 if (p == NULL)
43 return NOTIFY_DONE;
44
45 br = p->br;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 switch (event) {
48 case NETDEV_CHANGEMTU:
49 dev_set_mtu(br->dev, br_min_mtu(br));
50 break;
51
52 case NETDEV_CHANGEADDR:
Stephen Hemminger269def72007-02-22 01:10:18 -080053 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 br_fdb_changeaddr(p, dev->dev_addr);
55 br_stp_recalculate_bridge_id(br);
Stephen Hemminger269def72007-02-22 01:10:18 -080056 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 break;
58
Stephen Hemminger4433f422005-12-20 15:19:51 -080059 case NETDEV_CHANGE:
Stephen Hemminger269def72007-02-22 01:10:18 -080060 br_port_carrier_check(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 break;
62
Stephen Hemminger81d35302005-05-29 14:15:17 -070063 case NETDEV_FEAT_CHANGE:
Stephen Hemminger269def72007-02-22 01:10:18 -080064 spin_lock_bh(&br->lock);
65 if (netif_running(br->dev))
Stephen Hemminger81d35302005-05-29 14:15:17 -070066 br_features_recompute(br);
Stephen Hemminger269def72007-02-22 01:10:18 -080067 spin_unlock_bh(&br->lock);
Stephen Hemminger81d35302005-05-29 14:15:17 -070068 break;
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 case NETDEV_DOWN:
Stephen Hemminger269def72007-02-22 01:10:18 -080071 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (br->dev->flags & IFF_UP)
73 br_stp_disable_port(p);
Stephen Hemminger269def72007-02-22 01:10:18 -080074 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 break;
76
77 case NETDEV_UP:
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070078 if (netif_carrier_ok(dev) && (br->dev->flags & IFF_UP)) {
79 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 br_stp_enable_port(p);
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070081 spin_unlock_bh(&br->lock);
82 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 break;
84
85 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 br_del_if(br, dev);
Stephen Hemminger269def72007-02-22 01:10:18 -080087 break;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070090 /* Events that may cause spanning tree to refresh */
91 if (event == NETDEV_CHANGEADDR || event == NETDEV_UP ||
92 event == NETDEV_CHANGE || event == NETDEV_DOWN)
93 br_ifinfo_notify(RTM_NEWLINK, p);
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return NOTIFY_DONE;
96}