macvlan.c 45.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
P
Patrick McHardy 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (c) 2007 Patrick McHardy <kaber@trash.net>
 *
 * 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>
19
#include <linux/rculist.h>
P
Patrick McHardy 已提交
20 21 22
#include <linux/notifier.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
23
#include <linux/net_tstamp.h>
P
Patrick McHardy 已提交
24 25
#include <linux/ethtool.h>
#include <linux/if_arp.h>
26
#include <linux/if_vlan.h>
P
Patrick McHardy 已提交
27 28
#include <linux/if_link.h>
#include <linux/if_macvlan.h>
E
Eric Dumazet 已提交
29
#include <linux/hash.h>
30
#include <linux/workqueue.h>
P
Patrick McHardy 已提交
31
#include <net/rtnetlink.h>
32
#include <net/xfrm.h>
D
dingtianhong 已提交
33
#include <linux/netpoll.h>
34
#include <linux/phy.h>
P
Patrick McHardy 已提交
35

M
Michael Braun 已提交
36 37
#define MACVLAN_HASH_BITS	8
#define MACVLAN_HASH_SIZE	(1<<MACVLAN_HASH_BITS)
38
#define MACVLAN_BC_QUEUE_LEN	1000
P
Patrick McHardy 已提交
39

40
#define MACVLAN_F_PASSTHRU	1
41
#define MACVLAN_F_ADDRCHANGE	2
42

P
Patrick McHardy 已提交
43 44 45 46
struct macvlan_port {
	struct net_device	*dev;
	struct hlist_head	vlan_hash[MACVLAN_HASH_SIZE];
	struct list_head	vlans;
47 48
	struct sk_buff_head	bc_queue;
	struct work_struct	bc_work;
49
	u32			flags;
50
	int			count;
M
Michael Braun 已提交
51
	struct hlist_head	vlan_source_hash[MACVLAN_HASH_SIZE];
52
	DECLARE_BITMAP(mc_filter, MACVLAN_MC_FILTER_SZ);
53
	unsigned char           perm_addr[ETH_ALEN];
M
Michael Braun 已提交
54 55 56 57 58 59 60
};

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 已提交
61 62
};

63 64 65 66 67 68
struct macvlan_skb_cb {
	const struct macvlan_dev *src;
};

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

69 70
static void macvlan_port_destroy(struct net_device *dev);

71 72 73 74 75 76 77 78 79 80
static inline bool macvlan_passthru(const struct macvlan_port *port)
{
	return port->flags & MACVLAN_F_PASSTHRU;
}

static inline void macvlan_set_passthru(struct macvlan_port *port)
{
	port->flags |= MACVLAN_F_PASSTHRU;
}

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
static inline bool macvlan_addr_change(const struct macvlan_port *port)
{
	return port->flags & MACVLAN_F_ADDRCHANGE;
}

static inline void macvlan_set_addr_change(struct macvlan_port *port)
{
	port->flags |= MACVLAN_F_ADDRCHANGE;
}

static inline void macvlan_clear_addr_change(struct macvlan_port *port)
{
	port->flags &= ~MACVLAN_F_ADDRCHANGE;
}

M
Michael Braun 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109
/* 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 已提交
110 111 112 113 114 115 116 117 118 119
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);
}

P
Patrick McHardy 已提交
120 121 122 123
static struct macvlan_dev *macvlan_hash_lookup(const struct macvlan_port *port,
					       const unsigned char *addr)
{
	struct macvlan_dev *vlan;
M
Michael Braun 已提交
124
	u32 idx = macvlan_eth_hash(addr);
P
Patrick McHardy 已提交
125

126 127
	hlist_for_each_entry_rcu(vlan, &port->vlan_hash[idx], hlist,
				 lockdep_rtnl_is_held()) {
128
		if (ether_addr_equal_64bits(vlan->dev->dev_addr, addr))
P
Patrick McHardy 已提交
129 130 131 132 133
			return vlan;
	}
	return NULL;
}

M
Michael Braun 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
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;
}

174 175 176 177
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 已提交
178
	u32 idx = macvlan_eth_hash(addr);
179

M
Michael Braun 已提交
180 181 182 183 184 185 186
	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);
187 188
}

189
static void macvlan_hash_del(struct macvlan_dev *vlan, bool sync)
190 191
{
	hlist_del_rcu(&vlan->hlist);
192 193
	if (sync)
		synchronize_rcu();
194 195 196 197 198
}

static void macvlan_hash_change_addr(struct macvlan_dev *vlan,
					const unsigned char *addr)
{
199
	macvlan_hash_del(vlan, true);
200 201 202 203 204 205 206
	/* 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);
}

207 208
static bool macvlan_addr_busy(const struct macvlan_port *port,
			      const unsigned char *addr)
209
{
210
	/* Test to see if the specified address is
211 212 213
	 * currently in use by the underlying device or
	 * another macvlan.
	 */
214
	if (!macvlan_passthru(port) && !macvlan_addr_change(port) &&
215
	    ether_addr_equal_64bits(port->dev->dev_addr, addr))
216
		return true;
217 218

	if (macvlan_hash_lookup(port, addr))
219
		return true;
220

221
	return false;
222 223
}

A
Arnd Bergmann 已提交
224

225 226
static int macvlan_broadcast_one(struct sk_buff *skb,
				 const struct macvlan_dev *vlan,
227
				 const struct ethhdr *eth, bool local)
A
Arnd Bergmann 已提交
228
{
229
	struct net_device *dev = vlan->dev;
A
Arnd Bergmann 已提交
230

231
	if (local)
232
		return __dev_forward_skb(dev, skb);
233

A
Arnd Bergmann 已提交
234
	skb->dev = dev;
235
	if (ether_addr_equal_64bits(eth->h_dest, dev->broadcast))
A
Arnd Bergmann 已提交
236 237 238 239
		skb->pkt_type = PACKET_BROADCAST;
	else
		skb->pkt_type = PACKET_MULTICAST;

240
	return 0;
A
Arnd Bergmann 已提交
241 242
}

E
Eric Dumazet 已提交
243 244 245 246 247 248 249 250
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 已提交
251 252 253
{
	u32 val = __get_unaligned_cpu32(addr + 2);

E
Eric Dumazet 已提交
254
	val ^= macvlan_hash_mix(vlan);
E
Eric Dumazet 已提交
255 256 257
	return hash_32(val, MACVLAN_MC_FILTER_BITS);
}

P
Patrick McHardy 已提交
258
static void macvlan_broadcast(struct sk_buff *skb,
259 260 261
			      const struct macvlan_port *port,
			      struct net_device *src,
			      enum macvlan_mode mode)
