vrf.c 33.7 KB
Newer Older
D
David Ahern 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * vrf.c: device driver to encapsulate a VRF space
 *
 * Copyright (c) 2015 Cumulus Networks. All rights reserved.
 * Copyright (c) 2015 Shrijeet Mukherjee <shm@cumulusnetworks.com>
 * Copyright (c) 2015 David Ahern <dsa@cumulusnetworks.com>
 *
 * Based on dummy, team and ipvlan drivers
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ip.h>
#include <linux/init.h>
#include <linux/moduleparam.h>
#include <linux/netfilter.h>
#include <linux/rtnetlink.h>
#include <net/rtnetlink.h>
#include <linux/u64_stats_sync.h>
#include <linux/hashtable.h>

#include <linux/inetdevice.h>
30
#include <net/arp.h>
D
David Ahern 已提交
31 32
#include <net/ip.h>
#include <net/ip_fib.h>
D
David Ahern 已提交
33
#include <net/ip6_fib.h>
D
David Ahern 已提交
34 35 36
#include <net/ip6_route.h>
#include <net/route.h>
#include <net/addrconf.h>
37
#include <net/l3mdev.h>
38
#include <net/fib_rules.h>
39
#include <net/netns/generic.h>
D
David Ahern 已提交
40 41 42 43

#define DRV_NAME	"vrf"
#define DRV_VERSION	"1.0"

44
#define FIB_RULE_PREF  1000       /* default preference for FIB rules */
45 46

static unsigned int vrf_net_id;
47

D
David Ahern 已提交
48
struct net_vrf {
49 50
	struct rtable __rcu	*rth;
	struct rt6_info	__rcu	*rt6;
D
David Ahern 已提交
51 52 53
#if IS_ENABLED(CONFIG_IPV6)
	struct fib6_table	*fib6_table;
#endif
D
David Ahern 已提交
54 55 56
	u32                     tb_id;
};

D
David Ahern 已提交
57 58 59 60 61 62
struct pcpu_dstats {
	u64			tx_pkts;
	u64			tx_bytes;
	u64			tx_drps;
	u64			rx_pkts;
	u64			rx_bytes;
63
	u64			rx_drps;
D
David Ahern 已提交
64 65 66
	struct u64_stats_sync	syncp;
};

67 68 69 70 71 72 73 74 75 76
static void vrf_rx_stats(struct net_device *dev, int len)
{
	struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);

	u64_stats_update_begin(&dstats->syncp);
	dstats->rx_pkts++;
	dstats->rx_bytes += len;
	u64_stats_update_end(&dstats->syncp);
}

N
Nikolay Aleksandrov 已提交
77 78 79 80 81 82
static void vrf_tx_error(struct net_device *vrf_dev, struct sk_buff *skb)
{
	vrf_dev->stats.tx_errors++;
	kfree_skb(skb);
}

83 84
static void vrf_get_stats64(struct net_device *dev,
			    struct rtnl_link_stats64 *stats)
D
David Ahern 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
{
	int i;

	for_each_possible_cpu(i) {
		const struct pcpu_dstats *dstats;
		u64 tbytes, tpkts, tdrops, rbytes, rpkts;
		unsigned int start;

		dstats = per_cpu_ptr(dev->dstats, i);
		do {
			start = u64_stats_fetch_begin_irq(&dstats->syncp);
			tbytes = dstats->tx_bytes;
			tpkts = dstats->tx_pkts;
			tdrops = dstats->tx_drps;
			rbytes = dstats->rx_bytes;
			rpkts = dstats->rx_pkts;
		} while (u64_stats_fetch_retry_irq(&dstats->syncp, start));
		stats->tx_bytes += tbytes;
		stats->tx_packets += tpkts;
		stats->tx_dropped += tdrops;
		stats->rx_bytes += rbytes;
		stats->rx_packets += rpkts;
	}
}

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
/* by default VRF devices do not have a qdisc and are expected
 * to be created with only a single queue.
 */
static bool qdisc_tx_is_default(const struct net_device *dev)
{
	struct netdev_queue *txq;
	struct Qdisc *qdisc;

	if (dev->num_tx_queues > 1)
		return false;

	txq = netdev_get_tx_queue(dev, 0);
	qdisc = rcu_access_pointer(txq->qdisc);

	return !qdisc->enqueue;
}

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
/* Local traffic destined to local address. Reinsert the packet to rx
 * path, similar to loopback handling.
 */
static int vrf_local_xmit(struct sk_buff *skb, struct net_device *dev,
			  struct dst_entry *dst)
{
	int len = skb->len;

	skb_orphan(skb);

	skb_dst_set(skb, dst);

	/* set pkt_type to avoid skb hitting packet taps twice -
	 * once on Tx and again in Rx processing
	 */
	skb->pkt_type = PACKET_LOOPBACK;

	skb->protocol = eth_type_trans(skb, dev);

	if (likely(netif_rx(skb) == NET_RX_SUCCESS))
		vrf_rx_stats(dev, len);
	else
		this_cpu_inc(dev->dstats->rx_drps);

	return NETDEV_TX_OK;
}

D
David Ahern 已提交
154
#if IS_ENABLED(CONFIG_IPV6)
155 156 157 158 159 160 161 162 163 164 165 166 167 168
static int vrf_ip6_local_out(struct net *net, struct sock *sk,
			     struct sk_buff *skb)
{
	int err;

	err = nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net,
		      sk, skb, NULL, skb_dst(skb)->dev, dst_output);

	if (likely(err == 1))
		err = dst_output(net, sk, skb);

	return err;
}

D
David Ahern 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182
static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
					   struct net_device *dev)
{
	const struct ipv6hdr *iph = ipv6_hdr(skb);
	struct net *net = dev_net(skb->dev);
	struct flowi6 fl6 = {
		/* needed to match OIF rule */
		.flowi6_oif = dev->ifindex,
		.flowi6_iif = LOOPBACK_IFINDEX,
		.daddr = iph->daddr,
		.saddr = iph->saddr,
		.flowlabel = ip6_flowinfo(iph),
		.flowi6_mark = skb->mark,
		.flowi6_proto = iph->nexthdr,
183
		.flowi6_flags = FLOWI_FLAG_SKIP_NH_OIF,
D
David Ahern 已提交
184 185 186 187 188 189 190 191 192 193
	};
	int ret = NET_XMIT_DROP;
	struct dst_entry *dst;
	struct dst_entry *dst_null = &net->ipv6.ip6_null_entry->dst;

	dst = ip6_route_output(net, NULL, &fl6);
	if (dst == dst_null)
		goto err;

	skb_dst_drop(skb);
194 195 196

