macvlan.c 29.4 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>
P
Patrick McHardy 已提交
36 37 38 39 40 41 42

#define MACVLAN_HASH_SIZE	(1 << BITS_PER_BYTE)

struct macvlan_port {
	struct net_device	*dev;
	struct hlist_head	vlan_hash[MACVLAN_HASH_SIZE];
	struct list_head	vlans;
J
Jiri Pirko 已提交
43
	struct rcu_head		rcu;
44 45
	struct sk_buff_head	bc_queue;
	struct work_struct	bc_work;
46
	bool 			passthru;
P
Patrick McHardy 已提交
47 48
};

49 50
#define MACVLAN_PORT_IS_EMPTY(port)    list_empty(&port->vlans)

51 52 53 54 55 56
struct macvlan_skb_cb {
	const struct macvlan_dev *src;
};

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

57 58
static void macvlan_port_destroy(struct net_device *dev);

E
Eric Dumazet 已提交
59 60 61 62 63 64 65 66 67 68
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);
}

69 70
#define macvlan_port_exists(dev) (dev->priv_flags & IFF_MACVLAN_PORT)

P
Patrick McHardy 已提交
71 72 73 74 75
static struct macvlan_dev *macvlan_hash_lookup(const struct macvlan_port *port,
					       const unsigned char *addr)
{
	struct macvlan_dev *vlan;

76
	hlist_for_each_entry_rcu(vlan, &port->vlan_hash[addr[5]], hlist) {
77
		if (ether_addr_equal_64bits(vlan->dev->dev_addr, addr))
P
Patrick McHardy 已提交
78 79 80 81 82
			return vlan;
	}
	return NULL;
}

83 84 85 86 87 88 89 90
static void macvlan_hash_add(struct macvlan_dev *vlan)
{
	struct macvlan_port *port = vlan->port;
	const unsigned char *addr = vlan->dev->dev_addr;

	hlist_add_head_rcu(&vlan->hlist, &port->vlan_hash[addr[5]]);
}

91
static void macvlan_hash_del(struct macvlan_dev *vlan, bool sync)
92 93
{
	hlist_del_rcu(&vlan->hlist);
94 95
	if (sync)
		synchronize_rcu();
96 97 98 99 100
}

static void macvlan_hash_change_addr(struct macvlan_dev *vlan,
					const unsigned char *addr)
{
101
	macvlan_hash_del(vlan, true);
102 103 104 105 106 107 108 109 110 111 112 113 114 115
	/* 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);
}

static int macvlan_addr_busy(const struct macvlan_port *port,
				const unsigned char *addr)
{
	/* Test to see if the specified multicast address is
	 * currently in use by the underlying device or
	 * another macvlan.
	 */
116
	if (ether_addr_equal_64bits(port->dev->dev_addr, addr))
117 118 119 120 121 122 123 124
		return 1;

	if (macvlan_hash_lookup(port, addr))
		return 1;

	return 0;
}

A
Arnd Bergmann 已提交
125

126 127
static int macvlan_broadcast_one(struct sk_buff *skb,
				 const struct macvlan_dev *vlan,
128
				 const struct ethhdr *eth, bool local)
A
Arnd Bergmann 已提交
129
{
130
	struct net_device *dev = vlan->dev;
A
Arnd Bergmann 已提交
131

132
	if (local)
133
		return __dev_forward_skb(dev, skb);
134

A
Arnd Bergmann 已提交
135
	skb->dev = dev;
136
	if (ether_addr_equal_64bits(eth->h_dest, dev->broadcast))
A
Arnd Bergmann 已提交
137 138 139 140
		skb->pkt_type = PACKET_BROADCAST;
	else
		skb->pkt_type = PACKET_MULTICAST;

141
	return 0;
A
Arnd Bergmann 已提交
142 143
}

E
Eric Dumazet 已提交
144 145 146 147 148 149 150 151
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 已提交
152 153 154
{
	u32 val = __get_unaligned_cpu32(addr + 2);

E
Eric Dumazet 已提交
155
	val ^= macvlan_hash_mix(vlan);
E
Eric Dumazet 已提交
156 157 158
	return hash_32(val, MACVLAN_MC_FILTER_BITS);
}

P
Patrick McHardy 已提交
159
static void macvlan_broadcast(struct sk_buff *skb,
160 161 162
			      const struct macvlan_port *port,
			      struct net_device *src,
			      enum macvlan_mode mode)
