macvlan.c 21.8 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 29 30 31
#include <linux/notifier.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/if_arp.h>
#include <linux/if_link.h>
#include <linux/if_macvlan.h>
#include <net/rtnetlink.h>
32
#include <net/xfrm.h>
P
Patrick McHardy 已提交
33 34 35 36 37 38 39

#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 已提交
40
	struct rcu_head		rcu;
41
	bool 			passthru;
42
	int			count;
P
Patrick McHardy 已提交
43 44
};

45 46
static void macvlan_port_destroy(struct net_device *dev);

47 48 49 50 51
#define macvlan_port_get_rcu(dev) \
	((struct macvlan_port *) rcu_dereference(dev->rx_handler_data))
#define macvlan_port_get(dev) ((struct macvlan_port *) dev->rx_handler_data)
#define macvlan_port_exists(dev) (dev->priv_flags & IFF_MACVLAN_PORT)

P
Patrick McHardy 已提交
52 53 54 55 56 57 58
static struct macvlan_dev *macvlan_hash_lookup(const struct macvlan_port *port,
					       const unsigned char *addr)
{
	struct macvlan_dev *vlan;
	struct hlist_node *n;

	hlist_for_each_entry_rcu(vlan, n, &port->vlan_hash[addr[5]], hlist) {
59
		if (!compare_ether_addr_64bits(vlan->dev->dev_addr, addr))
P
Patrick McHardy 已提交
60 61 62 63 64
			return vlan;
	}
	return NULL;
}

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
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]]);
}

static void macvlan_hash_del(struct macvlan_dev *vlan)
{
	hlist_del_rcu(&vlan->hlist);
	synchronize_rcu();
}

static void macvlan_hash_change_addr(struct macvlan_dev *vlan,
					const unsigned char *addr)
{
	macvlan_hash_del(vlan);
	/* 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.
	 */
97
	if (!compare_ether_addr_64bits(port->dev->dev_addr, addr))
98 99 100 101 102 103 104 105
		return 1;

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

	return 0;
}

A
Arnd Bergmann 已提交
106

107 108
static int macvlan_broadcast_one(struct sk_buff *skb,
				 const struct macvlan_dev *vlan,
109
				 const struct ethhdr *eth, bool local)
A
Arnd Bergmann 已提交
110
{
111
	struct net_device *dev = vlan->dev;
A
Arnd Bergmann 已提交
112 113 114
	if (!skb)
		return NET_RX_DROP;

115
	if (local)
116
		return vlan->forward(dev, skb);
117

A
Arnd Bergmann 已提交
118 119 120 121 122 123 124
	skb->dev = dev;
	if (!compare_ether_addr_64bits(eth->h_dest,
				       dev->broadcast))
		skb->pkt_type = PACKET_BROADCAST;
	else
		skb->pkt_type = PACKET_MULTICAST;

125
	return vlan->receive(skb);
A
Arnd Bergmann 已提交
126 127
}

P
Patrick McHardy 已提交
128
static void macvlan_broadcast(struct sk_buff *skb,
129 130 131
			      const struct macvlan_port *port,
			      struct net_device *src,
			      enum macvlan_mode mode)
P
Patrick McHardy 已提交
132 133 134 135 136 137
{
	const struct ethhdr *eth = eth_hdr(skb);
	const struct macvlan_dev *vlan;
	struct hlist_node *n;
	struct sk_buff *nskb;
	unsigned int i;
A
Arnd Bergmann 已提交
138
	int err;
P
Patrick McHardy 已提交
139

140 141 142
	if (skb->protocol == htons(ETH_P_PAUSE))
		return;

P
Patrick McHardy 已提交
143 144
	for (i = 0; i < MACVLAN_HASH_SIZE; i++) {
		hlist_for_each_entry_rcu(vlan, n, &port->vlan_hash[i], hlist) {
145 146 147
			if (vlan->dev == src || !(vlan->mode & mode))
				continue;

P
Patrick McHardy 已提交
148
			nskb = skb_clone(skb, GFP_ATOMIC);
149
			err = macvlan_broadcast_one(nskb, vlan, eth,
150
					 mode == MACVLAN_MODE_BRIDGE);
A
Arnd Bergmann 已提交
151 152
			macvlan_count_rx(vlan, skb->len + ETH_HLEN,
					 err == NET_RX_SUCCESS, 1);
P
Patrick McHardy 已提交
153 154 155 156 157
		}
	}
}

