macvlan.c 41.3 KB
Newer Older
P
Patrick McHardy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Copyright (c) 2007 Patrick McHardy <kaber@trash.net>
 *
 * 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.
 *
 * The code this is based on carried the following copyright notice:
 * ---
 * (C) Copyright 2001-2006
 * Alex Zeffertt, Cambridge Broadband Ltd, ajz@cambridgebroadband.com
 * Re-worked by Ben Greear <greearb@candelatech.com>
 * ---
 */
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/string.h>
23
#include <linux/rculist.h>
P
Patrick McHardy 已提交
24 25 26 27 28
#include <linux/notifier.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/if_arp.h>
29
#include <linux/if_vlan.h>
P
Patrick McHardy 已提交
30 31
#include <linux/if_link.h>
#include <linux/if_macvlan.h>
E
Eric Dumazet 已提交
32
#include <linux/hash.h>
33
#include <linux/workqueue.h>
P
Patrick McHardy 已提交
34
#include <net/rtnetlink.h>
35
#include <net/xfrm.h>
D
dingtianhong 已提交
36
#include <linux/netpoll.h>
P
Patrick McHardy 已提交
37

M
Michael Braun 已提交
38 39
#define MACVLAN_HASH_BITS	8
#define MACVLAN_HASH_SIZE	(1<<MACVLAN_HASH_BITS)
40
#define MACVLAN_BC_QUEUE_LEN	1000
P
Patrick McHardy 已提交
41 42 43 44 45

struct macvlan_port {
	struct net_device	*dev;
	struct hlist_head	vlan_hash[MACVLAN_HASH_SIZE];
	struct list_head	vlans;
46 47
	struct sk_buff_head	bc_queue;
	struct work_struct	bc_work;
48
	bool 			passthru;
49
	int			count;
M
Michael Braun 已提交
50
	struct hlist_head	vlan_source_hash[MACVLAN_HASH_SIZE];
51
	DECLARE_BITMAP(mc_filter, MACVLAN_MC_FILTER_SZ);
M
Michael Braun 已提交
52 53 54 55 56 57 58
};

struct macvlan_source_entry {
	struct hlist_node	hlist;
	struct macvlan_dev	*vlan;
	unsigned char		addr[6+2] __aligned(sizeof(u16));
	struct rcu_head		rcu;
P
Patrick McHardy 已提交
59 60
};

61 62 63 64 65 66
struct macvlan_skb_cb {
	const struct macvlan_dev *src;
};

#define MACVLAN_SKB_CB(__skb) ((struct macvlan_skb_cb *)&((__skb)->cb[0]))

67 68
static void macvlan_port_destroy(struct net_device *dev);

M
Michael Braun 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82
/* Hash Ethernet address */
static u32 macvlan_eth_hash(const unsigned char *addr)
{
	u64 value = get_unaligned((u64 *)addr);

	/* only want 6 bytes */
#ifdef __BIG_ENDIAN
	value >>= 16;
#else
	value <<= 16;
#endif
	return hash_64(value, MACVLAN_HASH_BITS);
}

E
Eric Dumazet 已提交
83 84 85 86 87 88 89 90 91 92
static struct macvlan_port *macvlan_port_get_rcu(const struct net_device *dev)
{
	return rcu_dereference(dev->rx_handler_data);
}

static struct macvlan_port *macvlan_port_get_rtnl(const struct net_device *dev)
{
	return rtnl_dereference(dev->rx_handler_data);
}

93 94
#define macvlan_port_exists(dev) (dev->priv_flags & IFF_MACVLAN_PORT)

P
Patrick McHardy 已提交
95 96 97 98
static struct macvlan_dev *macvlan_hash_lookup(const struct macvlan_port *port,
					       const unsigned char *addr)
{
	struct macvlan_dev *vlan;
M
Michael Braun 已提交
99
	u32 idx = macvlan_eth_hash(addr);
P
Patrick McHardy 已提交
100

M
Michael Braun 已提交
101
	hlist_for_each_entry_rcu(vlan, &port->vlan_hash[idx], hlist) {
102
		if (ether_addr_equal_64bits(vlan->dev->dev_addr, addr))
P
Patrick McHardy 已提交
103 104 105 106 107
			return vlan;
	}
	return NULL;
}

M
Michael Braun 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
static struct macvlan_source_entry *macvlan_hash_lookup_source(
	const struct macvlan_dev *vlan,
	const unsigned char *addr)
{
	struct macvlan_source_entry *entry;
	u32 idx = macvlan_eth_hash(addr);
	struct hlist_head *h = &vlan->port->vlan_source_hash[idx];

	hlist_for_each_entry_rcu(entry, h, hlist) {
		if (ether_addr_equal_64bits(entry->addr, addr) &&
		    entry->vlan == vlan)
			return entry;
	}
	return NULL;
}

static int macvlan_hash_add_source(struct macvlan_dev *vlan,
				   const unsigned char *addr)
{
	struct macvlan_port *port = vlan->port;
	struct macvlan_source_entry *entry;
	struct hlist_head *h;

	entry = macvlan_hash_lookup_source(vlan, addr);
	if (entry)
		return 0;

	entry = kmalloc(sizeof(*entry), GFP_KERNEL);
	if (!entry)
		return -ENOMEM;

	ether_addr_copy(entry->addr, addr);
	entry->vlan = vlan;
	h = &port->vlan_source_hash[macvlan_eth_hash(addr)];
	hlist_add_head_rcu(&entry->hlist, h);
	vlan->macaddr_count++;

	return 0;
}

148 149 150 151
static void macvlan_hash_add(struct macvlan_dev *vlan)
{
	struct macvlan_port *port = vlan->port;
	const unsigned char *addr = vlan->dev->dev_addr;
M
Michael Braun 已提交
152
	u32 idx = macvlan_eth_hash(addr);
153

M
Michael Braun 已提交
154 155 156 157 158 159 160
	hlist_add_head_rcu(&vlan->hlist, &port->vlan_hash[idx]);
}

static void macvlan_hash_del_source(struct macvlan_source_entry *entry)
{
	hlist_del_rcu(&entry->hlist);
	kfree_rcu(entry, rcu);
161 162
}

163
static void macvlan_hash_del(struct macvlan_dev *vlan, bool sync)
164 165
{
	hlist_del_rcu(&vlan->hlist);
166 167
	if (sync)
		synchronize_rcu();
168 169 170 171 172
}

static void macvlan_hash_change_addr(struct macvlan_dev *vlan,
					const unsigned char *addr)
{
173
	macvlan_hash_del(vlan, true);
174 175 176 177 178 179 180
	/* Now that we are unhashed it is safe to change the device
	 * address without confusing packet delivery.
	 */
	memcpy(vlan->dev->dev_addr, addr, ETH_ALEN);
	macvlan_hash_add(vlan);
}

181 182
static bool macvlan_addr_busy(const struct macvlan_port *port,
			      const unsigned char *addr)
183 184 185 186 187
{
	/* Test to see if the specified multicast address is
	 * currently in use by the underlying device or
	 * another macvlan.
	 */
188
	if (ether_addr_equal_64bits(port->dev->dev_addr, addr))
189
		return true;
190 191

	if (macvlan_hash_lookup(port, addr))
192
		return true;
193

194
	return false;
195 196
}

A
Arnd Bergmann 已提交
197

198 199
static int macvlan_broadcast_one(struct sk_buff *skb,
				 const struct macvlan_dev *vlan,
200
				 const struct ethhdr *eth, bool local)
A
Arnd Bergmann 已提交
201
{
202
	struct net_device *dev = vlan->dev;
A
Arnd Bergmann 已提交
203

204
	if (local)
205
		return __dev_forward_skb(dev, skb);
206

A
Arnd Bergmann 已提交
207
	skb->dev = dev;
208
	if (ether_addr_equal_64bits(eth->h_dest, dev->broadcast))
A
Arnd Bergmann 已提交
209 210 211 212
		skb->pkt_type = PACKET_BROADCAST;
	else
		skb->pkt_type = PACKET_MULTICAST;

213
	return 0;
A
Arnd Bergmann 已提交
214 215
}

E
Eric Dumazet 已提交
216 217 218 219 220 221 222 223
static u32 macvlan_hash_mix(const struct macvlan_dev *vlan)
{
	return (u32)(((unsigned long)vlan) >> L1_CACHE_SHIFT);
}


static unsigned int mc_hash(const struct macvlan_dev *vlan,
			    const unsigned char *addr)
