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 | |
ajs | d66a7b5 | 2005-04-08 16:42:03 +0000 | [diff] [blame] | 28 | #ifdef GNU_LINUX |
| 29 | #define _GNU_SOURCE |
| 30 | #endif /* GNU_LINUX */ |
| 31 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 32 | #ifdef SUNOS_5 |
| 33 | #define _XPG4_2 |
| 34 | #define __EXTENSIONS__ |
paul | 9bcdb63 | 2003-07-08 08:09:45 +0000 | [diff] [blame] | 35 | typedef unsigned int u_int32_t; |
| 36 | typedef unsigned short u_int16_t; |
| 37 | typedef unsigned char u_int8_t; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 38 | #endif /* SUNOS_5 */ |
| 39 | |
paul | f043852 | 2003-05-19 21:06:32 +0000 | [diff] [blame] | 40 | #ifndef HAVE_SOCKLEN_T |
| 41 | typedef int socklen_t; |
| 42 | #endif /* HAVE_SOCKLEN_T */ |
| 43 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 44 | #include <unistd.h> |
| 45 | #include <stdio.h> |
| 46 | #include <stdlib.h> |
| 47 | #include <ctype.h> |
| 48 | #include <errno.h> |
| 49 | #include <fcntl.h> |
| 50 | #include <signal.h> |
| 51 | #include <string.h> |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 52 | #include <pwd.h> |
| 53 | #include <grp.h> |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 54 | #ifdef HAVE_STROPTS_H |
| 55 | #include <stropts.h> |
| 56 | #endif /* HAVE_STROPTS_H */ |
| 57 | #include <sys/fcntl.h> |
| 58 | #ifdef HAVE_SYS_SELECT_H |
| 59 | #include <sys/select.h> |
| 60 | #endif /* HAVE_SYS_SELECT_H */ |
| 61 | #include <sys/stat.h> |
| 62 | #include <sys/time.h> |
| 63 | #include <sys/types.h> |
| 64 | #include <sys/param.h> |
| 65 | #ifdef HAVE_SYS_SYSCTL_H |
| 66 | #include <sys/sysctl.h> |
| 67 | #endif /* HAVE_SYS_SYSCTL_H */ |
| 68 | #include <sys/ioctl.h> |
| 69 | #ifdef HAVE_SYS_CONF_H |
| 70 | #include <sys/conf.h> |
| 71 | #endif /* HAVE_SYS_CONF_H */ |
| 72 | #ifdef HAVE_SYS_KSYM_H |
| 73 | #include <sys/ksym.h> |
| 74 | #endif /* HAVE_SYS_KSYM_H */ |
| 75 | #include <syslog.h> |
| 76 | #include <time.h> |
| 77 | #include <sys/uio.h> |
| 78 | #include <sys/utsname.h> |
| 79 | #ifdef HAVE_RUSAGE |
| 80 | #include <sys/resource.h> |
| 81 | #endif /* HAVE_RUSAGE */ |
paul | a58c25b | 2003-10-22 02:50:45 +0000 | [diff] [blame] | 82 | #ifdef HAVE_LIMITS_H |
| 83 | #include <limits.h> |
| 84 | #endif /* HAVE_LIMITS_H */ |
paul | 76367ea | 2005-11-14 14:05:35 +0000 | [diff] [blame] | 85 | #ifdef HAVE_STDINT_H |
| 86 | #include <stdint.h> |
| 87 | #endif /* HAVE_STDINT_H */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 88 | |
| 89 | /* machine dependent includes */ |
| 90 | #ifdef SUNOS_5 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 91 | #include <strings.h> |
| 92 | #endif /* SUNOS_5 */ |
| 93 | |
| 94 | /* machine dependent includes */ |
| 95 | #ifdef HAVE_LINUX_VERSION_H |
| 96 | #include <linux/version.h> |
| 97 | #endif /* HAVE_LINUX_VERSION_H */ |
| 98 | |
paul | ba965c6 | 2003-05-20 02:37:39 +0000 | [diff] [blame] | 99 | #ifdef HAVE_ASM_TYPES_H |
| 100 | #include <asm/types.h> |
| 101 | #endif /* HAVE_ASM_TYPES_H */ |
| 102 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 103 | /* misc include group */ |
| 104 | #include <stdarg.h> |
ajs | 4cf0d0d | 2004-11-25 17:14:34 +0000 | [diff] [blame] | 105 | #if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) |
| 106 | /* Not C99; do we need to define va_copy? */ |
ajs | e22f551 | 2005-01-12 16:18:17 +0000 | [diff] [blame] | 107 | #ifndef va_copy |
| 108 | #ifdef __va_copy |
ajs | 4cf0d0d | 2004-11-25 17:14:34 +0000 | [diff] [blame] | 109 | #define va_copy(DST,SRC) __va_copy(DST,SRC) |
ajs | e22f551 | 2005-01-12 16:18:17 +0000 | [diff] [blame] | 110 | #else |
| 111 | /* Now we are desperate; this should work on many typical platforms. |
| 112 | But this is slightly dangerous, because the standard does not require |
| 113 | va_copy to be a macro. */ |
| 114 | #define va_copy(DST,SRC) memcpy(&(DST), &(SRC), sizeof(va_list)) |
| 115 | #warning "Not C99 and no va_copy macro available, falling back to memcpy" |
| 116 | #endif /* __va_copy */ |
| 117 | #endif /* !va_copy */ |
ajs | 4cf0d0d | 2004-11-25 17:14:34 +0000 | [diff] [blame] | 118 | #endif /* !C99 */ |
ajs | db8eaac | 2005-03-16 16:13:06 +0000 | [diff] [blame] | 119 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 120 | |
hasso | ba3a0bc | 2003-06-04 17:41:54 +0000 | [diff] [blame] | 121 | #ifdef HAVE_LCAPS |
| 122 | #include <sys/capability.h> |
| 123 | #include <sys/prctl.h> |
| 124 | #endif /* HAVE_LCAPS */ |
| 125 | |
paul | ceacedb | 2005-09-29 14:39:32 +0000 | [diff] [blame] | 126 | #ifdef HAVE_SOLARIS_CAPABILITIES |
| 127 | #include <priv.h> |
| 128 | #endif /* HAVE_SOLARIS_CAPABILITIES */ |
| 129 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 130 | /* network include group */ |
| 131 | |
| 132 | #include <sys/socket.h> |
| 133 | |
| 134 | #ifdef HAVE_SYS_SOCKIO_H |
| 135 | #include <sys/sockio.h> |
| 136 | #endif /* HAVE_SYS_SOCKIO_H */ |
| 137 | |
| 138 | #ifdef HAVE_NETINET_IN_H |
| 139 | #include <netinet/in.h> |
| 140 | #endif /* HAVE_NETINET_IN_H */ |
| 141 | #include <netinet/in_systm.h> |
| 142 | #include <netinet/ip.h> |
| 143 | #include <netinet/tcp.h> |
| 144 | |
| 145 | #ifdef HAVE_NET_NETOPT_H |
| 146 | #include <net/netopt.h> |
| 147 | #endif /* HAVE_NET_NETOPT_H */ |
| 148 | |
| 149 | #include <net/if.h> |
| 150 | |
| 151 | #ifdef HAVE_NET_IF_DL_H |
| 152 | #include <net/if_dl.h> |
| 153 | #endif /* HAVE_NET_IF_DL_H */ |
| 154 | |
| 155 | #ifdef HAVE_NET_IF_VAR_H |
| 156 | #include <net/if_var.h> |
| 157 | #endif /* HAVE_NET_IF_VAR_H */ |
| 158 | |
paul | a58c25b | 2003-10-22 02:50:45 +0000 | [diff] [blame] | 159 | #ifdef HAVE_NET_ROUTE_H |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 160 | #include <net/route.h> |
paul | a58c25b | 2003-10-22 02:50:45 +0000 | [diff] [blame] | 161 | #endif /* HAVE_NET_ROUTE_H */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 162 | |
| 163 | #ifdef HAVE_NETLINK |
| 164 | #include <linux/netlink.h> |
| 165 | #include <linux/rtnetlink.h> |
| 166 | #else |
| 167 | #define RT_TABLE_MAIN 0 |
| 168 | #endif /* HAVE_NETLINK */ |
| 169 | |
| 170 | #ifdef HAVE_NETDB_H |
| 171 | #include <netdb.h> |
| 172 | #endif /* HAVE_NETDB_H */ |
| 173 | |
| 174 | #include <arpa/inet.h> |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 175 | |
| 176 | #ifdef HAVE_INET_ND_H |
| 177 | #include <inet/nd.h> |
| 178 | #endif /* HAVE_INET_ND_H */ |
| 179 | |
| 180 | #ifdef HAVE_NETINET_IN_VAR_H |
| 181 | #include <netinet/in_var.h> |
| 182 | #endif /* HAVE_NETINET_IN_VAR_H */ |
| 183 | |
hasso | 726f9b2 | 2003-05-25 21:04:54 +0000 | [diff] [blame] | 184 | #ifdef HAVE_NETINET6_IN6_VAR_H |
| 185 | #include <netinet6/in6_var.h> |
| 186 | #endif /* HAVE_NETINET6_IN6_VAR_H */ |
| 187 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 188 | #ifdef HAVE_NETINET_IN6_VAR_H |
| 189 | #include <netinet/in6_var.h> |
| 190 | #endif /* HAVE_NETINET_IN6_VAR_H */ |
| 191 | |
| 192 | #ifdef HAVE_NETINET6_IN_H |
| 193 | #include <netinet6/in.h> |
| 194 | #endif /* HAVE_NETINET6_IN_H */ |
| 195 | |
| 196 | |
| 197 | #ifdef HAVE_NETINET6_IP6_H |
| 198 | #include <netinet6/ip6.h> |
| 199 | #endif /* HAVE_NETINET6_IP6_H */ |
| 200 | |
| 201 | #ifdef HAVE_NETINET_ICMP6_H |
| 202 | #include <netinet/icmp6.h> |
| 203 | #endif /* HAVE_NETINET_ICMP6_H */ |
| 204 | |
| 205 | #ifdef HAVE_NETINET6_ND6_H |
| 206 | #include <netinet6/nd6.h> |
| 207 | #endif /* HAVE_NETINET6_ND6_H */ |
| 208 | |
paul | 3b42497 | 2003-10-13 09:47:32 +0000 | [diff] [blame] | 209 | /* Some systems do not define UINT32_MAX */ |
| 210 | #ifndef UINT32_MAX |
| 211 | #define UINT32_MAX 0xFFFFFFFFU |
| 212 | #endif /* UINT32_MAX */ |
| 213 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 214 | #ifdef HAVE_LIBUTIL_H |
| 215 | #include <libutil.h> |
| 216 | #endif /* HAVE_LIBUTIL_H */ |
| 217 | |
paul | fb2d150 | 2003-06-04 09:40:54 +0000 | [diff] [blame] | 218 | #ifdef HAVE_GLIBC_BACKTRACE |
| 219 | #include <execinfo.h> |
| 220 | #endif /* HAVE_GLIBC_BACKTRACE */ |
| 221 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 222 | #ifdef BSDI_NRL |
| 223 | |
| 224 | #ifdef HAVE_NETINET6_IN6_H |
| 225 | #include <netinet6/in6.h> |
| 226 | #endif /* HAVE_NETINET6_IN6_H */ |
| 227 | |
| 228 | #ifdef NRL |
| 229 | #include <netinet6/in6.h> |
| 230 | #endif /* NRL */ |
| 231 | |
| 232 | #define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL |
| 233 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 234 | #endif /* BSDI_NRL */ |
| 235 | |
ajs | db8eaac | 2005-03-16 16:13:06 +0000 | [diff] [blame] | 236 | /* Local includes: */ |
| 237 | #if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL)) |
| 238 | #define __attribute__(x) |
| 239 | #endif /* !__GNUC__ || VTYSH_EXTRACT_PL */ |
| 240 | |
| 241 | #include "zassert.h" |
ajs | 3cb98de | 2005-04-02 16:01:05 +0000 | [diff] [blame] | 242 | #include "str.h" |
ajs | db8eaac | 2005-03-16 16:13:06 +0000 | [diff] [blame] | 243 | |
| 244 | |
ajs | b99760a | 2005-01-04 16:24:43 +0000 | [diff] [blame] | 245 | #ifdef HAVE_BROKEN_CMSG_FIRSTHDR |
| 246 | /* This bug is present in Solaris 8 and pre-patch Solaris 9 <sys/socket.h>; |
| 247 | please refer to http://bugzilla.quagga.net/show_bug.cgi?id=142 */ |
| 248 | |
| 249 | /* Check that msg_controllen is large enough. */ |
| 250 | #define ZCMSG_FIRSTHDR(mhdr) \ |
| 251 | (((size_t)((mhdr)->msg_controllen) >= sizeof(struct cmsghdr)) ? \ |
| 252 | CMSG_FIRSTHDR(mhdr) : (struct cmsghdr *)NULL) |
| 253 | |
| 254 | #warning "CMSG_FIRSTHDR is broken on this platform, using a workaround" |
| 255 | |
| 256 | #else /* HAVE_BROKEN_CMSG_FIRSTHDR */ |
| 257 | #define ZCMSG_FIRSTHDR(M) CMSG_FIRSTHDR(M) |
| 258 | #endif /* HAVE_BROKEN_CMSG_FIRSTHDR */ |
| 259 | |
| 260 | |
| 261 | |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 262 | /* |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 263 | * RFC 3542 defines several macros for using struct cmsghdr. |
| 264 | * Here, we define those that are not present |
| 265 | */ |
| 266 | |
| 267 | /* |
| 268 | * Internal defines, for use only in this file. |
| 269 | * These are likely wrong on other than ILP32 machines, so warn. |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 270 | */ |
| 271 | #ifndef _CMSG_DATA_ALIGN |
| 272 | #define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3) |
| 273 | #endif /* _CMSG_DATA_ALIGN */ |
| 274 | |
| 275 | #ifndef _CMSG_HDR_ALIGN |
| 276 | #define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3) |
| 277 | #endif /* _CMSG_HDR_ALIGN */ |
| 278 | |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 279 | /* |
| 280 | * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that |
| 281 | * version. |
| 282 | */ |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 283 | #ifndef CMSG_SPACE |
| 284 | #define CMSG_SPACE(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + \ |
| 285 | _CMSG_HDR_ALIGN(l)) |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 286 | #warning "assuming 4-byte alignment for CMSG_SPACE" |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 287 | #endif /* CMSG_SPACE */ |
| 288 | |
| 289 | |
| 290 | #ifndef CMSG_LEN |
| 291 | #define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l)) |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 292 | #warning "assuming 4-byte alignment for CMSG_LEN" |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 293 | #endif /* CMSG_LEN */ |
| 294 | |
gdt | 69e1325 | 2004-11-15 18:51:15 +0000 | [diff] [blame] | 295 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 296 | /* The definition of struct in_pktinfo is missing in old version of |
| 297 | GLIBC 2.1 (Redhat 6.1). */ |
| 298 | #if defined (GNU_LINUX) && ! defined (HAVE_INPKTINFO) |
| 299 | struct in_pktinfo |
| 300 | { |
| 301 | int ipi_ifindex; |
| 302 | struct in_addr ipi_spec_dst; |
| 303 | struct in_addr ipi_addr; |
| 304 | }; |
| 305 | #endif |
| 306 | |
paul | 9172ee0 | 2004-09-27 12:46:37 +0000 | [diff] [blame] | 307 | /* |
| 308 | * OSPF Fragmentation / fragmented writes |
| 309 | * |
| 310 | * ospfd can support writing fragmented packets, for cases where |
| 311 | * kernel will not fragment IP_HDRINCL and/or multicast destined |
| 312 | * packets (ie TTBOMK all kernels, BSD, SunOS, Linux). However, |
| 313 | * SunOS, probably BSD too, clobber the user supplied IP ID and IP |
| 314 | * flags fields, hence user-space fragmentation will not work. |
| 315 | * Only Linux is known to leave IP header unmolested. |
| 316 | * Further, fragmentation really should be done the kernel, which already |
| 317 | * supports it, and which avoids nasty IP ID state problems. |
| 318 | * |
| 319 | * Fragmentation of OSPF packets can be required on networks with router |
| 320 | * with many many interfaces active in one area, or on networks with links |
| 321 | * with low MTUs. |
| 322 | */ |
| 323 | #ifdef GNU_LINUX |
| 324 | #define WANT_OSPF_WRITE_FRAGMENT |
| 325 | #endif |
| 326 | |
| 327 | /* |
| 328 | * IP_HDRINCL / struct ip byte order |
| 329 | * |
| 330 | * Linux: network byte order |
| 331 | * *BSD: network, except for length and offset. (cf Stevens) |
| 332 | * SunOS: nominally as per BSD. but bug: network order on LE. |
| 333 | * OpenBSD: network byte order, apart from older versions which are as per |
| 334 | * *BSD |
| 335 | */ |
| 336 | #if defined(__NetBSD__) || defined(__FreeBSD__) \ |
| 337 | || (defined(__OpenBSD__) && (OpenBSD < 200311)) \ |
| 338 | || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN)) |
| 339 | #define HAVE_IP_HDRINCL_BSD_ORDER |
| 340 | #endif |
| 341 | |
paul | 34204aa | 2005-11-03 09:00:23 +0000 | [diff] [blame] | 342 | /* Define BYTE_ORDER, if not defined. Useful for compiler conditional |
| 343 | * code, rather than preprocessor conditional. |
| 344 | * Not all the world has this BSD define. |
| 345 | */ |
| 346 | #ifndef BYTE_ORDER |
| 347 | #define BIG_ENDIAN 4321 /* least-significant byte first (vax, pc) */ |
| 348 | #define LITTLE_ENDIAN 1234 /* most-significant byte first (IBM, net) */ |
| 349 | #define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp) */ |
| 350 | |
| 351 | #if defined(WORDS_BIGENDIAN) |
| 352 | #define BYTE_ORDER BIG_ENDIAN |
| 353 | #else /* !WORDS_BIGENDIAN */ |
| 354 | #define BYTE_ORDER LITTLE_ENDIAN |
| 355 | #endif /* WORDS_BIGENDIAN */ |
| 356 | |
| 357 | #endif /* ndef BYTE_ORDER */ |
| 358 | |
paul | efba6ce | 2004-08-25 13:47:16 +0000 | [diff] [blame] | 359 | /* MAX / MIN are not commonly defined, but useful */ |
| 360 | #ifndef MAX |
| 361 | #define MAX(a, b) ((a) > (b) ? (a) : (b)) |
| 362 | #endif |
| 363 | #ifndef MIN |
| 364 | #define MIN(a, b) ((a) < (b) ? (a) : (b)) |
| 365 | #endif |
| 366 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 367 | /* For old definition. */ |
| 368 | #ifndef IN6_ARE_ADDR_EQUAL |
| 369 | #define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL |
| 370 | #endif /* IN6_ARE_ADDR_EQUAL */ |
| 371 | |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 372 | /* default zebra TCP port for zclient */ |
| 373 | #define ZEBRA_PORT 2600 |
| 374 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 375 | /* Zebra message types. */ |
| 376 | #define ZEBRA_INTERFACE_ADD 1 |
| 377 | #define ZEBRA_INTERFACE_DELETE 2 |
| 378 | #define ZEBRA_INTERFACE_ADDRESS_ADD 3 |
| 379 | #define ZEBRA_INTERFACE_ADDRESS_DELETE 4 |
| 380 | #define ZEBRA_INTERFACE_UP 5 |
| 381 | #define ZEBRA_INTERFACE_DOWN 6 |
| 382 | #define ZEBRA_IPV4_ROUTE_ADD 7 |
| 383 | #define ZEBRA_IPV4_ROUTE_DELETE 8 |
| 384 | #define ZEBRA_IPV6_ROUTE_ADD 9 |
| 385 | #define ZEBRA_IPV6_ROUTE_DELETE 10 |
| 386 | #define ZEBRA_REDISTRIBUTE_ADD 11 |
| 387 | #define ZEBRA_REDISTRIBUTE_DELETE 12 |
| 388 | #define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13 |
| 389 | #define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14 |
| 390 | #define ZEBRA_IPV4_NEXTHOP_LOOKUP 15 |
| 391 | #define ZEBRA_IPV6_NEXTHOP_LOOKUP 16 |
| 392 | #define ZEBRA_IPV4_IMPORT_LOOKUP 17 |
| 393 | #define ZEBRA_IPV6_IMPORT_LOOKUP 18 |
paul | efba6ce | 2004-08-25 13:47:16 +0000 | [diff] [blame] | 394 | #define ZEBRA_INTERFACE_RENAME 19 |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 395 | #define ZEBRA_ROUTER_ID_ADD 20 |
| 396 | #define ZEBRA_ROUTER_ID_DELETE 21 |
| 397 | #define ZEBRA_ROUTER_ID_UPDATE 22 |
| 398 | #define ZEBRA_MESSAGE_MAX 23 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 399 | |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 400 | /* Marker value used in new Zserv, in the byte location corresponding |
| 401 | * the command value in the old zserv header. To allow old and new |
| 402 | * Zserv headers to be distinguished from each other. |
| 403 | */ |
| 404 | #define ZEBRA_HEADER_MARKER 255 |
| 405 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 406 | /* Zebra route's types. */ |
| 407 | #define ZEBRA_ROUTE_SYSTEM 0 |
| 408 | #define ZEBRA_ROUTE_KERNEL 1 |
| 409 | #define ZEBRA_ROUTE_CONNECT 2 |
| 410 | #define ZEBRA_ROUTE_STATIC 3 |
| 411 | #define ZEBRA_ROUTE_RIP 4 |
| 412 | #define ZEBRA_ROUTE_RIPNG 5 |
| 413 | #define ZEBRA_ROUTE_OSPF 6 |
| 414 | #define ZEBRA_ROUTE_OSPF6 7 |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 415 | #define ZEBRA_ROUTE_ISIS 8 |
| 416 | #define ZEBRA_ROUTE_BGP 9 |
paul | af0d97e | 2004-10-22 23:24:43 +0000 | [diff] [blame] | 417 | #define ZEBRA_ROUTE_HSLS 10 |
| 418 | #define ZEBRA_ROUTE_MAX 11 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 419 | |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 420 | /* Note: whenever a new route type is added (or the numbering is changed), |
| 421 | the route_types[] table in lib/log.c must be updated! */ |
| 422 | |
| 423 | /* Map a route type to a string. For example, ZEBRA_ROUTE_RIPNG -> "ripng". */ |
paul | b602607 | 2005-11-24 12:51:24 +0000 | [diff] [blame] | 424 | extern const char *zebra_route_string(unsigned int route_type); |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 425 | /* Map a route type to a char. For example, ZEBRA_ROUTE_RIPNG -> 'R'. */ |
paul | b602607 | 2005-11-24 12:51:24 +0000 | [diff] [blame] | 426 | extern char zebra_route_char(unsigned int route_type); |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 427 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 428 | /* Zebra's family types. */ |
| 429 | #define ZEBRA_FAMILY_IPV4 1 |
| 430 | #define ZEBRA_FAMILY_IPV6 2 |
| 431 | #define ZEBRA_FAMILY_MAX 3 |
| 432 | |
| 433 | /* Error codes of zebra. */ |
| 434 | #define ZEBRA_ERR_RTEXIST -1 |
| 435 | #define ZEBRA_ERR_RTUNREACH -2 |
| 436 | #define ZEBRA_ERR_EPERM -3 |
| 437 | #define ZEBRA_ERR_RTNOEXIST -4 |
| 438 | |
| 439 | /* Zebra message flags */ |
| 440 | #define ZEBRA_FLAG_INTERNAL 0x01 |
| 441 | #define ZEBRA_FLAG_SELFROUTE 0x02 |
| 442 | #define ZEBRA_FLAG_BLACKHOLE 0x04 |
| 443 | #define ZEBRA_FLAG_IBGP 0x08 |
| 444 | #define ZEBRA_FLAG_SELECTED 0x10 |
| 445 | #define ZEBRA_FLAG_CHANGED 0x20 |
| 446 | #define ZEBRA_FLAG_STATIC 0x40 |
hasso | 81dfcaa | 2003-05-25 19:21:25 +0000 | [diff] [blame] | 447 | #define ZEBRA_FLAG_REJECT 0x80 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 448 | |
| 449 | /* Zebra nexthop flags. */ |
| 450 | #define ZEBRA_NEXTHOP_IFINDEX 1 |
| 451 | #define ZEBRA_NEXTHOP_IFNAME 2 |
| 452 | #define ZEBRA_NEXTHOP_IPV4 3 |
| 453 | #define ZEBRA_NEXTHOP_IPV4_IFINDEX 4 |
| 454 | #define ZEBRA_NEXTHOP_IPV4_IFNAME 5 |
| 455 | #define ZEBRA_NEXTHOP_IPV6 6 |
| 456 | #define ZEBRA_NEXTHOP_IPV6_IFINDEX 7 |
| 457 | #define ZEBRA_NEXTHOP_IPV6_IFNAME 8 |
paul | 595db7f | 2003-05-25 21:35:06 +0000 | [diff] [blame] | 458 | #define ZEBRA_NEXTHOP_BLACKHOLE 9 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 459 | |
| 460 | #ifndef INADDR_LOOPBACK |
| 461 | #define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */ |
| 462 | #endif |
| 463 | |
| 464 | /* Address family numbers from RFC1700. */ |
| 465 | #define AFI_IP 1 |
| 466 | #define AFI_IP6 2 |
| 467 | #define AFI_MAX 3 |
| 468 | |
| 469 | /* Subsequent Address Family Identifier. */ |
| 470 | #define SAFI_UNICAST 1 |
| 471 | #define SAFI_MULTICAST 2 |
| 472 | #define SAFI_UNICAST_MULTICAST 3 |
| 473 | #define SAFI_MPLS_VPN 4 |
| 474 | #define SAFI_MAX 5 |
| 475 | |
| 476 | /* Filter direction. */ |
| 477 | #define FILTER_IN 0 |
| 478 | #define FILTER_OUT 1 |
| 479 | #define FILTER_MAX 2 |
| 480 | |
| 481 | /* Default Administrative Distance of each protocol. */ |
| 482 | #define ZEBRA_KERNEL_DISTANCE_DEFAULT 0 |
| 483 | #define ZEBRA_CONNECT_DISTANCE_DEFAULT 0 |
| 484 | #define ZEBRA_STATIC_DISTANCE_DEFAULT 1 |
| 485 | #define ZEBRA_RIP_DISTANCE_DEFAULT 120 |
| 486 | #define ZEBRA_RIPNG_DISTANCE_DEFAULT 120 |
| 487 | #define ZEBRA_OSPF_DISTANCE_DEFAULT 110 |
| 488 | #define ZEBRA_OSPF6_DISTANCE_DEFAULT 110 |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 489 | #define ZEBRA_ISIS_DISTANCE_DEFAULT 115 |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 490 | #define ZEBRA_IBGP_DISTANCE_DEFAULT 200 |
| 491 | #define ZEBRA_EBGP_DISTANCE_DEFAULT 20 |
| 492 | |
| 493 | /* Flag manipulation macros. */ |
| 494 | #define CHECK_FLAG(V,F) ((V) & (F)) |
ajs | 548e6f7 | 2005-02-08 15:57:25 +0000 | [diff] [blame] | 495 | #define SET_FLAG(V,F) (V) |= (F) |
| 496 | #define UNSET_FLAG(V,F) (V) &= ~(F) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 497 | |
| 498 | /* AFI and SAFI type. */ |
| 499 | typedef u_int16_t afi_t; |
paul | 5228ad2 | 2004-06-04 17:58:18 +0000 | [diff] [blame] | 500 | typedef u_int8_t safi_t; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 501 | |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 502 | /* Zebra types. Used in Zserv message header. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 503 | typedef u_int16_t zebra_size_t; |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 504 | typedef u_int16_t zebra_command_t; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 505 | |
paul | f043852 | 2003-05-19 21:06:32 +0000 | [diff] [blame] | 506 | /* FIFO -- first in first out structure and macros. */ |
| 507 | struct fifo |
| 508 | { |
| 509 | struct fifo *next; |
| 510 | struct fifo *prev; |
| 511 | }; |
| 512 | |
| 513 | #define FIFO_INIT(F) \ |
| 514 | do { \ |
| 515 | struct fifo *Xfifo = (struct fifo *)(F); \ |
| 516 | Xfifo->next = Xfifo->prev = Xfifo; \ |
| 517 | } while (0) |
| 518 | |
| 519 | #define FIFO_ADD(F,N) \ |
| 520 | do { \ |
| 521 | struct fifo *Xfifo = (struct fifo *)(F); \ |
| 522 | struct fifo *Xnode = (struct fifo *)(N); \ |
| 523 | Xnode->next = Xfifo; \ |
| 524 | Xnode->prev = Xfifo->prev; \ |
| 525 | Xfifo->prev = Xfifo->prev->next = Xnode; \ |
| 526 | } while (0) |
| 527 | |
| 528 | #define FIFO_DEL(N) \ |
| 529 | do { \ |
| 530 | struct fifo *Xnode = (struct fifo *)(N); \ |
| 531 | Xnode->prev->next = Xnode->next; \ |
| 532 | Xnode->next->prev = Xnode->prev; \ |
| 533 | } while (0) |
| 534 | |
| 535 | #define FIFO_HEAD(F) \ |
| 536 | ((((struct fifo *)(F))->next == (struct fifo *)(F)) \ |
| 537 | ? NULL : (F)->next) |
| 538 | |
| 539 | #define FIFO_EMPTY(F) \ |
| 540 | (((struct fifo *)(F))->next == (struct fifo *)(F)) |
| 541 | |
| 542 | #define FIFO_TOP(F) \ |
| 543 | (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next) |
| 544 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 545 | #endif /* _ZEBRA_H */ |