blob: 717e1fd6133cbfcd3815e7f13d912597524faa9f [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;
Simon Arlotte0f43752010-05-10 09:31:11 +000037 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39 /* not a port of a bridge */
40 if (p == NULL)
41 return NOTIFY_DONE;
42
43 br = p->br;
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 switch (event) {
46 case NETDEV_CHANGEMTU:
47 dev_set_mtu(br->dev, br_min_mtu(br));
48 break;
49
50 case NETDEV_CHANGEADDR:
Stephen Hemminger269def72007-02-22 01:10:18 -080051 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 br_fdb_changeaddr(p, dev->dev_addr);
53 br_stp_recalculate_bridge_id(br);
Stephen Hemminger269def72007-02-22 01:10:18 -080054 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 break;
56
Stephen Hemminger4433f422005-12-20 15:19:51 -080057 case NETDEV_CHANGE:
Stephen Hemminger269def72007-02-22 01:10:18 -080058 br_port_carrier_check(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 break;
60
Stephen Hemminger81d35302005-05-29 14:15:17 -070061 case NETDEV_FEAT_CHANGE:
Stephen Hemminger269def72007-02-22 01:10:18 -080062 spin_lock_bh(&br->lock);
63 if (netif_running(br->dev))
Stephen Hemminger81d35302005-05-29 14:15:17 -070064 br_features_recompute(br);
Stephen Hemminger269def72007-02-22 01:10:18 -080065 spin_unlock_bh(&br->lock);
Stephen Hemminger81d35302005-05-29 14:15:17 -070066 break;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 case NETDEV_DOWN:
Stephen Hemminger269def72007-02-22 01:10:18 -080069 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (br->dev->flags & IFF_UP)
71 br_stp_disable_port(p);
Stephen Hemminger269def72007-02-22 01:10:18 -080072 spin_unlock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 break;
74
75 case NETDEV_UP:
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070076 if (netif_carrier_ok(dev) && (br->dev->flags & IFF_UP)) {
77 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 br_stp_enable_port(p);
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070079 spin_unlock_bh(&br->lock);
80 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 break;
82
83 case NETDEV_UNREGISTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 br_del_if(br, dev);
Stephen Hemminger269def72007-02-22 01:10:18 -080085 break;
Jiri Pirko1c01fe12010-03-10 10:30:19 +000086
Simon Arlotte0f43752010-05-10 09:31:11 +000087 case NETDEV_CHANGENAME:
88 err = br_sysfs_renameif(p);
89 if (err)
90 return notifier_from_errno(err);
91 break;
92
Jiri Pirko1c01fe12010-03-10 10:30:19 +000093 case NETDEV_PRE_TYPE_CHANGE:
94 /* Forbid underlaying device to change its type. */
95 return NOTIFY_BAD;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Stephen Hemmingerb86c4502007-03-22 14:08:46 -070098 /* Events that may cause spanning tree to refresh */
99 if (event == NETDEV_CHANGEADDR || event == NETDEV_UP ||
100 event == NETDEV_CHANGE || event == NETDEV_DOWN)
101 br_ifinfo_notify(RTM_NEWLINK, p);
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return NOTIFY_DONE;
104}