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