Linux-libre 4.9.189-gnu
[librecmc/linux-libre.git] / drivers / net / vrf.c
1 /*
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>
30 #include <net/arp.h>
31 #include <net/ip.h>
32 #include <net/ip_fib.h>
33 #include <net/ip6_fib.h>
34 #include <net/ip6_route.h>
35 #include <net/route.h>
36 #include <net/addrconf.h>
37 #include <net/l3mdev.h>
38 #include <net/fib_rules.h>
39 #include <net/netns/generic.h>
40
41 #define DRV_NAME        "vrf"
42 #define DRV_VERSION     "1.0"
43
44 #define FIB_RULE_PREF  1000       /* default preference for FIB rules */
45
46 static unsigned int vrf_net_id;
47
48 struct net_vrf {
49         struct rtable __rcu     *rth;
50         struct rtable __rcu     *rth_local;
51         struct rt6_info __rcu   *rt6;
52         struct rt6_info __rcu   *rt6_local;
53         u32                     tb_id;
54 };
55
56 struct pcpu_dstats {
57         u64                     tx_pkts;
58         u64                     tx_bytes;
59         u64                     tx_drps;
60         u64                     rx_pkts;
61         u64                     rx_bytes;
62         u64                     rx_drps;
63         struct u64_stats_sync   syncp;
64 };
65
66 static void vrf_rx_stats(struct net_device *dev, int len)
67 {
68         struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
69
70         u64_stats_update_begin(&dstats->syncp);
71         dstats->rx_pkts++;
72         dstats->rx_bytes += len;
73         u64_stats_update_end(&dstats->syncp);
74 }
75
76 static void vrf_tx_error(struct net_device *vrf_dev, struct sk_buff *skb)
77 {
78         vrf_dev->stats.tx_errors++;
79         kfree_skb(skb);
80 }
81
82 static struct rtnl_link_stats64 *vrf_get_stats64(struct net_device *dev,
83                                                  struct rtnl_link_stats64 *stats)
84 {
85         int i;
86
87         for_each_possible_cpu(i) {
88                 const struct pcpu_dstats *dstats;
89                 u64 tbytes, tpkts, tdrops, rbytes, rpkts;
90                 unsigned int start;
91
92                 dstats = per_cpu_ptr(dev->dstats, i);
93                 do {
94                         start = u64_stats_fetch_begin_irq(&dstats->syncp);
95                         tbytes = dstats->tx_bytes;
96                         tpkts = dstats->tx_pkts;
97                         tdrops = dstats->tx_drps;
98                         rbytes = dstats->rx_bytes;
99                         rpkts = dstats->rx_pkts;
100                 } while (u64_stats_fetch_retry_irq(&dstats->syncp, start));
101                 stats->tx_bytes += tbytes;
102                 stats->tx_packets += tpkts;
103                 stats->tx_dropped += tdrops;
104                 stats->rx_bytes += rbytes;
105                 stats->rx_packets += rpkts;
106         }
107         return stats;
108 }
109
110 /* Local traffic destined to local address. Reinsert the packet to rx
111  * path, similar to loopback handling.
112  */
113 static int vrf_local_xmit(struct sk_buff *skb, struct net_device *dev,
114                           struct dst_entry *dst)
115 {
116         int len = skb->len;
117
118         skb_orphan(skb);
119
120         skb_dst_set(skb, dst);
121         skb_dst_force(skb);
122
123         /* set pkt_type to avoid skb hitting packet taps twice -
124          * once on Tx and again in Rx processing
125          */
126         skb->pkt_type = PACKET_LOOPBACK;
127
128         skb->protocol = eth_type_trans(skb, dev);
129
130         if (likely(netif_rx(skb) == NET_RX_SUCCESS))
131                 vrf_rx_stats(dev, len);
132         else
133                 this_cpu_inc(dev->dstats->rx_drps);
134
135         return NETDEV_TX_OK;
136 }
137
138 #if IS_ENABLED(CONFIG_IPV6)
139 static int vrf_ip6_local_out(struct net *net, struct sock *sk,
140                              struct sk_buff *skb)
141 {
142         int err;
143
144         err = nf_hook(NFPROTO_IPV6, NF_INET_LOCAL_OUT, net,
145                       sk, skb, NULL, skb_dst(skb)->dev, dst_output);
146
147         if (likely(err == 1))
148                 err = dst_output(net, sk, skb);
149
150         return err;
151 }
152
153 static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
154                                            struct net_device *dev)
155 {
156         const struct ipv6hdr *iph;
157         struct net *net = dev_net(skb->dev);
158         struct flowi6 fl6;
159         int ret = NET_XMIT_DROP;
160         struct dst_entry *dst;
161         struct dst_entry *dst_null = &net->ipv6.ip6_null_entry->dst;
162
163         if (!pskb_may_pull(skb, ETH_HLEN + sizeof(struct ipv6hdr)))
164                 goto err;
165
166         iph = ipv6_hdr(skb);
167
168         memset(&fl6, 0, sizeof(fl6));
169         /* needed to match OIF rule */
170         fl6.flowi6_oif = dev->ifindex;
171         fl6.flowi6_iif = LOOPBACK_IFINDEX;
172         fl6.daddr = iph->daddr;
173         fl6.saddr = iph->saddr;
174         fl6.flowlabel = ip6_flowinfo(iph);
175         fl6.flowi6_mark = skb->mark;
176         fl6.flowi6_proto = iph->nexthdr;
177         fl6.flowi6_flags = FLOWI_FLAG_SKIP_NH_OIF;
178
179         dst = ip6_route_output(net, NULL, &fl6);
180         if (dst == dst_null)
181                 goto err;
182
183         skb_dst_drop(skb);
184
185         /* if dst.dev is loopback or the VRF device again this is locally
186          * originated traffic destined to a local address. Short circuit
187          * to Rx path using our local dst
188          */
189         if (dst->dev == net->loopback_dev || dst->dev == dev) {
190                 struct net_vrf *vrf = netdev_priv(dev);
191                 struct rt6_info *rt6_local;
192
193                 /* release looked up dst and use cached local dst */
194                 dst_release(dst);
195
196                 rcu_read_lock();
197
198                 rt6_local = rcu_dereference(vrf->rt6_local);
199                 if (unlikely(!rt6_local)) {
200                         rcu_read_unlock();
201                         goto err;
202                 }
203
204                 /* Ordering issue: cached local dst is created on newlink
205                  * before the IPv6 initialization. Using the local dst
206                  * requires rt6i_idev to be set so make sure it is.
207                  */
208                 if (unlikely(!rt6_local->rt6i_idev)) {
209                         rt6_local->rt6i_idev = in6_dev_get(dev);
210                         if (!rt6_local->rt6i_idev) {
211                                 rcu_read_unlock();
212                                 goto err;
213                         }
214                 }
215
216                 dst = &rt6_local->dst;
217                 dst_hold(dst);
218
219                 rcu_read_unlock();
220
221                 return vrf_local_xmit(skb, dev, &rt6_local->dst);
222         }
223
224         skb_dst_set(skb, dst);
225
226         /* strip the ethernet header added for pass through VRF device */
227         __skb_pull(skb, skb_network_offset(skb));
228
229         ret = vrf_ip6_local_out(net, skb->sk, skb);
230         if (unlikely(net_xmit_eval(ret)))
231                 dev->stats.tx_errors++;
232         else
233                 ret = NET_XMIT_SUCCESS;
234
235         return ret;
236 err:
237         vrf_tx_error(dev, skb);
238         return NET_XMIT_DROP;
239 }
240 #else
241 static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
242                                            struct net_device *dev)
243 {
244         vrf_tx_error(dev, skb);
245         return NET_XMIT_DROP;
246 }
247 #endif
248
249 /* based on ip_local_out; can't use it b/c the dst is switched pointing to us */
250 static int vrf_ip_local_out(struct net *net, struct sock *sk,
251                             struct sk_buff *skb)
252 {
253         int err;
254
255         err = nf_hook(NFPROTO_IPV4, NF_INET_LOCAL_OUT, net, sk,
256                       skb, NULL, skb_dst(skb)->dev, dst_output);
257         if (likely(err == 1))
258                 err = dst_output(net, sk, skb);
259
260         return err;
261 }
262
263 static netdev_tx_t vrf_process_v4_outbound(struct sk_buff *skb,
264                                            struct net_device *vrf_dev)
265 {
266         struct iphdr *ip4h;
267         int ret = NET_XMIT_DROP;
268         struct flowi4 fl4;
269         struct net *net = dev_net(vrf_dev);
270         struct rtable *rt;
271
272         if (!pskb_may_pull(skb, ETH_HLEN + sizeof(struct iphdr)))
273                 goto err;
274
275         ip4h = ip_hdr(skb);
276
277         memset(&fl4, 0, sizeof(fl4));
278         /* needed to match OIF rule */
279         fl4.flowi4_oif = vrf_dev->ifindex;
280         fl4.flowi4_iif = LOOPBACK_IFINDEX;
281         fl4.flowi4_tos = RT_TOS(ip4h->tos);
282         fl4.flowi4_flags = FLOWI_FLAG_ANYSRC | FLOWI_FLAG_SKIP_NH_OIF;
283         fl4.flowi4_proto = ip4h->protocol;
284         fl4.daddr = ip4h->daddr;
285         fl4.saddr = ip4h->saddr;
286
287         rt = ip_route_output_flow(net, &fl4, NULL);
288         if (IS_ERR(rt))
289                 goto err;
290
291         if (rt->rt_type != RTN_UNICAST && rt->rt_type != RTN_LOCAL) {
292                 ip_rt_put(rt);
293                 goto err;
294         }
295
296         skb_dst_drop(skb);
297
298         /* if dst.dev is loopback or the VRF device again this is locally
299          * originated traffic destined to a local address. Short circuit
300          * to Rx path using our local dst
301          */
302         if (rt->dst.dev == net->loopback_dev || rt->dst.dev == vrf_dev) {
303                 struct net_vrf *vrf = netdev_priv(vrf_dev);
304                 struct rtable *rth_local;
305                 struct dst_entry *dst = NULL;
306
307                 ip_rt_put(rt);
308
309                 rcu_read_lock();
310
311                 rth_local = rcu_dereference(vrf->rth_local);
312                 if (likely(rth_local)) {
313                         dst = &rth_local->dst;
314                         dst_hold(dst);
315                 }
316
317                 rcu_read_unlock();
318
319                 if (unlikely(!dst))
320                         goto err;
321
322                 return vrf_local_xmit(skb, vrf_dev, dst);
323         }
324
325         skb_dst_set(skb, &rt->dst);
326
327         /* strip the ethernet header added for pass through VRF device */
328         __skb_pull(skb, skb_network_offset(skb));
329
330         if (!ip4h->saddr) {
331                 ip4h->saddr = inet_select_addr(skb_dst(skb)->dev, 0,
332                                                RT_SCOPE_LINK);
333         }
334
335         ret = vrf_ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
336         if (unlikely(net_xmit_eval(ret)))
337                 vrf_dev->stats.tx_errors++;
338         else
339                 ret = NET_XMIT_SUCCESS;
340
341 out:
342         return ret;
343 err:
344         vrf_tx_error(vrf_dev, skb);
345         goto out;
346 }
347
348 static netdev_tx_t is_ip_tx_frame(struct sk_buff *skb, struct net_device *dev)
349 {
350         switch (skb->protocol) {
351         case htons(ETH_P_IP):
352                 return vrf_process_v4_outbound(skb, dev);
353         case htons(ETH_P_IPV6):
354                 return vrf_process_v6_outbound(skb, dev);
355         default:
356                 vrf_tx_error(dev, skb);
357                 return NET_XMIT_DROP;
358         }
359 }
360
361 static netdev_tx_t vrf_xmit(struct sk_buff *skb, struct net_device *dev)
362 {
363         int len = skb->len;
364         netdev_tx_t ret = is_ip_tx_frame(skb, dev);
365
366         if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
367                 struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
368
369                 u64_stats_update_begin(&dstats->syncp);
370                 dstats->tx_pkts++;
371                 dstats->tx_bytes += len;
372                 u64_stats_update_end(&dstats->syncp);
373         } else {
374                 this_cpu_inc(dev->dstats->tx_drps);
375         }
376
377         return ret;
378 }
379
380 #if IS_ENABLED(CONFIG_IPV6)
381 /* modelled after ip6_finish_output2 */
382 static int vrf_finish_output6(struct net *net, struct sock *sk,
383                               struct sk_buff *skb)
384 {
385         struct dst_entry *dst = skb_dst(skb);
386         struct net_device *dev = dst->dev;
387         struct neighbour *neigh;
388         struct in6_addr *nexthop;
389         int ret;
390
391         nf_reset(skb);
392
393         skb->protocol = htons(ETH_P_IPV6);
394         skb->dev = dev;
395
396         rcu_read_lock_bh();
397         nexthop = rt6_nexthop((struct rt6_info *)dst, &ipv6_hdr(skb)->daddr);
398         neigh = __ipv6_neigh_lookup_noref(dst->dev, nexthop);
399         if (unlikely(!neigh))
400                 neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false);
401         if (!IS_ERR(neigh)) {
402                 ret = dst_neigh_output(dst, neigh, skb);
403                 rcu_read_unlock_bh();
404                 return ret;
405         }
406         rcu_read_unlock_bh();
407
408         IP6_INC_STATS(dev_net(dst->dev),
409                       ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
410         kfree_skb(skb);
411         return -EINVAL;
412 }
413
414 /* modelled after ip6_output */
415 static int vrf_output6(struct net *net, struct sock *sk, struct sk_buff *skb)
416 {
417         return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
418                             net, sk, skb, NULL, skb_dst(skb)->dev,
419                             vrf_finish_output6,
420                             !(IP6CB(skb)->flags & IP6SKB_REROUTED));
421 }
422
423 /* set dst on skb to send packet to us via dev_xmit path. Allows
424  * packet to go through device based features such as qdisc, netfilter
425  * hooks and packet sockets with skb->dev set to vrf device.
426  */
427 static struct sk_buff *vrf_ip6_out(struct net_device *vrf_dev,
428                                    struct sock *sk,
429                                    struct sk_buff *skb)
430 {
431         struct net_vrf *vrf = netdev_priv(vrf_dev);
432         struct dst_entry *dst = NULL;
433         struct rt6_info *rt6;
434
435         /* don't divert link scope packets */
436         if (rt6_need_strict(&ipv6_hdr(skb)->daddr))
437                 return skb;
438
439         rcu_read_lock();
440
441         rt6 = rcu_dereference(vrf->rt6);
442         if (likely(rt6)) {
443                 dst = &rt6->dst;
444                 dst_hold(dst);
445         }
446
447         rcu_read_unlock();
448
449         if (unlikely(!dst)) {
450                 vrf_tx_error(vrf_dev, skb);
451                 return NULL;
452         }
453
454         skb_dst_drop(skb);
455         skb_dst_set(skb, dst);
456
457         return skb;
458 }
459
460 /* holding rtnl */
461 static void vrf_rt6_release(struct net_device *dev, struct net_vrf *vrf)
462 {
463         struct rt6_info *rt6 = rtnl_dereference(vrf->rt6);
464         struct rt6_info *rt6_local = rtnl_dereference(vrf->rt6_local);
465         struct net *net = dev_net(dev);
466         struct dst_entry *dst;
467
468         RCU_INIT_POINTER(vrf->rt6, NULL);
469         RCU_INIT_POINTER(vrf->rt6_local, NULL);
470         synchronize_rcu();
471
472         /* move dev in dst's to loopback so this VRF device can be deleted
473          * - based on dst_ifdown
474          */
475         if (rt6) {
476                 dst = &rt6->dst;
477                 dev_put(dst->dev);
478                 dst->dev = net->loopback_dev;
479                 dev_hold(dst->dev);
480                 dst_release(dst);
481         }
482
483         if (rt6_local) {
484                 if (rt6_local->rt6i_idev) {
485                         in6_dev_put(rt6_local->rt6i_idev);
486                         rt6_local->rt6i_idev = NULL;
487                 }
488
489                 dst = &rt6_local->dst;
490                 dev_put(dst->dev);
491                 dst->dev = net->loopback_dev;
492                 dev_hold(dst->dev);
493                 dst_release(dst);
494         }
495 }
496
497 static int vrf_rt6_create(struct net_device *dev)
498 {
499         int flags = DST_HOST | DST_NOPOLICY | DST_NOXFRM | DST_NOCACHE;
500         struct net_vrf *vrf = netdev_priv(dev);
501         struct net *net = dev_net(dev);
502         struct fib6_table *rt6i_table;
503         struct rt6_info *rt6, *rt6_local;
504         int rc = -ENOMEM;
505
506         /* IPv6 can be CONFIG enabled and then disabled runtime */
507         if (!ipv6_mod_enabled())
508                 return 0;
509
510         rt6i_table = fib6_new_table(net, vrf->tb_id);
511         if (!rt6i_table)
512                 goto out;
513
514         /* create a dst for routing packets out a VRF device */
515         rt6 = ip6_dst_alloc(net, dev, flags);
516         if (!rt6)
517                 goto out;
518
519         dst_hold(&rt6->dst);
520
521         rt6->rt6i_table = rt6i_table;
522         rt6->dst.output = vrf_output6;
523
524         /* create a dst for local routing - packets sent locally
525          * to local address via the VRF device as a loopback
526          */
527         rt6_local = ip6_dst_alloc(net, dev, flags);
528         if (!rt6_local) {
529                 dst_release(&rt6->dst);
530                 goto out;
531         }
532
533         dst_hold(&rt6_local->dst);
534
535         rt6_local->rt6i_idev  = in6_dev_get(dev);
536         rt6_local->rt6i_flags = RTF_UP | RTF_NONEXTHOP | RTF_LOCAL;
537         rt6_local->rt6i_table = rt6i_table;
538         rt6_local->dst.input  = ip6_input;
539
540         rcu_assign_pointer(vrf->rt6, rt6);
541         rcu_assign_pointer(vrf->rt6_local, rt6_local);
542
543         rc = 0;
544 out:
545         return rc;
546 }
547 #else
548 static struct sk_buff *vrf_ip6_out(struct net_device *vrf_dev,
549                                    struct sock *sk,
550                                    struct sk_buff *skb)
551 {
552         return skb;
553 }
554
555 static void vrf_rt6_release(struct net_device *dev, struct net_vrf *vrf)
556 {
557 }
558
559 static int vrf_rt6_create(struct net_device *dev)
560 {
561         return 0;
562 }
563 #endif
564
565 /* modelled after ip_finish_output2 */
566 static int vrf_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb)
567 {
568         struct dst_entry *dst = skb_dst(skb);
569         struct rtable *rt = (struct rtable *)dst;
570         struct net_device *dev = dst->dev;
571         unsigned int hh_len = LL_RESERVED_SPACE(dev);
572         struct neighbour *neigh;
573         u32 nexthop;
574         int ret = -EINVAL;
575
576         nf_reset(skb);
577
578         /* Be paranoid, rather than too clever. */
579         if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) {
580                 struct sk_buff *skb2;
581
582                 skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev));
583                 if (!skb2) {
584                         ret = -ENOMEM;
585                         goto err;
586                 }
587                 if (skb->sk)
588                         skb_set_owner_w(skb2, skb->sk);
589
590                 consume_skb(skb);
591                 skb = skb2;
592         }
593
594         rcu_read_lock_bh();
595
596         nexthop = (__force u32)rt_nexthop(rt, ip_hdr(skb)->daddr);
597         neigh = __ipv4_neigh_lookup_noref(dev, nexthop);
598         if (unlikely(!neigh))
599                 neigh = __neigh_create(&arp_tbl, &nexthop, dev, false);
600         if (!IS_ERR(neigh)) {
601                 ret = dst_neigh_output(dst, neigh, skb);
602                 rcu_read_unlock_bh();
603                 return ret;
604         }
605
606         rcu_read_unlock_bh();
607 err:
608         vrf_tx_error(skb->dev, skb);
609         return ret;
610 }
611
612 static int vrf_output(struct net *net, struct sock *sk, struct sk_buff *skb)
613 {
614         struct net_device *dev = skb_dst(skb)->dev;
615
616         IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len);
617
618         skb->dev = dev;
619         skb->protocol = htons(ETH_P_IP);
620
621         return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
622                             net, sk, skb, NULL, dev,
623                             vrf_finish_output,
624                             !(IPCB(skb)->flags & IPSKB_REROUTED));
625 }
626
627 /* set dst on skb to send packet to us via dev_xmit path. Allows
628  * packet to go through device based features such as qdisc, netfilter
629  * hooks and packet sockets with skb->dev set to vrf device.
630  */
631 static struct sk_buff *vrf_ip_out(struct net_device *vrf_dev,
632                                   struct sock *sk,
633                                   struct sk_buff *skb)
634 {
635         struct net_vrf *vrf = netdev_priv(vrf_dev);
636         struct dst_entry *dst = NULL;
637         struct rtable *rth;
638
639         rcu_read_lock();
640
641         rth = rcu_dereference(vrf->rth);
642         if (likely(rth)) {
643                 dst = &rth->dst;
644                 dst_hold(dst);
645         }
646
647         rcu_read_unlock();
648
649         if (unlikely(!dst)) {
650                 vrf_tx_error(vrf_dev, skb);
651                 return NULL;
652         }
653
654         skb_dst_drop(skb);
655         skb_dst_set(skb, dst);
656
657         return skb;
658 }
659
660 /* called with rcu lock held */
661 static struct sk_buff *vrf_l3_out(struct net_device *vrf_dev,
662                                   struct sock *sk,
663                                   struct sk_buff *skb,
664                                   u16 proto)
665 {
666         switch (proto) {
667         case AF_INET:
668                 return vrf_ip_out(vrf_dev, sk, skb);
669         case AF_INET6:
670                 return vrf_ip6_out(vrf_dev, sk, skb);
671         }
672
673         return skb;
674 }
675
676 /* holding rtnl */
677 static void vrf_rtable_release(struct net_device *dev, struct net_vrf *vrf)
678 {
679         struct rtable *rth = rtnl_dereference(vrf->rth);
680         struct rtable *rth_local = rtnl_dereference(vrf->rth_local);
681         struct net *net = dev_net(dev);
682         struct dst_entry *dst;
683
684         RCU_INIT_POINTER(vrf->rth, NULL);
685         RCU_INIT_POINTER(vrf->rth_local, NULL);
686         synchronize_rcu();
687
688         /* move dev in dst's to loopback so this VRF device can be deleted
689          * - based on dst_ifdown
690          */
691         if (rth) {
692                 dst = &rth->dst;
693                 dev_put(dst->dev);
694                 dst->dev = net->loopback_dev;
695                 dev_hold(dst->dev);
696                 dst_release(dst);
697         }
698
699         if (rth_local) {
700                 dst = &rth_local->dst;
701                 dev_put(dst->dev);
702                 dst->dev = net->loopback_dev;
703                 dev_hold(dst->dev);
704                 dst_release(dst);
705         }
706 }
707
708 static int vrf_rtable_create(struct net_device *dev)
709 {
710         struct net_vrf *vrf = netdev_priv(dev);
711         struct rtable *rth, *rth_local;
712
713         if (!fib_new_table(dev_net(dev), vrf->tb_id))
714                 return -ENOMEM;
715
716         /* create a dst for routing packets out through a VRF device */
717         rth = rt_dst_alloc(dev, 0, RTN_UNICAST, 1, 1, 0);
718         if (!rth)
719                 return -ENOMEM;
720
721         /* create a dst for local ingress routing - packets sent locally
722          * to local address via the VRF device as a loopback
723          */
724         rth_local = rt_dst_alloc(dev, RTCF_LOCAL, RTN_LOCAL, 1, 1, 0);
725         if (!rth_local) {
726                 dst_release(&rth->dst);
727                 return -ENOMEM;
728         }
729
730         rth->dst.output = vrf_output;
731         rth->rt_table_id = vrf->tb_id;
732
733         rth_local->rt_table_id = vrf->tb_id;
734
735         rcu_assign_pointer(vrf->rth, rth);
736         rcu_assign_pointer(vrf->rth_local, rth_local);
737
738         return 0;
739 }
740
741 /**************************** device handling ********************/
742
743 /* cycle interface to flush neighbor cache and move routes across tables */
744 static void cycle_netdev(struct net_device *dev)
745 {
746         unsigned int flags = dev->flags;
747         int ret;
748
749         if (!netif_running(dev))
750                 return;
751
752         ret = dev_change_flags(dev, flags & ~IFF_UP);
753         if (ret >= 0)
754                 ret = dev_change_flags(dev, flags);
755
756         if (ret < 0) {
757                 netdev_err(dev,
758                            "Failed to cycle device %s; route tables might be wrong!\n",
759                            dev->name);
760         }
761 }
762
763 static int do_vrf_add_slave(struct net_device *dev, struct net_device *port_dev)
764 {
765         int ret;
766
767         ret = netdev_master_upper_dev_link(port_dev, dev, NULL, NULL);
768         if (ret < 0)
769                 return ret;
770
771         port_dev->priv_flags |= IFF_L3MDEV_SLAVE;
772         cycle_netdev(port_dev);
773
774         return 0;
775 }
776
777 static int vrf_add_slave(struct net_device *dev, struct net_device *port_dev)
778 {
779         if (netif_is_l3_master(port_dev) || netif_is_l3_slave(port_dev))
780                 return -EINVAL;
781
782         return do_vrf_add_slave(dev, port_dev);
783 }
784
785 /* inverse of do_vrf_add_slave */
786 static int do_vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
787 {
788         netdev_upper_dev_unlink(port_dev, dev);
789         port_dev->priv_flags &= ~IFF_L3MDEV_SLAVE;
790
791         cycle_netdev(port_dev);
792
793         return 0;
794 }
795
796 static int vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
797 {
798         return do_vrf_del_slave(dev, port_dev);
799 }
800
801 static void vrf_dev_uninit(struct net_device *dev)
802 {
803         struct net_vrf *vrf = netdev_priv(dev);
804
805         vrf_rtable_release(dev, vrf);
806         vrf_rt6_release(dev, vrf);
807
808         free_percpu(dev->dstats);
809         dev->dstats = NULL;
810 }
811
812 static int vrf_dev_init(struct net_device *dev)
813 {
814         struct net_vrf *vrf = netdev_priv(dev);
815
816         dev->dstats = netdev_alloc_pcpu_stats(struct pcpu_dstats);
817         if (!dev->dstats)
818                 goto out_nomem;
819
820         /* create the default dst which points back to us */
821         if (vrf_rtable_create(dev) != 0)
822                 goto out_stats;
823
824         if (vrf_rt6_create(dev) != 0)
825                 goto out_rth;
826
827         dev->flags = IFF_MASTER | IFF_NOARP;
828
829         /* MTU is irrelevant for VRF device; set to 64k similar to lo */
830         dev->mtu = 64 * 1024;
831
832         /* similarly, oper state is irrelevant; set to up to avoid confusion */
833         dev->operstate = IF_OPER_UP;
834         netdev_lockdep_set_classes(dev);
835         return 0;
836
837 out_rth:
838         vrf_rtable_release(dev, vrf);
839 out_stats:
840         free_percpu(dev->dstats);
841         dev->dstats = NULL;
842 out_nomem:
843         return -ENOMEM;
844 }
845
846 static const struct net_device_ops vrf_netdev_ops = {
847         .ndo_init               = vrf_dev_init,
848         .ndo_uninit             = vrf_dev_uninit,
849         .ndo_start_xmit         = vrf_xmit,
850         .ndo_get_stats64        = vrf_get_stats64,
851         .ndo_add_slave          = vrf_add_slave,
852         .ndo_del_slave          = vrf_del_slave,
853 };
854
855 static u32 vrf_fib_table(const struct net_device *dev)
856 {
857         struct net_vrf *vrf = netdev_priv(dev);
858
859         return vrf->tb_id;
860 }
861
862 static int vrf_rcv_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
863 {
864         kfree_skb(skb);
865         return 0;
866 }
867
868 static struct sk_buff *vrf_rcv_nfhook(u8 pf, unsigned int hook,
869                                       struct sk_buff *skb,
870                                       struct net_device *dev)
871 {
872         struct net *net = dev_net(dev);
873
874         if (nf_hook(pf, hook, net, NULL, skb, dev, NULL, vrf_rcv_finish) != 1)
875                 skb = NULL;    /* kfree_skb(skb) handled by nf code */
876
877         return skb;
878 }
879
880 #if IS_ENABLED(CONFIG_IPV6)
881 /* neighbor handling is done with actual device; do not want
882  * to flip skb->dev for those ndisc packets. This really fails
883  * for multiple next protocols (e.g., NEXTHDR_HOP). But it is
884  * a start.
885  */
886 static bool ipv6_ndisc_frame(const struct sk_buff *skb)
887 {
888         const struct ipv6hdr *iph = ipv6_hdr(skb);
889         bool rc = false;
890
891         if (iph->nexthdr == NEXTHDR_ICMP) {
892                 const struct icmp6hdr *icmph;
893                 struct icmp6hdr _icmph;
894
895                 icmph = skb_header_pointer(skb, sizeof(*iph),
896                                            sizeof(_icmph), &_icmph);
897                 if (!icmph)
898                         goto out;
899
900                 switch (icmph->icmp6_type) {
901                 case NDISC_ROUTER_SOLICITATION:
902                 case NDISC_ROUTER_ADVERTISEMENT:
903                 case NDISC_NEIGHBOUR_SOLICITATION:
904                 case NDISC_NEIGHBOUR_ADVERTISEMENT:
905                 case NDISC_REDIRECT:
906                         rc = true;
907                         break;
908                 }
909         }
910
911 out:
912         return rc;
913 }
914
915 static struct rt6_info *vrf_ip6_route_lookup(struct net *net,
916                                              const struct net_device *dev,
917                                              struct flowi6 *fl6,
918                                              int ifindex,
919                                              int flags)
920 {
921         struct net_vrf *vrf = netdev_priv(dev);
922         struct fib6_table *table = NULL;
923         struct rt6_info *rt6;
924
925         rcu_read_lock();
926
927         /* fib6_table does not have a refcnt and can not be freed */
928         rt6 = rcu_dereference(vrf->rt6);
929         if (likely(rt6))
930                 table = rt6->rt6i_table;
931
932         rcu_read_unlock();
933
934         if (!table)
935                 return NULL;
936
937         return ip6_pol_route(net, table, ifindex, fl6, flags);
938 }
939
940 static void vrf_ip6_input_dst(struct sk_buff *skb, struct net_device *vrf_dev,
941                               int ifindex)
942 {
943         const struct ipv6hdr *iph = ipv6_hdr(skb);
944         struct flowi6 fl6 = {
945                 .daddr          = iph->daddr,
946                 .saddr          = iph->saddr,
947                 .flowlabel      = ip6_flowinfo(iph),
948                 .flowi6_mark    = skb->mark,
949                 .flowi6_proto   = iph->nexthdr,
950                 .flowi6_iif     = ifindex,
951         };
952         struct net *net = dev_net(vrf_dev);
953         struct rt6_info *rt6;
954
955         rt6 = vrf_ip6_route_lookup(net, vrf_dev, &fl6, ifindex,
956                                    RT6_LOOKUP_F_HAS_SADDR | RT6_LOOKUP_F_IFACE);
957         if (unlikely(!rt6))
958                 return;
959
960         if (unlikely(&rt6->dst == &net->ipv6.ip6_null_entry->dst))
961                 return;
962
963         skb_dst_set(skb, &rt6->dst);
964 }
965
966 static struct sk_buff *vrf_ip6_rcv(struct net_device *vrf_dev,
967                                    struct sk_buff *skb)
968 {
969         int orig_iif = skb->skb_iif;
970         bool need_strict;
971
972         /* loopback traffic; do not push through packet taps again.
973          * Reset pkt_type for upper layers to process skb
974          */
975         if (skb->pkt_type == PACKET_LOOPBACK) {
976                 skb->dev = vrf_dev;
977                 skb->skb_iif = vrf_dev->ifindex;
978                 IP6CB(skb)->flags |= IP6SKB_L3SLAVE;
979                 skb->pkt_type = PACKET_HOST;
980                 goto out;
981         }
982
983         /* if packet is NDISC or addressed to multicast or link-local
984          * then keep the ingress interface
985          */
986         need_strict = rt6_need_strict(&ipv6_hdr(skb)->daddr);
987         if (!ipv6_ndisc_frame(skb) && !need_strict) {
988                 vrf_rx_stats(vrf_dev, skb->len);
989                 skb->dev = vrf_dev;
990                 skb->skb_iif = vrf_dev->ifindex;
991
992                 skb_push(skb, skb->mac_len);
993                 dev_queue_xmit_nit(skb, vrf_dev);
994                 skb_pull(skb, skb->mac_len);
995
996                 IP6CB(skb)->flags |= IP6SKB_L3SLAVE;
997         }
998
999         if (need_strict)
1000                 vrf_ip6_input_dst(skb, vrf_dev, orig_iif);
1001
1002         skb = vrf_rcv_nfhook(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, vrf_dev);
1003 out:
1004         return skb;
1005 }
1006
1007 #else
1008 static struct sk_buff *vrf_ip6_rcv(struct net_device *vrf_dev,
1009                                    struct sk_buff *skb)
1010 {
1011         return skb;
1012 }
1013 #endif
1014
1015 static struct sk_buff *vrf_ip_rcv(struct net_device *vrf_dev,
1016                                   struct sk_buff *skb)
1017 {
1018         skb->dev = vrf_dev;
1019         skb->skb_iif = vrf_dev->ifindex;
1020         IPCB(skb)->flags |= IPSKB_L3SLAVE;
1021
1022         /* loopback traffic; do not push through packet taps again.
1023          * Reset pkt_type for upper layers to process skb
1024          */
1025         if (skb->pkt_type == PACKET_LOOPBACK) {
1026                 skb->pkt_type = PACKET_HOST;
1027                 goto out;
1028         }
1029
1030         vrf_rx_stats(vrf_dev, skb->len);
1031
1032         skb_push(skb, skb->mac_len);
1033         dev_queue_xmit_nit(skb, vrf_dev);
1034         skb_pull(skb, skb->mac_len);
1035
1036         skb = vrf_rcv_nfhook(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, vrf_dev);
1037 out:
1038         return skb;
1039 }
1040
1041 /* called with rcu lock held */
1042 static struct sk_buff *vrf_l3_rcv(struct net_device *vrf_dev,
1043                                   struct sk_buff *skb,
1044                                   u16 proto)
1045 {
1046         switch (proto) {
1047         case AF_INET:
1048                 return vrf_ip_rcv(vrf_dev, skb);
1049         case AF_INET6:
1050                 return vrf_ip6_rcv(vrf_dev, skb);
1051         }
1052
1053         return skb;
1054 }
1055
1056 #if IS_ENABLED(CONFIG_IPV6)
1057 /* send to link-local or multicast address via interface enslaved to
1058  * VRF device. Force lookup to VRF table without changing flow struct
1059  */
1060 static struct dst_entry *vrf_link_scope_lookup(const struct net_device *dev,
1061                                               struct flowi6 *fl6)
1062 {
1063         struct net *net = dev_net(dev);
1064         int flags = RT6_LOOKUP_F_IFACE;
1065         struct dst_entry *dst = NULL;
1066         struct rt6_info *rt;
1067
1068         /* VRF device does not have a link-local address and
1069          * sending packets to link-local or mcast addresses over
1070          * a VRF device does not make sense
1071          */
1072         if (fl6->flowi6_oif == dev->ifindex) {
1073                 dst = &net->ipv6.ip6_null_entry->dst;
1074                 dst_hold(dst);
1075                 return dst;
1076         }
1077
1078         if (!ipv6_addr_any(&fl6->saddr))
1079                 flags |= RT6_LOOKUP_F_HAS_SADDR;
1080
1081         rt = vrf_ip6_route_lookup(net, dev, fl6, fl6->flowi6_oif, flags);
1082         if (rt)
1083                 dst = &rt->dst;
1084
1085         return dst;
1086 }
1087 #endif
1088
1089 static const struct l3mdev_ops vrf_l3mdev_ops = {
1090         .l3mdev_fib_table       = vrf_fib_table,
1091         .l3mdev_l3_rcv          = vrf_l3_rcv,
1092         .l3mdev_l3_out          = vrf_l3_out,
1093 #if IS_ENABLED(CONFIG_IPV6)
1094         .l3mdev_link_scope_lookup = vrf_link_scope_lookup,
1095 #endif
1096 };
1097
1098 static void vrf_get_drvinfo(struct net_device *dev,
1099                             struct ethtool_drvinfo *info)
1100 {
1101         strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
1102         strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1103 }
1104
1105 static const struct ethtool_ops vrf_ethtool_ops = {
1106         .get_drvinfo    = vrf_get_drvinfo,
1107 };
1108
1109 static inline size_t vrf_fib_rule_nl_size(void)
1110 {
1111         size_t sz;
1112
1113         sz  = NLMSG_ALIGN(sizeof(struct fib_rule_hdr));
1114         sz += nla_total_size(sizeof(u8));       /* FRA_L3MDEV */
1115         sz += nla_total_size(sizeof(u32));      /* FRA_PRIORITY */
1116
1117         return sz;
1118 }
1119
1120 static int vrf_fib_rule(const struct net_device *dev, __u8 family, bool add_it)
1121 {
1122         struct fib_rule_hdr *frh;
1123         struct nlmsghdr *nlh;
1124         struct sk_buff *skb;
1125         int err;
1126
1127         if (family == AF_INET6 && !ipv6_mod_enabled())
1128                 return 0;
1129
1130         skb = nlmsg_new(vrf_fib_rule_nl_size(), GFP_KERNEL);
1131         if (!skb)
1132                 return -ENOMEM;
1133
1134         nlh = nlmsg_put(skb, 0, 0, 0, sizeof(*frh), 0);
1135         if (!nlh)
1136                 goto nla_put_failure;
1137
1138         /* rule only needs to appear once */
1139         nlh->nlmsg_flags |= NLM_F_EXCL;
1140
1141         frh = nlmsg_data(nlh);
1142         memset(frh, 0, sizeof(*frh));
1143         frh->family = family;
1144         frh->action = FR_ACT_TO_TBL;
1145
1146         if (nla_put_u8(skb, FRA_L3MDEV, 1))
1147                 goto nla_put_failure;
1148
1149         if (nla_put_u32(skb, FRA_PRIORITY, FIB_RULE_PREF))
1150                 goto nla_put_failure;
1151
1152         nlmsg_end(skb, nlh);
1153
1154         /* fib_nl_{new,del}rule handling looks for net from skb->sk */
1155         skb->sk = dev_net(dev)->rtnl;
1156         if (add_it) {
1157                 err = fib_nl_newrule(skb, nlh);
1158                 if (err == -EEXIST)
1159                         err = 0;
1160         } else {
1161                 err = fib_nl_delrule(skb, nlh);
1162                 if (err == -ENOENT)
1163                         err = 0;
1164         }
1165         nlmsg_free(skb);
1166
1167         return err;
1168
1169 nla_put_failure:
1170         nlmsg_free(skb);
1171
1172         return -EMSGSIZE;
1173 }
1174
1175 static int vrf_add_fib_rules(const struct net_device *dev)
1176 {
1177         int err;
1178
1179         err = vrf_fib_rule(dev, AF_INET,  true);
1180         if (err < 0)
1181                 goto out_err;
1182
1183         err = vrf_fib_rule(dev, AF_INET6, true);
1184         if (err < 0)
1185                 goto ipv6_err;
1186
1187         return 0;
1188
1189 ipv6_err:
1190         vrf_fib_rule(dev, AF_INET,  false);
1191
1192 out_err:
1193         netdev_err(dev, "Failed to add FIB rules.\n");
1194         return err;
1195 }
1196
1197 static void vrf_setup(struct net_device *dev)
1198 {
1199         ether_setup(dev);
1200
1201         /* Initialize the device structure. */
1202         dev->netdev_ops = &vrf_netdev_ops;
1203         dev->l3mdev_ops = &vrf_l3mdev_ops;
1204         dev->ethtool_ops = &vrf_ethtool_ops;
1205         dev->destructor = free_netdev;
1206
1207         /* Fill in device structure with ethernet-generic values. */
1208         eth_hw_addr_random(dev);
1209
1210         /* don't acquire vrf device's netif_tx_lock when transmitting */
1211         dev->features |= NETIF_F_LLTX;
1212
1213         /* don't allow vrf devices to change network namespaces. */
1214         dev->features |= NETIF_F_NETNS_LOCAL;
1215
1216         /* does not make sense for a VLAN to be added to a vrf device */
1217         dev->features   |= NETIF_F_VLAN_CHALLENGED;
1218
1219         /* enable offload features */
1220         dev->features   |= NETIF_F_GSO_SOFTWARE;
1221         dev->features   |= NETIF_F_RXCSUM | NETIF_F_HW_CSUM;
1222         dev->features   |= NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA;
1223
1224         dev->hw_features = dev->features;
1225         dev->hw_enc_features = dev->features;
1226
1227         /* default to no qdisc; user can add if desired */
1228         dev->priv_flags |= IFF_NO_QUEUE;
1229 }
1230
1231 static int vrf_validate(struct nlattr *tb[], struct nlattr *data[])
1232 {
1233         if (tb[IFLA_ADDRESS]) {
1234                 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1235                         return -EINVAL;
1236                 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1237                         return -EADDRNOTAVAIL;
1238         }
1239         return 0;
1240 }
1241
1242 static void vrf_dellink(struct net_device *dev, struct list_head *head)
1243 {
1244         struct net_device *port_dev;
1245         struct list_head *iter;
1246
1247         netdev_for_each_lower_dev(dev, port_dev, iter)
1248                 vrf_del_slave(dev, port_dev);
1249
1250         unregister_netdevice_queue(dev, head);
1251 }
1252
1253 static int vrf_newlink(struct net *src_net, struct net_device *dev,
1254                        struct nlattr *tb[], struct nlattr *data[])
1255 {
1256         struct net_vrf *vrf = netdev_priv(dev);
1257         bool *add_fib_rules;
1258         struct net *net;
1259         int err;
1260
1261         if (!data || !data[IFLA_VRF_TABLE])
1262                 return -EINVAL;
1263
1264         vrf->tb_id = nla_get_u32(data[IFLA_VRF_TABLE]);
1265         if (vrf->tb_id == RT_TABLE_UNSPEC)
1266                 return -EINVAL;
1267
1268         dev->priv_flags |= IFF_L3MDEV_MASTER;
1269
1270         err = register_netdevice(dev);
1271         if (err)
1272                 goto out;
1273
1274         net = dev_net(dev);
1275         add_fib_rules = net_generic(net, vrf_net_id);
1276         if (*add_fib_rules) {
1277                 err = vrf_add_fib_rules(dev);
1278                 if (err) {
1279                         unregister_netdevice(dev);
1280                         goto out;
1281                 }
1282                 *add_fib_rules = false;
1283         }
1284
1285 out:
1286         return err;
1287 }
1288
1289 static size_t vrf_nl_getsize(const struct net_device *dev)
1290 {
1291         return nla_total_size(sizeof(u32));  /* IFLA_VRF_TABLE */
1292 }
1293
1294 static int vrf_fillinfo(struct sk_buff *skb,
1295                         const struct net_device *dev)
1296 {
1297         struct net_vrf *vrf = netdev_priv(dev);
1298
1299         return nla_put_u32(skb, IFLA_VRF_TABLE, vrf->tb_id);
1300 }
1301
1302 static size_t vrf_get_slave_size(const struct net_device *bond_dev,
1303                                  const struct net_device *slave_dev)
1304 {
1305         return nla_total_size(sizeof(u32));  /* IFLA_VRF_PORT_TABLE */
1306 }
1307
1308 static int vrf_fill_slave_info(struct sk_buff *skb,
1309                                const struct net_device *vrf_dev,
1310                                const struct net_device *slave_dev)
1311 {
1312         struct net_vrf *vrf = netdev_priv(vrf_dev);
1313
1314         if (nla_put_u32(skb, IFLA_VRF_PORT_TABLE, vrf->tb_id))
1315                 return -EMSGSIZE;
1316
1317         return 0;
1318 }
1319
1320 static const struct nla_policy vrf_nl_policy[IFLA_VRF_MAX + 1] = {
1321         [IFLA_VRF_TABLE] = { .type = NLA_U32 },
1322 };
1323
1324 static struct rtnl_link_ops vrf_link_ops __read_mostly = {
1325         .kind           = DRV_NAME,
1326         .priv_size      = sizeof(struct net_vrf),
1327
1328         .get_size       = vrf_nl_getsize,
1329         .policy         = vrf_nl_policy,
1330         .validate       = vrf_validate,
1331         .fill_info      = vrf_fillinfo,
1332
1333         .get_slave_size  = vrf_get_slave_size,
1334         .fill_slave_info = vrf_fill_slave_info,
1335
1336         .newlink        = vrf_newlink,
1337         .dellink        = vrf_dellink,
1338         .setup          = vrf_setup,
1339         .maxtype        = IFLA_VRF_MAX,
1340 };
1341
1342 static int vrf_device_event(struct notifier_block *unused,
1343                             unsigned long event, void *ptr)
1344 {
1345         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1346
1347         /* only care about unregister events to drop slave references */
1348         if (event == NETDEV_UNREGISTER) {
1349                 struct net_device *vrf_dev;
1350
1351                 if (!netif_is_l3_slave(dev))
1352                         goto out;
1353
1354                 vrf_dev = netdev_master_upper_dev_get(dev);
1355                 vrf_del_slave(vrf_dev, dev);
1356         }
1357 out:
1358         return NOTIFY_DONE;
1359 }
1360
1361 static struct notifier_block vrf_notifier_block __read_mostly = {
1362         .notifier_call = vrf_device_event,
1363 };
1364
1365 /* Initialize per network namespace state */
1366 static int __net_init vrf_netns_init(struct net *net)
1367 {
1368         bool *add_fib_rules = net_generic(net, vrf_net_id);
1369
1370         *add_fib_rules = true;
1371
1372         return 0;
1373 }
1374
1375 static struct pernet_operations vrf_net_ops __net_initdata = {
1376         .init = vrf_netns_init,
1377         .id   = &vrf_net_id,
1378         .size = sizeof(bool),
1379 };
1380
1381 static int __init vrf_init_module(void)
1382 {
1383         int rc;
1384
1385         register_netdevice_notifier(&vrf_notifier_block);
1386
1387         rc = register_pernet_subsys(&vrf_net_ops);
1388         if (rc < 0)
1389                 goto error;
1390
1391         rc = rtnl_link_register(&vrf_link_ops);
1392         if (rc < 0) {
1393                 unregister_pernet_subsys(&vrf_net_ops);
1394                 goto error;
1395         }
1396
1397         return 0;
1398
1399 error:
1400         unregister_netdevice_notifier(&vrf_notifier_block);
1401         return rc;
1402 }
1403
1404 module_init(vrf_init_module);
1405 MODULE_AUTHOR("Shrijeet Mukherjee, David Ahern");
1406 MODULE_DESCRIPTION("Device driver to instantiate VRF domains");
1407 MODULE_LICENSE("GPL");
1408 MODULE_ALIAS_RTNL_LINK(DRV_NAME);
1409 MODULE_VERSION(DRV_VERSION);