blob: 2451dbed5b88e42d6c34764acef50d302d085c45 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Zebra common header.
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-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__
paul9bcdb632003-07-08 08:09:45 +000031typedef unsigned int u_int32_t;
32typedef unsigned short u_int16_t;
33typedef unsigned char u_int8_t;
paul718e3742002-12-13 20:15:29 +000034#endif /* SUNOS_5 */
35
paulf0438522003-05-19 21:06:32 +000036#ifndef HAVE_SOCKLEN_T
37typedef int socklen_t;
38#endif /* HAVE_SOCKLEN_T */
39
paul718e3742002-12-13 20:15:29 +000040#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>
pauledd7c242003-06-04 13:59:38 +000048#include <pwd.h>
49#include <grp.h>
paul718e3742002-12-13 20:15:29 +000050#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 */
paula58c25b2003-10-22 02:50:45 +000078#ifdef HAVE_LIMITS_H
79#include <limits.h>
80#endif /* HAVE_LIMITS_H */
Paul Jakma35cfc902006-05-28 08:08:24 +000081#ifdef HAVE_INTTYPES_H
82#include <inttypes.h>
83#endif /* HAVE_INTTYPES_H */
paul718e3742002-12-13 20:15:29 +000084
85/* machine dependent includes */
86#ifdef SUNOS_5
paul718e3742002-12-13 20:15:29 +000087#include <strings.h>
88#endif /* SUNOS_5 */
89
90/* machine dependent includes */
91#ifdef HAVE_LINUX_VERSION_H
92#include <linux/version.h>
93#endif /* HAVE_LINUX_VERSION_H */
94
paulba965c62003-05-20 02:37:39 +000095#ifdef HAVE_ASM_TYPES_H
96#include <asm/types.h>
97#endif /* HAVE_ASM_TYPES_H */
98
paul718e3742002-12-13 20:15:29 +000099/* misc include group */
100#include <stdarg.h>
ajs4cf0d0d2004-11-25 17:14:34 +0000101#if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
102/* Not C99; do we need to define va_copy? */
ajse22f5512005-01-12 16:18:17 +0000103#ifndef va_copy
104#ifdef __va_copy
ajs4cf0d0d2004-11-25 17:14:34 +0000105#define va_copy(DST,SRC) __va_copy(DST,SRC)
ajse22f5512005-01-12 16:18:17 +0000106#else
107/* Now we are desperate; this should work on many typical platforms.
108 But this is slightly dangerous, because the standard does not require
109 va_copy to be a macro. */
110#define va_copy(DST,SRC) memcpy(&(DST), &(SRC), sizeof(va_list))
111#warning "Not C99 and no va_copy macro available, falling back to memcpy"
112#endif /* __va_copy */
113#endif /* !va_copy */
ajs4cf0d0d2004-11-25 17:14:34 +0000114#endif /* !C99 */
ajsdb8eaac2005-03-16 16:13:06 +0000115
paul718e3742002-12-13 20:15:29 +0000116
hassoba3a0bc2003-06-04 17:41:54 +0000117#ifdef HAVE_LCAPS
118#include <sys/capability.h>
119#include <sys/prctl.h>
120#endif /* HAVE_LCAPS */
121
paulceacedb2005-09-29 14:39:32 +0000122#ifdef HAVE_SOLARIS_CAPABILITIES
123#include <priv.h>
124#endif /* HAVE_SOLARIS_CAPABILITIES */
125
paul718e3742002-12-13 20:15:29 +0000126/* network include group */
127
128#include <sys/socket.h>
129
130#ifdef HAVE_SYS_SOCKIO_H
131#include <sys/sockio.h>
132#endif /* HAVE_SYS_SOCKIO_H */
133
134#ifdef HAVE_NETINET_IN_H
135#include <netinet/in.h>
136#endif /* HAVE_NETINET_IN_H */
137#include <netinet/in_systm.h>
138#include <netinet/ip.h>
139#include <netinet/tcp.h>
140
141#ifdef HAVE_NET_NETOPT_H
142#include <net/netopt.h>
143#endif /* HAVE_NET_NETOPT_H */
144
145#include <net/if.h>
146
147#ifdef HAVE_NET_IF_DL_H
148#include <net/if_dl.h>
149#endif /* HAVE_NET_IF_DL_H */
150
151#ifdef HAVE_NET_IF_VAR_H
152#include <net/if_var.h>
153#endif /* HAVE_NET_IF_VAR_H */
154
paula58c25b2003-10-22 02:50:45 +0000155#ifdef HAVE_NET_ROUTE_H
paul718e3742002-12-13 20:15:29 +0000156#include <net/route.h>
paula58c25b2003-10-22 02:50:45 +0000157#endif /* HAVE_NET_ROUTE_H */
paul718e3742002-12-13 20:15:29 +0000158
159#ifdef HAVE_NETLINK
160#include <linux/netlink.h>
161#include <linux/rtnetlink.h>
162#else
163#define RT_TABLE_MAIN 0
164#endif /* HAVE_NETLINK */
165
166#ifdef HAVE_NETDB_H
167#include <netdb.h>
168#endif /* HAVE_NETDB_H */
169
170#include <arpa/inet.h>
paul718e3742002-12-13 20:15:29 +0000171
172#ifdef HAVE_INET_ND_H
173#include <inet/nd.h>
174#endif /* HAVE_INET_ND_H */
175
176#ifdef HAVE_NETINET_IN_VAR_H
177#include <netinet/in_var.h>
178#endif /* HAVE_NETINET_IN_VAR_H */
179
hasso726f9b22003-05-25 21:04:54 +0000180#ifdef HAVE_NETINET6_IN6_VAR_H
181#include <netinet6/in6_var.h>
182#endif /* HAVE_NETINET6_IN6_VAR_H */
183
paul718e3742002-12-13 20:15:29 +0000184#ifdef HAVE_NETINET_IN6_VAR_H
185#include <netinet/in6_var.h>
186#endif /* HAVE_NETINET_IN6_VAR_H */
187
188#ifdef HAVE_NETINET6_IN_H
189#include <netinet6/in.h>
190#endif /* HAVE_NETINET6_IN_H */
191
192
193#ifdef HAVE_NETINET6_IP6_H
194#include <netinet6/ip6.h>
195#endif /* HAVE_NETINET6_IP6_H */
196
197#ifdef HAVE_NETINET_ICMP6_H
198#include <netinet/icmp6.h>
199#endif /* HAVE_NETINET_ICMP6_H */
200
201#ifdef HAVE_NETINET6_ND6_H
202#include <netinet6/nd6.h>
203#endif /* HAVE_NETINET6_ND6_H */
204
Paul Jakma35cfc902006-05-28 08:08:24 +0000205/* Some systems do not define UINT32_MAX, etc.. from inttypes.h
206 * e.g. this makes life easier for FBSD 4.11 users.
207 */
208#ifndef INT8_MAX
209#define INT8_MAX (127)
210#endif
211#ifndef INT16_MAX
212#define INT16_MAX (32767)
213#endif
214#ifndef INT32_MAX
215#define INT32_MAX (2147483647)
216#endif
217#ifndef UINT8_MAX
218#define UINT8_MAX (255U)
219#endif
220#ifndef UINT16_MAX
221#define UINT16_MAX (65535U)
222#endif
paul3b424972003-10-13 09:47:32 +0000223#ifndef UINT32_MAX
Paul Jakma35cfc902006-05-28 08:08:24 +0000224#define UINT32_MAX (4294967295U)
225#endif
paul3b424972003-10-13 09:47:32 +0000226
paul718e3742002-12-13 20:15:29 +0000227#ifdef HAVE_LIBUTIL_H
228#include <libutil.h>
229#endif /* HAVE_LIBUTIL_H */
230
paulfb2d1502003-06-04 09:40:54 +0000231#ifdef HAVE_GLIBC_BACKTRACE
232#include <execinfo.h>
233#endif /* HAVE_GLIBC_BACKTRACE */
234
paul718e3742002-12-13 20:15:29 +0000235#ifdef BSDI_NRL
236
237#ifdef HAVE_NETINET6_IN6_H
238#include <netinet6/in6.h>
239#endif /* HAVE_NETINET6_IN6_H */
240
241#ifdef NRL
242#include <netinet6/in6.h>
243#endif /* NRL */
244
245#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
246
paul718e3742002-12-13 20:15:29 +0000247#endif /* BSDI_NRL */
248
ajsdb8eaac2005-03-16 16:13:06 +0000249/* Local includes: */
250#if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
251#define __attribute__(x)
252#endif /* !__GNUC__ || VTYSH_EXTRACT_PL */
253
254#include "zassert.h"
ajs3cb98de2005-04-02 16:01:05 +0000255#include "str.h"
ajsdb8eaac2005-03-16 16:13:06 +0000256
257
ajsb99760a2005-01-04 16:24:43 +0000258#ifdef HAVE_BROKEN_CMSG_FIRSTHDR
259/* This bug is present in Solaris 8 and pre-patch Solaris 9 <sys/socket.h>;
260 please refer to http://bugzilla.quagga.net/show_bug.cgi?id=142 */
261
262/* Check that msg_controllen is large enough. */
263#define ZCMSG_FIRSTHDR(mhdr) \
264 (((size_t)((mhdr)->msg_controllen) >= sizeof(struct cmsghdr)) ? \
265 CMSG_FIRSTHDR(mhdr) : (struct cmsghdr *)NULL)
266
267#warning "CMSG_FIRSTHDR is broken on this platform, using a workaround"
268
269#else /* HAVE_BROKEN_CMSG_FIRSTHDR */
270#define ZCMSG_FIRSTHDR(M) CMSG_FIRSTHDR(M)
271#endif /* HAVE_BROKEN_CMSG_FIRSTHDR */
272
273
274
paul02ff83c2004-06-11 11:27:03 +0000275/*
gdt69e13252004-11-15 18:51:15 +0000276 * RFC 3542 defines several macros for using struct cmsghdr.
277 * Here, we define those that are not present
278 */
279
280/*
281 * Internal defines, for use only in this file.
282 * These are likely wrong on other than ILP32 machines, so warn.
paul02ff83c2004-06-11 11:27:03 +0000283 */
284#ifndef _CMSG_DATA_ALIGN
285#define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3)
286#endif /* _CMSG_DATA_ALIGN */
287
288#ifndef _CMSG_HDR_ALIGN
289#define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3)
290#endif /* _CMSG_HDR_ALIGN */
291
gdt69e13252004-11-15 18:51:15 +0000292/*
293 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
294 * version.
295 */
paul02ff83c2004-06-11 11:27:03 +0000296#ifndef CMSG_SPACE
297#define CMSG_SPACE(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + \
298 _CMSG_HDR_ALIGN(l))
gdt69e13252004-11-15 18:51:15 +0000299#warning "assuming 4-byte alignment for CMSG_SPACE"
paul02ff83c2004-06-11 11:27:03 +0000300#endif /* CMSG_SPACE */
301
302
303#ifndef CMSG_LEN
304#define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
gdt69e13252004-11-15 18:51:15 +0000305#warning "assuming 4-byte alignment for CMSG_LEN"
paul02ff83c2004-06-11 11:27:03 +0000306#endif /* CMSG_LEN */
307
gdt69e13252004-11-15 18:51:15 +0000308
paul718e3742002-12-13 20:15:29 +0000309/* The definition of struct in_pktinfo is missing in old version of
310 GLIBC 2.1 (Redhat 6.1). */
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000311#if defined (GNU_LINUX) && ! defined (HAVE_STRUCT_IN_PKTINFO)
paul718e3742002-12-13 20:15:29 +0000312struct in_pktinfo
313{
314 int ipi_ifindex;
315 struct in_addr ipi_spec_dst;
316 struct in_addr ipi_addr;
317};
318#endif
319
paul9172ee02004-09-27 12:46:37 +0000320/*
321 * OSPF Fragmentation / fragmented writes
322 *
323 * ospfd can support writing fragmented packets, for cases where
324 * kernel will not fragment IP_HDRINCL and/or multicast destined
325 * packets (ie TTBOMK all kernels, BSD, SunOS, Linux). However,
326 * SunOS, probably BSD too, clobber the user supplied IP ID and IP
327 * flags fields, hence user-space fragmentation will not work.
328 * Only Linux is known to leave IP header unmolested.
329 * Further, fragmentation really should be done the kernel, which already
330 * supports it, and which avoids nasty IP ID state problems.
331 *
332 * Fragmentation of OSPF packets can be required on networks with router
333 * with many many interfaces active in one area, or on networks with links
334 * with low MTUs.
335 */
336#ifdef GNU_LINUX
337#define WANT_OSPF_WRITE_FRAGMENT
338#endif
339
340/*
341 * IP_HDRINCL / struct ip byte order
342 *
343 * Linux: network byte order
344 * *BSD: network, except for length and offset. (cf Stevens)
345 * SunOS: nominally as per BSD. but bug: network order on LE.
346 * OpenBSD: network byte order, apart from older versions which are as per
347 * *BSD
348 */
349#if defined(__NetBSD__) || defined(__FreeBSD__) \
350 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
351 || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN))
352#define HAVE_IP_HDRINCL_BSD_ORDER
353#endif
354
paul34204aa2005-11-03 09:00:23 +0000355/* Define BYTE_ORDER, if not defined. Useful for compiler conditional
356 * code, rather than preprocessor conditional.
357 * Not all the world has this BSD define.
358 */
359#ifndef BYTE_ORDER
360#define BIG_ENDIAN 4321 /* least-significant byte first (vax, pc) */
361#define LITTLE_ENDIAN 1234 /* most-significant byte first (IBM, net) */
362#define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp) */
363
364#if defined(WORDS_BIGENDIAN)
365#define BYTE_ORDER BIG_ENDIAN
366#else /* !WORDS_BIGENDIAN */
367#define BYTE_ORDER LITTLE_ENDIAN
368#endif /* WORDS_BIGENDIAN */
369
370#endif /* ndef BYTE_ORDER */
371
paulefba6ce2004-08-25 13:47:16 +0000372/* MAX / MIN are not commonly defined, but useful */
373#ifndef MAX
374#define MAX(a, b) ((a) > (b) ? (a) : (b))
375#endif
376#ifndef MIN
377#define MIN(a, b) ((a) < (b) ? (a) : (b))
378#endif
379
paul718e3742002-12-13 20:15:29 +0000380/* For old definition. */
381#ifndef IN6_ARE_ADDR_EQUAL
382#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
383#endif /* IN6_ARE_ADDR_EQUAL */
384
paul8cc41982005-05-06 21:25:49 +0000385/* default zebra TCP port for zclient */
386#define ZEBRA_PORT 2600
387
paul718e3742002-12-13 20:15:29 +0000388/* Zebra message types. */
389#define ZEBRA_INTERFACE_ADD 1
390#define ZEBRA_INTERFACE_DELETE 2
391#define ZEBRA_INTERFACE_ADDRESS_ADD 3
392#define ZEBRA_INTERFACE_ADDRESS_DELETE 4
393#define ZEBRA_INTERFACE_UP 5
394#define ZEBRA_INTERFACE_DOWN 6
395#define ZEBRA_IPV4_ROUTE_ADD 7
396#define ZEBRA_IPV4_ROUTE_DELETE 8
397#define ZEBRA_IPV6_ROUTE_ADD 9
398#define ZEBRA_IPV6_ROUTE_DELETE 10
399#define ZEBRA_REDISTRIBUTE_ADD 11
400#define ZEBRA_REDISTRIBUTE_DELETE 12
401#define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13
402#define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14
403#define ZEBRA_IPV4_NEXTHOP_LOOKUP 15
404#define ZEBRA_IPV6_NEXTHOP_LOOKUP 16
405#define ZEBRA_IPV4_IMPORT_LOOKUP 17
406#define ZEBRA_IPV6_IMPORT_LOOKUP 18
paulefba6ce2004-08-25 13:47:16 +0000407#define ZEBRA_INTERFACE_RENAME 19
hasso18a6dce2004-10-03 18:18:34 +0000408#define ZEBRA_ROUTER_ID_ADD 20
409#define ZEBRA_ROUTER_ID_DELETE 21
410#define ZEBRA_ROUTER_ID_UPDATE 22
411#define ZEBRA_MESSAGE_MAX 23
paul718e3742002-12-13 20:15:29 +0000412
paulc1b98002006-01-16 01:54:02 +0000413/* Marker value used in new Zserv, in the byte location corresponding
414 * the command value in the old zserv header. To allow old and new
415 * Zserv headers to be distinguished from each other.
416 */
417#define ZEBRA_HEADER_MARKER 255
418
paul718e3742002-12-13 20:15:29 +0000419/* Zebra route's types. */
420#define ZEBRA_ROUTE_SYSTEM 0
421#define ZEBRA_ROUTE_KERNEL 1
422#define ZEBRA_ROUTE_CONNECT 2
423#define ZEBRA_ROUTE_STATIC 3
424#define ZEBRA_ROUTE_RIP 4
425#define ZEBRA_ROUTE_RIPNG 5
426#define ZEBRA_ROUTE_OSPF 6
427#define ZEBRA_ROUTE_OSPF6 7
jardin9e867fe2003-12-23 08:56:18 +0000428#define ZEBRA_ROUTE_ISIS 8
429#define ZEBRA_ROUTE_BGP 9
paulaf0d97e2004-10-22 23:24:43 +0000430#define ZEBRA_ROUTE_HSLS 10
431#define ZEBRA_ROUTE_MAX 11
paul718e3742002-12-13 20:15:29 +0000432
Paul Jakmad6d672a2006-05-15 16:56:51 +0000433/* Note: whenever a new route-type or zserv-command is added the
434 * corresponding {command,route}_types[] table in lib/log.c MUST be
435 * updated! */
ajsf52d13c2005-10-01 17:38:06 +0000436
437/* Map a route type to a string. For example, ZEBRA_ROUTE_RIPNG -> "ripng". */
paulb6026072005-11-24 12:51:24 +0000438extern const char *zebra_route_string(unsigned int route_type);
ajsf52d13c2005-10-01 17:38:06 +0000439/* Map a route type to a char. For example, ZEBRA_ROUTE_RIPNG -> 'R'. */
paulb6026072005-11-24 12:51:24 +0000440extern char zebra_route_char(unsigned int route_type);
Paul Jakmad6d672a2006-05-15 16:56:51 +0000441/* Map a zserv command type to the same string,
442 * e.g. ZEBRA_INTERFACE_ADD -> "ZEBRA_INTERFACE_ADD" */
Paul Jakma7514fb72007-05-02 16:05:35 +0000443/* Map a protocol name to its number. e.g. ZEBRA_ROUTE_BGP->9*/
444extern int proto_name2num(const char *s);
445
Paul Jakmad6d672a2006-05-15 16:56:51 +0000446extern const char *zserv_command_string (unsigned int command);
ajsf52d13c2005-10-01 17:38:06 +0000447
paul718e3742002-12-13 20:15:29 +0000448/* Zebra's family types. */
449#define ZEBRA_FAMILY_IPV4 1
450#define ZEBRA_FAMILY_IPV6 2
451#define ZEBRA_FAMILY_MAX 3
452
453/* Error codes of zebra. */
454#define ZEBRA_ERR_RTEXIST -1
455#define ZEBRA_ERR_RTUNREACH -2
456#define ZEBRA_ERR_EPERM -3
457#define ZEBRA_ERR_RTNOEXIST -4
458
459/* Zebra message flags */
460#define ZEBRA_FLAG_INTERNAL 0x01
461#define ZEBRA_FLAG_SELFROUTE 0x02
462#define ZEBRA_FLAG_BLACKHOLE 0x04
463#define ZEBRA_FLAG_IBGP 0x08
464#define ZEBRA_FLAG_SELECTED 0x10
465#define ZEBRA_FLAG_CHANGED 0x20
466#define ZEBRA_FLAG_STATIC 0x40
hasso81dfcaa2003-05-25 19:21:25 +0000467#define ZEBRA_FLAG_REJECT 0x80
paul718e3742002-12-13 20:15:29 +0000468
469/* Zebra nexthop flags. */
470#define ZEBRA_NEXTHOP_IFINDEX 1
471#define ZEBRA_NEXTHOP_IFNAME 2
472#define ZEBRA_NEXTHOP_IPV4 3
473#define ZEBRA_NEXTHOP_IPV4_IFINDEX 4
474#define ZEBRA_NEXTHOP_IPV4_IFNAME 5
475#define ZEBRA_NEXTHOP_IPV6 6
476#define ZEBRA_NEXTHOP_IPV6_IFINDEX 7
477#define ZEBRA_NEXTHOP_IPV6_IFNAME 8
paul595db7f2003-05-25 21:35:06 +0000478#define ZEBRA_NEXTHOP_BLACKHOLE 9
paul718e3742002-12-13 20:15:29 +0000479
480#ifndef INADDR_LOOPBACK
481#define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
482#endif
483
484/* Address family numbers from RFC1700. */
485#define AFI_IP 1
486#define AFI_IP6 2
487#define AFI_MAX 3
488
489/* Subsequent Address Family Identifier. */
490#define SAFI_UNICAST 1
491#define SAFI_MULTICAST 2
492#define SAFI_UNICAST_MULTICAST 3
493#define SAFI_MPLS_VPN 4
494#define SAFI_MAX 5
495
496/* Filter direction. */
497#define FILTER_IN 0
498#define FILTER_OUT 1
499#define FILTER_MAX 2
500
501/* Default Administrative Distance of each protocol. */
502#define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
503#define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
504#define ZEBRA_STATIC_DISTANCE_DEFAULT 1
505#define ZEBRA_RIP_DISTANCE_DEFAULT 120
506#define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
507#define ZEBRA_OSPF_DISTANCE_DEFAULT 110
508#define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
jardin9e867fe2003-12-23 08:56:18 +0000509#define ZEBRA_ISIS_DISTANCE_DEFAULT 115
paul718e3742002-12-13 20:15:29 +0000510#define ZEBRA_IBGP_DISTANCE_DEFAULT 200
511#define ZEBRA_EBGP_DISTANCE_DEFAULT 20
512
513/* Flag manipulation macros. */
514#define CHECK_FLAG(V,F) ((V) & (F))
ajs548e6f72005-02-08 15:57:25 +0000515#define SET_FLAG(V,F) (V) |= (F)
516#define UNSET_FLAG(V,F) (V) &= ~(F)
paul718e3742002-12-13 20:15:29 +0000517
518/* AFI and SAFI type. */
519typedef u_int16_t afi_t;
paul5228ad22004-06-04 17:58:18 +0000520typedef u_int8_t safi_t;
paul718e3742002-12-13 20:15:29 +0000521
paulc1b98002006-01-16 01:54:02 +0000522/* Zebra types. Used in Zserv message header. */
paul718e3742002-12-13 20:15:29 +0000523typedef u_int16_t zebra_size_t;
paulc1b98002006-01-16 01:54:02 +0000524typedef u_int16_t zebra_command_t;
paul718e3742002-12-13 20:15:29 +0000525
paulf0438522003-05-19 21:06:32 +0000526/* FIFO -- first in first out structure and macros. */
527struct fifo
528{
529 struct fifo *next;
530 struct fifo *prev;
531};
532
533#define FIFO_INIT(F) \
534 do { \
535 struct fifo *Xfifo = (struct fifo *)(F); \
536 Xfifo->next = Xfifo->prev = Xfifo; \
537 } while (0)
538
539#define FIFO_ADD(F,N) \
540 do { \
541 struct fifo *Xfifo = (struct fifo *)(F); \
542 struct fifo *Xnode = (struct fifo *)(N); \
543 Xnode->next = Xfifo; \
544 Xnode->prev = Xfifo->prev; \
545 Xfifo->prev = Xfifo->prev->next = Xnode; \
546 } while (0)
547
548#define FIFO_DEL(N) \
549 do { \
550 struct fifo *Xnode = (struct fifo *)(N); \
551 Xnode->prev->next = Xnode->next; \
552 Xnode->next->prev = Xnode->prev; \
553 } while (0)
554
555#define FIFO_HEAD(F) \
556 ((((struct fifo *)(F))->next == (struct fifo *)(F)) \
557 ? NULL : (F)->next)
558
559#define FIFO_EMPTY(F) \
560 (((struct fifo *)(F))->next == (struct fifo *)(F))
561
562#define FIFO_TOP(F) \
563 (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
564
paul718e3742002-12-13 20:15:29 +0000565#endif /* _ZEBRA_H */