blob: 2c40cced3c86524c27a57a360b8095983734d143 [file] [log] [blame]
David Ahern193125d2015-08-13 14:59:10 -06001/*
2 * vrf.c: device driver to encapsulate a VRF space
3 *
4 * Copyright (c) 2015 Cumulus Networks. All rights reserved.
5 * Copyright (c) 2015 Shrijeet Mukherjee <shm@cumulusnetworks.com>
6 * Copyright (c) 2015 David Ahern <dsa@cumulusnetworks.com>
7 *
8 * Based on dummy, team and ipvlan drivers
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 */
15
16#include <linux/module.h>
17#include <linux/kernel.h>
18#include <linux/netdevice.h>
19#include <linux/etherdevice.h>
20#include <linux/ip.h>
21#include <linux/init.h>
22#include <linux/moduleparam.h>
23#include <linux/netfilter.h>
24#include <linux/rtnetlink.h>
25#include <net/rtnetlink.h>
26#include <linux/u64_stats_sync.h>
27#include <linux/hashtable.h>
28
29#include <linux/inetdevice.h>
David Ahern8f583362015-08-27 10:10:50 -070030#include <net/arp.h>
David Ahern193125d2015-08-13 14:59:10 -060031#include <net/ip.h>
32#include <net/ip_fib.h>
David Ahern35402e32015-10-12 11:47:09 -070033#include <net/ip6_fib.h>
David Ahern193125d2015-08-13 14:59:10 -060034#include <net/ip6_route.h>
David Ahern193125d2015-08-13 14:59:10 -060035#include <net/route.h>
36#include <net/addrconf.h>
David Ahernee15ee52015-09-29 20:07:12 -070037#include <net/l3mdev.h>
David Ahern1aa6c4f2016-06-08 10:55:40 -070038#include <net/fib_rules.h>
David Ahern193125d2015-08-13 14:59:10 -060039
40#define DRV_NAME "vrf"
41#define DRV_VERSION "1.0"
42
David Ahern1aa6c4f2016-06-08 10:55:40 -070043#define FIB_RULE_PREF 1000 /* default preference for FIB rules */
44static bool add_fib_rules = true;
45
David Ahernec539512015-09-29 20:07:17 -070046struct net_vrf {
David Ahernb0e95cc2016-05-13 12:23:45 -070047 struct rtable __rcu *rth;
David Ahernafe80a42016-06-06 20:50:39 -070048 struct rtable __rcu *rth_local;
David Ahernb0e95cc2016-05-13 12:23:45 -070049 struct rt6_info __rcu *rt6;
David Ahernb4869aa2016-06-06 20:50:40 -070050 struct rt6_info __rcu *rt6_local;
David Ahernec539512015-09-29 20:07:17 -070051 u32 tb_id;
52};
53
David Ahern193125d2015-08-13 14:59:10 -060054struct pcpu_dstats {
55 u64 tx_pkts;
56 u64 tx_bytes;
57 u64 tx_drps;
58 u64 rx_pkts;
59 u64 rx_bytes;
David Ahernafe80a42016-06-06 20:50:39 -070060 u64 rx_drps;
David Ahern193125d2015-08-13 14:59:10 -060061 struct u64_stats_sync syncp;
62};
63
David Ahernafe80a42016-06-06 20:50:39 -070064static void vrf_rx_stats(struct net_device *dev, int len)
65{
66 struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
67
68 u64_stats_update_begin(&dstats->syncp);
69 dstats->rx_pkts++;
70 dstats->rx_bytes += len;
71 u64_stats_update_end(&dstats->syncp);
72}
73
Nikolay Aleksandrov57b8efa2015-08-19 06:12:29 +030074static void vrf_tx_error(struct net_device *vrf_dev, struct sk_buff *skb)
75{
76 vrf_dev->stats.tx_errors++;
77 kfree_skb(skb);
78}
79
stephen hemmingerbc1f4472017-01-06 19:12:52 -080080static void vrf_get_stats64(struct net_device *dev,
81 struct rtnl_link_stats64 *stats)
David Ahern193125d2015-08-13 14:59:10 -060082{
83 int i;
84
85 for_each_possible_cpu(i) {
86 const struct pcpu_dstats *dstats;
87 u64 tbytes, tpkts, tdrops, rbytes, rpkts;
88 unsigned int start;
89
90 dstats = per_cpu_ptr(dev->dstats, i);
91 do {
92 start = u64_stats_fetch_begin_irq(&dstats->syncp);
93 tbytes = dstats->tx_bytes;
94 tpkts = dstats->tx_pkts;
95 tdrops = dstats->tx_drps;
96 rbytes = dstats->rx_bytes;
97 rpkts = dstats->rx_pkts;
98 } while (u64_stats_fetch_retry_irq(&dstats->syncp, start));
99 stats->tx_bytes += tbytes;
100 stats->tx_packets += tpkts;
101 stats->tx_dropped += tdrops;
102 stats->rx_bytes += rbytes;
103 stats->rx_packets += rpkts;
104 }
David Ahern193125d2015-08-13 14:59:10 -0600105}
106
David Aherndcdd43c2017-03-20 11:19:44 -0700107/* by default VRF devices do not have a qdisc and are expected
108 * to be created with only a single queue.
109 */
110static bool qdisc_tx_is_default(const struct net_device *dev)
111{
112 struct netdev_queue *txq;
113 struct Qdisc *qdisc;
114
115 if (dev->num_tx_queues > 1)
116 return false;
117
118 txq = netdev_get_tx_queue(dev, 0);
119 qdisc = rcu_access_pointer(txq->qdisc);
120
121 return !qdisc->enqueue;
122}
123
David Ahernafe80a42016-06-06 20:50:39 -0700124/* Local traffic destined to local address. Reinsert the packet to rx
125 * path, similar to loopback handling.
126 */
127static int vrf_local_xmit(struct sk_buff *skb, struct net_device *dev,
128 struct dst_entry *dst)
129{
130 int len = skb->len;
131
132 skb_orphan(skb);
133
134 skb_dst_set(skb, dst);
135 skb_dst_force(skb);
136
137 /* set pkt_type to avoid skb hitting packet taps twice -
138 * once on Tx and again in Rx processing
139 */
140 skb->pkt_type = PACKET_LOOPBACK;
141
142 skb->protocol = eth_type_trans(skb, dev);
143
144 if (likely(netif_rx(skb) == NET_RX_SUCCESS))
145 vrf_rx_stats(dev, len);
146 else
147 this_cpu_inc(dev->dstats->rx_drps);
148
149 return NETDEV_TX_OK;
150}
151
David Ahern35402e32015-10-12 11:47:09 -0700152#if IS_ENABLED(CONFIG_IPV6)
David Ahern4c1feac2016-09-10 12:09:56 -0700153static int vrf_ip6_local_out(struct net *net, struct sock *sk,
154 struct sk_buff *skb)
155{
156 int err;
157
158 err = nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net,
159 sk, skb, NULL, skb_dst(skb)->dev, dst_output);
160
161 if (likely(err == 1))
162 err = dst_output(net, sk, skb);
163
164 return err;
165}
166
David Ahern35402e32015-10-12 11:47:09 -0700167static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
168 struct net_device *dev)
169{
170 const struct ipv6hdr *iph = ipv6_hdr(skb);
171 struct net *net = dev_net(skb->dev);
172 struct flowi6 fl6 = {
173 /* needed to match OIF rule */
174 .flowi6_oif = dev->ifindex,
175 .flowi6_iif = LOOPBACK_IFINDEX,
176 .daddr = iph->daddr,
177 .saddr = iph->saddr,
178 .flowlabel = ip6_flowinfo(iph),
179 .flowi6_mark = skb->mark,
180 .flowi6_proto = iph->nexthdr,
David Ahernc71ad3d2016-09-10 12:10:02 -0700181 .flowi6_flags = FLOWI_FLAG_SKIP_NH_OIF,
David Ahern35402e32015-10-12 11:47:09 -0700182 };
183 int ret = NET_XMIT_DROP;
184 struct dst_entry *dst;
185 struct dst_entry *dst_null = &net->ipv6.ip6_null_entry->dst;
186
187 dst = ip6_route_output(net, NULL, &fl6);
188 if (dst == dst_null)
189 goto err;
190
191 skb_dst_drop(skb);
David Ahernb4869aa2016-06-06 20:50:40 -0700192
193 /* if dst.dev is loopback or the VRF device again this is locally
194 * originated traffic destined to a local address. Short circuit
195 * to Rx path using our local dst
196 */
197 if (dst->dev == net->loopback_dev || dst->dev == dev) {
198 struct net_vrf *vrf = netdev_priv(dev);
199 struct rt6_info *rt6_local;
200
201 /* release looked up dst and use cached local dst */
202 dst_release(dst);
203
204 rcu_read_lock();
205
206 rt6_local = rcu_dereference(vrf->rt6_local);
207 if (unlikely(!rt6_local)) {
208 rcu_read_unlock();
209 goto err;
210 }
211
212 /* Ordering issue: cached local dst is created on newlink
213 * before the IPv6 initialization. Using the local dst
214 * requires rt6i_idev to be set so make sure it is.
215 */
216 if (unlikely(!rt6_local->rt6i_idev)) {
217 rt6_local->rt6i_idev = in6_dev_get(dev);
218 if (!rt6_local->rt6i_idev) {
219 rcu_read_unlock();
220 goto err;
221 }
222 }
223
224 dst = &rt6_local->dst;
225 dst_hold(dst);
226
227 rcu_read_unlock();
228
229 return vrf_local_xmit(skb, dev, &rt6_local->dst);
230 }
231
David Ahern35402e32015-10-12 11:47:09 -0700232 skb_dst_set(skb, dst);
233
David Ahern911a66f2016-06-06 20:50:38 -0700234 /* strip the ethernet header added for pass through VRF device */
235 __skb_pull(skb, skb_network_offset(skb));
236
David Ahern4c1feac2016-09-10 12:09:56 -0700237 ret = vrf_ip6_local_out(net, skb->sk, skb);
David Ahern35402e32015-10-12 11:47:09 -0700238 if (unlikely(net_xmit_eval(ret)))
239 dev->stats.tx_errors++;
240 else
241 ret = NET_XMIT_SUCCESS;
242
243 return ret;
244err:
245 vrf_tx_error(dev, skb);
246 return NET_XMIT_DROP;
247}
248#else
David Ahern193125d2015-08-13 14:59:10 -0600249static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
250 struct net_device *dev)
251{
Nikolay Aleksandrov57b8efa2015-08-19 06:12:29 +0300252 vrf_tx_error(dev, skb);
253 return NET_XMIT_DROP;
David Ahern193125d2015-08-13 14:59:10 -0600254}
David Ahern35402e32015-10-12 11:47:09 -0700255#endif
David Ahern193125d2015-08-13 14:59:10 -0600256
David Ahernebfc1022016-09-10 12:09:55 -0700257/* based on ip_local_out; can't use it b/c the dst is switched pointing to us */
258static int vrf_ip_local_out(struct net *net, struct sock *sk,
259 struct sk_buff *skb)
260{
261 int err;
262
263 err = nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT, net, sk,
264 skb, NULL, skb_dst(skb)->dev, dst_output);
265 if (likely(err == 1))
266 err = dst_output(net, sk, skb);
267
268 return err;
269}
270
David Ahern193125d2015-08-13 14:59:10 -0600271static netdev_tx_t vrf_process_v4_outbound(struct sk_buff *skb,
272 struct net_device *vrf_dev)
273{
274 struct iphdr *ip4h = ip_hdr(skb);
275 int ret = NET_XMIT_DROP;
276 struct flowi4 fl4 = {
277 /* needed to match OIF rule */
278 .flowi4_oif = vrf_dev->ifindex,
279 .flowi4_iif = LOOPBACK_IFINDEX,
280 .flowi4_tos = RT_TOS(ip4h->tos),
David Ahernc71ad3d2016-09-10 12:10:02 -0700281 .flowi4_flags = FLOWI_FLAG_ANYSRC | FLOWI_FLAG_SKIP_NH_OIF,
David Ahern7a18c5b2017-01-10 14:37:35 -0800282 .flowi4_proto = ip4h->protocol,
David Ahern193125d2015-08-13 14:59:10 -0600283 .daddr = ip4h->daddr,
David Ahern7a18c5b2017-01-10 14:37:35 -0800284 .saddr = ip4h->saddr,
David Ahern193125d2015-08-13 14:59:10 -0600285 };
David Ahern911a66f2016-06-06 20:50:38 -0700286 struct net *net = dev_net(vrf_dev);
287 struct rtable *rt;
David Ahern193125d2015-08-13 14:59:10 -0600288
David Ahern911a66f2016-06-06 20:50:38 -0700289 rt = ip_route_output_flow(net, &fl4, NULL);
290 if (IS_ERR(rt))
David Ahern193125d2015-08-13 14:59:10 -0600291 goto err;
292
David Ahern911a66f2016-06-06 20:50:38 -0700293 skb_dst_drop(skb);
David Ahernafe80a42016-06-06 20:50:39 -0700294
295 /* if dst.dev is loopback or the VRF device again this is locally
296 * originated traffic destined to a local address. Short circuit
297 * to Rx path using our local dst
298 */
299 if (rt->dst.dev == net->loopback_dev || rt->dst.dev == vrf_dev) {
300 struct net_vrf *vrf = netdev_priv(vrf_dev);
301 struct rtable *rth_local;
302 struct dst_entry *dst = NULL;
303
304 ip_rt_put(rt);
305
306 rcu_read_lock();
307
308 rth_local = rcu_dereference(vrf->rth_local);
309 if (likely(rth_local)) {
310 dst = &rth_local->dst;
311 dst_hold(dst);
312 }
313
314 rcu_read_unlock();
315
316 if (unlikely(!dst))
317 goto err;
318
319 return vrf_local_xmit(skb, vrf_dev, dst);
320 }
321
David Ahern911a66f2016-06-06 20:50:38 -0700322 skb_dst_set(skb, &rt->dst);
323
324 /* strip the ethernet header added for pass through VRF device */
325 __skb_pull(skb, skb_network_offset(skb));
326
David Ahern193125d2015-08-13 14:59:10 -0600327 if (!ip4h->saddr) {
328 ip4h->saddr = inet_select_addr(skb_dst(skb)->dev, 0,
329 RT_SCOPE_LINK);
330 }
331
David Ahernebfc1022016-09-10 12:09:55 -0700332 ret = vrf_ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
David Ahern193125d2015-08-13 14:59:10 -0600333 if (unlikely(net_xmit_eval(ret)))
334 vrf_dev->stats.tx_errors++;
335 else
336 ret = NET_XMIT_SUCCESS;
337
338out:
339 return ret;
340err:
Nikolay Aleksandrov57b8efa2015-08-19 06:12:29 +0300341 vrf_tx_error(vrf_dev, skb);
David Ahern193125d2015-08-13 14:59:10 -0600342 goto out;
343}
344
345static netdev_tx_t is_ip_tx_frame(struct sk_buff *skb, struct net_device *dev)
346{
347 switch (skb->protocol) {
348 case htons(ETH_P_IP):
349 return vrf_process_v4_outbound(skb, dev);
350 case htons(ETH_P_IPV6):
351 return vrf_process_v6_outbound(skb, dev);
352 default:
Nikolay Aleksandrov57b8efa2015-08-19 06:12:29 +0300353 vrf_tx_error(dev, skb);
David Ahern193125d2015-08-13 14:59:10 -0600354 return NET_XMIT_DROP;
355 }
356}
357
358static netdev_tx_t vrf_xmit(struct sk_buff *skb, struct net_device *dev)
359{
David Ahernf7887d42017-03-06 08:53:04 -0800360 int len = skb->len;
David Ahern193125d2015-08-13 14:59:10 -0600361 netdev_tx_t ret = is_ip_tx_frame(skb, dev);
362
363 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
364 struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
365
366 u64_stats_update_begin(&dstats->syncp);
367 dstats->tx_pkts++;
David Ahernf7887d42017-03-06 08:53:04 -0800368 dstats->tx_bytes += len;
David Ahern193125d2015-08-13 14:59:10 -0600369 u64_stats_update_end(&dstats->syncp);
370 } else {
371 this_cpu_inc(dev->dstats->tx_drps);
372 }
373
374 return ret;
375}
376
David Aherndcdd43c2017-03-20 11:19:44 -0700377static int vrf_finish_direct(struct net *net, struct sock *sk,
378 struct sk_buff *skb)
379{
380 struct net_device *vrf_dev = skb->dev;
381
382 if (!list_empty(&vrf_dev->ptype_all) &&
383 likely(skb_headroom(skb) >= ETH_HLEN)) {
384 struct ethhdr *eth = (struct ethhdr *)skb_push(skb, ETH_HLEN);
385
386 ether_addr_copy(eth->h_source, vrf_dev->dev_addr);
387 eth_zero_addr(eth->h_dest);
388 eth->h_proto = skb->protocol;
389
390 rcu_read_lock_bh();
391 dev_queue_xmit_nit(skb, vrf_dev);
392 rcu_read_unlock_bh();
393
394 skb_pull(skb, ETH_HLEN);
395 }
396
397 return 1;
398}
399
David Ahern35402e32015-10-12 11:47:09 -0700400#if IS_ENABLED(CONFIG_IPV6)
David Ahern35402e32015-10-12 11:47:09 -0700401/* modelled after ip6_finish_output2 */
402static int vrf_finish_output6(struct net *net, struct sock *sk,
403 struct sk_buff *skb)
404{
405 struct dst_entry *dst = skb_dst(skb);
406 struct net_device *dev = dst->dev;
407 struct neighbour *neigh;
408 struct in6_addr *nexthop;
409 int ret;
410
David Aherneb63ecc2016-12-14 14:31:11 -0800411 nf_reset(skb);
412
David Ahern35402e32015-10-12 11:47:09 -0700413 skb->protocol = htons(ETH_P_IPV6);
414 skb->dev = dev;
415
416 rcu_read_lock_bh();
417 nexthop = rt6_nexthop((struct rt6_info *)dst, &ipv6_hdr(skb)->daddr);
418 neigh = __ipv6_neigh_lookup_noref(dst->dev, nexthop);
419 if (unlikely(!neigh))
420 neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false);
421 if (!IS_ERR(neigh)) {
Julian Anastasov4ff06202017-02-06 23:14:12 +0200422 sock_confirm_neigh(skb, neigh);
Julian Anastasovc16ec1852017-02-11 13:49:20 +0200423 ret = neigh_output(neigh, skb);
David Ahern35402e32015-10-12 11:47:09 -0700424 rcu_read_unlock_bh();
425 return ret;
426 }
427 rcu_read_unlock_bh();
428
429 IP6_INC_STATS(dev_net(dst->dev),
430 ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
431 kfree_skb(skb);
432 return -EINVAL;
433}
434
435/* modelled after ip6_output */
436static int vrf_output6(struct net *net, struct sock *sk, struct sk_buff *skb)
437{
438 return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
439 net, sk, skb, NULL, skb_dst(skb)->dev,
440 vrf_finish_output6,
441 !(IP6CB(skb)->flags & IP6SKB_REROUTED));
442}
443
David Ahern4c1feac2016-09-10 12:09:56 -0700444/* set dst on skb to send packet to us via dev_xmit path. Allows
445 * packet to go through device based features such as qdisc, netfilter
446 * hooks and packet sockets with skb->dev set to vrf device.
447 */
David Aherna9ec54d2017-03-20 11:19:45 -0700448static struct sk_buff *vrf_ip6_out_redirect(struct net_device *vrf_dev,
449 struct sk_buff *skb)
David Ahern4c1feac2016-09-10 12:09:56 -0700450{
451 struct net_vrf *vrf = netdev_priv(vrf_dev);
452 struct dst_entry *dst = NULL;
453 struct rt6_info *rt6;
454
David Ahern4c1feac2016-09-10 12:09:56 -0700455 rcu_read_lock();
456
457 rt6 = rcu_dereference(vrf->rt6);
458 if (likely(rt6)) {
459 dst = &rt6->dst;
460 dst_hold(dst);
461 }
462
463 rcu_read_unlock();
464
465 if (unlikely(!dst)) {
466 vrf_tx_error(vrf_dev, skb);
467 return NULL;
468 }
469
470 skb_dst_drop(skb);
471 skb_dst_set(skb, dst);
472
473 return skb;
474}
475
David Aherna9ec54d2017-03-20 11:19:45 -0700476static int vrf_output6_direct(struct net *net, struct sock *sk,
477 struct sk_buff *skb)
478{
479 skb->protocol = htons(ETH_P_IPV6);
480
481 return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
482 net, sk, skb, NULL, skb->dev,
483 vrf_finish_direct,
484 !(IPCB(skb)->flags & IPSKB_REROUTED));
485}
486
487static struct sk_buff *vrf_ip6_out_direct(struct net_device *vrf_dev,
488 struct sock *sk,
489 struct sk_buff *skb)
490{
491 struct net *net = dev_net(vrf_dev);
492 int err;
493
494 skb->dev = vrf_dev;
495
496 err = nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net, sk,
497 skb, NULL, vrf_dev, vrf_output6_direct);
498
499 if (likely(err == 1))
500 err = vrf_output6_direct(net, sk, skb);
501
502 /* reset skb device */
503 if (likely(err == 1))
504 nf_reset(skb);
505 else
506 skb = NULL;
507
508 return skb;
509}
510
511static struct sk_buff *vrf_ip6_out(struct net_device *vrf_dev,
512 struct sock *sk,
513 struct sk_buff *skb)
514{
515 /* don't divert link scope packets */
516 if (rt6_need_strict(&ipv6_hdr(skb)->daddr))
517 return skb;
518
519 if (qdisc_tx_is_default(vrf_dev))
520 return vrf_ip6_out_direct(vrf_dev, sk, skb);
521
522 return vrf_ip6_out_redirect(vrf_dev, skb);
523}
524
David Ahernb0e95cc2016-05-13 12:23:45 -0700525/* holding rtnl */
David Ahern810e5302016-06-14 11:37:21 -0700526static void vrf_rt6_release(struct net_device *dev, struct net_vrf *vrf)
David Ahern35402e32015-10-12 11:47:09 -0700527{
David Ahernb0e95cc2016-05-13 12:23:45 -0700528 struct rt6_info *rt6 = rtnl_dereference(vrf->rt6);
David Ahernb4869aa2016-06-06 20:50:40 -0700529 struct rt6_info *rt6_local = rtnl_dereference(vrf->rt6_local);
David Ahern810e5302016-06-14 11:37:21 -0700530 struct net *net = dev_net(dev);
531 struct dst_entry *dst;
David Ahernb0e95cc2016-05-13 12:23:45 -0700532
David Ahernb4869aa2016-06-06 20:50:40 -0700533 RCU_INIT_POINTER(vrf->rt6, NULL);
534 RCU_INIT_POINTER(vrf->rt6_local, NULL);
535 synchronize_rcu();
David Ahernb0e95cc2016-05-13 12:23:45 -0700536
David Ahern810e5302016-06-14 11:37:21 -0700537 /* move dev in dst's to loopback so this VRF device can be deleted
538 * - based on dst_ifdown
539 */
540 if (rt6) {
541 dst = &rt6->dst;
542 dev_put(dst->dev);
543 dst->dev = net->loopback_dev;
544 dev_hold(dst->dev);
545 dst_release(dst);
546 }
David Ahernb4869aa2016-06-06 20:50:40 -0700547
548 if (rt6_local) {
549 if (rt6_local->rt6i_idev)
550 in6_dev_put(rt6_local->rt6i_idev);
551
David Ahern810e5302016-06-14 11:37:21 -0700552 dst = &rt6_local->dst;
553 dev_put(dst->dev);
554 dst->dev = net->loopback_dev;
555 dev_hold(dst->dev);
556 dst_release(dst);
David Ahernb4869aa2016-06-06 20:50:40 -0700557 }
David Ahern35402e32015-10-12 11:47:09 -0700558}
559
560static int vrf_rt6_create(struct net_device *dev)
561{
David Ahernb4869aa2016-06-06 20:50:40 -0700562 int flags = DST_HOST | DST_NOPOLICY | DST_NOXFRM | DST_NOCACHE;
David Ahern35402e32015-10-12 11:47:09 -0700563 struct net_vrf *vrf = netdev_priv(dev);
David Ahern9ab179d2016-04-07 11:10:06 -0700564 struct net *net = dev_net(dev);
David Ahernb3b46632016-05-04 21:46:12 -0700565 struct fib6_table *rt6i_table;
David Ahernb4869aa2016-06-06 20:50:40 -0700566 struct rt6_info *rt6, *rt6_local;
David Ahern35402e32015-10-12 11:47:09 -0700567 int rc = -ENOMEM;
568
David Aherne4348632016-06-09 10:21:00 -0700569 /* IPv6 can be CONFIG enabled and then disabled runtime */
570 if (!ipv6_mod_enabled())
571 return 0;
572
David Ahernb3b46632016-05-04 21:46:12 -0700573 rt6i_table = fib6_new_table(net, vrf->tb_id);
574 if (!rt6i_table)
575 goto out;
576
David Ahernb4869aa2016-06-06 20:50:40 -0700577 /* create a dst for routing packets out a VRF device */
578 rt6 = ip6_dst_alloc(net, dev, flags);
David Ahern35402e32015-10-12 11:47:09 -0700579 if (!rt6)
580 goto out;
581
David Ahern9ab179d2016-04-07 11:10:06 -0700582 dst_hold(&rt6->dst);
David Ahernb3b46632016-05-04 21:46:12 -0700583
584 rt6->rt6i_table = rt6i_table;
585 rt6->dst.output = vrf_output6;
David Ahernb4869aa2016-06-06 20:50:40 -0700586
587 /* create a dst for local routing - packets sent locally
588 * to local address via the VRF device as a loopback
589 */
590 rt6_local = ip6_dst_alloc(net, dev, flags);
591 if (!rt6_local) {
592 dst_release(&rt6->dst);
593 goto out;
594 }
595
596 dst_hold(&rt6_local->dst);
597
598 rt6_local->rt6i_idev = in6_dev_get(dev);
599 rt6_local->rt6i_flags = RTF_UP | RTF_NONEXTHOP | RTF_LOCAL;
600 rt6_local->rt6i_table = rt6i_table;
601 rt6_local->dst.input = ip6_input;
602
David Ahernb0e95cc2016-05-13 12:23:45 -0700603 rcu_assign_pointer(vrf->rt6, rt6);
David Ahernb4869aa2016-06-06 20:50:40 -0700604 rcu_assign_pointer(vrf->rt6_local, rt6_local);
David Ahernb0e95cc2016-05-13 12:23:45 -0700605
David Ahern35402e32015-10-12 11:47:09 -0700606 rc = 0;
607out:
608 return rc;
609}
610#else
David Ahern4c1feac2016-09-10 12:09:56 -0700611static struct sk_buff *vrf_ip6_out(struct net_device *vrf_dev,
612 struct sock *sk,
613 struct sk_buff *skb)
614{
615 return skb;
616}
617
David Ahern810e5302016-06-14 11:37:21 -0700618static void vrf_rt6_release(struct net_device *dev, struct net_vrf *vrf)
David Ahern35402e32015-10-12 11:47:09 -0700619{
620}
621
622static int vrf_rt6_create(struct net_device *dev)
623{
624 return 0;
625}
626#endif
627
David Ahern8f583362015-08-27 10:10:50 -0700628/* modelled after ip_finish_output2 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -0500629static int vrf_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb)
David Ahern193125d2015-08-13 14:59:10 -0600630{
David Ahern8f583362015-08-27 10:10:50 -0700631 struct dst_entry *dst = skb_dst(skb);
632 struct rtable *rt = (struct rtable *)dst;
633 struct net_device *dev = dst->dev;
634 unsigned int hh_len = LL_RESERVED_SPACE(dev);
635 struct neighbour *neigh;
636 u32 nexthop;
637 int ret = -EINVAL;
638
David Aherneb63ecc2016-12-14 14:31:11 -0800639 nf_reset(skb);
640
David Ahern8f583362015-08-27 10:10:50 -0700641 /* Be paranoid, rather than too clever. */
642 if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) {
643 struct sk_buff *skb2;
644
645 skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev));
646 if (!skb2) {
647 ret = -ENOMEM;
648 goto err;
649 }
650 if (skb->sk)
651 skb_set_owner_w(skb2, skb->sk);
652
653 consume_skb(skb);
654 skb = skb2;
655 }
656
657 rcu_read_lock_bh();
658
659 nexthop = (__force u32)rt_nexthop(rt, ip_hdr(skb)->daddr);
660 neigh = __ipv4_neigh_lookup_noref(dev, nexthop);
661 if (unlikely(!neigh))
662 neigh = __neigh_create(&arp_tbl, &nexthop, dev, false);
Julian Anastasov4ff06202017-02-06 23:14:12 +0200663 if (!IS_ERR(neigh)) {
664 sock_confirm_neigh(skb, neigh);
Julian Anastasovc16ec1852017-02-11 13:49:20 +0200665 ret = neigh_output(neigh, skb);
Julian Anastasov4ff06202017-02-06 23:14:12 +0200666 }
David Ahern8f583362015-08-27 10:10:50 -0700667
668 rcu_read_unlock_bh();
669err:
670 if (unlikely(ret < 0))
671 vrf_tx_error(skb->dev, skb);
672 return ret;
David Ahern193125d2015-08-13 14:59:10 -0600673}
674
Eric W. Biedermanede20592015-10-07 16:48:47 -0500675static int vrf_output(struct net *net, struct sock *sk, struct sk_buff *skb)
David Ahern193125d2015-08-13 14:59:10 -0600676{
677 struct net_device *dev = skb_dst(skb)->dev;
678
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500679 IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len);
David Ahern193125d2015-08-13 14:59:10 -0600680
681 skb->dev = dev;
682 skb->protocol = htons(ETH_P_IP);
683
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500684 return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
685 net, sk, skb, NULL, dev,
David Ahern8f583362015-08-27 10:10:50 -0700686 vrf_finish_output,
David Ahern193125d2015-08-13 14:59:10 -0600687 !(IPCB(skb)->flags & IPSKB_REROUTED));
688}
689
David Ahernebfc1022016-09-10 12:09:55 -0700690/* set dst on skb to send packet to us via dev_xmit path. Allows
691 * packet to go through device based features such as qdisc, netfilter
692 * hooks and packet sockets with skb->dev set to vrf device.
693 */
David Aherndcdd43c2017-03-20 11:19:44 -0700694static struct sk_buff *vrf_ip_out_redirect(struct net_device *vrf_dev,
695 struct sk_buff *skb)
David Ahernebfc1022016-09-10 12:09:55 -0700696{
697 struct net_vrf *vrf = netdev_priv(vrf_dev);
698 struct dst_entry *dst = NULL;
699 struct rtable *rth;
700
701 rcu_read_lock();
702
703 rth = rcu_dereference(vrf->rth);
704 if (likely(rth)) {
705 dst = &rth->dst;
706 dst_hold(dst);
707 }
708
709 rcu_read_unlock();
710
711 if (unlikely(!dst)) {
712 vrf_tx_error(vrf_dev, skb);
713 return NULL;
714 }
715
716 skb_dst_drop(skb);
717 skb_dst_set(skb, dst);
718
719 return skb;
720}
721
David Aherndcdd43c2017-03-20 11:19:44 -0700722static int vrf_output_direct(struct net *net, struct sock *sk,
723 struct sk_buff *skb)
724{
725 skb->protocol = htons(ETH_P_IP);
726
727 return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
728 net, sk, skb, NULL, skb->dev,
729 vrf_finish_direct,
730 !(IPCB(skb)->flags & IPSKB_REROUTED));
731}
732
733static struct sk_buff *vrf_ip_out_direct(struct net_device *vrf_dev,
734 struct sock *sk,
735 struct sk_buff *skb)
736{
737 struct net *net = dev_net(vrf_dev);
738 int err;
739
740 skb->dev = vrf_dev;
741
742 err = nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT, net, sk,
743 skb, NULL, vrf_dev, vrf_output_direct);
744
745 if (likely(err == 1))
746 err = vrf_output_direct(net, sk, skb);
747
748 /* reset skb device */
749 if (likely(err == 1))
750 nf_reset(skb);
751 else
752 skb = NULL;
753
754 return skb;
755}
756
757static struct sk_buff *vrf_ip_out(struct net_device *vrf_dev,
758 struct sock *sk,
759 struct sk_buff *skb)
760{
761 /* don't divert multicast */
762 if (ipv4_is_multicast(ip_hdr(skb)->daddr))
763 return skb;
764
765 if (qdisc_tx_is_default(vrf_dev))
766 return vrf_ip_out_direct(vrf_dev, sk, skb);
767
768 return vrf_ip_out_redirect(vrf_dev, skb);
769}
770
David Ahernebfc1022016-09-10 12:09:55 -0700771/* called with rcu lock held */
772static struct sk_buff *vrf_l3_out(struct net_device *vrf_dev,
773 struct sock *sk,
774 struct sk_buff *skb,
775 u16 proto)
776{
777 switch (proto) {
778 case AF_INET:
779 return vrf_ip_out(vrf_dev, sk, skb);
David Ahern4c1feac2016-09-10 12:09:56 -0700780 case AF_INET6:
781 return vrf_ip6_out(vrf_dev, sk, skb);
David Ahernebfc1022016-09-10 12:09:55 -0700782 }
783
784 return skb;
785}
786
David Ahernb0e95cc2016-05-13 12:23:45 -0700787/* holding rtnl */
David Ahern810e5302016-06-14 11:37:21 -0700788static void vrf_rtable_release(struct net_device *dev, struct net_vrf *vrf)
David Ahern193125d2015-08-13 14:59:10 -0600789{
David Ahernb0e95cc2016-05-13 12:23:45 -0700790 struct rtable *rth = rtnl_dereference(vrf->rth);
David Ahernafe80a42016-06-06 20:50:39 -0700791 struct rtable *rth_local = rtnl_dereference(vrf->rth_local);
David Ahern810e5302016-06-14 11:37:21 -0700792 struct net *net = dev_net(dev);
793 struct dst_entry *dst;
David Ahern193125d2015-08-13 14:59:10 -0600794
David Ahernafe80a42016-06-06 20:50:39 -0700795 RCU_INIT_POINTER(vrf->rth, NULL);
796 RCU_INIT_POINTER(vrf->rth_local, NULL);
797 synchronize_rcu();
David Ahernb0e95cc2016-05-13 12:23:45 -0700798
David Ahern810e5302016-06-14 11:37:21 -0700799 /* move dev in dst's to loopback so this VRF device can be deleted
800 * - based on dst_ifdown
801 */
802 if (rth) {
803 dst = &rth->dst;
804 dev_put(dst->dev);
805 dst->dev = net->loopback_dev;
806 dev_hold(dst->dev);
807 dst_release(dst);
808 }
David Ahernafe80a42016-06-06 20:50:39 -0700809
David Ahern810e5302016-06-14 11:37:21 -0700810 if (rth_local) {
811 dst = &rth_local->dst;
812 dev_put(dst->dev);
813 dst->dev = net->loopback_dev;
814 dev_hold(dst->dev);
815 dst_release(dst);
816 }
David Ahern193125d2015-08-13 14:59:10 -0600817}
818
David Ahernb0e95cc2016-05-13 12:23:45 -0700819static int vrf_rtable_create(struct net_device *dev)
David Ahern193125d2015-08-13 14:59:10 -0600820{
David Ahernb7503e02015-09-02 13:58:35 -0700821 struct net_vrf *vrf = netdev_priv(dev);
David Ahernafe80a42016-06-06 20:50:39 -0700822 struct rtable *rth, *rth_local;
David Ahern193125d2015-08-13 14:59:10 -0600823
David Ahernb3b46632016-05-04 21:46:12 -0700824 if (!fib_new_table(dev_net(dev), vrf->tb_id))
David Ahernb0e95cc2016-05-13 12:23:45 -0700825 return -ENOMEM;
David Ahernb3b46632016-05-04 21:46:12 -0700826
David Ahernafe80a42016-06-06 20:50:39 -0700827 /* create a dst for routing packets out through a VRF device */
David Ahern9ab179d2016-04-07 11:10:06 -0700828 rth = rt_dst_alloc(dev, 0, RTN_UNICAST, 1, 1, 0);
David Ahernb0e95cc2016-05-13 12:23:45 -0700829 if (!rth)
830 return -ENOMEM;
David Ahern193125d2015-08-13 14:59:10 -0600831
David Ahernafe80a42016-06-06 20:50:39 -0700832 /* create a dst for local ingress routing - packets sent locally
833 * to local address via the VRF device as a loopback
834 */
835 rth_local = rt_dst_alloc(dev, RTCF_LOCAL, RTN_LOCAL, 1, 1, 0);
836 if (!rth_local) {
837 dst_release(&rth->dst);
838 return -ENOMEM;
839 }
840
David Ahernb0e95cc2016-05-13 12:23:45 -0700841 rth->dst.output = vrf_output;
842 rth->rt_table_id = vrf->tb_id;
843
David Ahernafe80a42016-06-06 20:50:39 -0700844 rth_local->rt_table_id = vrf->tb_id;
845
David Ahernb0e95cc2016-05-13 12:23:45 -0700846 rcu_assign_pointer(vrf->rth, rth);
David Ahernafe80a42016-06-06 20:50:39 -0700847 rcu_assign_pointer(vrf->rth_local, rth_local);
David Ahernb0e95cc2016-05-13 12:23:45 -0700848
849 return 0;
David Ahern193125d2015-08-13 14:59:10 -0600850}
851
852/**************************** device handling ********************/
853
854/* cycle interface to flush neighbor cache and move routes across tables */
855static void cycle_netdev(struct net_device *dev)
856{
857 unsigned int flags = dev->flags;
858 int ret;
859
860 if (!netif_running(dev))
861 return;
862
863 ret = dev_change_flags(dev, flags & ~IFF_UP);
864 if (ret >= 0)
865 ret = dev_change_flags(dev, flags);
866
867 if (ret < 0) {
868 netdev_err(dev,
869 "Failed to cycle device %s; route tables might be wrong!\n",
870 dev->name);
871 }
872}
873
David Ahern193125d2015-08-13 14:59:10 -0600874static int do_vrf_add_slave(struct net_device *dev, struct net_device *port_dev)
875{
Nikolay Aleksandrovbad53162015-11-24 14:29:16 +0100876 int ret;
David Ahern193125d2015-08-13 14:59:10 -0600877
Ido Schimmelfdeea7b2017-03-16 09:08:15 +0100878 port_dev->priv_flags |= IFF_L3MDEV_SLAVE;
Jiri Pirko29bf24a2015-12-03 12:12:11 +0100879 ret = netdev_master_upper_dev_link(port_dev, dev, NULL, NULL);
David Ahern193125d2015-08-13 14:59:10 -0600880 if (ret < 0)
Ido Schimmelfdeea7b2017-03-16 09:08:15 +0100881 goto err;
David Ahern193125d2015-08-13 14:59:10 -0600882
David Ahern193125d2015-08-13 14:59:10 -0600883 cycle_netdev(port_dev);
884
885 return 0;
Ido Schimmelfdeea7b2017-03-16 09:08:15 +0100886
887err:
888 port_dev->priv_flags &= ~IFF_L3MDEV_SLAVE;
889 return ret;
David Ahern193125d2015-08-13 14:59:10 -0600890}
891
892static int vrf_add_slave(struct net_device *dev, struct net_device *port_dev)
893{
David Ahernfee6d4c2015-10-05 08:51:24 -0700894 if (netif_is_l3_master(port_dev) || netif_is_l3_slave(port_dev))
David Ahern193125d2015-08-13 14:59:10 -0600895 return -EINVAL;
896
897 return do_vrf_add_slave(dev, port_dev);
898}
899
900/* inverse of do_vrf_add_slave */
901static int do_vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
902{
David Ahern193125d2015-08-13 14:59:10 -0600903 netdev_upper_dev_unlink(port_dev, dev);
David Ahernfee6d4c2015-10-05 08:51:24 -0700904 port_dev->priv_flags &= ~IFF_L3MDEV_SLAVE;
David Ahern193125d2015-08-13 14:59:10 -0600905
David Ahern193125d2015-08-13 14:59:10 -0600906 cycle_netdev(port_dev);
907
David Ahern193125d2015-08-13 14:59:10 -0600908 return 0;
909}
910
911static int vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
912{
David Ahern193125d2015-08-13 14:59:10 -0600913 return do_vrf_del_slave(dev, port_dev);
914}
915
916static void vrf_dev_uninit(struct net_device *dev)
917{
918 struct net_vrf *vrf = netdev_priv(dev);
Nikolay Aleksandrovbad53162015-11-24 14:29:16 +0100919 struct net_device *port_dev;
920 struct list_head *iter;
David Ahern193125d2015-08-13 14:59:10 -0600921
David Ahern810e5302016-06-14 11:37:21 -0700922 vrf_rtable_release(dev, vrf);
923 vrf_rt6_release(dev, vrf);
David Ahern193125d2015-08-13 14:59:10 -0600924
Nikolay Aleksandrovbad53162015-11-24 14:29:16 +0100925 netdev_for_each_lower_dev(dev, port_dev, iter)
926 vrf_del_slave(dev, port_dev);
David Ahern193125d2015-08-13 14:59:10 -0600927
Nikolay Aleksandrov3a4a27d2015-08-18 20:28:03 +0300928 free_percpu(dev->dstats);
David Ahern193125d2015-08-13 14:59:10 -0600929 dev->dstats = NULL;
930}
931
932static int vrf_dev_init(struct net_device *dev)
933{
934 struct net_vrf *vrf = netdev_priv(dev);
935
David Ahern193125d2015-08-13 14:59:10 -0600936 dev->dstats = netdev_alloc_pcpu_stats(struct pcpu_dstats);
937 if (!dev->dstats)
938 goto out_nomem;
939
940 /* create the default dst which points back to us */
David Ahernb0e95cc2016-05-13 12:23:45 -0700941 if (vrf_rtable_create(dev) != 0)
David Ahern193125d2015-08-13 14:59:10 -0600942 goto out_stats;
943
David Ahern35402e32015-10-12 11:47:09 -0700944 if (vrf_rt6_create(dev) != 0)
945 goto out_rth;
946
David Ahern193125d2015-08-13 14:59:10 -0600947 dev->flags = IFF_MASTER | IFF_NOARP;
948
David Ahernb87ab6b2016-06-01 21:16:39 -0700949 /* MTU is irrelevant for VRF device; set to 64k similar to lo */
950 dev->mtu = 64 * 1024;
951
952 /* similarly, oper state is irrelevant; set to up to avoid confusion */
953 dev->operstate = IF_OPER_UP;
Eric Dumazet78e7a2a2016-06-09 07:45:13 -0700954 netdev_lockdep_set_classes(dev);
David Ahern193125d2015-08-13 14:59:10 -0600955 return 0;
956
David Ahern35402e32015-10-12 11:47:09 -0700957out_rth:
David Ahern810e5302016-06-14 11:37:21 -0700958 vrf_rtable_release(dev, vrf);
David Ahern193125d2015-08-13 14:59:10 -0600959out_stats:
960 free_percpu(dev->dstats);
961 dev->dstats = NULL;
962out_nomem:
963 return -ENOMEM;
964}
965
966static const struct net_device_ops vrf_netdev_ops = {
967 .ndo_init = vrf_dev_init,
968 .ndo_uninit = vrf_dev_uninit,
969 .ndo_start_xmit = vrf_xmit,
970 .ndo_get_stats64 = vrf_get_stats64,
971 .ndo_add_slave = vrf_add_slave,
972 .ndo_del_slave = vrf_del_slave,
973};
974
David Ahernee15ee52015-09-29 20:07:12 -0700975static u32 vrf_fib_table(const struct net_device *dev)
976{
977 struct net_vrf *vrf = netdev_priv(dev);
978
979 return vrf->tb_id;
980}
981
David Ahern73e20b72016-07-04 18:47:41 -0700982static int vrf_rcv_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
983{
984 return 0;
985}
986
987static struct sk_buff *vrf_rcv_nfhook(u8 pf, unsigned int hook,
988 struct sk_buff *skb,
989 struct net_device *dev)
990{
991 struct net *net = dev_net(dev);
992
David Ahern73e20b72016-07-04 18:47:41 -0700993 if (NF_HOOK(pf, hook, net, NULL, skb, dev, NULL, vrf_rcv_finish) < 0)
994 skb = NULL; /* kfree_skb(skb) handled by nf code */
995
996 return skb;
997}
998
David Ahern35402e32015-10-12 11:47:09 -0700999#if IS_ENABLED(CONFIG_IPV6)
David Ahern74b20582016-05-10 11:19:50 -07001000/* neighbor handling is done with actual device; do not want
1001 * to flip skb->dev for those ndisc packets. This really fails
1002 * for multiple next protocols (e.g., NEXTHDR_HOP). But it is
1003 * a start.
1004 */
1005static bool ipv6_ndisc_frame(const struct sk_buff *skb)
1006{
1007 const struct ipv6hdr *iph = ipv6_hdr(skb);
1008 bool rc = false;
1009
1010 if (iph->nexthdr == NEXTHDR_ICMP) {
1011 const struct icmp6hdr *icmph;
1012 struct icmp6hdr _icmph;
1013
1014 icmph = skb_header_pointer(skb, sizeof(*iph),
1015 sizeof(_icmph), &_icmph);
1016 if (!icmph)
1017 goto out;
1018
1019 switch (icmph->icmp6_type) {
1020 case NDISC_ROUTER_SOLICITATION:
1021 case NDISC_ROUTER_ADVERTISEMENT:
1022 case NDISC_NEIGHBOUR_SOLICITATION:
1023 case NDISC_NEIGHBOUR_ADVERTISEMENT:
1024 case NDISC_REDIRECT:
1025 rc = true;
1026 break;
1027 }
1028 }
1029
1030out:
1031 return rc;
1032}
1033
David Ahern9ff74382016-06-13 13:44:19 -07001034static struct rt6_info *vrf_ip6_route_lookup(struct net *net,
1035 const struct net_device *dev,
1036 struct flowi6 *fl6,
1037 int ifindex,
1038 int flags)
1039{
1040 struct net_vrf *vrf = netdev_priv(dev);
1041 struct fib6_table *table = NULL;
1042 struct rt6_info *rt6;
1043
1044 rcu_read_lock();
1045
1046 /* fib6_table does not have a refcnt and can not be freed */
1047 rt6 = rcu_dereference(vrf->rt6);
1048 if (likely(rt6))
1049 table = rt6->rt6i_table;
1050
1051 rcu_read_unlock();
1052
1053 if (!table)
1054 return NULL;
1055
1056 return ip6_pol_route(net, table, ifindex, fl6, flags);
1057}
1058
1059static void vrf_ip6_input_dst(struct sk_buff *skb, struct net_device *vrf_dev,
1060 int ifindex)
1061{
1062 const struct ipv6hdr *iph = ipv6_hdr(skb);
1063 struct flowi6 fl6 = {
1064 .daddr = iph->daddr,
1065 .saddr = iph->saddr,
1066 .flowlabel = ip6_flowinfo(iph),
1067 .flowi6_mark = skb->mark,
1068 .flowi6_proto = iph->nexthdr,
1069 .flowi6_iif = ifindex,
1070 };
1071 struct net *net = dev_net(vrf_dev);
1072 struct rt6_info *rt6;
1073
1074 rt6 = vrf_ip6_route_lookup(net, vrf_dev, &fl6, ifindex,
1075 RT6_LOOKUP_F_HAS_SADDR | RT6_LOOKUP_F_IFACE);
1076 if (unlikely(!rt6))
1077 return;
1078
1079 if (unlikely(&rt6->dst == &net->ipv6.ip6_null_entry->dst))
1080 return;
1081
1082 skb_dst_set(skb, &rt6->dst);
1083}
1084
David Ahern74b20582016-05-10 11:19:50 -07001085static struct sk_buff *vrf_ip6_rcv(struct net_device *vrf_dev,
1086 struct sk_buff *skb)
1087{
David Ahern9ff74382016-06-13 13:44:19 -07001088 int orig_iif = skb->skb_iif;
1089 bool need_strict;
1090
David Ahernb4869aa2016-06-06 20:50:40 -07001091 /* loopback traffic; do not push through packet taps again.
1092 * Reset pkt_type for upper layers to process skb
1093 */
1094 if (skb->pkt_type == PACKET_LOOPBACK) {
1095 skb->dev = vrf_dev;
1096 skb->skb_iif = vrf_dev->ifindex;
David Aherna04a4802016-10-16 20:02:52 -07001097 IP6CB(skb)->flags |= IP6SKB_L3SLAVE;
David Ahernb4869aa2016-06-06 20:50:40 -07001098 skb->pkt_type = PACKET_HOST;
1099 goto out;
1100 }
1101
David Ahern9ff74382016-06-13 13:44:19 -07001102 /* if packet is NDISC or addressed to multicast or link-local
1103 * then keep the ingress interface
1104 */
1105 need_strict = rt6_need_strict(&ipv6_hdr(skb)->daddr);
1106 if (!ipv6_ndisc_frame(skb) && !need_strict) {
David Ahern926d93a2017-01-03 09:37:55 -08001107 vrf_rx_stats(vrf_dev, skb->len);
David Ahern74b20582016-05-10 11:19:50 -07001108 skb->dev = vrf_dev;
1109 skb->skb_iif = vrf_dev->ifindex;
1110
David Aherna9ec54d2017-03-20 11:19:45 -07001111 if (!list_empty(&vrf_dev->ptype_all)) {
1112 skb_push(skb, skb->mac_len);
1113 dev_queue_xmit_nit(skb, vrf_dev);
1114 skb_pull(skb, skb->mac_len);
1115 }
David Ahern74b20582016-05-10 11:19:50 -07001116
1117 IP6CB(skb)->flags |= IP6SKB_L3SLAVE;
1118 }
1119
David Ahern9ff74382016-06-13 13:44:19 -07001120 if (need_strict)
1121 vrf_ip6_input_dst(skb, vrf_dev, orig_iif);
1122
David Ahern73e20b72016-07-04 18:47:41 -07001123 skb = vrf_rcv_nfhook(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, vrf_dev);
David Ahernb4869aa2016-06-06 20:50:40 -07001124out:
David Ahern74b20582016-05-10 11:19:50 -07001125 return skb;
1126}
1127
1128#else
1129static struct sk_buff *vrf_ip6_rcv(struct net_device *vrf_dev,
1130 struct sk_buff *skb)
1131{
1132 return skb;
1133}
1134#endif
1135
1136static struct sk_buff *vrf_ip_rcv(struct net_device *vrf_dev,
1137 struct sk_buff *skb)
1138{
1139 skb->dev = vrf_dev;
1140 skb->skb_iif = vrf_dev->ifindex;
David Aherna04a4802016-10-16 20:02:52 -07001141 IPCB(skb)->flags |= IPSKB_L3SLAVE;
David Ahern74b20582016-05-10 11:19:50 -07001142
David Aherne58e4152016-10-31 15:54:00 -07001143 if (ipv4_is_multicast(ip_hdr(skb)->daddr))
1144 goto out;
1145
David Ahernafe80a42016-06-06 20:50:39 -07001146 /* loopback traffic; do not push through packet taps again.
1147 * Reset pkt_type for upper layers to process skb
1148 */
1149 if (skb->pkt_type == PACKET_LOOPBACK) {
1150 skb->pkt_type = PACKET_HOST;
1151 goto out;
1152 }
1153
David Ahern926d93a2017-01-03 09:37:55 -08001154 vrf_rx_stats(vrf_dev, skb->len);
1155
David Aherndcdd43c2017-03-20 11:19:44 -07001156 if (!list_empty(&vrf_dev->ptype_all)) {
1157 skb_push(skb, skb->mac_len);
1158 dev_queue_xmit_nit(skb, vrf_dev);
1159 skb_pull(skb, skb->mac_len);
1160 }
David Ahern74b20582016-05-10 11:19:50 -07001161
David Ahern73e20b72016-07-04 18:47:41 -07001162 skb = vrf_rcv_nfhook(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, vrf_dev);
David Ahernafe80a42016-06-06 20:50:39 -07001163out:
David Ahern74b20582016-05-10 11:19:50 -07001164 return skb;
1165}
1166
1167/* called with rcu lock held */
1168static struct sk_buff *vrf_l3_rcv(struct net_device *vrf_dev,
1169 struct sk_buff *skb,
1170 u16 proto)
1171{
1172 switch (proto) {
1173 case AF_INET:
1174 return vrf_ip_rcv(vrf_dev, skb);
1175 case AF_INET6:
1176 return vrf_ip6_rcv(vrf_dev, skb);
1177 }
1178
1179 return skb;
1180}
1181
1182#if IS_ENABLED(CONFIG_IPV6)
David Ahern4c1feac2016-09-10 12:09:56 -07001183/* send to link-local or multicast address via interface enslaved to
1184 * VRF device. Force lookup to VRF table without changing flow struct
1185 */
1186static struct dst_entry *vrf_link_scope_lookup(const struct net_device *dev,
1187 struct flowi6 *fl6)
David Ahern35402e32015-10-12 11:47:09 -07001188{
David Ahern9ff74382016-06-13 13:44:19 -07001189 struct net *net = dev_net(dev);
David Ahern4c1feac2016-09-10 12:09:56 -07001190 int flags = RT6_LOOKUP_F_IFACE;
David Ahernb0e95cc2016-05-13 12:23:45 -07001191 struct dst_entry *dst = NULL;
David Ahern9ff74382016-06-13 13:44:19 -07001192 struct rt6_info *rt;
David Ahern35402e32015-10-12 11:47:09 -07001193
David Ahern4c1feac2016-09-10 12:09:56 -07001194 /* VRF device does not have a link-local address and
1195 * sending packets to link-local or mcast addresses over
1196 * a VRF device does not make sense
1197 */
1198 if (fl6->flowi6_oif == dev->ifindex) {
1199 dst = &net->ipv6.ip6_null_entry->dst;
1200 dst_hold(dst);
1201 return dst;
David Ahern35402e32015-10-12 11:47:09 -07001202 }
1203
David Ahern4c1feac2016-09-10 12:09:56 -07001204 if (!ipv6_addr_any(&fl6->saddr))
1205 flags |= RT6_LOOKUP_F_HAS_SADDR;
1206
1207 rt = vrf_ip6_route_lookup(net, dev, fl6, fl6->flowi6_oif, flags);
1208 if (rt)
1209 dst = &rt->dst;
David Ahern9ff74382016-06-13 13:44:19 -07001210
David Ahernb0e95cc2016-05-13 12:23:45 -07001211 return dst;
David Ahern35402e32015-10-12 11:47:09 -07001212}
1213#endif
1214
David Ahernee15ee52015-09-29 20:07:12 -07001215static const struct l3mdev_ops vrf_l3mdev_ops = {
1216 .l3mdev_fib_table = vrf_fib_table,
David Ahern74b20582016-05-10 11:19:50 -07001217 .l3mdev_l3_rcv = vrf_l3_rcv,
David Ahernebfc1022016-09-10 12:09:55 -07001218 .l3mdev_l3_out = vrf_l3_out,
David Ahern35402e32015-10-12 11:47:09 -07001219#if IS_ENABLED(CONFIG_IPV6)
David Ahern4c1feac2016-09-10 12:09:56 -07001220 .l3mdev_link_scope_lookup = vrf_link_scope_lookup,
David Ahern35402e32015-10-12 11:47:09 -07001221#endif
David Ahernee15ee52015-09-29 20:07:12 -07001222};
1223
David Ahern193125d2015-08-13 14:59:10 -06001224static void vrf_get_drvinfo(struct net_device *dev,
1225 struct ethtool_drvinfo *info)
1226{
1227 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
1228 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1229}
1230
1231static const struct ethtool_ops vrf_ethtool_ops = {
1232 .get_drvinfo = vrf_get_drvinfo,
1233};
1234
David Ahern1aa6c4f2016-06-08 10:55:40 -07001235static inline size_t vrf_fib_rule_nl_size(void)
1236{
1237 size_t sz;
1238
1239 sz = NLMSG_ALIGN(sizeof(struct fib_rule_hdr));
1240 sz += nla_total_size(sizeof(u8)); /* FRA_L3MDEV */
1241 sz += nla_total_size(sizeof(u32)); /* FRA_PRIORITY */
1242
1243 return sz;
1244}
1245
1246static int vrf_fib_rule(const struct net_device *dev, __u8 family, bool add_it)
1247{
1248 struct fib_rule_hdr *frh;
1249 struct nlmsghdr *nlh;
1250 struct sk_buff *skb;
1251 int err;
1252
David Aherne4348632016-06-09 10:21:00 -07001253 if (family == AF_INET6 && !ipv6_mod_enabled())
1254 return 0;
1255
David Ahern1aa6c4f2016-06-08 10:55:40 -07001256 skb = nlmsg_new(vrf_fib_rule_nl_size(), GFP_KERNEL);
1257 if (!skb)
1258 return -ENOMEM;
1259
1260 nlh = nlmsg_put(skb, 0, 0, 0, sizeof(*frh), 0);
1261 if (!nlh)
1262 goto nla_put_failure;
1263
1264 /* rule only needs to appear once */
1265 nlh->nlmsg_flags &= NLM_F_EXCL;
1266
1267 frh = nlmsg_data(nlh);
1268 memset(frh, 0, sizeof(*frh));
1269 frh->family = family;
1270 frh->action = FR_ACT_TO_TBL;
1271
1272 if (nla_put_u32(skb, FRA_L3MDEV, 1))
1273 goto nla_put_failure;
1274
1275 if (nla_put_u32(skb, FRA_PRIORITY, FIB_RULE_PREF))
1276 goto nla_put_failure;
1277
1278 nlmsg_end(skb, nlh);
1279
1280 /* fib_nl_{new,del}rule handling looks for net from skb->sk */
1281 skb->sk = dev_net(dev)->rtnl;
1282 if (add_it) {
1283 err = fib_nl_newrule(skb, nlh);
1284 if (err == -EEXIST)
1285 err = 0;
1286 } else {
1287 err = fib_nl_delrule(skb, nlh);
1288 if (err == -ENOENT)
1289 err = 0;
1290 }
1291 nlmsg_free(skb);
1292
1293 return err;
1294
1295nla_put_failure:
1296 nlmsg_free(skb);
1297
1298 return -EMSGSIZE;
1299}
1300
1301static int vrf_add_fib_rules(const struct net_device *dev)
1302{
1303 int err;
1304
1305 err = vrf_fib_rule(dev, AF_INET, true);
1306 if (err < 0)
1307 goto out_err;
1308
1309 err = vrf_fib_rule(dev, AF_INET6, true);
1310 if (err < 0)
1311 goto ipv6_err;
1312
David Aherne58e4152016-10-31 15:54:00 -07001313#if IS_ENABLED(CONFIG_IP_MROUTE_MULTIPLE_TABLES)
1314 err = vrf_fib_rule(dev, RTNL_FAMILY_IPMR, true);
1315 if (err < 0)
1316 goto ipmr_err;
1317#endif
1318
David Ahern1aa6c4f2016-06-08 10:55:40 -07001319 return 0;
1320
David Aherne58e4152016-10-31 15:54:00 -07001321#if IS_ENABLED(CONFIG_IP_MROUTE_MULTIPLE_TABLES)
1322ipmr_err:
1323 vrf_fib_rule(dev, AF_INET6, false);
1324#endif
1325
David Ahern1aa6c4f2016-06-08 10:55:40 -07001326ipv6_err:
1327 vrf_fib_rule(dev, AF_INET, false);
1328
1329out_err:
1330 netdev_err(dev, "Failed to add FIB rules.\n");
1331 return err;
1332}
1333
David Ahern193125d2015-08-13 14:59:10 -06001334static void vrf_setup(struct net_device *dev)
1335{
1336 ether_setup(dev);
1337
1338 /* Initialize the device structure. */
1339 dev->netdev_ops = &vrf_netdev_ops;
David Ahernee15ee52015-09-29 20:07:12 -07001340 dev->l3mdev_ops = &vrf_l3mdev_ops;
David Ahern193125d2015-08-13 14:59:10 -06001341 dev->ethtool_ops = &vrf_ethtool_ops;
1342 dev->destructor = free_netdev;
1343
1344 /* Fill in device structure with ethernet-generic values. */
1345 eth_hw_addr_random(dev);
1346
1347 /* don't acquire vrf device's netif_tx_lock when transmitting */
1348 dev->features |= NETIF_F_LLTX;
1349
1350 /* don't allow vrf devices to change network namespaces. */
1351 dev->features |= NETIF_F_NETNS_LOCAL;
David Ahern78896812016-06-13 17:14:12 -07001352
1353 /* does not make sense for a VLAN to be added to a vrf device */
1354 dev->features |= NETIF_F_VLAN_CHALLENGED;
1355
1356 /* enable offload features */
1357 dev->features |= NETIF_F_GSO_SOFTWARE;
1358 dev->features |= NETIF_F_RXCSUM | NETIF_F_HW_CSUM;
1359 dev->features |= NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA;
1360
1361 dev->hw_features = dev->features;
1362 dev->hw_enc_features = dev->features;
1363
1364 /* default to no qdisc; user can add if desired */
1365 dev->priv_flags |= IFF_NO_QUEUE;
David Ahern193125d2015-08-13 14:59:10 -06001366}
1367
1368static int vrf_validate(struct nlattr *tb[], struct nlattr *data[])
1369{
1370 if (tb[IFLA_ADDRESS]) {
1371 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1372 return -EINVAL;
1373 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1374 return -EADDRNOTAVAIL;
1375 }
1376 return 0;
1377}
1378
1379static void vrf_dellink(struct net_device *dev, struct list_head *head)
1380{
David Ahern193125d2015-08-13 14:59:10 -06001381 unregister_netdevice_queue(dev, head);
1382}
1383
1384static int vrf_newlink(struct net *src_net, struct net_device *dev,
1385 struct nlattr *tb[], struct nlattr *data[])
1386{
1387 struct net_vrf *vrf = netdev_priv(dev);
David Ahern1aa6c4f2016-06-08 10:55:40 -07001388 int err;
David Ahern193125d2015-08-13 14:59:10 -06001389
1390 if (!data || !data[IFLA_VRF_TABLE])
1391 return -EINVAL;
1392
1393 vrf->tb_id = nla_get_u32(data[IFLA_VRF_TABLE]);
David Ahern24c63bb2017-01-10 15:22:25 -08001394 if (vrf->tb_id == RT_TABLE_UNSPEC)
1395 return -EINVAL;
David Ahern193125d2015-08-13 14:59:10 -06001396
David Ahern007979e2015-09-29 20:07:10 -07001397 dev->priv_flags |= IFF_L3MDEV_MASTER;
David Ahern193125d2015-08-13 14:59:10 -06001398
David Ahern1aa6c4f2016-06-08 10:55:40 -07001399 err = register_netdevice(dev);
1400 if (err)
1401 goto out;
1402
1403 if (add_fib_rules) {
1404 err = vrf_add_fib_rules(dev);
1405 if (err) {
1406 unregister_netdevice(dev);
1407 goto out;
1408 }
1409 add_fib_rules = false;
1410 }
1411
1412out:
1413 return err;
David Ahern193125d2015-08-13 14:59:10 -06001414}
1415
1416static size_t vrf_nl_getsize(const struct net_device *dev)
1417{
1418 return nla_total_size(sizeof(u32)); /* IFLA_VRF_TABLE */
1419}
1420
1421static int vrf_fillinfo(struct sk_buff *skb,
1422 const struct net_device *dev)
1423{
1424 struct net_vrf *vrf = netdev_priv(dev);
1425
1426 return nla_put_u32(skb, IFLA_VRF_TABLE, vrf->tb_id);
1427}
1428
David Ahern67eb0332016-02-02 07:43:45 -08001429static size_t vrf_get_slave_size(const struct net_device *bond_dev,
1430 const struct net_device *slave_dev)
1431{
1432 return nla_total_size(sizeof(u32)); /* IFLA_VRF_PORT_TABLE */
1433}
1434
1435static int vrf_fill_slave_info(struct sk_buff *skb,
1436 const struct net_device *vrf_dev,
1437 const struct net_device *slave_dev)
1438{
1439 struct net_vrf *vrf = netdev_priv(vrf_dev);
1440
1441 if (nla_put_u32(skb, IFLA_VRF_PORT_TABLE, vrf->tb_id))
1442 return -EMSGSIZE;
1443
1444 return 0;
1445}
1446
David Ahern193125d2015-08-13 14:59:10 -06001447static const struct nla_policy vrf_nl_policy[IFLA_VRF_MAX + 1] = {
1448 [IFLA_VRF_TABLE] = { .type = NLA_U32 },
1449};
1450
1451static struct rtnl_link_ops vrf_link_ops __read_mostly = {
1452 .kind = DRV_NAME,
1453 .priv_size = sizeof(struct net_vrf),
1454
1455 .get_size = vrf_nl_getsize,
1456 .policy = vrf_nl_policy,
1457 .validate = vrf_validate,
1458 .fill_info = vrf_fillinfo,
1459
David Ahern67eb0332016-02-02 07:43:45 -08001460 .get_slave_size = vrf_get_slave_size,
1461 .fill_slave_info = vrf_fill_slave_info,
1462
David Ahern193125d2015-08-13 14:59:10 -06001463 .newlink = vrf_newlink,
1464 .dellink = vrf_dellink,
1465 .setup = vrf_setup,
1466 .maxtype = IFLA_VRF_MAX,
1467};
1468
1469static int vrf_device_event(struct notifier_block *unused,
1470 unsigned long event, void *ptr)
1471{
1472 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1473
1474 /* only care about unregister events to drop slave references */
1475 if (event == NETDEV_UNREGISTER) {
David Ahern193125d2015-08-13 14:59:10 -06001476 struct net_device *vrf_dev;
1477
David Ahernfee6d4c2015-10-05 08:51:24 -07001478 if (!netif_is_l3_slave(dev))
David Ahern193125d2015-08-13 14:59:10 -06001479 goto out;
1480
Nikolay Aleksandrov58aa9082015-08-18 20:28:04 +03001481 vrf_dev = netdev_master_upper_dev_get(dev);
1482 vrf_del_slave(vrf_dev, dev);
David Ahern193125d2015-08-13 14:59:10 -06001483 }
1484out:
1485 return NOTIFY_DONE;
1486}
1487
1488static struct notifier_block vrf_notifier_block __read_mostly = {
1489 .notifier_call = vrf_device_event,
1490};
1491
1492static int __init vrf_init_module(void)
1493{
1494 int rc;
1495
David Ahern193125d2015-08-13 14:59:10 -06001496 register_netdevice_notifier(&vrf_notifier_block);
1497
1498 rc = rtnl_link_register(&vrf_link_ops);
1499 if (rc < 0)
1500 goto error;
1501
1502 return 0;
1503
1504error:
1505 unregister_netdevice_notifier(&vrf_notifier_block);
David Ahern193125d2015-08-13 14:59:10 -06001506 return rc;
1507}
1508
David Ahern193125d2015-08-13 14:59:10 -06001509module_init(vrf_init_module);
David Ahern193125d2015-08-13 14:59:10 -06001510MODULE_AUTHOR("Shrijeet Mukherjee, David Ahern");
1511MODULE_DESCRIPTION("Device driver to instantiate VRF domains");
1512MODULE_LICENSE("GPL");
1513MODULE_ALIAS_RTNL_LINK(DRV_NAME);
1514MODULE_VERSION(DRV_VERSION);