2 * vrf.c: device driver to encapsulate a VRF space
4 * Copyright (c) 2015 Cumulus Networks. All rights reserved.
8 * Based on dummy, team and ipvlan drivers
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.
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/netdevice.h>
19 #include <linux/etherdevice.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>
29 #include <linux/inetdevice.h>
32 #include <net/ip_fib.h>
33 #include <net/ip6_fib.h>
34 #include <net/ip6_route.h>
35 #include <net/rtnetlink.h>
36 #include <net/route.h>
37 #include <net/addrconf.h>
38 #include <net/l3mdev.h>
40 #define RT_FL_TOS(oldflp4) \
41 ((oldflp4)->flowi4_tos & (IPTOS_RT_MASK | RTO_ONLINK))
43 #define DRV_NAME "vrf"
44 #define DRV_VERSION "1.0"
46 #define vrf_master_get_rcu(dev) \
47 ((struct net_device *)rcu_dereference(dev->rx_handler_data))
61 struct u64_stats_sync syncp;
64 static struct dst_entry *vrf_ip_check(struct dst_entry *dst, u32 cookie)
69 static int vrf_ip_local_out(struct net *net, struct sock *sk, struct sk_buff *skb)
71 return ip_local_out(net, sk, skb);
74 static unsigned int vrf_v4_mtu(const struct dst_entry *dst)
76 /* TO-DO: return max ethernet size? */
80 static void vrf_dst_destroy(struct dst_entry *dst)
82 /* our dst lives forever - or until the device is closed */
85 static unsigned int vrf_default_advmss(const struct dst_entry *dst)
90 static struct dst_ops vrf_dst_ops = {
92 .local_out = vrf_ip_local_out,
93 .check = vrf_ip_check,
95 .destroy = vrf_dst_destroy,
96 .default_advmss = vrf_default_advmss,
99 /* neighbor handling is done with actual device; do not want
100 * to flip skb->dev for those ndisc packets. This really fails
101 * for multiple next protocols (e.g., NEXTHDR_HOP). But it is
104 #if IS_ENABLED(CONFIG_IPV6)
105 static bool check_ipv6_frame(const struct sk_buff *skb)
107 const struct ipv6hdr *ipv6h = (struct ipv6hdr *)skb->data;
108 size_t hlen = sizeof(*ipv6h);
114 if (ipv6h->nexthdr == NEXTHDR_ICMP) {
115 const struct icmp6hdr *icmph;
117 if (skb->len < hlen + sizeof(*icmph))
120 icmph = (struct icmp6hdr *)(skb->data + sizeof(*ipv6h));
121 switch (icmph->icmp6_type) {
122 case NDISC_ROUTER_SOLICITATION:
123 case NDISC_ROUTER_ADVERTISEMENT:
124 case NDISC_NEIGHBOUR_SOLICITATION:
125 case NDISC_NEIGHBOUR_ADVERTISEMENT:
136 static bool check_ipv6_frame(const struct sk_buff *skb)
142 static bool is_ip_rx_frame(struct sk_buff *skb)
144 switch (skb->protocol) {
145 case htons(ETH_P_IP):
147 case htons(ETH_P_IPV6):
148 return check_ipv6_frame(skb);
153 static void vrf_tx_error(struct net_device *vrf_dev, struct sk_buff *skb)
155 vrf_dev->stats.tx_errors++;
159 /* note: already called with rcu_read_lock */
160 static rx_handler_result_t vrf_handle_frame(struct sk_buff **pskb)
162 struct sk_buff *skb = *pskb;
164 if (is_ip_rx_frame(skb)) {
165 struct net_device *dev = vrf_master_get_rcu(skb->dev);
166 struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
168 u64_stats_update_begin(&dstats->syncp);
170 dstats->rx_bytes += skb->len;
171 u64_stats_update_end(&dstats->syncp);
175 return RX_HANDLER_ANOTHER;
177 return RX_HANDLER_PASS;
180 static struct rtnl_link_stats64 *vrf_get_stats64(struct net_device *dev,
181 struct rtnl_link_stats64 *stats)
185 for_each_possible_cpu(i) {
186 const struct pcpu_dstats *dstats;
187 u64 tbytes, tpkts, tdrops, rbytes, rpkts;
190 dstats = per_cpu_ptr(dev->dstats, i);
192 start = u64_stats_fetch_begin_irq(&dstats->syncp);
193 tbytes = dstats->tx_bytes;
194 tpkts = dstats->tx_pkts;
195 tdrops = dstats->tx_drps;
196 rbytes = dstats->rx_bytes;
197 rpkts = dstats->rx_pkts;
198 } while (u64_stats_fetch_retry_irq(&dstats->syncp, start));
199 stats->tx_bytes += tbytes;
200 stats->tx_packets += tpkts;
201 stats->tx_dropped += tdrops;
202 stats->rx_bytes += rbytes;
203 stats->rx_packets += rpkts;
208 #if IS_ENABLED(CONFIG_IPV6)
209 static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
210 struct net_device *dev)
212 const struct ipv6hdr *iph = ipv6_hdr(skb);
213 struct net *net = dev_net(skb->dev);
214 struct flowi6 fl6 = {
215 /* needed to match OIF rule */
216 .flowi6_oif = dev->ifindex,
217 .flowi6_iif = LOOPBACK_IFINDEX,
220 .flowlabel = ip6_flowinfo(iph),
221 .flowi6_mark = skb->mark,
222 .flowi6_proto = iph->nexthdr,
223 .flowi6_flags = FLOWI_FLAG_L3MDEV_SRC | FLOWI_FLAG_SKIP_NH_OIF,
225 int ret = NET_XMIT_DROP;
226 struct dst_entry *dst;
227 struct dst_entry *dst_null = &net->ipv6.ip6_null_entry->dst;
229 dst = ip6_route_output(net, NULL, &fl6);
234 skb_dst_set(skb, dst);
236 ret = ip6_local_out(net, skb->sk, skb);
237 if (unlikely(net_xmit_eval(ret)))
238 dev->stats.tx_errors++;
240 ret = NET_XMIT_SUCCESS;
244 vrf_tx_error(dev, skb);
245 return NET_XMIT_DROP;
248 static netdev_tx_t vrf_process_v6_outbound(struct sk_buff *skb,
249 struct net_device *dev)
251 vrf_tx_error(dev, skb);
252 return NET_XMIT_DROP;
256 static int vrf_send_v4_prep(struct sk_buff *skb, struct flowi4 *fl4,
257 struct net_device *vrf_dev)
262 rt = ip_route_output_flow(dev_net(vrf_dev), fl4, NULL);
266 /* TO-DO: what about broadcast ? */
267 if (rt->rt_type != RTN_UNICAST && rt->rt_type != RTN_LOCAL) {
273 skb_dst_set(skb, &rt->dst);
279 static netdev_tx_t vrf_process_v4_outbound(struct sk_buff *skb,
280 struct net_device *vrf_dev)
282 struct iphdr *ip4h = ip_hdr(skb);
283 int ret = NET_XMIT_DROP;
284 struct flowi4 fl4 = {
285 /* needed to match OIF rule */
286 .flowi4_oif = vrf_dev->ifindex,
287 .flowi4_iif = LOOPBACK_IFINDEX,
288 .flowi4_tos = RT_TOS(ip4h->tos),
289 .flowi4_flags = FLOWI_FLAG_ANYSRC | FLOWI_FLAG_L3MDEV_SRC |
290 FLOWI_FLAG_SKIP_NH_OIF,
291 .daddr = ip4h->daddr,
294 if (vrf_send_v4_prep(skb, &fl4, vrf_dev))
298 ip4h->saddr = inet_select_addr(skb_dst(skb)->dev, 0,
302 ret = ip_local_out(dev_net(skb_dst(skb)->dev), skb->sk, skb);
303 if (unlikely(net_xmit_eval(ret)))
304 vrf_dev->stats.tx_errors++;
306 ret = NET_XMIT_SUCCESS;
311 vrf_tx_error(vrf_dev, skb);
315 static netdev_tx_t is_ip_tx_frame(struct sk_buff *skb, struct net_device *dev)
317 /* strip the ethernet header added for pass through VRF device */
318 __skb_pull(skb, skb_network_offset(skb));
320 switch (skb->protocol) {
321 case htons(ETH_P_IP):
322 return vrf_process_v4_outbound(skb, dev);
323 case htons(ETH_P_IPV6):
324 return vrf_process_v6_outbound(skb, dev);
326 vrf_tx_error(dev, skb);
327 return NET_XMIT_DROP;
331 static netdev_tx_t vrf_xmit(struct sk_buff *skb, struct net_device *dev)
333 netdev_tx_t ret = is_ip_tx_frame(skb, dev);
335 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
336 struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
338 u64_stats_update_begin(&dstats->syncp);
340 dstats->tx_bytes += skb->len;
341 u64_stats_update_end(&dstats->syncp);
343 this_cpu_inc(dev->dstats->tx_drps);
349 #if IS_ENABLED(CONFIG_IPV6)
350 static struct dst_entry *vrf_ip6_check(struct dst_entry *dst, u32 cookie)
355 static struct dst_ops vrf_dst_ops6 = {
357 .local_out = ip6_local_out,
358 .check = vrf_ip6_check,
360 .destroy = vrf_dst_destroy,
361 .default_advmss = vrf_default_advmss,
364 static int init_dst_ops6_kmem_cachep(void)
366 vrf_dst_ops6.kmem_cachep = kmem_cache_create("vrf_ip6_dst_cache",
367 sizeof(struct rt6_info),
372 if (!vrf_dst_ops6.kmem_cachep)
378 static void free_dst_ops6_kmem_cachep(void)
380 kmem_cache_destroy(vrf_dst_ops6.kmem_cachep);
383 static int vrf_input6(struct sk_buff *skb)
385 skb->dev->stats.rx_errors++;
390 /* modelled after ip6_finish_output2 */
391 static int vrf_finish_output6(struct net *net, struct sock *sk,
394 struct dst_entry *dst = skb_dst(skb);
395 struct net_device *dev = dst->dev;
396 struct neighbour *neigh;
397 struct in6_addr *nexthop;
400 skb->protocol = htons(ETH_P_IPV6);
404 nexthop = rt6_nexthop((struct rt6_info *)dst, &ipv6_hdr(skb)->daddr);
405 neigh = __ipv6_neigh_lookup_noref(dst->dev, nexthop);
406 if (unlikely(!neigh))
407 neigh = __neigh_create(&nd_tbl, nexthop, dst->dev, false);
408 if (!IS_ERR(neigh)) {
409 ret = dst_neigh_output(dst, neigh, skb);
410 rcu_read_unlock_bh();
413 rcu_read_unlock_bh();
415 IP6_INC_STATS(dev_net(dst->dev),
416 ip6_dst_idev(dst), IPSTATS_MIB_OUTNOROUTES);
421 /* modelled after ip6_output */
422 static int vrf_output6(struct net *net, struct sock *sk, struct sk_buff *skb)
424 return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
425 net, sk, skb, NULL, skb_dst(skb)->dev,
427 !(IP6CB(skb)->flags & IP6SKB_REROUTED));
430 static void vrf_rt6_destroy(struct net_vrf *vrf)
432 dst_destroy(&vrf->rt6->dst);
433 free_percpu(vrf->rt6->rt6i_pcpu);
437 static int vrf_rt6_create(struct net_device *dev)
439 struct net_vrf *vrf = netdev_priv(dev);
440 struct dst_entry *dst;
441 struct rt6_info *rt6;
445 rt6 = dst_alloc(&vrf_dst_ops6, dev, 0,
447 (DST_HOST | DST_NOPOLICY | DST_NOXFRM));
453 rt6->rt6i_pcpu = alloc_percpu_gfp(struct rt6_info *, GFP_KERNEL);
454 if (!rt6->rt6i_pcpu) {
458 for_each_possible_cpu(cpu) {
459 struct rt6_info **p = per_cpu_ptr(rt6->rt6i_pcpu, cpu);
463 memset(dst + 1, 0, sizeof(*rt6) - sizeof(*dst));
465 INIT_LIST_HEAD(&rt6->rt6i_siblings);
466 INIT_LIST_HEAD(&rt6->rt6i_uncached);
468 rt6->dst.input = vrf_input6;
469 rt6->dst.output = vrf_output6;
471 rt6->rt6i_table = fib6_get_table(dev_net(dev), vrf->tb_id);
473 atomic_set(&rt6->dst.__refcnt, 2);
481 static int init_dst_ops6_kmem_cachep(void)
486 static void free_dst_ops6_kmem_cachep(void)
490 static void vrf_rt6_destroy(struct net_vrf *vrf)
494 static int vrf_rt6_create(struct net_device *dev)
500 /* modelled after ip_finish_output2 */
501 static int vrf_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb)
503 struct dst_entry *dst = skb_dst(skb);
504 struct rtable *rt = (struct rtable *)dst;
505 struct net_device *dev = dst->dev;
506 unsigned int hh_len = LL_RESERVED_SPACE(dev);
507 struct neighbour *neigh;
511 /* Be paranoid, rather than too clever. */
512 if (unlikely(skb_headroom(skb) < hh_len && dev->header_ops)) {
513 struct sk_buff *skb2;
515 skb2 = skb_realloc_headroom(skb, LL_RESERVED_SPACE(dev));
521 skb_set_owner_w(skb2, skb->sk);
529 nexthop = (__force u32)rt_nexthop(rt, ip_hdr(skb)->daddr);
530 neigh = __ipv4_neigh_lookup_noref(dev, nexthop);
531 if (unlikely(!neigh))
532 neigh = __neigh_create(&arp_tbl, &nexthop, dev, false);
534 ret = dst_neigh_output(dst, neigh, skb);
536 rcu_read_unlock_bh();
538 if (unlikely(ret < 0))
539 vrf_tx_error(skb->dev, skb);
543 static int vrf_output(struct net *net, struct sock *sk, struct sk_buff *skb)
545 struct net_device *dev = skb_dst(skb)->dev;
547 IP_UPD_PO_STATS(net, IPSTATS_MIB_OUT, skb->len);
550 skb->protocol = htons(ETH_P_IP);
552 return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING,
553 net, sk, skb, NULL, dev,
555 !(IPCB(skb)->flags & IPSKB_REROUTED));
558 static void vrf_rtable_destroy(struct net_vrf *vrf)
560 struct dst_entry *dst = (struct dst_entry *)vrf->rth;
566 static struct rtable *vrf_rtable_create(struct net_device *dev)
568 struct net_vrf *vrf = netdev_priv(dev);
571 rth = dst_alloc(&vrf_dst_ops, dev, 2,
573 (DST_HOST | DST_NOPOLICY | DST_NOXFRM));
575 rth->dst.output = vrf_output;
576 rth->rt_genid = rt_genid_ipv4(dev_net(dev));
578 rth->rt_type = RTN_UNICAST;
579 rth->rt_is_input = 0;
583 rth->rt_uses_gateway = 0;
584 rth->rt_table_id = vrf->tb_id;
585 INIT_LIST_HEAD(&rth->rt_uncached);
586 rth->rt_uncached_list = NULL;
592 /**************************** device handling ********************/
594 /* cycle interface to flush neighbor cache and move routes across tables */
595 static void cycle_netdev(struct net_device *dev)
597 unsigned int flags = dev->flags;
600 if (!netif_running(dev))
603 ret = dev_change_flags(dev, flags & ~IFF_UP);
605 ret = dev_change_flags(dev, flags);
609 "Failed to cycle device %s; route tables might be wrong!\n",
614 static int do_vrf_add_slave(struct net_device *dev, struct net_device *port_dev)
618 /* register the packet handler for slave ports */
619 ret = netdev_rx_handler_register(port_dev, vrf_handle_frame, dev);
622 "Device %s failed to register rx_handler\n",
627 ret = netdev_master_upper_dev_link(port_dev, dev, NULL, NULL);
631 port_dev->priv_flags |= IFF_L3MDEV_SLAVE;
632 cycle_netdev(port_dev);
637 netdev_rx_handler_unregister(port_dev);
642 static int vrf_add_slave(struct net_device *dev, struct net_device *port_dev)
644 if (netif_is_l3_master(port_dev) || netif_is_l3_slave(port_dev))
647 return do_vrf_add_slave(dev, port_dev);
650 /* inverse of do_vrf_add_slave */
651 static int do_vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
653 netdev_upper_dev_unlink(port_dev, dev);
654 port_dev->priv_flags &= ~IFF_L3MDEV_SLAVE;
656 netdev_rx_handler_unregister(port_dev);
658 cycle_netdev(port_dev);
663 static int vrf_del_slave(struct net_device *dev, struct net_device *port_dev)
665 return do_vrf_del_slave(dev, port_dev);
668 static void vrf_dev_uninit(struct net_device *dev)
670 struct net_vrf *vrf = netdev_priv(dev);
671 struct net_device *port_dev;
672 struct list_head *iter;
674 vrf_rtable_destroy(vrf);
675 vrf_rt6_destroy(vrf);
677 netdev_for_each_lower_dev(dev, port_dev, iter)
678 vrf_del_slave(dev, port_dev);
680 free_percpu(dev->dstats);
684 static int vrf_dev_init(struct net_device *dev)
686 struct net_vrf *vrf = netdev_priv(dev);
688 dev->dstats = netdev_alloc_pcpu_stats(struct pcpu_dstats);
692 /* create the default dst which points back to us */
693 vrf->rth = vrf_rtable_create(dev);
697 if (vrf_rt6_create(dev) != 0)
700 dev->flags = IFF_MASTER | IFF_NOARP;
705 vrf_rtable_destroy(vrf);
707 free_percpu(dev->dstats);
713 static const struct net_device_ops vrf_netdev_ops = {
714 .ndo_init = vrf_dev_init,
715 .ndo_uninit = vrf_dev_uninit,
716 .ndo_start_xmit = vrf_xmit,
717 .ndo_get_stats64 = vrf_get_stats64,
718 .ndo_add_slave = vrf_add_slave,
719 .ndo_del_slave = vrf_del_slave,
722 static u32 vrf_fib_table(const struct net_device *dev)
724 struct net_vrf *vrf = netdev_priv(dev);
729 static struct rtable *vrf_get_rtable(const struct net_device *dev,
730 const struct flowi4 *fl4)
732 struct rtable *rth = NULL;
734 if (!(fl4->flowi4_flags & FLOWI_FLAG_L3MDEV_SRC)) {
735 struct net_vrf *vrf = netdev_priv(dev);
738 atomic_inc(&rth->dst.__refcnt);
744 /* called under rcu_read_lock */
745 static int vrf_get_saddr(struct net_device *dev, struct flowi4 *fl4)
747 struct fib_result res = { .tclassid = 0 };
748 struct net *net = dev_net(dev);
749 u32 orig_tos = fl4->flowi4_tos;
750 u8 flags = fl4->flowi4_flags;
751 u8 scope = fl4->flowi4_scope;
752 u8 tos = RT_FL_TOS(fl4);
755 if (unlikely(!fl4->daddr))
758 fl4->flowi4_flags |= FLOWI_FLAG_SKIP_NH_OIF;
759 fl4->flowi4_iif = LOOPBACK_IFINDEX;
760 fl4->flowi4_tos = tos & IPTOS_RT_MASK;
761 fl4->flowi4_scope = ((tos & RTO_ONLINK) ?
762 RT_SCOPE_LINK : RT_SCOPE_UNIVERSE);
764 rc = fib_lookup(net, fl4, &res, 0);
766 if (res.type == RTN_LOCAL)
767 fl4->saddr = res.fi->fib_prefsrc ? : fl4->daddr;
769 fib_select_path(net, &res, fl4, -1);
772 fl4->flowi4_flags = flags;
773 fl4->flowi4_tos = orig_tos;
774 fl4->flowi4_scope = scope;
779 #if IS_ENABLED(CONFIG_IPV6)
780 static struct dst_entry *vrf_get_rt6_dst(const struct net_device *dev,
781 const struct flowi6 *fl6)
783 struct rt6_info *rt = NULL;
785 if (!(fl6->flowi6_flags & FLOWI_FLAG_L3MDEV_SRC)) {
786 struct net_vrf *vrf = netdev_priv(dev);
789 atomic_inc(&rt->dst.__refcnt);
792 return (struct dst_entry *)rt;
796 static const struct l3mdev_ops vrf_l3mdev_ops = {
797 .l3mdev_fib_table = vrf_fib_table,
798 .l3mdev_get_rtable = vrf_get_rtable,
799 .l3mdev_get_saddr = vrf_get_saddr,
800 #if IS_ENABLED(CONFIG_IPV6)
801 .l3mdev_get_rt6_dst = vrf_get_rt6_dst,
805 static void vrf_get_drvinfo(struct net_device *dev,
806 struct ethtool_drvinfo *info)
808 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
809 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
812 static const struct ethtool_ops vrf_ethtool_ops = {
813 .get_drvinfo = vrf_get_drvinfo,
816 static void vrf_setup(struct net_device *dev)
820 /* Initialize the device structure. */
821 dev->netdev_ops = &vrf_netdev_ops;
822 dev->l3mdev_ops = &vrf_l3mdev_ops;
823 dev->ethtool_ops = &vrf_ethtool_ops;
824 dev->destructor = free_netdev;
826 /* Fill in device structure with ethernet-generic values. */
827 eth_hw_addr_random(dev);
829 /* don't acquire vrf device's netif_tx_lock when transmitting */
830 dev->features |= NETIF_F_LLTX;
832 /* don't allow vrf devices to change network namespaces. */
833 dev->features |= NETIF_F_NETNS_LOCAL;
836 static int vrf_validate(struct nlattr *tb[], struct nlattr *data[])
838 if (tb[IFLA_ADDRESS]) {
839 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
841 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
842 return -EADDRNOTAVAIL;
847 static void vrf_dellink(struct net_device *dev, struct list_head *head)
849 unregister_netdevice_queue(dev, head);
852 static int vrf_newlink(struct net *src_net, struct net_device *dev,
853 struct nlattr *tb[], struct nlattr *data[])
855 struct net_vrf *vrf = netdev_priv(dev);
857 if (!data || !data[IFLA_VRF_TABLE])
860 vrf->tb_id = nla_get_u32(data[IFLA_VRF_TABLE]);
862 dev->priv_flags |= IFF_L3MDEV_MASTER;
864 return register_netdevice(dev);
867 static size_t vrf_nl_getsize(const struct net_device *dev)
869 return nla_total_size(sizeof(u32)); /* IFLA_VRF_TABLE */
872 static int vrf_fillinfo(struct sk_buff *skb,
873 const struct net_device *dev)
875 struct net_vrf *vrf = netdev_priv(dev);
877 return nla_put_u32(skb, IFLA_VRF_TABLE, vrf->tb_id);
880 static const struct nla_policy vrf_nl_policy[IFLA_VRF_MAX + 1] = {
881 [IFLA_VRF_TABLE] = { .type = NLA_U32 },
884 static struct rtnl_link_ops vrf_link_ops __read_mostly = {
886 .priv_size = sizeof(struct net_vrf),
888 .get_size = vrf_nl_getsize,
889 .policy = vrf_nl_policy,
890 .validate = vrf_validate,
891 .fill_info = vrf_fillinfo,
893 .newlink = vrf_newlink,
894 .dellink = vrf_dellink,
896 .maxtype = IFLA_VRF_MAX,
899 static int vrf_device_event(struct notifier_block *unused,
900 unsigned long event, void *ptr)
902 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
904 /* only care about unregister events to drop slave references */
905 if (event == NETDEV_UNREGISTER) {
906 struct net_device *vrf_dev;
908 if (!netif_is_l3_slave(dev))
911 vrf_dev = netdev_master_upper_dev_get(dev);
912 vrf_del_slave(vrf_dev, dev);
918 static struct notifier_block vrf_notifier_block __read_mostly = {
919 .notifier_call = vrf_device_event,
922 static int __init vrf_init_module(void)
926 vrf_dst_ops.kmem_cachep =
927 kmem_cache_create("vrf_ip_dst_cache",
928 sizeof(struct rtable), 0,
932 if (!vrf_dst_ops.kmem_cachep)
935 rc = init_dst_ops6_kmem_cachep();
939 register_netdevice_notifier(&vrf_notifier_block);
941 rc = rtnl_link_register(&vrf_link_ops);
948 unregister_netdevice_notifier(&vrf_notifier_block);
949 free_dst_ops6_kmem_cachep();
951 kmem_cache_destroy(vrf_dst_ops.kmem_cachep);
955 static void __exit vrf_cleanup_module(void)
957 rtnl_link_unregister(&vrf_link_ops);
958 unregister_netdevice_notifier(&vrf_notifier_block);
959 kmem_cache_destroy(vrf_dst_ops.kmem_cachep);
960 free_dst_ops6_kmem_cachep();
963 module_init(vrf_init_module);
964 module_exit(vrf_cleanup_module);
965 MODULE_AUTHOR("Shrijeet Mukherjee, David Ahern");
966 MODULE_DESCRIPTION("Device driver to instantiate VRF domains");
967 MODULE_LICENSE("GPL");
968 MODULE_ALIAS_RTNL_LINK(DRV_NAME);
969 MODULE_VERSION(DRV_VERSION);