/* called under rcu_read_lock() from netif_receive_skb */
158
static rx_handler_result_t macvlan_handle_frame(struct sk_buff **pskb)
P
Patrick McHardy 已提交
159
{
160
	struct macvlan_port *port;
161
	struct sk_buff *skb = *pskb;
P
Patrick McHardy 已提交
162 163
	const struct ethhdr *eth = eth_hdr(skb);
	const struct macvlan_dev *vlan;
164
	const struct macvlan_dev *src;
P
Patrick McHardy 已提交
165
	struct net_device *dev;
166 167
	unsigned int len = 0;
	int ret = NET_RX_DROP;
P
Patrick McHardy 已提交
168

169
	port = macvlan_port_get_rcu(skb->dev);
P
Patrick McHardy 已提交
170
	if (is_multicast_ether_addr(eth->h_dest)) {
171 172 173 174 175 176
		src = macvlan_hash_lookup(port, eth->h_source);
		if (!src)
			/* frame comes from an external address */
			macvlan_broadcast(skb, port, NULL,
					  MACVLAN_MODE_PRIVATE |
					  MACVLAN_MODE_VEPA    |
177
					  MACVLAN_MODE_PASSTHRU|
178 179 180 181 182 183 184 185 186 187 188 189 190
					  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);
		else if (src->mode == MACVLAN_MODE_BRIDGE)
			/*
			 * flood only to VEPA ports, bridge ports
			 * already saw the frame on the way out.
			 */
			macvlan_broadcast(skb, port, src->dev,
					  MACVLAN_MODE_VEPA);
191
		return RX_HANDLER_PASS;
P
Patrick McHardy 已提交
192 193
	}

194 195 196 197
	if (port->passthru)
		vlan = list_first_entry(&port->vlans, struct macvlan_dev, list);
	else
		vlan = macvlan_hash_lookup(port, eth->h_dest);
P
Patrick McHardy 已提交
198
	if (vlan == NULL)
199
		return RX_HANDLER_PASS;
P
Patrick McHardy 已提交
200 201 202 203

	dev = vlan->dev;
	if (unlikely(!(dev->flags & IFF_UP))) {
		kfree_skb(skb);
204
		return RX_HANDLER_CONSUMED;
P
Patrick McHardy 已提交
205
	}
A
Arnd Bergmann 已提交
206
	len = skb->len + ETH_HLEN;
P
Patrick McHardy 已提交
207
	skb = skb_share_check(skb, GFP_ATOMIC);
A
Arnd Bergmann 已提交
208
	if (!skb)
209
		goto out;
P
Patrick McHardy 已提交
210 211 212 213

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

214 215 216 217
	ret = vlan->receive(skb);

out:
	macvlan_count_rx(vlan, len, ret == NET_RX_SUCCESS, 0);
218
	return RX_HANDLER_CONSUMED;
P
Patrick McHardy 已提交
219 220
}

221 222 223 224 225
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;
226
	__u8 ip_summed = skb->ip_summed;