P
Patrick McHardy 已提交
163 164 165 166 167
{
	const struct ethhdr *eth = eth_hdr(skb);
	const struct macvlan_dev *vlan;
	struct sk_buff *nskb;
	unsigned int i;
A
Arnd Bergmann 已提交
168
	int err;
E
Eric Dumazet 已提交
169
	unsigned int hash;
P
Patrick McHardy 已提交
170

171 172 173
	if (skb->protocol == htons(ETH_P_PAUSE))
		return;

P
Patrick McHardy 已提交
174
	for (i = 0; i < MACVLAN_HASH_SIZE; i++) {
175
		hlist_for_each_entry_rcu(vlan, &port->vlan_hash[i], hlist) {
176 177 178
			if (vlan->dev == src || !(vlan->mode & mode))
				continue;

E
Eric Dumazet 已提交
179
			hash = mc_hash(vlan, eth->h_dest);
E
Eric Dumazet 已提交
180 181
			if (!test_bit(hash, vlan->mc_filter))
				continue;
182 183

			err = NET_RX_DROP;
P
Patrick McHardy 已提交
184
			nskb = skb_clone(skb, GFP_ATOMIC);
185 186 187
			if (likely(nskb))
				err = macvlan_broadcast_one(
					nskb, vlan, eth,
188 189
					mode == MACVLAN_MODE_BRIDGE) ?:
				      netif_rx_ni(nskb);
A
Arnd Bergmann 已提交
190 191
			macvlan_count_rx(vlan, skb->len + ETH_HLEN,
					 err == NET_RX_SUCCESS, 1);
P
Patrick McHardy 已提交
192 193 194 195
		}
	}
}

196
static void macvlan_process_broadcast(struct work_struct *w)
P
Patrick McHardy 已提交
197
{
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
	struct macvlan_port *port = container_of(w, struct macvlan_port,
						 bc_work);
	struct sk_buff *skb;
	struct sk_buff_head list;

	skb_queue_head_init(&list);

	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 已提交
213

214 215 216 217 218
		if (!src)
			/* frame comes from an external address */
			macvlan_broadcast(skb, port, NULL,
					  MACVLAN_MODE_PRIVATE |
					  MACVLAN_MODE_VEPA    |
219
					  MACVLAN_MODE_PASSTHRU|
220 221 222 223 224 225
					  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);
226
		else
227 228 229 230 231 232
			/*
			 * flood only to VEPA ports, bridge ports
			 * already saw the frame on the way out.
			 */
			macvlan_broadcast(skb, port, src->dev,
					  MACVLAN_MODE_VEPA);
233 234 235 236 237 238 239 240 241 242

		rcu_read_unlock();

		kfree_skb(skb);
	}
}

static void macvlan_broadcast_enqueue(struct macvlan_port *port,
				      struct sk_buff *skb)
{
243
	struct sk_buff *nskb;
244 245
	int err = -ENOMEM;

246 247
	nskb = skb_clone(skb, GFP_ATOMIC);
	if (!nskb)
248 249 250 251
		goto err;

	spin_lock(&port->bc_queue.lock);
	if (skb_queue_len(&port->bc_queue) < skb->dev->tx_queue_len) {
252
		__skb_queue_tail(&port->bc_queue, nskb);
253 254 255 256 257
		err = 0;
	}
	spin_unlock(&port->bc_queue.lock);

	if (err)
258
		goto free_nskb;
259 260 261 262

	schedule_work(&port->bc_work);
	return;

263 264
free_nskb:
	kfree_skb(nskb);
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
err:
	atomic_long_inc(&skb->dev->rx_dropped);
}

/* 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;
	int ret = NET_RX_DROP;

	port = macvlan_port_get_rcu(skb->dev);
	if (is_multicast_ether_addr(eth->h_dest)) {
		skb = ip_check_defrag(skb, IP_DEFRAG_MACVLAN);
		if (!skb)
			return RX_HANDLER_CONSUMED;
		eth = eth_hdr(skb);
		src = macvlan_hash_lookup(port, eth->h_source);
		if (src && src->mode != MACVLAN_MODE_VEPA &&
		    src->mode != MACVLAN_MODE_BRIDGE) {
290 291
			/* forward to original port. */
			vlan = src;
292 293
			ret = macvlan_broadcast_one(skb, vlan, eth, 0) ?:
			      netif_rx(skb);
294 295 296
			goto out;
		}

297 298 299
		MACVLAN_SKB_CB(skb)->src = src;
		macvlan_broadcast_enqueue(port, skb);

300
		return RX_HANDLER_PASS;
P
Patrick McHardy 已提交
301 302
	}

303
	if (port->passthru)
304 305
		vlan = list_first_or_null_rcu(&port->vlans,
					      struct macvlan_dev, list);
306 307
	else
		vlan = macvlan_hash_lookup(port, eth->h_dest);
P
Patrick McHardy 已提交
308
	if (vlan == NULL)
309
		return RX_HANDLER_PASS;
P
Patrick McHardy 已提交
310 311 312 313

	dev = vlan->dev;
	if (unlikely(!(dev->flags & IFF_UP))) {
		kfree_skb(skb);
314
		return RX_HANDLER_CONSUMED;
P
Patrick McHardy 已提交
315
	}
