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

网络

开发平台:

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 "memory.h"
  23. #include "log.h"
  24. #include "vty.h"
  25. #include "command.h"
  26. #include "thread.h"
  27. #include "linklist.h"
  28. #include "ospf6_proto.h"
  29. #include "ospf6_lsa.h"
  30. #include "ospf6_lsdb.h"
  31. #include "ospf6_network.h"
  32. #include "ospf6_message.h"
  33. #include "ospf6_top.h"
  34. #include "ospf6_area.h"
  35. #include "ospf6_neighbor.h"
  36. #include "ospf6_interface.h"
  37. #include "ospf6_flood.h"
  38. #include "ospf6d.h"
  39. unsigned char conf_debug_ospf6_message[6] = {0x03, 0, 0, 0, 0, 0};
  40. char *ospf6_message_type_str[] =
  41.   { "Unknown", "Hello", "DbDesc", "LSReq", "LSUpdate", "LSAck" };
  42. /* print functions */
  43. static void
  44. ospf6_header_print (struct ospf6_header *oh)
  45. {
  46.   char router_id[16], area_id[16];
  47.   inet_ntop (AF_INET, &oh->router_id, router_id, sizeof (router_id));
  48.   inet_ntop (AF_INET, &oh->area_id, area_id, sizeof (area_id));
  49.   zlog_info ("    OSPFv%d Type:%d Len:%hu Router-ID:%s",
  50.              oh->version, oh->type, ntohs (oh->length), router_id);
  51.   zlog_info ("    Area-ID:%s Cksum:%hx Instance-ID:%d",
  52.              area_id, ntohs (oh->checksum), oh->instance_id);
  53. }
  54. void
  55. ospf6_hello_print (struct ospf6_header *oh)
  56. {
  57.   struct ospf6_hello *hello;
  58.   char options[16];
  59.   char drouter[16], bdrouter[16], neighbor[16];
  60.   char *p;
  61.   ospf6_header_print (oh);
  62.   assert (oh->type == OSPF6_MESSAGE_TYPE_HELLO);
  63.   hello = (struct ospf6_hello *)
  64.     ((caddr_t) oh + sizeof (struct ospf6_header));
  65.   inet_ntop (AF_INET, &hello->drouter, drouter, sizeof (drouter));
  66.   inet_ntop (AF_INET, &hello->bdrouter, bdrouter, sizeof (bdrouter));
  67.   ospf6_options_printbuf (hello->options, options, sizeof (options));
  68.   zlog_info ("    I/F-Id:%ld Priority:%d Option:%s",
  69.              (u_long) ntohl (hello->interface_id), hello->priority, options);
  70.   zlog_info ("    HelloInterval:%hu DeadInterval:%hu",
  71.              ntohs (hello->hello_interval), ntohs (hello->dead_interval));
  72.   zlog_info ("    DR:%s BDR:%s", drouter, bdrouter);
  73.   for (p = (char *) ((caddr_t) hello + sizeof (struct ospf6_hello));
  74.        p + sizeof (u_int32_t) <= OSPF6_MESSAGE_END (oh);
  75.        p += sizeof (u_int32_t))
  76.     {
  77.       inet_ntop (AF_INET, (void *) p, neighbor, sizeof (neighbor));
  78.       zlog_info ("    Neighbor: %s", neighbor);
  79.     }
  80.   if (p != OSPF6_MESSAGE_END (oh))
  81.     zlog_info ("Trailing garbage exists");
  82. }
  83. void
  84. ospf6_dbdesc_print (struct ospf6_header *oh)
  85. {
  86.   struct ospf6_dbdesc *dbdesc;
  87.   char options[16];
  88.   char *p;
  89.   ospf6_header_print (oh);
  90.   assert (oh->type == OSPF6_MESSAGE_TYPE_DBDESC);
  91.   dbdesc = (struct ospf6_dbdesc *)
  92.     ((caddr_t) oh + sizeof (struct ospf6_header));
  93.   ospf6_options_printbuf (dbdesc->options, options, sizeof (options));
  94.   zlog_info ("    MBZ: %#x Option: %s IfMTU: %hu",
  95.              dbdesc->reserved1, options, ntohs (dbdesc->ifmtu));
  96.   zlog_info ("    MBZ: %#x Bits: %s%s%s SeqNum: %#lx",
  97.              dbdesc->reserved2,
  98.              (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT) ? "I" : "-"),
  99.              (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MBIT) ? "M" : "-"),
  100.              (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT) ? "m" : "s"),
  101.              (u_long) ntohl (dbdesc->seqnum));
  102.   for (p = (char *) ((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc));
  103.        p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh);
  104.        p += sizeof (struct ospf6_lsa_header))
  105.     ospf6_lsa_header_print_raw ((struct ospf6_lsa_header *) p);
  106.   if (p != OSPF6_MESSAGE_END (oh))
  107.     zlog_info ("Trailing garbage exists");
  108. }
  109. void
  110. ospf6_lsreq_print (struct ospf6_header *oh)
  111. {
  112.   char id[16], adv_router[16];
  113.   char *p;
  114.   ospf6_header_print (oh);
  115.   assert (oh->type == OSPF6_MESSAGE_TYPE_LSREQ);
  116.   for (p = (char *) ((caddr_t) oh + sizeof (struct ospf6_header));
  117.        p + sizeof (struct ospf6_lsreq_entry) <= OSPF6_MESSAGE_END (oh);
  118.        p += sizeof (struct ospf6_lsreq_entry))
  119.     {
  120.       struct ospf6_lsreq_entry *e = (struct ospf6_lsreq_entry *) p;
  121.       inet_ntop (AF_INET, &e->adv_router, adv_router, sizeof (adv_router));
  122.       inet_ntop (AF_INET, &e->id, id, sizeof (id));
  123.       zlog_info ("    [%s Id:%s Adv:%s]",
  124.                  ospf6_lstype_name (e->type), id, adv_router);
  125.     }
  126.   if (p != OSPF6_MESSAGE_END (oh))
  127.     zlog_info ("Trailing garbage exists");
  128. }
  129. void
  130. ospf6_lsupdate_print (struct ospf6_header *oh)
  131. {
  132.   struct ospf6_lsupdate *lsupdate;
  133.   u_long num;
  134.   char *p;
  135.   ospf6_header_print (oh);
  136.   assert (oh->type == OSPF6_MESSAGE_TYPE_LSUPDATE);
  137.   lsupdate = (struct ospf6_lsupdate *)
  138.     ((caddr_t) oh + sizeof (struct ospf6_header));
  139.   num = ntohl (lsupdate->lsa_number);
  140.   zlog_info ("    Number of LSA: %ld", num);
  141.   for (p = (char *) ((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate));
  142.        p < OSPF6_MESSAGE_END (oh) &&
  143.        p + OSPF6_LSA_SIZE (p) <= OSPF6_MESSAGE_END (oh);
  144.        p += OSPF6_LSA_SIZE (p))
  145.     {
  146.       ospf6_lsa_header_print_raw ((struct ospf6_lsa_header *) p);
  147.       if (OSPF6_LSA_SIZE (p) < sizeof (struct ospf6_lsa_header))
  148.         {
  149.           zlog_info ("    Malformed LSA length, quit printing");
  150.           break;
  151.         }
  152.     }
  153.   if (p != OSPF6_MESSAGE_END (oh))
  154.     {
  155.       char buf[32];
  156.       int num = 0;
  157.       memset (buf, 0, sizeof (buf));
  158.       zlog_info ("    Trailing garbage exists");
  159.       while (p < OSPF6_MESSAGE_END (oh))
  160.         {
  161.           snprintf (buf, sizeof (buf), "%s %2x", buf, *p++);
  162.           num++;
  163.           if (num == 8)
  164.             {
  165.               zlog_info ("    %s", buf);
  166.               memset (buf, 0, sizeof (buf));
  167.               num = 0;
  168.             }
  169.         }
  170.       if (num)
  171.         zlog_info ("    %s", buf);
  172.     }
  173. }
  174. void
  175. ospf6_lsack_print (struct ospf6_header *oh)
  176. {
  177.   char *p;
  178.   ospf6_header_print (oh);
  179.   assert (oh->type == OSPF6_MESSAGE_TYPE_LSACK);
  180.   for (p = (char *) ((caddr_t) oh + sizeof (struct ospf6_header));
  181.        p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh);
  182.        p += sizeof (struct ospf6_lsa_header))
  183.     ospf6_lsa_header_print_raw ((struct ospf6_lsa_header *) p);
  184.   if (p != OSPF6_MESSAGE_END (oh))
  185.     zlog_info ("Trailing garbage exists");
  186. }
  187. /* Receive function */
  188. #define MSG_OK    0
  189. #define MSG_NG    1
  190. static int
  191. ospf6_header_examin (struct in6_addr *src, struct in6_addr *dst,
  192.                      struct ospf6_interface *oi, struct ospf6_header *oh)
  193. {
  194.   u_char type;
  195.   type = OSPF6_MESSAGE_TYPE_CANONICAL (oh->type);
  196.   /* version check */
  197.   if (oh->version != OSPFV3_VERSION)
  198.     {
  199.       if (IS_OSPF6_DEBUG_MESSAGE (type, RECV))
  200.         zlog_info ("Message with unknown version");
  201.       return MSG_NG;
  202.     }
  203.   /* Area-ID check */
  204.   if (oh->area_id != oi->area->area_id)
  205.     {
  206.       if (oh->area_id == BACKBONE_AREA_ID)
  207.         {
  208.           if (IS_OSPF6_DEBUG_MESSAGE (type, RECV))
  209.             zlog_info ("Message may be via Virtual Link: not supported");
  210.           return MSG_NG;
  211.         }
  212.       if (IS_OSPF6_DEBUG_MESSAGE (type, RECV))
  213.         zlog_info ("Area-ID mismatch");
  214.       return MSG_NG;
  215.     }
  216.   /* Instance-ID check */
  217.   if (oh->instance_id != oi->instance_id)
  218.     {
  219.       if (IS_OSPF6_DEBUG_MESSAGE (type, RECV))
  220.         zlog_info ("Instance-ID mismatch");
  221.       return MSG_NG;
  222.     }
  223.   /* Router-ID check */
  224.   if (oh->router_id == oi->area->ospf6->router_id)
  225.     zlog_warn ("Detect duplicate Router-ID");
  226.   return MSG_OK;
  227. }
  228. void
  229. ospf6_hello_recv (struct in6_addr *src, struct in6_addr *dst,
  230.                   struct ospf6_interface *oi, struct ospf6_header *oh)
  231. {
  232.   struct ospf6_hello *hello;
  233.   struct ospf6_neighbor *on;
  234.   char *p;
  235.   int twoway = 0;
  236.   int neighborchange = 0;
  237.   int backupseen = 0;
  238.   if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK)
  239.     return;
  240.   hello = (struct ospf6_hello *)
  241.     ((caddr_t) oh + sizeof (struct ospf6_header));
  242.   /* HelloInterval check */
  243.   if (ntohs (hello->hello_interval) != oi->hello_interval)
  244.     {
  245.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  246.         zlog_info ("HelloInterval mismatch");
  247.       return;
  248.     }
  249.   /* RouterDeadInterval check */
  250.   if (ntohs (hello->dead_interval) != oi->dead_interval)
  251.     {
  252.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  253.         zlog_info ("RouterDeadInterval mismatch");
  254.       return;
  255.     }
  256.   /* E-bit check */
  257.   if (OSPF6_OPT_ISSET (hello->options, OSPF6_OPT_E) !=
  258.       OSPF6_OPT_ISSET (oi->area->options, OSPF6_OPT_E))
  259.     {
  260.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  261.         zlog_info ("E-bit mismatch");
  262.       return;
  263.     }
  264.   /* Find neighbor, create if not exist */
  265.   on = ospf6_neighbor_lookup (oh->router_id, oi);
  266.   if (on == NULL)
  267.     {
  268.       on = ospf6_neighbor_create (oh->router_id, oi);
  269.       on->prev_drouter = on->drouter = hello->drouter;
  270.       on->prev_bdrouter = on->bdrouter = hello->bdrouter;
  271.       on->priority = hello->priority;
  272.     }
  273.   /* always override neighbor's source address and ifindex */
  274.   on->ifindex = ntohl (hello->interface_id);
  275.   memcpy (&on->linklocal_addr, src, sizeof (struct in6_addr));
  276.   /* TwoWay check */
  277.   for (p = (char *) ((caddr_t) hello + sizeof (struct ospf6_hello));
  278.        p + sizeof (u_int32_t) <= OSPF6_MESSAGE_END (oh);
  279.        p += sizeof (u_int32_t))
  280.     {
  281.       u_int32_t *router_id = (u_int32_t *) p;
  282.       if (*router_id == oi->area->ospf6->router_id)
  283.         twoway++;
  284.     }
  285.   if (p != OSPF6_MESSAGE_END (oh))
  286.     {
  287.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  288.         zlog_info ("Trailing garbage ignored");
  289.     }
  290.   /* RouterPriority check */
  291.   if (on->priority != hello->priority)
  292.     {
  293.       on->priority = hello->priority;
  294.       neighborchange++;
  295.     }
  296.   /* DR check */
  297.   if (on->drouter != hello->drouter)
  298.     {
  299.       on->prev_drouter = on->drouter;
  300.       on->drouter = hello->drouter;
  301.       if (on->prev_drouter == on->router_id || on->drouter == on->router_id)
  302.         neighborchange++;
  303.     }
  304.   /* BDR check */
  305.   if (on->bdrouter != hello->bdrouter)
  306.     {
  307.       on->prev_bdrouter = on->bdrouter;
  308.       on->bdrouter = hello->bdrouter;
  309.       if (on->prev_bdrouter == on->router_id || on->bdrouter == on->router_id)
  310.         neighborchange++;
  311.     }
  312.   /* BackupSeen check */
  313.   if (oi->state == OSPF6_INTERFACE_WAITING)
  314.     {
  315.       if (hello->bdrouter == on->router_id)
  316.         backupseen++;
  317.       else if (hello->drouter == on->router_id && hello->bdrouter == htonl (0))
  318.         backupseen++;
  319.     }
  320.   /* Execute neighbor events */
  321.   thread_execute (master, hello_received, on, 0);
  322.   if (twoway)
  323.     thread_execute (master, twoway_received, on, 0);
  324.   else
  325.     thread_execute (master, oneway_received, on, 0);
  326.   /* Schedule interface events */
  327.   if (backupseen)
  328.     thread_add_event (master, backup_seen, oi, 0);
  329.   if (neighborchange)
  330.     thread_add_event (master, neighbor_change, oi, 0);
  331. }
  332. static void
  333. ospf6_dbdesc_recv_master (struct ospf6_header *oh,
  334.                           struct ospf6_neighbor *on)
  335. {
  336.   struct ospf6_dbdesc *dbdesc;
  337.   char *p;
  338.   dbdesc = (struct ospf6_dbdesc *)
  339.     ((caddr_t) oh + sizeof (struct ospf6_header));
  340.   if (on->state < OSPF6_NEIGHBOR_INIT)
  341.     {
  342.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  343.         zlog_info ("Neighbor state less than Init, ignore");
  344.       return;
  345.     }
  346.   switch (on->state)
  347.     {
  348.     case OSPF6_NEIGHBOR_TWOWAY:
  349.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  350.         zlog_info ("Neighbor state is 2-Way, ignore");
  351.       return;
  352.     case OSPF6_NEIGHBOR_INIT:
  353.       thread_execute (master, twoway_received, on, 0);
  354.       if (on->state != OSPF6_NEIGHBOR_EXSTART)
  355.         {
  356.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  357.             zlog_info ("Neighbor state is not ExStart, ignore");
  358.           return;
  359.         }
  360.       /* else fall through to ExStart */
  361.     case OSPF6_NEIGHBOR_EXSTART:
  362.       /* if neighbor obeys us as our slave, schedule negotiation_done
  363.          and process LSA Headers. Otherwise, ignore this message */
  364.       if (! CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT) &&
  365.           ! CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT) &&
  366.           ntohl (dbdesc->seqnum) == on->dbdesc_seqnum)
  367.         {
  368.           /* execute NegotiationDone */
  369.           thread_execute (master, negotiation_done, on, 0);
  370.           /* Record neighbor options */
  371.           memcpy (on->options, dbdesc->options, sizeof (on->options));
  372.         }
  373.       else
  374.         {
  375.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  376.             zlog_info ("Negotiation failed");
  377.           return;
  378.         }
  379.       /* fall through to exchange */
  380.     case OSPF6_NEIGHBOR_EXCHANGE:
  381.       if (! memcmp (dbdesc, &on->dbdesc_last, sizeof (struct ospf6_dbdesc)))
  382.         {
  383.           /* Duplicated DatabaseDescription is dropped by master */
  384.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  385.             zlog_info ("Duplicated dbdesc discarded by Master, ignore");
  386.           return;
  387.         }
  388.       if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT))
  389.         {
  390.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  391.             zlog_info ("Master/Slave bit mismatch");
  392.           thread_add_event (master, seqnumber_mismatch, on, 0);
  393.           return;
  394.         }
  395.       if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT))
  396.         {
  397.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  398.             zlog_info ("Initialize bit mismatch");
  399.           thread_add_event (master, seqnumber_mismatch, on, 0);
  400.           return;
  401.         }
  402.       if (memcmp (on->options, dbdesc->options, sizeof (on->options)))
  403.         {
  404.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  405.             zlog_info ("Option field mismatch");
  406.           thread_add_event (master, seqnumber_mismatch, on, 0);
  407.           return;
  408.         }
  409.       if (ntohl (dbdesc->seqnum) != on->dbdesc_seqnum)
  410.         {
  411.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  412.             zlog_info ("Sequence number mismatch (%#lx expected)",
  413.                        (u_long) on->dbdesc_seqnum);
  414.           thread_add_event (master, seqnumber_mismatch, on, 0);
  415.           return;
  416.         }
  417.       break;
  418.     case OSPF6_NEIGHBOR_LOADING:
  419.     case OSPF6_NEIGHBOR_FULL:
  420.       if (! memcmp (dbdesc, &on->dbdesc_last, sizeof (struct ospf6_dbdesc)))
  421.         {
  422.           /* Duplicated DatabaseDescription is dropped by master */
  423.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  424.             zlog_info ("Duplicated dbdesc discarded by Master, ignore");
  425.           return;
  426.         }
  427.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  428.         zlog_info ("Not duplicate dbdesc in state %s",
  429.                    ospf6_neighbor_state_str[on->state]);
  430.       thread_add_event (master, seqnumber_mismatch, on, 0);
  431.       return;
  432.     default:
  433.       assert (0);
  434.       break;
  435.     }
  436.   /* Process LSA headers */
  437.   for (p = (char *) ((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc));
  438.        p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh);
  439.        p += sizeof (struct ospf6_lsa_header))
  440.     {
  441.       struct ospf6_lsa *his, *mine;
  442.       struct ospf6_lsdb *lsdb = NULL;
  443.       his = ospf6_lsa_create_headeronly ((struct ospf6_lsa_header *) p);
  444.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  445.         zlog_info ("%s", his->name);
  446.       switch (OSPF6_LSA_SCOPE (his->header->type))
  447.         {
  448.         case OSPF6_SCOPE_LINKLOCAL:
  449.           lsdb = on->ospf6_if->lsdb;
  450.           break;
  451.         case OSPF6_SCOPE_AREA:
  452.           lsdb = on->ospf6_if->area->lsdb;
  453.           break;
  454.         case OSPF6_SCOPE_AS:
  455.           lsdb = on->ospf6_if->area->ospf6->lsdb;
  456.           break;
  457.         case OSPF6_SCOPE_RESERVED:
  458.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  459.             zlog_info ("Ignoring LSA of reserved scope");
  460.           ospf6_lsa_delete (his);
  461.           continue;
  462.           break;
  463.         }
  464.       if (ntohs (his->header->type) == OSPF6_LSTYPE_AS_EXTERNAL &&
  465.           IS_AREA_STUB (on->ospf6_if->area))
  466.         {
  467.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  468.             zlog_info ("SeqNumMismatch (E-bit mismatch), discard");
  469.           ospf6_lsa_delete (his);
  470.           thread_add_event (master, seqnumber_mismatch, on, 0);
  471.           return;
  472.         }
  473.       mine = ospf6_lsdb_lookup (his->header->type, his->header->id,
  474.                                 his->header->adv_router, lsdb);
  475.       if (mine == NULL)
  476.         {
  477.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  478.             zlog_info ("Add request (No database copy)");
  479.           ospf6_lsdb_add (his, on->request_list);
  480.         }
  481.       else if (ospf6_lsa_compare (his, mine) < 0)
  482.         {
  483.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  484.             zlog_info ("Add request (Received MoreRecent)");
  485.           ospf6_lsdb_add (his, on->request_list);
  486.         }
  487.       else
  488.         {
  489.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  490.             zlog_info ("Discard (Existing MoreRecent)");
  491.           ospf6_lsa_delete (his);
  492.         }
  493.     }
  494.   if (p != OSPF6_MESSAGE_END (oh))
  495.     {
  496.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  497.         zlog_info ("Trailing garbage ignored");
  498.     }
  499.   /* Increment sequence number */
  500.   on->dbdesc_seqnum ++;
  501.   /* schedule send lsreq */
  502.   if (on->thread_send_lsreq == NULL)
  503.     on->thread_send_lsreq =
  504.       thread_add_event (master, ospf6_lsreq_send, on, 0);
  505.   THREAD_OFF (on->thread_send_dbdesc);
  506.   /* More bit check */
  507.   if (! CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MBIT) &&
  508.       ! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MBIT))
  509.     thread_add_event (master, exchange_done, on, 0);
  510.   else
  511.     on->thread_send_dbdesc =
  512.       thread_add_event (master, ospf6_dbdesc_send_newone, on, 0);
  513.   /* save last received dbdesc */
  514.   memcpy (&on->dbdesc_last, dbdesc, sizeof (struct ospf6_dbdesc));
  515. }
  516. static void
  517. ospf6_dbdesc_recv_slave (struct ospf6_header *oh,
  518.                          struct ospf6_neighbor *on)
  519. {
  520.   struct ospf6_dbdesc *dbdesc;
  521.   char *p;
  522.   dbdesc = (struct ospf6_dbdesc *)
  523.     ((caddr_t) oh + sizeof (struct ospf6_header));
  524.   if (on->state < OSPF6_NEIGHBOR_INIT)
  525.     {
  526.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  527.         zlog_info ("Neighbor state less than Init, ignore");
  528.       return;
  529.     }
  530.   switch (on->state)
  531.     {
  532.     case OSPF6_NEIGHBOR_TWOWAY:
  533.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  534.         zlog_info ("Neighbor state is 2-Way, ignore");
  535.       return;
  536.     case OSPF6_NEIGHBOR_INIT:
  537.       thread_execute (master, twoway_received, on, 0);
  538.       if (on->state != OSPF6_NEIGHBOR_EXSTART)
  539.         {
  540.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  541.             zlog_info ("Neighbor state is not ExStart, ignore");
  542.           return;
  543.         }
  544.       /* else fall through to ExStart */
  545.     case OSPF6_NEIGHBOR_EXSTART:
  546.       /* If the neighbor is Master, act as Slave. Schedule negotiation_done
  547.          and process LSA Headers. Otherwise, ignore this message */
  548.       if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT) &&
  549.           CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MBIT) &&
  550.           CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT) &&
  551.           ntohs (oh->length) == sizeof (struct ospf6_header) +
  552.                                 sizeof (struct ospf6_dbdesc))
  553.         {
  554.           /* set the master/slave bit to slave */
  555.           UNSET_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MSBIT);
  556.           /* set the DD sequence number to one specified by master */
  557.           on->dbdesc_seqnum = ntohl (dbdesc->seqnum);
  558.           /* schedule NegotiationDone */
  559.           thread_execute (master, negotiation_done, on, 0);
  560.           /* Record neighbor options */
  561.           memcpy (on->options, dbdesc->options, sizeof (on->options));
  562.         }
  563.       else
  564.         {
  565.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  566.             zlog_info ("Negotiation failed");
  567.           return;
  568.         }
  569.       break;
  570.     case OSPF6_NEIGHBOR_EXCHANGE:
  571.       if (! memcmp (dbdesc, &on->dbdesc_last, sizeof (struct ospf6_dbdesc)))
  572.         {
  573.           /* Duplicated DatabaseDescription causes slave to retransmit */
  574.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  575.             zlog_info ("Duplicated dbdesc causes retransmit");
  576.           THREAD_OFF (on->thread_send_dbdesc);
  577.           on->thread_send_dbdesc =
  578.             thread_add_event (master, ospf6_dbdesc_send, on, 0);
  579.           return;
  580.         }
  581.       if (! CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_MSBIT))
  582.         {
  583.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  584.             zlog_info ("Master/Slave bit mismatch");
  585.           thread_add_event (master, seqnumber_mismatch, on, 0);
  586.           return;
  587.         }
  588.       if (CHECK_FLAG (dbdesc->bits, OSPF6_DBDESC_IBIT))
  589.         {
  590.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  591.             zlog_info ("Initialize bit mismatch");
  592.           thread_add_event (master, seqnumber_mismatch, on, 0);
  593.           return;
  594.         }
  595.       if (memcmp (on->options, dbdesc->options, sizeof (on->options)))
  596.         {
  597.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  598.             zlog_info ("Option field mismatch");
  599.           thread_add_event (master, seqnumber_mismatch, on, 0);
  600.           return;
  601.         }
  602.       if (ntohl (dbdesc->seqnum) != on->dbdesc_seqnum + 1)
  603.         {
  604.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  605.             zlog_info ("Sequence number mismatch (%#lx expected)",
  606.                        (u_long) on->dbdesc_seqnum + 1);
  607.           thread_add_event (master, seqnumber_mismatch, on, 0);
  608.           return;
  609.         }
  610.       break;
  611.     case OSPF6_NEIGHBOR_LOADING:
  612.     case OSPF6_NEIGHBOR_FULL:
  613.       if (! memcmp (dbdesc, &on->dbdesc_last, sizeof (struct ospf6_dbdesc)))
  614.         {
  615.           /* Duplicated DatabaseDescription causes slave to retransmit */
  616.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  617.             zlog_info ("Duplicated dbdesc causes retransmit");
  618.           THREAD_OFF (on->thread_send_dbdesc);
  619.           on->thread_send_dbdesc =
  620.             thread_add_event (master, ospf6_dbdesc_send, on, 0);
  621.           return;
  622.         }
  623.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  624.         zlog_info ("Not duplicate dbdesc in state %s",
  625.                    ospf6_neighbor_state_str[on->state]);
  626.       thread_add_event (master, seqnumber_mismatch, on, 0);
  627.       return;
  628.     default:
  629.       assert (0);
  630.       break;
  631.     }
  632.   /* Process LSA headers */
  633.   for (p = (char *) ((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc));
  634.        p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh);
  635.        p += sizeof (struct ospf6_lsa_header))
  636.     {
  637.       struct ospf6_lsa *his, *mine;
  638.       struct ospf6_lsdb *lsdb = NULL;
  639.       his = ospf6_lsa_create_headeronly ((struct ospf6_lsa_header *) p);
  640.       switch (OSPF6_LSA_SCOPE (his->header->type))
  641.         {
  642.         case OSPF6_SCOPE_LINKLOCAL:
  643.           lsdb = on->ospf6_if->lsdb;
  644.           break;
  645.         case OSPF6_SCOPE_AREA:
  646.           lsdb = on->ospf6_if->area->lsdb;
  647.           break;
  648.         case OSPF6_SCOPE_AS:
  649.           lsdb = on->ospf6_if->area->ospf6->lsdb;
  650.           break;
  651.         case OSPF6_SCOPE_RESERVED:
  652.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  653.             zlog_info ("Ignoring LSA of reserved scope");
  654.           ospf6_lsa_delete (his);
  655.           continue;
  656.           break;
  657.         }
  658.       if (OSPF6_LSA_SCOPE (his->header->type) == OSPF6_SCOPE_AS &&
  659.           IS_AREA_STUB (on->ospf6_if->area))
  660.         {
  661.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  662.             zlog_info ("E-bit mismatch with LSA Headers");
  663.           ospf6_lsa_delete (his);
  664.           thread_add_event (master, seqnumber_mismatch, on, 0);
  665.           return;
  666.         }
  667.       mine = ospf6_lsdb_lookup (his->header->type, his->header->id,
  668.                                 his->header->adv_router, lsdb);
  669.       if (mine == NULL || ospf6_lsa_compare (his, mine) < 0)
  670.         {
  671.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  672.             zlog_info ("Add request-list: %s", his->name);
  673.           ospf6_lsdb_add (his, on->request_list);
  674.         }
  675.       else
  676.         ospf6_lsa_delete (his);
  677.     }
  678.   if (p != OSPF6_MESSAGE_END (oh))
  679.     {
  680.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  681.         zlog_info ("Trailing garbage ignored");
  682.     }
  683.   /* Set sequence number to Master's */
  684.   on->dbdesc_seqnum = ntohl (dbdesc->seqnum);
  685.   /* schedule send lsreq */
  686.   if (on->thread_send_lsreq == NULL)
  687.     on->thread_send_lsreq =
  688.       thread_add_event (master, ospf6_lsreq_send, on, 0);
  689.   THREAD_OFF (on->thread_send_dbdesc);
  690.   on->thread_send_dbdesc =
  691.     thread_add_event (master, ospf6_dbdesc_send_newone, on, 0);
  692.   /* save last received dbdesc */
  693.   memcpy (&on->dbdesc_last, dbdesc, sizeof (struct ospf6_dbdesc));
  694. }
  695. void
  696. ospf6_dbdesc_recv (struct in6_addr *src, struct in6_addr *dst,
  697.                    struct ospf6_interface *oi, struct ospf6_header *oh)
  698. {
  699.   struct ospf6_neighbor *on;
  700.   struct ospf6_dbdesc *dbdesc;
  701.   if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK)
  702.     return;
  703.   on = ospf6_neighbor_lookup (oh->router_id, oi);
  704.   if (on == NULL)
  705.     {
  706.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  707.         zlog_info ("Neighbor not found, ignore");
  708.       return;
  709.     }
  710.   dbdesc = (struct ospf6_dbdesc *)
  711.     ((caddr_t) oh + sizeof (struct ospf6_header));
  712.   /* Interface MTU check */
  713.   if (ntohs (dbdesc->ifmtu) != oi->ifmtu)
  714.     {
  715.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  716.         zlog_info ("I/F MTU mismatch");
  717.       return;
  718.     }
  719.   if (dbdesc->reserved1 || dbdesc->reserved2)
  720.     {
  721.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  722.         zlog_info ("Non-0 reserved field in %s's DbDesc, correct",
  723.                    on->name);
  724.       dbdesc->reserved1 = 0;
  725.       dbdesc->reserved2 = 0;
  726.     }
  727.   if (ntohl (oh->router_id) < ntohl (ospf6->router_id))
  728.     ospf6_dbdesc_recv_master (oh, on);
  729.   else if (ntohl (ospf6->router_id) < ntohl (oh->router_id))
  730.     ospf6_dbdesc_recv_slave (oh, on);
  731.   else
  732.     {
  733.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  734.         zlog_info ("Can't decide which is master, ignore");
  735.     }
  736. }
  737. void
  738. ospf6_lsreq_recv (struct in6_addr *src, struct in6_addr *dst,
  739.                   struct ospf6_interface *oi, struct ospf6_header *oh)
  740. {
  741.   struct ospf6_neighbor *on;
  742.   char *p;
  743.   struct ospf6_lsreq_entry *e;
  744.   struct ospf6_lsdb *lsdb = NULL;
  745.   struct ospf6_lsa *lsa;
  746.   if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK)
  747.     return;
  748.   on = ospf6_neighbor_lookup (oh->router_id, oi);
  749.   if (on == NULL)
  750.     {
  751.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  752.         zlog_info ("Neighbor not found, ignore");
  753.       return;
  754.     }
  755.   if (on->state != OSPF6_NEIGHBOR_EXCHANGE &&
  756.       on->state != OSPF6_NEIGHBOR_LOADING &&
  757.       on->state != OSPF6_NEIGHBOR_FULL)
  758.     {
  759.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  760.         zlog_info ("Neighbor state less than Exchange, ignore");
  761.       return;
  762.     }
  763.   /* Process each request */
  764.   for (p = (char *) ((caddr_t) oh + sizeof (struct ospf6_header));
  765.        p + sizeof (struct ospf6_lsreq_entry) <= OSPF6_MESSAGE_END (oh);
  766.        p += sizeof (struct ospf6_lsreq_entry))
  767.     {
  768.       e = (struct ospf6_lsreq_entry *) p;
  769.       switch (OSPF6_LSA_SCOPE (e->type))
  770.         {
  771.         case OSPF6_SCOPE_LINKLOCAL:
  772.           lsdb = on->ospf6_if->lsdb;
  773.           break;
  774.         case OSPF6_SCOPE_AREA:
  775.           lsdb = on->ospf6_if->area->lsdb;
  776.           break;
  777.         case OSPF6_SCOPE_AS:
  778.           lsdb = on->ospf6_if->area->ospf6->lsdb;
  779.           break;
  780.         default:
  781.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  782.             zlog_info ("Ignoring LSA of reserved scope");
  783.           continue;
  784.           break;
  785.         }
  786.       /* Find database copy */
  787.       lsa = ospf6_lsdb_lookup (e->type, e->id, e->adv_router, lsdb);
  788.       if (lsa == NULL)
  789.         {
  790.           char id[16], adv_router[16];
  791.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  792.             {
  793.               inet_ntop (AF_INET, &e->id, id, sizeof (id));
  794.               inet_ntop (AF_INET, &e->adv_router, adv_router,
  795.                      sizeof (adv_router));
  796.               zlog_info ("Can't find requested [%s Id:%s Adv:%s]",
  797.                          ospf6_lstype_name (e->type), id, adv_router);
  798.             }
  799.           thread_add_event (master, bad_lsreq, on, 0);
  800.           return;
  801.         }
  802.       ospf6_lsdb_add (ospf6_lsa_copy (lsa), on->lsupdate_list);
  803.     }
  804.   if (p != OSPF6_MESSAGE_END (oh))
  805.     {
  806.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  807.         zlog_info ("Trailing garbage ignored");
  808.     }
  809.   /* schedule send lsupdate */
  810.   THREAD_OFF (on->thread_send_lsupdate);
  811.   on->thread_send_lsupdate =
  812.     thread_add_event (master, ospf6_lsupdate_send_neighbor, on, 0);
  813. }
  814. void
  815. ospf6_lsupdate_recv (struct in6_addr *src, struct in6_addr *dst,
  816.                      struct ospf6_interface *oi, struct ospf6_header *oh)
  817. {
  818.   struct ospf6_neighbor *on;
  819.   struct ospf6_lsupdate *lsupdate;
  820.   unsigned long num;
  821.   char *p;
  822.   if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK)
  823.     return;
  824.   on = ospf6_neighbor_lookup (oh->router_id, oi);
  825.   if (on == NULL)
  826.     {
  827.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  828.         zlog_info ("Neighbor not found, ignore");
  829.       return;
  830.     }
  831.   if (on->state != OSPF6_NEIGHBOR_EXCHANGE &&
  832.       on->state != OSPF6_NEIGHBOR_LOADING &&
  833.       on->state != OSPF6_NEIGHBOR_FULL)
  834.     {
  835.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  836.         zlog_info ("Neighbor state less than Exchange, ignore");
  837.       return;
  838.     }
  839.   lsupdate = (struct ospf6_lsupdate *)
  840.     ((caddr_t) oh + sizeof (struct ospf6_header));
  841.   num = ntohl (lsupdate->lsa_number);
  842.   /* Process LSAs */
  843.   for (p = (char *) ((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate));
  844.        p < OSPF6_MESSAGE_END (oh) &&
  845.        p + OSPF6_LSA_SIZE (p) <= OSPF6_MESSAGE_END (oh);
  846.        p += OSPF6_LSA_SIZE (p))
  847.     {
  848.       if (num == 0)
  849.         break;
  850.       if (OSPF6_LSA_SIZE (p) < sizeof (struct ospf6_lsa_header))
  851.         {
  852.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  853.             zlog_info ("Malformed LSA length, quit processing");
  854.           break;
  855.         }
  856.       ospf6_receive_lsa (on, (struct ospf6_lsa_header *) p);
  857.       num--;
  858.     }
  859.   if (num != 0)
  860.     {
  861.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  862.         zlog_info ("Malformed LSA number or LSA length");
  863.     }
  864.   if (p != OSPF6_MESSAGE_END (oh))
  865.     {
  866.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  867.         zlog_info ("Trailing garbage ignored");
  868.     }
  869.   /* RFC2328 Section 10.9: When the neighbor responds to these requests
  870.      with the proper Link State Update packet(s), the Link state request
  871.      list is truncated and a new Link State Request packet is sent. */
  872.   /* send new Link State Request packet if this LS Update packet
  873.      can be recognized as a response to our previous LS Request */
  874.   if (! IN6_IS_ADDR_MULTICAST (dst) &&
  875.       (on->state == OSPF6_NEIGHBOR_EXCHANGE ||
  876.        on->state == OSPF6_NEIGHBOR_LOADING))
  877.     {
  878.       THREAD_OFF (on->thread_send_lsreq);
  879.       on->thread_send_lsreq =
  880.         thread_add_event (master, ospf6_lsreq_send, on, 0);
  881.     }
  882. }
  883. void
  884. ospf6_lsack_recv (struct in6_addr *src, struct in6_addr *dst,
  885.                   struct ospf6_interface *oi, struct ospf6_header *oh)
  886. {
  887.   struct ospf6_neighbor *on;
  888.   char *p;
  889.   struct ospf6_lsa *his, *mine;
  890.   struct ospf6_lsdb *lsdb = NULL;
  891.   assert (oh->type == OSPF6_MESSAGE_TYPE_LSACK);
  892.   if (ospf6_header_examin (src, dst, oi, oh) != MSG_OK)
  893.     return;
  894.   on = ospf6_neighbor_lookup (oh->router_id, oi);
  895.   if (on == NULL)
  896.     {
  897.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  898.         zlog_info ("Neighbor not found, ignore");
  899.       return;
  900.     }
  901.   if (on->state != OSPF6_NEIGHBOR_EXCHANGE &&
  902.       on->state != OSPF6_NEIGHBOR_LOADING &&
  903.       on->state != OSPF6_NEIGHBOR_FULL)
  904.     {
  905.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  906.         zlog_info ("Neighbor state less than Exchange, ignore");
  907.       return;
  908.     }
  909.   for (p = (char *) ((caddr_t) oh + sizeof (struct ospf6_header));
  910.        p + sizeof (struct ospf6_lsa_header) <= OSPF6_MESSAGE_END (oh);
  911.        p += sizeof (struct ospf6_lsa_header))
  912.     {
  913.       his = ospf6_lsa_create_headeronly ((struct ospf6_lsa_header *) p);
  914.       switch (OSPF6_LSA_SCOPE (his->header->type))
  915.         {
  916.         case OSPF6_SCOPE_LINKLOCAL:
  917.           lsdb = on->ospf6_if->lsdb;
  918.           break;
  919.         case OSPF6_SCOPE_AREA:
  920.           lsdb = on->ospf6_if->area->lsdb;
  921.           break;
  922.         case OSPF6_SCOPE_AS:
  923.           lsdb = on->ospf6_if->area->ospf6->lsdb;
  924.           break;
  925.         case OSPF6_SCOPE_RESERVED:
  926.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  927.             zlog_info ("Ignoring LSA of reserved scope");
  928.           ospf6_lsa_delete (his);
  929.           continue;
  930.           break;
  931.         }
  932.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  933.         zlog_info ("%s acknowledged by %s", his->name, on->name);
  934.       /* Find database copy */
  935.       mine = ospf6_lsdb_lookup (his->header->type, his->header->id,
  936.                                 his->header->adv_router, lsdb);
  937.       if (mine == NULL)
  938.         {
  939.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  940.             zlog_info ("No database copy");
  941.           ospf6_lsa_delete (his);
  942.           continue;
  943.         }
  944.       /* Check if the LSA is on his retrans-list */
  945.       mine = ospf6_lsdb_lookup (his->header->type, his->header->id,
  946.                                 his->header->adv_router, on->retrans_list);
  947.       if (mine == NULL)
  948.         {
  949.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  950.             zlog_info ("Not on %s's retrans-list", on->name);
  951.           ospf6_lsa_delete (his);
  952.           continue;
  953.         }
  954.       if (ospf6_lsa_compare (his, mine) != 0)
  955.         {
  956.           /* Log this questionable acknowledgement,
  957.              and examine the next one. */
  958.           if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  959.             zlog_info ("Questionable acknowledgement");
  960.           ospf6_lsa_delete (his);
  961.           continue;
  962.         }
  963.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  964.         zlog_info ("Acknowledged, remove from %s's retrans-list",
  965.                    on->name);
  966.       if (OSPF6_LSA_IS_MAXAGE (mine))
  967.         ospf6_maxage_remove (on->ospf6_if->area->ospf6);
  968.       ospf6_decrement_retrans_count (mine);
  969.       ospf6_lsdb_remove (mine, on->retrans_list);
  970.       ospf6_lsa_delete (his);
  971.     }
  972.   if (p != OSPF6_MESSAGE_END (oh))
  973.     {
  974.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  975.         zlog_info ("Trailing garbage ignored");
  976.     }
  977. }
  978. char *recvbuf = NULL;
  979. char *sendbuf = NULL;
  980. int iobuflen = 0;
  981. int
  982. ospf6_iobuf_size (int size)
  983. {
  984.   char *recvnew, *sendnew;
  985.   if (size <= iobuflen)
  986.     return iobuflen;
  987.   recvnew = XMALLOC (MTYPE_OSPF6_MESSAGE, size);
  988.   sendnew = XMALLOC (MTYPE_OSPF6_MESSAGE, size);
  989.   if (recvnew == NULL || sendnew == NULL)
  990.     {
  991.       if (recvnew)
  992.         XFREE (MTYPE_OSPF6_MESSAGE, recvnew);
  993.       if (sendnew)
  994.         XFREE (MTYPE_OSPF6_MESSAGE, sendnew);
  995.       zlog_info ("Could not allocate I/O buffer of size %d.", size);
  996.       return iobuflen;
  997.     }
  998.   if (recvbuf)
  999.     XFREE (MTYPE_OSPF6_MESSAGE, recvbuf);
  1000.   if (sendbuf)
  1001.     XFREE (MTYPE_OSPF6_MESSAGE, sendbuf);
  1002.   recvbuf = recvnew;
  1003.   sendbuf = sendnew;
  1004.   iobuflen = size;
  1005.   return iobuflen;
  1006. }
  1007. int
  1008. ospf6_receive (struct thread *thread)
  1009. {
  1010.   int sockfd, len;
  1011.   char srcname[64], dstname[64];
  1012.   struct in6_addr src, dst;
  1013.   unsigned int ifindex;
  1014.   struct iovec iovector[2];
  1015.   struct ospf6_interface *oi;
  1016.   struct ospf6_header *oh;
  1017.   /* add next read thread */
  1018.   sockfd = THREAD_FD (thread);
  1019.   thread_add_read (master, ospf6_receive, NULL, sockfd);
  1020.   /* initialize */
  1021.   memset (recvbuf, 0, iobuflen);
  1022.   iovector[0].iov_base = recvbuf;
  1023.   iovector[0].iov_len = iobuflen;
  1024.   iovector[1].iov_base = NULL;
  1025.   iovector[1].iov_len = 0;
  1026.   /* receive message */
  1027.   len = ospf6_recvmsg (&src, &dst, &ifindex, iovector);
  1028.   if (len > iobuflen)
  1029.     {
  1030.       zlog_err ("Excess message read");
  1031.       return 0;
  1032.     }
  1033.   else if (len < sizeof (struct ospf6_header))
  1034.     {
  1035.       zlog_err ("Deficient message read");
  1036.       return 0;
  1037.     }
  1038.   oi = ospf6_interface_lookup_by_ifindex (ifindex);
  1039.   if (oi == NULL || oi->area == NULL)
  1040.     {
  1041.       zlog_info ("Message received on disabled interface");
  1042.       return 0;
  1043.     }
  1044.   oh = (struct ospf6_header *) recvbuf;
  1045.   /* Log */
  1046.   if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  1047.     {
  1048.       inet_ntop (AF_INET6, &src, srcname, sizeof (srcname));
  1049.       inet_ntop (AF_INET6, &dst, dstname, sizeof (dstname));
  1050.       zlog_info ("%s received on %s",
  1051.                  OSPF6_MESSAGE_TYPE_NAME (oh->type), oi->interface->name);
  1052.       zlog_info ("    src: %s", srcname);
  1053.       zlog_info ("    dst: %s", dstname);
  1054.       if (len != ntohs (oh->length))
  1055.         zlog_info ("Message length does not match actually received: %d", len);
  1056.       switch (oh->type)
  1057.         {
  1058.           case OSPF6_MESSAGE_TYPE_HELLO:
  1059.             ospf6_hello_print (oh);
  1060.             break;
  1061.           case OSPF6_MESSAGE_TYPE_DBDESC:
  1062.             ospf6_dbdesc_print (oh);
  1063.             break;
  1064.           case OSPF6_MESSAGE_TYPE_LSREQ:
  1065.             ospf6_lsreq_print (oh);
  1066.             break;
  1067.           case OSPF6_MESSAGE_TYPE_LSUPDATE:
  1068.             ospf6_lsupdate_print (oh);
  1069.             break;
  1070.           case OSPF6_MESSAGE_TYPE_LSACK:
  1071.             ospf6_lsack_print (oh);
  1072.             break;
  1073.           default:
  1074.             zlog_info ("Unknown message");
  1075.             break;
  1076.         }
  1077.     }
  1078.   if (CHECK_FLAG (oi->flag, OSPF6_INTERFACE_PASSIVE))
  1079.     {
  1080.       if (IS_OSPF6_DEBUG_MESSAGE (oh->type, RECV))
  1081.         zlog_info ("Ignore message on passive interface %s",
  1082.                    oi->interface->name);
  1083.       return 0;
  1084.     }
  1085.   switch (oh->type)
  1086.     {
  1087.       case OSPF6_MESSAGE_TYPE_HELLO:
  1088.         ospf6_hello_recv (&src, &dst, oi, oh);
  1089.         break;
  1090.       case OSPF6_MESSAGE_TYPE_DBDESC:
  1091.         ospf6_dbdesc_recv (&src, &dst, oi, oh);
  1092.         break;
  1093.       case OSPF6_MESSAGE_TYPE_LSREQ:
  1094.         ospf6_lsreq_recv (&src, &dst, oi, oh);
  1095.         break;
  1096.       case OSPF6_MESSAGE_TYPE_LSUPDATE:
  1097.         ospf6_lsupdate_recv (&src, &dst, oi, oh);
  1098.         break;
  1099.       case OSPF6_MESSAGE_TYPE_LSACK:
  1100.         ospf6_lsack_recv (&src, &dst, oi, oh);
  1101.         break;
  1102.       default:
  1103.         if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
  1104.           zlog_info ("Unknown message");
  1105.         break;
  1106.     }
  1107.   return 0;
  1108. }
  1109. void
  1110. ospf6_send (struct in6_addr *src, struct in6_addr *dst,
  1111.             struct ospf6_interface *oi, struct ospf6_header *oh)
  1112. {
  1113.   int len;
  1114.   char srcname[64], dstname[64];
  1115.   struct iovec iovector[2];
  1116.   /* initialize */
  1117.   iovector[0].iov_base = (caddr_t) oh;
  1118.   iovector[0].iov_len = ntohs (oh->length);
  1119.   iovector[1].iov_base = NULL;
  1120.   iovector[1].iov_len = 0;
  1121.   /* fill OSPF header */
  1122.   oh->version = OSPFV3_VERSION;
  1123.   /* message type must be set before */
  1124.   /* message length must be set before */
  1125.   oh->router_id = oi->area->ospf6->router_id;
  1126.   oh->area_id = oi->area->area_id;
  1127.   /* checksum is calculated by kernel */
  1128.   oh->instance_id = oi->instance_id;
  1129.   oh->reserved = 0;
  1130.   /* Log */
  1131.   if (IS_OSPF6_DEBUG_MESSAGE (oh->type, SEND))
  1132.     {
  1133.       inet_ntop (AF_INET6, dst, dstname, sizeof (dstname));
  1134.       if (src)
  1135.         inet_ntop (AF_INET6, src, srcname, sizeof (srcname));
  1136.       else
  1137.         memset (srcname, 0, sizeof (srcname));
  1138.       zlog_info ("%s send on %s",
  1139.                  OSPF6_MESSAGE_TYPE_NAME (oh->type), oi->interface->name);
  1140.       zlog_info ("    src: %s", srcname);
  1141.       zlog_info ("    dst: %s", dstname);
  1142.       switch (oh->type)
  1143.         {
  1144.           case OSPF6_MESSAGE_TYPE_HELLO:
  1145.             ospf6_hello_print (oh);
  1146.             break;
  1147.           case OSPF6_MESSAGE_TYPE_DBDESC:
  1148.             ospf6_dbdesc_print (oh);
  1149.             break;
  1150.           case OSPF6_MESSAGE_TYPE_LSREQ:
  1151.             ospf6_lsreq_print (oh);
  1152.             break;
  1153.           case OSPF6_MESSAGE_TYPE_LSUPDATE:
  1154.             ospf6_lsupdate_print (oh);
  1155.             break;
  1156.           case OSPF6_MESSAGE_TYPE_LSACK:
  1157.             ospf6_lsack_print (oh);
  1158.             break;
  1159.           default:
  1160.             zlog_info ("Unknown message");
  1161.             assert (0);
  1162.             break;
  1163.         }
  1164.     }
  1165.   /* send message */
  1166.   len = ospf6_sendmsg (src, dst, &oi->interface->ifindex, iovector);
  1167.   if (len != ntohs (oh->length))
  1168.     zlog_err ("Could not send entire message");
  1169. }
  1170. int
  1171. ospf6_hello_send (struct thread *thread)
  1172. {
  1173.   struct ospf6_interface *oi;
  1174.   struct ospf6_header *oh;
  1175.   struct ospf6_hello *hello;
  1176.   char *p;
  1177.   listnode node;
  1178.   struct ospf6_neighbor *on;
  1179.   oi = (struct ospf6_interface *) THREAD_ARG (thread);
  1180.   oi->thread_send_hello = (struct thread *) NULL;
  1181.   if (oi->state <= OSPF6_INTERFACE_DOWN)
  1182.     {
  1183.       if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_HELLO, SEND))
  1184.         zlog_info ("Unable to send Hello on down interface %s",
  1185.                    oi->interface->name);
  1186.       return 0;
  1187.     }
  1188.   /* set next thread */
  1189.   oi->thread_send_hello = thread_add_timer (master, ospf6_hello_send,
  1190.                                             oi, oi->hello_interval);
  1191.   memset (sendbuf, 0, iobuflen);
  1192.   oh = (struct ospf6_header *) sendbuf;
  1193.   hello = (struct ospf6_hello *)((caddr_t) oh + sizeof (struct ospf6_header));
  1194.   hello->interface_id = htonl (oi->interface->ifindex);
  1195.   hello->priority = oi->priority;
  1196.   hello->options[0] = oi->area->options[0];
  1197.   hello->options[1] = oi->area->options[1];
  1198.   hello->options[2] = oi->area->options[2];
  1199.   hello->hello_interval = htons (oi->hello_interval);
  1200.   hello->dead_interval = htons (oi->dead_interval);
  1201.   hello->drouter = oi->drouter;
  1202.   hello->bdrouter = oi->bdrouter;
  1203.   p = (char *)((caddr_t) hello + sizeof (struct ospf6_hello));
  1204.   for (node = listhead (oi->neighbor_list); node; nextnode (node))
  1205.     {
  1206.       on = (struct ospf6_neighbor *) getdata (node);
  1207.       if (on->state < OSPF6_NEIGHBOR_INIT)
  1208.         continue;
  1209.       if (p - sendbuf + sizeof (u_int32_t) > oi->ifmtu)
  1210.         {
  1211.           if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_HELLO, SEND))
  1212.             zlog_info ("sending Hello message: exceeds I/F MTU");
  1213.           break;
  1214.         }
  1215.       memcpy (p, &on->router_id, sizeof (u_int32_t));
  1216.       p += sizeof (u_int32_t);
  1217.     }
  1218.   oh->type = OSPF6_MESSAGE_TYPE_HELLO;
  1219.   oh->length = htons (p - sendbuf);
  1220.   ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh);
  1221.   return 0;
  1222. }
  1223. int
  1224. ospf6_dbdesc_send (struct thread *thread)
  1225. {
  1226.   struct ospf6_neighbor *on;
  1227.   struct ospf6_header *oh;
  1228.   struct ospf6_dbdesc *dbdesc;
  1229.   char *p;
  1230.   struct ospf6_lsa *lsa;
  1231.   on = (struct ospf6_neighbor *) THREAD_ARG (thread);
  1232.   on->thread_send_dbdesc = (struct thread *) NULL;
  1233.   if (on->state < OSPF6_NEIGHBOR_EXSTART)
  1234.     {
  1235.       if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_DBDESC, SEND))
  1236.         zlog_info ("Quit to send DbDesc to neighbor %s state %s",
  1237.                    on->name, ospf6_neighbor_state_str[on->state]);
  1238.       return 0;
  1239.     }
  1240.   /* set next thread if master */
  1241.   if (CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MSBIT))
  1242.     on->thread_send_dbdesc =
  1243.       thread_add_timer (master, ospf6_dbdesc_send, on,
  1244.                         on->ospf6_if->rxmt_interval);
  1245.   memset (sendbuf, 0, iobuflen);
  1246.   oh = (struct ospf6_header *) sendbuf;
  1247.   dbdesc = (struct ospf6_dbdesc *)((caddr_t) oh +
  1248.                                    sizeof (struct ospf6_header));
  1249.   /* if this is initial one, initialize sequence number for DbDesc */
  1250.   if (CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_IBIT))
  1251.     {
  1252.       struct timeval tv;
  1253.       if (gettimeofday (&tv, (struct timezone *) NULL) < 0)
  1254.         tv.tv_sec = 1;
  1255.       on->dbdesc_seqnum = tv.tv_sec;
  1256.     }
  1257.   dbdesc->options[0] = on->ospf6_if->area->options[0];
  1258.   dbdesc->options[1] = on->ospf6_if->area->options[1];
  1259.   dbdesc->options[2] = on->ospf6_if->area->options[2];
  1260.   dbdesc->ifmtu = htons (on->ospf6_if->ifmtu);
  1261.   dbdesc->bits = on->dbdesc_bits;
  1262.   dbdesc->seqnum = htonl (on->dbdesc_seqnum);
  1263.   /* if this is not initial one, set LSA headers in dbdesc */
  1264.   p = (char *)((caddr_t) dbdesc + sizeof (struct ospf6_dbdesc));
  1265.   if (! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_IBIT))
  1266.     {
  1267.       for (lsa = ospf6_lsdb_head (on->dbdesc_list); lsa;
  1268.            lsa = ospf6_lsdb_next (lsa))
  1269.         {
  1270.           ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay);
  1271.           /* MTU check */
  1272.           if (p - sendbuf + sizeof (struct ospf6_lsa_header) >
  1273.               on->ospf6_if->ifmtu)
  1274.             {
  1275.               ospf6_lsa_unlock (lsa);
  1276.               break;
  1277.             }
  1278.           memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header));
  1279.           p += sizeof (struct ospf6_lsa_header);
  1280.         }
  1281.     }
  1282.   oh->type = OSPF6_MESSAGE_TYPE_DBDESC;
  1283.   oh->length = htons (p - sendbuf);
  1284.   ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr,
  1285.               on->ospf6_if, oh);
  1286.   return 0;
  1287. }
  1288. int
  1289. ospf6_dbdesc_send_newone (struct thread *thread)
  1290. {
  1291.   struct ospf6_neighbor *on;
  1292.   struct ospf6_lsa *lsa;
  1293.   unsigned int size = 0;
  1294.   on = (struct ospf6_neighbor *) THREAD_ARG (thread);
  1295.   ospf6_lsdb_remove_all (on->dbdesc_list);
  1296.   /* move LSAs from summary_list to dbdesc_list (within neighbor structure)
  1297.      so that ospf6_send_dbdesc () can send those LSAs */
  1298.   size = sizeof (struct ospf6_lsa_header) + sizeof (struct ospf6_dbdesc);
  1299.   for (lsa = ospf6_lsdb_head (on->summary_list); lsa;
  1300.        lsa = ospf6_lsdb_next (lsa))
  1301.     {
  1302.       if (size + sizeof (struct ospf6_lsa_header) > on->ospf6_if->ifmtu)
  1303.         {
  1304.           ospf6_lsa_unlock (lsa);
  1305.           break;
  1306.         }
  1307.       ospf6_lsdb_add (ospf6_lsa_copy (lsa), on->dbdesc_list);
  1308.       ospf6_lsdb_remove (lsa, on->summary_list);
  1309.       size += sizeof (struct ospf6_lsa_header);
  1310.     }
  1311.   if (on->summary_list->count == 0)
  1312.     UNSET_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MBIT);
  1313.   /* If slave, More bit check must be done here */
  1314.   if (! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MSBIT) && /* Slave */
  1315.       ! CHECK_FLAG (on->dbdesc_last.bits, OSPF6_DBDESC_MBIT) &&
  1316.       ! CHECK_FLAG (on->dbdesc_bits, OSPF6_DBDESC_MBIT))
  1317.     thread_add_event (master, exchange_done, on, 0);
  1318.   thread_execute (master, ospf6_dbdesc_send, on, 0);
  1319.   return 0;
  1320. }
  1321. int
  1322. ospf6_lsreq_send (struct thread *thread)
  1323. {
  1324.   struct ospf6_neighbor *on;
  1325.   struct ospf6_header *oh;
  1326.   struct ospf6_lsreq_entry *e;
  1327.   char *p;
  1328.   struct ospf6_lsa *lsa;
  1329.   on = (struct ospf6_neighbor *) THREAD_ARG (thread);
  1330.   on->thread_send_lsreq = (struct thread *) NULL;
  1331.   /* LSReq will be sent only in ExStart or Loading */
  1332.   if (on->state != OSPF6_NEIGHBOR_EXCHANGE &&
  1333.       on->state != OSPF6_NEIGHBOR_LOADING)
  1334.     {
  1335.       if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSREQ, SEND))
  1336.         zlog_info ("Quit to send LSReq to neighbor %s state %s",
  1337.                    on->name, ospf6_neighbor_state_str[on->state]);
  1338.       return 0;
  1339.     }
  1340.   /* schedule loading_done if request list is empty */
  1341.   if (on->request_list->count == 0)
  1342.     {
  1343.       thread_add_event (master, loading_done, on, 0);
  1344.       return 0;
  1345.     }
  1346.   /* set next thread */
  1347.   on->thread_send_lsreq =
  1348.     thread_add_timer (master, ospf6_lsreq_send, on,
  1349.                       on->ospf6_if->rxmt_interval);
  1350.   memset (sendbuf, 0, iobuflen);
  1351.   oh = (struct ospf6_header *) sendbuf;
  1352.   /* set Request entries in lsreq */
  1353.   p = (char *)((caddr_t) oh + sizeof (struct ospf6_header));
  1354.   for (lsa = ospf6_lsdb_head (on->request_list); lsa;
  1355.        lsa = ospf6_lsdb_next (lsa))
  1356.     {
  1357.       /* MTU check */
  1358.       if (p - sendbuf + sizeof (struct ospf6_lsreq_entry) > on->ospf6_if->ifmtu)
  1359.         {
  1360.           ospf6_lsa_unlock (lsa);
  1361.           break;
  1362.         }
  1363.       e = (struct ospf6_lsreq_entry *) p;
  1364.       e->type = lsa->header->type;
  1365.       e->id = lsa->header->id;
  1366.       e->adv_router = lsa->header->adv_router;
  1367.       p += sizeof (struct ospf6_lsreq_entry);
  1368.     }
  1369.   oh->type = OSPF6_MESSAGE_TYPE_LSREQ;
  1370.   oh->length = htons (p - sendbuf);
  1371.   ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr,
  1372.               on->ospf6_if, oh);
  1373.   return 0;
  1374. }
  1375. int
  1376. ospf6_lsupdate_send_neighbor (struct thread *thread)
  1377. {
  1378.   struct ospf6_neighbor *on;
  1379.   struct ospf6_header *oh;
  1380.   struct ospf6_lsupdate *lsupdate;
  1381.   char *p;
  1382.   int num;
  1383.   struct ospf6_lsa *lsa;
  1384.   on = (struct ospf6_neighbor *) THREAD_ARG (thread);
  1385.   on->thread_send_lsupdate = (struct thread *) NULL;
  1386.   if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
  1387.     zlog_info ("LSUpdate to neighbor %s", on->name);
  1388.   if (on->state < OSPF6_NEIGHBOR_EXCHANGE)
  1389.     {
  1390.       if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
  1391.         zlog_info ("Quit to send (neighbor state %s)",
  1392.                    ospf6_neighbor_state_str[on->state]);
  1393.       return 0;
  1394.     }
  1395.   /* if we have nothing to send, return */
  1396.   if (on->lsupdate_list->count == 0 &&
  1397.       on->retrans_list->count == 0)
  1398.     {
  1399.       if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
  1400.         zlog_info ("Quit to send (nothing to send)");
  1401.       return 0;
  1402.     }
  1403.   memset (sendbuf, 0, iobuflen);
  1404.   oh = (struct ospf6_header *) sendbuf;
  1405.   lsupdate = (struct ospf6_lsupdate *)
  1406.     ((caddr_t) oh + sizeof (struct ospf6_header));
  1407.   p = (char *)((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate));
  1408.   num = 0;
  1409.   /* lsupdate_list lists those LSA which doesn't need to be
  1410.      retransmitted. remove those from the list */
  1411.   for (lsa = ospf6_lsdb_head (on->lsupdate_list); lsa;
  1412.        lsa = ospf6_lsdb_next (lsa))
  1413.     {
  1414.       /* MTU check */
  1415.       if (p - sendbuf + OSPF6_LSA_SIZE (lsa->header) > on->ospf6_if->ifmtu)
  1416.         {
  1417.           ospf6_lsa_unlock (lsa);
  1418.           break;
  1419.         }
  1420.       ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay);
  1421.       memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header));
  1422.       p += OSPF6_LSA_SIZE (lsa->header);
  1423.       num++;
  1424.       assert (lsa->lock == 2);
  1425.       ospf6_lsdb_remove (lsa, on->lsupdate_list);
  1426.     }
  1427.   for (lsa = ospf6_lsdb_head (on->retrans_list); lsa;
  1428.        lsa = ospf6_lsdb_next (lsa))
  1429.     {
  1430.       /* MTU check */
  1431.       if (p - sendbuf + OSPF6_LSA_SIZE (lsa->header) > on->ospf6_if->ifmtu)
  1432.         {
  1433.           ospf6_lsa_unlock (lsa);
  1434.           break;
  1435.         }
  1436.       ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay);
  1437.       memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header));
  1438.       p += OSPF6_LSA_SIZE (lsa->header);
  1439.       num++;
  1440.     }
  1441.   lsupdate->lsa_number = htonl (num);
  1442.   oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
  1443.   oh->length = htons (p - sendbuf);
  1444.   ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr,
  1445.               on->ospf6_if, oh);
  1446.   if (on->lsupdate_list->count != 0 ||
  1447.       on->retrans_list->count != 0)
  1448.     {
  1449.       if (on->lsupdate_list->count != 0)
  1450.         on->thread_send_lsupdate =
  1451.           thread_add_event (master, ospf6_lsupdate_send_neighbor, on, 0);
  1452.       else
  1453.         on->thread_send_lsupdate =
  1454.           thread_add_timer (master, ospf6_lsupdate_send_neighbor, on,
  1455.                             on->ospf6_if->rxmt_interval);
  1456.     }
  1457.   return 0;
  1458. }
  1459. int
  1460. ospf6_lsupdate_send_interface (struct thread *thread)
  1461. {
  1462.   struct ospf6_interface *oi;
  1463.   struct ospf6_header *oh;
  1464.   struct ospf6_lsupdate *lsupdate;
  1465.   char *p;
  1466.   int num;
  1467.   struct ospf6_lsa *lsa;
  1468.   oi = (struct ospf6_interface *) THREAD_ARG (thread);
  1469.   oi->thread_send_lsupdate = (struct thread *) NULL;
  1470.   if (oi->state <= OSPF6_INTERFACE_WAITING)
  1471.     {
  1472.       if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSUPDATE, SEND))
  1473.         zlog_info ("Quit to send LSUpdate to interface %s state %s",
  1474.                    oi->interface->name, ospf6_interface_state_str[oi->state]);
  1475.       return 0;
  1476.     }
  1477.   /* if we have nothing to send, return */
  1478.   if (oi->lsupdate_list->count == 0)
  1479.     return 0;
  1480.   memset (sendbuf, 0, iobuflen);
  1481.   oh = (struct ospf6_header *) sendbuf;
  1482.   lsupdate = (struct ospf6_lsupdate *)((caddr_t) oh +
  1483.                                        sizeof (struct ospf6_header));
  1484.   p = (char *)((caddr_t) lsupdate + sizeof (struct ospf6_lsupdate));
  1485.   num = 0;
  1486.   for (lsa = ospf6_lsdb_head (oi->lsupdate_list); lsa;
  1487.        lsa = ospf6_lsdb_next (lsa))
  1488.     {
  1489.       /* MTU check */
  1490.       if (p - sendbuf + OSPF6_LSA_SIZE (lsa->header) > oi->ifmtu)
  1491.         {
  1492.           ospf6_lsa_unlock (lsa);
  1493.           break;
  1494.         }
  1495.       ospf6_lsa_age_update_to_send (lsa, oi->transdelay);
  1496.       memcpy (p, lsa->header, OSPF6_LSA_SIZE (lsa->header));
  1497.       p += OSPF6_LSA_SIZE (lsa->header);
  1498.       num++;
  1499.       assert (lsa->lock == 2);
  1500.       ospf6_lsdb_remove (lsa, oi->lsupdate_list);
  1501.     }
  1502.   lsupdate->lsa_number = htonl (num);
  1503.   oh->type = OSPF6_MESSAGE_TYPE_LSUPDATE;
  1504.   oh->length = htons (p - sendbuf);
  1505.   if (oi->state == OSPF6_INTERFACE_DR ||
  1506.       oi->state == OSPF6_INTERFACE_BDR)
  1507.     ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh);
  1508.   else
  1509.     ospf6_send (oi->linklocal_addr, &alldrouters6, oi, oh);
  1510.   if (oi->lsupdate_list->count > 0)
  1511.     {
  1512.       oi->thread_send_lsupdate =
  1513.         thread_add_event (master, ospf6_lsupdate_send_interface, oi, 0);
  1514.     }
  1515.   return 0;
  1516. }
  1517. int
  1518. ospf6_lsack_send_neighbor (struct thread *thread)
  1519. {
  1520.   struct ospf6_neighbor *on;
  1521.   struct ospf6_header *oh;
  1522.   char *p;
  1523.   struct ospf6_lsa *lsa;
  1524.   on = (struct ospf6_neighbor *) THREAD_ARG (thread);
  1525.   on->thread_send_lsack = (struct thread *) NULL;
  1526.   if (on->state < OSPF6_NEIGHBOR_EXCHANGE)
  1527.     {
  1528.       if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSACK, SEND))
  1529.         zlog_info ("Quit to send LSAck to neighbor %s state %s",
  1530.                    on->name, ospf6_neighbor_state_str[on->state]);
  1531.       return 0;
  1532.     }
  1533.   /* if we have nothing to send, return */
  1534.   if (on->lsack_list->count == 0)
  1535.     return 0;
  1536.   memset (sendbuf, 0, iobuflen);
  1537.   oh = (struct ospf6_header *) sendbuf;
  1538.   p = (char *)((caddr_t) oh + sizeof (struct ospf6_header));
  1539.   for (lsa = ospf6_lsdb_head (on->lsack_list); lsa;
  1540.        lsa = ospf6_lsdb_next (lsa))
  1541.     {
  1542.       /* MTU check */
  1543.       if (p - sendbuf + sizeof (struct ospf6_lsa_header) > on->ospf6_if->ifmtu)
  1544.         {
  1545.           /* if we run out of packet size/space here,
  1546.              better to try again soon. */
  1547.           THREAD_OFF (on->thread_send_lsack);
  1548.           on->thread_send_lsack =
  1549.             thread_add_event (master, ospf6_lsack_send_neighbor, on, 0);
  1550.           ospf6_lsa_unlock (lsa);
  1551.           break;
  1552.         }
  1553.       ospf6_lsa_age_update_to_send (lsa, on->ospf6_if->transdelay);
  1554.       memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header));
  1555.       p += sizeof (struct ospf6_lsa_header);
  1556.       assert (lsa->lock == 2);
  1557.       ospf6_lsdb_remove (lsa, on->lsack_list);
  1558.     }
  1559.   oh->type = OSPF6_MESSAGE_TYPE_LSACK;
  1560.   oh->length = htons (p - sendbuf);
  1561.   ospf6_send (on->ospf6_if->linklocal_addr, &on->linklocal_addr,
  1562.               on->ospf6_if, oh);
  1563.   return 0;
  1564. }
  1565. int
  1566. ospf6_lsack_send_interface (struct thread *thread)
  1567. {
  1568.   struct ospf6_interface *oi;
  1569.   struct ospf6_header *oh;
  1570.   char *p;
  1571.   struct ospf6_lsa *lsa;
  1572.   oi = (struct ospf6_interface *) THREAD_ARG (thread);
  1573.   oi->thread_send_lsack = (struct thread *) NULL;
  1574.   if (oi->state <= OSPF6_INTERFACE_WAITING)
  1575.     {
  1576.       if (IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_LSACK, SEND))
  1577.         zlog_info ("Quit to send LSAck to interface %s state %s",
  1578.                    oi->interface->name, ospf6_interface_state_str[oi->state]);
  1579.       return 0;
  1580.     }
  1581.   /* if we have nothing to send, return */
  1582.   if (oi->lsack_list->count == 0)
  1583.     return 0;
  1584.   memset (sendbuf, 0, iobuflen);
  1585.   oh = (struct ospf6_header *) sendbuf;
  1586.   p = (char *)((caddr_t) oh + sizeof (struct ospf6_header));
  1587.   for (lsa = ospf6_lsdb_head (oi->lsack_list); lsa;
  1588.        lsa = ospf6_lsdb_next (lsa))
  1589.     {
  1590.       /* MTU check */
  1591.       if (p - sendbuf + sizeof (struct ospf6_lsa_header) > oi->ifmtu)
  1592.         {
  1593.           /* if we run out of packet size/space here,
  1594.              better to try again soon. */
  1595.           THREAD_OFF (oi->thread_send_lsack);
  1596.           oi->thread_send_lsack =
  1597.             thread_add_event (master, ospf6_lsack_send_interface, oi, 0);
  1598.           ospf6_lsa_unlock (lsa);
  1599.           break;
  1600.         }
  1601.       ospf6_lsa_age_update_to_send (lsa, oi->transdelay);
  1602.       memcpy (p, lsa->header, sizeof (struct ospf6_lsa_header));
  1603.       p += sizeof (struct ospf6_lsa_header);
  1604.       assert (lsa->lock == 2);
  1605.       ospf6_lsdb_remove (lsa, oi->lsack_list);
  1606.     }
  1607.   oh->type = OSPF6_MESSAGE_TYPE_LSACK;
  1608.   oh->length = htons (p - sendbuf);
  1609.   if (oi->state == OSPF6_INTERFACE_DR ||
  1610.       oi->state == OSPF6_INTERFACE_BDR)
  1611.     ospf6_send (oi->linklocal_addr, &allspfrouters6, oi, oh);
  1612.   else
  1613.     ospf6_send (oi->linklocal_addr, &alldrouters6, oi, oh);
  1614.   if (oi->thread_send_lsack == NULL && oi->lsack_list->count > 0)
  1615.     {
  1616.       oi->thread_send_lsack =
  1617.         thread_add_event (master, ospf6_lsack_send_interface, oi, 0);
  1618.     }
  1619.   return 0;
  1620. }
  1621. /* Commands */
  1622. DEFUN (debug_ospf6_message,
  1623.        debug_ospf6_message_cmd,
  1624.        "debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all)",
  1625.        DEBUG_STR
  1626.        OSPF6_STR
  1627.        "Debug OSPFv3 messagen"
  1628.        "Debug Unknown messagen"
  1629.        "Debug Hello messagen"
  1630.        "Debug Database Description messagen"
  1631.        "Debug Link State Request messagen"
  1632.        "Debug Link State Update messagen"
  1633.        "Debug Link State Acknowledgement messagen"
  1634.        "Debug All messagen"
  1635.        )
  1636. {
  1637.   unsigned char level = 0;
  1638.   int type = 0;
  1639.   int i;
  1640.   assert (argc > 0);
  1641.   /* check type */
  1642.   if (! strncmp (argv[0], "u", 1))
  1643.     type = OSPF6_MESSAGE_TYPE_UNKNOWN;
  1644.   else if (! strncmp (argv[0], "h", 1))
  1645.     type = OSPF6_MESSAGE_TYPE_HELLO;
  1646.   else if (! strncmp (argv[0], "d", 1))
  1647.     type = OSPF6_MESSAGE_TYPE_DBDESC;
  1648.   else if (! strncmp (argv[0], "lsr", 3))
  1649.     type = OSPF6_MESSAGE_TYPE_LSREQ;
  1650.   else if (! strncmp (argv[0], "lsu", 3))
  1651.     type = OSPF6_MESSAGE_TYPE_LSUPDATE;
  1652.   else if (! strncmp (argv[0], "lsa", 3))
  1653.     type = OSPF6_MESSAGE_TYPE_LSACK;
  1654.   else if (! strncmp (argv[0], "a", 1))
  1655.     type = OSPF6_MESSAGE_TYPE_ALL;
  1656.   if (argc == 1)
  1657.     level = OSPF6_DEBUG_MESSAGE_SEND | OSPF6_DEBUG_MESSAGE_RECV;
  1658.   else if (! strncmp (argv[1], "s", 1))
  1659.     level = OSPF6_DEBUG_MESSAGE_SEND;
  1660.   else if (! strncmp (argv[1], "r", 1))
  1661.     level = OSPF6_DEBUG_MESSAGE_RECV;
  1662.   if (type == OSPF6_MESSAGE_TYPE_ALL)
  1663.     {
  1664.       for (i = 0; i < 6; i++)
  1665.         OSPF6_DEBUG_MESSAGE_ON (i, level);
  1666.     }
  1667.   else
  1668.     OSPF6_DEBUG_MESSAGE_ON (type, level);
  1669.   return CMD_SUCCESS;
  1670. }
  1671. ALIAS (debug_ospf6_message,
  1672.        debug_ospf6_message_sendrecv_cmd,
  1673.        "debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all) (send|recv)",
  1674.        DEBUG_STR
  1675.        OSPF6_STR
  1676.        "Debug OSPFv3 messagen"
  1677.        "Debug Unknown messagen"
  1678.        "Debug Hello messagen"
  1679.        "Debug Database Description messagen"
  1680.        "Debug Link State Request messagen"
  1681.        "Debug Link State Update messagen"
  1682.        "Debug Link State Acknowledgement messagen"
  1683.        "Debug All messagen"
  1684.        "Debug only sending messagen"
  1685.        "Debug only receiving messagen"
  1686.        );
  1687. DEFUN (no_debug_ospf6_message,
  1688.        no_debug_ospf6_message_cmd,
  1689.        "no debug ospf6 message (unknown|hello|dbdesc|lsreq|lsupdate|lsack|all)",
  1690.        NO_STR
  1691.        DEBUG_STR
  1692.        OSPF6_STR
  1693.        "Debug OSPFv3 messagen"
  1694.        "Debug Unknown messagen"
  1695.        "Debug Hello messagen"
  1696.        "Debug Database Description messagen"
  1697.        "Debug Link State Request messagen"
  1698.        "Debug Link State Update messagen"
  1699.        "Debug Link State Acknowledgement messagen"
  1700.        "Debug All messagen"
  1701.        )
  1702. {
  1703.   unsigned char level = 0;
  1704.   int type = 0;
  1705.   int i;
  1706.   assert (argc > 0);
  1707.   /* check type */
  1708.   if (! strncmp (argv[0], "u", 1))
  1709.     type = OSPF6_MESSAGE_TYPE_UNKNOWN;
  1710.   else if (! strncmp (argv[0], "h", 1))
  1711.     type = OSPF6_MESSAGE_TYPE_HELLO;
  1712.   else if (! strncmp (argv[0], "d", 1))
  1713.     type = OSPF6_MESSAGE_TYPE_DBDESC;
  1714.   else if (! strncmp (argv[0], "lsr", 3))
  1715.     type = OSPF6_MESSAGE_TYPE_LSREQ;
  1716.   else if (! strncmp (argv[0], "lsu", 3))
  1717.     type = OSPF6_MESSAGE_TYPE_LSUPDATE;
  1718.   else if (! strncmp (argv[0], "lsa", 3))
  1719.     type = OSPF6_MESSAGE_TYPE_LSACK;
  1720.   else if (! strncmp (argv[0], "a", 1))
  1721.     type = OSPF6_MESSAGE_TYPE_ALL;
  1722.   if (argc == 1)
  1723.     level = OSPF6_DEBUG_MESSAGE_SEND | OSPF6_DEBUG_MESSAGE_RECV;
  1724.   else if (! strncmp (argv[1], "s", 1))
  1725.     level = OSPF6_DEBUG_MESSAGE_SEND;
  1726.   else if (! strncmp (argv[1], "r", 1))
  1727.     level = OSPF6_DEBUG_MESSAGE_RECV;
  1728.   if (type == OSPF6_MESSAGE_TYPE_ALL)
  1729.     {
  1730.       for (i = 0; i < 6; i++)
  1731.         OSPF6_DEBUG_MESSAGE_OFF (i, level);
  1732.     }
  1733.   else
  1734.     OSPF6_DEBUG_MESSAGE_OFF (type, level);
  1735.   return CMD_SUCCESS;
  1736. }
  1737. ALIAS (no_debug_ospf6_message,
  1738.        no_debug_ospf6_message_sendrecv_cmd,
  1739.        "no debug ospf6 message "
  1740.        "(unknown|hello|dbdesc|lsreq|lsupdate|lsack|all) (send|recv)",
  1741.        NO_STR
  1742.        DEBUG_STR
  1743.        OSPF6_STR
  1744.        "Debug OSPFv3 messagen"
  1745.        "Debug Unknown messagen"
  1746.        "Debug Hello messagen"
  1747.        "Debug Database Description messagen"
  1748.        "Debug Link State Request messagen"
  1749.        "Debug Link State Update messagen"
  1750.        "Debug Link State Acknowledgement messagen"
  1751.        "Debug All messagen"
  1752.        "Debug only sending messagen"
  1753.        "Debug only receiving messagen"
  1754.        );
  1755. int
  1756. config_write_ospf6_debug_message (struct vty *vty)
  1757. {
  1758.   char *type_str[] = {"unknown", "hello", "dbdesc",
  1759.                       "lsreq", "lsupdate", "lsack"};
  1760.   unsigned char s = 0, r = 0;
  1761.   int i;
  1762.   for (i = 0; i < 6; i++)
  1763.     {
  1764.       if (IS_OSPF6_DEBUG_MESSAGE (i, SEND))
  1765.         s |= 1 << i;
  1766.       if (IS_OSPF6_DEBUG_MESSAGE (i, RECV))
  1767.         r |= 1 << i;
  1768.     }
  1769.   if (s == 0x3f && r == 0x3f)
  1770.     {
  1771.       vty_out (vty, "debug ospf6 message all%s", VNL);
  1772.       return 0;
  1773.     }
  1774.   if (s == 0x3f && r == 0)
  1775.     {
  1776.       vty_out (vty, "debug ospf6 message all send%s", VNL);
  1777.       return 0;
  1778.     }
  1779.   else if (s == 0 && r == 0x3f)
  1780.     {
  1781.       vty_out (vty, "debug ospf6 message all recv%s", VNL);
  1782.       return 0;
  1783.     }
  1784.   /* Unknown message is logged by default */
  1785.   if (! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, SEND) &&
  1786.       ! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
  1787.     vty_out (vty, "no debug ospf6 message unknown%s", VNL);
  1788.   else if (! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, SEND))
  1789.     vty_out (vty, "no debug ospf6 message unknown send%s", VNL);
  1790.   else if (! IS_OSPF6_DEBUG_MESSAGE (OSPF6_MESSAGE_TYPE_UNKNOWN, RECV))
  1791.     vty_out (vty, "no debug ospf6 message unknown recv%s", VNL);
  1792.   for (i = 1; i < 6; i++)
  1793.     {
  1794.       if (IS_OSPF6_DEBUG_MESSAGE (i, SEND) &&
  1795.           IS_OSPF6_DEBUG_MESSAGE (i, RECV))
  1796.         vty_out (vty, "debug ospf6 message %s%s", type_str[i], VNL);
  1797.       else if (IS_OSPF6_DEBUG_MESSAGE (i, SEND))
  1798.         vty_out (vty, "debug ospf6 message %s send%s", type_str[i],
  1799.                  VNL);
  1800.       else if (IS_OSPF6_DEBUG_MESSAGE (i, RECV))
  1801.         vty_out (vty, "debug ospf6 message %s recv%s", type_str[i],
  1802.                  VNL);
  1803.     }
  1804.   return 0;
  1805. }
  1806. void
  1807. install_element_ospf6_debug_message ()
  1808. {
  1809.   install_element (ENABLE_NODE, &debug_ospf6_message_cmd);
  1810.   install_element (ENABLE_NODE, &no_debug_ospf6_message_cmd);
  1811.   install_element (ENABLE_NODE, &debug_ospf6_message_sendrecv_cmd);
  1812.   install_element (ENABLE_NODE, &no_debug_ospf6_message_sendrecv_cmd);
  1813.   install_element (CONFIG_NODE, &debug_ospf6_message_cmd);
  1814.   install_element (CONFIG_NODE, &no_debug_ospf6_message_cmd);
  1815.   install_element (CONFIG_NODE, &debug_ospf6_message_sendrecv_cmd);
  1816.   install_element (CONFIG_NODE, &no_debug_ospf6_message_sendrecv_cmd);
  1817. }