P
Patrick McHardy 已提交
262
{
263
	const struct ethhdr *eth = eth_hdr(skb);
P
Patrick McHardy 已提交
264 265 266
	const struct macvlan_dev *vlan;
	struct sk_buff *nskb;
	unsigned int i;
A
Arnd Bergmann 已提交
267
	int err;
E
Eric Dumazet 已提交
268
	unsigned int hash;
P
Patrick McHardy 已提交
269

270 271 272
	if (skb->protocol == htons(ETH_P_PAUSE))
		return;

P
Patrick McHardy 已提交
273
	for (i = 0; i < MACVLAN_HASH_SIZE; i++) {
274
		hlist_for_each_entry_rcu(vlan, &port->vlan_hash[i], hlist) {
275 276 277
			if (vlan->dev == src || !(vlan->mode & mode))
				continue;

E
Eric Dumazet 已提交
278
			hash = mc_hash(vlan, eth->h_dest);
E
Eric Dumazet 已提交
279 280
			if (!test_bit(hash, vlan->mc_filter))
				continue;
281 282

			err = NET_RX_DROP;
P
Patrick McHardy 已提交
283
			nskb = skb_clone(skb, GFP_ATOMIC);
284 285 286
			if (likely(nskb))
				err = macvlan_broadcast_one(
					nskb, vlan, eth,
287 288
					mode == MACVLAN_MODE_BRIDGE) ?:
				      netif_rx_ni(nskb);
A
Arnd Bergmann 已提交
289
			macvlan_count_rx(vlan, skb->len + ETH_HLEN,
290
					 err == NET_RX_SUCCESS, true);
P
Patrick McHardy 已提交
291 292 293 294
		}
	}
}

295
static void macvlan_process_broadcast(struct work_struct *w)
P
Patrick McHardy 已提交
296
{
297 298 299 300 301
	struct macvlan_port *port = container_of(w, struct macvlan_port,
						 bc_work);
	struct sk_buff *skb;
	struct sk_buff_head list;

302
	__skb_queue_head_init(&list);
303 304 305 306 307 308 309 310 311

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

313 314 315 316 317
		if (!src)
			/* frame comes from an external address */
			macvlan_broadcast(skb, port, NULL,
					  MACVLAN_MODE_PRIVATE |
					  MACVLAN_MODE_VEPA    |
318
					  MACVLAN_MODE_PASSTHRU|
319 320 321 322 323 324
					  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);
325
		else
326 327 328 329 330 331
			/*
			 * flood only to VEPA ports, bridge ports
			 * already saw the frame on the way out.
			 */
			macvlan_broadcast(skb, port, src->dev,
					  MACVLAN_MODE_VEPA);
332 333 334

		rcu_read_unlock();

335 336
		if (src)
			dev_put(src->dev);
337
		consume_skb(skb);
338 339

		cond_resched();
340 341 342 343
	}
}

static void macvlan_broadcast_enqueue(struct macvlan_port *port,
344
				      const struct macvlan_dev *src,
345 346
				      struct sk_buff *skb)
{
347
	struct sk_buff *nskb;
348 349
	int err = -ENOMEM;

350 351
	nskb = skb_clone(skb, GFP_ATOMIC);
	if (!nskb)
352 353
		goto err;

354 355
	MACVLAN_SKB_CB(nskb)->src = src;

356
	spin_lock(&port->bc_queue.lock);
357
	if (skb_queue_len(&port->bc_queue) < MACVLAN_BC_QUEUE_LEN) {
358 359
		if (src)
			dev_hold(src->dev);
360
		__skb_queue_tail(&port->bc_queue, nskb);
361 362 363 364
		err = 0;
	}
	spin_unlock(&port->bc_queue.lock);

365 366
	schedule_work(&port->bc_work);

367
	if (err)
368
		goto free_nskb;
369 370 371

	return;

372 373
free_nskb:
	kfree_skb(nskb);
374 375 376 377
err:
	atomic_long_inc(&skb->dev->rx_dropped);
}

M
Michael Braun 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
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;
416 417 418

	if (ether_addr_equal_64bits(eth_hdr(skb)->h_dest, dev->dev_addr))
		nskb->pkt_type = PACKET_HOST;
M
Michael Braun 已提交
419 420

	ret = netif_rx(nskb);
421
	macvlan_count_rx(vlan, len, ret == NET_RX_SUCCESS, false);
M
Michael Braun 已提交
422 423 424 425 426 427 428 429 430 431 432 433
}

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))
434
			macvlan_forward_source_one(skb, entry->vlan);
M
Michael Braun 已提交
435 436 437
	}
}

438 439 440 441 442 443 444 445 446 447
/* 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;
448 449
	int ret;
	rx_handler_result_t handle_res;
450

451 452 453 454
	/* Packets from dev_loopback_xmit() do not have L2 header, bail out */
	if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
		return RX_HANDLER_PASS;

455 456
	port = macvlan_port_get_rcu(skb->dev);
	if (is_multicast_ether_addr(eth->h_dest)) {
457 458
		unsigned int hash;

459
		skb = ip_check_defrag(dev_net(skb->dev), skb, IP_DEFRAG_MACVLAN);
460 461
		if (!skb)
			return RX_HANDLER_CONSUMED;
462
		*pskb = skb;
463
		eth = eth_hdr(skb);
M
Michael Braun 已提交
464
		macvlan_forward_source(skb, port, eth->h_source);
465 466 467
		src = macvlan_hash_lookup(port, eth->h_source);
		if (src && src->mode != MACVLAN_MODE_VEPA &&
		    src->mode != MACVLAN_MODE_BRIDGE) {
468 469
			/* forward to original port. */
			vlan = src;
470 471
			ret = macvlan_broadcast_one(skb, vlan, eth, 0) ?:
			      netif_rx(skb);
472
			handle_res = RX_HANDLER_CONSUMED;
473 474 475
			goto out;
		}

476 477 478
		hash = mc_hash(NULL, eth->h_dest);
		if (test_bit(hash, port->mc_filter))
			macvlan_broadcast_enqueue(port, src, skb);
479

480
		return RX_HANDLER_PASS;
P
Patrick McHardy 已提交
481 482
	}

M
Michael Braun 已提交
483
	macvlan_forward_source(skb, port, eth->h_source);
484
	if (macvlan_passthru(port))
485 486
		vlan = list_first_or_null_rcu(&port->vlans,
					      struct macvlan_dev, list);
487 488
	else
		vlan = macvlan_hash_lookup(port, eth->h_dest);
489
	if (!vlan || vlan->mode == MACVLAN_MODE_SOURCE)
490
		return RX_HANDLER_PASS;
P
Patrick McHardy 已提交
491 492 493 494

	dev = vlan->dev;
	if (unlikely(!(dev->flags & IFF_UP))) {
		kfree_skb(skb);
495
		return RX_HANDLER_CONSUMED;
P
Patrick McHardy 已提交
496
	}
A
Arnd Bergmann 已提交
497
	len = skb->len + ETH_HLEN;
P
Patrick McHardy 已提交
498
	skb = skb_share_check(skb, GFP_ATOMIC);
499 500 501
	if (!skb) {
		ret = NET_RX_DROP;
		handle_res = RX_HANDLER_CONSUMED;
502
		goto out;
503
	}
P
Patrick McHardy 已提交
504

505
	*pskb = skb;