A
Arnd Bergmann 已提交
316
	len = skb->len + ETH_HLEN;
P
Patrick McHardy 已提交
317
	skb = skb_share_check(skb, GFP_ATOMIC);
A
Arnd Bergmann 已提交
318
	if (!skb)
319
		goto out;
P
Patrick McHardy 已提交
320 321 322 323

	skb->dev = dev;
	skb->pkt_type = PACKET_HOST;

324
	ret = netif_rx(skb);
325 326 327

out:
	macvlan_count_rx(vlan, len, ret == NET_RX_SUCCESS, 0);
328
	return RX_HANDLER_CONSUMED;
P
Patrick McHardy 已提交
329 330
}

331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
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) {
348
			/* send to lowerdev first for its network taps */
349
			dev_forward_skb(vlan->lowerdev, skb);
350 351 352 353 354 355

			return NET_XMIT_SUCCESS;
		}
	}

xmit_world:
356
	skb->dev = vlan->lowerdev;
357 358 359
	return dev_queue_xmit(skb);
}

S
stephen hemminger 已提交
360 361
static netdev_tx_t macvlan_start_xmit(struct sk_buff *skb,
				      struct net_device *dev)
P
Patrick McHardy 已提交
362 363 364
{
	unsigned int len = skb->len;
	int ret;
E
Eric Dumazet 已提交
365
	const struct macvlan_dev *vlan = netdev_priv(dev);
P
Patrick McHardy 已提交
366

367 368
	if (vlan->fwd_priv) {
		skb->dev = vlan->lowerdev;
369
		ret = dev_queue_xmit_accel(skb, vlan->fwd_priv);
370 371 372 373
	} else {
		ret = macvlan_queue_xmit(skb, dev);
	}

374
	if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
375
		struct vlan_pcpu_stats *pcpu_stats;
376

E
Eric Dumazet 已提交
377 378 379 380 381 382 383 384
		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);
	}
385
	return ret;
P
Patrick McHardy 已提交
386 387 388
}

static int macvlan_hard_header(struct sk_buff *skb, struct net_device *dev,
389 390
			       unsigned short type, const void *daddr,
			       const void *saddr, unsigned len)
P
Patrick McHardy 已提交
391 392 393 394
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

395 396
	return dev_hard_header(skb, lowerdev, type, daddr,
			       saddr ? : dev->dev_addr, len);
P
Patrick McHardy 已提交
397 398
}

399 400 401 402 403 404 405 406
static const struct header_ops macvlan_hard_header_ops = {
	.create  	= macvlan_hard_header,
	.rebuild	= eth_rebuild_header,
	.parse		= eth_header_parse,
	.cache		= eth_header_cache,
	.cache_update	= eth_header_cache_update,
};

407 408
static struct rtnl_link_ops macvlan_link_ops;

P
Patrick McHardy 已提交
409 410 411 412 413 414
static int macvlan_open(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;
	int err;

415
	if (vlan->port->passthru) {
416 417 418 419 420
		if (!(vlan->flags & MACVLAN_FLAG_NOPROMISC)) {
			err = dev_set_promiscuity(lowerdev, 1);
			if (err < 0)
				goto out;
		}
421 422 423
		goto hash_add;
	}

424 425
	if (lowerdev->features & NETIF_F_HW_L2FW_DOFFLOAD &&
	    dev->rtnl_link_ops == &macvlan_link_ops) {
426 427 428 429 430 431 432 433
		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;
434
		} else
435 436 437
			return 0;
	}

438 439 440 441
	err = -EBUSY;
	if (macvlan_addr_busy(vlan->port, dev->dev_addr))
		goto out;

442
	err = dev_uc_add(lowerdev, dev->dev_addr);
P
Patrick McHardy 已提交
443
	if (err < 0)
444 445 446 447 448 449
		goto out;
	if (dev->flags & IFF_ALLMULTI) {
		err = dev_set_allmulti(lowerdev, 1);
		if (err < 0)
			goto del_unicast;
	}
450 451

hash_add:
452
	macvlan_hash_add(vlan);
P
Patrick McHardy 已提交
453
	return 0;
454 455

del_unicast:
456
	dev_uc_del(lowerdev, dev->dev_addr);
457
out:
458 459 460 461 462
	if (vlan->fwd_priv) {
		lowerdev->netdev_ops->ndo_dfwd_del_station(lowerdev,
							   vlan->fwd_priv);
		vlan->fwd_priv = NULL;
	}
463
	return err;
P
Patrick McHardy 已提交
464 465 466 467 468 469 470
}

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

471 472 473 474 475 476 477
	if (vlan->fwd_priv) {
		lowerdev->netdev_ops->ndo_dfwd_del_station(lowerdev,
							   vlan->fwd_priv);
		vlan->fwd_priv = NULL;
		return 0;
	}

