br_device.c 9.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *	Device handling code
 *	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/kernel.h>
#include <linux/netdevice.h>
W
WANG Cong 已提交
16
#include <linux/netpoll.h>
17
#include <linux/etherdevice.h>
18
#include <linux/ethtool.h>
W
WANG Cong 已提交
19
#include <linux/list.h>
20
#include <linux/netfilter_bridge.h>
21

L
Linus Torvalds 已提交
22 23 24
#include <asm/uaccess.h>
#include "br_private.h"

25 26 27
#define COMMON_FEATURES (NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA | \
			 NETIF_F_GSO_MASK | NETIF_F_HW_CSUM)

28 29 30
const struct nf_br_ops __rcu *nf_br_ops __read_mostly;
EXPORT_SYMBOL_GPL(nf_br_ops);

31 32
static struct lock_class_key bridge_netdev_addr_lock_key;

33
/* net device transmit always called with BH disabled */
34
netdev_tx_t br_dev_xmit(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
35 36 37 38
{
	struct net_bridge *br = netdev_priv(dev);
	const unsigned char *dest = skb->data;
	struct net_bridge_fdb_entry *dst;
39
	struct net_bridge_mdb_entry *mdst;
40
	struct pcpu_sw_netstats *brstats = this_cpu_ptr(br->stats);
41
	const struct nf_br_ops *nf_ops;
42
	u16 vid = 0;
L
Linus Torvalds 已提交
43

44
	rcu_read_lock();
45 46
	nf_ops = rcu_dereference(nf_br_ops);
	if (nf_ops && nf_ops->br_dev_xmit_hook(skb)) {
47
		rcu_read_unlock();
48 49 50
		return NETDEV_TX_OK;
	}

E
Eric Dumazet 已提交
51
	u64_stats_update_begin(&brstats->syncp);
52 53
	brstats->tx_packets++;
	brstats->tx_bytes += skb->len;
E
Eric Dumazet 已提交
54
	u64_stats_update_end(&brstats->syncp);
55

56
	BR_INPUT_SKB_CB(skb)->brdev = dev;
L
Linus Torvalds 已提交
57

58
	skb_reset_mac_header(skb);
L
Linus Torvalds 已提交
59 60
	skb_pull(skb, ETH_HLEN);

61
	if (!br_allowed_ingress(br, br_vlan_group_rcu(br), skb, &vid))
62 63
		goto out;

64
	if (is_broadcast_ether_addr(dest)) {
65
		br_flood(br, skb, BR_PKT_BROADCAST, false, true);
66
	} else if (is_multicast_ether_addr(dest)) {
H
Herbert Xu 已提交
67
		if (unlikely(netpoll_tx_running(dev))) {
68
			br_flood(br, skb, BR_PKT_MULTICAST, false, true);
H
Herbert Xu 已提交
69 70
			goto out;
		}
71
		if (br_multicast_rcv(br, NULL, skb, vid)) {
72
			kfree_skb(skb);
73
			goto out;
74
		}
75

76
		mdst = br_mdb_get(br, skb, vid);
77
		if ((mdst || BR_INPUT_SKB_CB_MROUTERS_ONLY(skb)) &&
78
		    br_multicast_querier_exists(br, eth_hdr(skb)))
79
			br_multicast_flood(mdst, skb, false, true);
80
		else
81
			br_flood(br, skb, BR_PKT_MULTICAST, false, true);
82 83 84
	} else if ((dst = __br_fdb_get(br, dest, vid)) != NULL) {
		br_forward(dst->dst, skb, false, true);
	} else {
85
		br_flood(br, skb, BR_PKT_UNICAST, false, true);
86
	}
87
out:
88
	rcu_read_unlock();
89
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
90 91
}

92 93 94 95 96
static void br_set_lockdep_class(struct net_device *dev)
{
	lockdep_set_class(&dev->addr_list_lock, &bridge_netdev_addr_lock_key);
}

97 98 99
static int br_dev_init(struct net_device *dev)
{
	struct net_bridge *br = netdev_priv(dev);
100
	int err;
101

102
	br->stats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
103 104 105
	if (!br->stats)
		return -ENOMEM;

106
	err = br_vlan_init(br);
107
	if (err) {
108
		free_percpu(br->stats);
109 110 111 112 113 114 115 116
		return err;
	}

	err = br_multicast_init_stats(br);
	if (err) {
		free_percpu(br->stats);
		br_vlan_flush(br);
	}
117
	br_set_lockdep_class(dev);
118 119

	return err;
120 121
}

L
Linus Torvalds 已提交
122 123
static int br_dev_open(struct net_device *dev)
{
124
	struct net_bridge *br = netdev_priv(dev);
L
Linus Torvalds 已提交
125

126
	netdev_update_features(dev);
127 128
	netif_start_queue(dev);
	br_stp_enable_bridge(br);
129
	br_multicast_open(br);
L
Linus Torvalds 已提交
130 131 132 133 134 135 136 137

	return 0;
}

static void br_dev_set_multicast_list(struct net_device *dev)
{
}

138 139 140 141 142 143
static void br_dev_change_rx_flags(struct net_device *dev, int change)
{
	if (change & IFF_PROMISC)
		br_manage_promisc(netdev_priv(dev));
}

L
Linus Torvalds 已提交
144 145
static int br_dev_stop(struct net_device *dev)
{
146 147 148 149
	struct net_bridge *br = netdev_priv(dev);

	br_stp_disable_bridge(br);
	br_multicast_stop(br);
L
Linus Torvalds 已提交
150 151 152 153 154 155

	netif_stop_queue(dev);

	return 0;
}

156 157
static struct rtnl_link_stats64 *br_get_stats64(struct net_device *dev,
						struct rtnl_link_stats64 *stats)
158 159
{
	struct net_bridge *br = netdev_priv(dev);
160
	struct pcpu_sw_netstats tmp, sum = { 0 };
161 162 163
	unsigned int cpu;

	for_each_possible_cpu(cpu) {
E
Eric Dumazet 已提交
164
		unsigned int start;
165
		const struct pcpu_sw_netstats *bstats
166
			= per_cpu_ptr(br->stats, cpu);
E
Eric Dumazet 已提交
167
		do {
168
			start = u64_stats_fetch_begin_irq(&bstats->syncp);
E
Eric Dumazet 已提交
169
			memcpy(&tmp, bstats, sizeof(tmp));
170
		} while (u64_stats_fetch_retry_irq(&bstats->syncp, start));
E
Eric Dumazet 已提交
171 172 173 174
		sum.tx_bytes   += tmp.tx_bytes;
		sum.tx_packets += tmp.tx_packets;
		sum.rx_bytes   += tmp.rx_bytes;
		sum.rx_packets += tmp.rx_packets;
175 176 177 178 179 180 181 182 183 184
	}

	stats->tx_bytes   = sum.tx_bytes;
	stats->tx_packets = sum.tx_packets;
	stats->rx_bytes   = sum.rx_bytes;
	stats->rx_packets = sum.rx_packets;

	return stats;
}

L
Linus Torvalds 已提交
185 186
static int br_change_mtu(struct net_device *dev, int new_mtu)
{
187 188
	struct net_bridge *br = netdev_priv(dev);
	if (new_mtu < 68 || new_mtu > br_min_mtu(br))
L
Linus Torvalds 已提交
189 190 191
		return -EINVAL;

	dev->mtu = new_mtu;
192

193
#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
194
	/* remember the MTU in the rtable for PMTU */
195
	dst_metric_set(&br->fake_rtable.dst, RTAX_MTU, new_mtu);
196 197
#endif

L
Linus Torvalds 已提交
198 199 200
	return 0;
}

201
/* Allow setting mac address to any valid ethernet address. */
202 203 204 205
static int br_set_mac_address(struct net_device *dev, void *p)
{
	struct net_bridge *br = netdev_priv(dev);
	struct sockaddr *addr = p;
206 207

	if (!is_valid_ether_addr(addr->sa_data))
208
		return -EADDRNOTAVAIL;
209 210

	spin_lock_bh(&br->lock);
211
	if (!ether_addr_equal(dev->dev_addr, addr->sa_data)) {
212
		/* Mac address will be changed in br_stp_change_bridge_id(). */
213 214
		br_stp_change_bridge_id(br, addr->sa_data);
	}
215 216
	spin_unlock_bh(&br->lock);

217
	return 0;
218 219
}

220 221
static void br_getinfo(struct net_device *dev, struct ethtool_drvinfo *info)
{
222 223 224 225
	strlcpy(info->driver, "bridge", sizeof(info->driver));
	strlcpy(info->version, BR_VERSION, sizeof(info->version));
	strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
	strlcpy(info->bus_info, "N/A", sizeof(info->bus_info));
226 227
}

228 229
static netdev_features_t br_fix_features(struct net_device *dev,
	netdev_features_t features)
230 231 232
{
	struct net_bridge *br = netdev_priv(dev);

233
	return br_features_recompute(br, features);
234 235
}

W
WANG Cong 已提交
236
#ifdef CONFIG_NET_POLL_CONTROLLER
H
Herbert Xu 已提交
237
static void br_poll_controller(struct net_device *br_dev)
W
WANG Cong 已提交
238 239 240
{
}

H
Herbert Xu 已提交
241
static void br_netpoll_cleanup(struct net_device *dev)
W
WANG Cong 已提交
242
{
H
Herbert Xu 已提交
243
	struct net_bridge *br = netdev_priv(dev);
244
	struct net_bridge_port *p;
W
WANG Cong 已提交
245

246
	list_for_each_entry(p, &br->port_list, list)
H
Herbert Xu 已提交
247
		br_netpoll_disable(p);
W
WANG Cong 已提交
248 249
}

250
static int __br_netpoll_enable(struct net_bridge_port *p)
251 252 253 254
{
	struct netpoll *np;
	int err;

255
	np = kzalloc(sizeof(*p->np), GFP_KERNEL);
256 257 258
	if (!np)
		return -ENOMEM;

259
	err = __netpoll_setup(np, p->dev);
260 261 262 263 264 265 266 267 268
	if (err) {
		kfree(np);
		return err;
	}

	p->np = np;
	return err;
}

269
int br_netpoll_enable(struct net_bridge_port *p)
270 271 272 273
{
	if (!p->br->dev->npinfo)
		return 0;

274
	return __br_netpoll_enable(p);
275 276
}

277
static int br_netpoll_setup(struct net_device *dev, struct netpoll_info *ni)
W
WANG Cong 已提交
278
{
S
stephen hemminger 已提交
279
	struct net_bridge *br = netdev_priv(dev);
280
	struct net_bridge_port *p;
H
Herbert Xu 已提交
281
	int err = 0;
W
WANG Cong 已提交
282

283
	list_for_each_entry(p, &br->port_list, list) {
H
Herbert Xu 已提交
284 285
		if (!p->dev)
			continue;
286
		err = __br_netpoll_enable(p);
H
Herbert Xu 已提交
287 288
		if (err)
			goto fail;
W
WANG Cong 已提交
289
	}
H
Herbert Xu 已提交
290 291 292 293 294 295 296

out:
	return err;

fail:
	br_netpoll_cleanup(dev);
	goto out;
W
WANG Cong 已提交
297 298
}

H
Herbert Xu 已提交
299
void br_netpoll_disable(struct net_bridge_port *p)
W
WANG Cong 已提交
300
{
H
Herbert Xu 已提交
301 302 303 304 305 306 307
	struct netpoll *np = p->np;

	if (!np)
		return;

	p->np = NULL;

308
	__netpoll_free_async(np);
W
WANG Cong 已提交
309 310 311 312
}

#endif

313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
static int br_add_slave(struct net_device *dev, struct net_device *slave_dev)

{
	struct net_bridge *br = netdev_priv(dev);

	return br_add_if(br, slave_dev);
}

static int br_del_slave(struct net_device *dev, struct net_device *slave_dev)
{
	struct net_bridge *br = netdev_priv(dev);

	return br_del_if(br, slave_dev);
}

328
static const struct ethtool_ops br_ethtool_ops = {
329 330
	.get_drvinfo    = br_getinfo,
	.get_link	= ethtool_op_get_link,
331 332
};

333 334 335
static const struct net_device_ops br_netdev_ops = {
	.ndo_open		 = br_dev_open,
	.ndo_stop		 = br_dev_stop,
336
	.ndo_init		 = br_dev_init,
337
	.ndo_start_xmit		 = br_dev_xmit,
E
Eric Dumazet 已提交
338
	.ndo_get_stats64	 = br_get_stats64,
339
	.ndo_set_mac_address	 = br_set_mac_address,
340
	.ndo_set_rx_mode	 = br_dev_set_multicast_list,
341
	.ndo_change_rx_flags	 = br_dev_change_rx_flags,
342 343
	.ndo_change_mtu		 = br_change_mtu,
	.ndo_do_ioctl		 = br_dev_ioctl,
W
WANG Cong 已提交
344
#ifdef CONFIG_NET_POLL_CONTROLLER
H
Herbert Xu 已提交
345
	.ndo_netpoll_setup	 = br_netpoll_setup,
W
WANG Cong 已提交
346 347 348
	.ndo_netpoll_cleanup	 = br_netpoll_cleanup,
	.ndo_poll_controller	 = br_poll_controller,
#endif
349 350
	.ndo_add_slave		 = br_add_slave,
	.ndo_del_slave		 = br_del_slave,
351
	.ndo_fix_features        = br_fix_features,
352 353
	.ndo_neigh_construct	 = netdev_default_l2upper_neigh_construct,
	.ndo_neigh_destroy	 = netdev_default_l2upper_neigh_destroy,
354 355 356
	.ndo_fdb_add		 = br_fdb_add,
	.ndo_fdb_del		 = br_fdb_delete,
	.ndo_fdb_dump		 = br_fdb_dump,
J
John Fastabend 已提交
357 358
	.ndo_bridge_getlink	 = br_getlink,
	.ndo_bridge_setlink	 = br_setlink,
359
	.ndo_bridge_dellink	 = br_dellink,
360
	.ndo_features_check	 = passthru_features_check,
361 362
};

363 364 365 366 367 368 369 370
static void br_dev_free(struct net_device *dev)
{
	struct net_bridge *br = netdev_priv(dev);

	free_percpu(br->stats);
	free_netdev(dev);
}

371 372 373 374
static struct device_type br_type = {
	.name	= "bridge",
};

L
Linus Torvalds 已提交
375 376
void br_dev_setup(struct net_device *dev)
{
377 378
	struct net_bridge *br = netdev_priv(dev);

379
	eth_hw_addr_random(dev);
L
Linus Torvalds 已提交
380 381
	ether_setup(dev);

382
	dev->netdev_ops = &br_netdev_ops;
383
	dev->destructor = br_dev_free;
384
	dev->ethtool_ops = &br_ethtool_ops;
385
	SET_NETDEV_DEVTYPE(dev, &br_type);
386
	dev->priv_flags = IFF_EBRIDGE | IFF_NO_QUEUE;
387

388
	dev->features = COMMON_FEATURES | NETIF_F_LLTX | NETIF_F_NETNS_LOCAL |
389 390 391
			NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
	dev->hw_features = COMMON_FEATURES | NETIF_F_HW_VLAN_CTAG_TX |
			   NETIF_F_HW_VLAN_STAG_TX;
392
	dev->vlan_features = COMMON_FEATURES;
393 394 395 396 397 398 399 400 401

	br->dev = dev;
	spin_lock_init(&br->lock);
	INIT_LIST_HEAD(&br->port_list);
	spin_lock_init(&br->hash_lock);

	br->bridge_id.prio[0] = 0x80;
	br->bridge_id.prio[1] = 0x00;

402
	ether_addr_copy(br->group_addr, eth_reserved_addr_base);
403 404

	br->stp_enabled = BR_NO_STP;
405
	br->group_fwd_mask = BR_GROUPFWD_DEFAULT;
406
	br->group_fwd_mask_required = BR_GROUPFWD_DEFAULT;
407

408 409 410 411
	br->designated_root = br->bridge_id;
	br->bridge_max_age = br->max_age = 20 * HZ;
	br->bridge_hello_time = br->hello_time = 2 * HZ;
	br->bridge_forward_delay = br->forward_delay = 15 * HZ;
412
	br->ageing_time = BR_DEFAULT_AGEING_TIME;
413 414 415 416

	br_netfilter_rtable_init(br);
	br_stp_timer_init(br);
	br_multicast_init(br);
L
Linus Torvalds 已提交
417
}