	/* if dst.dev is loopback or the VRF device again this is locally
	 * originated traffic destined to a local address. Short circuit
197
	 * to Rx path
198
	 */
199 200
	if (dst->dev == dev)
		return vrf_local_xmit(skb, dev, dst);
201

D
David Ahern 已提交
202 203
	skb_dst_set(skb, dst);

204 205 206
	/* strip the ethernet header added for pass through VRF device */
	__skb_pull(skb, skb_network_offset(skb));

207
	ret = vrf_ip6_local_out(net, skb->sk, skb);
D
David Ahern 已提交
208 209 210 211 212 213 214 215 216 217 218
	if (unlikely(net_xmit_eval(ret)))
		dev->stats.tx_errors++;
	else
		ret = NET_XMIT_SUCCESS;

	return ret;
err:
	vrf_tx_error(dev, skb);
	return NET_XMIT_DROP;
}
#else
D
David Ahern 已提交
219 220 221
static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
					   struct net_device *dev)
{
N
Nikolay Aleksandrov 已提交
222 223
	vrf_tx_error(dev, skb);
	return NET_XMIT_DROP;
D
David Ahern 已提交
224
}
D
David Ahern 已提交
225
#endif
D
David Ahern 已提交
226

227 228 229 230 231 232 233 234 235 236 237 238 239 240
/* based on ip_local_out; can't use it b/c the dst is switched pointing to us */
static int vrf_ip_local_out(struct net *net, struct sock *sk,
			    struct sk_buff *skb)
{
	int err;

	err = nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT, net, sk,
		      skb, NULL, skb_dst(skb)->dev, dst_output);
	if (likely(err == 1))
		err = dst_output(net, sk, skb);

	return err;
}

D
David Ahern 已提交
241 242 243 244 245 246 247 248 249 250
static netdev_tx_t vrf_process_v4_outbound(struct sk_buff *skb,
					   struct net_device *vrf_dev)
{
	struct iphdr *ip4h = ip_hdr(skb);
	int ret = NET_XMIT_DROP;
	struct flowi4 fl4 = {
		/* needed to match OIF rule */
		.flowi4_oif = vrf_dev->ifindex,
		.flowi4_iif = LOOPBACK_IFINDEX,
		.flowi4_tos = RT_TOS(ip4h->tos),
251
		.flowi4_flags = FLOWI_FLAG_ANYSRC | FLOWI_FLAG_SKIP_NH_OIF,
252
		.flowi4_proto = ip4h->protocol,
D
David Ahern 已提交
253
		.daddr = ip4h->daddr,
254
		.saddr = ip4h->saddr,
D
David Ahern 已提交
255
	};
256 257 258 259 260 261
	struct net *net = dev_net(vrf_dev);
	struct rtable *rt;

	rt = ip_route_output_flow(net, &fl4, NULL);
	if (IS_ERR(rt))
		goto err;
D
David Ahern 已提交
262

263
	skb_dst_drop(skb);
264 265 266

	/* if dst.dev is loopback or the VRF device again this is locally
	 * originated traffic destined to a local address. Short circuit
267
	 * to Rx path
268
	 */
269 270
	if (rt->dst.dev == vrf_dev)
		return vrf_local_xmit(skb, vrf_dev, &rt->dst);
271

272 273 274 275
	skb_dst_set(skb, &rt->dst);

	/* strip the ethernet header added for pass through VRF device */
	__skb_pull(skb, skb_network_offset(skb));
D
David Ahern 已提交
276 277 278 279 280 281

	if (!ip4h->saddr) {
		ip4h->saddr = inet_select_addr(skb_dst(skb)->dev, 0,
					       RT_SCOPE_LINK);
	}

282
	ret = vrf_ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
D
David Ahern 已提交
283 284 285 286 287 288 289 290
	if (unlikely(net_xmit_eval(ret)))
		vrf_dev->stats.tx_errors++;
	else
		ret = NET_XMIT_SUCCESS;

out:
	return ret;
err:
N
Nikolay Aleksandrov 已提交
291
	vrf_tx_error(vrf_dev, skb);
D
David Ahern 已提交
292 293 294 295 296 297 298 299 300 301 302
	goto out;
}

static netdev_tx_t is_ip_tx_frame(struct sk_buff *skb, struct net_device *dev)
{
	switch (skb->protocol) {
	case htons(ETH_P_IP):
		return vrf_process_v4_outbound(skb, dev);
	case htons(ETH_P_IPV6):
		return vrf_process_v6_outbound(skb, dev);
	default:
N
Nikolay Aleksandrov 已提交
303
		vrf_tx_error(dev, skb);
D
David Ahern 已提交
304 305 306 307 308 309
		return NET_XMIT_DROP;
	}
}

static netdev_tx_t vrf_xmit(struct sk_buff *skb, struct net_device *dev)
{
310
	int len = skb->len;
D
David Ahern 已提交
311 312 313 314 315 316 317
	netdev_tx_t ret = is_ip_tx_frame(skb, dev);

	if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
		struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);

		u64_stats_update_begin(&dstats->syncp);
		dstats->tx_pkts++;
318
		dstats->tx_bytes += len;
D
David Ahern 已提交
319 320 321 322 323 324 325 326
		u64_stats_update_end(&dstats->syncp);
	} else {
		this_cpu_inc(dev->dstats->tx_drps);
	}

	return ret;
}

327 328 329 330 331 332 333
static int vrf_finish_direct(struct net *net, struct sock *sk,
			     struct sk_buff *skb)
{
	struct net_device *vrf_dev = skb->dev;

	if (!list_empty(&vrf_dev->ptype_all) &&
	    likely(skb_headroom(skb) >= ETH_HLEN)) {
334
		struct ethhdr *eth = skb_push(skb, ETH_HLEN);
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349

		ether_addr_copy(eth->h_source, vrf_dev->dev_addr);
		eth_zero_addr(eth->h_dest);
		eth->h_proto = skb->protocol;

		rcu_read_lock_bh();
		dev_queue_xmit_nit(skb, vrf_dev);
		rcu_read_unlock_bh();

		skb_pull(skb, ETH_HLEN);
	}

	return 1;
}

D
David Ahern 已提交
350 351 352 353 354 355 356 357 358 359 360
#if IS_ENABLED(CONFIG_IPV6)
/* modelled after ip6_finish_output2 */
static int vrf_finish_output6(struct net *net, struct sock *sk,
			      struct sk_buff *skb)
{
	struct dst_entry *dst = skb_dst(skb);
	struct net_device *dev = dst->dev;
	struct neighbour *neigh;
	struct in6_addr *nexthop;
	int ret;

361 362
	nf_reset(skb);

D
David Ahern 已提交
363 364 365 366 367 368 369 370 371
	skb->protocol = htons(ETH_P_IPV6);
	skb->dev = dev;