227 228 229

	if (vlan->mode == MACVLAN_MODE_BRIDGE) {
		const struct ethhdr *eth = (void *)skb->data;
230
		skb->ip_summed = CHECKSUM_UNNECESSARY;
231 232 233 234 235 236 237 238 239 240

		/* 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) {
			unsigned int length = skb->len + ETH_HLEN;
241
			int ret = dest->forward(dest->dev, skb);
242 243 244 245 246 247 248 249
			macvlan_count_rx(dest, length,
					 ret == NET_RX_SUCCESS, 0);

			return NET_XMIT_SUCCESS;
		}
	}

xmit_world:
250
	skb->ip_summed = ip_summed;
251
	skb_set_dev(skb, vlan->lowerdev);
252 253 254
	return dev_queue_xmit(skb);
}

255 256
netdev_tx_t macvlan_start_xmit(struct sk_buff *skb,
			       struct net_device *dev)
P
Patrick McHardy 已提交
257 258 259
{
	unsigned int len = skb->len;
	int ret;
E
Eric Dumazet 已提交
260
	const struct macvlan_dev *vlan = netdev_priv(dev);
P
Patrick McHardy 已提交
261

262
	ret = macvlan_queue_xmit(skb, dev);
263
	if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
E
Eric Dumazet 已提交
264
		struct macvlan_pcpu_stats *pcpu_stats;
265

E
Eric Dumazet 已提交
266 267 268 269 270 271 272 273
		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);
	}
274
	return ret;
P
Patrick McHardy 已提交
275
}
276
EXPORT_SYMBOL_GPL(macvlan_start_xmit);
P
Patrick McHardy 已提交
277 278

static int macvlan_hard_header(struct sk_buff *skb, struct net_device *dev,
279 280
			       unsigned short type, const void *daddr,
			       const void *saddr, unsigned len)
P
Patrick McHardy 已提交
281 282 283 284
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;

285 286
	return dev_hard_header(skb, lowerdev, type, daddr,
			       saddr ? : dev->dev_addr, len);
P
Patrick McHardy 已提交
287 288
}

289 290 291 292 293 294 295 296
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,
};

P
Patrick McHardy 已提交
297 298 299 300 301 302
static int macvlan_open(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;
	int err;

303 304 305 306 307
	if (vlan->port->passthru) {
		dev_set_promiscuity(lowerdev, 1);
		goto hash_add;
	}

308 309 310 311
	err = -EBUSY;
	if (macvlan_addr_busy(vlan->port, dev->dev_addr))
		goto out;

312
	err = dev_uc_add(lowerdev, dev->dev_addr);
P
Patrick McHardy 已提交
313
	if (err < 0)
314 315 316 317 318 319
		goto out;
	if (dev->flags & IFF_ALLMULTI) {
		err = dev_set_allmulti(lowerdev, 1);
		if (err < 0)
			goto del_unicast;
	}
320 321

hash_add:
322
	macvlan_hash_add(vlan);
P
Patrick McHardy 已提交
323
	return 0;
324 325

del_unicast:
326
	dev_uc_del(lowerdev, dev->dev_addr);
327 328
out:
	return err;
P
Patrick McHardy 已提交
329 330 331 332 333 334 335
}

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

336 337 338 339 340
	if (vlan->port->passthru) {
		dev_set_promiscuity(lowerdev, -1);
		goto hash_del;
	}

P
Patrick McHardy 已提交
341 342 343 344
	dev_mc_unsync(lowerdev, dev);
	if (dev->flags & IFF_ALLMULTI)
		dev_set_allmulti(lowerdev, -1);

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

347
hash_del:
348
	macvlan_hash_del(vlan);
P
Patrick McHardy 已提交
349 350 351
	return 0;
}

352 353 354 355 356 357 358 359 360 361
static int macvlan_set_mac_address(struct net_device *dev, void *p)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct net_device *lowerdev = vlan->lowerdev;
	struct sockaddr *addr = p;
	int err;

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

362 363 364 365 366 367 368
	if (!(dev->flags & IFF_UP)) {
		/* Just copy in the new address */
		memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
	} else {
		/* Rehash and update the device filters */
		if (macvlan_addr_busy(vlan->port, addr->sa_data))
			return -EBUSY;
369

370
		err = dev_uc_add(lowerdev, addr->sa_data);
J
Jiri Pirko 已提交
371
		if (err)
372
			return err;
373

374
		dev_uc_del(lowerdev, dev->dev_addr);
375 376 377

		macvlan_hash_change_addr(vlan, addr->sa_data);
	}
378 379 380
	return 0;
}

P
Patrick McHardy 已提交
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
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;

	if (change & IFF_ALLMULTI)
		dev_set_allmulti(lowerdev, dev->flags & IFF_ALLMULTI ? 1 : -1);
}

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

	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;
