bgp_nexthop.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:31k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* BGP nexthop scan
  2.    Copyright (C) 2000 Kunihiro Ishiguro
  3. This file is part of GNU Zebra.
  4. GNU Zebra is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option) any
  7. later version.
  8. GNU Zebra is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Zebra; see the file COPYING.  If not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  15. 02111-1307, USA.  */
  16. #include <zebra.h>
  17. #include "command.h"
  18. #include "thread.h"
  19. #include "prefix.h"
  20. #include "zclient.h"
  21. #include "stream.h"
  22. #include "network.h"
  23. #include "log.h"
  24. #include "memory.h"
  25. #include "bgpd/bgpd.h"
  26. #include "bgpd/bgp_table.h"
  27. #include "bgpd/bgp_route.h"
  28. #include "bgpd/bgp_attr.h"
  29. #include "bgpd/bgp_nexthop.h"
  30. #include "bgpd/bgp_debug.h"
  31. #include "bgpd/bgp_damp.h"
  32. #include "zebra/rib.h"
  33. #include "zebra/zserv.h" /* For ZEBRA_SERV_PATH. */
  34. struct bgp_nexthop_cache *zlookup_query (struct in_addr);
  35. #ifdef HAVE_IPV6
  36. struct bgp_nexthop_cache *zlookup_query_ipv6 (struct in6_addr *);
  37. #endif /* HAVE_IPV6 */
  38. /* Only one BGP scan thread are activated at the same time. */
  39. struct thread *bgp_scan_thread = NULL;
  40. /* BGP import thread */
  41. struct thread *bgp_import_thread = NULL;
  42. /* BGP scan interval. */
  43. int bgp_scan_interval;
  44. /* BGP import interval. */
  45. int bgp_import_interval;
  46. /* Route table for next-hop lookup cache. */
  47. struct bgp_table *bgp_nexthop_cache_ipv4;
  48. struct bgp_table *cache1;
  49. struct bgp_table *cache2;
  50. /* Route table for next-hop lookup cache. */
  51. struct bgp_table *bgp_nexthop_cache_ipv6;
  52. struct bgp_table *cache6_1;
  53. struct bgp_table *cache6_2;
  54. /* Route table for connected route. */
  55. struct bgp_table *bgp_connected_ipv4;
  56. /* Route table for connected route. */
  57. struct bgp_table *bgp_connected_ipv6;
  58. /* BGP nexthop lookup query client. */
  59. static struct zclient *zlookup = NULL;
  60. /* BGP process function. */
  61. int bgp_process (struct bgp *, struct bgp_node *, afi_t, safi_t);
  62. /* Add nexthop to the end of the list.  */
  63. void
  64. bnc_nexthop_add (struct bgp_nexthop_cache *bnc, struct nexthop *nexthop)
  65. {
  66.   struct nexthop *last;
  67.   for (last = bnc->nexthop; last && last->next; last = last->next)
  68.     ;
  69.   if (last)
  70.     last->next = nexthop;
  71.   else
  72.     bnc->nexthop = nexthop;
  73.   nexthop->prev = last;
  74. }
  75. void
  76. bnc_nexthop_free (struct bgp_nexthop_cache *bnc)
  77. {
  78.   struct nexthop *nexthop;
  79.   struct nexthop *next = NULL;
  80.   for (nexthop = bnc->nexthop; nexthop; nexthop = next)
  81.     {
  82.       next = nexthop->next;
  83.       XFREE (MTYPE_NEXTHOP, nexthop);
  84.     }
  85. }
  86. struct bgp_nexthop_cache *
  87. bnc_new ()
  88. {
  89.   struct bgp_nexthop_cache *new;
  90.   new = XMALLOC (MTYPE_BGP_NEXTHOP_CACHE, sizeof (struct bgp_nexthop_cache));
  91.   memset (new, 0, sizeof (struct bgp_nexthop_cache));
  92.   return new;
  93. }
  94. void
  95. bnc_free (struct bgp_nexthop_cache *bnc)
  96. {
  97.   bnc_nexthop_free (bnc);
  98.   XFREE (MTYPE_BGP_NEXTHOP_CACHE, bnc);
  99. }
  100. int
  101. bgp_nexthop_same (struct nexthop *next1, struct nexthop *next2)
  102. {
  103.   if (next1->type != next2->type)
  104.     return 0;
  105.   switch (next1->type)
  106.     {
  107.     case ZEBRA_NEXTHOP_IPV4:
  108.       if (! IPV4_ADDR_SAME (&next1->gate.ipv4, &next2->gate.ipv4))
  109. return 0;
  110.       break;
  111.     case ZEBRA_NEXTHOP_IFINDEX:
  112.     case ZEBRA_NEXTHOP_IFNAME:
  113.       if (next1->ifindex != next2->ifindex)
  114. return 0;
  115.       break;
  116. #ifdef HAVE_IPV6
  117.     case ZEBRA_NEXTHOP_IPV6:
  118.       if (! IPV6_ADDR_SAME (&next1->gate.ipv6, &next2->gate.ipv6))
  119. return 0;
  120.       break;
  121.     case ZEBRA_NEXTHOP_IPV6_IFINDEX:
  122.     case ZEBRA_NEXTHOP_IPV6_IFNAME:
  123.       if (! IPV6_ADDR_SAME (&next1->gate.ipv6, &next2->gate.ipv6))
  124. return 0;
  125.       if (next1->ifindex != next2->ifindex)
  126. return 0;
  127.       break;
  128. #endif /* HAVE_IPV6 */
  129.     }
  130.   return 1;
  131. }
  132. int
  133. bgp_nexthop_cache_changed (struct bgp_nexthop_cache *bnc1,
  134.    struct bgp_nexthop_cache *bnc2)
  135. {
  136.   int i;
  137.   struct nexthop *next1, *next2;
  138.   if (bnc1->nexthop_num != bnc2->nexthop_num)
  139.     return 1;
  140.   next1 = bnc1->nexthop;
  141.   next2 = bnc2->nexthop;
  142.   for (i = 0; i < bnc1->nexthop_num; i++)
  143.     {
  144.       if (! bgp_nexthop_same (next1, next2))
  145. return 1;
  146.       next1 = next1->next;
  147.       next2 = next2->next;
  148.     }
  149.   return 0;
  150. }
  151. /* If nexthop exists on connected network return 1. */
  152. int
  153. bgp_nexthop_check_ebgp (afi_t afi, struct attr *attr)
  154. {
  155.   struct bgp_node *rn;
  156.   /* If zebra is not enabled return */
  157.   if (zlookup->sock < 0)
  158.     return 1;
  159.   /* Lookup the address is onlink or not. */
  160.   if (afi == AFI_IP)
  161.     {
  162.       rn = bgp_node_match_ipv4 (bgp_connected_ipv4, &attr->nexthop);
  163.       if (rn)
  164. {
  165.   bgp_unlock_node (rn);
  166.   return 1;
  167. }
  168.     }
  169. #ifdef HAVE_IPV6
  170.   else if (afi == AFI_IP6)
  171.     {
  172.       if (attr->mp_nexthop_len == 32)
  173. return 1;
  174.       else if (attr->mp_nexthop_len == 16)
  175. {
  176.   if (IN6_IS_ADDR_LINKLOCAL (&attr->mp_nexthop_global))
  177.     return 1;
  178.   rn = bgp_node_match_ipv6 (bgp_connected_ipv6,
  179.       &attr->mp_nexthop_global);
  180.   if (rn)
  181.     {
  182.       bgp_unlock_node (rn);
  183.       return 1;
  184.     }
  185. }
  186.     }
  187. #endif /* HAVE_IPV6 */
  188.   return 0;
  189. }
  190. #ifdef HAVE_IPV6
  191. /* Check specified next-hop is reachable or not. */
  192. int
  193. bgp_nexthop_lookup_ipv6 (struct peer *peer, struct bgp_info *ri, int *changed,
  194.  int *metricchanged)
  195. {
  196.   struct bgp_node *rn;
  197.   struct prefix p;
  198.   struct bgp_nexthop_cache *bnc;
  199.   struct attr *attr;
  200.   /* If lookup is not enabled, return valid. */
  201.   if (zlookup->sock < 0)
  202.     {
  203.       ri->igpmetric = 0;
  204.       return 1;
  205.     }
  206.   /* Only check IPv6 global address only nexthop. */
  207.   attr = ri->attr;
  208.   if (attr->mp_nexthop_len != 16 
  209.       || IN6_IS_ADDR_LINKLOCAL (&attr->mp_nexthop_global))
  210.     return 1;
  211.   memset (&p, 0, sizeof (struct prefix));
  212.   p.family = AF_INET6;
  213.   p.prefixlen = IPV6_MAX_BITLEN;
  214.   p.u.prefix6 = attr->mp_nexthop_global;
  215.   /* IBGP or ebgp-multihop */
  216.   rn = bgp_node_get (bgp_nexthop_cache_ipv6, &p);
  217.   if (rn->info)
  218.     {
  219.       bnc = rn->info;
  220.       bgp_unlock_node (rn);
  221.     }
  222.   else
  223.     {
  224.       bnc = zlookup_query_ipv6 (&attr->mp_nexthop_global);
  225.       if (bnc)
  226. {
  227.   struct bgp_table *old;
  228.   struct bgp_node *oldrn;
  229.   struct bgp_nexthop_cache *oldbnc;
  230.   if (changed)
  231.     {
  232.       if (bgp_nexthop_cache_ipv6 == cache6_1)
  233. old = cache6_2;
  234.       else
  235. old = cache6_1;
  236.       oldrn = bgp_node_lookup (old, &p);
  237.       if (oldrn)
  238. {
  239.   oldbnc = oldrn->info;
  240.   bnc->changed = bgp_nexthop_cache_changed (bnc, oldbnc);
  241.   if (bnc->metric != oldbnc->metric)
  242.     bnc->metricchanged = 1;
  243. }
  244.     }
  245. }
  246.       else
  247. {
  248.   bnc = bnc_new ();
  249.   bnc->valid = 0;
  250. }
  251.       rn->info = bnc;
  252.     }
  253.   if (changed)
  254.     *changed = bnc->changed;
  255.   if (metricchanged)
  256.     *metricchanged = bnc->metricchanged;
  257.   if (bnc->valid)
  258.     ri->igpmetric = bnc->metric;
  259.   else
  260.     ri->igpmetric = 0;
  261.   return bnc->valid;
  262. }
  263. #endif /* HAVE_IPV6 */
  264. /* Check specified next-hop is reachable or not. */
  265. int
  266. bgp_nexthop_lookup (afi_t afi, struct peer *peer, struct bgp_info *ri,
  267.     int *changed, int *metricchanged)
  268. {
  269.   struct bgp_node *rn;
  270.   struct prefix p;
  271.   struct bgp_nexthop_cache *bnc;
  272.   struct in_addr addr;
  273.   /* If lookup is not enabled, return valid. */
  274.   if (zlookup->sock < 0)
  275.     {
  276.       ri->igpmetric = 0;
  277.       return 1;
  278.     }
  279. #ifdef HAVE_IPV6
  280.   if (afi == AFI_IP6)
  281.     return bgp_nexthop_lookup_ipv6 (peer, ri, changed, metricchanged);
  282. #endif /* HAVE_IPV6 */
  283.   addr = ri->attr->nexthop;
  284.   memset (&p, 0, sizeof (struct prefix));
  285.   p.family = AF_INET;
  286.   p.prefixlen = IPV4_MAX_BITLEN;
  287.   p.u.prefix4 = addr;
  288.   /* IBGP or ebgp-multihop */
  289.   rn = bgp_node_get (bgp_nexthop_cache_ipv4, &p);
  290.   if (rn->info)
  291.     {
  292.       bnc = rn->info;
  293.       bgp_unlock_node (rn);
  294.     }
  295.   else
  296.     {
  297.       bnc = zlookup_query (addr);
  298.       if (bnc)
  299. {
  300.   struct bgp_table *old;
  301.   struct bgp_node *oldrn;
  302.   struct bgp_nexthop_cache *oldbnc;
  303.   if (changed)
  304.     {
  305.       if (bgp_nexthop_cache_ipv4 == cache1)
  306. old = cache2;
  307.       else
  308. old = cache1;
  309.       oldrn = bgp_node_lookup (old, &p);
  310.       if (oldrn)
  311. {
  312.   oldbnc = oldrn->info;
  313.   bnc->changed = bgp_nexthop_cache_changed (bnc, oldbnc);
  314.   if (bnc->metric != oldbnc->metric)
  315.     bnc->metricchanged = 1;
  316. }
  317.     }
  318. }
  319.       else
  320. {
  321.   bnc = bnc_new ();
  322.   bnc->valid = 0;
  323. }
  324.       rn->info = bnc;
  325.     }
  326.   if (changed)
  327.     *changed = bnc->changed;
  328.   if (metricchanged)
  329.     *metricchanged = bnc->metricchanged;
  330.   if (bnc->valid)
  331.     ri->igpmetric = bnc->metric;
  332.   else
  333.     ri->igpmetric = 0;
  334.   return bnc->valid;
  335. }
  336. /* Reset and free all BGP nexthop cache. */
  337. void
  338. bgp_nexthop_cache_reset (struct bgp_table *table)
  339. {
  340.   struct bgp_node *rn;
  341.   struct bgp_nexthop_cache *bnc;
  342.   for (rn = bgp_table_top (table); rn; rn = bgp_route_next (rn))
  343.     if ((bnc = rn->info) != NULL)
  344.       {
  345. bnc_free (bnc);
  346. rn->info = NULL;
  347. bgp_unlock_node (rn);
  348.       }
  349. }
  350. void
  351. bgp_scan_ipv4 ()
  352. {
  353.   struct bgp_node *rn;
  354.   struct bgp *bgp;
  355.   struct bgp_info *bi;
  356.   struct bgp_info *next;
  357.   struct peer *peer;
  358.   struct listnode *nn;
  359.   int valid;
  360.   int current;
  361.   int changed;
  362.   int metricchanged;
  363.   /* Change cache. */
  364.   if (bgp_nexthop_cache_ipv4 == cache1)
  365.     bgp_nexthop_cache_ipv4 = cache2;
  366.   else
  367.     bgp_nexthop_cache_ipv4 = cache1;
  368.   /* Get default bgp. */
  369.   bgp = bgp_get_default ();
  370.   if (bgp == NULL)
  371.     return;
  372.   /* Maximum prefix check */
  373.   LIST_LOOP (bgp->peer, peer, nn)
  374.     {
  375.       if (peer->status != Established)
  376. continue;
  377.       if (peer->afc[AFI_IP][SAFI_UNICAST])
  378. bgp_maximum_prefix_overflow (peer, AFI_IP, SAFI_UNICAST, 1);
  379.       if (peer->afc[AFI_IP][SAFI_MULTICAST])
  380. bgp_maximum_prefix_overflow (peer, AFI_IP, SAFI_MULTICAST, 1);
  381.       if (peer->afc[AFI_IP][SAFI_MPLS_VPN])
  382. bgp_maximum_prefix_overflow (peer, AFI_IP, SAFI_MPLS_VPN, 1);
  383.     }
  384.   for (rn = bgp_table_top (bgp->rib[AFI_IP][SAFI_UNICAST]); rn;
  385.        rn = bgp_route_next (rn))
  386.     {
  387.       for (bi = rn->info; bi; bi = next)
  388. {
  389.   next = bi->next;
  390.   if (bi->type == ZEBRA_ROUTE_BGP && bi->sub_type == BGP_ROUTE_NORMAL)
  391.     {
  392.       changed = 0;
  393.       metricchanged = 0;
  394.       if (peer_sort (bi->peer) == BGP_PEER_EBGP && bi->peer->ttl == 1)
  395. valid = bgp_nexthop_check_ebgp (AFI_IP, bi->attr);
  396.       else
  397. valid = bgp_nexthop_lookup (AFI_IP, bi->peer, bi,
  398.     &changed, &metricchanged);
  399.       current = CHECK_FLAG (bi->flags, BGP_INFO_VALID) ? 1 : 0;
  400.       if (changed)
  401. SET_FLAG (bi->flags, BGP_INFO_IGP_CHANGED);
  402.       else
  403. UNSET_FLAG (bi->flags, BGP_INFO_IGP_CHANGED);
  404.       if (valid != current)
  405. {
  406.   if (CHECK_FLAG (bi->flags, BGP_INFO_VALID))
  407.     {
  408.       bgp_aggregate_decrement (bgp, &rn->p, bi,
  409.        AFI_IP, SAFI_UNICAST);
  410.       UNSET_FLAG (bi->flags, BGP_INFO_VALID);
  411.     }
  412.   else
  413.     {
  414.       SET_FLAG (bi->flags, BGP_INFO_VALID);
  415.       bgp_aggregate_increment (bgp, &rn->p, bi,
  416.        AFI_IP, SAFI_UNICAST);
  417.     }
  418. }
  419.               if (CHECK_FLAG (bgp->af_flags[AFI_IP][SAFI_UNICAST],
  420.   BGP_CONFIG_DAMPENING)
  421.                   &&  bi->damp_info )
  422.                 if (bgp_damp_scan (bi, AFI_IP, SAFI_UNICAST))
  423.   bgp_aggregate_increment (bgp, &rn->p, bi,
  424.    AFI_IP, SAFI_UNICAST);
  425.     }
  426. }
  427.       bgp_process (bgp, rn, AFI_IP, SAFI_UNICAST);
  428.     }
  429.   /* Flash old cache. */
  430.   if (bgp_nexthop_cache_ipv4 == cache1)
  431.     bgp_nexthop_cache_reset (cache2);
  432.   else
  433.     bgp_nexthop_cache_reset (cache1);
  434.   if (BGP_DEBUG (events, EVENTS))
  435.     zlog_info ("scanning IPv4 Unicast routing tables");
  436. }
  437. #ifdef HAVE_IPV6
  438. void
  439. bgp_scan_ipv6 ()
  440. {
  441.   struct bgp_node *rn;
  442.   struct bgp *bgp;
  443.   struct bgp_info *bi;
  444.   struct bgp_info *next;
  445.   struct peer *peer;
  446.   struct listnode *nn;
  447.   int valid;
  448.   int current;
  449.   int changed;
  450.   int metricchanged;
  451.   /* Change cache. */
  452.   if (bgp_nexthop_cache_ipv6 == cache6_1)
  453.     bgp_nexthop_cache_ipv6 = cache6_2;
  454.   else
  455.     bgp_nexthop_cache_ipv6 = cache6_1;
  456.   /* Get default bgp. */
  457.   bgp = bgp_get_default ();
  458.   if (bgp == NULL)
  459.     return;
  460.   /* Maximum prefix check */
  461.   LIST_LOOP (bgp->peer, peer, nn)
  462.     {
  463.       if (peer->status != Established)
  464. continue;
  465.       if (peer->afc[AFI_IP6][SAFI_UNICAST])
  466. bgp_maximum_prefix_overflow (peer, AFI_IP6, SAFI_UNICAST, 1);
  467.       if (peer->afc[AFI_IP6][SAFI_MULTICAST])
  468. bgp_maximum_prefix_overflow (peer, AFI_IP6, SAFI_MULTICAST, 1);
  469.     }
  470.   for (rn = bgp_table_top (bgp->rib[AFI_IP6][SAFI_UNICAST]); rn;
  471.        rn = bgp_route_next (rn))
  472.     {
  473.       for (bi = rn->info; bi; bi = next)
  474. {
  475.   next = bi->next;
  476.   if (bi->type == ZEBRA_ROUTE_BGP && bi->sub_type == BGP_ROUTE_NORMAL)
  477.     {
  478.       changed = 0;
  479.       metricchanged = 0;
  480.       if (peer_sort (bi->peer) == BGP_PEER_EBGP && bi->peer->ttl == 1)
  481. valid = 1;
  482.       else
  483. valid = bgp_nexthop_lookup_ipv6 (bi->peer, bi,
  484.  &changed, &metricchanged);
  485.       current = CHECK_FLAG (bi->flags, BGP_INFO_VALID) ? 1 : 0;
  486.       if (changed)
  487. SET_FLAG (bi->flags, BGP_INFO_IGP_CHANGED);
  488.       else
  489. UNSET_FLAG (bi->flags, BGP_INFO_IGP_CHANGED);
  490.       if (valid != current)
  491. {
  492.   if (CHECK_FLAG (bi->flags, BGP_INFO_VALID))
  493.     {
  494.       bgp_aggregate_decrement (bgp, &rn->p, bi,
  495.        AFI_IP6, SAFI_UNICAST);
  496.       UNSET_FLAG (bi->flags, BGP_INFO_VALID);
  497.     }
  498.   else
  499.     {
  500.       SET_FLAG (bi->flags, BGP_INFO_VALID);
  501.       bgp_aggregate_increment (bgp, &rn->p, bi,
  502.        AFI_IP6, SAFI_UNICAST);
  503.     }
  504. }
  505.               if (CHECK_FLAG (bgp->af_flags[AFI_IP6][SAFI_UNICAST],
  506.   BGP_CONFIG_DAMPENING)
  507.                   &&  bi->damp_info )
  508.                 if (bgp_damp_scan (bi, AFI_IP6, SAFI_UNICAST))
  509.   bgp_aggregate_increment (bgp, &rn->p, bi,
  510.    AFI_IP6, SAFI_UNICAST);
  511.     }
  512. }
  513.       bgp_process (bgp, rn, AFI_IP6, SAFI_UNICAST);
  514.     }
  515.   /* Flash old cache. */
  516.   if (bgp_nexthop_cache_ipv6 == cache6_1)
  517.     bgp_nexthop_cache_reset (cache6_2);
  518.   else
  519.     bgp_nexthop_cache_reset (cache6_1);
  520.   if (BGP_DEBUG (events, EVENTS))
  521.     zlog_info ("scanning IPv6 Unicast routing tables");
  522. }
  523. #endif /* HAVE_IPV6 */
  524. /* BGP scan thread.  This thread check nexthop reachability. */
  525. int
  526. bgp_scan (struct thread *t)
  527. {
  528.   bgp_scan_thread =
  529.     thread_add_timer (master, bgp_scan, NULL, bgp_scan_interval);
  530.   if (BGP_DEBUG (events, EVENTS))
  531.     zlog_info ("Performing BGP general scanning");
  532.   bgp_scan_ipv4 ();
  533. #ifdef HAVE_IPV6
  534.   bgp_scan_ipv6 ();
  535. #endif /* HAVE_IPV6 */
  536.   return 0;
  537. }
  538. struct bgp_connected
  539. {
  540.   unsigned int refcnt;
  541. };
  542. void
  543. bgp_connected_add (struct connected *ifc)
  544. {
  545.   struct prefix p;
  546.   struct prefix *addr;
  547.   struct prefix *dest;
  548.   struct interface *ifp;
  549.   struct bgp_node *rn;
  550.   struct bgp_connected *bc;
  551.   ifp = ifc->ifp;
  552.   if (! ifp)
  553.     return;
  554.   if (if_is_loopback (ifp))
  555.     return;
  556.   addr = ifc->address;
  557.   dest = ifc->destination;
  558.   if (addr->family == AF_INET)
  559.     {
  560.       memset (&p, 0, sizeof (struct prefix));
  561.       p.family = AF_INET;
  562.       p.prefixlen = addr->prefixlen;
  563.       if (if_is_pointopoint (ifp))
  564. p.u.prefix4 = dest->u.prefix4;
  565.       else
  566. p.u.prefix4 = addr->u.prefix4;
  567.       apply_mask_ipv4 ((struct prefix_ipv4 *) &p);
  568.       if (prefix_ipv4_any ((struct prefix_ipv4 *) &p))
  569. return;
  570.       rn = bgp_node_get (bgp_connected_ipv4, (struct prefix *) &p);
  571.       if (rn->info)
  572. {
  573.   bc = rn->info;
  574.   bc->refcnt++;
  575. }
  576.       else
  577. {
  578.   bc = XMALLOC (0, sizeof (struct bgp_connected));
  579.   memset (bc, 0, sizeof (struct bgp_connected));
  580.   bc->refcnt = 1;
  581.   rn->info = bc;
  582. }
  583.     }
  584. #ifdef HAVE_IPV6
  585.   if (addr->family == AF_INET6)
  586.     {
  587.       memset (&p, 0, sizeof (struct prefix));
  588.       p.family = AF_INET6;
  589.       p.prefixlen = addr->prefixlen;
  590.       if (if_is_pointopoint (ifp))
  591. p.u.prefix6 = dest->u.prefix6;
  592.       else
  593. p.u.prefix6 = addr->u.prefix6;
  594.       apply_mask_ipv6 ((struct prefix_ipv6 *) &p);
  595.       if (IN6_IS_ADDR_UNSPECIFIED (&p.u.prefix6))
  596. return;
  597.       if (IN6_IS_ADDR_LINKLOCAL (&p.u.prefix6))
  598. return;
  599.       rn = bgp_node_get (bgp_connected_ipv6, (struct prefix *) &p);
  600.       if (rn->info)
  601. {
  602.   bc = rn->info;
  603.   bc->refcnt++;
  604. }
  605.       else
  606. {
  607.   bc = XMALLOC (0, sizeof (struct bgp_connected));
  608.   memset (bc, 0, sizeof (struct bgp_connected));
  609.   bc->refcnt = 1;
  610.   rn->info = bc;
  611. }
  612.     }
  613. #endif /* HAVE_IPV6 */
  614. }
  615. void
  616. bgp_connected_delete (struct connected *ifc)
  617. {
  618.   struct prefix p;
  619.   struct prefix *addr;
  620.   struct prefix *dest;
  621.   struct interface *ifp;
  622.   struct bgp_node *rn;
  623.   struct bgp_connected *bc;
  624.   ifp = ifc->ifp;
  625.   if (if_is_loopback (ifp))
  626.     return;
  627.   addr = ifc->address;
  628.   dest = ifc->destination;
  629.   if (addr->family == AF_INET)
  630.     {
  631.       memset (&p, 0, sizeof (struct prefix));
  632.       p.family = AF_INET;
  633.       p.prefixlen = addr->prefixlen;
  634.       if (if_is_pointopoint (ifp))
  635. p.u.prefix4 = dest->u.prefix4;
  636.       else
  637. p.u.prefix4 = addr->u.prefix4;
  638.       apply_mask_ipv4 ((struct prefix_ipv4 *) &p);
  639.       if (prefix_ipv4_any ((struct prefix_ipv4 *) &p))
  640. return;
  641.       rn = bgp_node_lookup (bgp_connected_ipv4, &p);
  642.       if (! rn)
  643. return;
  644.       bc = rn->info;
  645.       bc->refcnt--;
  646.       if (bc->refcnt == 0)
  647. {
  648.   XFREE (0, bc);
  649.   rn->info = NULL;
  650. }
  651.       bgp_unlock_node (rn);
  652.       bgp_unlock_node (rn);
  653.     }
  654. #ifdef HAVE_IPV6
  655.   else if (addr->family == AF_INET6)
  656.     {
  657.       memset (&p, 0, sizeof (struct prefix));
  658.       p.family = AF_INET6;
  659.       p.prefixlen = addr->prefixlen;
  660.       if (if_is_pointopoint (ifp))
  661. p.u.prefix6 = dest->u.prefix6;
  662.       else
  663. p.u.prefix6 = addr->u.prefix6;
  664.       apply_mask_ipv6 ((struct prefix_ipv6 *) &p);
  665.       if (IN6_IS_ADDR_UNSPECIFIED (&p.u.prefix6))
  666. return;
  667.       if (IN6_IS_ADDR_LINKLOCAL (&p.u.prefix6))
  668. return;
  669.       rn = bgp_node_lookup (bgp_connected_ipv6, (struct prefix *) &p);
  670.       if (! rn)
  671. return;
  672.       bc = rn->info;
  673.       bc->refcnt--;
  674.       if (bc->refcnt == 0)
  675. {
  676.   XFREE (0, bc);
  677.   rn->info = NULL;
  678. }
  679.       bgp_unlock_node (rn);
  680.       bgp_unlock_node (rn);
  681.     }
  682. #endif /* HAVE_IPV6 */
  683. }
  684. int
  685. bgp_nexthop_self (afi_t afi, struct attr *attr)
  686. {
  687.   listnode node;
  688.   listnode node2;
  689.   struct interface *ifp;
  690.   struct connected *ifc;
  691.   struct prefix *p;
  692.   for (node = listhead (iflist); node; nextnode (node))
  693.     {
  694.       ifp = getdata (node);
  695.       for (node2 = listhead (ifp->connected); node2; nextnode (node2))
  696. {
  697.   ifc = getdata (node2);
  698.   p = ifc->address;
  699.   if (p && p->family == AF_INET 
  700.       && IPV4_ADDR_SAME (&p->u.prefix4, &attr->nexthop))
  701.     return 1;
  702. }
  703.     }
  704.   return 0;
  705. }
  706. struct bgp_nexthop_cache *
  707. zlookup_read ()
  708. {
  709.   struct stream *s;
  710.   u_int16_t length;
  711.   u_char command;
  712.   int nbytes;
  713.   struct in_addr raddr;
  714.   u_int32_t metric;
  715.   int i;
  716.   u_char nexthop_num;
  717.   struct nexthop *nexthop;
  718.   struct bgp_nexthop_cache *bnc;
  719.   s = zlookup->ibuf;
  720.   stream_reset (s);
  721.   nbytes = stream_read (s, zlookup->sock, 2);
  722.   length = stream_getw (s);
  723.   nbytes = stream_read (s, zlookup->sock, length - 2);
  724.   command = stream_getc (s);
  725.   raddr.s_addr = stream_get_ipv4 (s);
  726.   metric = stream_getl (s);
  727.   nexthop_num = stream_getc (s);
  728.   if (nexthop_num)
  729.     {
  730.       bnc = bnc_new ();
  731.       bnc->valid = 1;
  732.       bnc->metric = metric;
  733.       bnc->nexthop_num = nexthop_num;
  734.       for (i = 0; i < nexthop_num; i++)
  735. {
  736.   nexthop = XMALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop));
  737.   memset (nexthop, 0, sizeof (struct nexthop));
  738.   nexthop->type = stream_getc (s);
  739.   switch (nexthop->type)
  740.     {
  741.     case ZEBRA_NEXTHOP_IPV4:
  742.       nexthop->gate.ipv4.s_addr = stream_get_ipv4 (s);
  743.       break;
  744.     case ZEBRA_NEXTHOP_IFINDEX:
  745.     case ZEBRA_NEXTHOP_IFNAME:
  746.       nexthop->ifindex = stream_getl (s);
  747.       break;
  748.     }
  749.   bnc_nexthop_add (bnc, nexthop);
  750. }
  751.     }
  752.   else
  753.     return NULL;
  754.   return bnc;
  755. }
  756. struct bgp_nexthop_cache *
  757. zlookup_query (struct in_addr addr)
  758. {
  759.   int ret;
  760.   struct stream *s;
  761.   /* Check socket. */
  762.   if (zlookup->sock < 0)
  763.     return NULL;
  764.   s = zlookup->obuf;
  765.   stream_reset (s);
  766.   stream_putw (s, 7);
  767.   stream_putc (s, ZEBRA_IPV4_NEXTHOP_LOOKUP);
  768.   stream_put_in_addr (s, &addr);
  769.   ret = writen (zlookup->sock, s->data, 7);
  770.   if (ret < 0)
  771.     {
  772.       zlog_err ("can't write to zlookup->sock");
  773.       close (zlookup->sock);
  774.       zlookup->sock = -1;
  775.       return NULL;
  776.     }
  777.   if (ret == 0)
  778.     {
  779.       zlog_err ("zlookup->sock connection closed");
  780.       close (zlookup->sock);
  781.       zlookup->sock = -1;
  782.       return NULL;
  783.     }
  784.   return zlookup_read ();
  785. }
  786. #ifdef HAVE_IPV6
  787. struct bgp_nexthop_cache *
  788. zlookup_read_ipv6 ()
  789. {
  790.   struct stream *s;
  791.   u_int16_t length;
  792.   u_char command;
  793.   int nbytes;
  794.   struct in6_addr raddr;
  795.   u_int32_t metric;
  796.   int i;
  797.   u_char nexthop_num;
  798.   struct nexthop *nexthop;
  799.   struct bgp_nexthop_cache *bnc;
  800.   s = zlookup->ibuf;
  801.   stream_reset (s);
  802.   nbytes = stream_read (s, zlookup->sock, 2);
  803.   length = stream_getw (s);
  804.   nbytes = stream_read (s, zlookup->sock, length - 2);
  805.   command = stream_getc (s);
  806.   stream_get (&raddr, s, 16);
  807.   metric = stream_getl (s);
  808.   nexthop_num = stream_getc (s);
  809.   if (nexthop_num)
  810.     {
  811.       bnc = bnc_new ();
  812.       bnc->valid = 1;
  813.       bnc->metric = metric;
  814.       bnc->nexthop_num = nexthop_num;
  815.       for (i = 0; i < nexthop_num; i++)
  816. {
  817.   nexthop = XMALLOC (MTYPE_NEXTHOP, sizeof (struct nexthop));
  818.   memset (nexthop, 0, sizeof (struct nexthop));
  819.   nexthop->type = stream_getc (s);
  820.   switch (nexthop->type)
  821.     {
  822.     case ZEBRA_NEXTHOP_IPV6:
  823.       stream_get (&nexthop->gate.ipv6, s, 16);
  824.       break;
  825.     case ZEBRA_NEXTHOP_IPV6_IFINDEX:
  826.     case ZEBRA_NEXTHOP_IPV6_IFNAME:
  827.       stream_get (&nexthop->gate.ipv6, s, 16);
  828.       nexthop->ifindex = stream_getl (s);
  829.       break;
  830.     case ZEBRA_NEXTHOP_IFINDEX:
  831.     case ZEBRA_NEXTHOP_IFNAME:
  832.       nexthop->ifindex = stream_getl (s);
  833.       break;
  834.     }
  835.   bnc_nexthop_add (bnc, nexthop);
  836. }
  837.     }
  838.   else
  839.     return NULL;
  840.   return bnc;
  841. }
  842. struct bgp_nexthop_cache *
  843. zlookup_query_ipv6 (struct in6_addr *addr)
  844. {
  845.   int ret;
  846.   struct stream *s;
  847.   /* Check socket. */
  848.   if (zlookup->sock < 0)
  849.     return NULL;
  850.   s = zlookup->obuf;
  851.   stream_reset (s);
  852.   stream_putw (s, 19);
  853.   stream_putc (s, ZEBRA_IPV6_NEXTHOP_LOOKUP);
  854.   stream_put (s, addr, 16);
  855.   ret = writen (zlookup->sock, s->data, 19);
  856.   if (ret < 0)
  857.     {
  858.       zlog_err ("can't write to zlookup->sock");
  859.       close (zlookup->sock);
  860.       zlookup->sock = -1;
  861.       return NULL;
  862.     }
  863.   if (ret == 0)
  864.     {
  865.       zlog_err ("zlookup->sock connection closed");
  866.       close (zlookup->sock);
  867.       zlookup->sock = -1;
  868.       return NULL;
  869.     }
  870.   return zlookup_read_ipv6 ();
  871. }
  872. #endif /* HAVE_IPV6 */
  873. int
  874. bgp_import_check (struct prefix *p, u_int32_t *igpmetric, struct in_addr *igpnexthop)
  875. {
  876.   struct stream *s;
  877.   int ret;
  878.   u_int16_t length;
  879.   u_char command;
  880.   int nbytes;
  881.   struct in_addr addr;
  882.   struct in_addr nexthop;
  883.   u_int32_t metric = 0;
  884.   u_char nexthop_num;
  885.   u_char nexthop_type;
  886.   /* If lookup connection is not available return valid. */
  887.   if (zlookup->sock < 0)
  888.     {
  889.       if (igpmetric)
  890. *igpmetric = 0;
  891.       return 1;
  892.     }
  893.   /* Send query to the lookup connection */
  894.   s = zlookup->obuf;
  895.   stream_reset (s);
  896.   stream_putw (s, 8);
  897.   stream_putc (s, ZEBRA_IPV4_IMPORT_LOOKUP);
  898.   stream_putc (s, p->prefixlen);
  899.   stream_put_in_addr (s, &p->u.prefix4);
  900.   /* Write the packet. */
  901.   ret = writen (zlookup->sock, s->data, 8);
  902.   if (ret < 0)
  903.     {
  904.       zlog_err ("can't write to zlookup->sock");
  905.       close (zlookup->sock);
  906.       zlookup->sock = -1;
  907.       return 1;
  908.     }
  909.   if (ret == 0)
  910.     {
  911.       zlog_err ("zlookup->sock connection closed");
  912.       close (zlookup->sock);
  913.       zlookup->sock = -1;
  914.       return 1;
  915.     }
  916.   /* Get result. */
  917.   stream_reset (s);
  918.   /* Fetch length. */
  919.   nbytes = stream_read (s, zlookup->sock, 2);
  920.   length = stream_getw (s);
  921.   /* Fetch whole data. */
  922.   nbytes = stream_read (s, zlookup->sock, length - 2);
  923.   command = stream_getc (s);
  924.   addr.s_addr = stream_get_ipv4 (s);
  925.   metric = stream_getl (s);
  926.   nexthop_num = stream_getc (s);
  927.   /* Set IGP metric value. */
  928.   if (igpmetric)
  929.     *igpmetric = metric;
  930.   /* If there is nexthop then this is active route. */
  931.   if (nexthop_num)
  932.     {
  933.       nexthop.s_addr = 0;
  934.       nexthop_type = stream_getc (s);
  935.       if (nexthop_type == ZEBRA_NEXTHOP_IPV4)
  936. {
  937.   nexthop.s_addr = stream_get_ipv4 (s);
  938.   if (igpnexthop)
  939.     *igpnexthop = nexthop;
  940. }
  941.       else
  942. *igpnexthop = nexthop;
  943.       return 1;
  944.     }
  945.   else
  946.     return 0;
  947. }
  948. /* Scan all configured BGP route then check the route exists in IGP or
  949.    not. */
  950. int
  951. bgp_import (struct thread *t)
  952. {
  953.   struct bgp *bgp;
  954.   struct bgp_node *rn;
  955.   struct bgp_static *bgp_static;
  956.   struct listnode *nn;
  957.   int valid;
  958.   u_int32_t metric;
  959.   struct in_addr nexthop;
  960.   afi_t afi;
  961.   safi_t safi;
  962.   bgp_import_thread = 
  963.     thread_add_timer (master, bgp_import, NULL, bgp_import_interval);
  964.   if (BGP_DEBUG (events, EVENTS))
  965.     zlog_info ("Import timer expired."); 
  966.   LIST_LOOP (bm->bgp, bgp, nn)
  967.     {
  968.       for (afi = AFI_IP; afi < AFI_MAX; afi++)
  969. for (safi = SAFI_UNICAST; safi < SAFI_MPLS_VPN; safi++)
  970.   for (rn = bgp_table_top (bgp->route[afi][safi]); rn;
  971.        rn = bgp_route_next (rn))
  972.     if ((bgp_static = rn->info) != NULL)
  973.       {
  974. if (bgp_static->backdoor)
  975.   continue;
  976. valid = bgp_static->valid;
  977. metric = bgp_static->igpmetric;
  978. nexthop = bgp_static->igpnexthop;
  979. if (bgp_flag_check (bgp, BGP_FLAG_IMPORT_CHECK)
  980.     && afi == AFI_IP && safi == SAFI_UNICAST)
  981.   bgp_static->valid = bgp_import_check (&rn->p, &bgp_static->igpmetric,
  982.         &bgp_static->igpnexthop);
  983. else
  984.   {
  985.     bgp_static->valid = 1;
  986.     bgp_static->igpmetric = 0;
  987.     bgp_static->igpnexthop.s_addr = 0;
  988.   }
  989. if (bgp_static->valid != valid)
  990.   {
  991.     if (bgp_static->valid)
  992.       bgp_static_update (bgp, &rn->p, bgp_static, afi, safi);
  993.     else
  994.       bgp_static_withdraw (bgp, &rn->p, afi, safi);
  995.   }
  996. else if (bgp_static->valid)
  997.   {
  998.     if (bgp_static->igpmetric != metric
  999. || bgp_static->igpnexthop.s_addr != nexthop.s_addr
  1000. || bgp_static->rmap.name)
  1001.       bgp_static_update (bgp, &rn->p, bgp_static, afi, safi);
  1002.   }
  1003.       }
  1004.     }
  1005.   return 0;
  1006. }
  1007. /* Connect to zebra for nexthop lookup. */
  1008. int
  1009. zlookup_connect (struct thread *t)
  1010. {
  1011.   struct zclient *zlookup;
  1012.   zlookup = THREAD_ARG (t);
  1013.   zlookup->t_connect = NULL;
  1014.   if (zlookup->sock != -1)
  1015.     return 0;
  1016. #ifdef HAVE_TCP_ZEBRA
  1017.   zlookup->sock = zclient_socket ();
  1018. #else
  1019.   zlookup->sock = zclient_socket_un (ZEBRA_SERV_PATH);
  1020. #endif /* HAVE_TCP_ZEBRA */
  1021.   if (zlookup->sock < 0)
  1022.     return -1;
  1023.   return 0;
  1024. }
  1025. /* Check specified multiaccess next-hop. */
  1026. int
  1027. bgp_multiaccess_check_v4 (struct in_addr nexthop, char *peer)
  1028. {
  1029.   struct bgp_node *rn1;
  1030.   struct bgp_node *rn2;
  1031.   struct prefix p1;
  1032.   struct prefix p2;
  1033.   struct in_addr addr;
  1034.   int ret;
  1035.   ret = inet_aton (peer, &addr);
  1036.   if (! ret)
  1037.     return 0;
  1038.   memset (&p1, 0, sizeof (struct prefix));
  1039.   p1.family = AF_INET;
  1040.   p1.prefixlen = IPV4_MAX_BITLEN;
  1041.   p1.u.prefix4 = nexthop;
  1042.   memset (&p2, 0, sizeof (struct prefix));
  1043.   p2.family = AF_INET;
  1044.   p2.prefixlen = IPV4_MAX_BITLEN;
  1045.   p2.u.prefix4 = addr;
  1046.   /* If bgp scan is not enabled, return invalid. */
  1047.   if (zlookup->sock < 0)
  1048.     return 0;
  1049.   rn1 = bgp_node_match (bgp_connected_ipv4, &p1);
  1050.   if (! rn1)
  1051.     return 0;
  1052.   
  1053.   rn2 = bgp_node_match (bgp_connected_ipv4, &p2);
  1054.   if (! rn2)
  1055.     return 0;
  1056.   if (rn1 == rn2)
  1057.     return 1;
  1058.   return 0;
  1059. }
  1060. DEFUN (bgp_scan_time,
  1061.        bgp_scan_time_cmd,
  1062.        "bgp scan-time <5-60>",
  1063.        "BGP specific commandsn"
  1064.        "Configure background scanner intervaln"
  1065.        "Scanner interval (seconds)n")
  1066. {
  1067.   bgp_scan_interval = atoi (argv[0]);
  1068.   if (bgp_scan_thread)
  1069.     {
  1070.       thread_cancel (bgp_scan_thread);
  1071.       bgp_scan_thread = 
  1072. thread_add_timer (master, bgp_scan, NULL, bgp_scan_interval);
  1073.     }
  1074.   return CMD_SUCCESS;
  1075. }
  1076. DEFUN (no_bgp_scan_time,
  1077.        no_bgp_scan_time_cmd,
  1078.        "no bgp scan-time",
  1079.        NO_STR
  1080.        "BGP specific commandsn"
  1081.        "Configure background scanner intervaln")
  1082. {
  1083.   bgp_scan_interval = BGP_SCAN_INTERVAL_DEFAULT;
  1084.   if (bgp_scan_thread)
  1085.     {
  1086.       thread_cancel (bgp_scan_thread);
  1087.       bgp_scan_thread = 
  1088. thread_add_timer (master, bgp_scan, NULL, bgp_scan_interval);
  1089.     }
  1090.   return CMD_SUCCESS;
  1091. }
  1092. ALIAS (no_bgp_scan_time,
  1093.        no_bgp_scan_time_val_cmd,
  1094.        "no bgp scan-time <5-60>",
  1095.        NO_STR
  1096.        "BGP specific commandsn"
  1097.        "Configure background scanner intervaln"
  1098.        "Scanner interval (seconds)n");
  1099. DEFUN (show_ip_bgp_scan,
  1100.        show_ip_bgp_scan_cmd,
  1101.        "show ip bgp scan",
  1102.        SHOW_STR
  1103.        IP_STR
  1104.        BGP_STR
  1105.        "BGP scan statusn")
  1106. {
  1107.   struct bgp_node *rn;
  1108.   struct bgp_nexthop_cache *bnc;
  1109.   if (bgp_scan_thread)
  1110.     vty_out (vty, "BGP scan is running%s", VTY_NEWLINE);
  1111.   else
  1112.     vty_out (vty, "BGP scan is not running%s", VTY_NEWLINE);
  1113.   vty_out (vty, "BGP scan interval is %d%s", bgp_scan_interval, VTY_NEWLINE);
  1114.   vty_out (vty, "Current BGP nexthop cache:%s", VTY_NEWLINE);
  1115.   for (rn = bgp_table_top (bgp_nexthop_cache_ipv4); rn; rn = bgp_route_next (rn))
  1116.     if ((bnc = rn->info) != NULL)
  1117.       {
  1118. if (bnc->valid)
  1119.   vty_out (vty, " %s valid [IGP metric %d]%s",
  1120.    inet_ntoa (rn->p.u.prefix4), bnc->metric, VTY_NEWLINE);
  1121. else
  1122.   vty_out (vty, " %s invalid%s",
  1123.    inet_ntoa (rn->p.u.prefix4), VTY_NEWLINE);
  1124.       }
  1125. #ifdef HAVE_IPV6
  1126.   {
  1127.     char buf[BUFSIZ];
  1128.     for (rn = bgp_table_top (bgp_nexthop_cache_ipv6); rn; rn = bgp_route_next (rn))
  1129.       if ((bnc = rn->info) != NULL)
  1130. {
  1131.   if (bnc->valid)
  1132.     vty_out (vty, " %s valid [IGP metric %d]%s",
  1133.      inet_ntop (AF_INET6, &rn->p.u.prefix6, buf, BUFSIZ),
  1134.      bnc->metric, VTY_NEWLINE);
  1135.   else
  1136.     vty_out (vty, " %s invalid%s",
  1137.      inet_ntop (AF_INET6, &rn->p.u.prefix6, buf, BUFSIZ),
  1138.      VTY_NEWLINE);
  1139. }
  1140.   }
  1141. #endif /* HAVE_IPV6 */
  1142.   vty_out (vty, "BGP connected route:%s", VTY_NEWLINE);
  1143.   for (rn = bgp_table_top (bgp_connected_ipv4); rn; rn = bgp_route_next (rn))
  1144.     if (rn->info != NULL)
  1145.       vty_out (vty, " %s/%d%s", inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen,
  1146.        VTY_NEWLINE);
  1147. #ifdef HAVE_IPV6
  1148.   {
  1149.     char buf[BUFSIZ];
  1150.     for (rn = bgp_table_top (bgp_connected_ipv6); rn; rn = bgp_route_next (rn))
  1151.       if (rn->info != NULL)
  1152. vty_out (vty, " %s/%d%s",
  1153.  inet_ntop (AF_INET6, &rn->p.u.prefix6, buf, BUFSIZ),
  1154.  rn->p.prefixlen,
  1155.  VTY_NEWLINE);
  1156.   }
  1157. #endif /* HAVE_IPV6 */
  1158.   return CMD_SUCCESS;
  1159. }
  1160. int
  1161. bgp_config_write_scan_time (struct vty *vty)
  1162. {
  1163.   if (bgp_scan_interval != BGP_SCAN_INTERVAL_DEFAULT)
  1164.     vty_out (vty, " bgp scan-time %d%s", bgp_scan_interval, VTY_NEWLINE);
  1165.   return CMD_SUCCESS;
  1166. }
  1167. void
  1168. bgp_scan_init ()
  1169. {
  1170.   zlookup = zclient_new ();
  1171.   zlookup->sock = -1;
  1172.   zlookup->ibuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
  1173.   zlookup->obuf = stream_new (ZEBRA_MAX_PACKET_SIZ);
  1174.   zlookup->t_connect = thread_add_event (master, zlookup_connect, zlookup, 0);
  1175.   bgp_scan_interval = BGP_SCAN_INTERVAL_DEFAULT;
  1176.   bgp_import_interval = BGP_IMPORT_INTERVAL_DEFAULT;
  1177.   cache1 = bgp_table_init ();
  1178.   cache2 = bgp_table_init ();
  1179.   bgp_nexthop_cache_ipv4 = cache1;
  1180.   bgp_connected_ipv4 = bgp_table_init ();
  1181. #ifdef HAVE_IPV6
  1182.   cache6_1 = bgp_table_init ();
  1183.   cache6_2 = bgp_table_init ();
  1184.   bgp_nexthop_cache_ipv6 = cache6_1;
  1185.   bgp_connected_ipv6 = bgp_table_init ();
  1186. #endif /* HAVE_IPV6 */
  1187.   /* Make BGP scan thread. */
  1188.   bgp_scan_thread = thread_add_timer (master, bgp_scan, NULL, bgp_scan_interval);
  1189.   /* Make BGP import there. */
  1190.   bgp_import_thread = thread_add_timer (master, bgp_import, NULL, 0);
  1191.   install_element (BGP_NODE, &bgp_scan_time_cmd);
  1192.   install_element (BGP_NODE, &no_bgp_scan_time_cmd);
  1193.   install_element (BGP_NODE, &no_bgp_scan_time_val_cmd);
  1194.   install_element (VIEW_NODE, &show_ip_bgp_scan_cmd);
  1195.   install_element (ENABLE_NODE, &show_ip_bgp_scan_cmd);
  1196. }