blob: 2e2f8cda03b2ed3e7159ee694ebc7fd86e78b6f8 [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
ajsd66a7b52005-04-08 16:42:03 +000028#ifdef GNU_LINUX
29#define _GNU_SOURCE
30#endif /* GNU_LINUX */
31
paul718e3742002-12-13 20:15:29 +000032#ifdef SUNOS_5
33#define _XPG4_2
34#define __EXTENSIONS__
paul9bcdb632003-07-08 08:09:45 +000035typedef unsigned int u_int32_t;
36typedef unsigned short u_int16_t;
37typedef unsigned char u_int8_t;
paul718e3742002-12-13 20:15:29 +000038#endif /* SUNOS_5 */
39
paulf0438522003-05-19 21:06:32 +000040#ifndef HAVE_SOCKLEN_T
41typedef int socklen_t;
42#endif /* HAVE_SOCKLEN_T */
43
paul718e3742002-12-13 20:15:29 +000044#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>
pauledd7c242003-06-04 13:59:38 +000052#include <pwd.h>
53#include <grp.h>
paul718e3742002-12-13 20:15:29 +000054#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 */
paula58c25b2003-10-22 02:50:45 +000082#ifdef HAVE_LIMITS_H
83#include <limits.h>
84#endif /* HAVE_LIMITS_H */
Paul Jakma35cfc902006-05-28 08:08:24 +000085#ifdef HAVE_INTTYPES_H
86#include <inttypes.h>
87#endif /* HAVE_INTTYPES_H */
paul718e3742002-12-13 20:15:29 +000088
89/* machine dependent includes */
90#ifdef SUNOS_5
paul718e3742002-12-13 20:15:29 +000091#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
paulba965c62003-05-20 02:37:39 +000099#ifdef HAVE_ASM_TYPES_H
100#include <asm/types.h>
101#endif /* HAVE_ASM_TYPES_H */
102
paul718e3742002-12-13 20:15:29 +0000103/* misc include group */
104#include <stdarg.h>
ajs4cf0d0d2004-11-25 17:14:34 +0000105#if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
106/* Not C99; do we need to define va_copy? */
ajse22f5512005-01-12 16:18:17 +0000107#ifndef va_copy
108#ifdef __va_copy
ajs4cf0d0d2004-11-25 17:14:34 +0000109#define va_copy(DST,SRC) __va_copy(DST,SRC)
ajse22f5512005-01-12 16:18:17 +0000110#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 */
ajs4cf0d0d2004-11-25 17:14:34 +0000118#endif /* !C99 */
ajsdb8eaac2005-03-16 16:13:06 +0000119
paul718e3742002-12-13 20:15:29 +0000120
hassoba3a0bc2003-06-04 17:41:54 +0000121#ifdef HAVE_LCAPS
122#include <sys/capability.h>
123#include <sys/prctl.h>
124#endif /* HAVE_LCAPS */
125
paulceacedb2005-09-29 14:39:32 +0000126#ifdef HAVE_SOLARIS_CAPABILITIES
127#include <priv.h>
128#endif /* HAVE_SOLARIS_CAPABILITIES */
129
paul718e3742002-12-13 20:15:29 +0000130/* 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
paula58c25b2003-10-22 02:50:45 +0000159#ifdef HAVE_NET_ROUTE_H
paul718e3742002-12-13 20:15:29 +0000160#include <net/route.h>
paula58c25b2003-10-22 02:50:45 +0000161#endif /* HAVE_NET_ROUTE_H */
paul718e3742002-12-13 20:15:29 +0000162
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>
paul718e3742002-12-13 20:15:29 +0000175
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
hasso726f9b22003-05-25 21:04:54 +0000184#ifdef HAVE_NETINET6_IN6_VAR_H
185#include <netinet6/in6_var.h>
186#endif /* HAVE_NETINET6_IN6_VAR_H */
187
paul718e3742002-12-13 20:15:29 +0000188#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 Jakma35cfc902006-05-28 08:08:24 +0000209/* Some systems do not define UINT32_MAX, etc.. from inttypes.h
210 * e.g. this makes life easier for FBSD 4.11 users.
211 */
212#ifndef INT8_MAX
213#define INT8_MAX (127)
214#endif
215#ifndef INT16_MAX
216#define INT16_MAX (32767)
217#endif
218#ifndef INT32_MAX
219#define INT32_MAX (2147483647)
220#endif
221#ifndef UINT8_MAX
222#define UINT8_MAX (255U)
223#endif
224#ifndef UINT16_MAX
225#define UINT16_MAX (65535U)
226#endif
paul3b424972003-10-13 09:47:32 +0000227#ifndef UINT32_MAX
Paul Jakma35cfc902006-05-28 08:08:24 +0000228#define UINT32_MAX (4294967295U)
229#endif
paul3b424972003-10-13 09:47:32 +0000230
paul718e3742002-12-13 20:15:29 +0000231#ifdef HAVE_LIBUTIL_H
232#include <libutil.h>
233#endif /* HAVE_LIBUTIL_H */
234
paulfb2d1502003-06-04 09:40:54 +0000235#ifdef HAVE_GLIBC_BACKTRACE
236#include <execinfo.h>
237#endif /* HAVE_GLIBC_BACKTRACE */
238
paul718e3742002-12-13 20:15:29 +0000239#ifdef BSDI_NRL
240
241#ifdef HAVE_NETINET6_IN6_H
242#include <netinet6/in6.h>
243#endif /* HAVE_NETINET6_IN6_H */
244
245#ifdef NRL
246#include <netinet6/in6.h>
247#endif /* NRL */
248
249#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
250
paul718e3742002-12-13 20:15:29 +0000251#endif /* BSDI_NRL */
252
ajsdb8eaac2005-03-16 16:13:06 +0000253/* Local includes: */
254#if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
255#define __attribute__(x)
256#endif /* !__GNUC__ || VTYSH_EXTRACT_PL */
257
258#include "zassert.h"
ajs3cb98de2005-04-02 16:01:05 +0000259#include "str.h"
ajsdb8eaac2005-03-16 16:13:06 +0000260
261
ajsb99760a2005-01-04 16:24:43 +0000262#ifdef HAVE_BROKEN_CMSG_FIRSTHDR
263/* This bug is present in Solaris 8 and pre-patch Solaris 9 <sys/socket.h>;
264 please refer to http://bugzilla.quagga.net/show_bug.cgi?id=142 */
265
266/* Check that msg_controllen is large enough. */
267#define ZCMSG_FIRSTHDR(mhdr) \
268 (((size_t)((mhdr)->msg_controllen) >= sizeof(struct cmsghdr)) ? \
269 CMSG_FIRSTHDR(mhdr) : (struct cmsghdr *)NULL)
270
271#warning "CMSG_FIRSTHDR is broken on this platform, using a workaround"
272
273#else /* HAVE_BROKEN_CMSG_FIRSTHDR */
274#define ZCMSG_FIRSTHDR(M) CMSG_FIRSTHDR(M)
275#endif /* HAVE_BROKEN_CMSG_FIRSTHDR */
276
277
278
paul02ff83c2004-06-11 11:27:03 +0000279/*
gdt69e13252004-11-15 18:51:15 +0000280 * RFC 3542 defines several macros for using struct cmsghdr.
281 * Here, we define those that are not present
282 */
283
284/*
285 * Internal defines, for use only in this file.
286 * These are likely wrong on other than ILP32 machines, so warn.
paul02ff83c2004-06-11 11:27:03 +0000287 */
288#ifndef _CMSG_DATA_ALIGN
289#define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3)
290#endif /* _CMSG_DATA_ALIGN */
291
292#ifndef _CMSG_HDR_ALIGN
293#define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3)
294#endif /* _CMSG_HDR_ALIGN */
295
gdt69e13252004-11-15 18:51:15 +0000296/*
297 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
298 * version.
299 */
paul02ff83c2004-06-11 11:27:03 +0000300#ifndef CMSG_SPACE
301#define CMSG_SPACE(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + \
302 _CMSG_HDR_ALIGN(l))
gdt69e13252004-11-15 18:51:15 +0000303#warning "assuming 4-byte alignment for CMSG_SPACE"
paul02ff83c2004-06-11 11:27:03 +0000304#endif /* CMSG_SPACE */
305
306
307#ifndef CMSG_LEN
308#define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
gdt69e13252004-11-15 18:51:15 +0000309#warning "assuming 4-byte alignment for CMSG_LEN"
paul02ff83c2004-06-11 11:27:03 +0000310#endif /* CMSG_LEN */
311
gdt69e13252004-11-15 18:51:15 +0000312
paul718e3742002-12-13 20:15:29 +0000313/* The definition of struct in_pktinfo is missing in old version of
314 GLIBC 2.1 (Redhat 6.1). */
315#if defined (GNU_LINUX) && ! defined (HAVE_INPKTINFO)
316struct in_pktinfo
317{
318 int ipi_ifindex;
319 struct in_addr ipi_spec_dst;
320 struct in_addr ipi_addr;
321};
322#endif
323
paul9172ee02004-09-27 12:46:37 +0000324/*
325 * OSPF Fragmentation / fragmented writes
326 *
327 * ospfd can support writing fragmented packets, for cases where
328 * kernel will not fragment IP_HDRINCL and/or multicast destined
329 * packets (ie TTBOMK all kernels, BSD, SunOS, Linux). However,
330 * SunOS, probably BSD too, clobber the user supplied IP ID and IP
331 * flags fields, hence user-space fragmentation will not work.
332 * Only Linux is known to leave IP header unmolested.
333 * Further, fragmentation really should be done the kernel, which already
334 * supports it, and which avoids nasty IP ID state problems.
335 *
336 * Fragmentation of OSPF packets can be required on networks with router
337 * with many many interfaces active in one area, or on networks with links
338 * with low MTUs.
339 */
340#ifdef GNU_LINUX
341#define WANT_OSPF_WRITE_FRAGMENT
342#endif
343
344/*
345 * IP_HDRINCL / struct ip byte order
346 *
347 * Linux: network byte order
348 * *BSD: network, except for length and offset. (cf Stevens)
349 * SunOS: nominally as per BSD. but bug: network order on LE.
350 * OpenBSD: network byte order, apart from older versions which are as per
351 * *BSD
352 */
353#if defined(__NetBSD__) || defined(__FreeBSD__) \
354 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
355 || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN))
356#define HAVE_IP_HDRINCL_BSD_ORDER
357#endif
358
paul34204aa2005-11-03 09:00:23 +0000359/* Define BYTE_ORDER, if not defined. Useful for compiler conditional
360 * code, rather than preprocessor conditional.
361 * Not all the world has this BSD define.
362 */
363#ifndef BYTE_ORDER
364#define BIG_ENDIAN 4321 /* least-significant byte first (vax, pc) */
365#define LITTLE_ENDIAN 1234 /* most-significant byte first (IBM, net) */
366#define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp) */
367
368#if defined(WORDS_BIGENDIAN)
369#define BYTE_ORDER BIG_ENDIAN
370#else /* !WORDS_BIGENDIAN */
371#define BYTE_ORDER LITTLE_ENDIAN
372#endif /* WORDS_BIGENDIAN */
373
374#endif /* ndef BYTE_ORDER */
375
paulefba6ce2004-08-25 13:47:16 +0000376/* MAX / MIN are not commonly defined, but useful */
377#ifndef MAX
378#define MAX(a, b) ((a) > (b) ? (a) : (b))
379#endif
380#ifndef MIN
381#define MIN(a, b) ((a) < (b) ? (a) : (b))
382#endif
383
paul718e3742002-12-13 20:15:29 +0000384/* For old definition. */
385#ifndef IN6_ARE_ADDR_EQUAL
386#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
387#endif /* IN6_ARE_ADDR_EQUAL */
388
paul8cc41982005-05-06 21:25:49 +0000389/* default zebra TCP port for zclient */
390#define ZEBRA_PORT 2600
391
paul718e3742002-12-13 20:15:29 +0000392/* Zebra message types. */
393#define ZEBRA_INTERFACE_ADD 1
394#define ZEBRA_INTERFACE_DELETE 2
395#define ZEBRA_INTERFACE_ADDRESS_ADD 3
396#define ZEBRA_INTERFACE_ADDRESS_DELETE 4
397#define ZEBRA_INTERFACE_UP 5
398#define ZEBRA_INTERFACE_DOWN 6
399#define ZEBRA_IPV4_ROUTE_ADD 7
400#define ZEBRA_IPV4_ROUTE_DELETE 8
401#define ZEBRA_IPV6_ROUTE_ADD 9
402#define ZEBRA_IPV6_ROUTE_DELETE 10
403#define ZEBRA_REDISTRIBUTE_ADD 11
404#define ZEBRA_REDISTRIBUTE_DELETE 12
405#define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13
406#define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14
407#define ZEBRA_IPV4_NEXTHOP_LOOKUP 15
408#define ZEBRA_IPV6_NEXTHOP_LOOKUP 16
409#define ZEBRA_IPV4_IMPORT_LOOKUP 17
410#define ZEBRA_IPV6_IMPORT_LOOKUP 18
paulefba6ce2004-08-25 13:47:16 +0000411#define ZEBRA_INTERFACE_RENAME 19
hasso18a6dce2004-10-03 18:18:34 +0000412#define ZEBRA_ROUTER_ID_ADD 20
413#define ZEBRA_ROUTER_ID_DELETE 21
414#define ZEBRA_ROUTER_ID_UPDATE 22
415#define ZEBRA_MESSAGE_MAX 23
paul718e3742002-12-13 20:15:29 +0000416
paulc1b98002006-01-16 01:54:02 +0000417/* Marker value used in new Zserv, in the byte location corresponding
418 * the command value in the old zserv header. To allow old and new
419 * Zserv headers to be distinguished from each other.
420 */
421#define ZEBRA_HEADER_MARKER 255
422
paul718e3742002-12-13 20:15:29 +0000423/* Zebra route's types. */
424#define ZEBRA_ROUTE_SYSTEM 0
425#define ZEBRA_ROUTE_KERNEL 1
426#define ZEBRA_ROUTE_CONNECT 2
427#define ZEBRA_ROUTE_STATIC 3
428#define ZEBRA_ROUTE_RIP 4
429#define ZEBRA_ROUTE_RIPNG 5
430#define ZEBRA_ROUTE_OSPF 6
431#define ZEBRA_ROUTE_OSPF6 7
jardin9e867fe2003-12-23 08:56:18 +0000432#define ZEBRA_ROUTE_ISIS 8
433#define ZEBRA_ROUTE_BGP 9
paulaf0d97e2004-10-22 23:24:43 +0000434#define ZEBRA_ROUTE_HSLS 10
435#define ZEBRA_ROUTE_MAX 11
paul718e3742002-12-13 20:15:29 +0000436
Paul Jakmad6d672a2006-05-15 16:56:51 +0000437/* Note: whenever a new route-type or zserv-command is added the
438 * corresponding {command,route}_types[] table in lib/log.c MUST be
439 * updated! */
ajsf52d13c2005-10-01 17:38:06 +0000440
441/* Map a route type to a string. For example, ZEBRA_ROUTE_RIPNG -> "ripng". */
paulb6026072005-11-24 12:51:24 +0000442extern const char *zebra_route_string(unsigned int route_type);
ajsf52d13c2005-10-01 17:38:06 +0000443/* Map a route type to a char. For example, ZEBRA_ROUTE_RIPNG -> 'R'. */
paulb6026072005-11-24 12:51:24 +0000444extern char zebra_route_char(unsigned int route_type);
Paul Jakmad6d672a2006-05-15 16:56:51 +0000445/* Map a zserv command type to the same string,
446 * e.g. ZEBRA_INTERFACE_ADD -> "ZEBRA_INTERFACE_ADD" */
447extern const char *zserv_command_string (unsigned int command);
ajsf52d13c2005-10-01 17:38:06 +0000448
paul718e3742002-12-13 20:15:29 +0000449/* Zebra's family types. */
450#define ZEBRA_FAMILY_IPV4 1
451#define ZEBRA_FAMILY_IPV6 2
452#define ZEBRA_FAMILY_MAX 3
453
454/* Error codes of zebra. */
455#define ZEBRA_ERR_RTEXIST -1
456#define ZEBRA_ERR_RTUNREACH -2
457#define ZEBRA_ERR_EPERM -3
458#define ZEBRA_ERR_RTNOEXIST -4
459
460/* Zebra message flags */
461#define ZEBRA_FLAG_INTERNAL 0x01
462#define ZEBRA_FLAG_SELFROUTE 0x02
463#define ZEBRA_FLAG_BLACKHOLE 0x04
464#define ZEBRA_FLAG_IBGP 0x08
465#define ZEBRA_FLAG_SELECTED 0x10
466#define ZEBRA_FLAG_CHANGED 0x20
467#define ZEBRA_FLAG_STATIC 0x40
hasso81dfcaa2003-05-25 19:21:25 +0000468#define ZEBRA_FLAG_REJECT 0x80
paul718e3742002-12-13 20:15:29 +0000469
470/* Zebra nexthop flags. */
471#define ZEBRA_NEXTHOP_IFINDEX 1
472#define ZEBRA_NEXTHOP_IFNAME 2
473#define ZEBRA_NEXTHOP_IPV4 3
474#define ZEBRA_NEXTHOP_IPV4_IFINDEX 4
475#define ZEBRA_NEXTHOP_IPV4_IFNAME 5
476#define ZEBRA_NEXTHOP_IPV6 6
477#define ZEBRA_NEXTHOP_IPV6_IFINDEX 7
478#define ZEBRA_NEXTHOP_IPV6_IFNAME 8
paul595db7f2003-05-25 21:35:06 +0000479#define ZEBRA_NEXTHOP_BLACKHOLE 9
paul718e3742002-12-13 20:15:29 +0000480
481#ifndef INADDR_LOOPBACK
482#define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
483#endif
484
485/* Address family numbers from RFC1700. */
486#define AFI_IP 1
487#define AFI_IP6 2
488#define AFI_MAX 3
489
490/* Subsequent Address Family Identifier. */
491#define SAFI_UNICAST 1
492#define SAFI_MULTICAST 2
493#define SAFI_UNICAST_MULTICAST 3
494#define SAFI_MPLS_VPN 4
495#define SAFI_MAX 5
496
497/* Filter direction. */
498#define FILTER_IN 0
499#define FILTER_OUT 1
500#define FILTER_MAX 2
501
502/* Default Administrative Distance of each protocol. */
503#define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
504#define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
505#define ZEBRA_STATIC_DISTANCE_DEFAULT 1
506#define ZEBRA_RIP_DISTANCE_DEFAULT 120
507#define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
508#define ZEBRA_OSPF_DISTANCE_DEFAULT 110
509#define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
jardin9e867fe2003-12-23 08:56:18 +0000510#define ZEBRA_ISIS_DISTANCE_DEFAULT 115
paul718e3742002-12-13 20:15:29 +0000511#define ZEBRA_IBGP_DISTANCE_DEFAULT 200
512#define ZEBRA_EBGP_DISTANCE_DEFAULT 20
513
514/* Flag manipulation macros. */
515#define CHECK_FLAG(V,F) ((V) & (F))
ajs548e6f72005-02-08 15:57:25 +0000516#define SET_FLAG(V,F) (V) |= (F)
517#define UNSET_FLAG(V,F) (V) &= ~(F)
paul718e3742002-12-13 20:15:29 +0000518
519/* AFI and SAFI type. */
520typedef u_int16_t afi_t;
paul5228ad22004-06-04 17:58:18 +0000521typedef u_int8_t safi_t;
paul718e3742002-12-13 20:15:29 +0000522
paulc1b98002006-01-16 01:54:02 +0000523/* Zebra types. Used in Zserv message header. */
paul718e3742002-12-13 20:15:29 +0000524typedef u_int16_t zebra_size_t;
paulc1b98002006-01-16 01:54:02 +0000525typedef u_int16_t zebra_command_t;
paul718e3742002-12-13 20:15:29 +0000526
paulf0438522003-05-19 21:06:32 +0000527/* FIFO -- first in first out structure and macros. */
528struct fifo
529{
530 struct fifo *next;
531 struct fifo *prev;
532};
533
534#define FIFO_INIT(F) \
535 do { \
536 struct fifo *Xfifo = (struct fifo *)(F); \
537 Xfifo->next = Xfifo->prev = Xfifo; \
538 } while (0)
539
540#define FIFO_ADD(F,N) \
541 do { \
542 struct fifo *Xfifo = (struct fifo *)(F); \
543 struct fifo *Xnode = (struct fifo *)(N); \
544 Xnode->next = Xfifo; \
545 Xnode->prev = Xfifo->prev; \
546 Xfifo->prev = Xfifo->prev->next = Xnode; \
547 } while (0)
548
549#define FIFO_DEL(N) \
550 do { \
551 struct fifo *Xnode = (struct fifo *)(N); \
552 Xnode->prev->next = Xnode->next; \
553 Xnode->next->prev = Xnode->prev; \
554 } while (0)
555
556#define FIFO_HEAD(F) \
557 ((((struct fifo *)(F))->next == (struct fifo *)(F)) \
558 ? NULL : (F)->next)
559
560#define FIFO_EMPTY(F) \
561 (((struct fifo *)(F))->next == (struct fifo *)(F))
562
563#define FIFO_TOP(F) \
564 (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
565
paul718e3742002-12-13 20:15:29 +0000566#endif /* _ZEBRA_H */