E
Eric Dumazet 已提交
224 225 226
{
	u32 val = __get_unaligned_cpu32(addr + 2);

E
Eric Dumazet 已提交
227
	val ^= macvlan_hash_mix(vlan);
E
Eric Dumazet 已提交
228 229 230
	return hash_32(val, MACVLAN_MC_FILTER_BITS);
}

P
Patrick McHardy 已提交
231
static void macvlan_broadcast(struct sk_buff *skb,
232 233 234
			      const struct macvlan_port *port,
			      struct net_device *src,
			      enum macvlan_mode mode)
P
Patrick McHardy 已提交
235 236 237 238 239
{
	const struct ethhdr *eth = eth_hdr(skb);
	const struct macvlan_dev *vlan;
	struct sk_buff *nskb;
	unsigned int i;
A
Arnd Bergmann 已提交
240
	int err;
E
Eric Dumazet 已提交
241
	unsigned int hash;
P
Patrick McHardy 已提交
242

243 244 245
	if (skb->protocol == htons(ETH_P_PAUSE))
		return;

P
Patrick McHardy 已提交
246
	for (i = 0; i < MACVLAN_HASH_SIZE; i++) {
247
		hlist_for_each_entry_rcu(vlan, &port->vlan_hash[i], hlist) {
248 249 250
			if (vlan->dev == src || !(vlan->mode & mode))
				continue;

E
Eric Dumazet 已提交
251
			hash = mc_hash(vlan, eth->h_dest);
E
Eric Dumazet 已提交
252 253
			if (!test_bit(hash, vlan->mc_filter))
				continue;
254 255

			err = NET_RX_DROP;
P
Patrick McHardy 已提交
256
			nskb = skb_clone(skb, GFP_ATOMIC);
257 258 259
			if (likely(nskb))
				err = macvlan_broadcast_one(
					nskb, vlan, eth,
260 261
					mode == MACVLAN_MODE_BRIDGE) ?:
				      netif_rx_ni(nskb);
A
Arnd Bergmann 已提交
262
			macvlan_count_rx(vlan, skb->len + ETH_HLEN,
263
					 err == NET_RX_SUCCESS, true);
P
Patrick McHardy 已提交
264 265 266 267
		}
	}
}

268
static void macvlan_process_broadcast(struct work_struct *w)
P
Patrick McHardy 已提交
269
{
270 271 272 273 274
	struct macvlan_port *port = container_of(w, struct macvlan_port,
						 bc_work);
	struct sk_buff *skb;
	struct sk_buff_head list;

275
	__skb_queue_head_init(&list);
276 277 278 279 280 281 282 283 284

	spin_lock_bh(&port->bc_queue.lock);
	skb_queue_splice_tail_init(&port->bc_queue, &list);
	spin_unlock_bh(&port->bc_queue.lock);

	while ((skb = __skb_dequeue(&list))) {
		const struct macvlan_dev *src = MACVLAN_SKB_CB(skb)->src;

		rcu_read_lock();
P
Patrick McHardy 已提交
285

286 287 288 289 290
		if (!src)
			/* frame comes from an external address */
			macvlan_broadcast(skb, port, NULL,
					  MACVLAN_MODE_PRIVATE |
					  MACVLAN_MODE_VEPA    |
291
					  MACVLAN_MODE_PASSTHRU|
292 293 294 295 296 297
					  MACVLAN_MODE_BRIDGE);
		else if (src->mode == MACVLAN_MODE_VEPA)
			/* flood to everyone except source */
			macvlan_broadcast(skb, port, src->dev,
					  MACVLAN_MODE_VEPA |
					  MACVLAN_MODE_BRIDGE);
298
		else
299 300 301 302 303 304
			/*
			 * flood only to VEPA ports, bridge ports
			 * already saw the frame on the way out.
			 */
			macvlan_broadcast(skb, port, src->dev,
					  MACVLAN_MODE_VEPA);
305 306 307

		rcu_read_unlock();

308 309
		if (src)
			dev_put(src->dev);
310 311 312 313 314
		kfree_skb(skb);
	}
}

static void macvlan_broadcast_enqueue(struct macvlan_port *port,
315
				      const struct macvlan_dev *src,
316 317
				      struct sk_buff *skb)
{
318
	struct sk_buff *nskb;
319 320
	int err = -ENOMEM;

321 322
	nskb = skb_clone(skb, GFP_ATOMIC);
	if (!nskb)
323 324
		goto err;

325 326
	MACVLAN_SKB_CB(nskb)->src = src;

327
	spin_lock(&port->bc_queue.lock);
328
	if (skb_queue_len(&port->bc_queue) < MACVLAN_BC_QUEUE_LEN) {
329 330
		if (src)
			dev_hold(src->dev);
331
		__skb_queue_tail(&port->bc_queue, nskb);
332 333 334 335 336
		err = 0;
	}
	spin_unlock(&port->bc_queue.lock);

	if (err)
337
		goto free_nskb;
338 339 340 341

	schedule_work(&port->bc_work);
	return;

342 343
free_nskb:
	kfree_skb(nskb);
344 345 346 347
err:
	atomic_long_inc(&skb->dev->rx_dropped);
}

M
Michael Braun 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
static void macvlan_flush_sources(struct macvlan_port *port,
				  struct macvlan_dev *vlan)
{
	int i;

	for (i = 0; i < MACVLAN_HASH_SIZE; i++) {
		struct hlist_node *h, *n;

		hlist_for_each_safe(h, n, &port->vlan_source_hash[i]) {
			struct macvlan_source_entry *entry;

			entry = hlist_entry(h, struct macvlan_source_entry,
					    hlist);
			if (entry->vlan == vlan)
				macvlan_hash_del_source(entry);
		}
	}
	vlan->macaddr_count = 0;
}

static void macvlan_forward_source_one(struct sk_buff *skb,
				       struct macvlan_dev *vlan)
{
	struct sk_buff *nskb;
	struct net_device *dev;
	int len;
	int ret;

	dev = vlan->dev;
	if (unlikely(!(dev->flags & IFF_UP)))
		return;

	nskb = skb_clone(skb, GFP_ATOMIC);
	if (!nskb)
		return;

	len = nskb->len + ETH_HLEN;
	nskb->dev = dev;
	nskb->pkt_type = PACKET_HOST;

	ret = netif_rx(nskb);
389
	macvlan_count_rx(vlan, len, ret == NET_RX_SUCCESS, false);
M
Michael Braun 已提交
390 391 392 393 394 395 396 397 398 399 400 401
}

static void macvlan_forward_source(struct sk_buff *skb,
				   struct macvlan_port *port,
				   const unsigned char *addr)
{
	struct macvlan_source_entry *entry;
	u32 idx = macvlan_eth_hash(addr);
	struct hlist_head *h = &port->vlan_source_hash[idx];

	hlist_for_each_entry_rcu(entry, h, hlist) {
		if (ether_addr_equal_64bits(entry->addr, addr))
402
			macvlan_forward_source_one(skb, entry->vlan);
M
Michael Braun 已提交
403 404 405
	}
}