413
static struct lock_class_key macvlan_netdev_addr_lock_key;
P
Patrick McHardy 已提交
414 415 416 417

#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 | \
418
	 NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_GRO)
P
Patrick McHardy 已提交
419 420 421 422

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

423 424 425
static void macvlan_set_lockdep_class_one(struct net_device *dev,
					  struct netdev_queue *txq,
					  void *_unused)
426 427 428 429 430 431 432
{
	lockdep_set_class(&txq->_xmit_lock,
			  &macvlan_netdev_xmit_lock_key);
}

static void macvlan_set_lockdep_class(struct net_device *dev)
{
433 434
	lockdep_set_class(&dev->addr_list_lock,
			  &macvlan_netdev_addr_lock_key);
435
	netdev_for_each_tx_queue(dev, macvlan_set_lockdep_class_one, NULL);
436 437
}

P
Patrick McHardy 已提交
438 439 440 441 442 443 444 445
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;
E
Eric Dumazet 已提交
446
	dev->features		|= NETIF_F_LLTX;
447
	dev->gso_max_size	= lowerdev->gso_max_size;
P
Patrick McHardy 已提交
448
	dev->iflink		= lowerdev->ifindex;
449
	dev->hard_header_len	= lowerdev->hard_header_len;
P
Patrick McHardy 已提交
450

451 452
	macvlan_set_lockdep_class(dev);

E
Eric Dumazet 已提交
453 454
	vlan->pcpu_stats = alloc_percpu(struct macvlan_pcpu_stats);
	if (!vlan->pcpu_stats)
455 456
		return -ENOMEM;

P
Patrick McHardy 已提交
457 458 459
	return 0;
}

460 461 462
static void macvlan_uninit(struct net_device *dev)
{
	struct macvlan_dev *vlan = netdev_priv(dev);
463
	struct macvlan_port *port = vlan->port;
464

E
Eric Dumazet 已提交
465
	free_percpu(vlan->pcpu_stats);
466 467 468 469

	port->count -= 1;
	if (!port->count)
		macvlan_port_destroy(port->dev);
470 471
}

472 473
static struct rtnl_link_stats64 *macvlan_dev_get_stats64(struct net_device *dev,
							 struct rtnl_link_stats64 *stats)
474 475 476
{
	struct macvlan_dev *vlan = netdev_priv(dev);

E
Eric Dumazet 已提交
477 478 479 480
	if (vlan->pcpu_stats) {
		struct macvlan_pcpu_stats *p;
		u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes;
		u32 rx_errors = 0, tx_dropped = 0;
E
Eric Dumazet 已提交
481
		unsigned int start;
482 483 484
		int i;

		for_each_possible_cpu(i) {
E
Eric Dumazet 已提交
485
			p = per_cpu_ptr(vlan->pcpu_stats, i);
E
Eric Dumazet 已提交
486 487 488 489 490
			do {
				start = u64_stats_fetch_begin_bh(&p->syncp);
				rx_packets	= p->rx_packets;
				rx_bytes	= p->rx_bytes;
				rx_multicast	= p->rx_multicast;
E
Eric Dumazet 已提交
491 492
				tx_packets	= p->tx_packets;
				tx_bytes	= p->tx_bytes;
E
Eric Dumazet 已提交
493
			} while (u64_stats_fetch_retry_bh(&p->syncp, start));
E
Eric Dumazet 已提交
494 495 496 497 498 499 500 501 502 503 504

			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;
505
		}
E
Eric Dumazet 已提交
506 507 508
		stats->rx_errors	= rx_errors;
		stats->rx_dropped	= rx_errors;
		stats->tx_dropped	= tx_dropped;
509 510 511 512
	}
	return stats;
}

P
Patrick McHardy 已提交
513 514 515 516 517 518 519 520 521 522
static void macvlan_ethtool_get_drvinfo(struct net_device *dev,
					struct ethtool_drvinfo *drvinfo)
{
	snprintf(drvinfo->driver, 32, "macvlan");
	snprintf(drvinfo->version, 32, "0.1");
}

