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

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPF Sending and Receiving OSPF Packets.
  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 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_PACKET_H
  23. #define _ZEBRA_OSPF_PACKET_H
  24. #define OSPF_HEADER_SIZE         24
  25. #define OSPF_AUTH_SIMPLE_SIZE     8
  26. #define OSPF_AUTH_MD5_SIZE       16
  27. #define OSPF_MAX_PACKET_SIZE  65535   /* includes IP Header size. */
  28. #define OSPF_HELLO_MIN_SIZE      20   /* not including neighbors */
  29. #define OSPF_DB_DESC_MIN_SIZE     8
  30. #define OSPF_LS_REQ_MIN_SIZE      0
  31. #define OSPF_LS_UPD_MIN_SIZE      4
  32. #define OSPF_LS_ACK_MIN_SIZE      0
  33. #define OSPF_MSG_HELLO         1  /* OSPF Hello Message. */
  34. #define OSPF_MSG_DB_DESC       2  /* OSPF Database Descriptoin Message. */
  35. #define OSPF_MSG_LS_REQ        3  /* OSPF Link State Request Message. */
  36. #define OSPF_MSG_LS_UPD        4  /* OSPF Link State Update Message. */
  37. #define OSPF_MSG_LS_ACK        5  /* OSPF Link State Acknoledgement Message. */
  38. #define OSPF_SEND_PACKET_DIRECT         1
  39. #define OSPF_SEND_PACKET_INDIRECT       2
  40. #ifdef HAVE_NSSA
  41. #define OSPF_SEND_PACKET_LOOP           3
  42. #endif /* HAVE_NSSA */
  43. #define OSPF_HELLO_REPLY_DELAY          1
  44. struct ospf_packet
  45. {
  46.   struct ospf_packet *next;
  47.   /* Pointer to data stream. */
  48.   struct stream *s;
  49.   /* IP destination address. */
  50.   struct in_addr dst;
  51.   /* OSPF packet length. */
  52.   u_int16_t length;
  53. };
  54. /* OSPF packet queue structure. */
  55. struct ospf_fifo
  56. {
  57.   unsigned long count;
  58.   struct ospf_packet *head;
  59.   struct ospf_packet *tail;
  60. };
  61. /* OSPF packet header structure. */
  62. struct ospf_header
  63. {
  64.   u_char version;                       /* OSPF Version. */
  65.   u_char type;                          /* Packet Type. */
  66.   u_int16_t length;                     /* Packet Length. */
  67.   struct in_addr router_id;             /* Router ID. */
  68.   struct in_addr area_id;               /* Area ID. */
  69.   u_int16_t checksum;                   /* Check Sum. */
  70.   u_int16_t auth_type;                  /* Authentication Type. */
  71.   /* Authentication Data. */
  72.   union
  73.   {
  74.     /* Simple Authentication. */
  75.     u_char auth_data [OSPF_AUTH_SIMPLE_SIZE];
  76.     /* Cryptographic Authentication. */
  77.     struct
  78.     {
  79.       u_int16_t zero;                   /* Should be 0. */
  80.       u_char key_id;                    /* Key ID. */
  81.       u_char auth_data_len;             /* Auth Data Length. */
  82.       u_int32_t crypt_seqnum;           /* Cryptographic Sequence Number. */
  83.     } crypt;
  84.   } u;
  85. };
  86. /* OSPF Hello body format. */
  87. struct ospf_hello
  88. {
  89.   struct in_addr network_mask;
  90.   u_int16_t hello_interval;
  91.   u_char options;
  92.   u_char priority;
  93.   u_int32_t dead_interval;
  94.   struct in_addr d_router;
  95.   struct in_addr bd_router;
  96.   struct in_addr neighbors[1];
  97. };
  98. /* OSPF Database Description body format. */
  99. struct ospf_db_desc
  100. {
  101.   u_int16_t mtu;
  102.   u_char options;
  103.   u_char flags;
  104.   u_int32_t dd_seqnum;
  105. };
  106. /* Macros. */
  107. #define OSPF_PACKET_MAX(oi)     ospf_packet_max (oi)
  108. /*
  109. #define OSPF_PACKET_MAX(oi)     (((oi)->ifp->mtu - ((oi)->auth_md5 ? OSPF_AUTH_MD5_SIZE : 0)) - 88)
  110. */
  111. #define OSPF_OUTPUT_PNT(S)      ((S)->data + (S)->putp)
  112. #define OSPF_OUTPUT_LENGTH(S)   ((S)->endp)
  113. #define IS_SET_DD_MS(X)         ((X) & OSPF_DD_FLAG_MS)
  114. #define IS_SET_DD_M(X)          ((X) & OSPF_DD_FLAG_M)
  115. #define IS_SET_DD_I(X)          ((X) & OSPF_DD_FLAG_I)
  116. #define IS_SET_DD_ALL(X)        ((X) & OSPF_DD_FLAG_ALL)
  117. /* Prototypes. */
  118. void ospf_output_forward (struct stream *, int);
  119. struct ospf_packet *ospf_packet_new (size_t);
  120. void ospf_packet_free (struct ospf_packet *);
  121. struct ospf_fifo *ospf_fifo_new ();
  122. void ospf_fifo_push (struct ospf_fifo *, struct ospf_packet *);
  123. struct ospf_packet *ospf_fifo_pop (struct ospf_fifo *);
  124. struct ospf_packet *ospf_fifo_head (struct ospf_fifo *);
  125. void ospf_fifo_flush (struct ospf_fifo *);
  126. void ospf_fifo_free (struct ospf_fifo *);
  127. void ospf_packet_add (struct ospf_interface *, struct ospf_packet *);
  128. void ospf_packet_delete (struct ospf_interface *);
  129. struct stream *ospf_stream_dup (struct stream *);
  130. struct ospf_packet *ospf_packet_dup (struct ospf_packet *);
  131. int ospf_read (struct thread *);
  132. void ospf_hello_send (struct ospf_interface *);
  133. void ospf_db_desc_send (struct ospf_neighbor *);
  134. void ospf_db_desc_resend (struct ospf_neighbor *);
  135. void ospf_ls_req_send (struct ospf_neighbor *);
  136. void ospf_ls_upd_send_lsa (struct ospf_neighbor *, struct ospf_lsa *, int);
  137. void ospf_ls_upd_send (struct ospf_neighbor *, list, int);
  138. void ospf_ls_ack_send (struct ospf_neighbor *, struct ospf_lsa *);
  139. void ospf_ls_ack_send_delayed (struct ospf_interface *);
  140. void ospf_ls_retransmit (struct ospf_interface *, struct ospf_lsa *);
  141. void ospf_ls_req_event (struct ospf_neighbor *);
  142. int ospf_ls_upd_timer (struct thread *);
  143. int ospf_ls_ack_timer (struct thread *);
  144. int ospf_poll_timer (struct thread *);
  145. int ospf_hello_reply_timer (struct thread *);
  146. void ospf_hello_send_sub (struct ospf_interface *, struct in_addr *);
  147. #endif /* _ZEBRA_OSPF_PACKET_H */