	rcu_read_lock_bh();
	nexthop = rt6_nexthop((struct rt6_info *)dst, &ipv6_hdr(skb)->daddr);
	neigh = __ipv6_neigh_lookup_noref(dst->dev, nexthop);
	if (unlikely(!neigh))
		neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false);
	if (!IS_ERR(neigh)) {
372
		sock_confirm_neigh(skb, neigh);
373
		ret = neigh_output(neigh, skb);
D
David Ahern 已提交
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
		rcu_read_unlock_bh();
		return ret;
	}
	rcu_read_unlock_bh();

	IP6_INC_STATS(dev_net(dst->dev),
		      ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
	kfree_skb(skb);
	return -EINVAL;
}

/* modelled after ip6_output */
static int vrf_output6(struct net *net, struct sock *sk, struct sk_buff *skb)
{
	return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
			    net, sk, skb, NULL, skb_dst(skb)->dev,
			    vrf_finish_output6,
			    !(IP6CB(skb)->flags & IP6SKB_REROUTED));
}

394 395 396 397
/* set dst on skb to send packet to us via dev_xmit path. Allows
 * packet to go through device based features such as qdisc, netfilter
 * hooks and packet sockets with skb->dev set to vrf device.
 */
398 399
static struct sk_buff *vrf_ip6_out_redirect(struct net_device *vrf_dev,
					    struct sk_buff *skb)
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
{
	struct net_vrf *vrf = netdev_priv(vrf_dev);
	struct dst_entry *dst = NULL;
	struct rt6_info *rt6;

	rcu_read_lock();

	rt6 = rcu_dereference(vrf->rt6);
	if (likely(rt6)) {
		dst = &rt6->dst;
		dst_hold(dst);
	}

	rcu_read_unlock();

	if (unlikely(!dst)) {
		vrf_tx_error(vrf_dev, skb);
		return NULL;
	}

	skb_dst_drop(skb);
	skb_dst_set(skb, dst);

	return skb;
}

426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
static int vrf_output6_direct(struct net *net, struct sock *sk,
			      struct sk_buff *skb)
{
	skb->protocol = htons(ETH_P_IPV6);

	return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
			    net, sk, skb, NULL, skb->dev,
			    vrf_finish_direct,
			    !(IPCB(skb)->flags & IPSKB_REROUTED));
}

static struct sk_buff *vrf_ip6_out_direct(struct net_device *vrf_dev,
					  struct sock *sk,
					  struct sk_buff *skb)
{
	struct net *net = dev_net(vrf_dev);
	int err;

	skb->dev = vrf_dev;

	err = nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk,
		      skb, NULL, vrf_dev, vrf_output6_direct);

	if (likely(err == 1))
		err = vrf_output6_direct(net, sk, skb);

	/* reset skb device */
	if (likely(err == 1))
		nf_reset(skb);
	else
		skb = NULL;

	return skb;
}

static struct sk_buff *vrf_ip6_out(struct net_device *vrf_dev,
				   struct sock *sk,
				   struct sk_buff *skb)
{
	/* don't divert link scope packets */
	if (rt6_need_strict(&ipv6_hdr(skb)->daddr))
		return skb;

	if (qdisc_tx_is_default(vrf_dev))
		return vrf_ip6_out_direct(vrf_dev, sk, skb);

	return vrf_ip6_out_redirect(vrf_dev, skb);
}

475
/* holding rtnl */
476
static void vrf_rt6_release(struct net_device *dev, struct net_vrf *vrf)
D
David Ahern 已提交
477
{
478
	struct rt6_info *rt6 = rtnl_dereference(vrf->rt6);
479 480
	struct net *net = dev_net(dev);
	struct dst_entry *dst;
481

482 483
	RCU_INIT_POINTER(vrf->rt6, NULL);
	synchronize_rcu();
484

485 486 487 488 489 490 491 492 493 494
	/* move dev in dst's to loopback so this VRF device can be deleted
	 * - based on dst_ifdown
	 */
	if (rt6) {
		dst = &rt6->dst;
		dev_put(dst->dev);
		dst->dev = net->loopback_dev;
		dev_hold(dst->dev);
		dst_release(dst);
	}
D
David Ahern 已提交
495 496 497 498
}

static int vrf_rt6_create(struct net_device *dev)
{
W
Wei Wang 已提交
499
	int flags = DST_HOST | DST_NOPOLICY | DST_NOXFRM;
D
David Ahern 已提交
500
	struct net_vrf *vrf = netdev_priv(dev);
501
	struct net *net = dev_net(dev);
502
	struct rt6_info *rt6;
D
David Ahern 已提交
503 504
	int rc = -ENOMEM;

505 506 507 508
	/* IPv6 can be CONFIG enabled and then disabled runtime */
	if (!ipv6_mod_enabled())
		return 0;

D
David Ahern 已提交
509 510
	vrf->fib6_table = fib6_new_table(net, vrf->tb_id);
	if (!vrf->fib6_table)
511 512
		goto out;

513 514
	/* create a dst for routing packets out a VRF device */
	rt6 = ip6_dst_alloc(net, dev, flags);
D
David Ahern 已提交
515 516 517
	if (!rt6)
		goto out;

518
	rt6->dst.output	= vrf_output6;
519

520 521
	rcu_assign_pointer(vrf->rt6, rt6);

D
David Ahern 已提交
522 523 524 525 526
	rc = 0;
out:
	return rc;
}
#else
527 528 529 530 531 532 533
static struct sk_buff *vrf_ip6_out(struct net_device *vrf_dev,
				   struct sock *sk,
				   struct sk_buff *skb)
{
	return skb;
}

534
static void vrf_rt6_release(struct net_device *dev, struct net_vrf *vrf)
D
David Ahern 已提交
535 536 537 538 539 540 541 542 543
{
}

static int vrf_rt6_create(struct net_device *dev)
{
	return 0;
}
#endif

544
/* modelled after ip_finish_output2 */
545
static int vrf_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb)
D
David Ahern 已提交
546
{
547 548 549 550 551 552 553 554
	struct dst_entry *dst = skb_dst(skb);
	struct rtable *rt = (struct rtable *)dst;
	struct net_device *dev = dst->dev;
	unsigned int hh_len = LL_RESERVED_SPACE(dev);
	struct neighbour *neigh;
	u32 nexthop;
	int ret = -EINVAL;

555 556
	nf_reset(skb);

557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
	/* Be paranoid, rather than too clever. */
	if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) {
		struct sk_buff *skb2;

		skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev));
		if (!skb2) {
			ret = -ENOMEM;
			goto err;
		}
		if (skb->sk)
			skb_set_owner_w(skb2, skb->sk);

		consume_skb(skb);
		skb = skb2;
	}

	rcu_read_lock_bh();

	nexthop = (__force u32)rt_nexthop(rt, ip_hdr(skb)->daddr);
	neigh = __ipv4_neigh_lookup_noref(dev, nexthop);
	if (unlikely(!neigh))
		neigh = __neigh_create(&arp_tbl, &nexthop, dev, false);