P
Patrick McHardy 已提交
506 507 508
	skb->dev = dev;
	skb->pkt_type = PACKET_HOST;

509 510
	ret = NET_RX_SUCCESS;
	handle_res = RX_HANDLER_ANOTHER;
511
out:
512
	macvlan_count_rx(vlan, len, ret == NET_RX_SUCCESS, false);
513
	return handle_res;
P
Patrick McHardy 已提交
514 515
}

516 517 518 519 520 521 522
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) {
523
		const struct ethhdr *eth = skb_eth_hdr(skb);
524 525 526

		/* send to other bridge ports directly */
		if (is_multicast_ether_addr(eth->h_dest)) {
527
			skb_reset_mac_header(skb);
528 529 530 531 532 533
			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) {
534
			/* send to lowerdev first for its network taps */
535
			dev_forward_skb(vlan->lowerdev, skb);
536 537 538 539 540

			return NET_XMIT_SUCCESS;
		}
	}
xmit_world:
541
	skb->dev = vlan->lowerdev;
542 543
	return dev_queue_xmit_accel(skb,
				    netdev_get_sb_channel(dev) ? dev : NULL);
544 545
}

D
dingtianhong 已提交
546 547 548
static inline netdev_tx_t macvlan_netpoll_send_skb(struct macvlan_dev *vlan, struct sk_buff *skb)
{
#ifdef CONFIG_NET_POLL_CONTROLLER
549
	return netpoll_send_skb(vlan->netpoll, skb);
D
dingtianhong 已提交
550 551 552
#else
	BUG();
	return NETDEV_TX_OK;
553
#endif
D
dingtianhong 已提交
554 555
}

S
stephen hemminger 已提交
556 557
static netdev_tx_t macvlan_start_xmit(struct sk_buff *skb,
				      struct net_device *dev)
P
Patrick McHardy 已提交
558
{
559
	struct macvlan_dev *vlan = netdev_priv(dev);
P
Patrick McHardy 已提交
560 561
	unsigned int len = skb->len;
	int ret;
D
dingtianhong 已提交
562 563 564

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

566
	ret = macvlan_queue_xmit(skb, dev);
567

568
	if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
569
		struct vlan_pcpu_stats *pcpu_stats;
570

E
Eric Dumazet 已提交
571 572 573 574 575 576 577 578
		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);
	}
579
	return ret;
P
Patrick McHardy 已提交
580 581 582
}

static int macvlan_hard_header(struct sk_buff *skb, struct net_device *dev,
583 584
			       unsigned short type, const void *daddr,
			       const void *saddr, unsigned len)
P
Patrick McHardy 已提交
585 586 587 588
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

589 590
	return dev_hard_header(skb, lowerdev, type, daddr,
			       saddr ? : dev->dev_addr, len);
P
Patrick McHardy 已提交
591 592
}

593 594 595 596 597 598 599
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,
};

P
Patrick McHardy 已提交
600 601 602 603 604 605
static int macvlan_open(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;
	int err;

606
	if (macvlan_passthru(vlan->port)) {
607 608 609 610 611
		if (!(vlan->flags & MACVLAN_FLAG_NOPROMISC)) {
			err = dev_set_promiscuity(lowerdev, 1);
			if (err < 0)
				goto out;
		}
612 613 614
		goto hash_add;
	}

M
Matteo Croce 已提交
615
	err = -EADDRINUSE;
616 617 618 619 620 621
	if (macvlan_addr_busy(vlan->port, dev->dev_addr))
		goto out;

	/* Attempt to populate accel_priv which is used to offload the L2
	 * forwarding requests for unicast packets.
	 */
622
	if (lowerdev->features & NETIF_F_HW_L2FW_DOFFLOAD)
623
		vlan->accel_priv =
624 625
		      lowerdev->netdev_ops->ndo_dfwd_add_station(lowerdev, dev);

626 627 628 629 630 631 632 633
	/* If earlier attempt to offload failed, or accel_priv is not
	 * populated we must add the unicast address to the lower device.
	 */
	if (IS_ERR_OR_NULL(vlan->accel_priv)) {
		vlan->accel_priv = NULL;
		err = dev_uc_add(lowerdev, dev->dev_addr);
		if (err < 0)
			goto out;
634 635
	}

636 637 638 639 640
	if (dev->flags & IFF_ALLMULTI) {
		err = dev_set_allmulti(lowerdev, 1);
		if (err < 0)
			goto del_unicast;
	}
641

642 643 644 645 646 647
	if (dev->flags & IFF_PROMISC) {
		err = dev_set_promiscuity(lowerdev, 1);
		if (err < 0)
			goto clear_multi;
	}

648
hash_add:
649
	macvlan_hash_add(vlan);
P
Patrick McHardy 已提交
650
	return 0;
651

652
clear_multi:
653 654
	if (dev->flags & IFF_ALLMULTI)
		dev_set_allmulti(lowerdev, -1);
655
del_unicast:
656
	if (vlan->accel_priv) {
657
		lowerdev->netdev_ops->ndo_dfwd_del_station(lowerdev,
658 659
							   vlan->accel_priv);
		vlan->accel_priv = NULL;
660 661
	} else {
		dev_uc_del(lowerdev, dev->dev_addr);
662
	}
663
out:
664
	return err;
P
Patrick McHardy 已提交
665 666 667 668 669 670 671
}

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

672
	if (vlan->accel_priv) {
673
		lowerdev->netdev_ops->ndo_dfwd_del_station(lowerdev,
674 675
							   vlan->accel_priv);
		vlan->accel_priv = NULL;
676 677
	}

678 679 680
	dev_uc_unsync(lowerdev, dev);
	dev_mc_unsync(lowerdev, dev);

681
	if (macvlan_passthru(vlan->port)) {
682 683
		if (!(vlan->flags & MACVLAN_FLAG_NOPROMISC))
			dev_set_promiscuity(lowerdev, -1);
684 685 686
		goto hash_del;
	}

P
Patrick McHardy 已提交
687 688 689
	if (dev->flags & IFF_ALLMULTI)
		dev_set_allmulti(lowerdev, -1);

690 691 692
	if (dev->flags & IFF_PROMISC)
		dev_set_promiscuity(lowerdev, -1);

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

695
hash_del:
696
	macvlan_hash_del(vlan, !dev->dismantle);
P
Patrick McHardy 已提交
697 698 699
	return 0;
}

700
static int macvlan_sync_address(struct net_device *dev, unsigned char *addr)
701 702 703
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;
704
	struct macvlan_port *port = vlan->port;
705 706
	int err;

707 708
	if (!(dev->flags & IFF_UP)) {
		/* Just copy in the new address */
709
		ether_addr_copy(dev->dev_addr, addr);
710 711
	} else {
		/* Rehash and update the device filters */
712
		if (macvlan_addr_busy(vlan->port, addr))
M
Matteo Croce 已提交
713
			return -EADDRINUSE;
714

715
		if (!macvlan_passthru(port)) {
716 717 718
			err = dev_uc_add(lowerdev, addr);
			if (err)
				return err;
719

720 721
			dev_uc_del(lowerdev, dev->dev_addr);
		}
722

723
		macvlan_hash_change_addr(vlan, addr);
724
	}
