blob: a08d2b8ebba63358979d517ee993d7ed3895ef41 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Userspace interface
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>
15#include <linux/netdevice.h>
stephen hemminger77f98592011-09-30 14:37:26 +000016#include <linux/etherdevice.h>
WANG Congc06ee962010-05-06 00:48:24 -070017#include <linux/netpoll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/ethtool.h>
19#include <linux/if_arp.h>
20#include <linux/module.h>
21#include <linux/init.h>
22#include <linux/rtnetlink.h>
Kris Katterjohn46f25df2006-01-05 16:35:42 -080023#include <linux/if_ether.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <net/sock.h>
Vlad Yasevich407af322013-02-13 12:00:12 +000026#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include "br_private.h"
29
30/*
31 * Determine initial path cost based on speed.
32 * using recommendations from 802.1d standard
33 *
Matthew Wilcox61a44b92007-07-31 14:00:02 -070034 * Since driver might sleep need to not be holding any locks.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
Stephen Hemminger4433f422005-12-20 15:19:51 -080036static int port_cost(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Jiri Pirkofa3df922011-09-01 03:29:38 +000038 struct ethtool_cmd ecmd;
Stephen Hemmingerb4a488d2007-08-30 22:16:22 -070039
Jiri Pirko4bc71cb2011-09-03 03:34:30 +000040 if (!__ethtool_get_settings(dev, &ecmd)) {
Jiri Pirkofa3df922011-09-01 03:29:38 +000041 switch (ethtool_cmd_speed(&ecmd)) {
42 case SPEED_10000:
43 return 2;
44 case SPEED_1000:
45 return 4;
46 case SPEED_100:
47 return 19;
48 case SPEED_10:
49 return 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 }
51 }
52
53 /* Old silly heuristics based on name */
54 if (!strncmp(dev->name, "lec", 3))
55 return 7;
56
57 if (!strncmp(dev->name, "plip", 4))
58 return 2500;
59
60 return 100; /* assume old 10Mbps */
61}
62
Stephen Hemminger4433f422005-12-20 15:19:51 -080063
tanxiaojun1a81a2e2013-12-16 21:32:46 +080064/* Check for port carrier transitions. */
Stephen Hemminger269def72007-02-22 01:10:18 -080065void br_port_carrier_check(struct net_bridge_port *p)
Stephen Hemminger4433f422005-12-20 15:19:51 -080066{
Stephen Hemminger269def72007-02-22 01:10:18 -080067 struct net_device *dev = p->dev;
68 struct net_bridge *br = p->br;
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080069
stephen hemminger8f3359b2013-04-13 14:06:07 +000070 if (!(p->flags & BR_ADMIN_COST) &&
71 netif_running(dev) && netif_oper_up(dev))
Stephen Hemminger6e86b892006-03-03 17:14:51 -080072 p->path_cost = port_cost(dev);
Stephen Hemminger4433f422005-12-20 15:19:51 -080073
stephen hemmingeraa7c6e52010-08-24 13:12:56 +000074 if (!netif_running(br->dev))
75 return;
76
77 spin_lock_bh(&br->lock);
stephen hemminger576eb622012-12-28 18:15:22 +000078 if (netif_running(dev) && netif_oper_up(dev)) {
stephen hemmingeraa7c6e52010-08-24 13:12:56 +000079 if (p->state == BR_STATE_DISABLED)
80 br_stp_enable_port(p);
81 } else {
82 if (p->state != BR_STATE_DISABLED)
83 br_stp_disable_port(p);
Stephen Hemminger4433f422005-12-20 15:19:51 -080084 }
stephen hemmingeraa7c6e52010-08-24 13:12:56 +000085 spin_unlock_bh(&br->lock);
Stephen Hemminger4433f422005-12-20 15:19:51 -080086}
87
Vlad Yasevich2796d0c2014-05-16 09:59:20 -040088static void br_port_set_promisc(struct net_bridge_port *p)
89{
90 int err = 0;
91
92 if (br_promisc_port(p))
93 return;
94
95 err = dev_set_promiscuity(p->dev, 1);
96 if (err)
97 return;
98
99 br_fdb_unsync_static(p->br, p);
100 p->flags |= BR_PROMISC;
101}
102
103static void br_port_clear_promisc(struct net_bridge_port *p)
104{
105 int err;
106
107 /* Check if the port is already non-promisc or if it doesn't
108 * support UNICAST filtering. Without unicast filtering support
109 * we'll end up re-enabling promisc mode anyway, so just check for
110 * it here.
111 */
112 if (!br_promisc_port(p) || !(p->dev->priv_flags & IFF_UNICAST_FLT))
113 return;
114
115 /* Since we'll be clearing the promisc mode, program the port
116 * first so that we don't have interruption in traffic.
117 */
118 err = br_fdb_sync_static(p->br, p);
119 if (err)
120 return;
121
122 dev_set_promiscuity(p->dev, -1);
123 p->flags &= ~BR_PROMISC;
124}
125
126/* When a port is added or removed or when certain port flags
127 * change, this function is called to automatically manage
128 * promiscuity setting of all the bridge ports. We are always called
129 * under RTNL so can skip using rcu primitives.
130 */
131void br_manage_promisc(struct net_bridge *br)
132{
133 struct net_bridge_port *p;
134 bool set_all = false;
135
136 /* If vlan filtering is disabled or bridge interface is placed
137 * into promiscuous mode, place all ports in promiscuous mode.
138 */
139 if ((br->dev->flags & IFF_PROMISC) || !br_vlan_enabled(br))
140 set_all = true;
141
142 list_for_each_entry(p, &br->port_list, list) {
143 if (set_all) {
144 br_port_set_promisc(p);
145 } else {
146 /* If the number of auto-ports is <= 1, then all other
147 * ports will have their output configuration
148 * statically specified through fdbs. Since ingress
149 * on the auto-port becomes forwarding/egress to other
150 * ports and egress configuration is statically known,
151 * we can say that ingress configuration of the
152 * auto-port is also statically known.
153 * This lets us disable promiscuous mode and write
154 * this config to hw.
155 */
156 if (br->auto_cnt <= br_auto_port(p))
157 br_port_clear_promisc(p);
158 else
159 br_port_set_promisc(p);
160 }
161 }
162}
163
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400164static void nbp_update_port_count(struct net_bridge *br)
165{
166 struct net_bridge_port *p;
167 u32 cnt = 0;
168
169 list_for_each_entry(p, &br->port_list, list) {
170 if (br_auto_port(p))
171 cnt++;
172 }
Vlad Yasevich2796d0c2014-05-16 09:59:20 -0400173 if (br->auto_cnt != cnt) {
174 br->auto_cnt = cnt;
175 br_manage_promisc(br);
176 }
177}
178
179static void nbp_delete_promisc(struct net_bridge_port *p)
180{
stephen hemminger025559e2014-05-16 20:46:17 -0700181 /* If port is currently promiscuous, unset promiscuity.
Vlad Yasevich2796d0c2014-05-16 09:59:20 -0400182 * Otherwise, it is a static port so remove all addresses
183 * from it.
184 */
185 dev_set_allmulti(p->dev, -1);
186 if (br_promisc_port(p))
187 dev_set_promiscuity(p->dev, -1);
188 else
189 br_fdb_unsync_static(p->br, p);
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400190}
191
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800192static void release_nbp(struct kobject *kobj)
193{
194 struct net_bridge_port *p
195 = container_of(kobj, struct net_bridge_port, kobj);
196 kfree(p);
197}
198
199static struct kobj_type brport_ktype = {
200#ifdef CONFIG_SYSFS
201 .sysfs_ops = &brport_sysfs_ops,
202#endif
203 .release = release_nbp,
204};
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static void destroy_nbp(struct net_bridge_port *p)
207{
208 struct net_device *dev = p->dev;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 p->br = NULL;
211 p->dev = NULL;
212 dev_put(dev);
213
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800214 kobject_put(&p->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217static void destroy_nbp_rcu(struct rcu_head *head)
218{
219 struct net_bridge_port *p =
220 container_of(head, struct net_bridge_port, rcu);
221 destroy_nbp(p);
222}
223
Stephen Hemminger3f4cfc22006-01-31 17:44:07 -0800224/* Delete port(interface) from bridge is done in two steps.
225 * via RCU. First step, marks device as down. That deletes
226 * all the timers and stops new packets from flowing through.
227 *
228 * Final cleanup doesn't occur until after all CPU's finished
229 * processing packets.
230 *
231 * Protected from multiple admin operations by RTNL mutex
232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static void del_nbp(struct net_bridge_port *p)
234{
235 struct net_bridge *br = p->br;
236 struct net_device *dev = p->dev;
237
Randy Dunlapb3bcb722010-05-18 12:26:27 -0700238 sysfs_remove_link(br->ifobj, p->dev->name);
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800239
Vlad Yasevich2796d0c2014-05-16 09:59:20 -0400240 nbp_delete_promisc(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 spin_lock_bh(&br->lock);
243 br_stp_disable_port(p);
244 spin_unlock_bh(&br->lock);
245
Stephen Hemmingerb86c4502007-03-22 14:08:46 -0700246 br_ifinfo_notify(RTM_DELLINK, p);
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 list_del_rcu(&p->list);
249
Vlad Yasevich2796d0c2014-05-16 09:59:20 -0400250 nbp_vlan_flush(p);
251 br_fdb_delete_by_port(br, p, 1);
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400252 nbp_update_port_count(br);
253
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000254 dev->priv_flags &= ~IFF_BRIDGE_PORT;
255
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000256 netdev_rx_handler_unregister(dev);
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -0800257
Jiri Pirko74fdd932013-01-03 22:48:54 +0000258 netdev_upper_dev_unlink(dev, br->dev);
Jiri Pirkoafc61512011-02-13 09:33:42 +0000259
Herbert Xu3fe2d7c2010-02-28 00:49:38 -0800260 br_multicast_del_port(p);
261
Stephen Hemminger125a12c2006-03-03 17:16:15 -0800262 kobject_uevent(&p->kobj, KOBJ_REMOVE);
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800263 kobject_del(&p->kobj);
264
Herbert Xu91d2c342010-06-10 16:12:50 +0000265 br_netpoll_disable(p);
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 call_rcu(&p->rcu, destroy_nbp_rcu);
268}
269
stephen hemminger1ce5cce2011-10-06 11:19:41 +0000270/* Delete bridge device */
271void br_dev_delete(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
stephen hemminger1ce5cce2011-10-06 11:19:41 +0000273 struct net_bridge *br = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct net_bridge_port *p, *n;
275
276 list_for_each_entry_safe(p, n, &br->port_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 del_nbp(p);
278 }
279
Ding Tianhongf8730422013-12-07 22:12:05 +0800280 br_fdb_delete_by_port(br, NULL, 1);
281
Toshiaki Makitab4e09b22013-11-13 17:26:14 +0900282 br_vlan_flush(br);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 del_timer_sync(&br->gc_timer);
284
285 br_sysfs_delbr(br->dev);
Eric Dumazet8c56ba02009-10-28 05:35:35 +0000286 unregister_netdevice_queue(br->dev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289/* find an available port number */
290static int find_portno(struct net_bridge *br)
291{
292 int index;
293 struct net_bridge_port *p;
294 unsigned long *inuse;
295
Stephen Hemminger3b781fa2006-03-20 22:56:50 -0800296 inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 GFP_KERNEL);
298 if (!inuse)
299 return -ENOMEM;
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 set_bit(0, inuse); /* zero is reserved */
302 list_for_each_entry(p, &br->port_list, list) {
303 set_bit(p->port_no, inuse);
304 }
305 index = find_first_zero_bit(inuse, BR_MAX_PORTS);
306 kfree(inuse);
307
308 return (index >= BR_MAX_PORTS) ? -EXFULL : index;
309}
310
Stephen Hemminger4433f422005-12-20 15:19:51 -0800311/* called with RTNL but without bridge lock */
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900312static struct net_bridge_port *new_nbp(struct net_bridge *br,
Stephen Hemminger4433f422005-12-20 15:19:51 -0800313 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 int index;
316 struct net_bridge_port *p;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 index = find_portno(br);
319 if (index < 0)
320 return ERR_PTR(index);
321
Stephen Hemmingercee48542006-03-20 22:57:03 -0800322 p = kzalloc(sizeof(*p), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (p == NULL)
324 return ERR_PTR(-ENOMEM);
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 p->br = br;
327 dev_hold(dev);
328 p->dev = dev;
Stephen Hemminger4433f422005-12-20 15:19:51 -0800329 p->path_cost = port_cost(dev);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900330 p->priority = 0x8000 >> BR_PORT_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 p->port_no = index;
Vlad Yasevich2796d0c2014-05-16 09:59:20 -0400332 p->flags = BR_LEARNING | BR_FLOOD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 br_init_port(p);
334 p->state = BR_STATE_DISABLED;
Stephen Hemmingerd32439c2006-03-03 17:15:34 -0800335 br_stp_port_timer_init(p);
Herbert Xu3fe2d7c2010-02-28 00:49:38 -0800336 br_multicast_add_port(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 return p;
339}
340
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700341int br_add_bridge(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct net_device *dev;
Eric Dumazet11f3a6b2011-08-22 06:05:59 +0000344 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
stephen hemmingerbb900b22011-04-04 14:03:32 +0000346 dev = alloc_netdev(sizeof(struct net_bridge), name,
347 br_dev_setup);
348
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900349 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return -ENOMEM;
351
stephen hemmingerbb900b22011-04-04 14:03:32 +0000352 dev_net_set(dev, net);
stephen hemminger149ddd82012-06-26 05:48:45 +0000353 dev->rtnl_link_ops = &br_link_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Eric Dumazet11f3a6b2011-08-22 06:05:59 +0000355 res = register_netdev(dev);
356 if (res)
357 free_netdev(dev);
358 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700361int br_del_bridge(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 struct net_device *dev;
364 int ret = 0;
365
366 rtnl_lock();
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700367 dev = __dev_get_by_name(net, name);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900368 if (dev == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 ret = -ENXIO; /* Could not find device */
370
371 else if (!(dev->priv_flags & IFF_EBRIDGE)) {
372 /* Attempt to delete non bridge device! */
373 ret = -EPERM;
374 }
375
376 else if (dev->flags & IFF_UP) {
377 /* Not shutdown yet. */
378 ret = -EBUSY;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900381 else
stephen hemminger1ce5cce2011-10-06 11:19:41 +0000382 br_dev_delete(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 rtnl_unlock();
385 return ret;
386}
387
Kris Katterjohn46f25df2006-01-05 16:35:42 -0800388/* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389int br_min_mtu(const struct net_bridge *br)
390{
391 const struct net_bridge_port *p;
392 int mtu = 0;
393
394 ASSERT_RTNL();
395
396 if (list_empty(&br->port_list))
Kris Katterjohn46f25df2006-01-05 16:35:42 -0800397 mtu = ETH_DATA_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 else {
399 list_for_each_entry(p, &br->port_list, list) {
400 if (!mtu || p->dev->mtu < mtu)
401 mtu = p->dev->mtu;
402 }
403 }
404 return mtu;
405}
406
Stephen Hemminger81d35302005-05-29 14:15:17 -0700407/*
408 * Recomputes features using slave's features
409 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000410netdev_features_t br_features_recompute(struct net_bridge *br,
411 netdev_features_t features)
Stephen Hemminger81d35302005-05-29 14:15:17 -0700412{
413 struct net_bridge_port *p;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000414 netdev_features_t mask;
Stephen Hemminger81d35302005-05-29 14:15:17 -0700415
Herbert Xub63365a2008-10-23 01:11:29 -0700416 if (list_empty(&br->port_list))
Michał Mirosławc4d27ef2011-04-22 06:31:16 +0000417 return features;
Herbert Xub63365a2008-10-23 01:11:29 -0700418
Michał Mirosławc4d27ef2011-04-22 06:31:16 +0000419 mask = features;
Herbert Xub63365a2008-10-23 01:11:29 -0700420 features &= ~NETIF_F_ONE_FOR_ALL;
Stephen Hemminger81d35302005-05-29 14:15:17 -0700421
422 list_for_each_entry(p, &br->port_list, list) {
Herbert Xub63365a2008-10-23 01:11:29 -0700423 features = netdev_increment_features(features,
424 p->dev->features, mask);
Stephen Hemminger81d35302005-05-29 14:15:17 -0700425 }
426
Michał Mirosławc4d27ef2011-04-22 06:31:16 +0000427 return features;
Stephen Hemminger81d35302005-05-29 14:15:17 -0700428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/* called with RTNL */
431int br_add_if(struct net_bridge *br, struct net_device *dev)
432{
433 struct net_bridge_port *p;
434 int err = 0;
stephen hemmingeredf947f2011-03-24 13:24:01 +0000435 bool changed_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Stephen Hemminger1056bd52009-11-05 20:46:52 -0800437 /* Don't allow bridging non-ethernet like devices */
438 if ((dev->flags & IFF_LOOPBACK) ||
stephen hemminger77f98592011-09-30 14:37:26 +0000439 dev->type != ARPHRD_ETHER || dev->addr_len != ETH_ALEN ||
440 !is_valid_ether_addr(dev->dev_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return -EINVAL;
442
Stephen Hemminger1056bd52009-11-05 20:46:52 -0800443 /* No bridging of bridges */
Stephen Hemminger00829822008-11-20 20:14:53 -0800444 if (dev->netdev_ops->ndo_start_xmit == br_dev_xmit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return -ELOOP;
446
Stephen Hemminger1056bd52009-11-05 20:46:52 -0800447 /* Device is already being bridged */
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000448 if (br_port_exists(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return -EBUSY;
450
Johannes Bergad4bb6f2009-11-19 00:56:30 +0100451 /* No bridging devices that dislike that (e.g. wireless) */
452 if (dev->priv_flags & IFF_DONT_BRIDGE)
453 return -EOPNOTSUPP;
454
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800455 p = new_nbp(br, dev);
456 if (IS_ERR(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return PTR_ERR(p);
458
Amerigo Wangbb8ed632011-05-19 21:39:11 +0000459 call_netdevice_notifiers(NETDEV_JOIN, dev);
460
Vlad Yasevich2796d0c2014-05-16 09:59:20 -0400461 err = dev_set_allmulti(dev, 1);
Wang Chenbc3f9072008-07-14 20:53:13 -0700462 if (err)
463 goto put_back;
464
Greg Kroah-Hartmane32cc732007-12-17 23:05:35 -0700465 err = kobject_init_and_add(&p->kobj, &brport_ktype, &(dev->dev.kobj),
466 SYSFS_BRIDGE_PORT_ATTR);
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800467 if (err)
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800468 goto err1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800470 err = br_sysfs_addif(p);
471 if (err)
472 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Eric W. Biedermana8779ec2014-03-27 15:36:38 -0700474 err = br_netpoll_enable(p);
stephen hemminger93d8bf92013-07-24 11:51:41 -0700475 if (err)
Herbert Xu91d2c342010-06-10 16:12:50 +0000476 goto err3;
477
Jiri Pirko74fdd932013-01-03 22:48:54 +0000478 err = netdev_master_upper_dev_link(dev, br->dev);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000479 if (err)
Gao feng9b1536c2012-12-19 23:41:43 +0000480 goto err4;
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000481
Jiri Pirkoafc61512011-02-13 09:33:42 +0000482 err = netdev_rx_handler_register(dev, br_handle_frame, p);
483 if (err)
Gao feng9b1536c2012-12-19 23:41:43 +0000484 goto err5;
Jiri Pirkoafc61512011-02-13 09:33:42 +0000485
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000486 dev->priv_flags |= IFF_BRIDGE_PORT;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000487
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700488 dev_disable_lro(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800490 list_add_rcu(&p->list, &br->port_list);
491
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400492 nbp_update_port_count(br);
493
Michał Mirosławc4d27ef2011-04-22 06:31:16 +0000494 netdev_update_features(br->dev);
495
Florian Fainellifd094802013-08-27 12:03:53 +0100496 if (br->dev->needed_headroom < dev->needed_headroom)
497 br->dev->needed_headroom = dev->needed_headroom;
498
Toshiaki Makitaa4b816d2014-02-07 16:48:21 +0900499 if (br_fdb_insert(br, p, dev->dev_addr, 0))
500 netdev_err(dev, "failed insert local address bridge forwarding table\n");
501
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800502 spin_lock_bh(&br->lock);
stephen hemmingeredf947f2011-03-24 13:24:01 +0000503 changed_addr = br_stp_recalculate_bridge_id(br);
Aji Srinivasde790592007-03-07 16:10:53 -0800504
stephen hemminger576eb622012-12-28 18:15:22 +0000505 if (netif_running(dev) && netif_oper_up(dev) &&
Aji Srinivasde790592007-03-07 16:10:53 -0800506 (br->dev->flags & IFF_UP))
507 br_stp_enable_port(p);
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800508 spin_unlock_bh(&br->lock);
509
Stephen Hemmingerb86c4502007-03-22 14:08:46 -0700510 br_ifinfo_notify(RTM_NEWLINK, p);
511
stephen hemmingeredf947f2011-03-24 13:24:01 +0000512 if (changed_addr)
stephen hemminger56139fc2011-07-22 07:47:08 +0000513 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
stephen hemmingeredf947f2011-03-24 13:24:01 +0000514
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800515 dev_set_mtu(br->dev, br_min_mtu(br));
Stephen Hemminger269def72007-02-22 01:10:18 -0800516
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800517 kobject_uevent(&p->kobj, KOBJ_ADD);
518
519 return 0;
Jiri Pirkoafc61512011-02-13 09:33:42 +0000520
Gao feng9b1536c2012-12-19 23:41:43 +0000521err5:
Jiri Pirko74fdd932013-01-03 22:48:54 +0000522 netdev_upper_dev_unlink(dev, br->dev);
Gao feng9b1536c2012-12-19 23:41:43 +0000523err4:
524 br_netpoll_disable(p);
Herbert Xu91d2c342010-06-10 16:12:50 +0000525err3:
526 sysfs_remove_link(br->ifobj, p->dev->name);
Stephen Hemmingerbab1dee2006-02-09 17:10:12 -0800527err2:
Xiaotian Fengc587aea2009-07-23 23:06:32 +0000528 kobject_put(&p->kobj);
Jeff Hansen30df94f2009-09-28 12:54:25 -0700529 p = NULL; /* kobject_put frees */
stephen hemminger77f98592011-09-30 14:37:26 +0000530err1:
wangweidong019ee792014-05-29 10:15:30 +0800531 dev_set_allmulti(dev, -1);
Volodymyr G Lukiianyk43af8532008-04-29 03:17:42 -0700532put_back:
533 dev_put(dev);
Wang Chenbc3f9072008-07-14 20:53:13 -0700534 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return err;
536}
537
538/* called with RTNL */
539int br_del_if(struct net_bridge *br, struct net_device *dev)
540{
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000541 struct net_bridge_port *p;
Andrei Warkentin9be6dd62011-08-05 11:04:10 +0000542 bool changed_addr;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900543
Eric Dumazetec1e5612010-11-15 06:38:14 +0000544 p = br_port_get_rtnl(dev);
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000545 if (!p || p->br != br)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return -EINVAL;
547
Amerigo Wangd30362c2012-08-10 01:24:43 +0000548 /* Since more than one interface can be attached to a bridge,
549 * there still maybe an alternate path for netconsole to use;
550 * therefore there is no reason for a NETDEV_RELEASE event.
551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 del_nbp(p);
553
554 spin_lock_bh(&br->lock);
Andrei Warkentin9be6dd62011-08-05 11:04:10 +0000555 changed_addr = br_stp_recalculate_bridge_id(br);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 spin_unlock_bh(&br->lock);
557
Andrei Warkentin9be6dd62011-08-05 11:04:10 +0000558 if (changed_addr)
559 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
560
Michał Mirosławc4d27ef2011-04-22 06:31:16 +0000561 netdev_update_features(br->dev);
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
564}
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400565
566void br_port_flags_change(struct net_bridge_port *p, unsigned long mask)
567{
568 struct net_bridge *br = p->br;
569
570 if (mask & BR_AUTO_MASK)
571 nbp_update_port_count(br);
572}