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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Area Border Router function.
  3.  * Copyright (C) 2004 Yasuhiro Ohara
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the 
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  20.  * Boston, MA 02111-1307, USA.  
  21.  */
  22. #include <zebra.h>
  23. #include "log.h"
  24. #include "prefix.h"
  25. #include "table.h"
  26. #include "vty.h"
  27. #include "linklist.h"
  28. #include "command.h"
  29. #include "thread.h"
  30. #include "plist.h"
  31. #include "filter.h"
  32. #include "ospf6_proto.h"
  33. #include "ospf6_route.h"
  34. #include "ospf6_lsa.h"
  35. #include "ospf6_route.h"
  36. #include "ospf6_lsdb.h"
  37. #include "ospf6_message.h"
  38. #include "ospf6_top.h"
  39. #include "ospf6_area.h"
  40. #include "ospf6_interface.h"
  41. #include "ospf6_neighbor.h"
  42. #include "ospf6_flood.h"
  43. #include "ospf6_intra.h"
  44. #include "ospf6_abr.h"
  45. #include "ospf6d.h"
  46. unsigned char conf_debug_ospf6_abr;
  47. int
  48. ospf6_is_router_abr (struct ospf6 *o)
  49. {
  50.   listnode node;
  51.   struct ospf6_area *oa;
  52.   int area_count = 0;
  53.   for (node = listhead (o->area_list); node; nextnode (node))
  54.     {
  55.       oa = OSPF6_AREA (getdata (node));
  56.       if (IS_AREA_ENABLED (oa))
  57.         area_count++;
  58.     }
  59.   if (area_count > 1)
  60.     return 1;
  61.   return 0;
  62. }
  63. void
  64. ospf6_abr_enable_area (struct ospf6_area *area)
  65. {
  66.   struct ospf6_area *oa;
  67.   struct ospf6_route *ro;
  68.   listnode node;
  69.   for (node = listhead (area->ospf6->area_list); node; nextnode (node))
  70.     {
  71.       oa = OSPF6_AREA (getdata (node));
  72.       /* update B bit for each area */
  73.       OSPF6_ROUTER_LSA_SCHEDULE (oa);
  74.       /* install other area's configured address range */
  75.       if (oa != area)
  76.         {
  77.           for (ro = ospf6_route_head (oa->range_table); ro;
  78.                ro = ospf6_route_next (ro))
  79.             {
  80.               if (CHECK_FLAG (ro->flag, OSPF6_ROUTE_ACTIVE_SUMMARY))
  81.                 ospf6_abr_originate_summary_to_area (ro, area);
  82.             }
  83.         }
  84.     }
  85.   /* install calculated routes to border routers */
  86.   for (ro = ospf6_route_head (area->ospf6->brouter_table); ro;
  87.        ro = ospf6_route_next (ro))
  88.     ospf6_abr_originate_summary_to_area (ro, area);
  89.   /* install calculated routes to network (may be rejected by ranges) */
  90.   for (ro = ospf6_route_head (area->ospf6->route_table); ro;
  91.        ro = ospf6_route_next (ro))
  92.     ospf6_abr_originate_summary_to_area (ro, area);
  93. }
  94. void
  95. ospf6_abr_disable_area (struct ospf6_area *area)
  96. {
  97.   struct ospf6_area *oa;
  98.   struct ospf6_route *ro;
  99.   struct ospf6_lsa *old;
  100.   listnode node;
  101.   /* Withdraw all summary prefixes previously originated */
  102.   for (ro = ospf6_route_head (area->summary_prefix); ro;
  103.        ro = ospf6_route_next (ro))
  104.     {
  105.       old = ospf6_lsdb_lookup (ro->path.origin.type, ro->path.origin.id,
  106.                                area->ospf6->router_id, area->lsdb);
  107.       if (old)
  108.         ospf6_lsa_purge (old);
  109.       ospf6_route_remove (ro, area->summary_prefix);
  110.     }
  111.   /* Withdraw all summary router-routes previously originated */
  112.   for (ro = ospf6_route_head (area->summary_router); ro;
  113.        ro = ospf6_route_next (ro))
  114.     {
  115.       old = ospf6_lsdb_lookup (ro->path.origin.type, ro->path.origin.id,
  116.                                area->ospf6->router_id, area->lsdb);
  117.       if (old)
  118.         ospf6_lsa_purge (old);
  119.       ospf6_route_remove (ro, area->summary_router);
  120.     }
  121.   /* Schedule Router-LSA for each area (ABR status may change) */
  122.   for (node = listhead (area->ospf6->area_list); node; nextnode (node))
  123.     {
  124.       oa = OSPF6_AREA (getdata (node));
  125.       /* update B bit for each area */
  126.       OSPF6_ROUTER_LSA_SCHEDULE (oa);
  127.     }
  128. }
  129. /* RFC 2328 12.4.3. Summary-LSAs */
  130. void
  131. ospf6_abr_originate_summary_to_area (struct ospf6_route *route,
  132.                                      struct ospf6_area *area)
  133. {
  134.   struct ospf6_lsa *lsa, *old = NULL;
  135.   struct ospf6_interface *oi;
  136.   struct ospf6_route *summary, *range = NULL;
  137.   struct ospf6_area *route_area;
  138.   char buffer[OSPF6_MAX_LSASIZE];
  139.   struct ospf6_lsa_header *lsa_header;
  140.   caddr_t p;
  141.   struct ospf6_inter_prefix_lsa *prefix_lsa;
  142.   struct ospf6_inter_router_lsa *router_lsa;
  143.   struct ospf6_route_table *summary_table = NULL;
  144.   u_int16_t type;
  145.   char buf[64];
  146.   int is_debug = 0;
  147.   if (route->type == OSPF6_DEST_TYPE_ROUTER)
  148.     {
  149.       if (IS_OSPF6_DEBUG_ABR || IS_OSPF6_DEBUG_ORIGINATE (INTER_ROUTER))
  150.         {
  151.           is_debug++;
  152.           inet_ntop (AF_INET, &(ADV_ROUTER_IN_PREFIX (&route->prefix)),
  153.                      buf, sizeof (buf));
  154.           zlog_info ("Originating summary in area %s for ASBR %s",
  155.                      area->name, buf);
  156.         }
  157.       summary_table = area->summary_router;
  158.     }
  159.   else
  160.     {
  161.       if (IS_OSPF6_DEBUG_ABR || IS_OSPF6_DEBUG_ORIGINATE (INTER_PREFIX))
  162.         {
  163.           is_debug++;
  164.           prefix2str (&route->prefix, buf, sizeof (buf));
  165.           zlog_info ("Originating summary in area %s for %s",
  166.                      area->name, buf);
  167.         }
  168.       summary_table = area->summary_prefix;
  169.     }
  170.   summary = ospf6_route_lookup (&route->prefix, summary_table);
  171.   if (summary)
  172.     old = ospf6_lsdb_lookup (summary->path.origin.type,
  173.                              summary->path.origin.id,
  174.                              area->ospf6->router_id, area->lsdb);
  175.   /* if this route has just removed, remove corresponding LSA */
  176.   if (CHECK_FLAG (route->flag, OSPF6_ROUTE_REMOVE))
  177.     {
  178.       if (is_debug)
  179.         zlog_info ("The route has just removed, purge previous LSA");
  180.       if (summary)
  181.         ospf6_route_remove (summary, summary_table);
  182.       if (old)
  183.         ospf6_lsa_purge (old);
  184.       return;
  185.     }
  186.   /* Only destination type network, range or ASBR are considered */
  187.   if (route->type != OSPF6_DEST_TYPE_NETWORK &&
  188.       route->type != OSPF6_DEST_TYPE_RANGE &&
  189.       (route->type != OSPF6_DEST_TYPE_ROUTER ||
  190.        ! CHECK_FLAG (route->path.router_bits, OSPF6_ROUTER_BIT_E)))
  191.     {
  192.       if (is_debug)
  193.         zlog_info ("Route type is none of network, range nor ASBR, withdraw");
  194.       if (summary)
  195.         ospf6_route_remove (summary, summary_table);
  196.       if (old)
  197.         ospf6_lsa_purge (old);
  198.       return;
  199.     }
  200.   /* AS External routes are never considered */
  201.   if (route->path.type == OSPF6_PATH_TYPE_EXTERNAL1 ||
  202.       route->path.type == OSPF6_PATH_TYPE_EXTERNAL2)
  203.     {
  204.       if (is_debug)
  205.         zlog_info ("Path type is external, withdraw");
  206.       if (summary)
  207.         ospf6_route_remove (summary, summary_table);
  208.       if (old)
  209.         ospf6_lsa_purge (old);
  210.       return;
  211.     }
  212.   /* do not generate if the path's area is the same as target area */
  213.   if (route->path.area_id == area->area_id)
  214.     {
  215.       if (is_debug)
  216.         zlog_info ("The route is in the area itself, ignore");
  217.       if (summary)
  218.         ospf6_route_remove (summary, summary_table);
  219.       if (old)
  220.         ospf6_lsa_purge (old);
  221.       return;
  222.     }
  223.   /* do not generate if the nexthops belongs to the target area */
  224.   oi = ospf6_interface_lookup_by_ifindex (route->nexthop[0].ifindex);
  225.   if (oi && oi->area && oi->area == area)
  226.     {
  227.       if (is_debug)
  228.         zlog_info ("The route's nexthop is in the same area, ignore");
  229.       if (summary)
  230.         ospf6_route_remove (summary, summary_table);
  231.       if (old)
  232.         ospf6_lsa_purge (old);
  233.       return;
  234.     }
  235.   /* do not generate if the route cost is greater or equal to LSInfinity */
  236.   if (route->path.cost >= LS_INFINITY)
  237.     {
  238.       if (is_debug)
  239.         zlog_info ("The cost exceeds LSInfinity, withdraw");
  240.       if (summary)
  241.         ospf6_route_remove (summary, summary_table);
  242.       if (old)
  243.         ospf6_lsa_purge (old);
  244.       return;
  245.     }
  246.   /* if this is a route to ASBR */
  247.   if (route->type == OSPF6_DEST_TYPE_ROUTER)
  248.     {
  249.       /* Only the prefered best path is considered */
  250.       if (! CHECK_FLAG (route->flag, OSPF6_ROUTE_BEST))
  251.         {
  252.           if (is_debug)
  253.             zlog_info ("This is the secondary path to the ASBR, ignore");
  254.           if (summary)
  255.             ospf6_route_remove (summary, summary_table);
  256.           if (old)
  257.             ospf6_lsa_purge (old);
  258.           return;
  259.         }
  260.       /* Do not generate if the area is stub */
  261.       /* XXX */
  262.     }
  263.   /* if this is an intra-area route, this may be suppressed by aggregation */
  264.   if (route->type == OSPF6_DEST_TYPE_NETWORK &&
  265.       route->path.type == OSPF6_PATH_TYPE_INTRA)
  266.     {
  267.       /* search for configured address range for the route's area */
  268.       route_area = ospf6_area_lookup (route->path.area_id, area->ospf6);
  269.       assert (route_area);
  270.       range = ospf6_route_lookup_bestmatch (&route->prefix,
  271.                                             route_area->range_table);
  272.       /* ranges are ignored when originate backbone routes to transit area.
  273.          Otherwise, if ranges are configured, the route is suppressed. */
  274.       if (range && ! CHECK_FLAG (range->flag, OSPF6_ROUTE_REMOVE) &&
  275.           (route->path.area_id != BACKBONE_AREA_ID ||
  276.            ! IS_AREA_TRANSIT (area)))
  277.         {
  278.           if (is_debug)
  279.             {
  280.               prefix2str (&range->prefix, buf, sizeof (buf));
  281.               zlog_info ("Suppressed by range %s of area %s",
  282.                          buf, route_area->name);
  283.             }
  284.           if (summary)
  285.             ospf6_route_remove (summary, summary_table);
  286.           if (old)
  287.             ospf6_lsa_purge (old);
  288.           return;
  289.         }
  290.     }
  291.   /* If this is a configured address range */
  292.   if (route->type == OSPF6_DEST_TYPE_RANGE)
  293.     {
  294.       /* If DoNotAdvertise is set */
  295.       if (CHECK_FLAG (route->flag, OSPF6_ROUTE_DO_NOT_ADVERTISE))
  296.         {
  297.           if (is_debug)
  298.             zlog_info ("This is the range with DoNotAdvertise set. ignore");
  299.           if (summary)
  300.             ospf6_route_remove (summary, summary_table);
  301.           if (old)
  302.             ospf6_lsa_purge (old);
  303.           return;
  304.         }
  305.       /* Whether the route have active longer prefix */
  306.       if (! CHECK_FLAG (route->flag, OSPF6_ROUTE_ACTIVE_SUMMARY))
  307.         {
  308.           if (is_debug)
  309.             zlog_info ("The range is not active. withdraw");
  310.           if (summary)
  311.             ospf6_route_remove (summary, summary_table);
  312.           if (old)
  313.             ospf6_lsa_purge (old);
  314.           return;
  315.         }
  316.     }
  317.   /* Check export list */
  318.   if (EXPORT_NAME (area))
  319.     {
  320.       if (EXPORT_LIST (area) == NULL)
  321.         EXPORT_LIST (area) =
  322.           access_list_lookup (AFI_IP6, EXPORT_NAME (area));
  323.       if (EXPORT_LIST (area))
  324.         if (access_list_apply (EXPORT_LIST (area),
  325.                                &route->prefix) == FILTER_DENY)
  326.           {
  327.             if (is_debug)
  328.               {
  329.                 inet_ntop (AF_INET, &(ADV_ROUTER_IN_PREFIX (&route->prefix)),
  330.                            buf, sizeof(buf));
  331.                 zlog_debug ("prefix %s was denied by export list", buf);
  332.               }
  333.             return;
  334.           }
  335.     }
  336.   /* Check filter-list */
  337.   if (PREFIX_NAME_OUT (area))
  338.     {
  339.       if (PREFIX_LIST_OUT (area) == NULL)
  340.         PREFIX_LIST_OUT (area) =
  341.           prefix_list_lookup(AFI_IP6, PREFIX_NAME_OUT (area));
  342.       if (PREFIX_LIST_OUT (area))
  343.          if (prefix_list_apply (PREFIX_LIST_OUT (area), 
  344.                                 &route->prefix) != PREFIX_PERMIT) 
  345.            {
  346.              if (is_debug)
  347.                {
  348.                  inet_ntop (AF_INET, &(ADV_ROUTER_IN_PREFIX (&route->prefix)),
  349.                             buf, sizeof (buf));
  350.                  zlog_debug ("prefix %s was denied by filter-list out", buf);
  351.                }
  352.              return;
  353.            }
  354.     }
  355.   /* the route is going to be originated. store it in area's summary_table */
  356.   if (summary == NULL)
  357.     {
  358.       summary = ospf6_route_copy (route);
  359.       if (route->type == OSPF6_DEST_TYPE_NETWORK ||
  360.           route->type == OSPF6_DEST_TYPE_RANGE)
  361.         summary->path.origin.type = htons (OSPF6_LSTYPE_INTER_PREFIX);
  362.       else
  363.         summary->path.origin.type = htons (OSPF6_LSTYPE_INTER_ROUTER);
  364.       summary->path.origin.adv_router = area->ospf6->router_id;
  365.       summary->path.origin.id =
  366.         ospf6_new_ls_id (summary->path.origin.type,
  367.                          summary->path.origin.adv_router, area->lsdb);
  368.       summary = ospf6_route_add (summary, summary_table);
  369.     }
  370.   else
  371.     {
  372.       summary->type = route->type;
  373.       gettimeofday (&summary->changed, NULL);
  374.     }
  375.   summary->path.router_bits = route->path.router_bits;
  376.   summary->path.options[0] = route->path.options[0];
  377.   summary->path.options[1] = route->path.options[1];
  378.   summary->path.options[2] = route->path.options[2];
  379.   summary->path.prefix_options = route->path.prefix_options;
  380.   summary->path.area_id = area->area_id;
  381.   summary->path.type = OSPF6_PATH_TYPE_INTER;
  382.   summary->path.cost = route->path.cost;
  383.   summary->nexthop[0] = route->nexthop[0];
  384.   /* prepare buffer */
  385.   memset (buffer, 0, sizeof (buffer));
  386.   lsa_header = (struct ospf6_lsa_header *) buffer;
  387.   if (route->type == OSPF6_DEST_TYPE_ROUTER)
  388.     {
  389.       router_lsa = (struct ospf6_inter_router_lsa *)
  390.         ((caddr_t) lsa_header + sizeof (struct ospf6_lsa_header));
  391.       p = (caddr_t) router_lsa + sizeof (struct ospf6_inter_router_lsa);
  392.       /* Fill Inter-Area-Router-LSA */
  393.       router_lsa->options[0] = route->path.options[0];
  394.       router_lsa->options[1] = route->path.options[1];
  395.       router_lsa->options[2] = route->path.options[2];
  396.       OSPF6_ABR_SUMMARY_METRIC_SET (router_lsa, route->path.cost);
  397.       router_lsa->router_id = ADV_ROUTER_IN_PREFIX (&route->prefix);
  398.       type = htons (OSPF6_LSTYPE_INTER_ROUTER);
  399.     }
  400.   else
  401.     {
  402.       prefix_lsa = (struct ospf6_inter_prefix_lsa *)
  403.         ((caddr_t) lsa_header + sizeof (struct ospf6_lsa_header));
  404.       p = (caddr_t) prefix_lsa + sizeof (struct ospf6_inter_prefix_lsa);
  405.       /* Fill Inter-Area-Prefix-LSA */
  406.       OSPF6_ABR_SUMMARY_METRIC_SET (prefix_lsa, route->path.cost);
  407.       prefix_lsa->prefix.prefix_length = route->prefix.prefixlen;
  408.       prefix_lsa->prefix.prefix_options = route->path.prefix_options;
  409.       /* set Prefix */
  410.       memcpy (p, &route->prefix.u.prefix6,
  411.               OSPF6_PREFIX_SPACE (route->prefix.prefixlen));
  412.       ospf6_prefix_apply_mask (&prefix_lsa->prefix);
  413.       p += OSPF6_PREFIX_SPACE (route->prefix.prefixlen);
  414.       type = htons (OSPF6_LSTYPE_INTER_PREFIX);
  415.     }
  416.   /* Fill LSA Header */
  417.   lsa_header->age = 0;
  418.   lsa_header->type = type;
  419.   lsa_header->id = summary->path.origin.id;
  420.   lsa_header->adv_router = area->ospf6->router_id;
  421.   lsa_header->seqnum =
  422.     ospf6_new_ls_seqnum (lsa_header->type, lsa_header->id,
  423.                          lsa_header->adv_router, area->lsdb);
  424.   lsa_header->length = htons ((caddr_t) p - (caddr_t) lsa_header);
  425.   /* LSA checksum */
  426.   ospf6_lsa_checksum (lsa_header);
  427.   /* create LSA */
  428.   lsa = ospf6_lsa_create (lsa_header);
  429.   /* Originate */
  430.   ospf6_lsa_originate_area (lsa, area);
  431. }
  432. void
  433. ospf6_abr_range_update (struct ospf6_route *range)
  434. {
  435.   u_int32_t cost = 0;
  436.   struct ospf6_route *ro;
  437.   assert (range->type == OSPF6_DEST_TYPE_RANGE);
  438.   /* update range's cost and active flag */
  439.   for (ro = ospf6_route_match_head (&range->prefix, ospf6->route_table);
  440.        ro; ro = ospf6_route_match_next (&range->prefix, ro))
  441.     {
  442.       if (ro->path.area_id == range->path.area_id &&
  443.           ! CHECK_FLAG (ro->flag, OSPF6_ROUTE_REMOVE))
  444.         cost = MAX (cost, ro->path.cost);
  445.     }
  446.   if (range->path.cost != cost)
  447.     {
  448.       range->path.cost = cost;
  449.       if (range->path.cost)
  450.         SET_FLAG (range->flag, OSPF6_ROUTE_ACTIVE_SUMMARY);
  451.       else
  452.         UNSET_FLAG (range->flag, OSPF6_ROUTE_ACTIVE_SUMMARY);
  453.       ospf6_abr_originate_summary (range);
  454.     }
  455. }
  456. void
  457. ospf6_abr_originate_summary (struct ospf6_route *route)
  458. {
  459.   listnode node;
  460.   struct ospf6_area *oa;
  461.   struct ospf6_route *range = NULL;
  462.   if (route->type == OSPF6_DEST_TYPE_NETWORK)
  463.     {
  464.       oa = ospf6_area_lookup (route->path.area_id, ospf6);
  465.       range = ospf6_route_lookup_bestmatch (&route->prefix, oa->range_table);
  466.       if (range)
  467.         ospf6_abr_range_update (range);
  468.     }
  469.   for (node = listhead (ospf6->area_list); node; nextnode (node))
  470.     {
  471.       oa = (struct ospf6_area *) getdata (node);
  472.       ospf6_abr_originate_summary_to_area (route, oa);
  473.     }
  474. }
  475. /* RFC 2328 16.2. Calculating the inter-area routes */
  476. void
  477. ospf6_abr_examin_summary (struct ospf6_lsa *lsa, struct ospf6_area *oa)
  478. {
  479.   struct prefix prefix, abr_prefix;
  480.   struct ospf6_route_table *table = NULL;
  481.   struct ospf6_route *range, *route, *old = NULL;
  482.   struct ospf6_route *abr_entry;
  483.   u_char type = 0;
  484.   char options[3] = {0, 0, 0};
  485.   u_int8_t prefix_options = 0;
  486.   u_int32_t cost = 0;
  487.   u_char router_bits = 0;
  488.   int i;
  489.   char buf[64];
  490.   int is_debug = 0;
  491.   if (lsa->header->type == htons (OSPF6_LSTYPE_INTER_PREFIX))
  492.     {
  493.       struct ospf6_inter_prefix_lsa *prefix_lsa;
  494.       if (IS_OSPF6_DEBUG_EXAMIN (INTER_PREFIX))
  495.         {
  496.           is_debug++;
  497.           zlog_info ("Examin %s in area %s", lsa->name, oa->name);
  498.         }
  499.       prefix_lsa = (struct ospf6_inter_prefix_lsa *)
  500.         OSPF6_LSA_HEADER_END (lsa->header);
  501.       prefix.family = AF_INET6;
  502.       prefix.prefixlen = prefix_lsa->prefix.prefix_length;
  503.       ospf6_prefix_in6_addr (&prefix.u.prefix6, &prefix_lsa->prefix);
  504.       prefix2str (&prefix, buf, sizeof (buf));
  505.       table = oa->ospf6->route_table;
  506.       type = OSPF6_DEST_TYPE_NETWORK;
  507.       prefix_options = prefix_lsa->prefix.prefix_options;
  508.       cost = OSPF6_ABR_SUMMARY_METRIC (prefix_lsa);
  509.     }
  510.   else if (lsa->header->type == htons (OSPF6_LSTYPE_INTER_ROUTER))
  511.     {
  512.       struct ospf6_inter_router_lsa *router_lsa;
  513.       if (IS_OSPF6_DEBUG_EXAMIN (INTER_ROUTER))
  514.         {
  515.           is_debug++;
  516.           zlog_info ("Examin %s in area %s", lsa->name, oa->name);
  517.         }
  518.       router_lsa = (struct ospf6_inter_router_lsa *)
  519.         OSPF6_LSA_HEADER_END (lsa->header);
  520.       ospf6_linkstate_prefix (router_lsa->router_id, htonl (0), &prefix);
  521.       inet_ntop (AF_INET, &router_lsa->router_id, buf, sizeof (buf));
  522.       table = oa->ospf6->brouter_table;
  523.       type = OSPF6_DEST_TYPE_ROUTER;
  524.       options[0] = router_lsa->options[0];
  525.       options[1] = router_lsa->options[1];
  526.       options[2] = router_lsa->options[2];
  527.       cost = OSPF6_ABR_SUMMARY_METRIC (router_lsa);
  528.       SET_FLAG (router_bits, OSPF6_ROUTER_BIT_E);
  529.     }
  530.   else
  531.     assert (0);
  532.   /* Find existing route */
  533.   route = ospf6_route_lookup (&prefix, table);
  534.   if (route)
  535.     ospf6_route_lock (route);
  536.   while (route && ospf6_route_is_prefix (&prefix, route))
  537.     {
  538.       if (route->path.area_id == oa->area_id &&
  539.           route->path.origin.type == lsa->header->type &&
  540.           route->path.origin.id == lsa->header->id &&
  541.           route->path.origin.adv_router == lsa->header->adv_router)
  542.         old = route;
  543.       route = ospf6_route_next (route);
  544.     }
  545.   /* (1) if cost == LSInfinity or if the LSA is MaxAge */
  546.   if (cost == LS_INFINITY)
  547.     {
  548.       if (is_debug)
  549.         zlog_info ("cost is LS_INFINITY, ignore");
  550.       if (old)
  551.         ospf6_route_remove (old, table);
  552.       return;
  553.     }
  554.   if (OSPF6_LSA_IS_MAXAGE (lsa))
  555.     {
  556.       if (is_debug)
  557.         zlog_info ("LSA is MaxAge, ignore");
  558.       if (old)
  559.         ospf6_route_remove (old, table);
  560.       return;
  561.     }
  562.   /* (2) if the LSA is self-originated, ignore */
  563.   if (lsa->header->adv_router == oa->ospf6->router_id)
  564.     {
  565.       if (is_debug)
  566.         zlog_info ("LSA is self-originated, ignore");
  567.       if (old)
  568.         ospf6_route_remove (old, table);
  569.       return;
  570.     }
  571.   /* (3) if the prefix is equal to an active configured address range */
  572.   if (lsa->header->type == htons (OSPF6_LSTYPE_INTER_PREFIX))
  573.     {
  574.       range = ospf6_route_lookup (&prefix, oa->range_table);
  575.       if (range)
  576.         {
  577.           if (is_debug)
  578.             zlog_info ("Prefix is equal to address range, ignore");
  579.           if (old)
  580.             ospf6_route_remove (old, table);
  581.           return;
  582.         }
  583.     }
  584.   /* (4) if the routing table entry for the ABR does not exist */
  585.   ospf6_linkstate_prefix (lsa->header->adv_router, htonl (0), &abr_prefix);
  586.   abr_entry = ospf6_route_lookup (&abr_prefix, oa->ospf6->brouter_table);
  587.   if (abr_entry == NULL || abr_entry->path.area_id != oa->area_id ||
  588.       CHECK_FLAG (abr_entry->flag, OSPF6_ROUTE_REMOVE) ||
  589.       ! CHECK_FLAG (abr_entry->path.router_bits, OSPF6_ROUTER_BIT_B))
  590.     {
  591.       if (is_debug)
  592.         zlog_info ("ABR router entry does not exist, ignore");
  593.       if (old)
  594.         ospf6_route_remove (old, table);
  595.       return;
  596.     }
  597.   /* Check import list */
  598.   if (IMPORT_NAME (oa))
  599.     {
  600.       if (IMPORT_LIST (oa) == NULL)
  601.         IMPORT_LIST (oa) = access_list_lookup (AFI_IP6, IMPORT_NAME (oa));
  602.       if (IMPORT_LIST (oa))
  603.         if (access_list_apply (IMPORT_LIST (oa), &prefix) == FILTER_DENY)
  604.           {
  605.             if (is_debug)
  606.               zlog_debug ("Prefix was denied by import-list");
  607.             if (old)
  608.               ospf6_route_remove (old, table);
  609.             return;
  610.           }
  611.     }
  612.   /* Check input prefix-list */
  613.   if (PREFIX_NAME_IN (oa))
  614.     {
  615.       if (PREFIX_LIST_IN (oa) == NULL)
  616.         PREFIX_LIST_IN (oa) = prefix_list_lookup (AFI_IP6, PREFIX_NAME_IN (oa));
  617.       if (PREFIX_LIST_IN (oa))
  618.         if (prefix_list_apply (PREFIX_LIST_IN (oa), &prefix) != PREFIX_PERMIT)
  619.           {
  620.             if (is_debug)
  621.               zlog_debug ("Prefix was denied by prefix-list");
  622.             if (old)
  623.               ospf6_route_remove (old, table);
  624.             return;
  625.           }
  626.     }
  627.   /* (5),(6),(7) the path preference is handled by the sorting
  628.      in the routing table. Always install the path by substituting
  629.      old route (if any). */
  630.   if (old)
  631.     route = ospf6_route_copy (old);
  632.   else
  633.     route = ospf6_route_create ();
  634.   route->type = type;
  635.   route->prefix = prefix;
  636.   route->path.origin.type = lsa->header->type;
  637.   route->path.origin.id = lsa->header->id;
  638.   route->path.origin.adv_router = lsa->header->adv_router;
  639.   route->path.router_bits = router_bits;
  640.   route->path.options[0] = options[0];
  641.   route->path.options[1] = options[1];
  642.   route->path.options[2] = options[2];
  643.   route->path.prefix_options = prefix_options;
  644.   route->path.area_id = oa->area_id;
  645.   route->path.type = OSPF6_PATH_TYPE_INTER;
  646.   route->path.cost = abr_entry->path.cost + cost;
  647.   for (i = 0; i < OSPF6_MULTI_PATH_LIMIT; i++)
  648.     route->nexthop[i] = abr_entry->nexthop[i];
  649.   if (is_debug)
  650.     zlog_info ("Install route: %s", buf);
  651.   ospf6_route_add (route, table);
  652. }
  653. void
  654. ospf6_abr_examin_brouter (u_int32_t router_id)
  655. {
  656.   struct ospf6_lsa *lsa;
  657.   struct ospf6_area *oa;
  658.   listnode node;
  659.   u_int16_t type;
  660.   type = htons (OSPF6_LSTYPE_INTER_ROUTER);
  661.   for (node = listhead (ospf6->area_list); node; nextnode (node))
  662.     {
  663.       oa = OSPF6_AREA (getdata (node));
  664.       for (lsa = ospf6_lsdb_type_router_head (type, router_id, oa->lsdb); lsa;
  665.            lsa = ospf6_lsdb_type_router_next (type, router_id, lsa))
  666.         ospf6_abr_examin_summary (lsa, oa);
  667.     }
  668.   type = htons (OSPF6_LSTYPE_INTER_PREFIX);
  669.   for (node = listhead (ospf6->area_list); node; nextnode (node))
  670.     {
  671.       oa = OSPF6_AREA (getdata (node));
  672.       for (lsa = ospf6_lsdb_type_router_head (type, router_id, oa->lsdb); lsa;
  673.            lsa = ospf6_lsdb_type_router_next (type, router_id, lsa))
  674.         ospf6_abr_examin_summary (lsa, oa);
  675.     }
  676. }
  677. void
  678. ospf6_abr_reimport (struct ospf6_area *oa)
  679. {
  680.   struct ospf6_lsa *lsa;
  681.   u_int16_t type;
  682.   type = htons (OSPF6_LSTYPE_INTER_ROUTER);
  683.   for (lsa = ospf6_lsdb_type_head (type, oa->lsdb); lsa;
  684.        lsa = ospf6_lsdb_type_next (type, lsa))
  685.     ospf6_abr_examin_summary (lsa, oa);
  686.   type = htons (OSPF6_LSTYPE_INTER_PREFIX);
  687.   for (lsa = ospf6_lsdb_type_head (type, oa->lsdb); lsa;
  688.        lsa = ospf6_lsdb_type_next (type, lsa))
  689.     ospf6_abr_examin_summary (lsa, oa);
  690. }
  691. /* Display functions */
  692. int
  693. ospf6_inter_area_prefix_lsa_show (struct vty *vty, struct ospf6_lsa *lsa)
  694. {
  695.   struct ospf6_inter_prefix_lsa *prefix_lsa;
  696.   struct in6_addr in6;
  697.   char buf[64];
  698.   prefix_lsa = (struct ospf6_inter_prefix_lsa *)
  699.     OSPF6_LSA_HEADER_END (lsa->header);
  700.   vty_out (vty, "     Metric: %lu%s",
  701.            (u_long) OSPF6_ABR_SUMMARY_METRIC (prefix_lsa), VNL);
  702.   ospf6_prefix_options_printbuf (prefix_lsa->prefix.prefix_options,
  703.                                  buf, sizeof (buf));
  704.   vty_out (vty, "     Prefix Options: %s%s", buf, VNL);
  705.   ospf6_prefix_in6_addr (&in6, &prefix_lsa->prefix);
  706.   inet_ntop (AF_INET6, &in6, buf, sizeof (buf));
  707.   vty_out (vty, "     Prefix: %s/%d%s", buf,
  708.            prefix_lsa->prefix.prefix_length, VNL);
  709.   return 0;
  710. }
  711. int
  712. ospf6_inter_area_router_lsa_show (struct vty *vty, struct ospf6_lsa *lsa)
  713. {
  714.   struct ospf6_inter_router_lsa *router_lsa;
  715.   char buf[64];
  716.   router_lsa = (struct ospf6_inter_router_lsa *)
  717.     OSPF6_LSA_HEADER_END (lsa->header);
  718.   ospf6_options_printbuf (router_lsa->options, buf, sizeof (buf));
  719.   vty_out (vty, "     Options: %s%s", buf, VNL);
  720.   vty_out (vty, "     Metric: %lu%s",
  721.            (u_long) OSPF6_ABR_SUMMARY_METRIC (router_lsa), VNL);
  722.   inet_ntop (AF_INET, &router_lsa->router_id, buf, sizeof (buf));
  723.   vty_out (vty, "     Destination Router ID: %s%s", buf, VNL);
  724.   return 0;
  725. }
  726. /* Debug commands */
  727. DEFUN (debug_ospf6_abr,
  728.        debug_ospf6_abr_cmd,
  729.        "debug ospf6 abr",
  730.        DEBUG_STR
  731.        OSPF6_STR
  732.        "Debug OSPFv3 ABR functionn"
  733.       )
  734. {
  735.   OSPF6_DEBUG_ABR_ON ();
  736.   return CMD_SUCCESS;
  737. }
  738. DEFUN (no_debug_ospf6_abr,
  739.        no_debug_ospf6_abr_cmd,
  740.        "no debug ospf6 abr",
  741.        NO_STR
  742.        DEBUG_STR
  743.        OSPF6_STR
  744.        "Debug OSPFv3 ABR functionn"
  745.       )
  746. {
  747.   OSPF6_DEBUG_ABR_OFF ();
  748.   return CMD_SUCCESS;
  749. }
  750. int
  751. config_write_ospf6_debug_abr (struct vty *vty)
  752. {
  753.   if (IS_OSPF6_DEBUG_ABR)
  754.     vty_out (vty, "debug ospf6 abr%s", VNL);
  755.   return 0;
  756. }
  757. void
  758. install_element_ospf6_debug_abr ()
  759. {
  760.   install_element (ENABLE_NODE, &debug_ospf6_abr_cmd);
  761.   install_element (ENABLE_NODE, &no_debug_ospf6_abr_cmd);
  762.   install_element (CONFIG_NODE, &debug_ospf6_abr_cmd);
  763.   install_element (CONFIG_NODE, &no_debug_ospf6_abr_cmd);
  764. }
  765. struct ospf6_lsa_handler inter_prefix_handler =
  766. {
  767.   OSPF6_LSTYPE_INTER_PREFIX,
  768.   "Inter-Prefix",
  769.   ospf6_inter_area_prefix_lsa_show
  770. };
  771. struct ospf6_lsa_handler inter_router_handler =
  772. {
  773.   OSPF6_LSTYPE_INTER_ROUTER,
  774.   "Inter-Router",
  775.   ospf6_inter_area_router_lsa_show
  776. };
  777. void
  778. ospf6_abr_init ()
  779. {
  780.   ospf6_install_lsa_handler (&inter_prefix_handler);
  781.   ospf6_install_lsa_handler (&inter_router_handler);
  782. }