579 580
	if (!IS_ERR(neigh)) {
		sock_confirm_neigh(skb, neigh);
581
		ret = neigh_output(neigh, skb);
582 583
		rcu_read_unlock_bh();
		return ret;
584
	}
585 586 587

	rcu_read_unlock_bh();
err:
588
	vrf_tx_error(skb->dev, skb);
589
	return ret;
D
David Ahern 已提交
590 591
}

E
Eric W. Biederman 已提交
592
static int vrf_output(struct net *net, struct sock *sk, struct sk_buff *skb)
D
David Ahern 已提交
593 594 595
{
	struct net_device *dev = skb_dst(skb)->dev;

596
	IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len);
D
David Ahern 已提交
597 598 599 600

	skb->dev = dev;
	skb->protocol = htons(ETH_P_IP);

601 602
	return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
			    net, sk, skb, NULL, dev,
603
			    vrf_finish_output,
D
David Ahern 已提交
604 605 606
			    !(IPCB(skb)->flags & IPSKB_REROUTED));
}

607 608 609 610
/* set dst on skb to send packet to us via dev_xmit path. Allows
 * packet to go through device based features such as qdisc, netfilter
 * hooks and packet sockets with skb->dev set to vrf device.
 */
611 612
static struct sk_buff *vrf_ip_out_redirect(struct net_device *vrf_dev,
					   struct sk_buff *skb)
613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
{
	struct net_vrf *vrf = netdev_priv(vrf_dev);
	struct dst_entry *dst = NULL;
	struct rtable *rth;

	rcu_read_lock();

	rth = rcu_dereference(vrf->rth);
	if (likely(rth)) {
		dst = &rth->dst;
		dst_hold(dst);
	}

	rcu_read_unlock();

	if (unlikely(!dst)) {
		vrf_tx_error(vrf_dev, skb);
		return NULL;
	}

	skb_dst_drop(skb);
	skb_dst_set(skb, dst);

	return skb;
}

639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677
static int vrf_output_direct(struct net *net, struct sock *sk,
			     struct sk_buff *skb)
{
	skb->protocol = htons(ETH_P_IP);

	return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
			    net, sk, skb, NULL, skb->dev,
			    vrf_finish_direct,
			    !(IPCB(skb)->flags & IPSKB_REROUTED));
}

static struct sk_buff *vrf_ip_out_direct(struct net_device *vrf_dev,
					 struct sock *sk,
					 struct sk_buff *skb)
{
	struct net *net = dev_net(vrf_dev);
	int err;

	skb->dev = vrf_dev;

	err = nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT, net, sk,
		      skb, NULL, vrf_dev, vrf_output_direct);

	if (likely(err == 1))
		err = vrf_output_direct(net, sk, skb);

	/* reset skb device */
	if (likely(err == 1))
		nf_reset(skb);
	else
		skb = NULL;

	return skb;
}

static struct sk_buff *vrf_ip_out(struct net_device *vrf_dev,
				  struct sock *sk,
				  struct sk_buff *skb)
{
678 679 680
	/* don't divert multicast or local broadcast */
	if (ipv4_is_multicast(ip_hdr(skb)->daddr) ||
	    ipv4_is_lbcast(ip_hdr(skb)->daddr))
681 682 683 684 685 686 687 688
		return skb;

	if (qdisc_tx_is_default(vrf_dev))
		return vrf_ip_out_direct(vrf_dev, sk, skb);

	return vrf_ip_out_redirect(vrf_dev, skb);
}

689 690 691 692 693 694 695 696 697
/* called with rcu lock held */
static struct sk_buff *vrf_l3_out(struct net_device *vrf_dev,
				  struct sock *sk,
				  struct sk_buff *skb,
				  u16 proto)
{
	switch (proto) {
	case AF_INET:
		return vrf_ip_out(vrf_dev, sk, skb);
698 699
	case AF_INET6:
		return vrf_ip6_out(vrf_dev, sk, skb);
700 701 702 703 704
	}

	return skb;
}

705
/* holding rtnl */
706
static void vrf_rtable_release(struct net_device *dev, struct net_vrf *vrf)
D
David Ahern 已提交
707
{
708
	struct rtable *rth = rtnl_dereference(vrf->rth);
709 710
	struct net *net = dev_net(dev);
	struct dst_entry *dst;
711

712 713
	RCU_INIT_POINTER(vrf->rth, NULL);
	synchronize_rcu();
D
David Ahern 已提交
714

715 716 717 718 719 720 721 722 723 724
	/* move dev in dst's to loopback so this VRF device can be deleted
	 * - based on dst_ifdown
	 */
	if (rth) {
		dst = &rth->dst;
		dev_put(dst->dev);
		dst->dev = net->loopback_dev;
		dev_hold(dst->dev);
		dst_release(dst);
	}
D
David Ahern 已提交
725 726
}

727
static int vrf_rtable_create(struct net_device *dev)
D
David Ahern 已提交
728
{
D
David Ahern 已提交
729
	struct net_vrf *vrf = netdev_priv(dev);
730
	struct rtable *rth;
D
David Ahern 已提交
731

732
	if (!fib_new_table(dev_net(dev), vrf->tb_id))
733
		return -ENOMEM;
734

735
	/* create a dst for routing packets out through a VRF device */
736
	rth = rt_dst_alloc(dev, 0, RTN_UNICAST, 1, 1, 0);
737 738
	if (!rth)
		return -ENOMEM;
D
David Ahern 已提交
739

740 741 742 743 744
	rth->dst.output	= vrf_output;

	rcu_assign_pointer(vrf->rth, rth);

	return 0;
D
David Ahern 已提交
745 746 747 748 749
}

/**************************** device handling ********************/

/* cycle interface to flush neighbor cache and move routes across tables */
750 751
static void cycle_netdev(struct net_device *dev,
			 struct netlink_ext_ack *extack)
D
David Ahern 已提交
752 753 754 755 756 757 758
{
	unsigned int flags = dev->flags;
	int ret;

	if (!netif_running(dev))
		return;

759
	ret = dev_change_flags(dev, flags & ~IFF_UP, extack);
D
David Ahern 已提交
760
	if (ret >= 0)
761
		ret = dev_change_flags(dev, flags, extack);
D
David Ahern 已提交
762 763 764 765 766 767 768 769

	if (ret < 0) {
		netdev_err(dev,
			   "Failed to cycle device %s; route tables might be wrong!\n",
			   dev->name);
	}
}

770 771
static int do_vrf_add_slave(struct net_device *dev, struct net_device *port_dev,
			    struct netlink_ext_ack *extack)