406 407 408 409 410 411 412 413 414 415
/* called under rcu_read_lock() from netif_receive_skb */
static rx_handler_result_t macvlan_handle_frame(struct sk_buff **pskb)
{
	struct macvlan_port *port;
	struct sk_buff *skb = *pskb;
	const struct ethhdr *eth = eth_hdr(skb);
	const struct macvlan_dev *vlan;
	const struct macvlan_dev *src;
	struct net_device *dev;
	unsigned int len = 0;
416 417
	int ret;
	rx_handler_result_t handle_res;
418 419 420

	port = macvlan_port_get_rcu(skb->dev);
	if (is_multicast_ether_addr(eth->h_dest)) {
421 422
		unsigned int hash;

423
		skb = ip_check_defrag(dev_net(skb->dev), skb, IP_DEFRAG_MACVLAN);
424 425
		if (!skb)
			return RX_HANDLER_CONSUMED;
426
		*pskb = skb;
427
		eth = eth_hdr(skb);
M
Michael Braun 已提交
428
		macvlan_forward_source(skb, port, eth->h_source);
429 430 431
		src = macvlan_hash_lookup(port, eth->h_source);
		if (src && src->mode != MACVLAN_MODE_VEPA &&
		    src->mode != MACVLAN_MODE_BRIDGE) {
432 433
			/* forward to original port. */
			vlan = src;
434 435
			ret = macvlan_broadcast_one(skb, vlan, eth, 0) ?:
			      netif_rx(skb);
436
			handle_res = RX_HANDLER_CONSUMED;
437 438 439
			goto out;
		}

440 441 442
		hash = mc_hash(NULL, eth->h_dest);
		if (test_bit(hash, port->mc_filter))
			macvlan_broadcast_enqueue(port, src, skb);
443

444
		return RX_HANDLER_PASS;
P
Patrick McHardy 已提交
445 446
	}

M
Michael Braun 已提交
447
	macvlan_forward_source(skb, port, eth->h_source);
448
	if (port->passthru)
449 450
		vlan = list_first_or_null_rcu(&port->vlans,
					      struct macvlan_dev, list);
451 452
	else
		vlan = macvlan_hash_lookup(port, eth->h_dest);
P
Patrick McHardy 已提交
453
	if (vlan == NULL)
454
		return RX_HANDLER_PASS;
P
Patrick McHardy 已提交
455 456 457 458

	dev = vlan->dev;
	if (unlikely(!(dev->flags & IFF_UP))) {
		kfree_skb(skb);
459
		return RX_HANDLER_CONSUMED;
P
Patrick McHardy 已提交
460
	}
A
Arnd Bergmann 已提交
461
	len = skb->len + ETH_HLEN;
P
Patrick McHardy 已提交
462
	skb = skb_share_check(skb, GFP_ATOMIC);
463 464 465
	if (!skb) {
		ret = NET_RX_DROP;
		handle_res = RX_HANDLER_CONSUMED;
466
		goto out;
467
	}
P
Patrick McHardy 已提交
468

469
	*pskb = skb;
P
Patrick McHardy 已提交
470 471 472
	skb->dev = dev;
	skb->pkt_type = PACKET_HOST;

473 474
	ret = NET_RX_SUCCESS;
	handle_res = RX_HANDLER_ANOTHER;
475
out:
476
	macvlan_count_rx(vlan, len, ret == NET_RX_SUCCESS, false);
477
	return handle_res;
P
Patrick McHardy 已提交
478 479
}

480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
static int macvlan_queue_xmit(struct sk_buff *skb, struct net_device *dev)
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
	const struct macvlan_port *port = vlan->port;
	const struct macvlan_dev *dest;

	if (vlan->mode == MACVLAN_MODE_BRIDGE) {
		const struct ethhdr *eth = (void *)skb->data;

		/* send to other bridge ports directly */
		if (is_multicast_ether_addr(eth->h_dest)) {
			macvlan_broadcast(skb, port, dev, MACVLAN_MODE_BRIDGE);
			goto xmit_world;
		}

		dest = macvlan_hash_lookup(port, eth->h_dest);
		if (dest && dest->mode == MACVLAN_MODE_BRIDGE) {
497
			/* send to lowerdev first for its network taps */
498
			dev_forward_skb(vlan->lowerdev, skb);
499 500 501 502 503 504

			return NET_XMIT_SUCCESS;
		}
	}

xmit_world:
505
	skb->dev = vlan->lowerdev;
506 507 508
	return dev_queue_xmit(skb);
}

D
dingtianhong 已提交
509 510 511 512 513 514 515 516 517 518 519
static inline netdev_tx_t macvlan_netpoll_send_skb(struct macvlan_dev *vlan, struct sk_buff *skb)
{
#ifdef CONFIG_NET_POLL_CONTROLLER
	if (vlan->netpoll)
		netpoll_send_skb(vlan->netpoll, skb);
#else
	BUG();
#endif
	return NETDEV_TX_OK;
}

S
stephen hemminger 已提交
520 521
static netdev_tx_t macvlan_start_xmit(struct sk_buff *skb,
				      struct net_device *dev)
P
Patrick McHardy 已提交
522 523 524
{
	unsigned int len = skb->len;
	int ret;
D
dingtianhong 已提交
525 526 527 528
	struct macvlan_dev *vlan = netdev_priv(dev);

	if (unlikely(netpoll_tx_running(dev)))
		return macvlan_netpoll_send_skb(vlan, skb);
P
Patrick McHardy 已提交
529

530 531
	if (vlan->fwd_priv) {
		skb->dev = vlan->lowerdev;
532
		ret = dev_queue_xmit_accel(skb, vlan->fwd_priv);
533 534 535 536
	} else {
		ret = macvlan_queue_xmit(skb, dev);
	}

537
	if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
538
		struct vlan_pcpu_stats *pcpu_stats;
539

E
Eric Dumazet 已提交
540 541 542 543 544 545 546 547
		pcpu_stats = this_cpu_ptr(vlan->pcpu_stats);
		u64_stats_update_begin(&pcpu_stats->syncp);
		pcpu_stats->tx_packets++;
		pcpu_stats->tx_bytes += len;
		u64_stats_update_end(&pcpu_stats->syncp);
	} else {
		this_cpu_inc(vlan->pcpu_stats->tx_dropped);
	}
548
	return ret;
P
Patrick McHardy 已提交
549 550 551
}

static int macvlan_hard_header(struct sk_buff *skb, struct net_device *dev,
552 553
			       unsigned short type, const void *daddr,
			       const void *saddr, unsigned len)
P
Patrick McHardy 已提交
554 555 556 557
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

558 559
	return dev_hard_header(skb, lowerdev, type, daddr,
			       saddr ? : dev->dev_addr, len);
P
Patrick McHardy 已提交
560 561
}

562 563 564 565 566 567 568
static const struct header_ops macvlan_hard_header_ops = {
	.create  	= macvlan_hard_header,
	.parse		= eth_header_parse,
	.cache		= eth_header_cache,
	.cache_update	= eth_header_cache_update,
};

569 570
static struct rtnl_link_ops macvlan_link_ops;

P
Patrick McHardy 已提交
571 572 573 574 575 576
static int macvlan_open(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;
	int err;

577
	if (vlan->port->passthru) {
578 579 580 581 582
		if (!(vlan->flags & MACVLAN_FLAG_NOPROMISC)) {
			err = dev_set_promiscuity(lowerdev, 1);
			if (err < 0)
				goto out;
		}
583 584 585
		goto hash_add;
	}

586 587
	if (lowerdev->features & NETIF_F_HW_L2FW_DOFFLOAD &&
	    dev->rtnl_link_ops == &macvlan_link_ops) {
588 589 590 591 592 593 594 595
		vlan->fwd_priv =
		      lowerdev->netdev_ops->ndo_dfwd_add_station(lowerdev, dev);

		/* If we get a NULL pointer back, or if we get an error
		 * then we should just fall through to the non accelerated path
		 */
		if (IS_ERR_OR_NULL(vlan->fwd_priv)) {
			vlan->fwd_priv = NULL;
596
		} else
597 598 599
			return 0;
	}

600 601 602 603
	err = -EBUSY;
	if (macvlan_addr_busy(vlan->port, dev->dev_addr))
		goto out;

604
	err = dev_uc_add(lowerdev, dev->dev_addr);
P
Patrick McHardy 已提交
605
	if (err < 0)
606 607 608 609 610 611
		goto out;
	if (dev->flags & IFF_ALLMULTI) {
		err = dev_set_allmulti(lowerdev, 1);
		if (err < 0)
			goto del_unicast;
	}
612

613 614 615 616 617 618
	if (dev->flags & IFF_PROMISC) {
		err = dev_set_promiscuity(lowerdev, 1);
		if (err < 0)
			goto clear_multi;
	}

619
hash_add:
620
	macvlan_hash_add(vlan);
P
Patrick McHardy 已提交
621
	return 0;
622

623
clear_multi:
624 625
	if (dev->flags & IFF_ALLMULTI)
		dev_set_allmulti(lowerdev, -1);
626
del_unicast:
627
	dev_uc_del(lowerdev, dev->dev_addr);
628
out:
629 630 631 632 633
	if (vlan->fwd_priv) {
		lowerdev->netdev_ops->ndo_dfwd_del_station(lowerdev,
							   vlan->fwd_priv);
		vlan->fwd_priv = NULL;
	}
634
	return err;
P
Patrick McHardy 已提交
635 636 637 638 639 640 641
}

