blob: 67d714cf83dcb04629e7221599a0936dea24b656 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Zebra common header.
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Kunihiro Ishiguro
Everton Marques871dbcf2009-08-11 15:43:05 -03003 Portions Copyright (c) 2008 Everton da Silva Marques <everton.marques@gmail.com>
paul718e3742002-12-13 20:15:29 +00004
5This file is part of GNU Zebra.
6
7GNU Zebra is free software; you can redistribute it and/or modify it
8under the terms of the GNU General Public License as published by the
9Free Software Foundation; either version 2, or (at your option) any
10later version.
11
12GNU Zebra is distributed in the hope that it will be useful, but
13WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Zebra; see the file COPYING. If not, write to the Free
19Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
21
22#ifndef _ZEBRA_H
23#define _ZEBRA_H
24
25#ifdef HAVE_CONFIG_H
26#include "config.h"
27#endif /* HAVE_CONFIG_H */
28
29#ifdef SUNOS_5
30#define _XPG4_2
31#define __EXTENSIONS__
paul9bcdb632003-07-08 08:09:45 +000032typedef unsigned int u_int32_t;
33typedef unsigned short u_int16_t;
34typedef unsigned char u_int8_t;
paul718e3742002-12-13 20:15:29 +000035#endif /* SUNOS_5 */
36
paulf0438522003-05-19 21:06:32 +000037#ifndef HAVE_SOCKLEN_T
38typedef int socklen_t;
39#endif /* HAVE_SOCKLEN_T */
40
paul718e3742002-12-13 20:15:29 +000041#include <unistd.h>
42#include <stdio.h>
43#include <stdlib.h>
David Lamparterc423d412013-07-30 15:36:26 +020044#include <stddef.h>
paul718e3742002-12-13 20:15:29 +000045#include <ctype.h>
46#include <errno.h>
47#include <fcntl.h>
48#include <signal.h>
49#include <string.h>
pauledd7c242003-06-04 13:59:38 +000050#include <pwd.h>
51#include <grp.h>
paul718e3742002-12-13 20:15:29 +000052#ifdef HAVE_STROPTS_H
53#include <stropts.h>
54#endif /* HAVE_STROPTS_H */
paul718e3742002-12-13 20:15:29 +000055#ifdef HAVE_SYS_SELECT_H
56#include <sys/select.h>
57#endif /* HAVE_SYS_SELECT_H */
58#include <sys/stat.h>
paul718e3742002-12-13 20:15:29 +000059#include <sys/types.h>
60#include <sys/param.h>
61#ifdef HAVE_SYS_SYSCTL_H
Andrew J. Schorr0dc0b702007-06-01 13:21:20 +000062#ifdef GNU_LINUX
63#include <linux/types.h>
64#endif
paul718e3742002-12-13 20:15:29 +000065#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>
Paul Jakma6511cab2009-06-18 17:38:01 +010075#ifdef TIME_WITH_SYS_TIME
76# include <sys/time.h>
77# include <time.h>
78#else
79# ifdef HAVE_SYS_TIME_H
80# include <sys/time.h>
81# else
82# include <time.h>
83# endif
84#endif /* TIME_WITH_SYS_TIME */
paul718e3742002-12-13 20:15:29 +000085#include <sys/uio.h>
86#include <sys/utsname.h>
87#ifdef HAVE_RUSAGE
88#include <sys/resource.h>
89#endif /* HAVE_RUSAGE */
paula58c25b2003-10-22 02:50:45 +000090#ifdef HAVE_LIMITS_H
91#include <limits.h>
92#endif /* HAVE_LIMITS_H */
Paul Jakma35cfc902006-05-28 08:08:24 +000093#ifdef HAVE_INTTYPES_H
94#include <inttypes.h>
95#endif /* HAVE_INTTYPES_H */
paul718e3742002-12-13 20:15:29 +000096
97/* machine dependent includes */
98#ifdef SUNOS_5
paul718e3742002-12-13 20:15:29 +000099#include <strings.h>
100#endif /* SUNOS_5 */
101
102/* machine dependent includes */
103#ifdef HAVE_LINUX_VERSION_H
104#include <linux/version.h>
105#endif /* HAVE_LINUX_VERSION_H */
106
paulba965c62003-05-20 02:37:39 +0000107#ifdef HAVE_ASM_TYPES_H
108#include <asm/types.h>
109#endif /* HAVE_ASM_TYPES_H */
110
paul718e3742002-12-13 20:15:29 +0000111/* misc include group */
112#include <stdarg.h>
ajs4cf0d0d2004-11-25 17:14:34 +0000113#if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
114/* Not C99; do we need to define va_copy? */
ajse22f5512005-01-12 16:18:17 +0000115#ifndef va_copy
116#ifdef __va_copy
ajs4cf0d0d2004-11-25 17:14:34 +0000117#define va_copy(DST,SRC) __va_copy(DST,SRC)
ajse22f5512005-01-12 16:18:17 +0000118#else
119/* Now we are desperate; this should work on many typical platforms.
120 But this is slightly dangerous, because the standard does not require
121 va_copy to be a macro. */
122#define va_copy(DST,SRC) memcpy(&(DST), &(SRC), sizeof(va_list))
123#warning "Not C99 and no va_copy macro available, falling back to memcpy"
124#endif /* __va_copy */
125#endif /* !va_copy */
ajs4cf0d0d2004-11-25 17:14:34 +0000126#endif /* !C99 */
ajsdb8eaac2005-03-16 16:13:06 +0000127
paul718e3742002-12-13 20:15:29 +0000128
hassoba3a0bc2003-06-04 17:41:54 +0000129#ifdef HAVE_LCAPS
130#include <sys/capability.h>
131#include <sys/prctl.h>
132#endif /* HAVE_LCAPS */
133
paulceacedb2005-09-29 14:39:32 +0000134#ifdef HAVE_SOLARIS_CAPABILITIES
135#include <priv.h>
136#endif /* HAVE_SOLARIS_CAPABILITIES */
137
paul718e3742002-12-13 20:15:29 +0000138/* network include group */
139
140#include <sys/socket.h>
141
142#ifdef HAVE_SYS_SOCKIO_H
143#include <sys/sockio.h>
144#endif /* HAVE_SYS_SOCKIO_H */
145
Hasso Tepperea057672013-01-13 17:45:29 +0000146#ifdef __APPLE__
147#define __APPLE_USE_RFC_3542
148#endif
149
paul718e3742002-12-13 20:15:29 +0000150#ifdef HAVE_NETINET_IN_H
151#include <netinet/in.h>
152#endif /* HAVE_NETINET_IN_H */
153#include <netinet/in_systm.h>
154#include <netinet/ip.h>
155#include <netinet/tcp.h>
156
157#ifdef HAVE_NET_NETOPT_H
158#include <net/netopt.h>
159#endif /* HAVE_NET_NETOPT_H */
160
161#include <net/if.h>
162
163#ifdef HAVE_NET_IF_DL_H
164#include <net/if_dl.h>
165#endif /* HAVE_NET_IF_DL_H */
166
167#ifdef HAVE_NET_IF_VAR_H
168#include <net/if_var.h>
169#endif /* HAVE_NET_IF_VAR_H */
170
paula58c25b2003-10-22 02:50:45 +0000171#ifdef HAVE_NET_ROUTE_H
paul718e3742002-12-13 20:15:29 +0000172#include <net/route.h>
paula58c25b2003-10-22 02:50:45 +0000173#endif /* HAVE_NET_ROUTE_H */
paul718e3742002-12-13 20:15:29 +0000174
175#ifdef HAVE_NETLINK
176#include <linux/netlink.h>
177#include <linux/rtnetlink.h>
Paul Jakma768a27e2008-05-29 18:23:08 +0000178#include <linux/filter.h>
paul718e3742002-12-13 20:15:29 +0000179#else
180#define RT_TABLE_MAIN 0
181#endif /* HAVE_NETLINK */
182
183#ifdef HAVE_NETDB_H
184#include <netdb.h>
185#endif /* HAVE_NETDB_H */
186
187#include <arpa/inet.h>
paul718e3742002-12-13 20:15:29 +0000188
189#ifdef HAVE_INET_ND_H
190#include <inet/nd.h>
191#endif /* HAVE_INET_ND_H */
192
193#ifdef HAVE_NETINET_IN_VAR_H
194#include <netinet/in_var.h>
195#endif /* HAVE_NETINET_IN_VAR_H */
196
hasso726f9b22003-05-25 21:04:54 +0000197#ifdef HAVE_NETINET6_IN6_VAR_H
198#include <netinet6/in6_var.h>
199#endif /* HAVE_NETINET6_IN6_VAR_H */
200
paul718e3742002-12-13 20:15:29 +0000201#ifdef HAVE_NETINET_IN6_VAR_H
202#include <netinet/in6_var.h>
203#endif /* HAVE_NETINET_IN6_VAR_H */
204
205#ifdef HAVE_NETINET6_IN_H
206#include <netinet6/in.h>
207#endif /* HAVE_NETINET6_IN_H */
208
209
210#ifdef HAVE_NETINET6_IP6_H
211#include <netinet6/ip6.h>
212#endif /* HAVE_NETINET6_IP6_H */
213
214#ifdef HAVE_NETINET_ICMP6_H
215#include <netinet/icmp6.h>
216#endif /* HAVE_NETINET_ICMP6_H */
217
218#ifdef HAVE_NETINET6_ND6_H
219#include <netinet6/nd6.h>
220#endif /* HAVE_NETINET6_ND6_H */
221
Paul Jakma35cfc902006-05-28 08:08:24 +0000222/* Some systems do not define UINT32_MAX, etc.. from inttypes.h
223 * e.g. this makes life easier for FBSD 4.11 users.
224 */
225#ifndef INT8_MAX
226#define INT8_MAX (127)
227#endif
228#ifndef INT16_MAX
229#define INT16_MAX (32767)
230#endif
231#ifndef INT32_MAX
232#define INT32_MAX (2147483647)
233#endif
234#ifndef UINT8_MAX
235#define UINT8_MAX (255U)
236#endif
237#ifndef UINT16_MAX
238#define UINT16_MAX (65535U)
239#endif
paul3b424972003-10-13 09:47:32 +0000240#ifndef UINT32_MAX
Paul Jakma35cfc902006-05-28 08:08:24 +0000241#define UINT32_MAX (4294967295U)
242#endif
paul3b424972003-10-13 09:47:32 +0000243
paulfb2d1502003-06-04 09:40:54 +0000244#ifdef HAVE_GLIBC_BACKTRACE
245#include <execinfo.h>
246#endif /* HAVE_GLIBC_BACKTRACE */
247
paul718e3742002-12-13 20:15:29 +0000248#ifdef BSDI_NRL
249
250#ifdef HAVE_NETINET6_IN6_H
251#include <netinet6/in6.h>
252#endif /* HAVE_NETINET6_IN6_H */
253
254#ifdef NRL
255#include <netinet6/in6.h>
256#endif /* NRL */
257
258#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
259
paul718e3742002-12-13 20:15:29 +0000260#endif /* BSDI_NRL */
261
ajsdb8eaac2005-03-16 16:13:06 +0000262/* Local includes: */
263#if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
264#define __attribute__(x)
265#endif /* !__GNUC__ || VTYSH_EXTRACT_PL */
266
267#include "zassert.h"
ajs3cb98de2005-04-02 16:01:05 +0000268#include "str.h"
ajsdb8eaac2005-03-16 16:13:06 +0000269
270
ajsb99760a2005-01-04 16:24:43 +0000271#ifdef HAVE_BROKEN_CMSG_FIRSTHDR
272/* This bug is present in Solaris 8 and pre-patch Solaris 9 <sys/socket.h>;
273 please refer to http://bugzilla.quagga.net/show_bug.cgi?id=142 */
274
275/* Check that msg_controllen is large enough. */
276#define ZCMSG_FIRSTHDR(mhdr) \
277 (((size_t)((mhdr)->msg_controllen) >= sizeof(struct cmsghdr)) ? \
278 CMSG_FIRSTHDR(mhdr) : (struct cmsghdr *)NULL)
279
280#warning "CMSG_FIRSTHDR is broken on this platform, using a workaround"
281
282#else /* HAVE_BROKEN_CMSG_FIRSTHDR */
283#define ZCMSG_FIRSTHDR(M) CMSG_FIRSTHDR(M)
284#endif /* HAVE_BROKEN_CMSG_FIRSTHDR */
285
286
287
paul02ff83c2004-06-11 11:27:03 +0000288/*
gdt69e13252004-11-15 18:51:15 +0000289 * RFC 3542 defines several macros for using struct cmsghdr.
290 * Here, we define those that are not present
291 */
292
293/*
294 * Internal defines, for use only in this file.
295 * These are likely wrong on other than ILP32 machines, so warn.
paul02ff83c2004-06-11 11:27:03 +0000296 */
297#ifndef _CMSG_DATA_ALIGN
298#define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3)
299#endif /* _CMSG_DATA_ALIGN */
300
301#ifndef _CMSG_HDR_ALIGN
302#define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3)
303#endif /* _CMSG_HDR_ALIGN */
304
gdt69e13252004-11-15 18:51:15 +0000305/*
306 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
307 * version.
308 */
paul02ff83c2004-06-11 11:27:03 +0000309#ifndef CMSG_SPACE
310#define CMSG_SPACE(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + \
311 _CMSG_HDR_ALIGN(l))
gdt69e13252004-11-15 18:51:15 +0000312#warning "assuming 4-byte alignment for CMSG_SPACE"
paul02ff83c2004-06-11 11:27:03 +0000313#endif /* CMSG_SPACE */
314
315
316#ifndef CMSG_LEN
317#define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
gdt69e13252004-11-15 18:51:15 +0000318#warning "assuming 4-byte alignment for CMSG_LEN"
paul02ff83c2004-06-11 11:27:03 +0000319#endif /* CMSG_LEN */
320
gdt69e13252004-11-15 18:51:15 +0000321
paul718e3742002-12-13 20:15:29 +0000322/* The definition of struct in_pktinfo is missing in old version of
323 GLIBC 2.1 (Redhat 6.1). */
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000324#if defined (GNU_LINUX) && ! defined (HAVE_STRUCT_IN_PKTINFO)
paul718e3742002-12-13 20:15:29 +0000325struct in_pktinfo
326{
327 int ipi_ifindex;
328 struct in_addr ipi_spec_dst;
329 struct in_addr ipi_addr;
330};
331#endif
332
paul9172ee02004-09-27 12:46:37 +0000333/*
334 * OSPF Fragmentation / fragmented writes
335 *
336 * ospfd can support writing fragmented packets, for cases where
337 * kernel will not fragment IP_HDRINCL and/or multicast destined
338 * packets (ie TTBOMK all kernels, BSD, SunOS, Linux). However,
339 * SunOS, probably BSD too, clobber the user supplied IP ID and IP
340 * flags fields, hence user-space fragmentation will not work.
341 * Only Linux is known to leave IP header unmolested.
342 * Further, fragmentation really should be done the kernel, which already
343 * supports it, and which avoids nasty IP ID state problems.
344 *
345 * Fragmentation of OSPF packets can be required on networks with router
346 * with many many interfaces active in one area, or on networks with links
347 * with low MTUs.
348 */
349#ifdef GNU_LINUX
350#define WANT_OSPF_WRITE_FRAGMENT
351#endif
352
353/*
354 * IP_HDRINCL / struct ip byte order
355 *
356 * Linux: network byte order
357 * *BSD: network, except for length and offset. (cf Stevens)
358 * SunOS: nominally as per BSD. but bug: network order on LE.
359 * OpenBSD: network byte order, apart from older versions which are as per
360 * *BSD
361 */
Olivier Cochard-Labbéf6444e42014-10-09 10:28:21 +0100362#if defined(__NetBSD__) \
363 || (defined(__FreeBSD__) && (__FreeBSD_version < 1100030)) \
paul9172ee02004-09-27 12:46:37 +0000364 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
Doug VanLeuven3f0bfc92012-09-26 12:01:23 +0000365 || (defined(__APPLE__)) \
paul9172ee02004-09-27 12:46:37 +0000366 || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN))
367#define HAVE_IP_HDRINCL_BSD_ORDER
368#endif
369
paul34204aa2005-11-03 09:00:23 +0000370/* Define BYTE_ORDER, if not defined. Useful for compiler conditional
371 * code, rather than preprocessor conditional.
372 * Not all the world has this BSD define.
373 */
374#ifndef BYTE_ORDER
375#define BIG_ENDIAN 4321 /* least-significant byte first (vax, pc) */
376#define LITTLE_ENDIAN 1234 /* most-significant byte first (IBM, net) */
377#define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp) */
378
379#if defined(WORDS_BIGENDIAN)
380#define BYTE_ORDER BIG_ENDIAN
381#else /* !WORDS_BIGENDIAN */
382#define BYTE_ORDER LITTLE_ENDIAN
383#endif /* WORDS_BIGENDIAN */
384
385#endif /* ndef BYTE_ORDER */
386
paulefba6ce2004-08-25 13:47:16 +0000387/* MAX / MIN are not commonly defined, but useful */
388#ifndef MAX
389#define MAX(a, b) ((a) > (b) ? (a) : (b))
390#endif
391#ifndef MIN
392#define MIN(a, b) ((a) < (b) ? (a) : (b))
393#endif
394
Avneesh Sachdev0915bb02012-11-13 22:48:55 +0000395#define ZEBRA_NUM_OF(x) (sizeof (x) / sizeof (x[0]))
396
paul718e3742002-12-13 20:15:29 +0000397/* For old definition. */
398#ifndef IN6_ARE_ADDR_EQUAL
399#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
400#endif /* IN6_ARE_ADDR_EQUAL */
401
paul8cc41982005-05-06 21:25:49 +0000402/* default zebra TCP port for zclient */
403#define ZEBRA_PORT 2600
404
paul718e3742002-12-13 20:15:29 +0000405/* Zebra message types. */
406#define ZEBRA_INTERFACE_ADD 1
407#define ZEBRA_INTERFACE_DELETE 2
408#define ZEBRA_INTERFACE_ADDRESS_ADD 3
409#define ZEBRA_INTERFACE_ADDRESS_DELETE 4
410#define ZEBRA_INTERFACE_UP 5
411#define ZEBRA_INTERFACE_DOWN 6
412#define ZEBRA_IPV4_ROUTE_ADD 7
413#define ZEBRA_IPV4_ROUTE_DELETE 8
414#define ZEBRA_IPV6_ROUTE_ADD 9
415#define ZEBRA_IPV6_ROUTE_DELETE 10
416#define ZEBRA_REDISTRIBUTE_ADD 11
417#define ZEBRA_REDISTRIBUTE_DELETE 12
418#define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13
419#define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14
420#define ZEBRA_IPV4_NEXTHOP_LOOKUP 15
421#define ZEBRA_IPV6_NEXTHOP_LOOKUP 16
422#define ZEBRA_IPV4_IMPORT_LOOKUP 17
423#define ZEBRA_IPV6_IMPORT_LOOKUP 18
paulefba6ce2004-08-25 13:47:16 +0000424#define ZEBRA_INTERFACE_RENAME 19
hasso18a6dce2004-10-03 18:18:34 +0000425#define ZEBRA_ROUTER_ID_ADD 20
426#define ZEBRA_ROUTER_ID_DELETE 21
427#define ZEBRA_ROUTER_ID_UPDATE 22
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +0400428#define ZEBRA_HELLO 23
Everton Marquesbe4fb432014-07-01 15:15:52 -0300429#define ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB 24
430#define ZEBRA_MESSAGE_MAX 25
paul718e3742002-12-13 20:15:29 +0000431
paulc1b98002006-01-16 01:54:02 +0000432/* Marker value used in new Zserv, in the byte location corresponding
433 * the command value in the old zserv header. To allow old and new
434 * Zserv headers to be distinguished from each other.
435 */
436#define ZEBRA_HEADER_MARKER 255
437
Everton Marques871dbcf2009-08-11 15:43:05 -0300438/* Zebra route's types. */
439#define ZEBRA_ROUTE_SYSTEM 0
440#define ZEBRA_ROUTE_KERNEL 1
441#define ZEBRA_ROUTE_CONNECT 2
442#define ZEBRA_ROUTE_STATIC 3
443#define ZEBRA_ROUTE_RIP 4
444#define ZEBRA_ROUTE_RIPNG 5
445#define ZEBRA_ROUTE_OSPF 6
446#define ZEBRA_ROUTE_OSPF6 7
447#define ZEBRA_ROUTE_ISIS 8
448#define ZEBRA_ROUTE_BGP 9
449#define ZEBRA_ROUTE_HSLS 10
450#define ZEBRA_ROUTE_PIM 11
451#define ZEBRA_ROUTE_MAX 12
paul718e3742002-12-13 20:15:29 +0000452
Paul Jakmad6d672a2006-05-15 16:56:51 +0000453/* Note: whenever a new route-type or zserv-command is added the
454 * corresponding {command,route}_types[] table in lib/log.c MUST be
455 * updated! */
ajsf52d13c2005-10-01 17:38:06 +0000456
457/* Map a route type to a string. For example, ZEBRA_ROUTE_RIPNG -> "ripng". */
paulb6026072005-11-24 12:51:24 +0000458extern const char *zebra_route_string(unsigned int route_type);
ajsf52d13c2005-10-01 17:38:06 +0000459/* Map a route type to a char. For example, ZEBRA_ROUTE_RIPNG -> 'R'. */
paulb6026072005-11-24 12:51:24 +0000460extern char zebra_route_char(unsigned int route_type);
Paul Jakmad6d672a2006-05-15 16:56:51 +0000461/* Map a zserv command type to the same string,
462 * e.g. ZEBRA_INTERFACE_ADD -> "ZEBRA_INTERFACE_ADD" */
Paul Jakma7514fb72007-05-02 16:05:35 +0000463/* Map a protocol name to its number. e.g. ZEBRA_ROUTE_BGP->9*/
464extern int proto_name2num(const char *s);
David Lampartere0ca5fd2009-09-16 01:52:42 +0200465/* Map redistribute X argument to protocol number.
466 * unlike proto_name2num, this accepts shorthands and takes
467 * an AFI value to restrict input */
468extern int proto_redistnum(int afi, const char *s);
Paul Jakma7514fb72007-05-02 16:05:35 +0000469
Paul Jakmad6d672a2006-05-15 16:56:51 +0000470extern const char *zserv_command_string (unsigned int command);
ajsf52d13c2005-10-01 17:38:06 +0000471
paul718e3742002-12-13 20:15:29 +0000472/* Zebra's family types. */
473#define ZEBRA_FAMILY_IPV4 1
474#define ZEBRA_FAMILY_IPV6 2
475#define ZEBRA_FAMILY_MAX 3
476
477/* Error codes of zebra. */
Denis Ovsienkodc958242007-08-13 16:03:06 +0000478#define ZEBRA_ERR_NOERROR 0
paul718e3742002-12-13 20:15:29 +0000479#define ZEBRA_ERR_RTEXIST -1
480#define ZEBRA_ERR_RTUNREACH -2
481#define ZEBRA_ERR_EPERM -3
482#define ZEBRA_ERR_RTNOEXIST -4
Denis Ovsienkodc958242007-08-13 16:03:06 +0000483#define ZEBRA_ERR_KERNEL -5
paul718e3742002-12-13 20:15:29 +0000484
485/* Zebra message flags */
486#define ZEBRA_FLAG_INTERNAL 0x01
487#define ZEBRA_FLAG_SELFROUTE 0x02
488#define ZEBRA_FLAG_BLACKHOLE 0x04
489#define ZEBRA_FLAG_IBGP 0x08
490#define ZEBRA_FLAG_SELECTED 0x10
491#define ZEBRA_FLAG_CHANGED 0x20
492#define ZEBRA_FLAG_STATIC 0x40
hasso81dfcaa2003-05-25 19:21:25 +0000493#define ZEBRA_FLAG_REJECT 0x80
paul718e3742002-12-13 20:15:29 +0000494
495/* Zebra nexthop flags. */
496#define ZEBRA_NEXTHOP_IFINDEX 1
497#define ZEBRA_NEXTHOP_IFNAME 2
498#define ZEBRA_NEXTHOP_IPV4 3
499#define ZEBRA_NEXTHOP_IPV4_IFINDEX 4
500#define ZEBRA_NEXTHOP_IPV4_IFNAME 5
501#define ZEBRA_NEXTHOP_IPV6 6
502#define ZEBRA_NEXTHOP_IPV6_IFINDEX 7
503#define ZEBRA_NEXTHOP_IPV6_IFNAME 8
paul595db7f2003-05-25 21:35:06 +0000504#define ZEBRA_NEXTHOP_BLACKHOLE 9
paul718e3742002-12-13 20:15:29 +0000505
506#ifndef INADDR_LOOPBACK
507#define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
508#endif
509
510/* Address family numbers from RFC1700. */
511#define AFI_IP 1
512#define AFI_IP6 2
513#define AFI_MAX 3
514
515/* Subsequent Address Family Identifier. */
516#define SAFI_UNICAST 1
517#define SAFI_MULTICAST 2
Denis Ovsienko0a281302011-07-17 19:33:21 +0400518#define SAFI_RESERVED_3 3
paul718e3742002-12-13 20:15:29 +0000519#define SAFI_MPLS_VPN 4
520#define SAFI_MAX 5
521
522/* Filter direction. */
523#define FILTER_IN 0
524#define FILTER_OUT 1
525#define FILTER_MAX 2
526
527/* Default Administrative Distance of each protocol. */
528#define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
529#define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
530#define ZEBRA_STATIC_DISTANCE_DEFAULT 1
531#define ZEBRA_RIP_DISTANCE_DEFAULT 120
532#define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
533#define ZEBRA_OSPF_DISTANCE_DEFAULT 110
534#define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
jardin9e867fe2003-12-23 08:56:18 +0000535#define ZEBRA_ISIS_DISTANCE_DEFAULT 115
paul718e3742002-12-13 20:15:29 +0000536#define ZEBRA_IBGP_DISTANCE_DEFAULT 200
537#define ZEBRA_EBGP_DISTANCE_DEFAULT 20
538
539/* Flag manipulation macros. */
540#define CHECK_FLAG(V,F) ((V) & (F))
ajs548e6f72005-02-08 15:57:25 +0000541#define SET_FLAG(V,F) (V) |= (F)
542#define UNSET_FLAG(V,F) (V) &= ~(F)
paul718e3742002-12-13 20:15:29 +0000543
544/* AFI and SAFI type. */
545typedef u_int16_t afi_t;
paul5228ad22004-06-04 17:58:18 +0000546typedef u_int8_t safi_t;
paul718e3742002-12-13 20:15:29 +0000547
paulc1b98002006-01-16 01:54:02 +0000548/* Zebra types. Used in Zserv message header. */
paul718e3742002-12-13 20:15:29 +0000549typedef u_int16_t zebra_size_t;
paulc1b98002006-01-16 01:54:02 +0000550typedef u_int16_t zebra_command_t;
paul718e3742002-12-13 20:15:29 +0000551
paulf0438522003-05-19 21:06:32 +0000552/* FIFO -- first in first out structure and macros. */
553struct fifo
554{
555 struct fifo *next;
556 struct fifo *prev;
557};
558
559#define FIFO_INIT(F) \
560 do { \
561 struct fifo *Xfifo = (struct fifo *)(F); \
562 Xfifo->next = Xfifo->prev = Xfifo; \
563 } while (0)
564
565#define FIFO_ADD(F,N) \
566 do { \
567 struct fifo *Xfifo = (struct fifo *)(F); \
568 struct fifo *Xnode = (struct fifo *)(N); \
569 Xnode->next = Xfifo; \
570 Xnode->prev = Xfifo->prev; \
571 Xfifo->prev = Xfifo->prev->next = Xnode; \
572 } while (0)
573
574#define FIFO_DEL(N) \
575 do { \
576 struct fifo *Xnode = (struct fifo *)(N); \
577 Xnode->prev->next = Xnode->next; \
578 Xnode->next->prev = Xnode->prev; \
579 } while (0)
580
581#define FIFO_HEAD(F) \
582 ((((struct fifo *)(F))->next == (struct fifo *)(F)) \
583 ? NULL : (F)->next)
584
585#define FIFO_EMPTY(F) \
586 (((struct fifo *)(F))->next == (struct fifo *)(F))
587
588#define FIFO_TOP(F) \
589 (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
590
paul718e3742002-12-13 20:15:29 +0000591#endif /* _ZEBRA_H */