478 479 480
	dev_uc_unsync(lowerdev, dev);
	dev_mc_unsync(lowerdev, dev);

481
	if (vlan->port->passthru) {
482 483
		if (!(vlan->flags & MACVLAN_FLAG_NOPROMISC))
			dev_set_promiscuity(lowerdev, -1);
484 485 486
		goto hash_del;
	}

P
Patrick McHardy 已提交
487 488 489
	if (dev->flags & IFF_ALLMULTI)
		dev_set_allmulti(lowerdev, -1);

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

492
hash_del:
493
	macvlan_hash_del(vlan, !dev->dismantle);
P
Patrick McHardy 已提交
494 495 496
	return 0;
}

497
static int macvlan_sync_address(struct net_device *dev, unsigned char *addr)
498 499 500 501 502
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;
	int err;

503 504
	if (!(dev->flags & IFF_UP)) {
		/* Just copy in the new address */
505
		ether_addr_copy(dev->dev_addr, addr);
506 507
	} else {
		/* Rehash and update the device filters */
508
		if (macvlan_addr_busy(vlan->port, addr))
509
			return -EBUSY;
510

511 512 513 514
		if (!vlan->port->passthru) {
			err = dev_uc_add(lowerdev, addr);
			if (err)
				return err;
515

516 517
			dev_uc_del(lowerdev, dev->dev_addr);
		}
518

519
		macvlan_hash_change_addr(vlan, addr);
520
	}
521 522 523
	return 0;
}

524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
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 已提交
540 541 542 543 544
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;

545 546 547 548
	if (dev->flags & IFF_UP) {
		if (change & IFF_ALLMULTI)
			dev_set_allmulti(lowerdev, dev->flags & IFF_ALLMULTI ? 1 : -1);
	}
P
Patrick McHardy 已提交
549 550
}

551
static void macvlan_set_mac_lists(struct net_device *dev)
P
Patrick McHardy 已提交
552 553 554
{
	struct macvlan_dev *vlan = netdev_priv(dev);

E
Eric Dumazet 已提交
555 556 557 558 559 560 561 562
	if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
		bitmap_fill(vlan->mc_filter, MACVLAN_MC_FILTER_SZ);
	} 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 已提交
563
			__set_bit(mc_hash(vlan, ha->addr), filter);
E
Eric Dumazet 已提交
564
		}
565

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

E
Eric Dumazet 已提交
568 569
		bitmap_copy(vlan->mc_filter, filter, MACVLAN_MC_FILTER_SZ);
	}
570
	dev_uc_sync(vlan->lowerdev, dev);
P
Patrick McHardy 已提交
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
	dev_mc_sync(vlan->lowerdev, dev);
}

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

	if (new_mtu < 68 || vlan->lowerdev->mtu < new_mtu)
		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.
 */
static struct lock_class_key macvlan_netdev_xmit_lock_key;
590
static struct lock_class_key macvlan_netdev_addr_lock_key;
P
Patrick McHardy 已提交
591

592 593 594
#define ALWAYS_ON_FEATURES \
	(NETIF_F_SG | NETIF_F_GEN_CSUM | NETIF_F_GSO_SOFTWARE | NETIF_F_LLTX)

P
Patrick McHardy 已提交
595 596 597
#define MACVLAN_FEATURES \
	(NETIF_F_SG | NETIF_F_ALL_CSUM | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | \
	 NETIF_F_GSO | NETIF_F_TSO | NETIF_F_UFO | NETIF_F_GSO_ROBUST | \
598
	 NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_GRO | NETIF_F_RXCSUM | \
599
	 NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_STAG_FILTER)
P
Patrick McHardy 已提交
600 601 602 603

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

604 605 606 607 608
static int macvlan_get_nest_level(struct net_device *dev)
{
	return ((struct macvlan_dev *)netdev_priv(dev))->nest_level;
}

609 610 611
static void macvlan_set_lockdep_class_one(struct net_device *dev,
					  struct netdev_queue *txq,
					  void *_unused)
612 613 614 615 616 617 618
{
	lockdep_set_class(&txq->_xmit_lock,
			  &macvlan_netdev_xmit_lock_key);
}

static void macvlan_set_lockdep_class(struct net_device *dev)
{
619 620 621
	lockdep_set_class_and_subclass(&dev->addr_list_lock,
				       &macvlan_netdev_addr_lock_key,
				       macvlan_get_nest_level(dev));
622
	netdev_for_each_tx_queue(dev, macvlan_set_lockdep_class_one, NULL);
623 624
}

