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

网络

开发平台:

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. #ifndef OSPF6_LSA_H
  22. #define OSPF6_LSA_H
  23. /* Debug option */
  24. #define OSPF6_LSA_DEBUG           0x01
  25. #define OSPF6_LSA_DEBUG_ORIGINATE 0x02
  26. #define OSPF6_LSA_DEBUG_EXAMIN    0x04
  27. #define OSPF6_LSA_DEBUG_FLOOD     0x08
  28. #define IS_OSPF6_DEBUG_LSA(name)                        
  29.   (ospf6_lstype_debug (htons (OSPF6_LSTYPE_ ## name)) & 
  30.    OSPF6_LSA_DEBUG)
  31. #define IS_OSPF6_DEBUG_ORIGINATE(name)                  
  32.   (ospf6_lstype_debug (htons (OSPF6_LSTYPE_ ## name)) & 
  33.    OSPF6_LSA_DEBUG_ORIGINATE)
  34. #define IS_OSPF6_DEBUG_EXAMIN(name)                     
  35.   (ospf6_lstype_debug (htons (OSPF6_LSTYPE_ ## name)) & 
  36.    OSPF6_LSA_DEBUG_EXAMIN)
  37. #define IS_OSPF6_DEBUG_LSA_TYPE(type) 
  38.   (ospf6_lstype_debug (type) & OSPF6_LSA_DEBUG)
  39. #define IS_OSPF6_DEBUG_ORIGINATE_TYPE(type) 
  40.   (ospf6_lstype_debug (type) & OSPF6_LSA_DEBUG_ORIGINATE)
  41. #define IS_OSPF6_DEBUG_EXAMIN_TYPE(type) 
  42.   (ospf6_lstype_debug (type) & OSPF6_LSA_DEBUG_EXAMIN)
  43. #define IS_OSPF6_DEBUG_FLOOD_TYPE(type) 
  44.   (ospf6_lstype_debug (type) & OSPF6_LSA_DEBUG_FLOOD)
  45. /* LSA definition */
  46. #define OSPF6_MAX_LSASIZE      4096
  47. /* Type */
  48. #define OSPF6_LSTYPE_UNKNOWN          0x0000
  49. #define OSPF6_LSTYPE_ROUTER           0x2001
  50. #define OSPF6_LSTYPE_NETWORK          0x2002
  51. #define OSPF6_LSTYPE_INTER_PREFIX     0x2003
  52. #define OSPF6_LSTYPE_INTER_ROUTER     0x2004
  53. #define OSPF6_LSTYPE_AS_EXTERNAL      0x4005
  54. #define OSPF6_LSTYPE_GROUP_MEMBERSHIP 0x2006
  55. #define OSPF6_LSTYPE_TYPE_7           0x2007
  56. #define OSPF6_LSTYPE_LINK             0x0008
  57. #define OSPF6_LSTYPE_INTRA_PREFIX     0x2009
  58. #define OSPF6_LSTYPE_SIZE             0x000a
  59. /* Masks for LS Type : RFC 2740 A.4.2.1 "LS type" */
  60. #define OSPF6_LSTYPE_UBIT_MASK        0x8000
  61. #define OSPF6_LSTYPE_SCOPE_MASK       0x6000
  62. #define OSPF6_LSTYPE_FCODE_MASK       0x1fff
  63. /* LSA scope */
  64. #define OSPF6_SCOPE_LINKLOCAL  0x0000
  65. #define OSPF6_SCOPE_AREA       0x2000
  66. #define OSPF6_SCOPE_AS         0x4000
  67. #define OSPF6_SCOPE_RESERVED   0x6000
  68. /* XXX U-bit handling should be treated here */
  69. #define OSPF6_LSA_SCOPE(type) 
  70.   (ntohs (type) & OSPF6_LSTYPE_SCOPE_MASK)
  71. /* LSA Header */
  72. struct ospf6_lsa_header
  73. {
  74.   u_int16_t age;        /* LS age */
  75.   u_int16_t type;       /* LS type */
  76.   u_int32_t id;         /* Link State ID */
  77.   u_int32_t adv_router; /* Advertising Router */
  78.   u_int32_t seqnum;     /* LS sequence number */
  79.   u_int16_t checksum;   /* LS checksum */
  80.   u_int16_t length;     /* LSA length */
  81. };
  82. #define OSPF6_LSA_HEADER_END(h) 
  83.   ((caddr_t)(h) + sizeof (struct ospf6_lsa_header))
  84. #define OSPF6_LSA_SIZE(h) 
  85.   (ntohs (((struct ospf6_lsa_header *) (h))->length))
  86. #define OSPF6_LSA_END(h) 
  87.   ((caddr_t)(h) + ntohs (((struct ospf6_lsa_header *) (h))->length))
  88. #define OSPF6_LSA_IS_TYPE(t, L) 
  89.   ((L)->header->type == htons (OSPF6_LSTYPE_ ## t) ? 1 : 0)
  90. #define OSPF6_LSA_IS_SAME(L1, L2) 
  91.   ((L1)->header->adv_router == (L2)->header->adv_router && 
  92.    (L1)->header->id == (L2)->header->id && 
  93.    (L1)->header->type == (L2)->header->type)
  94. #define OSPF6_LSA_IS_MATCH(t, i, a, L) 
  95.   ((L)->header->adv_router == (a) && (L)->header->id == (i) && 
  96.    (L)->header->type == (t))
  97. #define OSPF6_LSA_IS_DIFFER(L1, L2)  ospf6_lsa_is_differ (L1, L2)
  98. #define OSPF6_LSA_IS_MAXAGE(L) (ospf6_lsa_age_current (L) == MAXAGE)
  99. #define OSPF6_LSA_IS_CHANGED(L1, L2) ospf6_lsa_is_changed (L1, L2)
  100. struct ospf6_lsa
  101. {
  102.   char              name[64];   /* dump string */
  103.   struct ospf6_lsa *prev;
  104.   struct ospf6_lsa *next;
  105.   unsigned char     lock;           /* reference counter */
  106.   unsigned char     flag;           /* special meaning (e.g. floodback) */
  107.   struct timeval    birth;          /* tv_sec when LS age 0 */
  108.   struct timeval    originated;     /* used by MinLSInterval check */
  109.   struct timeval    received;       /* used by MinLSArrival check */
  110.   struct timeval    installed;
  111.   struct thread    *expire;
  112.   struct thread    *refresh;        /* For self-originated LSA */
  113.   int               retrans_count;
  114.   struct ospf6_lsdb *lsdb;
  115.   /* lsa instance */
  116.   struct ospf6_lsa_header *header;
  117. };
  118. #define OSPF6_LSA_HEADERONLY 0x01
  119. #define OSPF6_LSA_FLOODBACK  0x02
  120. #define OSPF6_LSA_DUPLICATE  0x04
  121. #define OSPF6_LSA_IMPLIEDACK 0x08
  122. struct ospf6_lsa_handler
  123. {
  124.   u_int16_t type; /* host byte order */
  125.   char *name;
  126.   int (*show) (struct vty *, struct ospf6_lsa *);
  127.   u_char debug;
  128. };
  129. extern struct ospf6_lsa_handler unknown_handler;
  130. #define OSPF6_LSA_IS_KNOWN(type) 
  131.   (ospf6_get_lsa_handler (type) != &unknown_handler ? 1 : 0)
  132. /* Macro for LSA Origination */
  133. /* addr is (struct prefix *) */
  134. #define CONTINUE_IF_ADDRESS_LINKLOCAL(debug,addr)      
  135.   if (IN6_IS_ADDR_LINKLOCAL (&(addr)->u.prefix6))      
  136.     {                                                  
  137.       char buf[64];                                    
  138.       prefix2str (addr, buf, sizeof (buf));            
  139.       if (debug)                                       
  140.         zlog_info ("Filter out Linklocal: %s", buf);   
  141.       continue;                                        
  142.     }
  143. #define CONTINUE_IF_ADDRESS_UNSPECIFIED(debug,addr)    
  144.   if (IN6_IS_ADDR_UNSPECIFIED (&(addr)->u.prefix6))    
  145.     {                                                  
  146.       char buf[64];                                    
  147.       prefix2str (addr, buf, sizeof (buf));            
  148.       if (debug)                                       
  149.         zlog_info ("Filter out Unspecified: %s", buf); 
  150.       continue;                                        
  151.     }
  152. #define CONTINUE_IF_ADDRESS_LOOPBACK(debug,addr)       
  153.   if (IN6_IS_ADDR_LOOPBACK (&(addr)->u.prefix6))       
  154.     {                                                  
  155.       char buf[64];                                    
  156.       prefix2str (addr, buf, sizeof (buf));            
  157.       if (debug)                                       
  158.         zlog_info ("Filter out Loopback: %s", buf);    
  159.       continue;                                        
  160.     }
  161. #define CONTINUE_IF_ADDRESS_V4COMPAT(debug,addr)       
  162.   if (IN6_IS_ADDR_V4COMPAT (&(addr)->u.prefix6))       
  163.     {                                                  
  164.       char buf[64];                                    
  165.       prefix2str (addr, buf, sizeof (buf));            
  166.       if (debug)                                       
  167.         zlog_info ("Filter out V4Compat: %s", buf);    
  168.       continue;                                        
  169.     }
  170. #define CONTINUE_IF_ADDRESS_V4MAPPED(debug,addr)       
  171.   if (IN6_IS_ADDR_V4MAPPED (&(addr)->u.prefix6))       
  172.     {                                                  
  173.       char buf[64];                                    
  174.       prefix2str (addr, buf, sizeof (buf));            
  175.       if (debug)                                       
  176.         zlog_info ("Filter out V4Mapped: %s", buf);    
  177.       continue;                                        
  178.     }
  179. /* Function Prototypes */
  180. char *ospf6_lstype_name (u_int16_t type);
  181. u_char ospf6_lstype_debug (u_int16_t type);
  182. int ospf6_lsa_is_differ (struct ospf6_lsa *lsa1, struct ospf6_lsa *lsa2);
  183. int ospf6_lsa_is_changed (struct ospf6_lsa *lsa1, struct ospf6_lsa *lsa2);
  184. u_int16_t ospf6_lsa_age_current (struct ospf6_lsa *);
  185. void ospf6_lsa_age_update_to_send (struct ospf6_lsa *, u_int32_t);
  186. void ospf6_lsa_premature_aging (struct ospf6_lsa *);
  187. int ospf6_lsa_compare (struct ospf6_lsa *, struct ospf6_lsa *);
  188. char *ospf6_lsa_printbuf (struct ospf6_lsa *lsa, char *buf, int size);
  189. void ospf6_lsa_header_print_raw (struct ospf6_lsa_header *header);
  190. void ospf6_lsa_header_print (struct ospf6_lsa *lsa);
  191. void ospf6_lsa_show_summary_header (struct vty *vty);
  192. void ospf6_lsa_show_summary (struct vty *vty, struct ospf6_lsa *lsa);
  193. void ospf6_lsa_show_dump (struct vty *vty, struct ospf6_lsa *lsa);
  194. void ospf6_lsa_show_internal (struct vty *vty, struct ospf6_lsa *lsa);
  195. void ospf6_lsa_show (struct vty *vty, struct ospf6_lsa *lsa);
  196. struct ospf6_lsa *ospf6_lsa_create (struct ospf6_lsa_header *header);
  197. struct ospf6_lsa *ospf6_lsa_create_headeronly (struct ospf6_lsa_header *header);
  198. void ospf6_lsa_delete (struct ospf6_lsa *lsa);
  199. struct ospf6_lsa *ospf6_lsa_copy (struct ospf6_lsa *);
  200. void ospf6_lsa_lock (struct ospf6_lsa *);
  201. void ospf6_lsa_unlock (struct ospf6_lsa *);
  202. int ospf6_lsa_expire (struct thread *);
  203. int ospf6_lsa_refresh (struct thread *);
  204. unsigned short ospf6_lsa_checksum (struct ospf6_lsa_header *);
  205. int ospf6_lsa_prohibited_duration (u_int16_t type, u_int32_t id,
  206.                                    u_int32_t adv_router, void *scope);
  207. void ospf6_install_lsa_handler (struct ospf6_lsa_handler *handler);
  208. struct ospf6_lsa_handler *ospf6_get_lsa_handler (u_int16_t type);
  209. void ospf6_lsa_init ();
  210. void ospf6_lsa_cmd_init ();
  211. int config_write_ospf6_debug_lsa (struct vty *vty);
  212. void install_element_ospf6_debug_lsa ();
  213. #endif /* OSPF6_LSA_H */