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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2003 Yasuhiro Ohara
  3.  *
  4.  * This file is part of GNU Zebra.
  5.  *
  6.  * GNU Zebra is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 2, or (at your option) any
  9.  * later version.
  10.  *
  11.  * GNU Zebra is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with GNU Zebra; see the file COPYING.  If not, write to the 
  18.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  19.  * Boston, MA 02111-1307, USA.  
  20.  */
  21. #include <zebra.h>
  22. #include "log.h"
  23. #include "thread.h"
  24. #include "linklist.h"
  25. #include "vty.h"
  26. #include "command.h"
  27. #include "ospf6d.h"
  28. #include "ospf6_proto.h"
  29. #include "ospf6_lsa.h"
  30. #include "ospf6_lsdb.h"
  31. #include "ospf6_message.h"
  32. #include "ospf6_route.h"
  33. #include "ospf6_spf.h"
  34. #include "ospf6_top.h"
  35. #include "ospf6_area.h"
  36. #include "ospf6_interface.h"
  37. #include "ospf6_neighbor.h"
  38. #include "ospf6_flood.h"
  39. unsigned char conf_debug_ospf6_flooding;
  40. struct ospf6_lsdb *
  41. ospf6_get_scoped_lsdb (struct ospf6_lsa *lsa)
  42. {
  43.   struct ospf6_lsdb *lsdb = NULL;
  44.   switch (OSPF6_LSA_SCOPE (lsa->header->type))
  45.     {
  46.     case OSPF6_SCOPE_LINKLOCAL:
  47.       lsdb = OSPF6_INTERFACE (lsa->lsdb->data)->lsdb;
  48.       break;
  49.     case OSPF6_SCOPE_AREA:
  50.       lsdb = OSPF6_AREA (lsa->lsdb->data)->lsdb;
  51.       break;
  52.     case OSPF6_SCOPE_AS:
  53.       lsdb = OSPF6_PROCESS (lsa->lsdb->data)->lsdb;
  54.       break;
  55.     default:
  56.       assert (0);
  57.       break;
  58.     }
  59.   return lsdb;
  60. }
  61. struct ospf6_lsdb *
  62. ospf6_get_scoped_lsdb_self (struct ospf6_lsa *lsa)
  63. {
  64.   struct ospf6_lsdb *lsdb_self = NULL;
  65.   switch (OSPF6_LSA_SCOPE (lsa->header->type))
  66.     {
  67.     case OSPF6_SCOPE_LINKLOCAL:
  68.       lsdb_self = OSPF6_INTERFACE (lsa->lsdb->data)->lsdb_self;
  69.       break;
  70.     case OSPF6_SCOPE_AREA:
  71.       lsdb_self = OSPF6_AREA (lsa->lsdb->data)->lsdb_self;
  72.       break;
  73.     case OSPF6_SCOPE_AS:
  74.       lsdb_self = OSPF6_PROCESS (lsa->lsdb->data)->lsdb_self;
  75.       break;
  76.     default:
  77.       assert (0);
  78.       break;
  79.     }
  80.   return lsdb_self;
  81. }
  82. void
  83. ospf6_lsa_originate (struct ospf6_lsa *lsa)
  84. {
  85.   struct ospf6_lsa *old;
  86.   struct ospf6_lsdb *lsdb_self;
  87.   /* find previous LSA */
  88.   old = ospf6_lsdb_lookup (lsa->header->type, lsa->header->id,
  89.                            lsa->header->adv_router, lsa->lsdb);
  90.   /* if the new LSA does not differ from previous,
  91.      suppress this update of the LSA */
  92.   if (old && ! OSPF6_LSA_IS_DIFFER (lsa, old))
  93.     {
  94.       if (IS_OSPF6_DEBUG_ORIGINATE_TYPE (lsa->header->type))
  95.         zlog_info ("Suppress updating LSA: %s", lsa->name);
  96.       ospf6_lsa_delete (lsa);
  97.       return;
  98.     }
  99.   /* store it in the LSDB for self-originated LSAs */
  100.   lsdb_self = ospf6_get_scoped_lsdb_self (lsa);
  101.   ospf6_lsdb_add (ospf6_lsa_copy (lsa), lsdb_self);
  102.   lsa->refresh = thread_add_timer (master, ospf6_lsa_refresh, lsa,
  103.                                    LS_REFRESH_TIME);
  104.   if (IS_OSPF6_DEBUG_LSA_TYPE (lsa->header->type) ||
  105.       IS_OSPF6_DEBUG_ORIGINATE_TYPE (lsa->header->type))
  106.     {
  107.       zlog_info ("LSA Originate:");
  108.       ospf6_lsa_header_print (lsa);
  109.     }
  110.   if (old)
  111.     ospf6_flood_clear (old);
  112.   ospf6_flood (NULL, lsa);
  113.   ospf6_install_lsa (lsa);
  114. }
  115. void
  116. ospf6_lsa_originate_process (struct ospf6_lsa *lsa,
  117.                              struct ospf6 *process)
  118. {
  119.   lsa->lsdb = process->lsdb;
  120.   ospf6_lsa_originate (lsa);
  121. }
  122. void
  123. ospf6_lsa_originate_area (struct ospf6_lsa *lsa,
  124.                           struct ospf6_area *oa)
  125. {
  126.   lsa->lsdb = oa->lsdb;
  127.   ospf6_lsa_originate (lsa);
  128. }
  129. void
  130. ospf6_lsa_originate_interface (struct ospf6_lsa *lsa,
  131.                                struct ospf6_interface *oi)
  132. {
  133.   lsa->lsdb = oi->lsdb;
  134.   ospf6_lsa_originate (lsa);
  135. }
  136. void
  137. ospf6_lsa_purge (struct ospf6_lsa *lsa)
  138. {
  139.   struct ospf6_lsa *self;
  140.   struct ospf6_lsdb *lsdb_self;
  141.   /* remove it from the LSDB for self-originated LSAs */
  142.   lsdb_self = ospf6_get_scoped_lsdb_self (lsa);
  143.   self = ospf6_lsdb_lookup (lsa->header->type, lsa->header->id,
  144.                             lsa->header->adv_router, lsdb_self);
  145.   if (self)
  146.     {
  147.       THREAD_OFF (self->expire);
  148.       THREAD_OFF (self->refresh);
  149.       ospf6_lsdb_remove (self, lsdb_self);
  150.     }
  151.   ospf6_lsa_premature_aging (lsa);
  152. }
  153. void
  154. ospf6_increment_retrans_count (struct ospf6_lsa *lsa)
  155. {
  156.   /* The LSA must be the original one (see the description
  157.      in ospf6_decrement_retrans_count () below) */
  158.   lsa->retrans_count++;
  159. }
  160. void
  161. ospf6_decrement_retrans_count (struct ospf6_lsa *lsa)
  162. {
  163.   struct ospf6_lsdb *lsdb;
  164.   struct ospf6_lsa *orig;
  165.   /* The LSA must be on the retrans-list of a neighbor. It means
  166.      the "lsa" is a copied one, and we have to decrement the
  167.      retransmission count of the original one (instead of this "lsa"'s).
  168.      In order to find the original LSA, first we have to find
  169.      appropriate LSDB that have the original LSA. */
  170.   lsdb = ospf6_get_scoped_lsdb (lsa);
  171.   /* Find the original LSA of which the retrans_count should be decremented */
  172.   orig = ospf6_lsdb_lookup (lsa->header->type, lsa->header->id,
  173.                             lsa->header->adv_router, lsdb);
  174.   if (orig)
  175.     {
  176.       orig->retrans_count--;
  177.       assert (orig->retrans_count >= 0);
  178.     }
  179. }
  180. /* RFC2328 section 13.2 Installing LSAs in the database */
  181. void
  182. ospf6_install_lsa (struct ospf6_lsa *lsa)
  183. {
  184.   struct ospf6_lsa *old;
  185.   struct timeval now;
  186.   if (IS_OSPF6_DEBUG_LSA_TYPE (lsa->header->type) ||
  187.       IS_OSPF6_DEBUG_EXAMIN_TYPE (lsa->header->type))
  188.     zlog_info ("Install LSA: %s", lsa->name);
  189.   /* Remove the old instance from all neighbors' Link state
  190.      retransmission list (RFC2328 13.2 last paragraph) */
  191.   old = ospf6_lsdb_lookup (lsa->header->type, lsa->header->id,
  192.                            lsa->header->adv_router, lsa->lsdb);
  193.   if (old)
  194.     {
  195.       THREAD_OFF (old->expire);
  196.       ospf6_flood_clear (old);
  197.     }
  198.   gettimeofday (&now, (struct timezone *) NULL);
  199.   if (! OSPF6_LSA_IS_MAXAGE (lsa))
  200.     lsa->expire = thread_add_timer (master, ospf6_lsa_expire, lsa,
  201.                                     MAXAGE + lsa->birth.tv_sec - now.tv_sec);
  202.   else
  203.     lsa->expire = NULL;
  204.   /* actually install */
  205.   lsa->installed = now;
  206.   ospf6_lsdb_add (lsa, lsa->lsdb);
  207.   return;
  208. }
  209. /* RFC2740 section 3.5.2. Sending Link State Update packets */
  210. /* RFC2328 section 13.3 Next step in the flooding procedure */
  211. void
  212. ospf6_flood_interface (struct ospf6_neighbor *from,
  213.                        struct ospf6_lsa *lsa, struct ospf6_interface *oi)
  214. {
  215.   listnode node;
  216.   struct ospf6_neighbor *on;
  217.   struct ospf6_lsa *req;
  218.   int retrans_added = 0;
  219.   int is_debug = 0;
  220.   if (IS_OSPF6_DEBUG_FLOODING ||
  221.       IS_OSPF6_DEBUG_FLOOD_TYPE (lsa->header->type))
  222.     {
  223.       is_debug++;
  224.       zlog_info ("Flooding on %s: %s", oi->interface->name, lsa->name);
  225.     }
  226.   /* (1) For each neighbor */
  227.   for (node = listhead (oi->neighbor_list); node; nextnode (node))
  228.     {
  229.       on = (struct ospf6_neighbor *) getdata (node);
  230.       if (is_debug)
  231.         zlog_info ("To neighbor %s", on->name);
  232.       /* (a) if neighbor state < Exchange, examin next */
  233.       if (on->state < OSPF6_NEIGHBOR_EXCHANGE)
  234.         {
  235.           if (is_debug)
  236.             zlog_info ("Neighbor state less than ExChange, next neighbor");
  237.           continue;
  238.         }
  239.       /* (b) if neighbor not yet Full, check request-list */
  240.       if (on->state != OSPF6_NEIGHBOR_FULL)
  241.         {
  242.           if (is_debug)
  243.             zlog_info ("Neighbor not yet Full");
  244.           req = ospf6_lsdb_lookup (lsa->header->type, lsa->header->id,
  245.                                    lsa->header->adv_router, on->request_list);
  246.           if (req == NULL)
  247.             {
  248.               if (is_debug)
  249.                 zlog_info ("Not on request-list for this neighbor");
  250.               /* fall through */
  251.             }
  252.           else
  253.             {
  254.               /* If new LSA less recent, examin next neighbor */
  255.               if (ospf6_lsa_compare (lsa, req) > 0)
  256.                 {
  257.                   if (is_debug)
  258.                     zlog_info ("Requesting is newer, next neighbor");
  259.                   continue;
  260.                 }
  261.               /* If the same instance, delete from request-list and
  262.                  examin next neighbor */
  263.               if (ospf6_lsa_compare (lsa, req) == 0)
  264.                 {
  265.                   if (is_debug)
  266.                     zlog_info ("Requesting the same, remove it, next neighbor");
  267.                   ospf6_lsdb_remove (req, on->request_list);
  268.                   continue;
  269.                 }
  270.               /* If the new LSA is more recent, delete from request-list */
  271.               if (ospf6_lsa_compare (lsa, req) < 0)
  272.                 {
  273.                   if (is_debug)
  274.                     zlog_info ("Received is newer, remove requesting");
  275.                   ospf6_lsdb_remove (req, on->request_list);
  276.                   /* fall through */
  277.                 }
  278.             }
  279.         }
  280.       /* (c) If the new LSA was received from this neighbor,
  281.          examin next neighbor */
  282.       if (from == on)
  283.         {
  284.           if (is_debug)
  285.             zlog_info ("Received is from the neighbor, next neighbor");
  286.           continue;
  287.         }
  288.       /* (d) add retrans-list, schedule retransmission */
  289.       if (is_debug)
  290.         zlog_info ("Add retrans-list of this neighbor");
  291.       ospf6_increment_retrans_count (lsa);
  292.       ospf6_lsdb_add (ospf6_lsa_copy (lsa), on->retrans_list);
  293.       if (on->thread_send_lsupdate == NULL)
  294.         on->thread_send_lsupdate =
  295.           thread_add_event (master, ospf6_lsupdate_send_neighbor,
  296.                             on, on->ospf6_if->rxmt_interval);
  297.       retrans_added++;
  298.     }
  299.   /* (2) examin next interface if not added to retrans-list */
  300.   if (retrans_added == 0)
  301.     {
  302.       if (is_debug)
  303.         zlog_info ("No retransmission scheduled, next interface");
  304.       return;
  305.     }
  306.   /* (3) If the new LSA was received on this interface,
  307.      and it was from DR or BDR, examin next interface */
  308.   if (from && from->ospf6_if == oi &&
  309.       (from->router_id == oi->drouter || from->router_id == oi->bdrouter))
  310.     {
  311.       if (is_debug)
  312.         zlog_info ("Received is from the I/F's DR or BDR, next interface");
  313.       return;
  314.     }
  315.   /* (4) If the new LSA was received on this interface,
  316.      and the interface state is BDR, examin next interface */
  317.   if (from && from->ospf6_if == oi && oi->state == OSPF6_INTERFACE_BDR)
  318.     {
  319.       if (is_debug)
  320.         zlog_info ("Received is from the I/F, itself BDR, next interface");
  321.       return;
  322.     }
  323.   /* (5) flood the LSA out the interface. */
  324.   if (is_debug)
  325.     zlog_info ("Schedule flooding for the interface");
  326.   if (if_is_broadcast (oi->interface))
  327.     {
  328.       ospf6_lsdb_add (ospf6_lsa_copy (lsa), oi->lsupdate_list);
  329.       if (oi->thread_send_lsupdate == NULL)
  330.         oi->thread_send_lsupdate =
  331.           thread_add_event (master, ospf6_lsupdate_send_interface, oi, 0);
  332.     }
  333.   else
  334.     {
  335.       /* reschedule retransmissions to all neighbors */
  336.       for (node = listhead (oi->neighbor_list); node; nextnode (node))
  337.         {
  338.           on = (struct ospf6_neighbor *) getdata (node);
  339.           THREAD_OFF (on->thread_send_lsupdate);
  340.           on->thread_send_lsupdate =
  341.             thread_add_event (master, ospf6_lsupdate_send_neighbor, on, 0);
  342.         }
  343.     }
  344. }
  345. void
  346. ospf6_flood_area (struct ospf6_neighbor *from,
  347.                   struct ospf6_lsa *lsa, struct ospf6_area *oa)
  348. {
  349.   listnode node;
  350.   struct ospf6_interface *oi;
  351.   for (node = listhead (oa->if_list); node; nextnode (node))
  352.     {
  353.       oi = OSPF6_INTERFACE (getdata (node));
  354.       if (OSPF6_LSA_SCOPE (lsa->header->type) == OSPF6_SCOPE_LINKLOCAL &&
  355.           oi != OSPF6_INTERFACE (lsa->lsdb->data))
  356.         continue;
  357. #if 0
  358.       if (OSPF6_LSA_SCOPE (lsa->header->type) == OSPF6_SCOPE_AS &&
  359.           ospf6_is_interface_virtual_link (oi))
  360.         continue;
  361. #endif/*0*/
  362.       ospf6_flood_interface (from, lsa, oi);
  363.     }
  364. }
  365. void
  366. ospf6_flood_process (struct ospf6_neighbor *from,
  367.                      struct ospf6_lsa *lsa, struct ospf6 *process)
  368. {
  369.   listnode node;
  370.   struct ospf6_area *oa;
  371.   for (node = listhead (process->area_list); node; nextnode (node))
  372.     {
  373.       oa = OSPF6_AREA (getdata (node));
  374.       if (OSPF6_LSA_SCOPE (lsa->header->type) == OSPF6_SCOPE_AREA &&
  375.           oa != OSPF6_AREA (lsa->lsdb->data))
  376.         continue;
  377.       if (OSPF6_LSA_SCOPE (lsa->header->type) == OSPF6_SCOPE_LINKLOCAL &&
  378.           oa != OSPF6_INTERFACE (lsa->lsdb->data)->area)
  379.         continue;
  380.       if (ntohs (lsa->header->type) == OSPF6_LSTYPE_AS_EXTERNAL &&
  381.           IS_AREA_STUB (oa))
  382.         continue;
  383.       ospf6_flood_area (from, lsa, oa);
  384.     }
  385. }
  386. void
  387. ospf6_flood (struct ospf6_neighbor *from, struct ospf6_lsa *lsa)
  388. {
  389.   ospf6_flood_process (from, lsa, ospf6);
  390. }
  391. void
  392. ospf6_flood_clear_interface (struct ospf6_lsa *lsa, struct ospf6_interface *oi)
  393. {
  394.   listnode node;
  395.   struct ospf6_neighbor *on;
  396.   struct ospf6_lsa *rem;
  397.   for (node = listhead (oi->neighbor_list); node; nextnode (node))
  398.     {
  399.       on = OSPF6_NEIGHBOR (getdata (node));
  400.       rem = ospf6_lsdb_lookup (lsa->header->type, lsa->header->id,
  401.                                lsa->header->adv_router, on->retrans_list);
  402.       if (rem && ! ospf6_lsa_compare (rem, lsa))
  403.         {
  404.           if (IS_OSPF6_DEBUG_FLOODING ||
  405.               IS_OSPF6_DEBUG_FLOOD_TYPE (lsa->header->type))
  406.             zlog_info ("Remove %s from retrans_list of %s",
  407.                        rem->name, on->name);
  408.           ospf6_decrement_retrans_count (rem);
  409.           ospf6_lsdb_remove (rem, on->retrans_list);
  410.         }
  411.     }
  412. }
  413. void
  414. ospf6_flood_clear_area (struct ospf6_lsa *lsa, struct ospf6_area *oa)
  415. {
  416.   listnode node;
  417.   struct ospf6_interface *oi;
  418.   for (node = listhead (oa->if_list); node; nextnode (node))
  419.     {
  420.       oi = OSPF6_INTERFACE (getdata (node));
  421.       if (OSPF6_LSA_SCOPE (lsa->header->type) == OSPF6_SCOPE_LINKLOCAL &&
  422.           oi != OSPF6_INTERFACE (lsa->lsdb->data))
  423.         continue;
  424. #if 0
  425.       if (OSPF6_LSA_SCOPE (lsa->header->type) == OSPF6_SCOPE_AS &&
  426.           ospf6_is_interface_virtual_link (oi))
  427.         continue;
  428. #endif/*0*/
  429.       ospf6_flood_clear_interface (lsa, oi);
  430.     }
  431. }
  432. void
  433. ospf6_flood_clear_process (struct ospf6_lsa *lsa, struct ospf6 *process)
  434. {
  435.   listnode node;
  436.   struct ospf6_area *oa;
  437.   for (node = listhead (process->area_list); node; nextnode (node))
  438.     {
  439.       oa = OSPF6_AREA (getdata (node));
  440.       if (OSPF6_LSA_SCOPE (lsa->header->type) == OSPF6_SCOPE_AREA &&
  441.           oa != OSPF6_AREA (lsa->lsdb->data))
  442.         continue;
  443.       if (OSPF6_LSA_SCOPE (lsa->header->type) == OSPF6_SCOPE_LINKLOCAL &&
  444.           oa != OSPF6_INTERFACE (lsa->lsdb->data)->area)
  445.         continue;
  446.       if (ntohs (lsa->header->type) == OSPF6_LSTYPE_AS_EXTERNAL &&
  447.           IS_AREA_STUB (oa))
  448.         continue;
  449.       ospf6_flood_clear_area (lsa, oa);
  450.     }
  451. }
  452. void
  453. ospf6_flood_clear (struct ospf6_lsa *lsa)
  454. {
  455.   ospf6_flood_clear_process (lsa, ospf6);
  456. }
  457. /* RFC2328 13.5 (Table 19): Sending link state acknowledgements. */
  458. static void
  459. ospf6_acknowledge_lsa_bdrouter (struct ospf6_lsa *lsa, int ismore_recent,
  460.                                 struct ospf6_neighbor *from)
  461. {
  462.   struct ospf6_interface *oi;
  463.   int is_debug = 0;
  464.   if (IS_OSPF6_DEBUG_FLOODING ||
  465.       IS_OSPF6_DEBUG_FLOOD_TYPE (lsa->header->type))
  466.     is_debug++;
  467.   assert (from && from->ospf6_if);
  468.   oi = from->ospf6_if;
  469.   /* LSA has been flood back out receiving interface.
  470.      No acknowledgement sent. */
  471.   if (CHECK_FLAG (lsa->flag, OSPF6_LSA_FLOODBACK))
  472.     {
  473.       if (is_debug)
  474.         zlog_info ("No acknowledgement (BDR & FloodBack)");
  475.       return;
  476.     }
  477.   /* LSA is more recent than database copy, but was not flooded
  478.      back out receiving interface. Delayed acknowledgement sent
  479.      if advertisement received from Designated Router,
  480.      otherwide do nothing. */
  481.   if (ismore_recent < 0)
  482.     {
  483.       if (oi->drouter == from->router_id)
  484.         {
  485.           if (is_debug)
  486.             zlog_info ("Delayed acknowledgement (BDR & MoreRecent & from DR)");
  487.           /* Delayed acknowledgement */
  488.           ospf6_lsdb_add (ospf6_lsa_copy (lsa), oi->lsack_list);
  489.           if (oi->thread_send_lsack == NULL)
  490.             oi->thread_send_lsack =
  491.               thread_add_timer (master, ospf6_lsack_send_interface, oi, 3);
  492.         }
  493.       else
  494.         {
  495.           if (is_debug)
  496.             zlog_info ("No acknowledgement (BDR & MoreRecent & ! from DR)");
  497.         }
  498.       return;
  499.     }
  500.   /* LSA is a duplicate, and was treated as an implied acknowledgement.
  501.      Delayed acknowledgement sent if advertisement received from
  502.      Designated Router, otherwise do nothing */
  503.   if (CHECK_FLAG (lsa->flag, OSPF6_LSA_DUPLICATE) &&
  504.       CHECK_FLAG (lsa->flag, OSPF6_LSA_IMPLIEDACK))
  505.     {
  506.       if (oi->drouter == from->router_id)
  507.         {
  508.           if (is_debug)
  509.             zlog_info ("Delayed acknowledgement (BDR & Duplicate & ImpliedAck & from DR)");
  510.           /* Delayed acknowledgement */
  511.           ospf6_lsdb_add (ospf6_lsa_copy (lsa), oi->lsack_list);
  512.           if (oi->thread_send_lsack == NULL)
  513.             oi->thread_send_lsack =
  514.               thread_add_timer (master, ospf6_lsack_send_interface, oi, 3);
  515.         }
  516.       else
  517.         {
  518.           if (is_debug)
  519.             zlog_info ("No acknowledgement (BDR & Duplicate & ImpliedAck & ! from DR)");
  520.         }
  521.       return;
  522.     }
  523.   /* LSA is a duplicate, and was not treated as an implied acknowledgement.
  524.      Direct acknowledgement sent */
  525.   if (CHECK_FLAG (lsa->flag, OSPF6_LSA_DUPLICATE) &&
  526.       ! CHECK_FLAG (lsa->flag, OSPF6_LSA_IMPLIEDACK))
  527.     {
  528.       if (is_debug)
  529.         zlog_info ("Direct acknowledgement (BDR & Duplicate)");
  530.       ospf6_lsdb_add (ospf6_lsa_copy (lsa), from->lsack_list);
  531.       if (from->thread_send_lsack == NULL)
  532.         from->thread_send_lsack =
  533.           thread_add_event (master, ospf6_lsack_send_neighbor, from, 0);
  534.       return;
  535.     }
  536.   /* LSA's LS age is equal to Maxage, and there is no current instance
  537.      of the LSA in the link state database, and none of router's
  538.      neighbors are in states Exchange or Loading */
  539.   /* Direct acknowledgement sent, but this case is handled in
  540.      early of ospf6_receive_lsa () */
  541. }
  542. static void
  543. ospf6_acknowledge_lsa_allother (struct ospf6_lsa *lsa, int ismore_recent,
  544.                                 struct ospf6_neighbor *from)
  545. {
  546.   struct ospf6_interface *oi;
  547.   int is_debug = 0;
  548.   if (IS_OSPF6_DEBUG_FLOODING ||
  549.       IS_OSPF6_DEBUG_FLOOD_TYPE (lsa->header->type))
  550.     is_debug++;
  551.   assert (from && from->ospf6_if);
  552.   oi = from->ospf6_if;
  553.   /* LSA has been flood back out receiving interface.
  554.      No acknowledgement sent. */
  555.   if (CHECK_FLAG (lsa->flag, OSPF6_LSA_FLOODBACK))
  556.     {
  557.       if (is_debug)
  558.         zlog_info ("No acknowledgement (AllOther & FloodBack)");
  559.       return;
  560.     }
  561.   /* LSA is more recent than database copy, but was not flooded
  562.      back out receiving interface. Delayed acknowledgement sent. */
  563.   if (ismore_recent < 0)
  564.     {
  565.       if (is_debug)
  566.         zlog_info ("Delayed acknowledgement (AllOther & MoreRecent)");
  567.       /* Delayed acknowledgement */
  568.       ospf6_lsdb_add (ospf6_lsa_copy (lsa), oi->lsack_list);
  569.       if (oi->thread_send_lsack == NULL)
  570.         oi->thread_send_lsack =
  571.           thread_add_timer (master, ospf6_lsack_send_interface, oi, 3);
  572.       return;
  573.     }
  574.   /* LSA is a duplicate, and was treated as an implied acknowledgement.
  575.      No acknowledgement sent. */
  576.   if (CHECK_FLAG (lsa->flag, OSPF6_LSA_DUPLICATE) &&
  577.       CHECK_FLAG (lsa->flag, OSPF6_LSA_IMPLIEDACK))
  578.     {
  579.       if (is_debug)
  580.         zlog_info ("No acknowledgement (AllOther & Duplicate & ImpliedAck)");
  581.       return;
  582.     }
  583.   /* LSA is a duplicate, and was not treated as an implied acknowledgement.
  584.      Direct acknowledgement sent */
  585.   if (CHECK_FLAG (lsa->flag, OSPF6_LSA_DUPLICATE) &&
  586.       ! CHECK_FLAG (lsa->flag, OSPF6_LSA_IMPLIEDACK))
  587.     {
  588.       if (is_debug)
  589.         zlog_info ("Direct acknowledgement (AllOther & Duplicate)");
  590.       ospf6_lsdb_add (ospf6_lsa_copy (lsa), from->lsack_list);
  591.       if (from->thread_send_lsack == NULL)
  592.         from->thread_send_lsack =
  593.           thread_add_event (master, ospf6_lsack_send_neighbor, from, 0);
  594.       return;
  595.     }
  596.   /* LSA's LS age is equal to Maxage, and there is no current instance
  597.      of the LSA in the link state database, and none of router's
  598.      neighbors are in states Exchange or Loading */
  599.   /* Direct acknowledgement sent, but this case is handled in
  600.      early of ospf6_receive_lsa () */
  601. }
  602. void
  603. ospf6_acknowledge_lsa (struct ospf6_lsa *lsa, int ismore_recent,
  604.                        struct ospf6_neighbor *from)
  605. {
  606.   struct ospf6_interface *oi;
  607.   assert (from && from->ospf6_if);
  608.   oi = from->ospf6_if;
  609.   if (oi->state == OSPF6_INTERFACE_BDR)
  610.     ospf6_acknowledge_lsa_bdrouter (lsa, ismore_recent, from);
  611.   else
  612.     ospf6_acknowledge_lsa_allother (lsa, ismore_recent, from);
  613. }
  614. /* RFC2328 section 13 (4):
  615.    if MaxAge LSA and if we have no instance, and no neighbor
  616.    is in states Exchange or Loading
  617.    returns 1 if match this case, else returns 0 */
  618. static int
  619. ospf6_is_maxage_lsa_drop (struct ospf6_lsa *lsa, struct ospf6_neighbor *from)
  620. {
  621.   struct ospf6_neighbor *on;
  622.   struct ospf6_interface *oi;
  623.   struct ospf6_area *oa;
  624.   struct ospf6 *process = NULL;
  625.   listnode i, j, k;
  626.   int count = 0;
  627.   if (! OSPF6_LSA_IS_MAXAGE (lsa))
  628.     return 0;
  629.   if (ospf6_lsdb_lookup (lsa->header->type, lsa->header->id,
  630.                          lsa->header->adv_router, lsa->lsdb))
  631.     return 0;
  632.   process = from->ospf6_if->area->ospf6;
  633.   for (i = listhead (process->area_list); i; nextnode (i))
  634.     {
  635.       oa = OSPF6_AREA (getdata (i));
  636.       for (j = listhead (oa->if_list); j; nextnode (j))
  637.         {
  638.           oi = OSPF6_INTERFACE (getdata (j));
  639.           for (k = listhead (oi->neighbor_list); k; nextnode (k))
  640.             {
  641.               on = OSPF6_NEIGHBOR (getdata (k));
  642.               if (on->state == OSPF6_NEIGHBOR_EXCHANGE ||
  643.                   on->state == OSPF6_NEIGHBOR_LOADING)
  644.                 count++;
  645.             }
  646.         }
  647.     }
  648.   if (count == 0)
  649.     return 1;
  650.   return 0;
  651. }
  652. /* RFC2328 section 13 The Flooding Procedure */
  653. void
  654. ospf6_receive_lsa (struct ospf6_neighbor *from,
  655.                    struct ospf6_lsa_header *lsa_header)
  656. {
  657.   struct ospf6_lsa *new = NULL, *old = NULL, *rem = NULL;
  658.   int ismore_recent;
  659.   unsigned short cksum;
  660.   int is_debug = 0;
  661.   ismore_recent = 1;
  662.   assert (from);
  663.   /* make lsa structure for received lsa */
  664.   new = ospf6_lsa_create (lsa_header);
  665.   if (IS_OSPF6_DEBUG_FLOODING ||
  666.       IS_OSPF6_DEBUG_FLOOD_TYPE (new->header->type))
  667.     {
  668.       is_debug++;
  669.       zlog_info ("LSA Receive from %s", from->name);
  670.       ospf6_lsa_header_print (new);
  671.     }
  672.   /* (1) LSA Checksum */
  673.   cksum = ntohs (new->header->checksum);
  674.   if (ntohs (ospf6_lsa_checksum (new->header)) != cksum)
  675.     {
  676.       if (is_debug)
  677.         zlog_info ("Wrong LSA Checksum, discard");
  678.       ospf6_lsa_delete (new);
  679.       return;
  680.     }
  681.   /* (2) Examine the LSA's LS type. 
  682.      RFC2470 3.5.1. Receiving Link State Update packets  */
  683.   if (IS_AREA_STUB (from->ospf6_if->area) &&
  684.       OSPF6_LSA_SCOPE (new->header->type) == OSPF6_SCOPE_AS)
  685.     {
  686.       if (is_debug)
  687.         zlog_info ("AS-External-LSA (or AS-scope LSA) in stub area, discard");
  688.       ospf6_lsa_delete (new);
  689.       return;
  690.     }
  691.   /* (3) LSA which have reserved scope is discarded
  692.      RFC2470 3.5.1. Receiving Link State Update packets  */
  693.   /* Flooding scope check. LSAs with unknown scope are discarded here.
  694.      Set appropriate LSDB for the LSA */
  695.   switch (OSPF6_LSA_SCOPE (new->header->type))
  696.     {
  697.     case OSPF6_SCOPE_LINKLOCAL:
  698.       new->lsdb = from->ospf6_if->lsdb;
  699.       break;
  700.     case OSPF6_SCOPE_AREA:
  701.       new->lsdb = from->ospf6_if->area->lsdb;
  702.       break;
  703.     case OSPF6_SCOPE_AS:
  704.       new->lsdb = from->ospf6_if->area->ospf6->lsdb;
  705.       break;
  706.     default:
  707.       if (is_debug)
  708.         zlog_info ("LSA has reserved scope, discard");
  709.       ospf6_lsa_delete (new);
  710.       return;
  711.     }
  712.   /* (4) if MaxAge LSA and if we have no instance, and no neighbor
  713.          is in states Exchange or Loading */
  714.   if (ospf6_is_maxage_lsa_drop (new, from))
  715.     {
  716.       /* log */
  717.       if (is_debug)
  718.         zlog_info ("Drop MaxAge LSA with direct acknowledgement.");
  719.       /* a) Acknowledge back to neighbor (Direct acknowledgement, 13.5) */
  720.       ospf6_lsdb_add (ospf6_lsa_copy (new), from->lsack_list);
  721.       if (from->thread_send_lsack == NULL)
  722.         from->thread_send_lsack =
  723.           thread_add_event (master, ospf6_lsack_send_neighbor, from, 0);
  724.       /* b) Discard */
  725.       ospf6_lsa_delete (new);
  726.       return;
  727.     }
  728.   /* (5) */
  729.   /* lookup the same database copy in lsdb */
  730.   old = ospf6_lsdb_lookup (new->header->type, new->header->id,
  731.                            new->header->adv_router, new->lsdb);
  732.   if (old)
  733.     {
  734.       ismore_recent = ospf6_lsa_compare (new, old);
  735.       if (ntohl (new->header->seqnum) == ntohl (old->header->seqnum))
  736.         {
  737.           if (is_debug)
  738.             zlog_info ("Received is duplicated LSA");
  739.           SET_FLAG (new->flag, OSPF6_LSA_DUPLICATE);
  740.         }
  741.     }
  742.   /* if no database copy or received is more recent */
  743.   if (old == NULL || ismore_recent < 0)
  744.     {
  745.       /* in case we have no database copy */
  746.       ismore_recent = -1;
  747.       /* (a) MinLSArrival check */
  748.       if (old)
  749.         {
  750.           struct timeval now, res;
  751.           gettimeofday (&now, (struct timezone *) NULL);
  752.           timersub (&now, &old->installed, &res);
  753.           if (res.tv_sec < MIN_LS_ARRIVAL)
  754.             {
  755.               if (is_debug)
  756.                 zlog_info ("LSA can't be updated within MinLSArrival, discard");
  757.               ospf6_lsa_delete (new);
  758.               return;   /* examin next lsa */
  759.             }
  760.         }
  761.       gettimeofday (&new->received, (struct timezone *) NULL);
  762.       if (is_debug)
  763.         zlog_info ("Flood, Install, Possibly acknowledge the received LSA");
  764.       /* (b) immediately flood and (c) remove from all retrans-list */
  765.       /* Prevent self-originated LSA to be flooded. this is to make
  766.       reoriginated instance of the LSA not to be rejected by other routers
  767.       due to MinLSArrival. */
  768.       if (new->header->adv_router != from->ospf6_if->area->ospf6->router_id)
  769.         ospf6_flood (from, new);
  770.       /* (c) Remove the current database copy from all neighbors' Link
  771.              state retransmission lists. */
  772.       /* XXX, flood_clear ? */
  773.       /* (d), installing lsdb, which may cause routing
  774.               table calculation (replacing database copy) */
  775.       ospf6_install_lsa (new);
  776.       /* (e) possibly acknowledge */
  777.       ospf6_acknowledge_lsa (new, ismore_recent, from);
  778.       /* (f) Self Originated LSA, section 13.4 */
  779.       if (new->header->adv_router == from->ospf6_if->area->ospf6->router_id)
  780.         {
  781.           /* Self-originated LSA (newer than ours) is received from
  782.              another router. We have to make a new instance of the LSA
  783.              or have to flush this LSA. */
  784.           if (is_debug)
  785.             {
  786.               zlog_info ("Newer instance of the self-originated LSA");
  787.               zlog_info ("Schedule reorigination");
  788.             }
  789.           new->refresh = thread_add_event (master, ospf6_lsa_refresh, new, 0);
  790.         }
  791.       return;
  792.     }
  793.   /* (6) if there is instance on sending neighbor's request list */
  794.   if (ospf6_lsdb_lookup (new->header->type, new->header->id,
  795.                          new->header->adv_router, from->request_list))
  796.     {
  797.       /* if no database copy, should go above state (5) */
  798.       assert (old);
  799.       if (is_debug)
  800.         {
  801.           zlog_info ("Received is not newer, on the neighbor's request-list");
  802.           zlog_info ("BadLSReq, discard the received LSA");
  803.         }
  804.       /* BadLSReq */
  805.       thread_add_event (master, bad_lsreq, from, 0);
  806.       ospf6_lsa_delete (new);
  807.       return;
  808.     }
  809.   /* (7) if neither one is more recent */
  810.   if (ismore_recent == 0)
  811.     {
  812.       if (is_debug)
  813.         zlog_info ("The same instance as database copy (neither recent)");
  814.       /* (a) if on retrans-list, Treat this LSA as an Ack: Implied Ack */
  815.       rem = ospf6_lsdb_lookup (new->header->type, new->header->id,
  816.                                new->header->adv_router, from->retrans_list);
  817.       if (rem)
  818.         {
  819.           if (is_debug)
  820.             {
  821.               zlog_info ("It is on the neighbor's retrans-list.");
  822.               zlog_info ("Treat as an Implied acknowledgement");
  823.             }
  824.           SET_FLAG (new->flag, OSPF6_LSA_IMPLIEDACK);
  825.           ospf6_decrement_retrans_count (rem);
  826.           ospf6_lsdb_remove (rem, from->retrans_list);
  827.         }
  828.       if (is_debug)
  829.         zlog_info ("Possibly acknowledge and then discard");
  830.       /* (b) possibly acknowledge */
  831.       ospf6_acknowledge_lsa (new, ismore_recent, from);
  832.       ospf6_lsa_delete (new);
  833.       return;
  834.     }
  835.   /* (8) previous database copy is more recent */
  836.     {
  837.       assert (old);
  838.       /* If database copy is in 'Seqnumber Wrapping',
  839.          simply discard the received LSA */
  840.       if (OSPF6_LSA_IS_MAXAGE (old) &&
  841.           old->header->seqnum == htonl (MAX_SEQUENCE_NUMBER))
  842.         {
  843.           if (is_debug)
  844.             {
  845.               zlog_info ("The LSA is in Seqnumber Wrapping");
  846.               zlog_info ("MaxAge & MaxSeqNum, discard");
  847.             }
  848.           ospf6_lsa_delete (new);
  849.           return;
  850.         }
  851.       /* Otherwise, Send database copy of this LSA to this neighbor */
  852.         {
  853.           if (is_debug)
  854.             {
  855.               zlog_info ("Database copy is more recent.");
  856.               zlog_info ("Send back directly and then discard");
  857.             }
  858.           /* XXX, MinLSArrival check !? RFC 2328 13 (8) */
  859.           ospf6_lsdb_add (ospf6_lsa_copy (old), from->lsupdate_list);
  860.           if (from->thread_send_lsupdate == NULL)
  861.             from->thread_send_lsupdate =
  862.               thread_add_event (master, ospf6_lsupdate_send_neighbor, from, 0);
  863.           ospf6_lsa_delete (new);
  864.           return;
  865.         }
  866.       return;
  867.     }
  868. }
  869. DEFUN (debug_ospf6_flooding,
  870.        debug_ospf6_flooding_cmd,
  871.        "debug ospf6 flooding",
  872.        DEBUG_STR
  873.        OSPF6_STR
  874.        "Debug OSPFv3 flooding functionn"
  875.       )
  876. {
  877.   OSPF6_DEBUG_FLOODING_ON ();
  878.   return CMD_SUCCESS;
  879. }
  880. DEFUN (no_debug_ospf6_flooding,
  881.        no_debug_ospf6_flooding_cmd,
  882.        "no debug ospf6 flooding",
  883.        NO_STR
  884.        DEBUG_STR
  885.        OSPF6_STR
  886.        "Debug OSPFv3 flooding functionn"
  887.       )
  888. {
  889.   OSPF6_DEBUG_FLOODING_OFF ();
  890.   return CMD_SUCCESS;
  891. }
  892. int
  893. config_write_ospf6_debug_flood (struct vty *vty)
  894. {
  895.   if (IS_OSPF6_DEBUG_FLOODING)
  896.     vty_out (vty, "debug ospf6 flooding%s", VNL);
  897.   return 0;
  898. }
  899. void
  900. install_element_ospf6_debug_flood ()
  901. {
  902.   install_element (ENABLE_NODE, &debug_ospf6_flooding_cmd);
  903.   install_element (ENABLE_NODE, &no_debug_ospf6_flooding_cmd);
  904.   install_element (CONFIG_NODE, &debug_ospf6_flooding_cmd);
  905.   install_element (CONFIG_NODE, &no_debug_ospf6_flooding_cmd);
  906. }