static int macvlan_stop(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

642 643 644 645 646 647 648
	if (vlan->fwd_priv) {
		lowerdev->netdev_ops->ndo_dfwd_del_station(lowerdev,
							   vlan->fwd_priv);
		vlan->fwd_priv = NULL;
		return 0;
	}

649 650 651
	dev_uc_unsync(lowerdev, dev);
	dev_mc_unsync(lowerdev, dev);

652
	if (vlan->port->passthru) {
653 654
		if (!(vlan->flags & MACVLAN_FLAG_NOPROMISC))
			dev_set_promiscuity(lowerdev, -1);
655 656 657
		goto hash_del;
	}

P
Patrick McHardy 已提交
658 659 660
	if (dev->flags & IFF_ALLMULTI)
		dev_set_allmulti(lowerdev, -1);

661 662 663
	if (dev->flags & IFF_PROMISC)
		dev_set_promiscuity(lowerdev, -1);

664
	dev_uc_del(lowerdev, dev->dev_addr);
P
Patrick McHardy 已提交
665

666
hash_del:
667
	macvlan_hash_del(vlan, !dev->dismantle);
P
Patrick McHardy 已提交
668 669 670
	return 0;
}

671
static int macvlan_sync_address(struct net_device *dev, unsigned char *addr)
672 673 674 675 676
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;
	int err;

677 678
	if (!(dev->flags & IFF_UP)) {
		/* Just copy in the new address */
679
		ether_addr_copy(dev->dev_addr, addr);
680 681
	} else {
		/* Rehash and update the device filters */
682
		if (macvlan_addr_busy(vlan->port, addr))
683
			return -EBUSY;
684

685 686 687 688
		if (!vlan->port->passthru) {
			err = dev_uc_add(lowerdev, addr);
			if (err)
				return err;
689

690 691
			dev_uc_del(lowerdev, dev->dev_addr);
		}
692

693
		macvlan_hash_change_addr(vlan, addr);
694
	}
695 696 697
	return 0;
}

698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
static int macvlan_set_mac_address(struct net_device *dev, void *p)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct sockaddr *addr = p;

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

	if (vlan->mode == MACVLAN_MODE_PASSTHRU) {
		dev_set_mac_address(vlan->lowerdev, addr);
		return 0;
	}

	return macvlan_sync_address(dev, addr->sa_data);
}

P
Patrick McHardy 已提交
714 715 716 717 718
static void macvlan_change_rx_flags(struct net_device *dev, int change)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

719 720 721
	if (dev->flags & IFF_UP) {
		if (change & IFF_ALLMULTI)
			dev_set_allmulti(lowerdev, dev->flags & IFF_ALLMULTI ? 1 : -1);
722 723 724 725
		if (change & IFF_PROMISC)
			dev_set_promiscuity(lowerdev,
					    dev->flags & IFF_PROMISC ? 1 : -1);

726
	}
P
Patrick McHardy 已提交
727 728
}

729 730 731
static void macvlan_compute_filter(unsigned long *mc_filter,
				   struct net_device *dev,
				   struct macvlan_dev *vlan)
P
Patrick McHardy 已提交
732
{
E
Eric Dumazet 已提交
733
	if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
734
		bitmap_fill(mc_filter, MACVLAN_MC_FILTER_SZ);
E
Eric Dumazet 已提交
735 736 737 738 739 740
	} else {
		struct netdev_hw_addr *ha;
		DECLARE_BITMAP(filter, MACVLAN_MC_FILTER_SZ);

		bitmap_zero(filter, MACVLAN_MC_FILTER_SZ);
		netdev_for_each_mc_addr(ha, dev) {
E
Eric Dumazet 已提交
741
			__set_bit(mc_hash(vlan, ha->addr), filter);
E
Eric Dumazet 已提交
742
		}
743

E
Eric Dumazet 已提交
744
		__set_bit(mc_hash(vlan, dev->broadcast), filter);
745

746
		bitmap_copy(mc_filter, filter, MACVLAN_MC_FILTER_SZ);
E
Eric Dumazet 已提交
747
	}
748 749 750 751 752 753 754 755
}

static void macvlan_set_mac_lists(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);

	macvlan_compute_filter(vlan->mc_filter, dev, vlan);

756
	dev_uc_sync(vlan->lowerdev, dev);
P
Patrick McHardy 已提交
757
	dev_mc_sync(vlan->lowerdev, dev);
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772

	/* This is slightly inaccurate as we're including the subscription
	 * list of vlan->lowerdev too.
	 *
	 * Bug alert: This only works if everyone has the same broadcast
	 * address as lowerdev.  As soon as someone changes theirs this
	 * will break.
	 *
	 * However, this is already broken as when you change your broadcast
	 * address we don't get called.
	 *
	 * The solution is to maintain a list of broadcast addresses like
	 * we do for uc/mc, if you care.
	 */
	macvlan_compute_filter(vlan->port->mc_filter, vlan->lowerdev, NULL);
P
Patrick McHardy 已提交
773 774 775 776 777 778
}

static int macvlan_change_mtu(struct net_device *dev, int new_mtu)
{
	struct macvlan_dev *vlan = netdev_priv(dev);

779
	if (vlan->lowerdev->mtu < new_mtu)
P
Patrick McHardy 已提交
780 781 782 783 784 785 786 787 788 789
		return -EINVAL;
	dev->mtu = new_mtu;
	return 0;
}

/*
 * macvlan network devices have devices nesting below it and are a special
 * "super class" of normal network devices; split their locks off into a
 * separate class since they always nest.
 */
790
static struct lock_class_key macvlan_netdev_addr_lock_key;
P
Patrick McHardy 已提交
791

792
#define ALWAYS_ON_FEATURES \
793
	(NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_GSO_SOFTWARE | NETIF_F_LLTX | \
794
	 NETIF_F_GSO_ROBUST)
795

P
Patrick McHardy 已提交
796
#define MACVLAN_FEATURES \
797
	(NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | \
798
	 NETIF_F_GSO | NETIF_F_TSO | NETIF_F_UFO | NETIF_F_LRO | \
799
	 NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_GRO | NETIF_F_RXCSUM | \
800
	 NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_STAG_FILTER)
P
Patrick McHardy 已提交
801 802 803 804

#define MACVLAN_STATE_MASK \
	((1<<__LINK_STATE_NOCARRIER) | (1<<__LINK_STATE_DORMANT))

805 806 807 808 809
static int macvlan_get_nest_level(struct net_device *dev)
{
	return ((struct macvlan_dev *)netdev_priv(dev))->nest_level;
}

810 811
static void macvlan_set_lockdep_class(struct net_device *dev)
{
812
	netdev_lockdep_set_classes(dev);
813 814 815
	lockdep_set_class_and_subclass(&dev->addr_list_lock,
				       &macvlan_netdev_addr_lock_key,
				       macvlan_get_nest_level(dev));
816 817
}

P
Patrick McHardy 已提交
818 819 820 821
static int macvlan_init(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	const struct net_device *lowerdev = vlan->lowerdev;
822
	struct macvlan_port *port = vlan->port;
P
Patrick McHardy 已提交
823 824 825 826

	dev->state		= (dev->state & ~MACVLAN_STATE_MASK) |
				  (lowerdev->state & MACVLAN_STATE_MASK);
	dev->features 		= lowerdev->features & MACVLAN_FEATURES;
827
	dev->features		|= ALWAYS_ON_FEATURES;
828
	dev->hw_features	|= NETIF_F_LRO;
829
	dev->vlan_features	= lowerdev->vlan_features & MACVLAN_FEATURES;
830
	dev->gso_max_size	= lowerdev->gso_max_size;
E
Eric Dumazet 已提交
831
	dev->gso_max_segs	= lowerdev->gso_max_segs;
832
	dev->hard_header_len	= lowerdev->hard_header_len;
P
Patrick McHardy 已提交
833

834 835
	macvlan_set_lockdep_class(dev);

836
	vlan->pcpu_stats = netdev_alloc_pcpu_stats(struct vlan_pcpu_stats);
E
Eric Dumazet 已提交
837
	if (!vlan->pcpu_stats)
838 839
		return -ENOMEM;

840 841
	port->count += 1;

P
Patrick McHardy 已提交
842 843 844
	return 0;
}

845 846 847
static void macvlan_uninit(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
848
	struct macvlan_port *port = vlan->port;
849

E
Eric Dumazet 已提交
850
	free_percpu(vlan->pcpu_stats);
851

M
Michael Braun 已提交
852
	macvlan_flush_sources(port, vlan);
853 854
	port->count -= 1;
	if (!port->count)
855
		macvlan_port_destroy(port->dev);
856 857
}

858 859
static void macvlan_dev_get_stats64(struct net_device *dev,
				    struct rtnl_link_stats64 *stats)