D
David Ahern 已提交
772
{
773
	int ret;
D
David Ahern 已提交
774

775 776 777
	/* do not allow loopback device to be enslaved to a VRF.
	 * The vrf device acts as the loopback for the vrf.
	 */
778 779 780
	if (port_dev == dev_net(dev)->loopback_dev) {
		NL_SET_ERR_MSG(extack,
			       "Can not enslave loopback device to a VRF");
781
		return -EOPNOTSUPP;
782
	}
783

784
	port_dev->priv_flags |= IFF_L3MDEV_SLAVE;
785
	ret = netdev_master_upper_dev_link(port_dev, dev, NULL, NULL, extack);
D
David Ahern 已提交
786
	if (ret < 0)
787
		goto err;
D
David Ahern 已提交
788

789
	cycle_netdev(port_dev, extack);
D
David Ahern 已提交
790 791

	return 0;
792 793 794 795

err:
	port_dev->priv_flags &= ~IFF_L3MDEV_SLAVE;
	return ret;
D
David Ahern 已提交
796 797
}

D
David Ahern 已提交
798 799
static int vrf_add_slave(struct net_device *dev, struct net_device *port_dev,
			 struct netlink_ext_ack *extack)
D
David Ahern 已提交
800
{
801 802 803 804 805 806 807
	if (netif_is_l3_master(port_dev)) {
		NL_SET_ERR_MSG(extack,
			       "Can not enslave an L3 master device to a VRF");
		return -EINVAL;
	}

	if (netif_is_l3_slave(port_dev))
D
David Ahern 已提交
808 809
		return -EINVAL;

810
	return do_vrf_add_slave(dev, port_dev, extack);
D
David Ahern 已提交
811 812 813 814 815 816
}

/* inverse of do_vrf_add_slave */
static int do_vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
{
	netdev_upper_dev_unlink(port_dev, dev);
D
David Ahern 已提交
817
	port_dev->priv_flags &= ~IFF_L3MDEV_SLAVE;
D
David Ahern 已提交
818

819
	cycle_netdev(port_dev, NULL);
D
David Ahern 已提交
820 821 822 823 824 825 826 827 828 829 830 831 832

	return 0;
}

static int vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
{
	return do_vrf_del_slave(dev, port_dev);
}

static void vrf_dev_uninit(struct net_device *dev)
{
	struct net_vrf *vrf = netdev_priv(dev);

833 834
	vrf_rtable_release(dev, vrf);
	vrf_rt6_release(dev, vrf);
D
David Ahern 已提交
835

836
	free_percpu(dev->dstats);
D
David Ahern 已提交
837 838 839 840 841 842 843 844 845 846 847 848
	dev->dstats = NULL;
}

static int vrf_dev_init(struct net_device *dev)
{
	struct net_vrf *vrf = netdev_priv(dev);

	dev->dstats = netdev_alloc_pcpu_stats(struct pcpu_dstats);
	if (!dev->dstats)
		goto out_nomem;

	/* create the default dst which points back to us */
849
	if (vrf_rtable_create(dev) != 0)
D
David Ahern 已提交
850 851
		goto out_stats;

D
David Ahern 已提交
852 853 854
	if (vrf_rt6_create(dev) != 0)
		goto out_rth;

D
David Ahern 已提交
855 856
	dev->flags = IFF_MASTER | IFF_NOARP;

857 858 859 860 861
	/* MTU is irrelevant for VRF device; set to 64k similar to lo */
	dev->mtu = 64 * 1024;

	/* similarly, oper state is irrelevant; set to up to avoid confusion */
	dev->operstate = IF_OPER_UP;
862
	netdev_lockdep_set_classes(dev);
D
David Ahern 已提交
863 864
	return 0;

D
David Ahern 已提交
865
out_rth:
866
	vrf_rtable_release(dev, vrf);
D
David Ahern 已提交
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
out_stats:
	free_percpu(dev->dstats);
	dev->dstats = NULL;
out_nomem:
	return -ENOMEM;
}

static const struct net_device_ops vrf_netdev_ops = {
	.ndo_init		= vrf_dev_init,
	.ndo_uninit		= vrf_dev_uninit,
	.ndo_start_xmit		= vrf_xmit,
	.ndo_get_stats64	= vrf_get_stats64,
	.ndo_add_slave		= vrf_add_slave,
	.ndo_del_slave		= vrf_del_slave,
};

883 884 885 886 887 888 889
static u32 vrf_fib_table(const struct net_device *dev)
{
	struct net_vrf *vrf = netdev_priv(dev);

	return vrf->tb_id;
}

890 891
static int vrf_rcv_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
{
892
	kfree_skb(skb);
893 894 895 896 897 898 899 900 901
	return 0;
}

static struct sk_buff *vrf_rcv_nfhook(u8 pf, unsigned int hook,
				      struct sk_buff *skb,
				      struct net_device *dev)
{
	struct net *net = dev_net(dev);

902
	if (nf_hook(pf, hook, net, NULL, skb, dev, NULL, vrf_rcv_finish) != 1)
903 904 905 906 907
		skb = NULL;    /* kfree_skb(skb) handled by nf code */

	return skb;
}

908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
#if IS_ENABLED(CONFIG_IPV6)
/* neighbor handling is done with actual device; do not want
 * to flip skb->dev for those ndisc packets. This really fails
 * for multiple next protocols (e.g., NEXTHDR_HOP). But it is
 * a start.
 */
static bool ipv6_ndisc_frame(const struct sk_buff *skb)
{
	const struct ipv6hdr *iph = ipv6_hdr(skb);
	bool rc = false;

	if (iph->nexthdr == NEXTHDR_ICMP) {
		const struct icmp6hdr *icmph;
		struct icmp6hdr _icmph;

		icmph = skb_header_pointer(skb, sizeof(*iph),
					   sizeof(_icmph), &_icmph);
		if (!icmph)
			goto out;

		switch (icmph->icmp6_type) {
		case NDISC_ROUTER_SOLICITATION:
		case NDISC_ROUTER_ADVERTISEMENT:
		case NDISC_NEIGHBOUR_SOLICITATION:
		case NDISC_NEIGHBOUR_ADVERTISEMENT:
		case NDISC_REDIRECT:
			rc = true;
			break;
		}
	}

out:
	return rc;
}

943 944 945 946
static struct rt6_info *vrf_ip6_route_lookup(struct net *net,
					     const struct net_device *dev,
					     struct flowi6 *fl6,
					     int ifindex,
D
David Ahern 已提交
947
					     const struct sk_buff *skb,
948 949 950 951
					     int flags)
{
	struct net_vrf *vrf = netdev_priv(dev);

D
David Ahern 已提交
952
	return ip6_pol_route(net, vrf->fib6_table, ifindex, fl6, skb, flags);
953 954 955 956 957 958 959
}