static u32 macvlan_ethtool_get_rx_csum(struct net_device *dev)
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
523
	return dev_ethtool_get_rx_csum(vlan->lowerdev);
P
Patrick McHardy 已提交
524 525
}

526 527 528 529
static int macvlan_ethtool_get_settings(struct net_device *dev,
					struct ethtool_cmd *cmd)
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
530
	return dev_ethtool_get_settings(vlan->lowerdev, cmd);
531 532 533 534 535
}

static u32 macvlan_ethtool_get_flags(struct net_device *dev)
{
	const struct macvlan_dev *vlan = netdev_priv(dev);
536
	return dev_ethtool_get_flags(vlan->lowerdev);
537 538
}

P
Patrick McHardy 已提交
539 540
static const struct ethtool_ops macvlan_ethtool_ops = {
	.get_link		= ethtool_op_get_link,
541
	.get_settings		= macvlan_ethtool_get_settings,
P
Patrick McHardy 已提交
542 543
	.get_rx_csum		= macvlan_ethtool_get_rx_csum,
	.get_drvinfo		= macvlan_ethtool_get_drvinfo,
544
	.get_flags		= macvlan_ethtool_get_flags,
P
Patrick McHardy 已提交
545 546
};

547 548
static const struct net_device_ops macvlan_netdev_ops = {
	.ndo_init		= macvlan_init,
549
	.ndo_uninit		= macvlan_uninit,
550 551
	.ndo_open		= macvlan_open,
	.ndo_stop		= macvlan_stop,
552
	.ndo_start_xmit		= macvlan_start_xmit,
553 554 555 556
	.ndo_change_mtu		= macvlan_change_mtu,
	.ndo_change_rx_flags	= macvlan_change_rx_flags,
	.ndo_set_mac_address	= macvlan_set_mac_address,
	.ndo_set_multicast_list	= macvlan_set_multicast_list,
E
Eric Dumazet 已提交
557
	.ndo_get_stats64	= macvlan_dev_get_stats64,
558 559 560
	.ndo_validate_addr	= eth_validate_addr,
};

H
Herbert Xu 已提交
561
void macvlan_common_setup(struct net_device *dev)
P
Patrick McHardy 已提交
562 563 564
{
	ether_setup(dev);

565
	dev->priv_flags	       &= ~IFF_XMIT_DST_RELEASE;
566
	dev->netdev_ops		= &macvlan_netdev_ops;
P
Patrick McHardy 已提交
567
	dev->destructor		= free_netdev;
568
	dev->header_ops		= &macvlan_hard_header_ops,
P
Patrick McHardy 已提交
569
	dev->ethtool_ops	= &macvlan_ethtool_ops;
H
Herbert Xu 已提交
570 571 572 573 574 575
}
EXPORT_SYMBOL_GPL(macvlan_common_setup);

static void macvlan_setup(struct net_device *dev)
{
	macvlan_common_setup(dev);
P
Patrick McHardy 已提交
576 577 578 579 580 581 582
	dev->tx_queue_len	= 0;
}

static int macvlan_port_create(struct net_device *dev)
{
	struct macvlan_port *port;
	unsigned int i;
583
	int err;
P
Patrick McHardy 已提交
584 585 586 587 588 589 590 591

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

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

592
	port->passthru = false;
P
Patrick McHardy 已提交
593 594 595 596
	port->dev = dev;
	INIT_LIST_HEAD(&port->vlans);
	for (i = 0; i < MACVLAN_HASH_SIZE; i++)
		INIT_HLIST_HEAD(&port->vlan_hash[i]);
597

598 599
	err = netdev_rx_handler_register(dev, macvlan_handle_frame, port);
	if (err)
600 601
		kfree(port);

602
	dev->priv_flags |= IFF_MACVLAN_PORT;
603
	return err;
P
Patrick McHardy 已提交
604 605
}