860 861 862
{
	struct macvlan_dev *vlan = netdev_priv(dev);

E
Eric Dumazet 已提交
863
	if (vlan->pcpu_stats) {
864
		struct vlan_pcpu_stats *p;
E
Eric Dumazet 已提交
865 866
		u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes;
		u32 rx_errors = 0, tx_dropped = 0;
E
Eric Dumazet 已提交
867
		unsigned int start;
868 869 870
		int i;

		for_each_possible_cpu(i) {
E
Eric Dumazet 已提交
871
			p = per_cpu_ptr(vlan->pcpu_stats, i);
E
Eric Dumazet 已提交
872
			do {
873
				start = u64_stats_fetch_begin_irq(&p->syncp);
E
Eric Dumazet 已提交
874 875 876
				rx_packets	= p->rx_packets;
				rx_bytes	= p->rx_bytes;
				rx_multicast	= p->rx_multicast;
E
Eric Dumazet 已提交
877 878
				tx_packets	= p->tx_packets;
				tx_bytes	= p->tx_bytes;
879
			} while (u64_stats_fetch_retry_irq(&p->syncp, start));
E
Eric Dumazet 已提交
880 881 882 883 884 885 886 887 888 889 890

			stats->rx_packets	+= rx_packets;
			stats->rx_bytes		+= rx_bytes;
			stats->multicast	+= rx_multicast;
			stats->tx_packets	+= tx_packets;
			stats->tx_bytes		+= tx_bytes;
			/* rx_errors & tx_dropped are u32, updated
			 * without syncp protection.
			 */
			rx_errors	+= p->rx_errors;
			tx_dropped	+= p->tx_dropped;
891
		}
E
Eric Dumazet 已提交
892 893 894
		stats->rx_errors	= rx_errors;
		stats->rx_dropped	= rx_errors;
		stats->tx_dropped	= tx_dropped;
895 896 897
	}
}

898
static int macvlan_vlan_rx_add_vid(struct net_device *dev,
899
				   __be16 proto, u16 vid)
900 901 902 903
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

904
	return vlan_vid_add(lowerdev, proto, vid);
905 906
}

907
static int macvlan_vlan_rx_kill_vid(struct net_device *dev,
908
				    __be16 proto, u16 vid)
909 910 911 912
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

913
	vlan_vid_del(lowerdev, proto, vid);
914
	return 0;
915 916
}

917
static int macvlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
918
			   struct net_device *dev,
919
			   const unsigned char *addr, u16 vid,
920 921 922 923 924
			   u16 flags)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	int err = -EINVAL;

925 926 927 928
	/* Support unicast filter only on passthru devices.
	 * Multicast filter should be allowed on all devices.
	 */
	if (!vlan->port->passthru && is_unicast_ether_addr(addr))
929 930
		return -EOPNOTSUPP;

T
Thomas Richter 已提交
931 932 933
	if (flags & NLM_F_REPLACE)
		return -EOPNOTSUPP;

934 935 936 937 938 939 940 941
	if (is_unicast_ether_addr(addr))
		err = dev_uc_add_excl(dev, addr);
	else if (is_multicast_ether_addr(addr))
		err = dev_mc_add_excl(dev, addr);

	return err;
}

942
static int macvlan_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
943
			   struct net_device *dev,
944
			   const unsigned char *addr, u16 vid)
945 946 947 948
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	int err = -EINVAL;

949 950 951 952
	/* Support unicast filter only on passthru devices.
	 * Multicast filter should be allowed on all devices.
	 */
	if (!vlan->port->passthru && is_unicast_ether_addr(addr))
953 954 955 956 957 958 959 960 961 962
		return -EOPNOTSUPP;

	if (is_unicast_ether_addr(addr))
		err = dev_uc_del(dev, addr);
	else if (is_multicast_ether_addr(addr))
		err = dev_mc_del(dev, addr);

	return err;
}

P
Patrick McHardy 已提交
963 964 965
static void macvlan_ethtool_get_drvinfo(struct net_device *dev,
					struct ethtool_drvinfo *drvinfo)
{
966 967
	strlcpy(drvinfo->driver, "macvlan", sizeof(drvinfo->driver));
	strlcpy(drvinfo->version, "0.1", sizeof(drvinfo->version));
P
Patrick McHardy 已提交
968 969
}

970 971
static int macvlan_ethtool_get_link_ksettings(struct net_device *dev,
					      struct ethtool_link_ksettings *cmd)
972 973
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
974

975
	return __ethtool_get_link_ksettings(vlan->lowerdev, cmd);
976 977
}

978 979 980 981
static netdev_features_t macvlan_fix_features(struct net_device *dev,
					      netdev_features_t features)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
982
	netdev_features_t lowerdev_features = vlan->lowerdev->features;
983
	netdev_features_t mask;
984

985 986 987 988
	features |= NETIF_F_ALL_FOR_ALL;
	features &= (vlan->set_features | ~MACVLAN_FEATURES);
	mask = features;

989 990
	lowerdev_features &= (features | ~NETIF_F_LRO);
	features = netdev_increment_features(lowerdev_features, features, mask);
991
	features |= ALWAYS_ON_FEATURES;
992
	features &= ~NETIF_F_NETNS_LOCAL;
993 994

	return features;
995 996
}

D
dingtianhong 已提交
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
#ifdef CONFIG_NET_POLL_CONTROLLER
static void macvlan_dev_poll_controller(struct net_device *dev)
{
	return;
}

static int macvlan_dev_netpoll_setup(struct net_device *dev, struct netpoll_info *npinfo)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *real_dev = vlan->lowerdev;
	struct netpoll *netpoll;
	int err = 0;

	netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
	err = -ENOMEM;
	if (!netpoll)
		goto out;

	err = __netpoll_setup(netpoll, real_dev);
	if (err) {
		kfree(netpoll);
		goto out;
	}

	vlan->netpoll = netpoll;

out:
	return err;
}

static void macvlan_dev_netpoll_cleanup(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct netpoll *netpoll = vlan->netpoll;

	if (!netpoll)
		return;

	vlan->netpoll = NULL;

	__netpoll_free_async(netpoll);
}
#endif	/* CONFIG_NET_POLL_CONTROLLER */

1041 1042 1043 1044 1045 1046 1047
static int macvlan_dev_get_iflink(const struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);

	return vlan->lowerdev->ifindex;
}

P
Patrick McHardy 已提交
1048 1049
static const struct ethtool_ops macvlan_ethtool_ops = {
	.get_link		= ethtool_op_get_link,
1050
	.get_link_ksettings	= macvlan_ethtool_get_link_ksettings,
P
Patrick McHardy 已提交
1051 1052 1053
	.get_drvinfo		= macvlan_ethtool_get_drvinfo,
};

1054 1055
static const struct net_device_ops macvlan_netdev_ops = {
	.ndo_init		= macvlan_init,
1056
	.ndo_uninit		= macvlan_uninit,
1057 1058
	.ndo_open		= macvlan_open,
	.ndo_stop		= macvlan_stop,
1059
	.ndo_start_xmit		= macvlan_start_xmit,
1060
	.ndo_change_mtu		= macvlan_change_mtu,
1061
	.ndo_fix_features	= macvlan_fix_features,
1062 1063
	.ndo_change_rx_flags	= macvlan_change_rx_flags,
	.ndo_set_mac_address	= macvlan_set_mac_address,
1064
	.ndo_set_rx_mode	= macvlan_set_mac_lists,
E
Eric Dumazet 已提交
1065
	.ndo_get_stats64	= macvlan_dev_get_stats64,
1066
	.ndo_validate_addr	= eth_validate_addr,
1067 1068
	.ndo_vlan_rx_add_vid	= macvlan_vlan_rx_add_vid,
	.ndo_vlan_rx_kill_vid	= macvlan_vlan_rx_kill_vid,
1069 1070 1071
	.ndo_fdb_add		= macvlan_fdb_add,
	.ndo_fdb_del		= macvlan_fdb_del,
	.ndo_fdb_dump		= ndo_dflt_fdb_dump,
1072
	.ndo_get_lock_subclass  = macvlan_get_nest_level,
D
dingtianhong 已提交
1073 1074 1075 1076 1077
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= macvlan_dev_poll_controller,
	.ndo_netpoll_setup	= macvlan_dev_netpoll_setup,
	.ndo_netpoll_cleanup	= macvlan_dev_netpoll_cleanup,
#endif
1078
	.ndo_get_iflink		= macvlan_dev_get_iflink,
1079
	.ndo_features_check	= passthru_features_check,
1080 1081
};