static void vrf_ip6_input_dst(struct sk_buff *skb, struct net_device *vrf_dev,
			      int ifindex)
{
	const struct ipv6hdr *iph = ipv6_hdr(skb);
	struct flowi6 fl6 = {
A
Arnd Bergmann 已提交
960 961 962
		.flowi6_iif     = ifindex,
		.flowi6_mark    = skb->mark,
		.flowi6_proto   = iph->nexthdr,
963 964 965 966 967 968 969
		.daddr          = iph->daddr,
		.saddr          = iph->saddr,
		.flowlabel      = ip6_flowinfo(iph),
	};
	struct net *net = dev_net(vrf_dev);
	struct rt6_info *rt6;

D
David Ahern 已提交
970
	rt6 = vrf_ip6_route_lookup(net, vrf_dev, &fl6, ifindex, skb,
971 972 973 974 975 976 977 978 979 980
				   RT6_LOOKUP_F_HAS_SADDR | RT6_LOOKUP_F_IFACE);
	if (unlikely(!rt6))
		return;

	if (unlikely(&rt6->dst == &net->ipv6.ip6_null_entry->dst))
		return;

	skb_dst_set(skb, &rt6->dst);
}

981 982 983
static struct sk_buff *vrf_ip6_rcv(struct net_device *vrf_dev,
				   struct sk_buff *skb)
{
984
	int orig_iif = skb->skb_iif;
985 986
	bool need_strict = rt6_need_strict(&ipv6_hdr(skb)->daddr);
	bool is_ndisc = ipv6_ndisc_frame(skb);
987

988 989
	/* loopback, multicast & non-ND link-local traffic; do not push through
	 * packet taps again. Reset pkt_type for upper layers to process skb
990
	 */
991
	if (skb->pkt_type == PACKET_LOOPBACK || (need_strict && !is_ndisc)) {
992 993
		skb->dev = vrf_dev;
		skb->skb_iif = vrf_dev->ifindex;
994
		IP6CB(skb)->flags |= IP6SKB_L3SLAVE;
995 996
		if (skb->pkt_type == PACKET_LOOPBACK)
			skb->pkt_type = PACKET_HOST;
997 998 999
		goto out;
	}

1000 1001
	/* if packet is NDISC then keep the ingress interface */
	if (!is_ndisc) {
D
David Ahern 已提交
1002
		vrf_rx_stats(vrf_dev, skb->len);
1003 1004 1005
		skb->dev = vrf_dev;
		skb->skb_iif = vrf_dev->ifindex;

1006 1007 1008 1009 1010
		if (!list_empty(&vrf_dev->ptype_all)) {
			skb_push(skb, skb->mac_len);
			dev_queue_xmit_nit(skb, vrf_dev);
			skb_pull(skb, skb->mac_len);
		}
1011 1012 1013 1014

		IP6CB(skb)->flags |= IP6SKB_L3SLAVE;
	}

1015 1016 1017
	if (need_strict)
		vrf_ip6_input_dst(skb, vrf_dev, orig_iif);

1018
	skb = vrf_rcv_nfhook(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, vrf_dev);
1019
out:
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
	return skb;
}

#else
static struct sk_buff *vrf_ip6_rcv(struct net_device *vrf_dev,
				   struct sk_buff *skb)
{
	return skb;
}
#endif

static struct sk_buff *vrf_ip_rcv(struct net_device *vrf_dev,
				  struct sk_buff *skb)
{
	skb->dev = vrf_dev;
	skb->skb_iif = vrf_dev->ifindex;
1036
	IPCB(skb)->flags |= IPSKB_L3SLAVE;
1037

1038 1039 1040
	if (ipv4_is_multicast(ip_hdr(skb)->daddr))
		goto out;

1041 1042 1043 1044 1045 1046 1047 1048
	/* loopback traffic; do not push through packet taps again.
	 * Reset pkt_type for upper layers to process skb
	 */
	if (skb->pkt_type == PACKET_LOOPBACK) {
		skb->pkt_type = PACKET_HOST;
		goto out;
	}

D
David Ahern 已提交
1049 1050
	vrf_rx_stats(vrf_dev, skb->len);

1051 1052 1053 1054 1055
	if (!list_empty(&vrf_dev->ptype_all)) {
		skb_push(skb, skb->mac_len);
		dev_queue_xmit_nit(skb, vrf_dev);
		skb_pull(skb, skb->mac_len);
	}
1056

1057
	skb = vrf_rcv_nfhook(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, vrf_dev);
1058
out:
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
	return skb;
}

/* called with rcu lock held */
static struct sk_buff *vrf_l3_rcv(struct net_device *vrf_dev,
				  struct sk_buff *skb,
				  u16 proto)
{
	switch (proto) {
	case AF_INET:
		return vrf_ip_rcv(vrf_dev, skb);
	case AF_INET6:
		return vrf_ip6_rcv(vrf_dev, skb);
	}

	return skb;
}

D
David Ahern 已提交
1077
#if IS_ENABLED(CONFIG_IPV6)
1078 1079 1080 1081 1082
/* send to link-local or multicast address via interface enslaved to
 * VRF device. Force lookup to VRF table without changing flow struct
 */
static struct dst_entry *vrf_link_scope_lookup(const struct net_device *dev,
					      struct flowi6 *fl6)
D
David Ahern 已提交
1083
{
1084
	struct net *net = dev_net(dev);
1085
	int flags = RT6_LOOKUP_F_IFACE;
1086
	struct dst_entry *dst = NULL;
1087
	struct rt6_info *rt;
D
David Ahern 已提交
1088

1089 1090 1091 1092 1093 1094 1095 1096
	/* VRF device does not have a link-local address and
	 * sending packets to link-local or mcast addresses over
	 * a VRF device does not make sense
	 */
	if (fl6->flowi6_oif == dev->ifindex) {
		dst = &net->ipv6.ip6_null_entry->dst;
		dst_hold(dst);
		return dst;
D
David Ahern 已提交
1097 1098
	}

1099 1100 1101
	if (!ipv6_addr_any(&fl6->saddr))
		flags |= RT6_LOOKUP_F_HAS_SADDR;

D
David Ahern 已提交
1102
	rt = vrf_ip6_route_lookup(net, dev, fl6, fl6->flowi6_oif, NULL, flags);
1103 1104
	if (rt)
		dst = &rt->dst;
1105

1106
	return dst;
D
David Ahern 已提交
1107 1108 1109
}
#endif

1110 1111
static const struct l3mdev_ops vrf_l3mdev_ops = {
	.l3mdev_fib_table	= vrf_fib_table,
1112
	.l3mdev_l3_rcv		= vrf_l3_rcv,
1113
	.l3mdev_l3_out		= vrf_l3_out,
D
David Ahern 已提交
1114
#if IS_ENABLED(CONFIG_IPV6)
1115
	.l3mdev_link_scope_lookup = vrf_link_scope_lookup,
D
David Ahern 已提交
1116
#endif
1117 1118
};

