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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPF Interface functions.
  3.  * Copyright (C) 1999 Toshiaki Takada
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  * 
  7.  * GNU Zebra is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published
  9.  * by the Free Software Foundation; either version 2, or (at your
  10.  * option) any later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA.
  21.  */
  22. #ifndef _ZEBRA_OSPF_INTERFACE_H
  23. #define _ZEBRA_OSPF_INTERFACE_H
  24. #define OSPF_AUTH_SIMPLE_SIZE           8
  25. #define OSPF_AUTH_MD5_SIZE             16
  26. #define IF_OSPF_IF_INFO(I) ((struct ospf_if_info *)((I)->info))
  27. #define IF_DEF_PARAMS(I) (IF_OSPF_IF_INFO (I)->def_params)
  28. #define IF_OIFS(I)  (IF_OSPF_IF_INFO (I)->oifs)
  29. #define IF_OIFS_PARAMS(I) (IF_OSPF_IF_INFO (I)->params)
  30.     
  31. #define OSPF_IF_PARAM_CONFIGURED(S, P) ((S) && (S)->P##__config)
  32. #define OSPF_IF_PARAM(O, P) 
  33.         (OSPF_IF_PARAM_CONFIGURED ((O)->params, P)?
  34.                         (O)->params->P:IF_DEF_PARAMS((O)->ifp)->P)
  35. #define DECLARE_IF_PARAM(T, P) T P; u_char P##__config:1
  36. #define UNSET_IF_PARAM(S, P) ((S)->P##__config) = 0
  37. #define SET_IF_PARAM(S, P) ((S)->P##__config) = 1
  38. struct ospf_if_params
  39. {
  40.   DECLARE_IF_PARAM (u_int32_t, transmit_delay); /* Interface Transmisson Delay */
  41.   DECLARE_IF_PARAM (u_int32_t, output_cost_cmd);/* Command Interface Output Cost */
  42.   DECLARE_IF_PARAM (u_int32_t, retransmit_interval); /* Retransmission Interval */
  43.   DECLARE_IF_PARAM (u_char, passive_interface);      /* OSPF Interface is passive */
  44.   DECLARE_IF_PARAM (u_char, priority);               /* OSPF Interface priority */
  45.   DECLARE_IF_PARAM (u_char, type);                   /* type of interface */
  46. #define OSPF_IF_ACTIVE                  0
  47. #define OSPF_IF_PASSIVE         1
  48.   
  49.   DECLARE_IF_PARAM (u_int32_t, v_hello);             /* Hello Interval */
  50.   DECLARE_IF_PARAM (u_int32_t, v_wait);              /* Router Dead Interval */
  51.   /* Authentication data. */
  52.   u_char auth_simple[OSPF_AUTH_SIMPLE_SIZE + 1];       /* Simple password. */
  53.   u_char auth_simple__config:1;
  54.   
  55.   DECLARE_IF_PARAM (list, auth_crypt);                 /* List of Auth cryptographic data. */
  56.   DECLARE_IF_PARAM (int, auth_type);               /* OSPF authentication type */
  57. };
  58. struct ospf_if_info
  59. {
  60.   struct ospf_if_params *def_params;
  61.   struct route_table *params;
  62.   struct route_table *oifs;
  63. };
  64. struct ospf_interface;
  65. struct ospf_vl_data
  66. {
  67.   struct in_addr    vl_peer;    /* Router-ID of the peer for VLs. */
  68.   struct in_addr    vl_area_id;    /* Transit area for this VL. */
  69.   int format;                      /* area ID format */
  70.   struct ospf_interface *vl_oi;    /* Interface data structure for the VL. */
  71.   struct ospf_interface *out_oi;   /* The interface to go out. */
  72.   struct in_addr    peer_addr;    /* Address used to reach the peer. */
  73.   u_char flags;
  74. };
  75. #define OSPF_VL_MAX_COUNT 256
  76. #define OSPF_VL_MTU   1500
  77. #define OSPF_VL_FLAG_APPROVED 0x01
  78. struct crypt_key
  79. {
  80.   u_char key_id;
  81.   u_char auth_key[OSPF_AUTH_MD5_SIZE + 1];
  82. };
  83. /* OSPF interface structure. */
  84. struct ospf_interface
  85. {
  86.   /* This interface's parent ospf instance. */
  87.   struct ospf *ospf;
  88.   /* OSPF Area. */
  89.   struct ospf_area *area;
  90.   /* Interface data from zebra. */
  91.   struct interface *ifp;
  92.   struct ospf_vl_data *vl_data; /* Data for Virtual Link */
  93.   
  94.   /* Packet send buffer. */
  95.   struct ospf_fifo *obuf; /* Output queue */
  96.   /* OSPF Network Type. */
  97.   u_char type;
  98. #define OSPF_IFTYPE_NONE 0
  99. #define OSPF_IFTYPE_POINTOPOINT 1
  100. #define OSPF_IFTYPE_BROADCAST 2
  101. #define OSPF_IFTYPE_NBMA 3
  102. #define OSPF_IFTYPE_POINTOMULTIPOINT 4
  103. #define OSPF_IFTYPE_VIRTUALLINK 5
  104. #define OSPF_IFTYPE_LOOPBACK            6
  105. #define OSPF_IFTYPE_MAX 7
  106.   /* State of Interface State Machine. */
  107.   u_char state;
  108.   struct prefix *address; /* Interface prefix */
  109.   struct connected *connected;          /* Pointer to connected */ 
  110.   /* Configured varables. */
  111.   struct ospf_if_params *params;
  112.   u_int32_t crypt_seqnum; /* Cryptographic Sequence Number */ 
  113.   u_int32_t output_cost;         /* Acutual Interface Output Cost */
  114.   /* Neighbor information. */
  115.   struct route_table *nbrs;             /* OSPF Neighbor List */
  116.   struct ospf_neighbor *nbr_self; /* Neighbor Self */
  117. #define DR(I) ((I)->nbr_self->d_router)
  118. #define BDR(I) ((I)->nbr_self->bd_router)
  119. #define OPTIONS(I) ((I)->nbr_self->options)
  120. #define PRIORITY(I) ((I)->nbr_self->priority)
  121.   /* List of configured NBMA neighbor. */
  122.   list nbr_nbma;
  123.   /* self-originated LSAs. */
  124.   struct ospf_lsa *network_lsa_self; /* network-LSA. */
  125. #ifdef HAVE_OPAQUE_LSA
  126.   list opaque_lsa_self; /* Type-9 Opaque-LSAs */
  127. #endif /* HAVE_OPAQUE_LSA */
  128.   struct route_table *ls_upd_queue;
  129.   list ls_ack; /* Link State Acknowledgment list. */
  130.   
  131.   struct
  132.   {
  133.     list ls_ack;
  134.     struct in_addr dst;
  135.   } ls_ack_direct;
  136.   /* Timer values. */
  137.   u_int32_t v_ls_ack; /* Delayed Link State Acknowledgment */
  138.   /* Threads. */
  139.   struct thread *t_hello;               /* timer */
  140.   struct thread *t_wait;                /* timer */
  141.   struct thread *t_ls_ack;              /* timer */
  142.   struct thread *t_ls_ack_direct;       /* event */
  143.   struct thread *t_ls_upd_event;        /* event */
  144.   struct thread *t_network_lsa_self;    /* self-originated network-LSA
  145.                                            reflesh thread. timer */
  146. #ifdef HAVE_OPAQUE_LSA
  147.   struct thread *t_opaque_lsa_self;     /* Type-9 Opaque-LSAs */
  148. #endif /* HAVE_OPAQUE_LSA */
  149.   int on_write_q;
  150.   
  151.   /* Statistics fields. */
  152.   u_int32_t hello_in;         /* Hello message input count. */
  153.   u_int32_t hello_out;         /* Hello message output count. */
  154.   u_int32_t db_desc_in;         /* database desc. message input count. */
  155.   u_int32_t db_desc_out;        /* database desc. message output count. */
  156.   u_int32_t ls_req_in;          /* LS request message input count. */
  157.   u_int32_t ls_req_out;         /* LS request message output count. */
  158.   u_int32_t ls_upd_in;          /* LS update message input count. */
  159.   u_int32_t ls_upd_out;         /* LS update message output count. */
  160.   u_int32_t ls_ack_in;          /* LS Ack message input count. */
  161.   u_int32_t ls_ack_out;         /* LS Ack message output count. */
  162.   u_int32_t discarded; /* discarded input count by error. */
  163.   u_int32_t state_change; /* Number of status change. */
  164.   u_int32_t full_nbrs;
  165. };
  166. /* Prototypes. */
  167. char *ospf_if_name (struct ospf_interface *);
  168. struct ospf_interface *ospf_if_new (struct ospf *, struct interface *,
  169.     struct prefix *);
  170. void ospf_if_cleanup (struct ospf_interface *);
  171. void ospf_if_free (struct ospf_interface *);
  172. int ospf_if_up (struct ospf_interface *);
  173. int ospf_if_down (struct ospf_interface *);
  174. int ospf_if_is_up (struct ospf_interface *);
  175. struct ospf_interface *ospf_if_lookup_by_name (char *);
  176. struct ospf_interface *ospf_if_lookup_by_local_addr (struct ospf *,
  177.      struct interface *,
  178.      struct in_addr);
  179. struct ospf_interface *ospf_if_lookup_by_prefix (struct ospf *,
  180.  struct prefix_ipv4 *);
  181. struct ospf_interface *ospf_if_addr_local (struct in_addr);
  182. struct ospf_interface *ospf_if_lookup_recv_if (struct ospf *, struct in_addr);
  183. struct ospf_interface *ospf_if_is_configured (struct ospf *, struct in_addr *);
  184. struct ospf_if_params *ospf_lookup_if_params (struct interface *,
  185.       struct in_addr);
  186. struct ospf_if_params *ospf_get_if_params (struct interface *, struct in_addr);
  187. void ospf_del_if_params (struct ospf_if_params *);
  188. void ospf_free_if_params (struct interface *, struct in_addr);
  189. void ospf_if_update_params (struct interface *, struct in_addr);
  190. int ospf_if_new_hook (struct interface *);
  191. void ospf_if_init ();
  192. void ospf_if_stream_set (struct ospf_interface *);
  193. void ospf_if_stream_unset (struct ospf_interface *);
  194. void ospf_if_reset_variables (struct ospf_interface *);
  195. int ospf_if_is_enable (struct ospf_interface *);
  196. int ospf_if_get_output_cost (struct ospf_interface *);
  197. void ospf_if_recalculate_output_cost (struct interface *);
  198. struct ospf_interface *ospf_vl_new (struct ospf *, struct ospf_vl_data *);
  199. struct ospf_vl_data *ospf_vl_data_new (struct ospf_area *, struct in_addr);
  200. struct ospf_vl_data *ospf_vl_lookup (struct ospf_area *, struct in_addr);
  201. void ospf_vl_data_free (struct ospf_vl_data *);
  202. void ospf_vl_add (struct ospf *, struct ospf_vl_data *);
  203. void ospf_vl_delete (struct ospf *, struct ospf_vl_data *);
  204. void ospf_vl_up_check (struct ospf_area *, struct in_addr, struct vertex *);
  205. void ospf_vl_unapprove (struct ospf *);
  206. void ospf_vl_shut_unapproved (struct ospf *);
  207. int ospf_full_virtual_nbrs (struct ospf_area *);
  208. int ospf_vls_in_area (struct ospf_area *);
  209. struct crypt_key *ospf_crypt_key_lookup (list, u_char);
  210. struct crypt_key *ospf_crypt_key_new ();
  211. void ospf_crypt_key_add (list, struct crypt_key *);
  212. int ospf_crypt_key_delete (list, u_char);
  213. #endif /* _ZEBRA_OSPF_INTERFACE_H */