br_device.c 8.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
/* net device transmit always called with BH disabled */
29
netdev_tx_t br_dev_xmit(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
30 31 32 33
{
	struct net_bridge *br = netdev_priv(dev);
	const unsigned char *dest = skb->data;
	struct net_bridge_fdb_entry *dst;
34
	struct net_bridge_mdb_entry *mdst;
35
	struct br_cpu_netstats *brstats = this_cpu_ptr(br->stats);
36
	u16 vid = 0;
L
Linus Torvalds 已提交
37

38
	rcu_read_lock();
39 40 41
#ifdef CONFIG_BRIDGE_NETFILTER
	if (skb->nf_bridge && (skb->nf_bridge->mask & BRNF_BRIDGED_DNAT)) {
		br_nf_pre_routing_finish_bridge_slow(skb);
42
		rcu_read_unlock();
43 44 45 46
		return NETDEV_TX_OK;
	}
#endif

E
Eric Dumazet 已提交
47
	u64_stats_update_begin(&brstats->syncp);
48 49
	brstats->tx_packets++;
	brstats->tx_bytes += skb->len;
E
Eric Dumazet 已提交
50
	u64_stats_update_end(&brstats->syncp);
51

52
	if (!br_allowed_ingress(br, br_get_vlan_info(br), skb, &vid))
53 54
		goto out;

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

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

60
	if (is_broadcast_ether_addr(dest))
61
		br_flood_deliver(br, skb, false);
62
	else if (is_multicast_ether_addr(dest)) {
H
Herbert Xu 已提交
63
		if (unlikely(netpoll_tx_running(dev))) {
64
			br_flood_deliver(br, skb, false);
H
Herbert Xu 已提交
65 66
			goto out;
		}
67
		if (br_multicast_rcv(br, NULL, skb, vid)) {
68
			kfree_skb(skb);
69
			goto out;
70
		}
71

72
		mdst = br_mdb_get(br, skb, vid);
73
		if ((mdst || BR_INPUT_SKB_CB_MROUTERS_ONLY(skb)) &&
74
		    br_multicast_querier_exists(br, eth_hdr(skb)))
75 76
			br_multicast_deliver(mdst, skb);
		else
77
			br_flood_deliver(br, skb, false);
78
	} else if ((dst = __br_fdb_get(br, dest, vid)) != NULL)
L
Linus Torvalds 已提交
79 80
		br_deliver(dst->dst, skb);
	else
81
		br_flood_deliver(br, skb, true);
L
Linus Torvalds 已提交
82

83
out:
84
	rcu_read_unlock();
85
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
86 87
}

88 89 90
static int br_dev_init(struct net_device *dev)
{
	struct net_bridge *br = netdev_priv(dev);
91
	int i;
92 93 94 95 96

	br->stats = alloc_percpu(struct br_cpu_netstats);
	if (!br->stats)
		return -ENOMEM;

97 98 99 100 101 102
	for_each_possible_cpu(i) {
		struct br_cpu_netstats *br_dev_stats;
		br_dev_stats = per_cpu_ptr(br->stats, i);
		u64_stats_init(&br_dev_stats->syncp);
	}

103 104 105
	return 0;
}

L
Linus Torvalds 已提交
106 107
static int br_dev_open(struct net_device *dev)
{
108
	struct net_bridge *br = netdev_priv(dev);
L
Linus Torvalds 已提交
109

110
	netdev_update_features(dev);
111 112
	netif_start_queue(dev);
	br_stp_enable_bridge(br);
113
	br_multicast_open(br);
L
Linus Torvalds 已提交
114 115 116 117 118 119 120 121 122 123

	return 0;
}

static void br_dev_set_multicast_list(struct net_device *dev)
{
}

static int br_dev_stop(struct net_device *dev)
{
124 125 126 127
	struct net_bridge *br = netdev_priv(dev);

	br_stp_disable_bridge(br);
	br_multicast_stop(br);
L
Linus Torvalds 已提交
128 129 130 131 132 133

	netif_stop_queue(dev);

	return 0;
}

134 135
static struct rtnl_link_stats64 *br_get_stats64(struct net_device *dev,
						struct rtnl_link_stats64 *stats)
136 137
{
	struct net_bridge *br = netdev_priv(dev);
E
Eric Dumazet 已提交
138
	struct br_cpu_netstats tmp, sum = { 0 };
139 140 141
	unsigned int cpu;

	for_each_possible_cpu(cpu) {
E
Eric Dumazet 已提交
142
		unsigned int start;
143 144
		const struct br_cpu_netstats *bstats
			= per_cpu_ptr(br->stats, cpu);
E
Eric Dumazet 已提交
145
		do {
146
			start = u64_stats_fetch_begin_bh(&bstats->syncp);
E
Eric Dumazet 已提交
147
			memcpy(&tmp, bstats, sizeof(tmp));
148
		} while (u64_stats_fetch_retry_bh(&bstats->syncp, start));
E
Eric Dumazet 已提交
149 150 151 152
		sum.tx_bytes   += tmp.tx_bytes;
		sum.tx_packets += tmp.tx_packets;
		sum.rx_bytes   += tmp.rx_bytes;
		sum.rx_packets += tmp.rx_packets;
153 154 155 156 157 158 159 160 161 162
	}

	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 已提交
163 164
static int br_change_mtu(struct net_device *dev, int new_mtu)
{
165 166
	struct net_bridge *br = netdev_priv(dev);
	if (new_mtu < 68 || new_mtu > br_min_mtu(br))
L
Linus Torvalds 已提交
167 168 169
		return -EINVAL;

	dev->mtu = new_mtu;
170 171 172

#ifdef CONFIG_BRIDGE_NETFILTER
	/* remember the MTU in the rtable for PMTU */
173
	dst_metric_set(&br->fake_rtable.dst, RTAX_MTU, new_mtu);
174 175
#endif

L
Linus Torvalds 已提交
176 177 178
	return 0;
}

179
/* Allow setting mac address to any valid ethernet address. */
180 181 182 183
static int br_set_mac_address(struct net_device *dev, void *p)
{
	struct net_bridge *br = netdev_priv(dev);
	struct sockaddr *addr = p;
184 185

	if (!is_valid_ether_addr(addr->sa_data))
186
		return -EADDRNOTAVAIL;
187 188

	spin_lock_bh(&br->lock);
189
	if (!ether_addr_equal(dev->dev_addr, addr->sa_data)) {
190 191 192 193
		memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
		br_fdb_change_mac_address(br, addr->sa_data);
		br_stp_change_bridge_id(br, addr->sa_data);
	}
194 195
	spin_unlock_bh(&br->lock);

196
	return 0;
197 198
}

199 200
static void br_getinfo(struct net_device *dev, struct ethtool_drvinfo *info)
{
201 202 203 204
	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));
205 206
}