H
Herbert Xu 已提交
1082
void macvlan_common_setup(struct net_device *dev)
P
Patrick McHardy 已提交
1083 1084 1085
{
	ether_setup(dev);

1086 1087
	dev->min_mtu		= 0;
	dev->max_mtu		= ETH_MAX_MTU;
1088 1089
	dev->priv_flags	       &= ~IFF_TX_SKB_SHARING;
	netif_keep_dst(dev);
1090
	dev->priv_flags	       |= IFF_UNICAST_FLT;
1091
	dev->netdev_ops		= &macvlan_netdev_ops;
P
Patrick McHardy 已提交
1092
	dev->destructor		= free_netdev;
L
Lutz Jaenicke 已提交
1093
	dev->header_ops		= &macvlan_hard_header_ops;
P
Patrick McHardy 已提交
1094
	dev->ethtool_ops	= &macvlan_ethtool_ops;
H
Herbert Xu 已提交
1095 1096 1097 1098 1099 1100
}
EXPORT_SYMBOL_GPL(macvlan_common_setup);

static void macvlan_setup(struct net_device *dev)
{
	macvlan_common_setup(dev);
1101
	dev->priv_flags |= IFF_NO_QUEUE;
P
Patrick McHardy 已提交
1102 1103 1104 1105 1106 1107
}

static int macvlan_port_create(struct net_device *dev)
{
	struct macvlan_port *port;
	unsigned int i;
1108
	int err;
P
Patrick McHardy 已提交
1109 1110 1111 1112

	if (dev->type != ARPHRD_ETHER || dev->flags & IFF_LOOPBACK)
		return -EINVAL;

1113
	if (netdev_is_rx_handler_busy(dev))
1114 1115
		return -EBUSY;

P
Patrick McHardy 已提交
1116 1117 1118 1119
	port = kzalloc(sizeof(*port), GFP_KERNEL);
	if (port == NULL)
		return -ENOMEM;

1120
	port->passthru = false;
P
Patrick McHardy 已提交
1121 1122 1123 1124
	port->dev = dev;
	INIT_LIST_HEAD(&port->vlans);
	for (i = 0; i < MACVLAN_HASH_SIZE; i++)
		INIT_HLIST_HEAD(&port->vlan_hash[i]);
M
Michael Braun 已提交
1125 1126
	for (i = 0; i < MACVLAN_HASH_SIZE; i++)
		INIT_HLIST_HEAD(&port->vlan_source_hash[i]);
1127

1128 1129 1130
	skb_queue_head_init(&port->bc_queue);
	INIT_WORK(&port->bc_work, macvlan_process_broadcast);

1131 1132
	err = netdev_rx_handler_register(dev, macvlan_handle_frame, port);
	if (err)
1133
		kfree(port);
1134 1135
	else
		dev->priv_flags |= IFF_MACVLAN_PORT;
1136
	return err;
P
Patrick McHardy 已提交
1137 1138 1139 1140
}

static void macvlan_port_destroy(struct net_device *dev)
{
E
Eric Dumazet 已提交
1141
	struct macvlan_port *port = macvlan_port_get_rtnl(dev);
1142
	struct sk_buff *skb;
P
Patrick McHardy 已提交
1143

1144
	dev->priv_flags &= ~IFF_MACVLAN_PORT;
1145
	netdev_rx_handler_unregister(dev);
1146 1147 1148 1149 1150

	/* After this point, no packet can schedule bc_work anymore,
	 * but we need to cancel it and purge left skbs if any.
	 */
	cancel_work_sync(&port->bc_work);
1151 1152 1153 1154 1155 1156 1157 1158 1159

	while ((skb = __skb_dequeue(&port->bc_queue))) {
		const struct macvlan_dev *src = MACVLAN_SKB_CB(skb)->src;

		if (src)
			dev_put(src->dev);

		kfree_skb(skb);
	}
1160

1161
	kfree(port);
P
Patrick McHardy 已提交
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
}

static int macvlan_validate(struct nlattr *tb[], struct nlattr *data[])
{
	if (tb[IFLA_ADDRESS]) {
		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
			return -EINVAL;
		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
			return -EADDRNOTAVAIL;
	}
1172

M
Michael S. Tsirkin 已提交
1173 1174 1175 1176
	if (data && data[IFLA_MACVLAN_FLAGS] &&
	    nla_get_u16(data[IFLA_MACVLAN_FLAGS]) & ~MACVLAN_FLAG_NOPROMISC)
		return -EINVAL;

1177 1178 1179 1180 1181
	if (data && data[IFLA_MACVLAN_MODE]) {
		switch (nla_get_u32(data[IFLA_MACVLAN_MODE])) {
		case MACVLAN_MODE_PRIVATE:
		case MACVLAN_MODE_VEPA:
		case MACVLAN_MODE_BRIDGE:
1182
		case MACVLAN_MODE_PASSTHRU:
M
Michael Braun 已提交
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
		case MACVLAN_MODE_SOURCE:
			break;
		default:
			return -EINVAL;
		}
	}

	if (data && data[IFLA_MACVLAN_MACADDR_MODE]) {
		switch (nla_get_u32(data[IFLA_MACVLAN_MACADDR_MODE])) {
		case MACVLAN_MACADDR_ADD:
		case MACVLAN_MACADDR_DEL:
		case MACVLAN_MACADDR_FLUSH:
		case MACVLAN_MACADDR_SET:
1196 1197 1198 1199 1200
			break;
		default:
			return -EINVAL;
		}
	}
M
Michael Braun 已提交
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278

	if (data && data[IFLA_MACVLAN_MACADDR]) {
		if (nla_len(data[IFLA_MACVLAN_MACADDR]) != ETH_ALEN)
			return -EINVAL;

		if (!is_valid_ether_addr(nla_data(data[IFLA_MACVLAN_MACADDR])))
			return -EADDRNOTAVAIL;
	}

	if (data && data[IFLA_MACVLAN_MACADDR_COUNT])
		return -EINVAL;

	return 0;
}

/**
 * reconfigure list of remote source mac address
 * (only for macvlan devices in source mode)
 * Note regarding alignment: all netlink data is aligned to 4 Byte, which
 * suffices for both ether_addr_copy and ether_addr_equal_64bits usage.
 */
static int macvlan_changelink_sources(struct macvlan_dev *vlan, u32 mode,
				      struct nlattr *data[])
{
	char *addr = NULL;
	int ret, rem, len;
	struct nlattr *nla, *head;
	struct macvlan_source_entry *entry;

	if (data[IFLA_MACVLAN_MACADDR])
		addr = nla_data(data[IFLA_MACVLAN_MACADDR]);

	if (mode == MACVLAN_MACADDR_ADD) {
		if (!addr)
			return -EINVAL;

		return macvlan_hash_add_source(vlan, addr);

	} else if (mode == MACVLAN_MACADDR_DEL) {
		if (!addr)
			return -EINVAL;

		entry = macvlan_hash_lookup_source(vlan, addr);
		if (entry) {
			macvlan_hash_del_source(entry);
			vlan->macaddr_count--;
		}
	} else if (mode == MACVLAN_MACADDR_FLUSH) {
		macvlan_flush_sources(vlan->port, vlan);
	} else if (mode == MACVLAN_MACADDR_SET) {
		macvlan_flush_sources(vlan->port, vlan);

		if (addr) {
			ret = macvlan_hash_add_source(vlan, addr);
			if (ret)
				return ret;
		}

		if (!data || !data[IFLA_MACVLAN_MACADDR_DATA])
			return 0;

		head = nla_data(data[IFLA_MACVLAN_MACADDR_DATA]);
		len = nla_len(data[IFLA_MACVLAN_MACADDR_DATA]);

		nla_for_each_attr(nla, head, len, rem) {
			if (nla_type(nla) != IFLA_MACVLAN_MACADDR ||
			    nla_len(nla) != ETH_ALEN)
				continue;

			addr = nla_data(nla);
			ret = macvlan_hash_add_source(vlan, addr);
			if (ret)
				return ret;
		}
	} else {
		return -EINVAL;
	}

P
Patrick McHardy 已提交
1279 1280 1281
	return 0;
}

1282
int macvlan_common_newlink(struct net *src_net, struct net_device *dev,
1283
			   struct nlattr *tb[], struct nlattr *data[])
P
Patrick McHardy 已提交
1284 1285 1286 1287 1288
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct macvlan_port *port;
	struct net_device *lowerdev;
	int err;
M
Michael Braun 已提交
1289
	int macmode;
1290
	bool create = false;
P
Patrick McHardy 已提交
1291 1292 1293 1294

	if (!tb[IFLA_LINK])
		return -EINVAL;

1295
	lowerdev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