P
Patrick McHardy 已提交
625 626 627 628 629 630 631 632
static int macvlan_init(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	const struct net_device *lowerdev = vlan->lowerdev;

	dev->state		= (dev->state & ~MACVLAN_STATE_MASK) |
				  (lowerdev->state & MACVLAN_STATE_MASK);
	dev->features 		= lowerdev->features & MACVLAN_FEATURES;
633
	dev->features		|= ALWAYS_ON_FEATURES;
634
	dev->gso_max_size	= lowerdev->gso_max_size;
P
Patrick McHardy 已提交
635
	dev->iflink		= lowerdev->ifindex;
636
	dev->hard_header_len	= lowerdev->hard_header_len;
P
Patrick McHardy 已提交
637

638 639
	macvlan_set_lockdep_class(dev);

640
	vlan->pcpu_stats = netdev_alloc_pcpu_stats(struct vlan_pcpu_stats);
E
Eric Dumazet 已提交
641
	if (!vlan->pcpu_stats)
642 643
		return -ENOMEM;

P
Patrick McHardy 已提交
644 645 646
	return 0;
}

647 648 649
static void macvlan_uninit(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
650
	struct macvlan_port *port = vlan->port;
651

E
Eric Dumazet 已提交
652
	free_percpu(vlan->pcpu_stats);
653

654
	if (MACVLAN_PORT_IS_EMPTY(port))
655
		macvlan_port_destroy(port->dev);
656 657
}

658 659
static struct rtnl_link_stats64 *macvlan_dev_get_stats64(struct net_device *dev,
							 struct rtnl_link_stats64 *stats)
660 661 662
{
	struct macvlan_dev *vlan = netdev_priv(dev);

E
Eric Dumazet 已提交
663
	if (vlan->pcpu_stats) {
664
		struct vlan_pcpu_stats *p;
E
Eric Dumazet 已提交
665 666
		u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes;
		u32 rx_errors = 0, tx_dropped = 0;
E
Eric Dumazet 已提交
667
		unsigned int start;
668 669 670
		int i;

		for_each_possible_cpu(i) {
E
Eric Dumazet 已提交
671
			p = per_cpu_ptr(vlan->pcpu_stats, i);
E
Eric Dumazet 已提交
672
			do {
673
				start = u64_stats_fetch_begin_irq(&p->syncp);
E
Eric Dumazet 已提交
674 675 676
				rx_packets	= p->rx_packets;
				rx_bytes	= p->rx_bytes;
				rx_multicast	= p->rx_multicast;
E
Eric Dumazet 已提交
677 678
				tx_packets	= p->tx_packets;
				tx_bytes	= p->tx_bytes;
679
			} while (u64_stats_fetch_retry_irq(&p->syncp, start));
E
Eric Dumazet 已提交
680 681 682 683 684 685 686 687 688 689 690

			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;
691
		}
E
Eric Dumazet 已提交
692 693 694
		stats->rx_errors	= rx_errors;
		stats->rx_dropped	= rx_errors;
		stats->tx_dropped	= tx_dropped;
695 696 697 698
	}
	return stats;
}

699
static int macvlan_vlan_rx_add_vid(struct net_device *dev,
700
				   __be16 proto, u16 vid)
701 702 703 704
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

705
	return vlan_vid_add(lowerdev, proto, vid);
706 707
}

708
static int macvlan_vlan_rx_kill_vid(struct net_device *dev,
709
				    __be16 proto, u16 vid)
710 711 712 713
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

714
	vlan_vid_del(lowerdev, proto, vid);
715
	return 0;
716 717
}

718
static int macvlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
719
			   struct net_device *dev,
720
			   const unsigned char *addr,
721 722 723 724 725 726 727 728
			   u16 flags)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	int err = -EINVAL;

	if (!vlan->port->passthru)
		return -EOPNOTSUPP;

T
Thomas Richter 已提交
729 730 731
	if (flags & NLM_F_REPLACE)
		return -EOPNOTSUPP;

732 733 734 735 736 737 738 739
	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;
}

740
static int macvlan_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
741
			   struct net_device *dev,
742
			   const unsigned char *addr)
743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	int err = -EINVAL;

	if (!vlan->port->passthru)
		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 已提交
758 759 760
static void macvlan_ethtool_get_drvinfo(struct net_device *dev,
					struct ethtool_drvinfo *drvinfo)
{
761 762
	strlcpy(drvinfo->driver, "macvlan", sizeof(drvinfo->driver));
	strlcpy(drvinfo->version, "0.1", sizeof(drvinfo->version));
P
Patrick McHardy 已提交
763 764
}

765 766 767 768
static int macvlan_ethtool_get_settings(struct net_device *dev,
					struct ethtool_cmd *cmd)
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
769 770

	return __ethtool_get_settings(vlan->lowerdev, cmd);
771 772
}

773 774 775 776
static netdev_features_t macvlan_fix_features(struct net_device *dev,
					      netdev_features_t features)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
777
	netdev_features_t mask;
778