725 726 727 728 729 730 731 732 733
	if (macvlan_passthru(port) && !macvlan_addr_change(port)) {
		/* Since addr_change isn't set, we are here due to lower
		 * device change.  Save the lower-dev address so we can
		 * restore it later.
		 */
		ether_addr_copy(vlan->port->perm_addr,
				lowerdev->dev_addr);
	}
	macvlan_clear_addr_change(port);
734 735 736
	return 0;
}

737 738 739 740 741 742 743 744
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;

745 746 747 748
	/* If the addresses are the same, this is a no-op */
	if (ether_addr_equal(dev->dev_addr, addr->sa_data))
		return 0;

749
	if (vlan->mode == MACVLAN_MODE_PASSTHRU) {
750
		macvlan_set_addr_change(vlan->port);
751
		return dev_set_mac_address(vlan->lowerdev, addr, NULL);
752 753
	}

M
Matteo Croce 已提交
754 755 756
	if (macvlan_addr_busy(vlan->port, addr->sa_data))
		return -EADDRINUSE;

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

P
Patrick McHardy 已提交
760 761 762 763 764
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;

765 766 767
	if (dev->flags & IFF_UP) {
		if (change & IFF_ALLMULTI)
			dev_set_allmulti(lowerdev, dev->flags & IFF_ALLMULTI ? 1 : -1);
768 769 770 771
		if (change & IFF_PROMISC)
			dev_set_promiscuity(lowerdev,
					    dev->flags & IFF_PROMISC ? 1 : -1);

772
	}
P
Patrick McHardy 已提交
773 774
}

775 776 777
static void macvlan_compute_filter(unsigned long *mc_filter,
				   struct net_device *dev,
				   struct macvlan_dev *vlan)
P
Patrick McHardy 已提交
778
{
E
Eric Dumazet 已提交
779
	if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
780
		bitmap_fill(mc_filter, MACVLAN_MC_FILTER_SZ);
E
Eric Dumazet 已提交
781 782 783 784 785 786
	} 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 已提交
787
			__set_bit(mc_hash(vlan, ha->addr), filter);
E
Eric Dumazet 已提交
788
		}
789

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

792
		bitmap_copy(mc_filter, filter, MACVLAN_MC_FILTER_SZ);
E
Eric Dumazet 已提交
793
	}
794 795 796 797 798 799 800 801
}

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);

802
	dev_uc_sync(vlan->lowerdev, dev);
P
Patrick McHardy 已提交
803
	dev_mc_sync(vlan->lowerdev, dev);
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818

	/* 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 已提交
819 820 821 822 823 824
}

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

825
	if (vlan->lowerdev->mtu < new_mtu)
P
Patrick McHardy 已提交
826 827 828 829 830
		return -EINVAL;
	dev->mtu = new_mtu;
	return 0;
}

831 832 833 834 835 836 837
static int macvlan_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{
	struct net_device *real_dev = macvlan_dev_real_dev(dev);
	const struct net_device_ops *ops = real_dev->netdev_ops;
	struct ifreq ifrr;
	int err = -EOPNOTSUPP;

838
	strscpy(ifrr.ifr_name, real_dev->name, IFNAMSIZ);
839 840 841 842
	ifrr.ifr_ifru = ifr->ifr_ifru;

	switch (cmd) {
	case SIOCSHWTSTAMP:
843 844
		if (!net_eq(dev_net(dev), &init_net))
			break;
845
		fallthrough;
846 847 848 849 850 851 852 853 854 855 856 857
	case SIOCGHWTSTAMP:
		if (netif_device_present(real_dev) && ops->ndo_do_ioctl)
			err = ops->ndo_do_ioctl(real_dev, &ifrr, cmd);
		break;
	}

	if (!err)
		ifr->ifr_ifru = ifrr.ifr_ifru;

	return err;
}

P
Patrick McHardy 已提交
858 859 860 861 862
/*
 * 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.
 */
863 864
static struct lock_class_key macvlan_netdev_addr_lock_key;

865 866
#define ALWAYS_ON_OFFLOADS \
	(NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_GSO_SOFTWARE | \
867
	 NETIF_F_GSO_ROBUST | NETIF_F_GSO_ENCAP_ALL)
868

869 870
#define ALWAYS_ON_FEATURES (ALWAYS_ON_OFFLOADS | NETIF_F_LLTX)

P
Patrick McHardy 已提交
871
#define MACVLAN_FEATURES \
872
	(NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | \
873
	 NETIF_F_GSO | NETIF_F_TSO | NETIF_F_LRO | \
874
	 NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_GRO | NETIF_F_RXCSUM | \
875
	 NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_STAG_FILTER)
P
Patrick McHardy 已提交
876 877 878 879

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

880 881 882
static void macvlan_set_lockdep_class(struct net_device *dev)
{
	netdev_lockdep_set_classes(dev);
883 884
	lockdep_set_class(&dev->addr_list_lock,
			  &macvlan_netdev_addr_lock_key);
885 886
}

P
Patrick McHardy 已提交
887 888 889 890
static int macvlan_init(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	const struct net_device *lowerdev = vlan->lowerdev;
891
	struct macvlan_port *port = vlan->port;
P
Patrick McHardy 已提交
892 893 894 895

	dev->state		= (dev->state & ~MACVLAN_STATE_MASK) |
				  (lowerdev->state & MACVLAN_STATE_MASK);
	dev->features 		= lowerdev->features & MACVLAN_FEATURES;
896
	dev->features		|= ALWAYS_ON_FEATURES;
897
	dev->hw_features	|= NETIF_F_LRO;
898
	dev->vlan_features	= lowerdev->vlan_features & MACVLAN_FEATURES;
899
	dev->vlan_features	|= ALWAYS_ON_OFFLOADS;
900
	dev->hw_enc_features    |= dev->features;
901
	dev->gso_max_size	= lowerdev->gso_max_size;
E
Eric Dumazet 已提交
902
	dev->gso_max_segs	= lowerdev->gso_max_segs;
903
	dev->hard_header_len	= lowerdev->hard_header_len;
904
	macvlan_set_lockdep_class(dev);
905

906
	vlan->pcpu_stats = netdev_alloc_pcpu_stats(struct vlan_pcpu_stats);
E
Eric Dumazet 已提交
907
	if (!vlan->pcpu_stats)
908 909
		return -ENOMEM;

910 911
	port->count += 1;

P
Patrick McHardy 已提交
912 913 914
	return 0;
}

915 916 917
static void macvlan_uninit(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
918
	struct macvlan_port *port = vlan->port;
919

E
Eric Dumazet 已提交
920
	free_percpu(vlan->pcpu_stats);
921

M
Michael Braun 已提交
922
	macvlan_flush_sources(port, vlan);
923 924
	port->count -= 1;
	if (!port->count)
925
		macvlan_port_destroy(port->dev);
926 927
}

