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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPF Flooding -- RFC2328 Section 13.
  3.  * Copyright (C) 1999, 2000 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
  8.  * it under the terms of the GNU General Public License as published
  9.  * by the Free Software Foundation; either version 2, or (at your
  10.  * option) any 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 "linklist.h"
  24. #include "prefix.h"
  25. #include "if.h"
  26. #include "command.h"
  27. #include "table.h"
  28. #include "thread.h"
  29. #include "memory.h"
  30. #include "log.h"
  31. #include "zclient.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_flood.h"
  42. #include "ospfd/ospf_packet.h"
  43. #include "ospfd/ospf_abr.h"
  44. #include "ospfd/ospf_route.h"
  45. #include "ospfd/ospf_zebra.h"
  46. #include "ospfd/ospf_dump.h"
  47. extern struct zclient *zclient;
  48. /* Do the LSA acking specified in table 19, Section 13.5, row 2
  49.  * This get called from ospf_flood_out_interface. Declared inline 
  50.  * for speed. */
  51. static void
  52. ospf_flood_delayed_lsa_ack (struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
  53. {
  54.   /* LSA is more recent than database copy, but was not
  55.      flooded back out receiving interface.  Delayed
  56.      acknowledgment sent. If interface is in Backup state
  57.      delayed acknowledgment sent only if advertisement
  58.      received from Designated Router, otherwise do nothing See
  59.      RFC 2328 Section 13.5 */
  60.   /* Whether LSA is more recent or not, and whether this is in
  61.      response to the LSA being sent out recieving interface has been 
  62.      worked out previously */
  63.   /* Deal with router as BDR */
  64.   if (inbr->oi->state == ISM_Backup && ! NBR_IS_DR (inbr))
  65.     return;
  66.   /* Schedule a delayed LSA Ack to be sent */ 
  67.   listnode_add (inbr->oi->ls_ack, ospf_lsa_lock (lsa));
  68. }
  69. /* Check LSA is related to external info. */
  70. struct external_info *
  71. ospf_external_info_check (struct ospf_lsa *lsa)
  72. {
  73.   struct as_external_lsa *al;
  74.   struct prefix_ipv4 p;
  75.   struct route_node *rn;
  76.   int type;
  77.   al = (struct as_external_lsa *) lsa->data;
  78.   p.family = AF_INET;
  79.   p.prefix = lsa->data->id;
  80.   p.prefixlen = ip_masklen (al->mask);
  81.   for (type = 0; type <= ZEBRA_ROUTE_MAX; type++)
  82.     {
  83.       int redist_type = is_prefix_default (&p) ? DEFAULT_ROUTE : type;
  84.       if (ospf_is_type_redistributed (redist_type))
  85. if (EXTERNAL_INFO (type))
  86.   {
  87.     rn = route_node_lookup (EXTERNAL_INFO (type),
  88.     (struct prefix *) &p);
  89.     if (rn)
  90.       {
  91. route_unlock_node (rn);
  92. if (rn->info != NULL)
  93.   return (struct external_info *) rn->info;
  94.       }
  95.   }
  96.     }
  97.   return NULL;
  98. }
  99. void
  100. ospf_process_self_originated_lsa (struct ospf *ospf,
  101.   struct ospf_lsa *new, struct ospf_area *area)
  102. {
  103.   struct ospf_interface *oi;
  104.   struct external_info *ei;
  105.   listnode node;
  106.   
  107.   if (IS_DEBUG_OSPF_EVENT)
  108.     zlog_info ("LSA[Type%d:%s]: Process self-originated LSA",
  109.        new->data->type, inet_ntoa (new->data->id));
  110.   /* If we're here, we installed a self-originated LSA that we received
  111.      from a neighbor, i.e. it's more recent.  We must see whether we want
  112.      to originate it.
  113.      If yes, we should use this LSA's sequence number and reoriginate
  114.      a new instance.
  115.      if not --- we must flush this LSA from the domain. */
  116.   switch (new->data->type)
  117.     {
  118.     case OSPF_ROUTER_LSA:
  119.       /* Originate a new instance and schedule flooding */
  120.       /* It shouldn't be necessary, but anyway */
  121.       ospf_lsa_unlock (area->router_lsa_self);
  122.       area->router_lsa_self = ospf_lsa_lock (new);
  123.       ospf_router_lsa_timer_add (area);
  124.       return;
  125.     case OSPF_NETWORK_LSA:
  126. #ifdef HAVE_OPAQUE_LSA
  127.     case OSPF_OPAQUE_LINK_LSA:
  128. #endif /* HAVE_OPAQUE_LSA */
  129.       /* We must find the interface the LSA could belong to.
  130.  If the interface is no more a broadcast type or we are no more
  131.  the DR, we flush the LSA otherwise -- create the new instance and
  132.  schedule flooding. */
  133.       /* Look through all interfaces, not just area, since interface
  134.  could be moved from one area to another. */
  135.       for (node = listhead (ospf->oiflist); node; nextnode (node))
  136. /* These are sanity check. */
  137. if ((oi = getdata (node)) != NULL)
  138.   if (IPV4_ADDR_SAME (&oi->address->u.prefix4, &new->data->id))
  139.     {
  140.       if (oi->area != area ||
  141.   oi->type != OSPF_IFTYPE_BROADCAST ||
  142.   !IPV4_ADDR_SAME (&oi->address->u.prefix4, &DR (oi)))
  143. {
  144.   ospf_schedule_lsa_flush_area (area, new);
  145.   return;
  146. }
  147.       
  148. #ifdef HAVE_OPAQUE_LSA
  149.               if (new->data->type == OSPF_OPAQUE_LINK_LSA)
  150.                 {
  151.                   ospf_opaque_lsa_refresh (new);
  152.                   return;
  153.                 }
  154. #endif /* HAVE_OPAQUE_LSA */
  155.       ospf_lsa_unlock (oi->network_lsa_self);
  156.       oi->network_lsa_self = ospf_lsa_lock (new);
  157.       
  158.       /* Schedule network-LSA origination. */
  159.       ospf_network_lsa_timer_add (oi);
  160.       return;
  161.     }
  162.       break;
  163.     case OSPF_SUMMARY_LSA:
  164.     case OSPF_ASBR_SUMMARY_LSA:
  165.       ospf_schedule_abr_task (ospf);
  166.       break;
  167.     case OSPF_AS_EXTERNAL_LSA :
  168. #ifdef HAVE_NSSA
  169.     case OSPF_AS_NSSA_LSA:
  170. #endif /* HAVE_NSSA */
  171.       ei = ospf_external_info_check (new);
  172.       if (ei)
  173. ospf_external_lsa_refresh (ospf, new, ei, LSA_REFRESH_FORCE);
  174.       else
  175. ospf_lsa_flush_as (ospf, new);
  176.       break;
  177. #ifdef HAVE_OPAQUE_LSA
  178.     case OSPF_OPAQUE_AREA_LSA:
  179.       ospf_opaque_lsa_refresh (new);
  180.       break;
  181.     case OSPF_OPAQUE_AS_LSA:
  182.       ospf_opaque_lsa_refresh (new); /* Reconsideration may needed. *//* XXX */
  183.       break;
  184. #endif /* HAVE_OPAQUE_LSA */
  185.     default:
  186.       break;
  187.     }
  188. }
  189. /* OSPF LSA flooding -- RFC2328 Section 13.(5). */
  190. /* Now Updated for NSSA operation, as follows:
  191. Type-5's have no change.  Blocked to STUB or NSSA.
  192. Type-7's can be received, and if a DR
  193. they will also flood the local NSSA Area as Type-7's
  194. If a Self-Originated LSA (now an ASBR), 
  195. The LSDB will be updated as Type-5's, (for continual re-fresh)
  196.     If an NSSA-IR it is installed/flooded as Type-7, P-bit on.
  197.     if an NSSA-ABR it is installed/flooded as Type-7, P-bit off.
  198. Later, during the ABR TASK, if the ABR is the Elected NSSA
  199. translator, then All Type-7s (with P-bit ON) are Translated to
  200. Type-5's and flooded to all non-NSSA/STUB areas.
  201. During ASE Calculations, 
  202.     non-ABRs calculate external routes from Type-7's
  203.     ABRs calculate external routes from Type-5's and non-self Type-7s
  204. */
  205. int
  206. ospf_flood (struct ospf *ospf, struct ospf_neighbor *nbr,
  207.     struct ospf_lsa *current, struct ospf_lsa *new)
  208. {
  209.   struct ospf_interface *oi;
  210.   struct timeval now;
  211.   int lsa_ack_flag;
  212.   /* Type-7 LSA's will be flooded throughout their native NSSA area,
  213.      but will also be flooded as Type-5's into ABR capable links.  */
  214.   if (IS_DEBUG_OSPF_EVENT)
  215.     zlog_info ("LSA[Flooding]: start, NBR %s (%s), cur(%p), New-LSA[%s]",
  216.                inet_ntoa (nbr->router_id),
  217.                LOOKUP (ospf_nsm_state_msg, nbr->state),
  218.                current,
  219.                dump_lsa_key (new));
  220.   lsa_ack_flag = 0;
  221.   oi = nbr->oi;
  222.   /* Get current time. */
  223.   gettimeofday (&now, NULL);
  224.   /* If there is already a database copy, and if the
  225.      database copy was received via flooding and installed less
  226.      than MinLSArrival seconds ago, discard the new LSA
  227.      (without acknowledging it). */
  228.   if (current != NULL) /* -- endo. */
  229.     {
  230.       if (IS_LSA_SELF (current)
  231.       && (ntohs (current->data->ls_age)    == 0
  232.       &&  ntohl (current->data->ls_seqnum) == OSPF_INITIAL_SEQUENCE_NUMBER))
  233.         {
  234.           if (IS_DEBUG_OSPF_EVENT)
  235.     zlog_info ("LSA[Flooding]: Got a self-originated LSA, "
  236.        "while local one is initial instance.");
  237.           ; /* Accept this LSA for quick LSDB resynchronization. */
  238.         }
  239.       else if (tv_cmp (tv_sub (now, current->tv_recv),
  240.                int2tv (OSPF_MIN_LS_ARRIVAL)) < 0)
  241.         {
  242.           if (IS_DEBUG_OSPF_EVENT)
  243.     zlog_info ("LSA[Flooding]: LSA is received recently.");
  244.           return -1;
  245.         }
  246.     }
  247.   /* Flood the new LSA out some subset of the router's interfaces.
  248.      In some cases (e.g., the state of the receiving interface is
  249.      DR and the LSA was received from a router other than the
  250.      Backup DR) the LSA will be flooded back out the receiving
  251.      interface. */
  252.   lsa_ack_flag = ospf_flood_through (ospf, nbr, new);
  253. #ifdef HAVE_OPAQUE_LSA
  254.   /* Remove the current database copy from all neighbors' Link state
  255.      retransmission lists.  AS_EXTERNAL and AS_EXTERNAL_OPAQUE does
  256.                                         ^^^^^^^^^^^^^^^^^^^^^^^
  257.      not have area ID.
  258.      All other (even NSSA's) do have area ID.  */
  259. #else /* HAVE_OPAQUE_LSA */
  260.   /* Remove the current database copy from all neighbors' Link state
  261.      retransmission lists.  Only AS_EXTERNAL does not have area ID.
  262.      All other (even NSSA's) do have area ID.  */
  263. #endif /* HAVE_OPAQUE_LSA */
  264.   if (current)
  265.     {
  266.       switch (current->data->type)
  267.         {
  268.         case OSPF_AS_EXTERNAL_LSA:
  269. #ifdef HAVE_OPAQUE_LSA
  270.         case OSPF_OPAQUE_AS_LSA:
  271. #endif /* HAVE_OPAQUE_LSA */
  272.           ospf_ls_retransmit_delete_nbr_as (ospf, current);
  273.           break;
  274.         default:
  275.           ospf_ls_retransmit_delete_nbr_area (nbr->oi->area, current);
  276.           break;
  277.         }
  278.     }
  279.   /* Do some internal house keeping that is needed here */
  280.   SET_FLAG (new->flags, OSPF_LSA_RECEIVED);
  281.   ospf_lsa_is_self_originated (ospf, new); /* Let it set the flag */
  282.   /* Install the new LSA in the link state database
  283.      (replacing the current database copy).  This may cause the
  284.      routing table calculation to be scheduled.  In addition,
  285.      timestamp the new LSA with the current time.  The flooding
  286.      procedure cannot overwrite the newly installed LSA until
  287.      MinLSArrival seconds have elapsed. */  
  288.   new = ospf_lsa_install (ospf, nbr->oi, new);
  289.   /* Acknowledge the receipt of the LSA by sending a Link State
  290.      Acknowledgment packet back out the receiving interface. */
  291.   if (lsa_ack_flag)
  292.     ospf_flood_delayed_lsa_ack (nbr, new);     
  293.   /* If this new LSA indicates that it was originated by the
  294.      receiving router itself, the router must take special action,
  295.      either updating the LSA or in some cases flushing it from
  296.      the routing domain. */
  297.   if (ospf_lsa_is_self_originated (ospf, new))
  298.     ospf_process_self_originated_lsa (ospf, new, oi->area);
  299.   else
  300.     /* Update statistics value for OSPF-MIB. */
  301.     ospf->rx_lsa_count++;
  302.   return 0;
  303. }
  304. /* OSPF LSA flooding -- RFC2328 Section 13.3. */
  305. int
  306. ospf_flood_through_interface (struct ospf_interface *oi,
  307.       struct ospf_neighbor *inbr,
  308.       struct ospf_lsa *lsa)
  309. {
  310.   struct ospf_neighbor *onbr;
  311.   struct route_node *rn;
  312.   int retx_flag;
  313.   if (IS_DEBUG_OSPF_EVENT)
  314.     zlog_info ("ospf_flood_through_interface(): "
  315.        "considering int %s, INBR(%s), LSA[%s]",
  316.        IF_NAME (oi), inbr ? inet_ntoa (inbr->router_id) : "NULL",
  317.                dump_lsa_key (lsa));
  318.   if (!ospf_if_is_enable (oi))
  319.     return 0;
  320.   /* Remember if new LSA is aded to a retransmit list. */
  321.   retx_flag = 0;
  322.   /* Each of the neighbors attached to this interface are examined,
  323.      to determine whether they must receive the new LSA.  The following
  324.      steps are executed for each neighbor: */
  325.   for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
  326.     {
  327.       struct ospf_lsa *ls_req;
  328.  
  329.       if (rn->info == NULL)
  330. continue;
  331.       onbr = rn->info;
  332.       if (IS_DEBUG_OSPF_EVENT)
  333. zlog_info ("ospf_flood_through_interface(): considering nbr %s (%s)",
  334.    inet_ntoa (onbr->router_id),
  335.                    LOOKUP (ospf_nsm_state_msg, onbr->state));
  336.       /* If the neighbor is in a lesser state than Exchange, it
  337.  does not participate in flooding, and the next neighbor
  338.  should be examined. */
  339.       if (onbr->state < NSM_Exchange)
  340. continue;
  341.       /* If the adjacency is not yet full (neighbor state is
  342.  Exchange or Loading), examine the Link state request
  343.  list associated with this adjacency.  If there is an
  344.  instance of the new LSA on the list, it indicates that
  345.  the neighboring router has an instance of the LSA
  346.  already.  Compare the new LSA to the neighbor's copy: */
  347.       if (onbr->state < NSM_Full)
  348. {
  349.   if (IS_DEBUG_OSPF_EVENT)
  350.     zlog_info ("ospf_flood_through_interface(): nbr adj is not Full");
  351.   ls_req = ospf_ls_request_lookup (onbr, lsa);
  352.   if (ls_req != NULL)
  353.     {
  354.       int ret;
  355.       ret = ospf_lsa_more_recent (ls_req, lsa);
  356.       /* The new LSA is less recent. */
  357.       if (ret > 0)
  358. continue;
  359.       /* The two copies are the same instance, then delete
  360.  the LSA from the Link state request list. */
  361.       else if (ret == 0)
  362. {
  363.   ospf_ls_request_delete (onbr, ls_req);
  364.   ospf_check_nbr_loading (onbr);
  365.   continue;
  366. }
  367.       /* The new LSA is more recent.  Delete the LSA
  368.  from the Link state request list. */
  369.       else
  370. {
  371.   ospf_ls_request_delete (onbr, ls_req);
  372.   ospf_check_nbr_loading (onbr);
  373. }
  374.     }
  375. }
  376. #ifdef HAVE_OPAQUE_LSA
  377.       if (IS_OPAQUE_LSA (lsa->data->type))
  378.         {
  379.           if (! CHECK_FLAG (onbr->options, OSPF_OPTION_O))
  380.             {
  381.               if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
  382.                 zlog_info ("Skip this neighbor: Not Opaque-capable.");
  383.               continue;
  384.             }
  385.           if (IS_OPAQUE_LSA_ORIGINATION_BLOCKED (oi->ospf->opaque)
  386.           &&  IS_LSA_SELF (lsa)
  387.           &&  onbr->state == NSM_Full)
  388.             {
  389.               /* Small attempt to reduce unnecessary retransmission. */
  390.               if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
  391.                 zlog_info ("Skip this neighbor: Initial flushing done.");
  392.               continue;
  393.             }
  394.         }
  395. #endif /* HAVE_OPAQUE_LSA */
  396.       /* If the new LSA was received from this neighbor,
  397.  examine the next neighbor. */
  398.       if (inbr)
  399.         {
  400.           /*
  401.            * Triggered by LSUpd message parser "ospf_ls_upd ()".
  402.            * E.g., all LSAs handling here is received via network.
  403.            */
  404.           if (IPV4_ADDR_SAME (&inbr->router_id, &onbr->router_id))
  405.             {
  406.               if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
  407.                 zlog_info ("Skip this neighbor: inbr == onbr");
  408.               continue;
  409.             }
  410.         }
  411.       else
  412.         {
  413.           /*
  414.            * Triggered by MaxAge remover, so far.
  415.            * NULL "inbr" means flooding starts from this node.
  416.            */
  417.           if (IPV4_ADDR_SAME (&lsa->data->adv_router, &onbr->router_id))
  418.             {
  419.               if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
  420.                 zlog_info ("Skip this neighbor: lsah->adv_router == onbr");
  421.               continue;
  422.             }
  423.         }
  424.       /* Add the new LSA to the Link state retransmission list
  425.  for the adjacency. The LSA will be retransmitted
  426.  at intervals until an acknowledgment is seen from
  427.  the neighbor. */
  428.       ospf_ls_retransmit_add (onbr, lsa);
  429.       retx_flag = 1;
  430.     }
  431.   /* If in the previous step, the LSA was NOT added to any of
  432.      the Link state retransmission lists, there is no need to
  433.      flood the LSA out the interface. */
  434.   if (retx_flag == 0) 
  435.     {
  436.       return (inbr && inbr->oi == oi);
  437.     }
  438.   /* if we've received the lsa on this interface we need to perform
  439.      additional checking */
  440.   if (inbr && (inbr->oi == oi))
  441.     {
  442.       /* If the new LSA was received on this interface, and it was
  443.  received from either the Designated Router or the Backup
  444.  Designated Router, chances are that all the neighbors have
  445.  received the LSA already. */
  446.       if (NBR_IS_DR (inbr) || NBR_IS_BDR (inbr))
  447. {
  448. #ifdef HAVE_NSSA
  449.   if (IS_DEBUG_OSPF_NSSA)
  450.     zlog_info ("ospf_flood_through_interface(): "
  451.        "DR/BDR NOT SEND to int %s", IF_NAME (oi));
  452. #endif /* HAVE_NSSA */
  453.   return 1;
  454. }
  455.   
  456.       /* If the new LSA was received on this interface, and the
  457.  interface state is Backup, examine the next interface.  The
  458.  Designated Router will do the flooding on this interface.
  459.  However, if the Designated Router fails the router will
  460.  end up retransmitting the updates. */
  461.       if (oi->state == ISM_Backup)
  462. {
  463. #ifdef HAVE_NSSA
  464.   if (IS_DEBUG_OSPF_NSSA)
  465.     zlog_info ("ospf_flood_through_interface(): "
  466.        "ISM_Backup NOT SEND to int %s", IF_NAME (oi));
  467. #endif /* HAVE_NSSA */
  468.   return 1;
  469. }
  470.     }
  471.   /* The LSA must be flooded out the interface. Send a Link State
  472.      Update packet (including the new LSA as contents) out the
  473.      interface.  The LSA's LS age must be incremented by InfTransDelay
  474.      (which must be > 0) when it is copied into the outgoing Link
  475.      State Update packet (until the LS age field reaches the maximum
  476.      value of MaxAge). */
  477. #ifdef HAVE_NSSA
  478.   if (IS_DEBUG_OSPF_NSSA)
  479.     zlog_info ("ospf_flood_through_interface(): "
  480.        "DR/BDR sending upd to int %s", IF_NAME (oi));
  481. #else /* ! HAVE_NSSA */
  482.   if (IS_DEBUG_OSPF_EVENT)
  483.     zlog_info ("ospf_flood_through_interface(): "
  484.        "sending upd to int %s", IF_NAME (oi));
  485. #endif /* HAVE_NSSA */
  486.   /*  RFC2328  Section 13.3
  487.       On non-broadcast networks, separate Link State Update
  488.       packets must be sent, as unicasts, to each adjacent neighbor
  489.       (i.e., those in state Exchange or greater).  The destination
  490.       IP addresses for these packets are the neighbors' IP
  491.       addresses.   */
  492.   if (oi->type == OSPF_IFTYPE_NBMA)
  493.     {
  494.       struct route_node *rn;
  495.       struct ospf_neighbor *nbr;
  496.       for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
  497.         if ((nbr = rn->info) != NULL)
  498.   if (nbr != oi->nbr_self && nbr->state >= NSM_Exchange)
  499.     ospf_ls_upd_send_lsa (nbr, lsa, OSPF_SEND_PACKET_DIRECT);
  500.     }
  501.   else
  502.     ospf_ls_upd_send_lsa (oi->nbr_self, lsa, OSPF_SEND_PACKET_INDIRECT);
  503.   return 0;
  504. }
  505. int
  506. ospf_flood_through_area (struct ospf_area *area,
  507.  struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
  508. {
  509.   listnode node;
  510.   int lsa_ack_flag = 0;
  511.   /* All other types are specific to a single area (Area A).  The
  512.      eligible interfaces are all those interfaces attaching to the
  513.      Area A.  If Area A is the backbone, this includes all the virtual
  514.      links.  */
  515.   for (node = listhead (area->oiflist); node; nextnode (node))
  516.     {
  517.       struct ospf_interface *oi = getdata (node);
  518.       if (area->area_id.s_addr != OSPF_AREA_BACKBONE &&
  519.   oi->type ==  OSPF_IFTYPE_VIRTUALLINK) 
  520. continue;
  521. #ifdef HAVE_OPAQUE_LSA
  522.       if ((lsa->data->type == OSPF_OPAQUE_LINK_LSA) && (lsa->oi != oi))
  523.         {
  524.           /*
  525.            * Link local scoped Opaque-LSA should only be flooded
  526.            * for the link on which the LSA has received.
  527.            */
  528.           if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
  529.             zlog_info ("Type-9 Opaque-LSA: lsa->oi(%p) != oi(%p)", lsa->oi, oi);
  530.           continue;
  531.         }
  532. #endif /* HAVE_OPAQUE_LSA */
  533.       if (ospf_flood_through_interface (oi, inbr, lsa))
  534. lsa_ack_flag = 1;
  535.     }
  536.   return (lsa_ack_flag);
  537. }
  538. int
  539. ospf_flood_through_as (struct ospf *ospf, struct ospf_neighbor *inbr,
  540.        struct ospf_lsa *lsa)
  541. {
  542.   listnode node;
  543.   int lsa_ack_flag;
  544.   lsa_ack_flag = 0;
  545.   /* The incoming LSA is type 5 or type 7  (AS-EXTERNAL or AS-NSSA )
  546.     Divert the Type-5 LSA's to all non-NSSA/STUB areas
  547.     Divert the Type-7 LSA's to all NSSA areas
  548.      AS-external-LSAs are flooded throughout the entire AS, with the
  549.      exception of stub areas (see Section 3.6).  The eligible
  550.      interfaces are all the router's interfaces, excluding virtual
  551.      links and those interfaces attaching to stub areas.  */
  552. #ifdef HAVE_NSSA
  553.   if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT)) /* Translated from 7  */
  554.     if (IS_DEBUG_OSPF_NSSA)
  555.       zlog_info ("Flood/AS: NSSA TRANSLATED LSA");
  556. #endif /* HAVE_NSSA */
  557.   for (node = listhead (ospf->areas); node; nextnode (node))
  558.     {
  559.       int continue_flag = 0;
  560.       struct ospf_area *area = getdata (node);
  561.       listnode if_node;
  562.       switch (area->external_routing)
  563. {
  564.   /* Don't send AS externals into stub areas.  Various types
  565.              of support for partial stub areas can be implemented
  566.              here.  NSSA's will receive Type-7's that have areas
  567.              matching the originl LSA. */
  568. case OSPF_AREA_NSSA: /* Sending Type 5 or 7 into NSSA area */
  569. #ifdef HAVE_NSSA
  570.   /* Type-7, flood NSSA area */
  571.           if (lsa->data->type == OSPF_AS_NSSA_LSA
  572.       && area == lsa->area)
  573.     continue_flag = 0;
  574.           else
  575.     continue_flag = 1;  /* Skip this NSSA area for Type-5's et al */
  576.           break;
  577. #endif /* HAVE_NSSA */
  578. case OSPF_AREA_TYPE_MAX:
  579. case OSPF_AREA_STUB:
  580.   continue_flag = 1; /* Skip this area. */
  581.   break;
  582. case OSPF_AREA_DEFAULT:
  583. default:
  584. #ifdef HAVE_NSSA
  585.   /* No Type-7 into normal area */
  586.           if (lsa->data->type == OSPF_AS_NSSA_LSA) 
  587.     continue_flag = 1; /* skip Type-7 */
  588.           else
  589. #endif /* HAVE_NSSA */
  590.     continue_flag = 0; /* Do this area. */
  591.   break;
  592. }
  593.       
  594.       /* Do continue for above switch.  Saves a big if then mess */
  595.       if (continue_flag) 
  596. continue; /* main for-loop */
  597.       
  598.       /* send to every interface in this area */
  599.       for (if_node = listhead (area->oiflist); if_node; nextnode (if_node))
  600. {
  601.   struct ospf_interface *oi = getdata (if_node);
  602.   /* Skip virtual links */
  603.   if (oi->type !=  OSPF_IFTYPE_VIRTUALLINK)
  604.     if (ospf_flood_through_interface (oi, inbr, lsa)) /* lsa */
  605.       lsa_ack_flag = 1;
  606. }
  607.     } /* main area for-loop */
  608.   
  609.   return (lsa_ack_flag);
  610. }
  611. int
  612. ospf_flood_through (struct ospf *ospf,
  613.     struct ospf_neighbor *inbr, struct ospf_lsa *lsa)
  614. {
  615.   int lsa_ack_flag = 0;
  616.   
  617.   /* Type-7 LSA's for NSSA are flooded throughout the AS here, and
  618.      upon return are updated in the LSDB for Type-7's.  Later,
  619.      re-fresh will re-send them (and also, if ABR, packet code will
  620.      translate to Type-5's)
  621.   
  622.      As usual, Type-5 LSA's (if not DISCARDED because we are STUB or
  623.      NSSA) are flooded throughout the AS, and are updated in the
  624.      global table.  */
  625.   /*
  626.    * At the common sub-sub-function "ospf_flood_through_interface()",
  627.    * a parameter "inbr" will be used to distinguish the called context
  628.    * whether the given LSA was received from the neighbor, or the
  629.    * flooding for the LSA starts from this node (e.g. the LSA was self-
  630.    * originated, or the LSA is going to be flushed from routing domain).
  631.    *
  632.    * So, for consistency reasons, this function "ospf_flood_through()"
  633.    * should also allow the usage that the given "inbr" parameter to be
  634.    * NULL. If we do so, corresponding AREA parameter should be referred
  635.    * by "lsa->area", instead of "inbr->oi->area".
  636.    */
  637.   switch (lsa->data->type)
  638.     {
  639.     case OSPF_AS_EXTERNAL_LSA: /* Type-5 */
  640. #ifdef HAVE_OPAQUE_LSA
  641.     case OSPF_OPAQUE_AS_LSA:
  642. #endif /* HAVE_OPAQUE_LSA */
  643.       lsa_ack_flag = ospf_flood_through_as (ospf, inbr, lsa);
  644.       break;
  645. #ifdef HAVE_NSSA
  646.       /* Type-7 Only received within NSSA, then flooded */
  647.     case OSPF_AS_NSSA_LSA:
  648.       /* Any P-bit was installed with the Type-7. */
  649.       if (IS_DEBUG_OSPF_NSSA)
  650. zlog_info ("ospf_flood_through: LOCAL NSSA FLOOD of Type-7.");
  651.       /* Fallthrough */
  652. #endif /* HAVE_NSSA */
  653.     default:
  654.       lsa_ack_flag = ospf_flood_through_area (lsa->area, inbr, lsa);
  655.       break;
  656.     }
  657.   
  658.   return (lsa_ack_flag);
  659. }
  660. /* Management functions for neighbor's Link State Request list. */
  661. void
  662. ospf_ls_request_add (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
  663. {
  664.   /*
  665.    * We cannot make use of the newly introduced callback function
  666.    * "lsdb->new_lsa_hook" to replace debug output below, just because
  667.    * it seems no simple and smart way to pass neighbor information to
  668.    * the common function "ospf_lsdb_add()" -- endo.
  669.    */
  670.   if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
  671.       zlog_info ("RqstL(%lu)++, NBR(%s), LSA[%s]",
  672.                   ospf_ls_request_count (nbr),
  673.                   inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
  674.   ospf_lsdb_add (&nbr->ls_req, lsa);
  675. }
  676. unsigned long
  677. ospf_ls_request_count (struct ospf_neighbor *nbr)
  678. {
  679.   return ospf_lsdb_count_all (&nbr->ls_req);
  680. }
  681. int
  682. ospf_ls_request_isempty (struct ospf_neighbor *nbr)
  683. {
  684.   return ospf_lsdb_isempty (&nbr->ls_req);
  685. }
  686. /* Remove LSA from neighbor's ls-request list. */
  687. void
  688. ospf_ls_request_delete (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
  689. {
  690.   if (nbr->ls_req_last == lsa)
  691.     {
  692.       ospf_lsa_unlock (nbr->ls_req_last);
  693.       nbr->ls_req_last = NULL;
  694.     }
  695.   if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) /* -- endo. */
  696.       zlog_info ("RqstL(%lu)--, NBR(%s), LSA[%s]",
  697.                   ospf_ls_request_count (nbr),
  698.                   inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
  699.   ospf_lsdb_delete (&nbr->ls_req, lsa);
  700. }
  701. /* Remove all LSA from neighbor's ls-requenst list. */
  702. void
  703. ospf_ls_request_delete_all (struct ospf_neighbor *nbr)
  704. {
  705.   ospf_lsa_unlock (nbr->ls_req_last);
  706.   nbr->ls_req_last = NULL;
  707.   ospf_lsdb_delete_all (&nbr->ls_req);
  708. }
  709. /* Lookup LSA from neighbor's ls-request list. */
  710. struct ospf_lsa *
  711. ospf_ls_request_lookup (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
  712. {
  713.   return ospf_lsdb_lookup (&nbr->ls_req, lsa);
  714. }
  715. struct ospf_lsa *
  716. ospf_ls_request_new (struct lsa_header *lsah)
  717. {
  718.   struct ospf_lsa *new;
  719.   new = ospf_lsa_new ();
  720.   new->data = ospf_lsa_data_new (OSPF_LSA_HEADER_SIZE);
  721.   memcpy (new->data, lsah, OSPF_LSA_HEADER_SIZE);
  722.   return new;
  723. }
  724. /* Management functions for neighbor's ls-retransmit list. */
  725. unsigned long
  726. ospf_ls_retransmit_count (struct ospf_neighbor *nbr)
  727. {
  728.   return ospf_lsdb_count_all (&nbr->ls_rxmt);
  729. }
  730. unsigned long
  731. ospf_ls_retransmit_count_self (struct ospf_neighbor *nbr, int lsa_type)
  732. {
  733.   return ospf_lsdb_count_self (&nbr->ls_rxmt, lsa_type);
  734. }
  735. int
  736. ospf_ls_retransmit_isempty (struct ospf_neighbor *nbr)
  737. {
  738.   return ospf_lsdb_isempty (&nbr->ls_rxmt);
  739. }
  740. /* Add LSA to be retransmitted to neighbor's ls-retransmit list. */
  741. void
  742. ospf_ls_retransmit_add (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
  743. {
  744.   struct ospf_lsa *old;
  745.   old = ospf_ls_retransmit_lookup (nbr, lsa);
  746.   if (ospf_lsa_more_recent (old, lsa) < 0)
  747.     {
  748.       if (old)
  749. {
  750.   old->retransmit_counter--;
  751.   ospf_lsdb_delete (&nbr->ls_rxmt, old);
  752. }
  753.       lsa->retransmit_counter++;
  754.       /*
  755.        * We cannot make use of the newly introduced callback function
  756.        * "lsdb->new_lsa_hook" to replace debug output below, just because
  757.        * it seems no simple and smart way to pass neighbor information to
  758.        * the common function "ospf_lsdb_add()" -- endo.
  759.        */
  760.       if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
  761.   zlog_info ("RXmtL(%lu)++, NBR(%s), LSA[%s]",
  762.                      ospf_ls_retransmit_count (nbr),
  763.      inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
  764.       ospf_lsdb_add (&nbr->ls_rxmt, lsa);
  765.     }
  766. }
  767. /* Remove LSA from neibghbor's ls-retransmit list. */
  768. void
  769. ospf_ls_retransmit_delete (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
  770. {
  771.   if (ospf_ls_retransmit_lookup (nbr, lsa))
  772.     {
  773.       lsa->retransmit_counter--;  
  774.       if (IS_DEBUG_OSPF (lsa, LSA_FLOODING)) /* -- endo. */
  775.   zlog_info ("RXmtL(%lu)--, NBR(%s), LSA[%s]",
  776.                      ospf_ls_retransmit_count (nbr),
  777.      inet_ntoa (nbr->router_id), dump_lsa_key (lsa));
  778.       ospf_lsdb_delete (&nbr->ls_rxmt, lsa);
  779.     }
  780. }
  781. /* Clear neighbor's ls-retransmit list. */
  782. void
  783. ospf_ls_retransmit_clear (struct ospf_neighbor *nbr)
  784. {
  785.   struct ospf_lsdb *lsdb;
  786.   int i;
  787.   lsdb = &nbr->ls_rxmt;
  788.   for (i = OSPF_MIN_LSA; i < OSPF_MAX_LSA; i++)
  789.     {
  790.       struct route_table *table = lsdb->type[i].db;
  791.       struct route_node *rn;
  792.       struct ospf_lsa *lsa;
  793.       for (rn = route_top (table); rn; rn = route_next (rn))
  794. if ((lsa = rn->info) != NULL)
  795.   ospf_ls_retransmit_delete (nbr, lsa);
  796.     }
  797.   ospf_lsa_unlock (nbr->ls_req_last);
  798.   nbr->ls_req_last = NULL;
  799. }
  800. /* Lookup LSA from neighbor's ls-retransmit list. */
  801. struct ospf_lsa *
  802. ospf_ls_retransmit_lookup (struct ospf_neighbor *nbr, struct ospf_lsa *lsa)
  803. {
  804.   return ospf_lsdb_lookup (&nbr->ls_rxmt, lsa);
  805. }
  806. void
  807. ospf_ls_retransmit_delete_nbr_if (struct ospf_interface *oi,
  808.   struct ospf_lsa *lsa)
  809. {
  810.   struct route_node *rn;
  811.   struct ospf_neighbor *nbr;
  812.   struct ospf_lsa *lsr;
  813.   if (ospf_if_is_enable (oi))
  814.     for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
  815.       /* If LSA find in LS-retransmit list, then remove it. */
  816.       if ((nbr = rn->info) != NULL)
  817. {
  818.   lsr = ospf_ls_retransmit_lookup (nbr, lsa);
  819.      
  820.   /* If LSA find in ls-retransmit list, remove it. */
  821.   if (lsr != NULL && lsr->data->ls_seqnum == lsa->data->ls_seqnum)
  822.     ospf_ls_retransmit_delete (nbr, lsr);
  823. }
  824. }
  825. void
  826. ospf_ls_retransmit_delete_nbr_area (struct ospf_area *area,
  827.     struct ospf_lsa *lsa)
  828. {
  829.   listnode node;
  830.   for (node = listhead (area->oiflist); node; nextnode (node))
  831.     ospf_ls_retransmit_delete_nbr_if (getdata (node), lsa);
  832. }
  833. void
  834. ospf_ls_retransmit_delete_nbr_as (struct ospf *ospf, struct ospf_lsa *lsa)
  835. {
  836.   listnode node;
  837.   for (node = listhead (ospf->oiflist); node; nextnode (node))
  838.     ospf_ls_retransmit_delete_nbr_if (getdata (node), lsa);
  839. }
  840. /* Sets ls_age to MaxAge and floods throu the area. 
  841.    When we implement ASE routing, there will be anothe function
  842.    flushing an LSA from the whole domain. */
  843. void
  844. ospf_lsa_flush_area (struct ospf_lsa *lsa, struct ospf_area *area)
  845. {
  846.   lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
  847.   ospf_flood_through_area (area, NULL, lsa);
  848.   ospf_lsa_maxage (area->ospf, lsa);
  849. }
  850. void
  851. ospf_lsa_flush_as (struct ospf *ospf, struct ospf_lsa *lsa)
  852. {
  853.   lsa->data->ls_age = htons (OSPF_LSA_MAXAGE);
  854.   ospf_flood_through_as (ospf, NULL, lsa);
  855.   ospf_lsa_maxage (ospf, lsa);
  856. }