779 780 781 782 783 784 785
	features |= NETIF_F_ALL_FOR_ALL;
	features &= (vlan->set_features | ~MACVLAN_FEATURES);
	mask = features;

	features = netdev_increment_features(vlan->lowerdev->features,
					     features,
					     mask);
786
	features |= ALWAYS_ON_FEATURES;
787 788

	return features;
789 790
}

P
Patrick McHardy 已提交
791 792
static const struct ethtool_ops macvlan_ethtool_ops = {
	.get_link		= ethtool_op_get_link,
793
	.get_settings		= macvlan_ethtool_get_settings,
P
Patrick McHardy 已提交
794 795 796
	.get_drvinfo		= macvlan_ethtool_get_drvinfo,
};

797 798
static const struct net_device_ops macvlan_netdev_ops = {
	.ndo_init		= macvlan_init,
799
	.ndo_uninit		= macvlan_uninit,
800 801
	.ndo_open		= macvlan_open,
	.ndo_stop		= macvlan_stop,
802
	.ndo_start_xmit		= macvlan_start_xmit,
803
	.ndo_change_mtu		= macvlan_change_mtu,
804
	.ndo_fix_features	= macvlan_fix_features,
805 806
	.ndo_change_rx_flags	= macvlan_change_rx_flags,
	.ndo_set_mac_address	= macvlan_set_mac_address,
807
	.ndo_set_rx_mode	= macvlan_set_mac_lists,
E
Eric Dumazet 已提交
808
	.ndo_get_stats64	= macvlan_dev_get_stats64,
809
	.ndo_validate_addr	= eth_validate_addr,
810 811
	.ndo_vlan_rx_add_vid	= macvlan_vlan_rx_add_vid,
	.ndo_vlan_rx_kill_vid	= macvlan_vlan_rx_kill_vid,
812 813 814
	.ndo_fdb_add		= macvlan_fdb_add,
	.ndo_fdb_del		= macvlan_fdb_del,
	.ndo_fdb_dump		= ndo_dflt_fdb_dump,
815
	.ndo_get_lock_subclass  = macvlan_get_nest_level,
816 817
};

H
Herbert Xu 已提交
818
void macvlan_common_setup(struct net_device *dev)
P
Patrick McHardy 已提交
819 820 821
{
	ether_setup(dev);

822
	dev->priv_flags	       &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
823
	dev->priv_flags	       |= IFF_UNICAST_FLT;
824
	dev->netdev_ops		= &macvlan_netdev_ops;
P
Patrick McHardy 已提交
825
	dev->destructor		= free_netdev;
L
Lutz Jaenicke 已提交
826
	dev->header_ops		= &macvlan_hard_header_ops;
P
Patrick McHardy 已提交
827
	dev->ethtool_ops	= &macvlan_ethtool_ops;
H
Herbert Xu 已提交
828 829 830 831 832 833
}
EXPORT_SYMBOL_GPL(macvlan_common_setup);

static void macvlan_setup(struct net_device *dev)
{
	macvlan_common_setup(dev);
P
Patrick McHardy 已提交
834 835 836 837 838 839 840
	dev->tx_queue_len	= 0;
}

static int macvlan_port_create(struct net_device *dev)
{
	struct macvlan_port *port;
	unsigned int i;
841
	int err;
P
Patrick McHardy 已提交
842 843 844 845 846 847 848 849

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

	port = kzalloc(sizeof(*port), GFP_KERNEL);
	if (port == NULL)
		return -ENOMEM;

850
	port->passthru = false;
P
Patrick McHardy 已提交
851 852 853 854
	port->dev = dev;
	INIT_LIST_HEAD(&port->vlans);
	for (i = 0; i < MACVLAN_HASH_SIZE; i++)
		INIT_HLIST_HEAD(&port->vlan_hash[i]);
855

856 857 858
	skb_queue_head_init(&port->bc_queue);
	INIT_WORK(&port->bc_work, macvlan_process_broadcast);

859 860
	err = netdev_rx_handler_register(dev, macvlan_handle_frame, port);
	if (err)
861
		kfree(port);
862 863
	else
		dev->priv_flags |= IFF_MACVLAN_PORT;
864
	return err;
P
Patrick McHardy 已提交
865 866 867 868
}

static void macvlan_port_destroy(struct net_device *dev)
{
E
Eric Dumazet 已提交
869
	struct macvlan_port *port = macvlan_port_get_rtnl(dev);
P
Patrick McHardy 已提交
870

871
	cancel_work_sync(&port->bc_work);
872
	dev->priv_flags &= ~IFF_MACVLAN_PORT;
873
	netdev_rx_handler_unregister(dev);
874
	kfree_rcu(port, rcu);
P
Patrick McHardy 已提交
875 876 877 878 879 880 881 882 883 884
}

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;
	}
885

M
Michael S. Tsirkin 已提交
886 887 888 889
	if (data && data[IFLA_MACVLAN_FLAGS] &&
	    nla_get_u16(data[IFLA_MACVLAN_FLAGS]) & ~MACVLAN_FLAG_NOPROMISC)
		return -EINVAL;