D
David Ahern 已提交
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
static void vrf_get_drvinfo(struct net_device *dev,
			    struct ethtool_drvinfo *info)
{
	strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
	strlcpy(info->version, DRV_VERSION, sizeof(info->version));
}

static const struct ethtool_ops vrf_ethtool_ops = {
	.get_drvinfo	= vrf_get_drvinfo,
};

1130 1131 1132 1133 1134 1135 1136
static inline size_t vrf_fib_rule_nl_size(void)
{
	size_t sz;

	sz  = NLMSG_ALIGN(sizeof(struct fib_rule_hdr));
	sz += nla_total_size(sizeof(u8));	/* FRA_L3MDEV */
	sz += nla_total_size(sizeof(u32));	/* FRA_PRIORITY */
1137
	sz += nla_total_size(sizeof(u8));       /* FRA_PROTOCOL */
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148

	return sz;
}

static int vrf_fib_rule(const struct net_device *dev, __u8 family, bool add_it)
{
	struct fib_rule_hdr *frh;
	struct nlmsghdr *nlh;
	struct sk_buff *skb;
	int err;

1149 1150 1151
	if (family == AF_INET6 && !ipv6_mod_enabled())
		return 0;

1152 1153 1154 1155 1156 1157 1158 1159 1160
	skb = nlmsg_new(vrf_fib_rule_nl_size(), GFP_KERNEL);
	if (!skb)
		return -ENOMEM;

	nlh = nlmsg_put(skb, 0, 0, 0, sizeof(*frh), 0);
	if (!nlh)
		goto nla_put_failure;

	/* rule only needs to appear once */
1161
	nlh->nlmsg_flags |= NLM_F_EXCL;
1162 1163 1164 1165 1166

	frh = nlmsg_data(nlh);
	memset(frh, 0, sizeof(*frh));
	frh->family = family;
	frh->action = FR_ACT_TO_TBL;
1167 1168 1169

	if (nla_put_u8(skb, FRA_PROTOCOL, RTPROT_KERNEL))
		goto nla_put_failure;
1170

1171
	if (nla_put_u8(skb, FRA_L3MDEV, 1))
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
		goto nla_put_failure;

	if (nla_put_u32(skb, FRA_PRIORITY, FIB_RULE_PREF))
		goto nla_put_failure;

	nlmsg_end(skb, nlh);

	/* fib_nl_{new,del}rule handling looks for net from skb->sk */
	skb->sk = dev_net(dev)->rtnl;
	if (add_it) {
1182
		err = fib_nl_newrule(skb, nlh, NULL);
1183 1184 1185
		if (err == -EEXIST)
			err = 0;
	} else {
1186
		err = fib_nl_delrule(skb, nlh, NULL);
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
		if (err == -ENOENT)
			err = 0;
	}
	nlmsg_free(skb);

	return err;

nla_put_failure:
	nlmsg_free(skb);

	return -EMSGSIZE;
}

static int vrf_add_fib_rules(const struct net_device *dev)
{
	int err;

	err = vrf_fib_rule(dev, AF_INET,  true);
	if (err < 0)
		goto out_err;

	err = vrf_fib_rule(dev, AF_INET6, true);
	if (err < 0)
		goto ipv6_err;

1212 1213 1214 1215 1216 1217
#if IS_ENABLED(CONFIG_IP_MROUTE_MULTIPLE_TABLES)
	err = vrf_fib_rule(dev, RTNL_FAMILY_IPMR, true);
	if (err < 0)
		goto ipmr_err;
#endif

1218 1219 1220 1221 1222 1223
#if IS_ENABLED(CONFIG_IPV6_MROUTE_MULTIPLE_TABLES)
	err = vrf_fib_rule(dev, RTNL_FAMILY_IP6MR, true);
	if (err < 0)
		goto ip6mr_err;
#endif

1224 1225
	return 0;

1226 1227 1228 1229 1230
#if IS_ENABLED(CONFIG_IPV6_MROUTE_MULTIPLE_TABLES)
ip6mr_err:
	vrf_fib_rule(dev, RTNL_FAMILY_IPMR,  false);
#endif

1231 1232 1233 1234 1235
#if IS_ENABLED(CONFIG_IP_MROUTE_MULTIPLE_TABLES)
ipmr_err:
	vrf_fib_rule(dev, AF_INET6,  false);
#endif

1236 1237 1238 1239 1240 1241 1242 1243
ipv6_err:
	vrf_fib_rule(dev, AF_INET,  false);

out_err:
	netdev_err(dev, "Failed to add FIB rules.\n");
	return err;
}

D
David Ahern 已提交
1244 1245 1246 1247 1248 1249
static void vrf_setup(struct net_device *dev)
{
	ether_setup(dev);

	/* Initialize the device structure. */
	dev->netdev_ops = &vrf_netdev_ops;
1250
	dev->l3mdev_ops = &vrf_l3mdev_ops;
D
David Ahern 已提交
1251
	dev->ethtool_ops = &vrf_ethtool_ops;
1252
	dev->needs_free_netdev = true;
D
David Ahern 已提交
1253 1254 1255 1256 1257 1258 1259 1260 1261

	/* Fill in device structure with ethernet-generic values. */
	eth_hw_addr_random(dev);

	/* don't acquire vrf device's netif_tx_lock when transmitting */
	dev->features |= NETIF_F_LLTX;

	/* don't allow vrf devices to change network namespaces. */
	dev->features |= NETIF_F_NETNS_LOCAL;
1262 1263 1264 1265 1266 1267

	/* does not make sense for a VLAN to be added to a vrf device */
	dev->features   |= NETIF_F_VLAN_CHALLENGED;

	/* enable offload features */
	dev->features   |= NETIF_F_GSO_SOFTWARE;
1268
	dev->features   |= NETIF_F_RXCSUM | NETIF_F_HW_CSUM | NETIF_F_SCTP_CRC;
1269 1270 1271 1272 1273 1274 1275
	dev->features   |= NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA;

	dev->hw_features = dev->features;
	dev->hw_enc_features = dev->features;

	/* default to no qdisc; user can add if desired */
	dev->priv_flags |= IFF_NO_QUEUE;
1276
	dev->priv_flags |= IFF_NO_RX_HANDLER;
1277

1278 1279 1280 1281 1282 1283
	/* VRF devices do not care about MTU, but if the MTU is set
	 * too low then the ipv4 and ipv6 protocols are disabled
	 * which breaks networking.
	 */
	dev->min_mtu = IPV6_MIN_MTU;
	dev->max_mtu = ETH_MAX_MTU;
D
David Ahern 已提交
1284 1285
}

1286 1287
static int vrf_validate(struct nlattr *tb[], struct nlattr *data[],
			struct netlink_ext_ack *extack)