P
Patrick McHardy 已提交
1296 1297 1298
	if (lowerdev == NULL)
		return -ENODEV;

1299
	/* When creating macvlans or macvtaps on top of other macvlans - use
1300
	 * the real device as the lowerdev.
1301
	 */
1302 1303
	if (netif_is_macvlan(lowerdev))
		lowerdev = macvlan_dev_real_dev(lowerdev);
1304

P
Patrick McHardy 已提交
1305 1306 1307 1308 1309
	if (!tb[IFLA_MTU])
		dev->mtu = lowerdev->mtu;
	else if (dev->mtu > lowerdev->mtu)
		return -EINVAL;

1310 1311 1312 1313
	/* MTU range: 68 - lowerdev->max_mtu */
	dev->min_mtu = ETH_MIN_MTU;
	dev->max_mtu = lowerdev->max_mtu;

P
Patrick McHardy 已提交
1314
	if (!tb[IFLA_ADDRESS])
1315
		eth_hw_addr_random(dev);
P
Patrick McHardy 已提交
1316

1317
	if (!macvlan_port_exists(lowerdev)) {
P
Patrick McHardy 已提交
1318 1319 1320
		err = macvlan_port_create(lowerdev);
		if (err < 0)
			return err;
1321
		create = true;
P
Patrick McHardy 已提交
1322
	}
E
Eric Dumazet 已提交
1323
	port = macvlan_port_get_rtnl(lowerdev);
P
Patrick McHardy 已提交
1324

1325
	/* Only 1 macvlan device can be created in passthru mode */
1326 1327 1328 1329 1330 1331 1332
	if (port->passthru) {
		/* The macvlan port must be not created this time,
		 * still goto destroy_macvlan_port for readability.
		 */
		err = -EINVAL;
		goto destroy_macvlan_port;
	}
1333

P
Patrick McHardy 已提交
1334 1335 1336
	vlan->lowerdev = lowerdev;
	vlan->dev      = dev;
	vlan->port     = port;
1337
	vlan->set_features = MACVLAN_FEATURES;
1338
	vlan->nest_level = dev_get_nest_level(lowerdev) + 1;
P
Patrick McHardy 已提交
1339

1340 1341 1342 1343
	vlan->mode     = MACVLAN_MODE_VEPA;
	if (data && data[IFLA_MACVLAN_MODE])
		vlan->mode = nla_get_u32(data[IFLA_MACVLAN_MODE]);

1344 1345 1346
	if (data && data[IFLA_MACVLAN_FLAGS])
		vlan->flags = nla_get_u16(data[IFLA_MACVLAN_FLAGS]);

1347
	if (vlan->mode == MACVLAN_MODE_PASSTHRU) {
1348 1349 1350 1351
		if (port->count) {
			err = -EINVAL;
			goto destroy_macvlan_port;
		}
1352
		port->passthru = true;
1353
		eth_hw_addr_inherit(dev, lowerdev);
1354 1355
	}

M
Michael Braun 已提交
1356
	if (data && data[IFLA_MACVLAN_MACADDR_MODE]) {
1357 1358 1359 1360
		if (vlan->mode != MACVLAN_MODE_SOURCE) {
			err = -EINVAL;
			goto destroy_macvlan_port;
		}
M
Michael Braun 已提交
1361 1362 1363
		macmode = nla_get_u32(data[IFLA_MACVLAN_MACADDR_MODE]);
		err = macvlan_changelink_sources(vlan, macmode, data);
		if (err)
1364
			goto destroy_macvlan_port;
M
Michael Braun 已提交
1365 1366
	}

1367 1368
	err = register_netdevice(dev);
	if (err < 0)
1369
		goto destroy_macvlan_port;
1370

1371
	dev->priv_flags |= IFF_MACVLAN;
J
Jiri Pirko 已提交
1372 1373
	err = netdev_upper_dev_link(lowerdev, dev);
	if (err)
1374
		goto unregister_netdev;
P
Patrick McHardy 已提交
1375

1376
	list_add_tail_rcu(&vlan->list, &port->vlans);
1377
	netif_stacked_transfer_operstate(lowerdev, dev);
1378
	linkwatch_fire_event(dev);
1379

P
Patrick McHardy 已提交
1380
	return 0;
1381

1382 1383
unregister_netdev:
	unregister_netdevice(dev);
1384 1385 1386
destroy_macvlan_port:
	if (create)
		macvlan_port_destroy(port->dev);
1387
	return err;
P
Patrick McHardy 已提交
1388
}
1389
EXPORT_SYMBOL_GPL(macvlan_common_newlink);
P
Patrick McHardy 已提交
1390

1391 1392 1393
static int macvlan_newlink(struct net *src_net, struct net_device *dev,
			   struct nlattr *tb[], struct nlattr *data[])
{
1394
	return macvlan_common_newlink(src_net, dev, tb, data);
1395 1396 1397
}

void macvlan_dellink(struct net_device *dev, struct list_head *head)
P
Patrick McHardy 已提交
1398 1399 1400
{
	struct macvlan_dev *vlan = netdev_priv(dev);

M
Michael Braun 已提交
1401 1402
	if (vlan->mode == MACVLAN_MODE_SOURCE)
		macvlan_flush_sources(vlan->port, vlan);
1403
	list_del_rcu(&vlan->list);
1404
	unregister_netdevice_queue(dev, head);
J
Jiri Pirko 已提交
1405
	netdev_upper_dev_unlink(vlan->lowerdev, dev);
P
Patrick McHardy 已提交
1406
}
1407
EXPORT_SYMBOL_GPL(macvlan_dellink);
P
Patrick McHardy 已提交
1408

1409 1410 1411 1412
static int macvlan_changelink(struct net_device *dev,
		struct nlattr *tb[], struct nlattr *data[])
{
	struct macvlan_dev *vlan = netdev_priv(dev);
1413 1414
	enum macvlan_mode mode;
	bool set_mode = false;
M
Michael Braun 已提交
1415 1416
	enum macvlan_macaddr_mode macmode;
	int ret;
1417 1418 1419 1420 1421 1422 1423 1424 1425

	/* Validate mode, but don't set yet: setting flags may fail. */
	if (data && data[IFLA_MACVLAN_MODE]) {
		set_mode = true;
		mode = nla_get_u32(data[IFLA_MACVLAN_MODE]);
		/* Passthrough mode can't be set or cleared dynamically */
		if ((mode == MACVLAN_MODE_PASSTHRU) !=
		    (vlan->mode == MACVLAN_MODE_PASSTHRU))
			return -EINVAL;
M
Michael Braun 已提交
1426 1427 1428
		if (vlan->mode == MACVLAN_MODE_SOURCE &&
		    vlan->mode != mode)
			macvlan_flush_sources(vlan->port, vlan);
1429
	}
1430

1431 1432 1433
	if (data && data[IFLA_MACVLAN_FLAGS]) {
		__u16 flags = nla_get_u16(data[IFLA_MACVLAN_FLAGS]);
		bool promisc = (flags ^ vlan->flags) & MACVLAN_FLAG_NOPROMISC;
1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
		if (vlan->port->passthru && promisc) {
			int err;

			if (flags & MACVLAN_FLAG_NOPROMISC)
				err = dev_set_promiscuity(vlan->lowerdev, -1);
			else
				err = dev_set_promiscuity(vlan->lowerdev, 1);
			if (err < 0)
				return err;
		}
1444 1445
		vlan->flags = flags;
	}
1446 1447
	if (set_mode)
		vlan->mode = mode;
M
Michael Braun 已提交
1448 1449 1450 1451 1452 1453 1454 1455
	if (data && data[IFLA_MACVLAN_MACADDR_MODE]) {
		if (vlan->mode != MACVLAN_MODE_SOURCE)
			return -EINVAL;
		macmode = nla_get_u32(data[IFLA_MACVLAN_MACADDR_MODE]);
		ret = macvlan_changelink_sources(vlan, macmode, data);
		if (ret)
			return ret;
	}
1456 1457 1458
	return 0;
}

M
Michael Braun 已提交
1459 1460 1461 1462 1463 1464 1465 1466
static size_t macvlan_get_size_mac(const struct macvlan_dev *vlan)
{
	if (vlan->macaddr_count == 0)
		return 0;
	return nla_total_size(0) /* IFLA_MACVLAN_MACADDR_DATA */
		+ vlan->macaddr_count * nla_total_size(sizeof(u8) * ETH_ALEN);
}