890 891 892 893 894
	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:
895
		case MACVLAN_MODE_PASSTHRU:
896 897 898 899 900
			break;
		default:
			return -EINVAL;
		}
	}
P
Patrick McHardy 已提交
901 902 903
	return 0;
}

904
int macvlan_common_newlink(struct net *src_net, struct net_device *dev,
905
			   struct nlattr *tb[], struct nlattr *data[])
P
Patrick McHardy 已提交
906 907 908 909 910 911 912 913 914
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct macvlan_port *port;
	struct net_device *lowerdev;
	int err;

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

915
	lowerdev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
P
Patrick McHardy 已提交
916 917 918
	if (lowerdev == NULL)
		return -ENODEV;

919
	/* When creating macvlans or macvtaps on top of other macvlans - use
920
	 * the real device as the lowerdev.
921
	 */
922 923
	if (netif_is_macvlan(lowerdev))
		lowerdev = macvlan_dev_real_dev(lowerdev);
924

P
Patrick McHardy 已提交
925 926 927 928 929 930
	if (!tb[IFLA_MTU])
		dev->mtu = lowerdev->mtu;
	else if (dev->mtu > lowerdev->mtu)
		return -EINVAL;

	if (!tb[IFLA_ADDRESS])
931
		eth_hw_addr_random(dev);
P
Patrick McHardy 已提交
932

933
	if (!macvlan_port_exists(lowerdev)) {
P
Patrick McHardy 已提交
934 935 936 937
		err = macvlan_port_create(lowerdev);
		if (err < 0)
			return err;
	}
E
Eric Dumazet 已提交
938
	port = macvlan_port_get_rtnl(lowerdev);
P
Patrick McHardy 已提交
939

940 941 942 943
	/* Only 1 macvlan device can be created in passthru mode */
	if (port->passthru)
		return -EINVAL;

P
Patrick McHardy 已提交
944 945 946
	vlan->lowerdev = lowerdev;
	vlan->dev      = dev;
	vlan->port     = port;
947
	vlan->set_features = MACVLAN_FEATURES;
948
	vlan->nest_level = dev_get_nest_level(lowerdev, netif_is_macvlan) + 1;
P
Patrick McHardy 已提交
949

950 951 952 953
	vlan->mode     = MACVLAN_MODE_VEPA;
	if (data && data[IFLA_MACVLAN_MODE])
		vlan->mode = nla_get_u32(data[IFLA_MACVLAN_MODE]);

954 955 956
	if (data && data[IFLA_MACVLAN_FLAGS])
		vlan->flags = nla_get_u16(data[IFLA_MACVLAN_FLAGS]);

957
	if (vlan->mode == MACVLAN_MODE_PASSTHRU) {
958
		if (!MACVLAN_PORT_IS_EMPTY(port))
959 960
			return -EINVAL;
		port->passthru = true;
961
		eth_hw_addr_inherit(dev, lowerdev);
962 963
	}

964 965 966 967
	err = register_netdevice(dev);
	if (err < 0)
		goto destroy_port;

968
	dev->priv_flags |= IFF_MACVLAN;
J
Jiri Pirko 已提交
969 970
	err = netdev_upper_dev_link(lowerdev, dev);
	if (err)
971
		goto unregister_netdev;
P
Patrick McHardy 已提交
972

973
	list_add_tail_rcu(&vlan->list, &port->vlans);
974
	netif_stacked_transfer_operstate(lowerdev, dev);
975

P
Patrick McHardy 已提交
976
	return 0;
977

978 979
unregister_netdev:
	unregister_netdevice(dev);
980
destroy_port:
981
	if (MACVLAN_PORT_IS_EMPTY(port))
982 983 984
		macvlan_port_destroy(lowerdev);

	return err;
P
Patrick McHardy 已提交
985
}
986
EXPORT_SYMBOL_GPL(macvlan_common_newlink);
P
Patrick McHardy 已提交
987

988 989 990
static int macvlan_newlink(struct net *src_net, struct net_device *dev,
			   struct nlattr *tb[], struct nlattr *data[])
{
991
	return macvlan_common_newlink(src_net, dev, tb, data);
992 993 994
}

void macvlan_dellink(struct net_device *dev, struct list_head *head)
P
Patrick McHardy 已提交
995 996 997
{
	struct macvlan_dev *vlan = netdev_priv(dev);

998
	list_del_rcu(&vlan->list);
999
	unregister_netdevice_queue(dev, head);
J
Jiri Pirko 已提交
1000
	netdev_upper_dev_unlink(vlan->lowerdev, dev);
P
Patrick McHardy 已提交
1001
}
1002
EXPORT_SYMBOL_GPL(macvlan_dellink);
P
Patrick McHardy 已提交
1003

