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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPF AS external route calculation.
  3.  * Copyright (C) 1999, 2000 Alex Zinin, Toshiaki Takada
  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 Free
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20.  * 02111-1307, USA.
  21.  */
  22. #include <zebra.h>
  23. #include "thread.h"
  24. #include "memory.h"
  25. #include "hash.h"
  26. #include "linklist.h"
  27. #include "prefix.h"
  28. #include "if.h"
  29. #include "table.h"
  30. #include "vty.h"
  31. #include "log.h"
  32. #include "ospfd/ospfd.h"
  33. #include "ospfd/ospf_interface.h"
  34. #include "ospfd/ospf_ism.h"
  35. #include "ospfd/ospf_asbr.h"
  36. #include "ospfd/ospf_lsa.h"
  37. #include "ospfd/ospf_lsdb.h"
  38. #include "ospfd/ospf_neighbor.h"
  39. #include "ospfd/ospf_nsm.h"
  40. #include "ospfd/ospf_spf.h"
  41. #include "ospfd/ospf_route.h"
  42. #include "ospfd/ospf_ase.h"
  43. #include "ospfd/ospf_zebra.h"
  44. #include "ospfd/ospf_dump.h"
  45. #define DEBUG
  46. struct ospf_route *
  47. ospf_find_asbr_route (struct ospf *ospf,
  48.       struct route_table *rtrs, struct prefix_ipv4 *asbr)
  49. {
  50.   struct route_node *rn;
  51.   struct ospf_route *or, *best = NULL;
  52.   listnode node;
  53.   list chosen;
  54.   /* Sanity check. */
  55.   if (rtrs == NULL)
  56.     return NULL;
  57.   rn = route_node_lookup (rtrs, (struct prefix *) asbr);
  58.   if (! rn)
  59.     return NULL;
  60.   route_unlock_node (rn);
  61.   chosen = list_new ();
  62.   /* First try to find intra-area non-bb paths. */
  63.   if (!CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE))
  64.     for (node = listhead ((list) rn->info); node; nextnode (node))
  65.       if ((or = getdata (node)) != NULL)
  66. if (or->cost < OSPF_LS_INFINITY)
  67.   if (!OSPF_IS_AREA_ID_BACKBONE (or->u.std.area_id) &&
  68.       or->path_type == OSPF_PATH_INTRA_AREA)
  69.     listnode_add (chosen, or);
  70.   /* If none is found -- look through all. */
  71.   if (listcount (chosen) == 0)
  72.     {
  73.       list_free (chosen);
  74.       chosen = rn->info;
  75.     }
  76.   /* Now find the route with least cost. */
  77.   for (node = listhead (chosen); node; nextnode (node))
  78.     if ((or = getdata (node)) != NULL)
  79.       if (or->cost < OSPF_LS_INFINITY)
  80. {
  81.   if (best == NULL)
  82.     best = or;
  83.   else if (best->cost > or->cost)
  84.     best = or;
  85.   else if (best->cost == or->cost &&
  86.    IPV4_ADDR_CMP (&best->u.std.area_id,
  87.   &or->u.std.area_id) < 0)
  88.     best = or;
  89. }
  90.   if (chosen != rn->info)
  91.     list_delete (chosen);
  92.   return best;
  93. }
  94. struct ospf_route * 
  95. ospf_find_asbr_route_through_area (struct route_table *rtrs, 
  96.    struct prefix_ipv4 *asbr, 
  97.    struct ospf_area *area)
  98. {
  99.   struct route_node *rn;
  100.   /* Sanity check. */
  101.   if (rtrs == NULL)
  102.     return NULL;
  103.   rn = route_node_lookup (rtrs, (struct prefix *) asbr);
  104.  
  105.   if (rn)
  106.     {
  107.       listnode node;
  108.       struct ospf_route *or;
  109.       route_unlock_node (rn);
  110.       for (node = listhead ((list) rn->info); node; nextnode (node))
  111. if ((or = getdata (node)) != NULL)
  112.   if (IPV4_ADDR_SAME (&or->u.std.area_id, &area->area_id))
  113.     return or;
  114.     }
  115.   return NULL;
  116. }
  117. void
  118. ospf_ase_complete_direct_routes (struct ospf_route *ro, struct in_addr nexthop)
  119. {
  120.   listnode node;
  121.   struct ospf_path *op;
  122.   for (node = listhead (ro->path); node; nextnode (node))
  123.     if ((op = getdata (node)) != NULL)
  124.       if (op->nexthop.s_addr == 0)
  125. op->nexthop.s_addr = nexthop.s_addr;
  126. }
  127. int
  128. ospf_ase_forward_address_check (struct ospf *ospf, struct in_addr fwd_addr)
  129. {
  130.   listnode ifn;
  131.   struct ospf_interface *oi;
  132.   for (ifn = listhead (ospf->oiflist); ifn; nextnode (ifn))
  133.     if ((oi = getdata (ifn)) != NULL)
  134.       if (if_is_up (oi->ifp))
  135. if (oi->type != OSPF_IFTYPE_VIRTUALLINK)
  136.   if (IPV4_ADDR_SAME (&oi->address->u.prefix4, &fwd_addr))
  137.     return 0;
  138.   
  139.   return 1;
  140. }
  141. /* Calculate ASBR route. */
  142. struct ospf_route *
  143. ospf_ase_calculate_asbr_route (struct ospf *ospf,
  144.        struct route_table *rt_network,
  145.        struct route_table *rt_router,
  146.        struct as_external_lsa *al)
  147. {
  148.   struct prefix_ipv4 asbr;
  149.   struct ospf_route *asbr_route;
  150.   struct route_node *rn;
  151.   /* Find ASBR route from Router routing table. */
  152.   asbr.family = AF_INET;
  153.   asbr.prefix = al->header.adv_router;
  154.   asbr.prefixlen = IPV4_MAX_BITLEN;
  155.   apply_mask_ipv4 (&asbr);
  156.   asbr_route = ospf_find_asbr_route (ospf, rt_router, &asbr);
  157.   if (asbr_route == NULL)
  158.     {
  159.       zlog_info ("ospf_ase_calculate(): Route to ASBR %s not found",
  160.  inet_ntoa (asbr.prefix));
  161.       return NULL;
  162.     }
  163.   if (!(asbr_route->u.std.flags & ROUTER_LSA_EXTERNAL))
  164.     {
  165.       zlog_info ("ospf_ase_calculate(): Originating router is not an ASBR");
  166.       return NULL;
  167.     }
  168.    
  169.   if (al->e[0].fwd_addr.s_addr != 0)
  170.     {
  171.       zlog_info ("ospf_ase_calculate(): "
  172.  "Forwarding address is not 0.0.0.0.");
  173.       if (! ospf_ase_forward_address_check (ospf, al->e[0].fwd_addr))
  174. {
  175.   zlog_info ("ospf_ase_calculate(): "
  176.      "Forwarding address is one of our addresses, Ignore.");
  177.   return NULL;
  178.         }
  179.       zlog_info ("ospf_ase_calculate(): "
  180.  "Looking up in the Network Routing Table.");
  181.       /* Looking up the path to the fwd_addr from Network route. */
  182.       asbr.family = AF_INET;
  183.       asbr.prefix = al->e[0].fwd_addr;
  184.       asbr.prefixlen = IPV4_MAX_BITLEN;
  185.       rn = route_node_match (rt_network, (struct prefix *) &asbr);
  186.    
  187.       if (rn == NULL)
  188. {
  189.   zlog_info ("ospf_ase_calculate(): "
  190.      "Couldn't find a route to the forwarding address.");
  191.   return NULL;
  192. }
  193.       route_unlock_node (rn);
  194.       if ((asbr_route = rn->info) == NULL)
  195. {
  196.   zlog_info ("ospf_ase_calculate(): "
  197.      "Somehow OSPF route to ASBR is lost");
  198.   return NULL;
  199. }
  200.     }
  201.   return asbr_route;
  202. }
  203. struct ospf_route *
  204. ospf_ase_calculate_new_route (struct ospf_lsa *lsa,
  205.       struct ospf_route *asbr_route, u_int32_t metric)
  206. {
  207.   struct as_external_lsa *al;
  208.   struct ospf_route *new;
  209.   al = (struct as_external_lsa *) lsa->data;
  210.   new = ospf_route_new ();
  211.   /* Set redistributed type -- does make sense? */
  212.   /* new->type = type; */
  213.   new->id = al->header.id;
  214.   new->mask = al->mask;
  215.   if (!IS_EXTERNAL_METRIC (al->e[0].tos))
  216.     {
  217.       zlog_info ("Route[External]: type-1 created.");
  218.       new->path_type = OSPF_PATH_TYPE1_EXTERNAL;
  219.       new->cost = asbr_route->cost + metric; /* X + Y */
  220.     }
  221.   else
  222.     {
  223.       zlog_info ("Route[External]: type-2 created.");
  224.       new->path_type = OSPF_PATH_TYPE2_EXTERNAL;
  225.       new->cost = asbr_route->cost; /* X */
  226.       new->u.ext.type2_cost = metric; /* Y */
  227.     }
  228.   new->type = OSPF_DESTINATION_NETWORK;
  229.   new->path = list_new ();
  230.   new->u.ext.origin = lsa;
  231.   new->u.ext.tag = ntohl (al->e[0].route_tag);
  232.   new->u.ext.asbr = asbr_route;
  233.   assert (new != asbr_route);
  234.   return new;
  235. }
  236. #define OSPF_ASE_CALC_INTERVAL 1
  237. int
  238. ospf_ase_calculate_route (struct ospf *ospf, struct ospf_lsa * lsa)
  239. {
  240.   u_int32_t metric;
  241.   struct as_external_lsa *al;
  242.   struct ospf_route *asbr_route;
  243.   struct prefix_ipv4 asbr, p;
  244.   struct route_node *rn;
  245.   struct ospf_route *new, *or;
  246.   int ret;
  247.   
  248.   assert (lsa);
  249.   al = (struct as_external_lsa *) lsa->data;
  250. #ifdef HAVE_NSSA
  251.   if (lsa->data->type == OSPF_AS_NSSA_LSA)
  252.     if (IS_DEBUG_OSPF_NSSA)
  253.       zlog_info ("ospf_ase_calc(): Processing Type-7");
  254.   /* Stay away from any Local Translated Type-7 LSAs */
  255.   if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))
  256.     {
  257.       if (IS_DEBUG_OSPF_NSSA)
  258. zlog_info ("ospf_ase_calc(): Rejecting Local Xlt'd");
  259.       return 0;
  260.     }
  261. #endif /* HAVE_NSSA */
  262.   zlog_info ("Route[External]: Calculate AS-external-LSA to %s/%d",
  263.      inet_ntoa (al->header.id), ip_masklen (al->mask));
  264.   /* (1) If the cost specified by the LSA is LSInfinity, or if the
  265.          LSA's LS age is equal to MaxAge, then examine the next LSA. */
  266.   if ((metric = GET_METRIC (al->e[0].metric)) >= OSPF_LS_INFINITY)
  267.     {
  268.       zlog_info ("Route[External]: Metric is OSPF_LS_INFINITY");
  269.       return 0;
  270.     }
  271.   if (IS_LSA_MAXAGE (lsa))
  272.     {
  273.       zlog_info ("Route[External]: AS-external-LSA is MAXAGE");
  274.       return 0;
  275.     }
  276.   
  277.   /* (2) If the LSA was originated by the calculating router itself,
  278.      examine the next LSA. */
  279.   if (IS_LSA_SELF (lsa))
  280.     {
  281.       zlog_info ("Route[External]: AS-external-LSA is self originated");
  282.       return 0;
  283.     }
  284.   /* (3) Call the destination described by the LSA N.  N's address is
  285.          obtained by masking the LSA's Link State ID with the
  286.  network/subnet mask contained in the body of the LSA.  Look
  287.  up the routing table entries (potentially one per attached
  288.  area) for the AS boundary router (ASBR) that originated the
  289.  LSA. If no entries exist for router ASBR (i.e., ASBR is
  290.  unreachable), do nothing with this LSA and consider the next
  291.  in the list. */
  292.   
  293.   asbr.family = AF_INET;
  294.   asbr.prefix = al->header.adv_router;
  295.   asbr.prefixlen = IPV4_MAX_BITLEN;
  296.   apply_mask_ipv4 (&asbr);
  297.   
  298.   asbr_route = ospf_find_asbr_route (ospf, ospf->new_rtrs, &asbr);
  299.   if (asbr_route == NULL)
  300.     {
  301.       zlog_info ("Route[External]: Can't find originating ASBR route");
  302.       return 0;
  303.     }
  304.   if (!(asbr_route->u.std.flags & ROUTER_LSA_EXTERNAL))
  305.     {
  306.       zlog_info ("Route[External]: Originating router is not an ASBR");
  307.       return 0;
  308.     }
  309.   
  310.   /*     Else, this LSA describes an AS external path to destination
  311.  N.  Examine the forwarding address specified in the AS-
  312.  external-LSA.  This indicates the IP address to which
  313.  packets for the destination should be forwarded. */
  314.   
  315.   if (al->e[0].fwd_addr.s_addr == 0)
  316.     {
  317.       /* If the forwarding address is set to 0.0.0.0, packets should
  318.  be sent to the ASBR itself. Among the multiple routing table
  319.  entries for the ASBR, select the preferred entry as follows.
  320.  If RFC1583Compatibility is set to "disabled", prune the set
  321.  of routing table entries for the ASBR as described in
  322.  Section 16.4.1. In any case, among the remaining routing
  323.  table entries, select the routing table entry with the least
  324.  cost; when there are multiple least cost routing table
  325.  entries the entry whose associated area has the largest OSPF
  326.  Area ID (when considered as an unsigned 32-bit integer) is
  327.  chosen. */
  328.       /* asbr_route already contains the requested route */
  329.     }
  330.   else
  331.     {
  332.       /* If the forwarding address is non-zero, look up the
  333.  forwarding address in the routing table.[24] The matching
  334.  routing table entry must specify an intra-area or inter-area
  335.  path; if no such path exists, do nothing with the LSA and
  336.  consider the next in the list. */
  337.       if (! ospf_ase_forward_address_check (ospf, al->e[0].fwd_addr))
  338. {
  339.   zlog_info ("Route[External]: Forwarding address is our router address");
  340.   return 0;
  341. }
  342.       
  343.       asbr.family = AF_INET;
  344.       asbr.prefix = al->e[0].fwd_addr;
  345.       asbr.prefixlen = IPV4_MAX_BITLEN;
  346.       rn = route_node_match (ospf->new_table, (struct prefix *) &asbr);
  347.       
  348.       if (rn == NULL || (asbr_route = rn->info) == NULL)
  349. {
  350.   zlog_info ("Route[External]: Can't find route to forwarding address");
  351.   if (rn)
  352.     route_unlock_node (rn);
  353.   return 0;
  354. }
  355.       route_unlock_node (rn);
  356.     }
  357.   /* (4) Let X be the cost specified by the preferred routing table
  358.          entry for the ASBR/forwarding address, and Y the cost
  359.  specified in the LSA.  X is in terms of the link state
  360.  metric, and Y is a type 1 or 2 external metric. */
  361.  
  362.   /* (5) Look up the routing table entry for the destination N.  If
  363.          no entry exists for N, install the AS external path to N,
  364.  with next hop equal to the list of next hops to the
  365.  forwarding address, and advertising router equal to ASBR.
  366.  If the external metric type is 1, then the path-type is set
  367.  to type 1 external and the cost is equal to X+Y.  If the
  368.  external metric type is 2, the path-type is set to type 2
  369.  external, the link state component of the route's cost is X,
  370.  and the type 2 cost is Y. */
  371.   new = ospf_ase_calculate_new_route (lsa, asbr_route, metric);
  372.   /* (6) Compare the AS external path described by the LSA with the
  373.          existing paths in N's routing table entry, as follows. If
  374.  the new path is preferred, it replaces the present paths in
  375.  N's routing table entry.  If the new path is of equal
  376.  preference, it is added to N's routing table entry's list of
  377.  paths. */
  378.   /* Set prefix. */
  379.   p.family = AF_INET;
  380.   p.prefix = al->header.id;
  381.   p.prefixlen = ip_masklen (al->mask);
  382.   /* if there is a Intra/Inter area route to the N
  383.      do not install external route */
  384.   if ((rn = route_node_lookup (ospf->new_table,
  385.        (struct prefix *) &p)) != NULL
  386.       && (rn->info != NULL))
  387.     {
  388.       if (new)
  389. ospf_route_free (new);
  390.       return 0;
  391.     }
  392.   
  393.   /* Find a route to the same dest */
  394.   /* If there is no route, create new one. */
  395.   if ((rn = route_node_lookup (ospf->new_external_route,
  396.        (struct prefix *) &p)) == NULL 
  397.       || (or = rn->info) == NULL)
  398.     {
  399.       zlog_info ("Route[External]: Adding a new route %s/%d",
  400.  inet_ntoa (p.prefix), p.prefixlen);
  401.       ospf_route_add (ospf->new_external_route, &p, new, asbr_route);
  402.       if (al->e[0].fwd_addr.s_addr)
  403. ospf_ase_complete_direct_routes (new, al->e[0].fwd_addr);
  404.       return 0;
  405.     }
  406.   else
  407.     {
  408.       /* (a) Intra-area and inter-area paths are always preferred
  409.              over AS external paths.
  410.          (b) Type 1 external paths are always preferred over type 2
  411.              external paths. When all paths are type 2 external
  412.      paths, the paths with the smallest advertised type 2
  413.      metric are always preferred. */
  414.       ret = ospf_route_cmp (ospf, new, or);
  415.   
  416.   /*     (c) If the new AS external path is still indistinguishable
  417.              from the current paths in the N's routing table entry,
  418.      and RFC1583Compatibility is set to "disabled", select
  419.      the preferred paths based on the intra-AS paths to the
  420.      ASBR/forwarding addresses, as specified in Section
  421.      16.4.1.
  422.          (d) If the new AS external path is still indistinguishable
  423.              from the current paths in the N's routing table entry,
  424.      select the preferred path based on a least cost
  425.      comparison.  Type 1 external paths are compared by
  426.      looking at the sum of the distance to the forwarding
  427.      address and the advertised type 1 metric (X+Y).  Type 2
  428.      external paths advertising equal type 2 metrics are
  429.      compared by looking at the distance to the forwarding
  430.      addresses.
  431.   */
  432.       /* New route is better */
  433.       if (ret < 0)
  434. {
  435.   zlog_info ("Route[External]: New route is better");
  436.   ospf_route_subst (rn, new, asbr_route);
  437.   if (al->e[0].fwd_addr.s_addr)
  438.     ospf_ase_complete_direct_routes (new, al->e[0].fwd_addr);
  439.   or = new;
  440.   new = NULL;
  441. }
  442.       /* Old route is better */
  443.       else if (ret > 0)
  444. {
  445.   zlog_info ("Route[External]: Old route is better");
  446.   /* do nothing */
  447. }
  448.       /* Routes are equal */
  449.       else
  450. {
  451.   zlog_info ("Route[External]: Routes are equal");
  452.   ospf_route_copy_nexthops (or, asbr_route->path);
  453.   if (al->e[0].fwd_addr.s_addr)
  454.     ospf_ase_complete_direct_routes (or, al->e[0].fwd_addr);
  455. }
  456.     }
  457.   /* Make sure setting newly calculated ASBR route.*/
  458.   or->u.ext.asbr = asbr_route;
  459.   if (new)
  460.     ospf_route_free (new);
  461.   lsa->route = or;
  462.   return 0;
  463. }
  464. int
  465. ospf_ase_route_match_same (struct route_table *rt, struct prefix *prefix,
  466.    struct ospf_route *newor)
  467. {
  468.   struct route_node *rn;
  469.   struct ospf_route *or;
  470.   struct ospf_path *op;
  471.   struct ospf_path *newop;
  472.   listnode n1;
  473.   listnode n2;
  474.   if (! rt || ! prefix)
  475.     return 0;
  476.    rn = route_node_lookup (rt, prefix);
  477.    if (! rn)
  478.      return 0;
  479.  
  480.    route_unlock_node (rn);
  481.    or = rn->info;
  482.    if (or->path_type != newor->path_type)
  483.      return 0;
  484.    switch (or->path_type)
  485.      {
  486.      case OSPF_PATH_TYPE1_EXTERNAL:
  487.        if (or->cost != newor->cost)
  488.  return 0;
  489.        break;
  490.      case OSPF_PATH_TYPE2_EXTERNAL:
  491.        if ((or->cost != newor->cost) ||
  492.    (or->u.ext.type2_cost != newor->u.ext.type2_cost))
  493.  return 0;
  494.        break;
  495.      default:
  496.        assert (0);
  497.        return 0;
  498.      }
  499.    
  500.    if (or->path->count != newor->path->count)
  501.      return 0;
  502.        
  503.    /* Check each path. */
  504.    for (n1 = listhead (or->path), n2 = listhead (newor->path);
  505. n1 && n2; nextnode (n1), nextnode (n2))
  506.      { 
  507.        op = getdata (n1);
  508.        newop = getdata (n2);
  509.        
  510.        if (! IPV4_ADDR_SAME (&op->nexthop, &newop->nexthop))
  511.  return 0;
  512.      }
  513.    return 1;
  514. }
  515. int
  516. ospf_ase_compare_tables (struct route_table *new_external_route,
  517.  struct route_table *old_external_route)
  518. {
  519.   struct route_node *rn, *new_rn;
  520.   struct ospf_route *or;
  521.   
  522.   /* Remove deleted routes */
  523.   for (rn = route_top (old_external_route); rn; rn = route_next (rn))
  524.     if ((or = rn->info))
  525.       {
  526. if (! (new_rn = route_node_lookup (new_external_route, &rn->p)))
  527.   ospf_zebra_delete ((struct prefix_ipv4 *) &rn->p, or);
  528. else
  529.   route_unlock_node (new_rn);
  530.       }
  531.   
  532.   /* Install new routes */
  533.   for (rn = route_top (new_external_route); rn; rn = route_next (rn))
  534.     if ((or = rn->info) != NULL)
  535.       if (! ospf_ase_route_match_same (old_external_route, &rn->p, or))
  536. ospf_zebra_add ((struct prefix_ipv4 *) &rn->p, or);
  537.        
  538.   return 0;
  539. }
  540. int
  541. ospf_ase_calculate_timer (struct thread *t)
  542. {
  543.   struct ospf *ospf;
  544.   struct ospf_lsa *lsa;
  545.   struct route_node *rn;
  546. #ifdef HAVE_NSSA
  547.   listnode node;
  548.   struct ospf_area *area;
  549. #endif /* HAVE_NSSA */
  550.   ospf = THREAD_ARG (t);
  551.   ospf->t_ase_calc = NULL;
  552.   if (ospf->ase_calc)
  553.     {
  554.       ospf->ase_calc = 0;
  555.       /* Calculate external route for each AS-external-LSA */
  556.       LSDB_LOOP (EXTERNAL_LSDB (ospf), rn, lsa)
  557. ospf_ase_calculate_route (ospf, lsa);
  558. #ifdef HAVE_NSSA
  559.       /*  This version simple adds to the table all NSSA areas  */
  560.       if (ospf->anyNSSA)
  561. for (node = listhead (ospf->areas); node; nextnode (node))
  562.   {
  563.     area = getdata (node);
  564.     if (IS_DEBUG_OSPF_NSSA)
  565.       zlog_info ("ospf_ase_calculate_timer(): looking at area %s",
  566.  inet_ntoa (area->area_id));
  567.     if (area->external_routing == OSPF_AREA_NSSA)
  568.       LSDB_LOOP (NSSA_LSDB (area), rn, lsa)
  569. ospf_ase_calculate_route (ospf, lsa);
  570.   }
  571. #endif /* HAVE_NSSA */
  572.       /* Compare old and new external routing table and install the
  573.  difference info zebra/kernel */
  574.       ospf_ase_compare_tables (ospf->new_external_route,
  575.        ospf->old_external_route);
  576.       /* Delete old external routing table */
  577.       ospf_route_table_free (ospf->old_external_route);
  578.       ospf->old_external_route = ospf->new_external_route;
  579.       ospf->new_external_route = route_table_init ();
  580.     }
  581.   return 0;
  582. }
  583. void
  584. ospf_ase_calculate_schedule (struct ospf *ospf)
  585. {
  586.   if (ospf == NULL)
  587.     return;
  588.   ospf->ase_calc = 1;
  589. }
  590. void
  591. ospf_ase_calculate_timer_add (struct ospf *ospf)
  592. {
  593.   if (ospf == NULL)
  594.     return;
  595.   if (! ospf->t_ase_calc)
  596.     ospf->t_ase_calc = thread_add_timer (master, ospf_ase_calculate_timer,
  597.  ospf, OSPF_ASE_CALC_INTERVAL);
  598. }
  599. void
  600. ospf_ase_register_external_lsa (struct ospf_lsa *lsa, struct ospf *top)
  601. {
  602.   struct route_node *rn;
  603.   struct prefix_ipv4 p;
  604.   list lst;
  605.   struct as_external_lsa *al;
  606.   al = (struct as_external_lsa *) lsa->data;
  607.   p.family = AF_INET;
  608.   p.prefix = lsa->data->id;
  609.   p.prefixlen = ip_masklen (al->mask);
  610.   apply_mask_ipv4 (&p);
  611.   rn = route_node_get (top->external_lsas, (struct prefix *) &p);
  612.   if ((lst = rn->info) == NULL)
  613.     rn->info = lst = list_new();
  614.   /* We assume that if LSA is deleted from DB
  615.      is is also deleted from this RT */
  616.   listnode_add (lst, ospf_lsa_lock (lsa));
  617. }
  618. void
  619. ospf_ase_unregister_external_lsa (struct ospf_lsa *lsa, struct ospf *top)
  620. {
  621.   struct route_node *rn;
  622.   struct prefix_ipv4 p;
  623.   list lst;
  624.   struct as_external_lsa *al;
  625.   al = (struct as_external_lsa *) lsa->data;
  626.   p.family = AF_INET;
  627.   p.prefix = lsa->data->id;
  628.   p.prefixlen = ip_masklen (al->mask);
  629.   apply_mask_ipv4 (&p);
  630.   rn = route_node_get (top->external_lsas, (struct prefix *) &p);
  631.   lst = rn->info;
  632.   /* XXX lst can be NULL */
  633.   if (lst) {
  634.     listnode_delete (lst, lsa);
  635.     ospf_lsa_unlock (lsa);
  636.   }
  637. }
  638. void
  639. ospf_ase_external_lsas_finish (struct route_table *rt)
  640. {
  641.   struct route_node *rn;
  642.   struct ospf_lsa *lsa;
  643.   list lst;
  644.   listnode node;
  645.   
  646.   for (rn = route_top (rt); rn; rn = route_next (rn))
  647.     if ((lst = rn->info) != NULL)
  648.       {
  649. for (node = listhead (lst); node; node = nextnode (node))
  650.   if ((lsa = getdata (node)) != NULL)
  651.     ospf_lsa_unlock (lsa);
  652. list_delete (lst);
  653.       }
  654.   
  655.   route_table_finish (rt);
  656. }
  657. void
  658. ospf_ase_incremental_update (struct ospf *ospf, struct ospf_lsa *lsa)
  659. {
  660.   list lsas;
  661.   listnode node;
  662.   struct route_node *rn, *rn2;
  663.   struct prefix_ipv4 p;
  664.   struct route_table *tmp_old;
  665.   struct as_external_lsa *al;
  666.   al = (struct as_external_lsa *) lsa->data;
  667.   p.family = AF_INET;
  668.   p.prefix = lsa->data->id;
  669.   p.prefixlen = ip_masklen (al->mask);
  670.   apply_mask_ipv4 (&p);
  671.   /* if new_table is NULL, there was no spf calculation, thus
  672.      incremental update is unneeded */
  673.   if (!ospf->new_table)
  674.     return;
  675.   
  676.   /* If there is already an intra-area or inter-area route
  677.      to the destination, no recalculation is necessary
  678.      (internal routes take precedence). */
  679.   
  680.   rn = route_node_lookup (ospf->new_table, (struct prefix *) &p);
  681.   if (rn && rn->info)
  682.     {
  683.       route_unlock_node (rn);
  684.       return;
  685.     }
  686.   rn = route_node_lookup (ospf->external_lsas, (struct prefix *) &p);
  687.   assert (rn && rn->info);
  688.   lsas = rn->info;
  689.   
  690.   for (node = listhead (lsas); node; nextnode (node))
  691.     if ((lsa = getdata (node)) != NULL)
  692.       ospf_ase_calculate_route (ospf, lsa);
  693.   /* prepare temporary old routing table for compare */
  694.   tmp_old = route_table_init ();
  695.   rn = route_node_lookup (ospf->old_external_route, (struct prefix *) &p);
  696.   if (rn && rn->info)
  697.     {
  698.       rn2 = route_node_get (tmp_old, (struct prefix *) &p);
  699.       rn2->info = rn->info;
  700.     }
  701.   /* install changes to zebra */
  702.   ospf_ase_compare_tables (ospf->new_external_route, tmp_old);
  703.   /* update ospf->old_external_route table */
  704.   if (rn && rn->info)
  705.     ospf_route_free ((struct ospf_route *) rn->info);
  706.   rn2 = route_node_lookup (ospf->new_external_route, (struct prefix *) &p);
  707.   /* if new route exists, install it to ospf->old_external_route */
  708.   if (rn2 && rn2->info)
  709.     {
  710.       if (!rn)
  711. rn = route_node_get (ospf->old_external_route, (struct prefix *) &p);
  712.       rn->info = rn2->info;
  713.     }
  714.   else
  715.     {
  716.       /* remove route node from ospf->old_external_route */
  717.       if (rn)
  718. {
  719.   rn->info = NULL;
  720.   route_unlock_node (rn);
  721.   route_unlock_node (rn);
  722. }
  723.     }
  724.   if (rn2)
  725.     {
  726.       /* rn2->info is stored in route node of ospf->old_external_route */
  727.       rn2->info = NULL;
  728.       route_unlock_node (rn2);
  729.       route_unlock_node (rn2);
  730.     }
  731.   route_table_finish (tmp_old);
  732. }