1467 1468
static size_t macvlan_get_size(const struct net_device *dev)
{
M
Michael Braun 已提交
1469 1470
	struct macvlan_dev *vlan = netdev_priv(dev);

E
Eric Dumazet 已提交
1471 1472 1473
	return (0
		+ nla_total_size(4) /* IFLA_MACVLAN_MODE */
		+ nla_total_size(2) /* IFLA_MACVLAN_FLAGS */
M
Michael Braun 已提交
1474 1475
		+ nla_total_size(4) /* IFLA_MACVLAN_MACADDR_COUNT */
		+ macvlan_get_size_mac(vlan) /* IFLA_MACVLAN_MACADDR */
E
Eric Dumazet 已提交
1476
		);
1477 1478
}

M
Michael Braun 已提交
1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
static int macvlan_fill_info_macaddr(struct sk_buff *skb,
				     const struct macvlan_dev *vlan,
				     const int i)
{
	struct hlist_head *h = &vlan->port->vlan_source_hash[i];
	struct macvlan_source_entry *entry;

	hlist_for_each_entry_rcu(entry, h, hlist) {
		if (entry->vlan != vlan)
			continue;
		if (nla_put(skb, IFLA_MACVLAN_MACADDR, ETH_ALEN, entry->addr))
			return 1;
	}
	return 0;
}

1495 1496 1497 1498
static int macvlan_fill_info(struct sk_buff *skb,
				const struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
M
Michael Braun 已提交
1499 1500
	int i;
	struct nlattr *nest;
1501

1502 1503
	if (nla_put_u32(skb, IFLA_MACVLAN_MODE, vlan->mode))
		goto nla_put_failure;
1504 1505
	if (nla_put_u16(skb, IFLA_MACVLAN_FLAGS, vlan->flags))
		goto nla_put_failure;
M
Michael Braun 已提交
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
	if (nla_put_u32(skb, IFLA_MACVLAN_MACADDR_COUNT, vlan->macaddr_count))
		goto nla_put_failure;
	if (vlan->macaddr_count > 0) {
		nest = nla_nest_start(skb, IFLA_MACVLAN_MACADDR_DATA);
		if (nest == NULL)
			goto nla_put_failure;

		for (i = 0; i < MACVLAN_HASH_SIZE; i++) {
			if (macvlan_fill_info_macaddr(skb, vlan, i))
				goto nla_put_failure;
		}
		nla_nest_end(skb, nest);
	}
1519 1520 1521 1522 1523 1524 1525
	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

static const struct nla_policy macvlan_policy[IFLA_MACVLAN_MAX + 1] = {
1526 1527
	[IFLA_MACVLAN_MODE]  = { .type = NLA_U32 },
	[IFLA_MACVLAN_FLAGS] = { .type = NLA_U16 },
M
Michael Braun 已提交
1528 1529 1530 1531
	[IFLA_MACVLAN_MACADDR_MODE] = { .type = NLA_U32 },
	[IFLA_MACVLAN_MACADDR] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
	[IFLA_MACVLAN_MACADDR_DATA] = { .type = NLA_NESTED },
	[IFLA_MACVLAN_MACADDR_COUNT] = { .type = NLA_U32 },
1532 1533
};

1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
int macvlan_link_register(struct rtnl_link_ops *ops)
{
	/* common fields */
	ops->validate		= macvlan_validate;
	ops->maxtype		= IFLA_MACVLAN_MAX;
	ops->policy		= macvlan_policy;
	ops->changelink		= macvlan_changelink;
	ops->get_size		= macvlan_get_size;
	ops->fill_info		= macvlan_fill_info;

	return rtnl_link_register(ops);
};
EXPORT_SYMBOL_GPL(macvlan_link_register);

1548 1549 1550 1551 1552
static struct net *macvlan_get_link_net(const struct net_device *dev)
{
	return dev_net(macvlan_dev_real_dev(dev));
}

1553
static struct rtnl_link_ops macvlan_link_ops = {
P
Patrick McHardy 已提交
1554
	.kind		= "macvlan",
H
Herbert Xu 已提交
1555
	.setup		= macvlan_setup,
P
Patrick McHardy 已提交
1556 1557
	.newlink	= macvlan_newlink,
	.dellink	= macvlan_dellink,
1558
	.get_link_net	= macvlan_get_link_net,
1559
	.priv_size      = sizeof(struct macvlan_dev),
P
Patrick McHardy 已提交
1560 1561 1562 1563 1564
};

static int macvlan_device_event(struct notifier_block *unused,
				unsigned long event, void *ptr)
{
1565
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
P
Patrick McHardy 已提交
1566 1567
	struct macvlan_dev *vlan, *next;
	struct macvlan_port *port;
1568
	LIST_HEAD(list_kill);
P
Patrick McHardy 已提交
1569

1570
	if (!macvlan_port_exists(dev))
P
Patrick McHardy 已提交
1571 1572
		return NOTIFY_DONE;

E
Eric Dumazet 已提交
1573
	port = macvlan_port_get_rtnl(dev);
1574

P
Patrick McHardy 已提交
1575
	switch (event) {
1576
	case NETDEV_UP:
P
Patrick McHardy 已提交
1577 1578
	case NETDEV_CHANGE:
		list_for_each_entry(vlan, &port->vlans, list)
1579 1580
			netif_stacked_transfer_operstate(vlan->lowerdev,
							 vlan->dev);
P
Patrick McHardy 已提交
1581 1582 1583
		break;
	case NETDEV_FEAT_CHANGE:
		list_for_each_entry(vlan, &port->vlans, list) {
1584
			vlan->dev->gso_max_size = dev->gso_max_size;
E
Eric Dumazet 已提交
1585
			vlan->dev->gso_max_segs = dev->gso_max_segs;
1586
			netdev_update_features(vlan->dev);
P
Patrick McHardy 已提交
1587 1588
		}
		break;
1589 1590 1591 1592 1593 1594
	case NETDEV_CHANGEMTU:
		list_for_each_entry(vlan, &port->vlans, list) {
			if (vlan->dev->mtu <= dev->mtu)
				continue;
			dev_set_mtu(vlan->dev, dev->mtu);
		}
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606
		break;
	case NETDEV_CHANGEADDR:
		if (!port->passthru)
			return NOTIFY_DONE;

		vlan = list_first_entry_or_null(&port->vlans,
						struct macvlan_dev,
						list);

		if (macvlan_sync_address(vlan->dev, dev->dev_addr))
			return NOTIFY_BAD;

1607
		break;
P
Patrick McHardy 已提交
1608
	case NETDEV_UNREGISTER:
1609 1610 1611 1612
		/* twiddle thumbs on netns device moves */
		if (dev->reg_state != NETREG_UNREGISTERING)
			break;

P
Patrick McHardy 已提交
1613
		list_for_each_entry_safe(vlan, next, &port->vlans, list)
1614 1615
			vlan->dev->rtnl_link_ops->dellink(vlan->dev, &list_kill);
		unregister_netdevice_many(&list_kill);
P
Patrick McHardy 已提交
1616
		break;
1617 1618 1619
	case NETDEV_PRE_TYPE_CHANGE:
		/* Forbid underlaying device to change its type. */
		return NOTIFY_BAD;
V
Vlad Yasevich 已提交
1620 1621 1622 1623 1624 1625 1626

	case NETDEV_NOTIFY_PEERS:
	case NETDEV_BONDING_FAILOVER:
	case NETDEV_RESEND_IGMP:
		/* Propagate to all vlans */
		list_for_each_entry(vlan, &port->vlans, list)
			call_netdevice_notifiers(event, vlan->dev);
P
Patrick McHardy 已提交
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640
	}
	return NOTIFY_DONE;
}

static struct notifier_block macvlan_notifier_block __read_mostly = {
	.notifier_call	= macvlan_device_event,
};

static int __init macvlan_init_module(void)
{
	int err;

	register_netdevice_notifier(&macvlan_notifier_block);

1641
	err = macvlan_link_register(&macvlan_link_ops);
P
Patrick McHardy 已提交
1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662
	if (err < 0)
		goto err1;
	return 0;
err1:
	unregister_netdevice_notifier(&macvlan_notifier_block);
	return err;
}

static void __exit macvlan_cleanup_module(void)
{
	rtnl_link_unregister(&macvlan_link_ops);
	unregister_netdevice_notifier(&macvlan_notifier_block);
}

module_init(macvlan_init_module);
module_exit(macvlan_cleanup_module);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
MODULE_DESCRIPTION("Driver for MAC address based VLANs");
MODULE_ALIAS_RTNL_LINK("macvlan");