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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPF Link State Advertisement
  3.  * Copyright (C) 1999, 2000 Toshiaki Takada
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20.  * 02111-1307, USA.
  21.  */
  22. #ifndef _ZEBRA_OSPF_LSA_H
  23. #define _ZEBRA_OSPF_LSA_H
  24. /* OSPF LSA Range definition. */
  25. #define OSPF_MIN_LSA 1  /* begin range here */
  26. #if defined (HAVE_OPAQUE_LSA)
  27. #define OSPF_MAX_LSA           12
  28. #elif defined (HAVE_NSSA)
  29. #define OSPF_MAX_LSA 8
  30. #else
  31. #define OSPF_MAX_LSA 6
  32. #endif
  33. /* OSPF LSA Type definition. */
  34. #define OSPF_UNKNOWN_LSA       0
  35. #define OSPF_ROUTER_LSA               1
  36. #define OSPF_NETWORK_LSA              2
  37. #define OSPF_SUMMARY_LSA              3
  38. #define OSPF_ASBR_SUMMARY_LSA         4
  39. #define OSPF_AS_EXTERNAL_LSA          5
  40. #define OSPF_GROUP_MEMBER_LSA       6  /* Not supported. */
  41. #define OSPF_AS_NSSA_LSA               7
  42. #define OSPF_EXTERNAL_ATTRIBUTES_LSA  8  /* Not supported. */
  43. #define OSPF_OPAQUE_LINK_LSA       9
  44. #define OSPF_OPAQUE_AREA_LSA      10
  45. #define OSPF_OPAQUE_AS_LSA      11
  46. #define OSPF_LSA_HEADER_SIZE 20
  47. #define OSPF_MAX_LSA_SIZE 1500
  48. /* AS-external-LSA refresh method. */
  49. #define LSA_REFRESH_IF_CHANGED 0
  50. #define LSA_REFRESH_FORCE 1
  51. /* OSPF LSA header. */
  52. struct lsa_header
  53. {
  54.   u_int16_t ls_age;
  55.   u_char options;
  56.   u_char type;
  57.   struct in_addr id;
  58.   struct in_addr adv_router;
  59.   int ls_seqnum;
  60.   u_int16_t checksum;
  61.   u_int16_t length;
  62. };
  63. /* OSPF LSA. */
  64. struct ospf_lsa
  65. {
  66.   /* LSA origination flag. */
  67.   u_char flags;
  68. #define OSPF_LSA_SELF   0x01
  69. #define OSPF_LSA_SELF_CHECKED   0x02
  70. #define OSPF_LSA_RECEIVED   0x04
  71. #define OSPF_LSA_APPROVED   0x08
  72. #define OSPF_LSA_DISCARD   0x10
  73. #ifdef HAVE_NSSA
  74. #define OSPF_LSA_LOCAL_XLT   0x20
  75. #endif /* HAVE_NSSA */
  76.   /* LSA data. */
  77.   struct lsa_header *data;
  78.   /* Received time stamp. */
  79.   struct timeval tv_recv;
  80.   /* Last time it was originated */
  81.   struct timeval tv_orig;
  82.   /* All of reference count, also lock to remove. */
  83.   int lock;
  84.   /* References to this LSA in neighbor retransmission lists*/
  85.   int retransmit_counter;
  86.   /* Area the LSA belongs to, may be NULL if AS-external-LSA. */
  87.   struct ospf_area *area;
  88.   /* Parent LSDB. */
  89.   struct ospf_lsdb *lsdb;
  90.   /* Related Route. */
  91.   void *route;
  92.   /* Refreshement List or Queue */
  93.   int refresh_list;
  94. #ifdef HAVE_OPAQUE_LSA
  95.   /* For Type-9 Opaque-LSAs, reference to ospf-interface is required. */
  96.   struct ospf_interface *oi;
  97. #endif /* HAVE_OPAQUE_LSA */
  98. };
  99. /* OSPF LSA Link Type. */
  100. #define LSA_LINK_TYPE_POINTOPOINT      1
  101. #define LSA_LINK_TYPE_TRANSIT          2
  102. #define LSA_LINK_TYPE_STUB             3
  103. #define LSA_LINK_TYPE_VIRTUALLINK      4
  104. /* OSPF Router LSA Flag. */
  105. #define ROUTER_LSA_BORDER        0x01 /* The router is an ABR */
  106. #define ROUTER_LSA_EXTERNAL        0x02 /* The router is an ASBR */
  107. #define ROUTER_LSA_VIRTUAL        0x04 /* The router has a VL in this area */
  108. #define ROUTER_LSA_NT        0x10 /* NSSA-specific flag */
  109. #define ROUTER_LSA_SHORTCUT        0x20 /* Shortcut-ABR specific flag */
  110. #define IS_ROUTER_LSA_VIRTUAL(x)       ((x)->flags & ROUTER_LSA_VIRTUAL)
  111. #define IS_ROUTER_LSA_EXTERNAL(x)      ((x)->flags & ROUTER_LSA_EXTERNAL)
  112. #define IS_ROUTER_LSA_BORDER(x)        ((x)->flags & ROUTER_LSA_BORDER)
  113. #define IS_ROUTER_LSA_SHORTCUT(x)      ((x)->flags & ROUTER_LSA_SHORTCUT)
  114. /* OSPF Router-LSA Link information. */
  115. struct router_lsa_link
  116. {
  117.   struct in_addr link_id;
  118.   struct in_addr link_data;
  119.   struct
  120.   {
  121.     u_char type;
  122.     u_char tos_count;
  123.     u_int16_t metric;
  124.   } m[1];
  125. };
  126. /* OSPF Router-LSAs structure. */
  127. struct router_lsa
  128. {
  129.   struct lsa_header header;
  130.   u_char flags;
  131.   u_char zero;
  132.   u_int16_t links;
  133.   struct
  134.   {
  135.     struct in_addr link_id;
  136.     struct in_addr link_data;
  137.     u_char type;
  138.     u_char tos;
  139.     u_int16_t metric;
  140.   } link[1];
  141. };
  142. /* OSPF Network-LSAs structure. */
  143. struct network_lsa
  144. {
  145.   struct lsa_header header;
  146.   struct in_addr mask;
  147.   struct in_addr routers[1];
  148. };
  149. /* OSPF Summary-LSAs structure. */
  150. struct summary_lsa
  151. {
  152.   struct lsa_header header;
  153.   struct in_addr mask;
  154.   u_char tos;
  155.   u_char metric[3];
  156. };
  157. /* OSPF AS-external-LSAs structure. */
  158. struct as_external_lsa
  159. {
  160.   struct lsa_header header;
  161.   struct in_addr mask;
  162.   struct
  163.   {
  164.     u_char tos;
  165.     u_char metric[3];
  166.     struct in_addr fwd_addr;
  167.     u_int32_t route_tag;
  168.   } e[1];
  169. };
  170. #ifdef HAVE_OPAQUE_LSA
  171. #include "ospfd/ospf_opaque.h"
  172. #endif /* HAVE_OPAQUE_LSA */
  173. /* Macros. */
  174. #define GET_METRIC(x) get_metric(x)
  175. #define IS_EXTERNAL_METRIC(x)   ((x) & 0x80)
  176. #define GET_AGE(x)     (ntohs ((x)->data->ls_age) + time (NULL) - (x)->tv_recv)
  177. #define LS_AGE(x)      (OSPF_LSA_MAXAGE < get_age(x) ? 
  178.                                            OSPF_LSA_MAXAGE : get_age(x))
  179. #define IS_LSA_SELF(L)          (CHECK_FLAG ((L)->flags, OSPF_LSA_SELF))
  180. #define IS_LSA_MAXAGE(L)        (LS_AGE ((L)) == OSPF_LSA_MAXAGE)
  181. #define OSPF_LSA_UPDATE_DELAY 2
  182. #define OSPF_LSA_UPDATE_TIMER_ON(T,F) 
  183.       if (!(T)) 
  184.         (T) = thread_add_timer (master, (F), 0, 2)
  185. struct ospf_route;
  186. struct ospf_lsdb;
  187. /* Prototypes. */
  188. struct timeval tv_adjust (struct timeval);
  189. int tv_ceil (struct timeval);
  190. int tv_floor (struct timeval);
  191. struct timeval int2tv (int);
  192. struct timeval tv_add (struct timeval, struct timeval);
  193. struct timeval tv_sub (struct timeval, struct timeval);
  194. int tv_cmp (struct timeval, struct timeval);
  195. int get_age (struct ospf_lsa *);
  196. u_int16_t ospf_lsa_checksum (struct lsa_header *);
  197. struct stream;
  198. const char *dump_lsa_key (struct ospf_lsa *);
  199. u_int32_t lsa_seqnum_increment (struct ospf_lsa *);
  200. void lsa_header_set (struct stream *, u_char, u_char, struct in_addr,
  201.      struct in_addr);
  202. struct ospf_neighbor *ospf_nbr_lookup_ptop (struct ospf_interface *);
  203. /* Prototype for LSA primitive. */
  204. struct ospf_lsa *ospf_lsa_new ();
  205. struct ospf_lsa *ospf_lsa_dup ();
  206. void ospf_lsa_free (struct ospf_lsa *);
  207. struct ospf_lsa *ospf_lsa_lock (struct ospf_lsa *);
  208. void ospf_lsa_unlock (struct ospf_lsa *);
  209. void ospf_lsa_discard (struct ospf_lsa *);
  210. struct lsa_header *ospf_lsa_data_new (size_t);
  211. struct lsa_header *ospf_lsa_data_dup (struct lsa_header *);
  212. void ospf_lsa_data_free (struct lsa_header *);
  213. /* Prototype for various LSAs */
  214. struct ospf_lsa *ospf_router_lsa_originate (struct ospf_area *);
  215. int ospf_router_lsa_update_timer (struct thread *);
  216. void ospf_router_lsa_timer_add (struct ospf_area *);
  217. int ospf_network_lsa_refresh (struct ospf_lsa *, struct ospf_interface *);
  218. void ospf_network_lsa_timer_add (struct ospf_interface *);
  219. struct ospf_lsa *ospf_summary_lsa_originate (struct prefix_ipv4 *, u_int32_t,
  220.      struct ospf_area *);
  221. struct ospf_lsa *ospf_summary_asbr_lsa_originate (struct prefix_ipv4 *,
  222.   u_int32_t,
  223.   struct ospf_area *);
  224. struct ospf_lsa *ospf_summary_lsa_refresh (struct ospf *, struct ospf_lsa *);
  225. struct ospf_lsa *ospf_summary_asbr_lsa_refresh (struct ospf *, struct ospf_lsa *);
  226. struct ospf_lsa *ospf_lsa_install (struct ospf *,
  227.    struct ospf_interface *, struct ospf_lsa *);
  228. void ospf_nssa_lsa_flush (struct ospf *ospf, struct prefix_ipv4 *p);
  229. void ospf_external_lsa_flush (struct ospf *, u_char, struct prefix_ipv4 *,
  230.       unsigned int, struct in_addr);
  231. struct in_addr ospf_get_ip_from_ifp (struct ospf_interface *);
  232. struct ospf_lsa *ospf_external_lsa_originate (struct ospf *, struct external_info *);
  233. int ospf_external_lsa_originate_timer (struct thread *);
  234. struct ospf_lsa *ospf_lsa_lookup (struct ospf_area *, u_int32_t,
  235.   struct in_addr, struct in_addr);
  236. struct ospf_lsa *ospf_lsa_lookup_by_id (struct ospf_area *,u_int32_t, struct in_addr);
  237. struct ospf_lsa *ospf_lsa_lookup_by_header (struct ospf_area *,
  238.     struct lsa_header *);
  239. int ospf_lsa_more_recent (struct ospf_lsa *, struct ospf_lsa *);
  240. int ospf_lsa_different (struct ospf_lsa *, struct ospf_lsa *);
  241. void ospf_flush_self_originated_lsas_now (struct ospf *);
  242. int ospf_lsa_is_self_originated (struct ospf *, struct ospf_lsa *);
  243. struct ospf_lsa *ospf_lsa_lookup_by_prefix (struct ospf_lsdb *, u_char,
  244.     struct prefix_ipv4 *,
  245.     struct in_addr);
  246. void ospf_lsa_maxage (struct ospf *, struct ospf_lsa *);
  247. u_int32_t get_metric (u_char *);
  248. int ospf_lsa_maxage_walker (struct thread *);
  249. void ospf_external_lsa_refresh_default (struct ospf *);
  250. void ospf_external_lsa_refresh_type (struct ospf *, u_char, int);
  251. void ospf_external_lsa_refresh (struct ospf *, struct ospf_lsa *,
  252. struct external_info *, int);
  253. struct in_addr ospf_lsa_unique_id (struct ospf *, struct ospf_lsdb *, u_char,
  254.    struct prefix_ipv4 *);
  255. void ospf_schedule_lsa_flood_area (struct ospf_area *, struct ospf_lsa *);
  256. void ospf_schedule_lsa_flush_area (struct ospf_area *, struct ospf_lsa *);
  257. void ospf_refresher_register_lsa (struct ospf *, struct ospf_lsa *);
  258. void ospf_refresher_unregister_lsa (struct ospf *, struct ospf_lsa *);
  259. int ospf_lsa_refresh_walker (struct thread *);
  260. void ospf_lsa_maxage_delete (struct ospf *, struct ospf_lsa *);
  261. void ospf_discard_from_db (struct ospf *, struct ospf_lsdb *, struct ospf_lsa*);
  262. int is_prefix_default (struct prefix_ipv4 *);
  263. int metric_type (struct ospf *, u_char);
  264. int metric_value (struct ospf *, u_char);
  265. #ifdef HAVE_NSSA
  266. struct in_addr ospf_get_nssa_ip (struct ospf_area *);
  267. #endif /* HAVE NSSA */
  268. #endif /* _ZEBRA_OSPF_LSA_H */