paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* Zebra common header. |
| 2 | Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Kunihiro Ishiguro |
| 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 Free |
| 18 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 19 | 02111-1307, USA. */ |
| 20 | |
| 21 | #ifndef _ZEBRA_H |
| 22 | #define _ZEBRA_H |
| 23 | |
| 24 | #ifdef HAVE_CONFIG_H |
| 25 | #include "config.h" |
| 26 | #endif /* HAVE_CONFIG_H */ |
| 27 | |
| 28 | #ifdef SUNOS_5 |
| 29 | #define _XPG4_2 |
| 30 | #define __EXTENSIONS__ |
paul | 9bcdb63 | 2003-07-08 08:09:45 +0000 | [diff] [blame] | 31 | typedef unsigned int u_int32_t; |
| 32 | typedef unsigned short u_int16_t; |
| 33 | typedef unsigned char u_int8_t; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 34 | #endif /* SUNOS_5 */ |
| 35 | |
paul | f043852 | 2003-05-19 21:06:32 +0000 | [diff] [blame] | 36 | #ifndef HAVE_SOCKLEN_T |
| 37 | typedef int socklen_t; |
| 38 | #endif /* HAVE_SOCKLEN_T */ |
| 39 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 40 | #include <unistd.h> |
| 41 | #include <stdio.h> |
| 42 | #include <stdlib.h> |
| 43 | #include <ctype.h> |
| 44 | #include <errno.h> |
| 45 | #include <fcntl.h> |
| 46 | #include <signal.h> |
| 47 | #include <string.h> |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 48 | #include <pwd.h> |
| 49 | #include <grp.h> |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 50 | #ifdef HAVE_STROPTS_H |
| 51 | #include <stropts.h> |
| 52 | #endif /* HAVE_STROPTS_H */ |
| 53 | #include <sys/fcntl.h> |
| 54 | #ifdef HAVE_SYS_SELECT_H |
| 55 | #include <sys/select.h> |
| 56 | #endif /* HAVE_SYS_SELECT_H */ |
| 57 | #include <sys/stat.h> |
| 58 | #include <sys/time.h> |
| 59 | #include <sys/types.h> |
| 60 | #include <sys/param.h> |
| 61 | #ifdef HAVE_SYS_SYSCTL_H |
| 62 | #include <sys/sysctl.h> |
| 63 | #endif /* HAVE_SYS_SYSCTL_H */ |
| 64 | #include <sys/ioctl.h> |
| 65 | #ifdef HAVE_SYS_CONF_H |
| 66 | #include <sys/conf.h> |
| 67 | #endif /* HAVE_SYS_CONF_H */ |
| 68 | #ifdef HAVE_SYS_KSYM_H |
| 69 | #include <sys/ksym.h> |
| 70 | #endif /* HAVE_SYS_KSYM_H */ |
| 71 | #include <syslog.h> |
| 72 | #include <time.h> |
| 73 | #include <sys/uio.h> |
| 74 | #include <sys/utsname.h> |
| 75 | #ifdef HAVE_RUSAGE |
| 76 | #include <sys/resource.h> |
| 77 | #endif /* HAVE_RUSAGE */ |
paul | a58c25b | 2003-10-22 02:50:45 +0000 | [diff] [blame] | 78 | #ifdef HAVE_LIMITS_H |
| 79 | #include <limits.h> |
| 80 | #endif /* HAVE_LIMITS_H */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 81 | |
| 82 | /* machine dependent includes */ |
| 83 | #ifdef SUNOS_5 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 84 | #include <strings.h> |
| 85 | #endif /* SUNOS_5 */ |
| 86 | |
| 87 | /* machine dependent includes */ |
| 88 | #ifdef HAVE_LINUX_VERSION_H |
| 89 | #include <linux/version.h> |
| 90 | #endif /* HAVE_LINUX_VERSION_H */ |
| 91 | |
paul | ba965c6 | 2003-05-20 02:37:39 +0000 | [diff] [blame] | 92 | #ifdef HAVE_ASM_TYPES_H |
| 93 | #include <asm/types.h> |
| 94 | #endif /* HAVE_ASM_TYPES_H */ |
| 95 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 96 | /* misc include group */ |
| 97 | #include <stdarg.h> |
| 98 | #include <assert.h> |
| 99 | |
hasso | ba3a0bc | 2003-06-04 17:41:54 +0000 | [diff] [blame] | 100 | #ifdef HAVE_LCAPS |
| 101 | #include <sys/capability.h> |
| 102 | #include <sys/prctl.h> |
| 103 | #endif /* HAVE_LCAPS */ |
| 104 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 105 | /* network include group */ |
| 106 | |
| 107 | #include <sys/socket.h> |
| 108 | |
| 109 | #ifdef HAVE_SYS_SOCKIO_H |
| 110 | #include <sys/sockio.h> |
| 111 | #endif /* HAVE_SYS_SOCKIO_H */ |
| 112 | |
| 113 | #ifdef HAVE_NETINET_IN_H |
| 114 | #include <netinet/in.h> |
| 115 | #endif /* HAVE_NETINET_IN_H */ |
| 116 | #include <netinet/in_systm.h> |
| 117 | #include <netinet/ip.h> |
| 118 | #include <netinet/tcp.h> |
| 119 | |
| 120 | #ifdef HAVE_NET_NETOPT_H |
| 121 | #include <net/netopt.h> |
| 122 | #endif /* HAVE_NET_NETOPT_H */ |
| 123 | |
| 124 | #include <net/if.h> |
| 125 | |
| 126 | #ifdef HAVE_NET_IF_DL_H |
| 127 | #include <net/if_dl.h> |
| 128 | #endif /* HAVE_NET_IF_DL_H */ |
| 129 | |
| 130 | #ifdef HAVE_NET_IF_VAR_H |
| 131 | #include <net/if_var.h> |
| 132 | #endif /* HAVE_NET_IF_VAR_H */ |
| 133 | |
paul | a58c25b | 2003-10-22 02:50:45 +0000 | [diff] [blame] | 134 | #ifdef HAVE_NET_ROUTE_H |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 135 | #include <net/route.h> |
paul | a58c25b | 2003-10-22 02:50:45 +0000 | [diff] [blame] | 136 | #endif /* HAVE_NET_ROUTE_H */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 137 | |
| 138 | #ifdef HAVE_NETLINK |
| 139 | #include <linux/netlink.h> |
| 140 | #include <linux/rtnetlink.h> |
| 141 | #else |
| 142 | #define RT_TABLE_MAIN 0 |
| 143 | #endif /* HAVE_NETLINK */ |
| 144 | |
| 145 | #ifdef HAVE_NETDB_H |
| 146 | #include <netdb.h> |
| 147 | #endif /* HAVE_NETDB_H */ |
| 148 | |
| 149 | #include <arpa/inet.h> |
| 150 | #include <arpa/telnet.h> |
| 151 | |
| 152 | #ifdef HAVE_INET_ND_H |
| 153 | #include <inet/nd.h> |
| 154 | #endif /* HAVE_INET_ND_H */ |
| 155 | |
| 156 | #ifdef HAVE_NETINET_IN_VAR_H |
| 157 | #include <netinet/in_var.h> |
| 158 | #endif /* HAVE_NETINET_IN_VAR_H */ |
| 159 | |
hasso | 726f9b2 | 2003-05-25 21:04:54 +0000 | [diff] [blame] | 160 | #ifdef HAVE_NETINET6_IN6_VAR_H |
| 161 | #include <netinet6/in6_var.h> |
| 162 | #endif /* HAVE_NETINET6_IN6_VAR_H */ |
| 163 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 164 | #ifdef HAVE_NETINET_IN6_VAR_H |
| 165 | #include <netinet/in6_var.h> |
| 166 | #endif /* HAVE_NETINET_IN6_VAR_H */ |
| 167 | |
| 168 | #ifdef HAVE_NETINET6_IN_H |
| 169 | #include <netinet6/in.h> |
| 170 | #endif /* HAVE_NETINET6_IN_H */ |
| 171 | |
| 172 | |
| 173 | #ifdef HAVE_NETINET6_IP6_H |
| 174 | #include <netinet6/ip6.h> |
| 175 | #endif /* HAVE_NETINET6_IP6_H */ |
| 176 | |
| 177 | #ifdef HAVE_NETINET_ICMP6_H |
| 178 | #include <netinet/icmp6.h> |
| 179 | #endif /* HAVE_NETINET_ICMP6_H */ |
| 180 | |
| 181 | #ifdef HAVE_NETINET6_ND6_H |
| 182 | #include <netinet6/nd6.h> |
| 183 | #endif /* HAVE_NETINET6_ND6_H */ |
| 184 | |
paul | 3b42497 | 2003-10-13 09:47:32 +0000 | [diff] [blame] | 185 | /* Some systems do not define UINT32_MAX */ |
| 186 | #ifndef UINT32_MAX |
| 187 | #define UINT32_MAX 0xFFFFFFFFU |
| 188 | #endif /* UINT32_MAX */ |
| 189 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 190 | #ifdef HAVE_LIBUTIL_H |
| 191 | #include <libutil.h> |
| 192 | #endif /* HAVE_LIBUTIL_H */ |
| 193 | |
paul | fb2d150 | 2003-06-04 09:40:54 +0000 | [diff] [blame] | 194 | #ifdef HAVE_GLIBC_BACKTRACE |
| 195 | #include <execinfo.h> |
| 196 | #endif /* HAVE_GLIBC_BACKTRACE */ |
| 197 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 198 | #ifdef BSDI_NRL |
| 199 | |
| 200 | #ifdef HAVE_NETINET6_IN6_H |
| 201 | #include <netinet6/in6.h> |
| 202 | #endif /* HAVE_NETINET6_IN6_H */ |
| 203 | |
| 204 | #ifdef NRL |
| 205 | #include <netinet6/in6.h> |
| 206 | #endif /* NRL */ |
| 207 | |
| 208 | #define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL |
| 209 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 210 | #endif /* BSDI_NRL */ |
| 211 | |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 212 | /* |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 213 | * RFC 3542 defines several macros for using struct cmsghdr. |
| 214 | * Here, we define those that are not present |
| 215 | */ |
| 216 | |
| 217 | /* |
| 218 | * Internal defines, for use only in this file. |
| 219 | * These are likely wrong on other than ILP32 machines, so warn. |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 220 | */ |
| 221 | #ifndef _CMSG_DATA_ALIGN |
| 222 | #define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3) |
| 223 | #endif /* _CMSG_DATA_ALIGN */ |
| 224 | |
| 225 | #ifndef _CMSG_HDR_ALIGN |
| 226 | #define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3) |
| 227 | #endif /* _CMSG_HDR_ALIGN */ |
| 228 | |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 229 | /* |
| 230 | * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that |
| 231 | * version. |
| 232 | */ |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 233 | #ifndef CMSG_SPACE |
| 234 | #define CMSG_SPACE(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + \ |
| 235 | _CMSG_HDR_ALIGN(l)) |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 236 | #warning "assuming 4-byte alignment for CMSG_SPACE" |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 237 | #endif /* CMSG_SPACE */ |
| 238 | |
| 239 | |
| 240 | #ifndef CMSG_LEN |
| 241 | #define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l)) |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 242 | #warning "assuming 4-byte alignment for CMSG_LEN" |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 243 | #endif /* CMSG_LEN */ |
| 244 | |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 245 | |
| 246 | |
paul | 138ce75 | 2004-06-21 10:35:59 +0000 | [diff] [blame] | 247 | #if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL)) |
paul | 51a8798 | 2004-06-09 10:36:05 +0000 | [diff] [blame] | 248 | #define __attribute__(x) |
| 249 | #endif /* !__GNUC__ */ |
| 250 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 251 | /* The definition of struct in_pktinfo is missing in old version of |
| 252 | GLIBC 2.1 (Redhat 6.1). */ |
| 253 | #if defined (GNU_LINUX) && ! defined (HAVE_INPKTINFO) |
| 254 | struct in_pktinfo |
| 255 | { |
| 256 | int ipi_ifindex; |
| 257 | struct in_addr ipi_spec_dst; |
| 258 | struct in_addr ipi_addr; |
| 259 | }; |
| 260 | #endif |
| 261 | |
paul | 9172ee0 | 2004-09-27 12:46:37 +0000 | [diff] [blame] | 262 | /* |
| 263 | * OSPF Fragmentation / fragmented writes |
| 264 | * |
| 265 | * ospfd can support writing fragmented packets, for cases where |
| 266 | * kernel will not fragment IP_HDRINCL and/or multicast destined |
| 267 | * packets (ie TTBOMK all kernels, BSD, SunOS, Linux). However, |
| 268 | * SunOS, probably BSD too, clobber the user supplied IP ID and IP |
| 269 | * flags fields, hence user-space fragmentation will not work. |
| 270 | * Only Linux is known to leave IP header unmolested. |
| 271 | * Further, fragmentation really should be done the kernel, which already |
| 272 | * supports it, and which avoids nasty IP ID state problems. |
| 273 | * |
| 274 | * Fragmentation of OSPF packets can be required on networks with router |
| 275 | * with many many interfaces active in one area, or on networks with links |
| 276 | * with low MTUs. |
| 277 | */ |
| 278 | #ifdef GNU_LINUX |
| 279 | #define WANT_OSPF_WRITE_FRAGMENT |
| 280 | #endif |
| 281 | |
| 282 | /* |
| 283 | * IP_HDRINCL / struct ip byte order |
| 284 | * |
| 285 | * Linux: network byte order |
| 286 | * *BSD: network, except for length and offset. (cf Stevens) |
| 287 | * SunOS: nominally as per BSD. but bug: network order on LE. |
| 288 | * OpenBSD: network byte order, apart from older versions which are as per |
| 289 | * *BSD |
| 290 | */ |
| 291 | #if defined(__NetBSD__) || defined(__FreeBSD__) \ |
| 292 | || (defined(__OpenBSD__) && (OpenBSD < 200311)) \ |
| 293 | || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN)) |
| 294 | #define HAVE_IP_HDRINCL_BSD_ORDER |
| 295 | #endif |
| 296 | |
paul | efba6ce | 2004-08-25 13:47:16 +0000 | [diff] [blame] | 297 | /* MAX / MIN are not commonly defined, but useful */ |
| 298 | #ifndef MAX |
| 299 | #define MAX(a, b) ((a) > (b) ? (a) : (b)) |
| 300 | #endif |
| 301 | #ifndef MIN |
| 302 | #define MIN(a, b) ((a) < (b) ? (a) : (b)) |
| 303 | #endif |
| 304 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 305 | /* For old definition. */ |
| 306 | #ifndef IN6_ARE_ADDR_EQUAL |
| 307 | #define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL |
| 308 | #endif /* IN6_ARE_ADDR_EQUAL */ |
| 309 | |
| 310 | /* Zebra message types. */ |
| 311 | #define ZEBRA_INTERFACE_ADD 1 |
| 312 | #define ZEBRA_INTERFACE_DELETE 2 |
| 313 | #define ZEBRA_INTERFACE_ADDRESS_ADD 3 |
| 314 | #define ZEBRA_INTERFACE_ADDRESS_DELETE 4 |
| 315 | #define ZEBRA_INTERFACE_UP 5 |
| 316 | #define ZEBRA_INTERFACE_DOWN 6 |
| 317 | #define ZEBRA_IPV4_ROUTE_ADD 7 |
| 318 | #define ZEBRA_IPV4_ROUTE_DELETE 8 |
| 319 | #define ZEBRA_IPV6_ROUTE_ADD 9 |
| 320 | #define ZEBRA_IPV6_ROUTE_DELETE 10 |
| 321 | #define ZEBRA_REDISTRIBUTE_ADD 11 |
| 322 | #define ZEBRA_REDISTRIBUTE_DELETE 12 |
| 323 | #define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13 |
| 324 | #define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14 |
| 325 | #define ZEBRA_IPV4_NEXTHOP_LOOKUP 15 |
| 326 | #define ZEBRA_IPV6_NEXTHOP_LOOKUP 16 |
| 327 | #define ZEBRA_IPV4_IMPORT_LOOKUP 17 |
| 328 | #define ZEBRA_IPV6_IMPORT_LOOKUP 18 |
paul | efba6ce | 2004-08-25 13:47:16 +0000 | [diff] [blame] | 329 | #define ZEBRA_INTERFACE_RENAME 19 |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 330 | #define ZEBRA_ROUTER_ID_ADD 20 |
| 331 | #define ZEBRA_ROUTER_ID_DELETE 21 |
| 332 | #define ZEBRA_ROUTER_ID_UPDATE 22 |
| 333 | #define ZEBRA_MESSAGE_MAX 23 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 334 | |
| 335 | /* Zebra route's types. */ |
| 336 | #define ZEBRA_ROUTE_SYSTEM 0 |
| 337 | #define ZEBRA_ROUTE_KERNEL 1 |
| 338 | #define ZEBRA_ROUTE_CONNECT 2 |
| 339 | #define ZEBRA_ROUTE_STATIC 3 |
| 340 | #define ZEBRA_ROUTE_RIP 4 |
| 341 | #define ZEBRA_ROUTE_RIPNG 5 |
| 342 | #define ZEBRA_ROUTE_OSPF 6 |
| 343 | #define ZEBRA_ROUTE_OSPF6 7 |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 344 | #define ZEBRA_ROUTE_ISIS 8 |
| 345 | #define ZEBRA_ROUTE_BGP 9 |
paul | af0d97e | 2004-10-22 23:24:43 +0000 | [diff] [blame] | 346 | #define ZEBRA_ROUTE_HSLS 10 |
| 347 | #define ZEBRA_ROUTE_MAX 11 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 348 | |
| 349 | /* Zebra's family types. */ |
| 350 | #define ZEBRA_FAMILY_IPV4 1 |
| 351 | #define ZEBRA_FAMILY_IPV6 2 |
| 352 | #define ZEBRA_FAMILY_MAX 3 |
| 353 | |
| 354 | /* Error codes of zebra. */ |
| 355 | #define ZEBRA_ERR_RTEXIST -1 |
| 356 | #define ZEBRA_ERR_RTUNREACH -2 |
| 357 | #define ZEBRA_ERR_EPERM -3 |
| 358 | #define ZEBRA_ERR_RTNOEXIST -4 |
| 359 | |
| 360 | /* Zebra message flags */ |
| 361 | #define ZEBRA_FLAG_INTERNAL 0x01 |
| 362 | #define ZEBRA_FLAG_SELFROUTE 0x02 |
| 363 | #define ZEBRA_FLAG_BLACKHOLE 0x04 |
| 364 | #define ZEBRA_FLAG_IBGP 0x08 |
| 365 | #define ZEBRA_FLAG_SELECTED 0x10 |
| 366 | #define ZEBRA_FLAG_CHANGED 0x20 |
| 367 | #define ZEBRA_FLAG_STATIC 0x40 |
hasso | 81dfcaa | 2003-05-25 19:21:25 +0000 | [diff] [blame] | 368 | #define ZEBRA_FLAG_REJECT 0x80 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 369 | |
| 370 | /* Zebra nexthop flags. */ |
| 371 | #define ZEBRA_NEXTHOP_IFINDEX 1 |
| 372 | #define ZEBRA_NEXTHOP_IFNAME 2 |
| 373 | #define ZEBRA_NEXTHOP_IPV4 3 |
| 374 | #define ZEBRA_NEXTHOP_IPV4_IFINDEX 4 |
| 375 | #define ZEBRA_NEXTHOP_IPV4_IFNAME 5 |
| 376 | #define ZEBRA_NEXTHOP_IPV6 6 |
| 377 | #define ZEBRA_NEXTHOP_IPV6_IFINDEX 7 |
| 378 | #define ZEBRA_NEXTHOP_IPV6_IFNAME 8 |
paul | 595db7f | 2003-05-25 21:35:06 +0000 | [diff] [blame] | 379 | #define ZEBRA_NEXTHOP_BLACKHOLE 9 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 380 | |
| 381 | #ifndef INADDR_LOOPBACK |
| 382 | #define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */ |
| 383 | #endif |
| 384 | |
| 385 | /* Address family numbers from RFC1700. */ |
| 386 | #define AFI_IP 1 |
| 387 | #define AFI_IP6 2 |
| 388 | #define AFI_MAX 3 |
| 389 | |
| 390 | /* Subsequent Address Family Identifier. */ |
| 391 | #define SAFI_UNICAST 1 |
| 392 | #define SAFI_MULTICAST 2 |
| 393 | #define SAFI_UNICAST_MULTICAST 3 |
| 394 | #define SAFI_MPLS_VPN 4 |
| 395 | #define SAFI_MAX 5 |
| 396 | |
| 397 | /* Filter direction. */ |
| 398 | #define FILTER_IN 0 |
| 399 | #define FILTER_OUT 1 |
| 400 | #define FILTER_MAX 2 |
| 401 | |
| 402 | /* Default Administrative Distance of each protocol. */ |
| 403 | #define ZEBRA_KERNEL_DISTANCE_DEFAULT 0 |
| 404 | #define ZEBRA_CONNECT_DISTANCE_DEFAULT 0 |
| 405 | #define ZEBRA_STATIC_DISTANCE_DEFAULT 1 |
| 406 | #define ZEBRA_RIP_DISTANCE_DEFAULT 120 |
| 407 | #define ZEBRA_RIPNG_DISTANCE_DEFAULT 120 |
| 408 | #define ZEBRA_OSPF_DISTANCE_DEFAULT 110 |
| 409 | #define ZEBRA_OSPF6_DISTANCE_DEFAULT 110 |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 410 | #define ZEBRA_ISIS_DISTANCE_DEFAULT 115 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 411 | #define ZEBRA_IBGP_DISTANCE_DEFAULT 200 |
| 412 | #define ZEBRA_EBGP_DISTANCE_DEFAULT 20 |
| 413 | |
| 414 | /* Flag manipulation macros. */ |
| 415 | #define CHECK_FLAG(V,F) ((V) & (F)) |
| 416 | #define SET_FLAG(V,F) (V) = (V) | (F) |
| 417 | #define UNSET_FLAG(V,F) (V) = (V) & ~(F) |
| 418 | |
| 419 | /* AFI and SAFI type. */ |
| 420 | typedef u_int16_t afi_t; |
paul | 5228ad2 | 2004-06-04 17:58:18 +0000 | [diff] [blame] | 421 | typedef u_int8_t safi_t; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 422 | |
| 423 | /* Zebra types. */ |
| 424 | typedef u_int16_t zebra_size_t; |
| 425 | typedef u_int8_t zebra_command_t; |
| 426 | |
paul | f043852 | 2003-05-19 21:06:32 +0000 | [diff] [blame] | 427 | /* FIFO -- first in first out structure and macros. */ |
| 428 | struct fifo |
| 429 | { |
| 430 | struct fifo *next; |
| 431 | struct fifo *prev; |
| 432 | }; |
| 433 | |
| 434 | #define FIFO_INIT(F) \ |
| 435 | do { \ |
| 436 | struct fifo *Xfifo = (struct fifo *)(F); \ |
| 437 | Xfifo->next = Xfifo->prev = Xfifo; \ |
| 438 | } while (0) |
| 439 | |
| 440 | #define FIFO_ADD(F,N) \ |
| 441 | do { \ |
| 442 | struct fifo *Xfifo = (struct fifo *)(F); \ |
| 443 | struct fifo *Xnode = (struct fifo *)(N); \ |
| 444 | Xnode->next = Xfifo; \ |
| 445 | Xnode->prev = Xfifo->prev; \ |
| 446 | Xfifo->prev = Xfifo->prev->next = Xnode; \ |
| 447 | } while (0) |
| 448 | |
| 449 | #define FIFO_DEL(N) \ |
| 450 | do { \ |
| 451 | struct fifo *Xnode = (struct fifo *)(N); \ |
| 452 | Xnode->prev->next = Xnode->next; \ |
| 453 | Xnode->next->prev = Xnode->prev; \ |
| 454 | } while (0) |
| 455 | |
| 456 | #define FIFO_HEAD(F) \ |
| 457 | ((((struct fifo *)(F))->next == (struct fifo *)(F)) \ |
| 458 | ? NULL : (F)->next) |
| 459 | |
| 460 | #define FIFO_EMPTY(F) \ |
| 461 | (((struct fifo *)(F))->next == (struct fifo *)(F)) |
| 462 | |
| 463 | #define FIFO_TOP(F) \ |
| 464 | (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next) |
| 465 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 466 | #endif /* _ZEBRA_H */ |