207 208
static netdev_features_t br_fix_features(struct net_device *dev,
	netdev_features_t features)
209 210 211
{
	struct net_bridge *br = netdev_priv(dev);

212
	return br_features_recompute(br, features);
213 214
}

W
WANG Cong 已提交
215
#ifdef CONFIG_NET_POLL_CONTROLLER
H
Herbert Xu 已提交
216
static void br_poll_controller(struct net_device *br_dev)
W
WANG Cong 已提交
217 218 219
{
}

H
Herbert Xu 已提交
220
static void br_netpoll_cleanup(struct net_device *dev)
W
WANG Cong 已提交
221
{
H
Herbert Xu 已提交
222
	struct net_bridge *br = netdev_priv(dev);
223
	struct net_bridge_port *p;
W
WANG Cong 已提交
224

225
	list_for_each_entry(p, &br->port_list, list)
H
Herbert Xu 已提交
226
		br_netpoll_disable(p);
W
WANG Cong 已提交
227 228
}

229 230
static int br_netpoll_setup(struct net_device *dev, struct netpoll_info *ni,
			    gfp_t gfp)
W
WANG Cong 已提交
231
{
S
stephen hemminger 已提交
232
	struct net_bridge *br = netdev_priv(dev);
233
	struct net_bridge_port *p;
H
Herbert Xu 已提交
234
	int err = 0;
W
WANG Cong 已提交
235

236
	list_for_each_entry(p, &br->port_list, list) {
H
Herbert Xu 已提交
237 238
		if (!p->dev)
			continue;
239
		err = br_netpoll_enable(p, gfp);
H
Herbert Xu 已提交
240 241
		if (err)
			goto fail;
W
WANG Cong 已提交
242
	}
H
Herbert Xu 已提交
243 244 245 246 247 248 249

out:
	return err;

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

252
int br_netpoll_enable(struct net_bridge_port *p, gfp_t gfp)
S
stephen hemminger 已提交
253
{
H
Herbert Xu 已提交
254
	struct netpoll *np;
S
stephen hemminger 已提交
255 256 257 258
	int err;

	if (!p->br->dev->npinfo)
		return 0;
H
Herbert Xu 已提交
259

260
	np = kzalloc(sizeof(*p->np), gfp);
H
Herbert Xu 已提交
261
	if (!np)
S
stephen hemminger 已提交
262
		return -ENOMEM;
H
Herbert Xu 已提交
263

264
	err = __netpoll_setup(np, p->dev, gfp);
H
Herbert Xu 已提交
265 266
	if (err) {
		kfree(np);
S
stephen hemminger 已提交
267
		return err;
H
Herbert Xu 已提交
268 269 270 271
	}

	p->np = np;
	return err;
S
stephen hemminger 已提交
272
}
W
WANG Cong 已提交
273

H
Herbert Xu 已提交
274
void br_netpoll_disable(struct net_bridge_port *p)
W
WANG Cong 已提交
275
{
H
Herbert Xu 已提交
276 277 278 279 280 281 282
	struct netpoll *np = p->np;

	if (!np)
		return;

	p->np = NULL;

283
	__netpoll_free_async(np);
W
WANG Cong 已提交
284 285 286 287
}

#endif

288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
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);
}