928 929
static void macvlan_dev_get_stats64(struct net_device *dev,
				    struct rtnl_link_stats64 *stats)
930 931 932
{
	struct macvlan_dev *vlan = netdev_priv(dev);

E
Eric Dumazet 已提交
933
	if (vlan->pcpu_stats) {
934
		struct vlan_pcpu_stats *p;
E
Eric Dumazet 已提交
935 936
		u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes;
		u32 rx_errors = 0, tx_dropped = 0;
E
Eric Dumazet 已提交
937
		unsigned int start;
938 939 940
		int i;

		for_each_possible_cpu(i) {
E
Eric Dumazet 已提交
941
			p = per_cpu_ptr(vlan->pcpu_stats, i);
E
Eric Dumazet 已提交
942
			do {
943
				start = u64_stats_fetch_begin_irq(&p->syncp);
E
Eric Dumazet 已提交
944 945 946
				rx_packets	= p->rx_packets;
				rx_bytes	= p->rx_bytes;
				rx_multicast	= p->rx_multicast;
E
Eric Dumazet 已提交
947 948
				tx_packets	= p->tx_packets;
				tx_bytes	= p->tx_bytes;
949
			} while (u64_stats_fetch_retry_irq(&p->syncp, start));
E
Eric Dumazet 已提交
950 951 952 953 954 955 956 957 958 959 960

			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;
961
		}
E
Eric Dumazet 已提交
962 963 964
		stats->rx_errors	= rx_errors;
		stats->rx_dropped	= rx_errors;
		stats->tx_dropped	= tx_dropped;
965 966 967
	}
}

968
static int macvlan_vlan_rx_add_vid(struct net_device *dev,
969
				   __be16 proto, u16 vid)
970 971 972 973
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

974
	return vlan_vid_add(lowerdev, proto, vid);
975 976
}

977
static int macvlan_vlan_rx_kill_vid(struct net_device *dev,
978
				    __be16 proto, u16 vid)
979 980 981 982
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

983
	vlan_vid_del(lowerdev, proto, vid);
984
	return 0;
985 986
}

987
static int macvlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
988
			   struct net_device *dev,
989
			   const unsigned char *addr, u16 vid,
990 991
			   u16 flags,
			   struct netlink_ext_ack *extack)
992 993 994 995
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	int err = -EINVAL;

996 997 998
	/* Support unicast filter only on passthru devices.
	 * Multicast filter should be allowed on all devices.
	 */
999
	if (!macvlan_passthru(vlan->port) && is_unicast_ether_addr(addr))
1000 1001
		return -EOPNOTSUPP;

T
Thomas Richter 已提交
1002 1003 1004
	if (flags & NLM_F_REPLACE)
		return -EOPNOTSUPP;

1005 1006 1007 1008 1009 1010 1011 1012
	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;
}

1013
static int macvlan_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
1014
			   struct net_device *dev,
1015
			   const unsigned char *addr, u16 vid)
1016 1017 1018 1019
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	int err = -EINVAL;

1020 1021 1022
	/* Support unicast filter only on passthru devices.
	 * Multicast filter should be allowed on all devices.
	 */
1023
	if (!macvlan_passthru(vlan->port) && is_unicast_ether_addr(addr))
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
		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 已提交
1034 1035 1036
static void macvlan_ethtool_get_drvinfo(struct net_device *dev,
					struct ethtool_drvinfo *drvinfo)
{
1037 1038
	strlcpy(drvinfo->driver, "macvlan", sizeof(drvinfo->driver));
	strlcpy(drvinfo->version, "0.1", sizeof(drvinfo->version));
P
Patrick McHardy 已提交
1039 1040
}

1041 1042
static int macvlan_ethtool_get_link_ksettings(struct net_device *dev,
					      struct ethtool_link_ksettings *cmd)
1043 1044
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
1045

1046
	return __ethtool_get_link_ksettings(vlan->lowerdev, cmd);
1047 1048
}

1049 1050 1051 1052 1053 1054 1055
static int macvlan_ethtool_get_ts_info(struct net_device *dev,
				       struct ethtool_ts_info *info)
{
	struct net_device *real_dev = macvlan_dev_real_dev(dev);
	const struct ethtool_ops *ops = real_dev->ethtool_ops;
	struct phy_device *phydev = real_dev->phydev;

1056 1057
	if (phy_has_tsinfo(phydev)) {
		return phy_ts_info(phydev, info);
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
	} else if (ops->get_ts_info) {
		return ops->get_ts_info(real_dev, info);
	} else {
		info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
			SOF_TIMESTAMPING_SOFTWARE;
		info->phc_index = -1;
	}

	return 0;
}

1069 1070 1071 1072
static netdev_features_t macvlan_fix_features(struct net_device *dev,
					      netdev_features_t features)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
1073
	netdev_features_t lowerdev_features = vlan->lowerdev->features;
1074
	netdev_features_t mask;
1075

1076 1077 1078 1079
	features |= NETIF_F_ALL_FOR_ALL;
	features &= (vlan->set_features | ~MACVLAN_FEATURES);
	mask = features;

1080 1081
	lowerdev_features &= (features | ~NETIF_F_LRO);
	features = netdev_increment_features(lowerdev_features, features, mask);
1082
	features |= ALWAYS_ON_FEATURES;
1083
	features &= (ALWAYS_ON_FEATURES | MACVLAN_FEATURES);
1084 1085

	return features;
1086 1087
}

D
dingtianhong 已提交
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
#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;

1128
	__netpoll_free(netpoll);
D
dingtianhong 已提交
1129 1130 1131
}
#endif	/* CONFIG_NET_POLL_CONTROLLER */

1132 1133 1134 1135 1136 1137 1138
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 已提交
1139 1140
static const struct ethtool_ops macvlan_ethtool_ops = {
	.get_link		= ethtool_op_get_link,
1141
	.get_link_ksettings	= macvlan_ethtool_get_link_ksettings,
P
Patrick McHardy 已提交
1142
	.get_drvinfo		= macvlan_ethtool_get_drvinfo,
1143
	.get_ts_info		= macvlan_ethtool_get_ts_info,
P
Patrick McHardy 已提交
1144 1145
};

1146 1147
static const struct net_device_ops macvlan_netdev_ops = {
	.ndo_init		= macvlan_init,
1148
	.ndo_uninit		= macvlan_uninit,
1149 1150
	.ndo_open		= macvlan_open,
	.ndo_stop		= macvlan_stop,
1151
	.ndo_start_xmit		= macvlan_start_xmit,
1152
	.ndo_change_mtu		= macvlan_change_mtu,
1153
	.ndo_do_ioctl		= macvlan_do_ioctl,
1154
	.ndo_fix_features	= macvlan_fix_features,
1155 1156
	.ndo_change_rx_flags	= macvlan_change_rx_flags,
	.ndo_set_mac_address	= macvlan_set_mac_address,
1157
	.ndo_set_rx_mode	= macvlan_set_mac_lists,
E
Eric Dumazet 已提交
1158
	.ndo_get_stats64	= macvlan_dev_get_stats64,
1159
	.ndo_validate_addr	= eth_validate_addr,
1160 1161
	.ndo_vlan_rx_add_vid	= macvlan_vlan_rx_add_vid,
	.ndo_vlan_rx_kill_vid	= macvlan_vlan_rx_kill_vid,
1162 1163 1164
	.ndo_fdb_add		= macvlan_fdb_add,
	.ndo_fdb_del		= macvlan_fdb_del,
	.ndo_fdb_dump		= ndo_dflt_fdb_dump,
D
dingtianhong 已提交
1165 1166 1167 1168 1169
#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
1170
	.ndo_get_iflink		= macvlan_dev_get_iflink,
1171
	.ndo_features_check	= passthru_features_check,
1172
	.ndo_change_proto_down  = dev_change_proto_down_generic,
1173 1174
};