J
Jiri Pirko 已提交
606 607 608 609 610 611 612 613
static void macvlan_port_rcu_free(struct rcu_head *head)
{
	struct macvlan_port *port;

	port = container_of(head, struct macvlan_port, rcu);
	kfree(port);
}

P
Patrick McHardy 已提交
614 615
static void macvlan_port_destroy(struct net_device *dev)
{
616
	struct macvlan_port *port = macvlan_port_get(dev);
P
Patrick McHardy 已提交
617

618
	dev->priv_flags &= ~IFF_MACVLAN_PORT;
619
	netdev_rx_handler_unregister(dev);
J
Jiri Pirko 已提交
620
	call_rcu(&port->rcu, macvlan_port_rcu_free);
P
Patrick McHardy 已提交
621 622 623 624 625 626 627 628 629 630
}

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;
	}
631 632 633 634 635 636

	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:
637
		case MACVLAN_MODE_PASSTHRU:
638 639 640 641 642
			break;
		default:
			return -EINVAL;
		}
	}
P
Patrick McHardy 已提交
643 644 645
	return 0;
}

646 647 648 649 650
int macvlan_common_newlink(struct net *src_net, struct net_device *dev,
			   struct nlattr *tb[], struct nlattr *data[],
			   int (*receive)(struct sk_buff *skb),
			   int (*forward)(struct net_device *dev,
					  struct sk_buff *skb))
P
Patrick McHardy 已提交
651 652 653 654 655 656 657 658 659
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	struct macvlan_port *port;
	struct net_device *lowerdev;
	int err;

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

660
	lowerdev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
P
Patrick McHardy 已提交
661 662 663
	if (lowerdev == NULL)
		return -ENODEV;

664 665
	/* When creating macvlans on top of other macvlans - use
	 * the real device as the lowerdev.
666
	 */
667 668 669 670
	if (lowerdev->rtnl_link_ops == dev->rtnl_link_ops) {
		struct macvlan_dev *lowervlan = netdev_priv(lowerdev);
		lowerdev = lowervlan->lowerdev;
	}
671

P
Patrick McHardy 已提交
672 673 674 675 676 677 678 679
	if (!tb[IFLA_MTU])
		dev->mtu = lowerdev->mtu;
	else if (dev->mtu > lowerdev->mtu)
		return -EINVAL;

	if (!tb[IFLA_ADDRESS])
		random_ether_addr(dev->dev_addr);

680
	if (!macvlan_port_exists(lowerdev)) {
P
Patrick McHardy 已提交
681 682 683 684
		err = macvlan_port_create(lowerdev);
		if (err < 0)
			return err;
	}
685
	port = macvlan_port_get(lowerdev);
P
Patrick McHardy 已提交
686

687 688 689 690
	/* Only 1 macvlan device can be created in passthru mode */
	if (port->passthru)
		return -EINVAL;

P
Patrick McHardy 已提交
691 692 693
	vlan->lowerdev = lowerdev;
	vlan->dev      = dev;
	vlan->port     = port;
694 695
	vlan->receive  = receive;
	vlan->forward  = forward;
P
Patrick McHardy 已提交
696

697 698 699 700
	vlan->mode     = MACVLAN_MODE_VEPA;
	if (data && data[IFLA_MACVLAN_MODE])
		vlan->mode = nla_get_u32(data[IFLA_MACVLAN_MODE]);

701
	if (vlan->mode == MACVLAN_MODE_PASSTHRU) {
702
		if (port->count)
703 704 705 706 707
			return -EINVAL;
		port->passthru = true;
		memcpy(dev->dev_addr, lowerdev->dev_addr, ETH_ALEN);
	}

708
	port->count += 1;
P
Patrick McHardy 已提交
709 710
	err = register_netdevice(dev);
	if (err < 0)
711
		goto destroy_port;
P
Patrick McHardy 已提交
712 713

	list_add_tail(&vlan->list, &port->vlans);
714
	netif_stacked_transfer_operstate(lowerdev, dev);
715

P
Patrick McHardy 已提交
716
	return 0;
717 718

destroy_port:
719 720
	port->count -= 1;
	if (!port->count)
