br_device.c 9.8 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

22
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
23 24
#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 void 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
	}

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

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

	dev->mtu = new_mtu;
190

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

L
Linus Torvalds 已提交
196 197 198
	return 0;
}

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

	if (!is_valid_ether_addr(addr->sa_data))
206
		return -EADDRNOTAVAIL;
207 208

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

215
	return 0;
216 217
}

218 219
static void br_getinfo(struct net_device *dev, struct ethtool_drvinfo *info)
{
220 221 222 223
	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));
224 225
}

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

231
	return br_features_recompute(br, features);
232 233
}

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

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

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

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

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

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

	p->np = np;
	return err;
}

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

272
	return __br_netpoll_enable(p);
273 274
}

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

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

out:
	return err;

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

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

	if (!np)
		return;

	p->np = NULL;

306
	__netpoll_free_async(np);
W
WANG Cong 已提交
307 308 309 310
}

#endif

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
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);
}

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

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

359 360 361 362 363 364 365 366
static void br_dev_free(struct net_device *dev)
{
	struct net_bridge *br = netdev_priv(dev);

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

367 368 369 370
static struct device_type br_type = {
	.name	= "bridge",
};

L
Linus Torvalds 已提交
371 372
void br_dev_setup(struct net_device *dev)
{
373 374
	struct net_bridge *br = netdev_priv(dev);

375
	eth_hw_addr_random(dev);
L
Linus Torvalds 已提交
376 377
	ether_setup(dev);

378
	dev->netdev_ops = &br_netdev_ops;
379
	dev->destructor = br_dev_free;
380
	dev->ethtool_ops = &br_ethtool_ops;
381
	SET_NETDEV_DEVTYPE(dev, &br_type);
382
	dev->priv_flags = IFF_EBRIDGE | IFF_NO_QUEUE;
383

384
	dev->features = COMMON_FEATURES | NETIF_F_LLTX | NETIF_F_NETNS_LOCAL |
385 386 387
			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;
388
	dev->vlan_features = COMMON_FEATURES;
389 390 391 392 393 394 395 396 397

	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;

398
	ether_addr_copy(br->group_addr, eth_reserved_addr_base);
399 400

	br->stp_enabled = BR_NO_STP;
401
	br->group_fwd_mask = BR_GROUPFWD_DEFAULT;
402
	br->group_fwd_mask_required = BR_GROUPFWD_DEFAULT;
403

404 405 406 407
	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;
408
	br->bridge_ageing_time = br->ageing_time = BR_DEFAULT_AGEING_TIME;
409
	dev->max_mtu = ETH_MAX_MTU;
410 411 412 413

	br_netfilter_rtable_init(br);
	br_stp_timer_init(br);
	br_multicast_init(br);
414
	INIT_DELAYED_WORK(&br->gc_work, br_fdb_cleanup);
L
Linus Torvalds 已提交
415
}