H
Herbert Xu 已提交
1175
void macvlan_common_setup(struct net_device *dev)
P
Patrick McHardy 已提交
1176 1177 1178
{
	ether_setup(dev);

1179 1180
	dev->min_mtu		= 0;
	dev->max_mtu		= ETH_MAX_MTU;
1181 1182
	dev->priv_flags	       &= ~IFF_TX_SKB_SHARING;
	netif_keep_dst(dev);
1183
	dev->priv_flags	       |= IFF_UNICAST_FLT;
1184
	dev->netdev_ops		= &macvlan_netdev_ops;
1185
	dev->needs_free_netdev	= true;
L
Lutz Jaenicke 已提交
1186
	dev->header_ops		= &macvlan_hard_header_ops;
P
Patrick McHardy 已提交
1187
	dev->ethtool_ops	= &macvlan_ethtool_ops;
H
Herbert Xu 已提交
1188 1189 1190 1191 1192 1193
}
EXPORT_SYMBOL_GPL(macvlan_common_setup);

static void macvlan_setup(struct net_device *dev)
{
	macvlan_common_setup(dev);
1194
	dev->priv_flags |= IFF_NO_QUEUE;
P
Patrick McHardy 已提交
1195 1196 1197 1198 1199 1200
}

static int macvlan_port_create(struct net_device *dev)
{
	struct macvlan_port *port;
	unsigned int i;
1201
	int err;
P
Patrick McHardy 已提交
1202 1203 1204 1205

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

1206
	if (netdev_is_rx_handler_busy(dev))
1207 1208
		return -EBUSY;

P
Patrick McHardy 已提交
1209 1210 1211 1212 1213
	port = kzalloc(sizeof(*port), GFP_KERNEL);
	if (port == NULL)
		return -ENOMEM;

	port->dev = dev;
1214
	ether_addr_copy(port->perm_addr, dev->dev_addr);
P
Patrick McHardy 已提交
1215 1216 1217
	INIT_LIST_HEAD(&port->vlans);
	for (i = 0; i < MACVLAN_HASH_SIZE; i++)
		INIT_HLIST_HEAD(&port->vlan_hash[i]);
M
Michael Braun 已提交
1218 1219
	for (i = 0; i < MACVLAN_HASH_SIZE; i++)
		INIT_HLIST_HEAD(&port->vlan_source_hash[i]);
1220

1221 1222 1223
	skb_queue_head_init(&port->bc_queue);
	INIT_WORK(&port->bc_work, macvlan_process_broadcast);

1224 1225
	err = netdev_rx_handler_register(dev, macvlan_handle_frame, port);
	if (err)
1226
		kfree(port);
1227 1228
	else
		dev->priv_flags |= IFF_MACVLAN_PORT;
1229
	return err;
P
Patrick McHardy 已提交
1230 1231 1232 1233
}

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

1237
	dev->priv_flags &= ~IFF_MACVLAN_PORT;
1238
	netdev_rx_handler_unregister(dev);
1239 1240 1241 1242 1243

	/* 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);
1244 1245 1246 1247 1248 1249 1250 1251 1252

	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);
	}
1253

1254 1255 1256 1257 1258 1259 1260 1261 1262
	/* If the lower device address has been changed by passthru
	 * macvlan, put it back.
	 */
	if (macvlan_passthru(port) &&
	    !ether_addr_equal(port->dev->dev_addr, port->perm_addr)) {
		struct sockaddr sa;

		sa.sa_family = port->dev->type;
		memcpy(&sa.sa_data, port->perm_addr, port->dev->addr_len);
1263
		dev_set_mac_address(port->dev, &sa, NULL);
1264 1265
	}

1266
	kfree(port);
P
Patrick McHardy 已提交
1267 1268
}

1269 1270
static int macvlan_validate(struct nlattr *tb[], struct nlattr *data[],
			    struct netlink_ext_ack *extack)
P
Patrick McHardy 已提交
1271
{
1272 1273 1274
	struct nlattr *nla, *head;
	int rem, len;

P
Patrick McHardy 已提交
1275 1276 1277 1278 1279 1280
	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;
	}
1281

1282 1283 1284 1285
	if (!data)
		return 0;

	if (data[IFLA_MACVLAN_FLAGS] &&
M
Michael S. Tsirkin 已提交
1286 1287 1288
	    nla_get_u16(data[IFLA_MACVLAN_FLAGS]) & ~MACVLAN_FLAG_NOPROMISC)
		return -EINVAL;

1289
	if (data[IFLA_MACVLAN_MODE]) {
1290 1291 1292 1293
		switch (nla_get_u32(data[IFLA_MACVLAN_MODE])) {
		case MACVLAN_MODE_PRIVATE:
		case MACVLAN_MODE_VEPA:
		case MACVLAN_MODE_BRIDGE:
1294
		case MACVLAN_MODE_PASSTHRU:
M
Michael Braun 已提交
1295 1296 1297 1298 1299 1300 1301
		case MACVLAN_MODE_SOURCE:
			break;
		default:
			return -EINVAL;
		}
	}

1302
	if (data[IFLA_MACVLAN_MACADDR_MODE]) {
M
Michael Braun 已提交
1303 1304 1305 1306 1307
		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:
1308 1309 1310 1311 1312
			break;
		default:
			return -EINVAL;
		}
	}
M
Michael Braun 已提交
1313

1314
	if (data[IFLA_MACVLAN_MACADDR]) {
M
Michael Braun 已提交
1315 1316 1317 1318 1319 1320 1321
		if (nla_len(data[IFLA_MACVLAN_MACADDR]) != ETH_ALEN)
			return -EINVAL;

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

1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
	if (data[IFLA_MACVLAN_MACADDR_DATA]) {
		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)
				return -EINVAL;

			if (!is_valid_ether_addr(nla_data(nla)))
				return -EADDRNOTAVAIL;
		}
	}

1336
	if (data[IFLA_MACVLAN_MACADDR_COUNT])
M
Michael Braun 已提交
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
		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) {
			addr = nla_data(nla);
			ret = macvlan_hash_add_source(vlan, addr);
			if (ret)
				return ret;
		}
	} else {
		return -EINVAL;
	}