721 722 723
		macvlan_port_destroy(lowerdev);

	return err;
P
Patrick McHardy 已提交
724
}
725
EXPORT_SYMBOL_GPL(macvlan_common_newlink);
P
Patrick McHardy 已提交
726

727 728 729 730 731 732 733 734 735
static int macvlan_newlink(struct net *src_net, struct net_device *dev,
			   struct nlattr *tb[], struct nlattr *data[])
{
	return macvlan_common_newlink(src_net, dev, tb, data,
				      netif_rx,
				      dev_forward_skb);
}

void macvlan_dellink(struct net_device *dev, struct list_head *head)
P
Patrick McHardy 已提交
736 737 738 739
{
	struct macvlan_dev *vlan = netdev_priv(dev);

	list_del(&vlan->list);
740
	unregister_netdevice_queue(dev, head);
P
Patrick McHardy 已提交
741
}
742
EXPORT_SYMBOL_GPL(macvlan_dellink);
P
Patrick McHardy 已提交
743

744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
static int macvlan_changelink(struct net_device *dev,
		struct nlattr *tb[], struct nlattr *data[])
{
	struct macvlan_dev *vlan = netdev_priv(dev);
	if (data && data[IFLA_MACVLAN_MODE])
		vlan->mode = nla_get_u32(data[IFLA_MACVLAN_MODE]);
	return 0;
}

static size_t macvlan_get_size(const struct net_device *dev)
{
	return nla_total_size(4);
}

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

	NLA_PUT_U32(skb, IFLA_MACVLAN_MODE, vlan->mode);
	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

static const struct nla_policy macvlan_policy[IFLA_MACVLAN_MAX + 1] = {
	[IFLA_MACVLAN_MODE] = { .type = NLA_U32 },
};

774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
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 已提交
790
	.kind		= "macvlan",
H
Herbert Xu 已提交
791
	.setup		= macvlan_setup,
P
Patrick McHardy 已提交
792 793 794 795 796 797 798 799 800 801 802
	.newlink	= macvlan_newlink,
	.dellink	= macvlan_dellink,
};

static int macvlan_device_event(struct notifier_block *unused,
				unsigned long event, void *ptr)
{
	struct net_device *dev = ptr;
	struct macvlan_dev *vlan, *next;
	struct macvlan_port *port;

803
	if (!macvlan_port_exists(dev))
P
Patrick McHardy 已提交
804 805
		return NOTIFY_DONE;

806 807
	port = macvlan_port_get(dev);

P
Patrick McHardy 已提交
808 809 810
	switch (event) {
	case NETDEV_CHANGE:
		list_for_each_entry(vlan, &port->vlans, list)
811 812
			netif_stacked_transfer_operstate(vlan->lowerdev,
							 vlan->dev);
P
Patrick McHardy 已提交
813 814 815 816
		break;
	case NETDEV_FEAT_CHANGE:
		list_for_each_entry(vlan, &port->vlans, list) {
			vlan->dev->features = dev->features & MACVLAN_FEATURES;
817
			vlan->dev->gso_max_size = dev->gso_max_size;
P
Patrick McHardy 已提交
818 819 820 821
			netdev_features_change(vlan->dev);
		}
		break;
	case NETDEV_UNREGISTER:
822 823 824 825
		/* twiddle thumbs on netns device moves */
		if (dev->reg_state != NETREG_UNREGISTERING)
			break;

P
Patrick McHardy 已提交
826
		list_for_each_entry_safe(vlan, next, &port->vlans, list)
827
			vlan->dev->rtnl_link_ops->dellink(vlan->dev, NULL);
P
Patrick McHardy 已提交
828
		break;
829 830 831
	case NETDEV_PRE_TYPE_CHANGE:
		/* Forbid underlaying device to change its type. */
		return NOTIFY_BAD;
P
Patrick McHardy 已提交
832 833 834 835 836 837 838 839 840 841 842 843 844 845
	}
	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);

846
	err = macvlan_link_register(&macvlan_link_ops);
P
Patrick McHardy 已提交
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
	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");