D
David Ahern 已提交
1288 1289
{
	if (tb[IFLA_ADDRESS]) {
1290 1291
		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
			NL_SET_ERR_MSG(extack, "Invalid hardware address");
D
David Ahern 已提交
1292
			return -EINVAL;
1293 1294 1295
		}
		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
			NL_SET_ERR_MSG(extack, "Invalid hardware address");
D
David Ahern 已提交
1296
			return -EADDRNOTAVAIL;
1297
		}
D
David Ahern 已提交
1298 1299 1300 1301 1302 1303
	}
	return 0;
}

static void vrf_dellink(struct net_device *dev, struct list_head *head)
{
1304 1305 1306 1307 1308 1309
	struct net_device *port_dev;
	struct list_head *iter;

	netdev_for_each_lower_dev(dev, port_dev, iter)
		vrf_del_slave(dev, port_dev);

D
David Ahern 已提交
1310 1311 1312 1313
	unregister_netdevice_queue(dev, head);
}

static int vrf_newlink(struct net *src_net, struct net_device *dev,
1314 1315
		       struct nlattr *tb[], struct nlattr *data[],
		       struct netlink_ext_ack *extack)
D
David Ahern 已提交
1316 1317
{
	struct net_vrf *vrf = netdev_priv(dev);
1318 1319
	bool *add_fib_rules;
	struct net *net;
1320
	int err;
D
David Ahern 已提交
1321

1322 1323
	if (!data || !data[IFLA_VRF_TABLE]) {
		NL_SET_ERR_MSG(extack, "VRF table id is missing");
D
David Ahern 已提交
1324
		return -EINVAL;
1325
	}
D
David Ahern 已提交
1326 1327

	vrf->tb_id = nla_get_u32(data[IFLA_VRF_TABLE]);
1328 1329 1330
	if (vrf->tb_id == RT_TABLE_UNSPEC) {
		NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VRF_TABLE],
				    "Invalid VRF table id");
D
David Ahern 已提交
1331
		return -EINVAL;
1332
	}
D
David Ahern 已提交
1333

1334
	dev->priv_flags |= IFF_L3MDEV_MASTER;
D
David Ahern 已提交
1335

1336 1337 1338 1339
	err = register_netdevice(dev);
	if (err)
		goto out;

1340 1341 1342
	net = dev_net(dev);
	add_fib_rules = net_generic(net, vrf_net_id);
	if (*add_fib_rules) {
1343 1344 1345 1346 1347
		err = vrf_add_fib_rules(dev);
		if (err) {
			unregister_netdevice(dev);
			goto out;
		}
1348
		*add_fib_rules = false;
1349 1350 1351 1352
	}

out:
	return err;
D
David Ahern 已提交
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
}

static size_t vrf_nl_getsize(const struct net_device *dev)
{
	return nla_total_size(sizeof(u32));  /* IFLA_VRF_TABLE */
}

static int vrf_fillinfo(struct sk_buff *skb,
			const struct net_device *dev)
{
	struct net_vrf *vrf = netdev_priv(dev);

	return nla_put_u32(skb, IFLA_VRF_TABLE, vrf->tb_id);
}

1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
static size_t vrf_get_slave_size(const struct net_device *bond_dev,
				 const struct net_device *slave_dev)
{
	return nla_total_size(sizeof(u32));  /* IFLA_VRF_PORT_TABLE */
}

static int vrf_fill_slave_info(struct sk_buff *skb,
			       const struct net_device *vrf_dev,
			       const struct net_device *slave_dev)
{
	struct net_vrf *vrf = netdev_priv(vrf_dev);

	if (nla_put_u32(skb, IFLA_VRF_PORT_TABLE, vrf->tb_id))
		return -EMSGSIZE;

	return 0;
}

D
David Ahern 已提交
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398
static const struct nla_policy vrf_nl_policy[IFLA_VRF_MAX + 1] = {
	[IFLA_VRF_TABLE] = { .type = NLA_U32 },
};

static struct rtnl_link_ops vrf_link_ops __read_mostly = {
	.kind		= DRV_NAME,
	.priv_size	= sizeof(struct net_vrf),

	.get_size	= vrf_nl_getsize,
	.policy		= vrf_nl_policy,
	.validate	= vrf_validate,
	.fill_info	= vrf_fillinfo,

1399 1400 1401
	.get_slave_size  = vrf_get_slave_size,
	.fill_slave_info = vrf_fill_slave_info,

D
David Ahern 已提交
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
	.newlink	= vrf_newlink,
	.dellink	= vrf_dellink,
	.setup		= vrf_setup,
	.maxtype	= IFLA_VRF_MAX,
};

static int vrf_device_event(struct notifier_block *unused,
			    unsigned long event, void *ptr)
{
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);

	/* only care about unregister events to drop slave references */
	if (event == NETDEV_UNREGISTER) {
		struct net_device *vrf_dev;

D
David Ahern 已提交
1417
		if (!netif_is_l3_slave(dev))
D
David Ahern 已提交
1418 1419
			goto out;

1420 1421
		vrf_dev = netdev_master_upper_dev_get(dev);
		vrf_del_slave(vrf_dev, dev);
D
David Ahern 已提交
1422 1423 1424 1425 1426 1427 1428 1429 1430
	}
out:
	return NOTIFY_DONE;
}

static struct notifier_block vrf_notifier_block __read_mostly = {
	.notifier_call = vrf_device_event,
};

1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
/* Initialize per network namespace state */
static int __net_init vrf_netns_init(struct net *net)
{
	bool *add_fib_rules = net_generic(net, vrf_net_id);

	*add_fib_rules = true;

	return 0;
}

static struct pernet_operations vrf_net_ops __net_initdata = {
	.init = vrf_netns_init,
	.id   = &vrf_net_id,
	.size = sizeof(bool),
};

D
David Ahern 已提交
1447 1448 1449 1450 1451 1452
static int __init vrf_init_module(void)
{
	int rc;

	register_netdevice_notifier(&vrf_notifier_block);

1453
	rc = register_pernet_subsys(&vrf_net_ops);
D
David Ahern 已提交
1454 1455 1456
	if (rc < 0)
		goto error;

1457 1458 1459 1460 1461 1462
	rc = rtnl_link_register(&vrf_link_ops);
	if (rc < 0) {
		unregister_pernet_subsys(&vrf_net_ops);
		goto error;
	}

D
David Ahern 已提交
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475
	return 0;

error:
	unregister_netdevice_notifier(&vrf_notifier_block);
	return rc;
}

module_init(vrf_init_module);
MODULE_AUTHOR("Shrijeet Mukherjee, David Ahern");
MODULE_DESCRIPTION("Device driver to instantiate VRF domains");
MODULE_LICENSE("GPL");
MODULE_ALIAS_RTNL_LINK(DRV_NAME);
MODULE_VERSION(DRV_VERSION);