P
Patrick McHardy 已提交
1401 1402 1403
	return 0;
}

1404
int macvlan_common_newlink(struct net *src_net, struct net_device *dev,
1405 1406
			   struct nlattr *tb[], struct nlattr *data[],
			   struct netlink_ext_ack *extack)
P
Patrick McHardy 已提交
1407 1408 1409 1410 1411
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct macvlan_port *port;
	struct net_device *lowerdev;
	int err;
M
Michael Braun 已提交
1412
	int macmode;
1413
	bool create = false;
P
Patrick McHardy 已提交
1414 1415 1416 1417

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

1418
	lowerdev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
P
Patrick McHardy 已提交
1419 1420 1421
	if (lowerdev == NULL)
		return -ENODEV;

1422
	/* When creating macvlans or macvtaps on top of other macvlans - use
1423
	 * the real device as the lowerdev.
1424
	 */
1425 1426
	if (netif_is_macvlan(lowerdev))
		lowerdev = macvlan_dev_real_dev(lowerdev);
1427

P
Patrick McHardy 已提交
1428 1429 1430 1431 1432
	if (!tb[IFLA_MTU])
		dev->mtu = lowerdev->mtu;
	else if (dev->mtu > lowerdev->mtu)
		return -EINVAL;

1433 1434 1435 1436
	/* MTU range: 68 - lowerdev->max_mtu */
	dev->min_mtu = ETH_MIN_MTU;
	dev->max_mtu = lowerdev->max_mtu;

P
Patrick McHardy 已提交
1437
	if (!tb[IFLA_ADDRESS])
1438
		eth_hw_addr_random(dev);
P
Patrick McHardy 已提交
1439

1440
	if (!netif_is_macvlan_port(lowerdev)) {
P
Patrick McHardy 已提交
1441 1442 1443
		err = macvlan_port_create(lowerdev);
		if (err < 0)
			return err;
1444
		create = true;
P
Patrick McHardy 已提交
1445
	}
E
Eric Dumazet 已提交
1446
	port = macvlan_port_get_rtnl(lowerdev);
P
Patrick McHardy 已提交
1447

1448
	/* Only 1 macvlan device can be created in passthru mode */
1449
	if (macvlan_passthru(port)) {
1450 1451 1452 1453 1454 1455
		/* The macvlan port must be not created this time,
		 * still goto destroy_macvlan_port for readability.
		 */
		err = -EINVAL;
		goto destroy_macvlan_port;
	}
1456

P
Patrick McHardy 已提交
1457 1458 1459
	vlan->lowerdev = lowerdev;
	vlan->dev      = dev;
	vlan->port     = port;
1460
	vlan->set_features = MACVLAN_FEATURES;
P
Patrick McHardy 已提交
1461

1462 1463 1464 1465
	vlan->mode     = MACVLAN_MODE_VEPA;
	if (data && data[IFLA_MACVLAN_MODE])
		vlan->mode = nla_get_u32(data[IFLA_MACVLAN_MODE]);

1466 1467 1468
	if (data && data[IFLA_MACVLAN_FLAGS])
		vlan->flags = nla_get_u16(data[IFLA_MACVLAN_FLAGS]);

1469
	if (vlan->mode == MACVLAN_MODE_PASSTHRU) {
1470 1471 1472 1473
		if (port->count) {
			err = -EINVAL;
			goto destroy_macvlan_port;
		}
1474
		macvlan_set_passthru(port);
1475
		eth_hw_addr_inherit(dev, lowerdev);
1476 1477
	}

M
Michael Braun 已提交
1478
	if (data && data[IFLA_MACVLAN_MACADDR_MODE]) {
1479 1480 1481 1482
		if (vlan->mode != MACVLAN_MODE_SOURCE) {
			err = -EINVAL;
			goto destroy_macvlan_port;
		}
M
Michael Braun 已提交
1483 1484 1485
		macmode = nla_get_u32(data[IFLA_MACVLAN_MACADDR_MODE]);
		err = macvlan_changelink_sources(vlan, macmode, data);
		if (err)
1486
			goto destroy_macvlan_port;
M
Michael Braun 已提交
1487 1488
	}

1489 1490
	err = register_netdevice(dev);
	if (err < 0)
1491
		goto destroy_macvlan_port;
1492

1493
	dev->priv_flags |= IFF_MACVLAN;
1494
	err = netdev_upper_dev_link(lowerdev, dev, extack);
J
Jiri Pirko 已提交
1495
	if (err)
1496
		goto unregister_netdev;
P
Patrick McHardy 已提交
1497

1498
	list_add_tail_rcu(&vlan->list, &port->vlans);
1499
	netif_stacked_transfer_operstate(lowerdev, dev);
1500
	linkwatch_fire_event(dev);
1501

P
Patrick McHardy 已提交
1502
	return 0;
1503

1504
unregister_netdev:
G
Gao Feng 已提交
1505
	/* macvlan_uninit would free the macvlan port */
1506
	unregister_netdevice(dev);
G
Gao Feng 已提交
1507
	return err;
1508
destroy_macvlan_port:
G
Gao Feng 已提交
1509 1510 1511
	/* the macvlan port may be freed by macvlan_uninit when fail to register.
	 * so we destroy the macvlan port only when it's valid.
	 */
1512
	if (create && macvlan_port_get_rtnl(lowerdev))
1513
		macvlan_port_destroy(port->dev);
1514
	return err;
P
Patrick McHardy 已提交
1515
}
1516
EXPORT_SYMBOL_GPL(macvlan_common_newlink);
P
Patrick McHardy 已提交
1517

1518
static int macvlan_newlink(struct net *src_net, struct net_device *dev,
1519 1520
			   struct nlattr *tb[], struct nlattr *data[],
			   struct netlink_ext_ack *extack)
1521
{
1522
	return macvlan_common_newlink(src_net, dev, tb, data, extack);
1523 1524 1525
}

void macvlan_dellink(struct net_device *dev, struct list_head *head)
P
Patrick McHardy 已提交
1526 1527 1528
{
	struct macvlan_dev *vlan = netdev_priv(dev);

M
Michael Braun 已提交
1529 1530
	if (vlan->mode == MACVLAN_MODE_SOURCE)
		macvlan_flush_sources(vlan->port, vlan);
1531
	list_del_rcu(&vlan->list);
1532
	unregister_netdevice_queue(dev, head);
J
Jiri Pirko 已提交
1533
	netdev_upper_dev_unlink(vlan->lowerdev, dev);
P
Patrick McHardy 已提交
1534
}
1535
EXPORT_SYMBOL_GPL(macvlan_dellink);
P
Patrick McHardy 已提交
1536

1537
static int macvlan_changelink(struct net_device *dev,
1538 1539
			      struct nlattr *tb[], struct nlattr *data[],
			      struct netlink_ext_ack *extack)