1004 1005 1006 1007
static int macvlan_changelink(struct net_device *dev,
		struct nlattr *tb[], struct nlattr *data[])
{
	struct macvlan_dev *vlan = netdev_priv(dev);
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
	enum macvlan_mode mode;
	bool set_mode = false;

	/* 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;
	}
1020

1021 1022 1023
	if (data && data[IFLA_MACVLAN_FLAGS]) {
		__u16 flags = nla_get_u16(data[IFLA_MACVLAN_FLAGS]);
		bool promisc = (flags ^ vlan->flags) & MACVLAN_FLAG_NOPROMISC;
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
		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;
		}
1034 1035
		vlan->flags = flags;
	}
1036 1037
	if (set_mode)
		vlan->mode = mode;
1038 1039 1040 1041 1042
	return 0;
}

static size_t macvlan_get_size(const struct net_device *dev)
{
E
Eric Dumazet 已提交
1043 1044 1045 1046
	return (0
		+ nla_total_size(4) /* IFLA_MACVLAN_MODE */
		+ nla_total_size(2) /* IFLA_MACVLAN_FLAGS */
		);
1047 1048 1049 1050 1051 1052 1053
}

static int macvlan_fill_info(struct sk_buff *skb,
				const struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);

1054 1055
	if (nla_put_u32(skb, IFLA_MACVLAN_MODE, vlan->mode))
		goto nla_put_failure;
1056 1057
	if (nla_put_u16(skb, IFLA_MACVLAN_FLAGS, vlan->flags))
		goto nla_put_failure;
1058 1059 1060 1061 1062 1063 1064
	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

static const struct nla_policy macvlan_policy[IFLA_MACVLAN_MAX + 1] = {
1065 1066
	[IFLA_MACVLAN_MODE]  = { .type = NLA_U32 },
	[IFLA_MACVLAN_FLAGS] = { .type = NLA_U16 },
1067 1068
};

1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
int macvlan_link_register(struct rtnl_link_ops *ops)
{
	/* common fields */
	ops->priv_size		= sizeof(struct macvlan_dev);
	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);

static struct rtnl_link_ops macvlan_link_ops = {
P
Patrick McHardy 已提交
1085
	.kind		= "macvlan",
H
Herbert Xu 已提交
1086
	.setup		= macvlan_setup,
P
Patrick McHardy 已提交
1087 1088 1089 1090 1091 1092 1093
	.newlink	= macvlan_newlink,
	.dellink	= macvlan_dellink,
};

static int macvlan_device_event(struct notifier_block *unused,
				unsigned long event, void *ptr)
{
1094
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
P
Patrick McHardy 已提交
1095 1096
	struct macvlan_dev *vlan, *next;
	struct macvlan_port *port;
1097
	LIST_HEAD(list_kill);
P
Patrick McHardy 已提交
1098

1099
	if (!macvlan_port_exists(dev))
P
Patrick McHardy 已提交
1100 1101
		return NOTIFY_DONE;

E
Eric Dumazet 已提交
1102
	port = macvlan_port_get_rtnl(dev);
1103

P
Patrick McHardy 已提交
1104 1105 1106
	switch (event) {
	case NETDEV_CHANGE:
		list_for_each_entry(vlan, &port->vlans, list)
1107 1108
			netif_stacked_transfer_operstate(vlan->lowerdev,
							 vlan->dev);
P
Patrick McHardy 已提交
1109 1110 1111
		break;
	case NETDEV_FEAT_CHANGE:
		list_for_each_entry(vlan, &port->vlans, list) {
1112
			vlan->dev->gso_max_size = dev->gso_max_size;
1113
			netdev_update_features(vlan->dev);
P
Patrick McHardy 已提交
1114 1115
		}
		break;
1116 1117 1118 1119 1120 1121
	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);
		}
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
		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;

1134
		break;
P
Patrick McHardy 已提交
1135
	case NETDEV_UNREGISTER:
1136 1137 1138 1139
		/* twiddle thumbs on netns device moves */
		if (dev->reg_state != NETREG_UNREGISTERING)
			break;

P
Patrick McHardy 已提交
1140
		list_for_each_entry_safe(vlan, next, &port->vlans, list)
1141 1142 1143
			vlan->dev->rtnl_link_ops->dellink(vlan->dev, &list_kill);
		unregister_netdevice_many(&list_kill);
		list_del(&list_kill);
P
Patrick McHardy 已提交
1144
		break;
1145 1146 1147
	case NETDEV_PRE_TYPE_CHANGE:
		/* Forbid underlaying device to change its type. */
		return NOTIFY_BAD;
P
Patrick McHardy 已提交
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
	}
	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);

1162
	err = macvlan_link_register(&macvlan_link_ops);
P
Patrick McHardy 已提交
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
	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");