303
static const struct ethtool_ops br_ethtool_ops = {
304 305
	.get_drvinfo    = br_getinfo,
	.get_link	= ethtool_op_get_link,
306 307
};

308 309 310
static const struct net_device_ops br_netdev_ops = {
	.ndo_open		 = br_dev_open,
	.ndo_stop		 = br_dev_stop,
311
	.ndo_init		 = br_dev_init,
312
	.ndo_start_xmit		 = br_dev_xmit,
E
Eric Dumazet 已提交
313
	.ndo_get_stats64	 = br_get_stats64,
314
	.ndo_set_mac_address	 = br_set_mac_address,
315
	.ndo_set_rx_mode	 = br_dev_set_multicast_list,
316 317
	.ndo_change_mtu		 = br_change_mtu,
	.ndo_do_ioctl		 = br_dev_ioctl,
W
WANG Cong 已提交
318
#ifdef CONFIG_NET_POLL_CONTROLLER
H
Herbert Xu 已提交
319
	.ndo_netpoll_setup	 = br_netpoll_setup,
W
WANG Cong 已提交
320 321 322
	.ndo_netpoll_cleanup	 = br_netpoll_cleanup,
	.ndo_poll_controller	 = br_poll_controller,
#endif
323 324
	.ndo_add_slave		 = br_add_slave,
	.ndo_del_slave		 = br_del_slave,
325
	.ndo_fix_features        = br_fix_features,
326 327 328
	.ndo_fdb_add		 = br_fdb_add,
	.ndo_fdb_del		 = br_fdb_delete,
	.ndo_fdb_dump		 = br_fdb_dump,
J
John Fastabend 已提交
329 330
	.ndo_bridge_getlink	 = br_getlink,
	.ndo_bridge_setlink	 = br_setlink,
331
	.ndo_bridge_dellink	 = br_dellink,
332 333
};

334 335 336 337 338 339 340 341
static void br_dev_free(struct net_device *dev)
{
	struct net_bridge *br = netdev_priv(dev);

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

342 343 344 345
static struct device_type br_type = {
	.name	= "bridge",
};

L
Linus Torvalds 已提交
346 347
void br_dev_setup(struct net_device *dev)
{
348 349
	struct net_bridge *br = netdev_priv(dev);

350
	eth_hw_addr_random(dev);
L
Linus Torvalds 已提交
351 352
	ether_setup(dev);

353
	dev->netdev_ops = &br_netdev_ops;
354
	dev->destructor = br_dev_free;
355
	SET_ETHTOOL_OPS(dev, &br_ethtool_ops);
356
	SET_NETDEV_DEVTYPE(dev, &br_type);
L
Linus Torvalds 已提交
357 358
	dev->tx_queue_len = 0;
	dev->priv_flags = IFF_EBRIDGE;
359

360 361 362 363
	dev->features = COMMON_FEATURES | NETIF_F_LLTX | NETIF_F_NETNS_LOCAL |
			NETIF_F_HW_VLAN_CTAG_TX;
	dev->hw_features = COMMON_FEATURES | NETIF_F_HW_VLAN_CTAG_TX;
	dev->vlan_features = COMMON_FEATURES;
364 365 366 367 368 369 370 371 372

	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;

373
	memcpy(br->group_addr, eth_reserved_addr_base, ETH_ALEN);
374 375

	br->stp_enabled = BR_NO_STP;
376 377
	br->group_fwd_mask = BR_GROUPFWD_DEFAULT;

378 379 380 381 382 383 384 385 386
	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;
	br->ageing_time = 300 * HZ;

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