1540 1541
{
	struct macvlan_dev *vlan = netdev_priv(dev);
1542 1543
	enum macvlan_mode mode;
	bool set_mode = false;
M
Michael Braun 已提交
1544 1545
	enum macvlan_macaddr_mode macmode;
	int ret;
1546 1547 1548 1549 1550 1551 1552 1553 1554

	/* 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 已提交
1555 1556 1557
		if (vlan->mode == MACVLAN_MODE_SOURCE &&
		    vlan->mode != mode)
			macvlan_flush_sources(vlan->port, vlan);
1558
	}
1559

1560 1561 1562
	if (data && data[IFLA_MACVLAN_FLAGS]) {
		__u16 flags = nla_get_u16(data[IFLA_MACVLAN_FLAGS]);
		bool promisc = (flags ^ vlan->flags) & MACVLAN_FLAG_NOPROMISC;
1563
		if (macvlan_passthru(vlan->port) && promisc) {
1564 1565 1566 1567 1568 1569 1570 1571 1572
			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;
		}
1573 1574
		vlan->flags = flags;
	}
1575 1576
	if (set_mode)
		vlan->mode = mode;
M
Michael Braun 已提交
1577 1578 1579 1580 1581 1582 1583 1584
	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;
	}
1585 1586 1587
	return 0;
}

M
Michael Braun 已提交
1588 1589 1590 1591 1592 1593 1594 1595
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);
}

1596 1597
static size_t macvlan_get_size(const struct net_device *dev)
{
M
Michael Braun 已提交
1598 1599
	struct macvlan_dev *vlan = netdev_priv(dev);

E
Eric Dumazet 已提交
1600 1601 1602
	return (0
		+ nla_total_size(4) /* IFLA_MACVLAN_MODE */
		+ nla_total_size(2) /* IFLA_MACVLAN_FLAGS */
M
Michael Braun 已提交
1603 1604
		+ nla_total_size(4) /* IFLA_MACVLAN_MACADDR_COUNT */
		+ macvlan_get_size_mac(vlan) /* IFLA_MACVLAN_MACADDR */
E
Eric Dumazet 已提交
1605
		);
1606 1607
}

M
Michael Braun 已提交
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
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;
}

1624 1625 1626 1627
static int macvlan_fill_info(struct sk_buff *skb,
				const struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
M
Michael Braun 已提交
1628 1629
	int i;
	struct nlattr *nest;
1630

1631 1632
	if (nla_put_u32(skb, IFLA_MACVLAN_MODE, vlan->mode))
		goto nla_put_failure;
1633 1634
	if (nla_put_u16(skb, IFLA_MACVLAN_FLAGS, vlan->flags))
		goto nla_put_failure;
M
Michael Braun 已提交
1635 1636 1637
	if (nla_put_u32(skb, IFLA_MACVLAN_MACADDR_COUNT, vlan->macaddr_count))
		goto nla_put_failure;
	if (vlan->macaddr_count > 0) {
1638
		nest = nla_nest_start_noflag(skb, IFLA_MACVLAN_MACADDR_DATA);
M
Michael Braun 已提交
1639 1640 1641 1642 1643 1644 1645 1646 1647
		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);
	}
1648 1649 1650 1651 1652 1653 1654
	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

static const struct nla_policy macvlan_policy[IFLA_MACVLAN_MAX + 1] = {
1655 1656
	[IFLA_MACVLAN_MODE]  = { .type = NLA_U32 },
	[IFLA_MACVLAN_FLAGS] = { .type = NLA_U16 },
M
Michael Braun 已提交
1657 1658 1659 1660
	[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 },
1661 1662
};

1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676
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);

1677 1678 1679 1680 1681
static struct net *macvlan_get_link_net(const struct net_device *dev)
{
	return dev_net(macvlan_dev_real_dev(dev));
}

1682
static struct rtnl_link_ops macvlan_link_ops = {
P
Patrick McHardy 已提交
1683
	.kind		= "macvlan",
H
Herbert Xu 已提交
1684
	.setup		= macvlan_setup,
P
Patrick McHardy 已提交
1685 1686
	.newlink	= macvlan_newlink,
	.dellink	= macvlan_dellink,
1687
	.get_link_net	= macvlan_get_link_net,
1688
	.priv_size      = sizeof(struct macvlan_dev),
P
Patrick McHardy 已提交
1689 1690 1691 1692 1693
};

static int macvlan_device_event(struct notifier_block *unused,
				unsigned long event, void *ptr)
{
1694
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
P
Patrick McHardy 已提交
1695 1696
	struct macvlan_dev *vlan, *next;
	struct macvlan_port *port;
1697
	LIST_HEAD(list_kill);
P
Patrick McHardy 已提交
1698

1699
	if (!netif_is_macvlan_port(dev))
P
Patrick McHardy 已提交
1700 1701
		return NOTIFY_DONE;

E
Eric Dumazet 已提交
1702
	port = macvlan_port_get_rtnl(dev);
1703

P
Patrick McHardy 已提交
1704
	switch (event) {
1705
	case NETDEV_UP:
1706
	case NETDEV_DOWN:
P
Patrick McHardy 已提交
1707 1708
	case NETDEV_CHANGE:
		list_for_each_entry(vlan, &port->vlans, list)
1709 1710
			netif_stacked_transfer_operstate(vlan->lowerdev,
							 vlan->dev);
P
Patrick McHardy 已提交
1711 1712 1713
		break;
	case NETDEV_FEAT_CHANGE:
		list_for_each_entry(vlan, &port->vlans, list) {
1714
			vlan->dev->gso_max_size = dev->gso_max_size;
E
Eric Dumazet 已提交
1715
			vlan->dev->gso_max_segs = dev->gso_max_segs;
1716
			netdev_update_features(vlan->dev);
P
Patrick McHardy 已提交
1717 1718
		}
		break;
1719 1720 1721 1722 1723 1724
	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);
		}
1725 1726
		break;
	case NETDEV_CHANGEADDR:
1727
		if (!macvlan_passthru(port))
1728 1729 1730 1731 1732 1733
			return NOTIFY_DONE;

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

1734
		if (vlan && macvlan_sync_address(vlan->dev, dev->dev_addr))
1735 1736
			return NOTIFY_BAD;

1737
		break;
P
Patrick McHardy 已提交
1738
	case NETDEV_UNREGISTER:
1739 1740 1741 1742
		/* twiddle thumbs on netns device moves */
		if (dev->reg_state != NETREG_UNREGISTERING)
			break;

P
Patrick McHardy 已提交
1743
		list_for_each_entry_safe(vlan, next, &port->vlans, list)
1744 1745
			vlan->dev->rtnl_link_ops->dellink(vlan->dev, &list_kill);
		unregister_netdevice_many(&list_kill);
P
Patrick McHardy 已提交
1746
		break;
1747 1748 1749
	case NETDEV_PRE_TYPE_CHANGE:
		/* Forbid underlaying device to change its type. */
		return NOTIFY_BAD;
V
Vlad Yasevich 已提交
1750 1751 1752 1753 1754 1755 1756

	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 已提交
1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770
	}
	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);

1771
	err = macvlan_link_register(&macvlan_link_ops);
P
Patrick McHardy 已提交
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
	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");