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

网络

开发平台:

Unix_Linux

  1. /* Zebra common header.
  2.    Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Kunihiro Ishiguro
  3. This file is part of GNU Zebra.
  4. GNU Zebra is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option) any
  7. later version.
  8. GNU Zebra is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Zebra; see the file COPYING.  If not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  15. 02111-1307, USA.  */
  16. #ifndef _ZEBRA_H
  17. #define _ZEBRA_H
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif /* HAVE_CONFIG_H */
  21. #ifdef SUNOS_5
  22. #define _XPG4_2
  23. #define __EXTENSIONS__
  24. typedef unsigned int u_int32_t; 
  25. typedef unsigned short u_int16_t; 
  26. typedef unsigned short u_int8_t; 
  27. #endif /* SUNOS_5 */
  28. #ifndef HAVE_SOCKLEN_T
  29. typedef int socklen_t;
  30. #endif /* HAVE_SOCKLEN_T */
  31. #include <unistd.h>
  32. #include <stdio.h>
  33. #include <stdlib.h>
  34. #include <ctype.h>
  35. #include <errno.h>
  36. #include <fcntl.h>
  37. #include <signal.h>
  38. #include <string.h>
  39. #ifdef HAVE_STROPTS_H
  40. #include <stropts.h>
  41. #endif /* HAVE_STROPTS_H */
  42. #include <sys/fcntl.h>
  43. #ifdef HAVE_SYS_SELECT_H
  44. #include <sys/select.h>
  45. #endif /* HAVE_SYS_SELECT_H */
  46. #include <sys/stat.h>
  47. #include <sys/time.h>
  48. #include <sys/types.h>
  49. #include <sys/param.h>
  50. #ifdef HAVE_SYS_SYSCTL_H
  51. #include <sys/sysctl.h>
  52. #endif /* HAVE_SYS_SYSCTL_H */
  53. #include <sys/ioctl.h>
  54. #ifdef HAVE_SYS_CONF_H
  55. #include <sys/conf.h>
  56. #endif /* HAVE_SYS_CONF_H */
  57. #ifdef HAVE_SYS_KSYM_H
  58. #include <sys/ksym.h>
  59. #endif /* HAVE_SYS_KSYM_H */
  60. #include <syslog.h>
  61. #include <time.h>
  62. #include <sys/uio.h>
  63. #include <sys/utsname.h>
  64. #ifdef HAVE_RUSAGE
  65. #include <sys/resource.h>
  66. #endif /* HAVE_RUSAGE */
  67. /* machine dependent includes */
  68. #ifdef SUNOS_5
  69. #include <limits.h>
  70. #include <strings.h>
  71. #endif /* SUNOS_5 */
  72. /* machine dependent includes */
  73. #ifdef HAVE_LINUX_VERSION_H
  74. #include <linux/version.h>
  75. #endif /* HAVE_LINUX_VERSION_H */
  76. #ifdef HAVE_ASM_TYPES_H
  77. #include <asm/types.h>
  78. #endif /* HAVE_ASM_TYPES_H */
  79. /* misc include group */
  80. #include <stdarg.h>
  81. #include <assert.h>
  82. /* network include group */
  83. #include <sys/socket.h>
  84. #ifdef HAVE_SYS_SOCKIO_H
  85. #include <sys/sockio.h>
  86. #endif /* HAVE_SYS_SOCKIO_H */
  87. #ifdef HAVE_NETINET_IN_H
  88. #include <netinet/in.h>
  89. #endif /* HAVE_NETINET_IN_H */
  90. #include <netinet/in_systm.h>
  91. #include <netinet/ip.h>
  92. #include <netinet/tcp.h>
  93. #ifdef HAVE_NET_NETOPT_H
  94. #include <net/netopt.h>
  95. #endif /* HAVE_NET_NETOPT_H */
  96. #include <net/if.h>
  97. #ifdef HAVE_NET_IF_DL_H
  98. #include <net/if_dl.h>
  99. #endif /* HAVE_NET_IF_DL_H */
  100. #ifdef HAVE_NET_IF_VAR_H
  101. #include <net/if_var.h>
  102. #endif /* HAVE_NET_IF_VAR_H */
  103. #include <net/route.h>
  104. #ifdef HAVE_NETLINK
  105. #include <linux/netlink.h>
  106. #include <linux/rtnetlink.h>
  107. #else
  108. #define RT_TABLE_MAIN 0
  109. #endif /* HAVE_NETLINK */
  110. #ifdef HAVE_NETDB_H
  111. #include <netdb.h>
  112. #endif /* HAVE_NETDB_H */
  113. #include <arpa/inet.h>
  114. #include <arpa/telnet.h>
  115. #ifdef HAVE_INET_ND_H
  116. #include <inet/nd.h>
  117. #endif /* HAVE_INET_ND_H */
  118. #ifdef HAVE_NETINET_IN_VAR_H
  119. #include <netinet/in_var.h>
  120. #endif /* HAVE_NETINET_IN_VAR_H */
  121. #ifdef HAVE_NETINET_IN6_VAR_H
  122. #include <netinet/in6_var.h>
  123. #endif /* HAVE_NETINET_IN6_VAR_H */
  124. #ifdef HAVE_NETINET6_IN_H
  125. #include <netinet6/in.h>
  126. #endif /* HAVE_NETINET6_IN_H */
  127. #ifdef HAVE_NETINET6_IP6_H
  128. #include <netinet6/ip6.h>
  129. #endif /* HAVE_NETINET6_IP6_H */
  130. #ifdef HAVE_NETINET_ICMP6_H
  131. #include <netinet/icmp6.h>
  132. #endif /* HAVE_NETINET_ICMP6_H */
  133. #ifdef HAVE_NETINET6_ND6_H
  134. #include <netinet6/nd6.h>
  135. #endif /* HAVE_NETINET6_ND6_H */
  136. #ifdef HAVE_LIBUTIL_H
  137. #include <libutil.h>
  138. #endif /* HAVE_LIBUTIL_H */
  139. #ifdef BSDI_NRL
  140. #ifdef HAVE_NETINET6_IN6_H
  141. #include <netinet6/in6.h>
  142. #endif /* HAVE_NETINET6_IN6_H */
  143. #ifdef NRL
  144. #include <netinet6/in6.h>
  145. #endif /* NRL */
  146. #define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
  147. /* BSD/OS 4.0 has lost belows defines, it should appear at
  148.    /usr/include/sys/socket.h.  */
  149. #define CMSG_ALIGN(n)           (((n) + 3) & ~3)
  150. #define CMSG_SPACE(l)   (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(l))
  151. #define CMSG_LEN(l)     (CMSG_ALIGN(sizeof(struct cmsghdr)) + (l))
  152. #endif /* BSDI_NRL */
  153. /*  The definition of struct in_pktinfo is missing in old version of
  154.     GLIBC 2.1 (Redhat 6.1).  */
  155. #if defined (GNU_LINUX) && ! defined (HAVE_INPKTINFO)
  156. struct in_pktinfo
  157. {
  158.   int ipi_ifindex;
  159.   struct in_addr ipi_spec_dst;
  160.   struct in_addr ipi_addr;
  161. };
  162. #endif
  163. /* OpenBSD release month check.  */
  164. #ifdef __OpenBSD__
  165. #if OpenBSD < 200311
  166. #define OpenBSD_IP_LEN
  167. #endif /* OpenBSD */
  168. #endif /* __OpenBSD__ */
  169. /* For old definition. */
  170. #ifndef IN6_ARE_ADDR_EQUAL
  171. #define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
  172. #endif /* IN6_ARE_ADDR_EQUAL */
  173. /* Zebra message types. */
  174. #define ZEBRA_INTERFACE_ADD                1
  175. #define ZEBRA_INTERFACE_DELETE             2
  176. #define ZEBRA_INTERFACE_ADDRESS_ADD        3
  177. #define ZEBRA_INTERFACE_ADDRESS_DELETE     4
  178. #define ZEBRA_INTERFACE_UP                 5
  179. #define ZEBRA_INTERFACE_DOWN               6
  180. #define ZEBRA_IPV4_ROUTE_ADD               7
  181. #define ZEBRA_IPV4_ROUTE_DELETE            8
  182. #define ZEBRA_IPV6_ROUTE_ADD               9
  183. #define ZEBRA_IPV6_ROUTE_DELETE           10
  184. #define ZEBRA_REDISTRIBUTE_ADD            11
  185. #define ZEBRA_REDISTRIBUTE_DELETE         12
  186. #define ZEBRA_REDISTRIBUTE_DEFAULT_ADD    13
  187. #define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14
  188. #define ZEBRA_IPV4_NEXTHOP_LOOKUP         15
  189. #define ZEBRA_IPV6_NEXTHOP_LOOKUP         16
  190. #define ZEBRA_IPV4_IMPORT_LOOKUP          17
  191. #define ZEBRA_IPV6_IMPORT_LOOKUP          18
  192. #define ZEBRA_MESSAGE_MAX                 19
  193. /* Zebra route's types. */
  194. #define ZEBRA_ROUTE_SYSTEM               0
  195. #define ZEBRA_ROUTE_KERNEL               1
  196. #define ZEBRA_ROUTE_CONNECT              2
  197. #define ZEBRA_ROUTE_STATIC               3
  198. #define ZEBRA_ROUTE_RIP                  4
  199. #define ZEBRA_ROUTE_RIPNG                5
  200. #define ZEBRA_ROUTE_OSPF                 6
  201. #define ZEBRA_ROUTE_OSPF6                7
  202. #define ZEBRA_ROUTE_BGP                  8
  203. #define ZEBRA_ROUTE_MAX                  9
  204. /* Zebra's family types. */
  205. #define ZEBRA_FAMILY_IPV4                1
  206. #define ZEBRA_FAMILY_IPV6                2
  207. #define ZEBRA_FAMILY_MAX                 3
  208. /* Error codes of zebra. */
  209. #define ZEBRA_ERR_RTEXIST               -1
  210. #define ZEBRA_ERR_RTUNREACH             -2
  211. #define ZEBRA_ERR_EPERM                 -3
  212. #define ZEBRA_ERR_RTNOEXIST             -4
  213. /* Zebra message flags */
  214. #define ZEBRA_FLAG_INTERNAL           0x01
  215. #define ZEBRA_FLAG_SELFROUTE          0x02
  216. #define ZEBRA_FLAG_BLACKHOLE          0x04
  217. #define ZEBRA_FLAG_IBGP               0x08
  218. #define ZEBRA_FLAG_SELECTED           0x10
  219. #define ZEBRA_FLAG_CHANGED            0x20
  220. #define ZEBRA_FLAG_STATIC             0x40
  221. /* Zebra nexthop flags. */
  222. #define ZEBRA_NEXTHOP_IFINDEX            1
  223. #define ZEBRA_NEXTHOP_IFNAME             2
  224. #define ZEBRA_NEXTHOP_IPV4               3
  225. #define ZEBRA_NEXTHOP_IPV4_IFINDEX       4
  226. #define ZEBRA_NEXTHOP_IPV4_IFNAME        5
  227. #define ZEBRA_NEXTHOP_IPV6               6
  228. #define ZEBRA_NEXTHOP_IPV6_IFINDEX       7
  229. #define ZEBRA_NEXTHOP_IPV6_IFNAME        8
  230. #define ZEBRA_NEXTHOP_BLACKHOLE          9 
  231. #ifndef INADDR_LOOPBACK
  232. #define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1.  */
  233. #endif
  234. /* Address family numbers from RFC1700. */
  235. #define AFI_IP                    1
  236. #define AFI_IP6                   2
  237. #define AFI_MAX                   3
  238. /* Subsequent Address Family Identifier. */
  239. #define SAFI_UNICAST              1
  240. #define SAFI_MULTICAST            2
  241. #define SAFI_UNICAST_MULTICAST    3
  242. #define SAFI_MPLS_VPN             4
  243. #define SAFI_MAX                  5
  244. /* Filter direction.  */
  245. #define FILTER_IN                 0
  246. #define FILTER_OUT                1
  247. #define FILTER_MAX                2
  248. /* Default Administrative Distance of each protocol. */
  249. #define ZEBRA_KERNEL_DISTANCE_DEFAULT      0
  250. #define ZEBRA_CONNECT_DISTANCE_DEFAULT     0
  251. #define ZEBRA_STATIC_DISTANCE_DEFAULT      1
  252. #define ZEBRA_RIP_DISTANCE_DEFAULT       120
  253. #define ZEBRA_RIPNG_DISTANCE_DEFAULT     120
  254. #define ZEBRA_OSPF_DISTANCE_DEFAULT      110
  255. #define ZEBRA_OSPF6_DISTANCE_DEFAULT     110
  256. #define ZEBRA_IBGP_DISTANCE_DEFAULT      200
  257. #define ZEBRA_EBGP_DISTANCE_DEFAULT       20
  258. /* Flag manipulation macros. */
  259. #define CHECK_FLAG(V,F)      ((V) & (F))
  260. #define SET_FLAG(V,F)        (V) = (V) | (F)
  261. #define UNSET_FLAG(V,F)      (V) = (V) & ~(F)
  262. /* AFI and SAFI type. */
  263. typedef u_int16_t afi_t;
  264. typedef u_char safi_t;
  265. /* Zebra types. */
  266. typedef u_int16_t zebra_size_t;
  267. typedef u_int8_t zebra_command_t;
  268. /* FIFO -- first in first out structure and macros.  */
  269. struct fifo
  270. {
  271.   struct fifo *next;
  272.   struct fifo *prev;
  273. };
  274. #define FIFO_INIT(F)                                  
  275.   do {                                                
  276.     struct fifo *Xfifo = (struct fifo *)(F);          
  277.     Xfifo->next = Xfifo->prev = Xfifo;                
  278.   } while (0)
  279. #define FIFO_ADD(F,N)                                 
  280.   do {                                                
  281.     struct fifo *Xfifo = (struct fifo *)(F);          
  282.     struct fifo *Xnode = (struct fifo *)(N);          
  283.     Xnode->next = Xfifo;                              
  284.     Xnode->prev = Xfifo->prev;                        
  285.     Xfifo->prev = Xfifo->prev->next = Xnode;          
  286.   } while (0)
  287. #define FIFO_DEL(N)                                   
  288.   do {                                                
  289.     struct fifo *Xnode = (struct fifo *)(N);          
  290.     Xnode->prev->next = Xnode->next;                  
  291.     Xnode->next->prev = Xnode->prev;                  
  292.   } while (0)
  293. #define FIFO_HEAD(F)                                  
  294.   ((((struct fifo *)(F))->next == (struct fifo *)(F)) 
  295.   ? NULL : (F)->next)
  296. #define FIFO_EMPTY(F)                                 
  297.   (((struct fifo *)(F))->next == (struct fifo *)(F))
  298. #define FIFO_TOP(F)                                   
  299.   (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
  300. #endif /* _ZEBRA_H */