blob: a5ed20e402d2e449d46227da4cc6ad8114bf7837 [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>
David Lamparterc423d412013-07-30 15:36:26 +020043#include <stddef.h>
paul718e3742002-12-13 20:15:29 +000044#include <ctype.h>
45#include <errno.h>
46#include <fcntl.h>
47#include <signal.h>
48#include <string.h>
pauledd7c242003-06-04 13:59:38 +000049#include <pwd.h>
50#include <grp.h>
paul718e3742002-12-13 20:15:29 +000051#ifdef HAVE_STROPTS_H
52#include <stropts.h>
53#endif /* HAVE_STROPTS_H */
paul718e3742002-12-13 20:15:29 +000054#ifdef HAVE_SYS_SELECT_H
55#include <sys/select.h>
56#endif /* HAVE_SYS_SELECT_H */
57#include <sys/stat.h>
paul718e3742002-12-13 20:15:29 +000058#include <sys/types.h>
59#include <sys/param.h>
60#ifdef HAVE_SYS_SYSCTL_H
Andrew J. Schorr0dc0b702007-06-01 13:21:20 +000061#ifdef GNU_LINUX
62#include <linux/types.h>
63#endif
paul718e3742002-12-13 20:15:29 +000064#include <sys/sysctl.h>
65#endif /* HAVE_SYS_SYSCTL_H */
66#include <sys/ioctl.h>
67#ifdef HAVE_SYS_CONF_H
68#include <sys/conf.h>
69#endif /* HAVE_SYS_CONF_H */
70#ifdef HAVE_SYS_KSYM_H
71#include <sys/ksym.h>
72#endif /* HAVE_SYS_KSYM_H */
73#include <syslog.h>
Paul Jakma6511cab2009-06-18 17:38:01 +010074#ifdef TIME_WITH_SYS_TIME
75# include <sys/time.h>
76# include <time.h>
77#else
78# ifdef HAVE_SYS_TIME_H
79# include <sys/time.h>
80# else
81# include <time.h>
82# endif
83#endif /* TIME_WITH_SYS_TIME */
paul718e3742002-12-13 20:15:29 +000084#include <sys/uio.h>
85#include <sys/utsname.h>
86#ifdef HAVE_RUSAGE
87#include <sys/resource.h>
88#endif /* HAVE_RUSAGE */
paula58c25b2003-10-22 02:50:45 +000089#ifdef HAVE_LIMITS_H
90#include <limits.h>
91#endif /* HAVE_LIMITS_H */
Paul Jakma35cfc902006-05-28 08:08:24 +000092#ifdef HAVE_INTTYPES_H
93#include <inttypes.h>
94#endif /* HAVE_INTTYPES_H */
paul718e3742002-12-13 20:15:29 +000095
96/* machine dependent includes */
97#ifdef SUNOS_5
paul718e3742002-12-13 20:15:29 +000098#include <strings.h>
99#endif /* SUNOS_5 */
100
101/* machine dependent includes */
102#ifdef HAVE_LINUX_VERSION_H
103#include <linux/version.h>
104#endif /* HAVE_LINUX_VERSION_H */
105
paulba965c62003-05-20 02:37:39 +0000106#ifdef HAVE_ASM_TYPES_H
107#include <asm/types.h>
108#endif /* HAVE_ASM_TYPES_H */
109
paul718e3742002-12-13 20:15:29 +0000110/* misc include group */
111#include <stdarg.h>
ajs4cf0d0d2004-11-25 17:14:34 +0000112#if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
113/* Not C99; do we need to define va_copy? */
ajse22f5512005-01-12 16:18:17 +0000114#ifndef va_copy
115#ifdef __va_copy
ajs4cf0d0d2004-11-25 17:14:34 +0000116#define va_copy(DST,SRC) __va_copy(DST,SRC)
ajse22f5512005-01-12 16:18:17 +0000117#else
118/* Now we are desperate; this should work on many typical platforms.
119 But this is slightly dangerous, because the standard does not require
120 va_copy to be a macro. */
121#define va_copy(DST,SRC) memcpy(&(DST), &(SRC), sizeof(va_list))
122#warning "Not C99 and no va_copy macro available, falling back to memcpy"
123#endif /* __va_copy */
124#endif /* !va_copy */
ajs4cf0d0d2004-11-25 17:14:34 +0000125#endif /* !C99 */
ajsdb8eaac2005-03-16 16:13:06 +0000126
paul718e3742002-12-13 20:15:29 +0000127
hassoba3a0bc2003-06-04 17:41:54 +0000128#ifdef HAVE_LCAPS
129#include <sys/capability.h>
130#include <sys/prctl.h>
131#endif /* HAVE_LCAPS */
132
paulceacedb2005-09-29 14:39:32 +0000133#ifdef HAVE_SOLARIS_CAPABILITIES
134#include <priv.h>
135#endif /* HAVE_SOLARIS_CAPABILITIES */
136
paul718e3742002-12-13 20:15:29 +0000137/* network include group */
138
139#include <sys/socket.h>
140
141#ifdef HAVE_SYS_SOCKIO_H
142#include <sys/sockio.h>
143#endif /* HAVE_SYS_SOCKIO_H */
144
Hasso Tepperea057672013-01-13 17:45:29 +0000145#ifdef __APPLE__
146#define __APPLE_USE_RFC_3542
147#endif
148
paul718e3742002-12-13 20:15:29 +0000149#ifdef HAVE_NETINET_IN_H
150#include <netinet/in.h>
151#endif /* HAVE_NETINET_IN_H */
152#include <netinet/in_systm.h>
153#include <netinet/ip.h>
154#include <netinet/tcp.h>
155
156#ifdef HAVE_NET_NETOPT_H
157#include <net/netopt.h>
158#endif /* HAVE_NET_NETOPT_H */
159
160#include <net/if.h>
161
162#ifdef HAVE_NET_IF_DL_H
163#include <net/if_dl.h>
164#endif /* HAVE_NET_IF_DL_H */
165
166#ifdef HAVE_NET_IF_VAR_H
167#include <net/if_var.h>
168#endif /* HAVE_NET_IF_VAR_H */
169
paula58c25b2003-10-22 02:50:45 +0000170#ifdef HAVE_NET_ROUTE_H
paul718e3742002-12-13 20:15:29 +0000171#include <net/route.h>
paula58c25b2003-10-22 02:50:45 +0000172#endif /* HAVE_NET_ROUTE_H */
paul718e3742002-12-13 20:15:29 +0000173
174#ifdef HAVE_NETLINK
175#include <linux/netlink.h>
176#include <linux/rtnetlink.h>
Paul Jakma768a27e2008-05-29 18:23:08 +0000177#include <linux/filter.h>
paul718e3742002-12-13 20:15:29 +0000178#else
179#define RT_TABLE_MAIN 0
180#endif /* HAVE_NETLINK */
181
182#ifdef HAVE_NETDB_H
183#include <netdb.h>
184#endif /* HAVE_NETDB_H */
185
186#include <arpa/inet.h>
paul718e3742002-12-13 20:15:29 +0000187
188#ifdef HAVE_INET_ND_H
189#include <inet/nd.h>
190#endif /* HAVE_INET_ND_H */
191
192#ifdef HAVE_NETINET_IN_VAR_H
193#include <netinet/in_var.h>
194#endif /* HAVE_NETINET_IN_VAR_H */
195
hasso726f9b22003-05-25 21:04:54 +0000196#ifdef HAVE_NETINET6_IN6_VAR_H
197#include <netinet6/in6_var.h>
198#endif /* HAVE_NETINET6_IN6_VAR_H */
199
paul718e3742002-12-13 20:15:29 +0000200#ifdef HAVE_NETINET_IN6_VAR_H
201#include <netinet/in6_var.h>
202#endif /* HAVE_NETINET_IN6_VAR_H */
203
204#ifdef HAVE_NETINET6_IN_H
205#include <netinet6/in.h>
206#endif /* HAVE_NETINET6_IN_H */
207
208
209#ifdef HAVE_NETINET6_IP6_H
210#include <netinet6/ip6.h>
211#endif /* HAVE_NETINET6_IP6_H */
212
213#ifdef HAVE_NETINET_ICMP6_H
214#include <netinet/icmp6.h>
215#endif /* HAVE_NETINET_ICMP6_H */
216
217#ifdef HAVE_NETINET6_ND6_H
218#include <netinet6/nd6.h>
219#endif /* HAVE_NETINET6_ND6_H */
220
Paul Jakma35cfc902006-05-28 08:08:24 +0000221/* Some systems do not define UINT32_MAX, etc.. from inttypes.h
222 * e.g. this makes life easier for FBSD 4.11 users.
223 */
224#ifndef INT8_MAX
225#define INT8_MAX (127)
226#endif
227#ifndef INT16_MAX
228#define INT16_MAX (32767)
229#endif
230#ifndef INT32_MAX
231#define INT32_MAX (2147483647)
232#endif
233#ifndef UINT8_MAX
234#define UINT8_MAX (255U)
235#endif
236#ifndef UINT16_MAX
237#define UINT16_MAX (65535U)
238#endif
paul3b424972003-10-13 09:47:32 +0000239#ifndef UINT32_MAX
Paul Jakma35cfc902006-05-28 08:08:24 +0000240#define UINT32_MAX (4294967295U)
241#endif
paul3b424972003-10-13 09:47:32 +0000242
paulfb2d1502003-06-04 09:40:54 +0000243#ifdef HAVE_GLIBC_BACKTRACE
244#include <execinfo.h>
245#endif /* HAVE_GLIBC_BACKTRACE */
246
ajsdb8eaac2005-03-16 16:13:06 +0000247/* Local includes: */
248#if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
249#define __attribute__(x)
250#endif /* !__GNUC__ || VTYSH_EXTRACT_PL */
251
252#include "zassert.h"
ajs3cb98de2005-04-02 16:01:05 +0000253#include "str.h"
ajsdb8eaac2005-03-16 16:13:06 +0000254
255
ajsb99760a2005-01-04 16:24:43 +0000256#ifdef HAVE_BROKEN_CMSG_FIRSTHDR
257/* This bug is present in Solaris 8 and pre-patch Solaris 9 <sys/socket.h>;
258 please refer to http://bugzilla.quagga.net/show_bug.cgi?id=142 */
259
260/* Check that msg_controllen is large enough. */
261#define ZCMSG_FIRSTHDR(mhdr) \
262 (((size_t)((mhdr)->msg_controllen) >= sizeof(struct cmsghdr)) ? \
263 CMSG_FIRSTHDR(mhdr) : (struct cmsghdr *)NULL)
264
265#warning "CMSG_FIRSTHDR is broken on this platform, using a workaround"
266
267#else /* HAVE_BROKEN_CMSG_FIRSTHDR */
268#define ZCMSG_FIRSTHDR(M) CMSG_FIRSTHDR(M)
269#endif /* HAVE_BROKEN_CMSG_FIRSTHDR */
270
271
272
paul02ff83c2004-06-11 11:27:03 +0000273/*
gdt69e13252004-11-15 18:51:15 +0000274 * RFC 3542 defines several macros for using struct cmsghdr.
275 * Here, we define those that are not present
276 */
277
278/*
279 * Internal defines, for use only in this file.
280 * These are likely wrong on other than ILP32 machines, so warn.
paul02ff83c2004-06-11 11:27:03 +0000281 */
282#ifndef _CMSG_DATA_ALIGN
283#define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3)
284#endif /* _CMSG_DATA_ALIGN */
285
286#ifndef _CMSG_HDR_ALIGN
287#define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3)
288#endif /* _CMSG_HDR_ALIGN */
289
gdt69e13252004-11-15 18:51:15 +0000290/*
291 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
292 * version.
293 */
paul02ff83c2004-06-11 11:27:03 +0000294#ifndef CMSG_SPACE
295#define CMSG_SPACE(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + \
296 _CMSG_HDR_ALIGN(l))
gdt69e13252004-11-15 18:51:15 +0000297#warning "assuming 4-byte alignment for CMSG_SPACE"
paul02ff83c2004-06-11 11:27:03 +0000298#endif /* CMSG_SPACE */
299
300
301#ifndef CMSG_LEN
302#define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
gdt69e13252004-11-15 18:51:15 +0000303#warning "assuming 4-byte alignment for CMSG_LEN"
paul02ff83c2004-06-11 11:27:03 +0000304#endif /* CMSG_LEN */
305
gdt69e13252004-11-15 18:51:15 +0000306
paul718e3742002-12-13 20:15:29 +0000307/* The definition of struct in_pktinfo is missing in old version of
308 GLIBC 2.1 (Redhat 6.1). */
Paul Jakma6f0e3f62007-05-10 02:38:51 +0000309#if defined (GNU_LINUX) && ! defined (HAVE_STRUCT_IN_PKTINFO)
paul718e3742002-12-13 20:15:29 +0000310struct in_pktinfo
311{
312 int ipi_ifindex;
313 struct in_addr ipi_spec_dst;
314 struct in_addr ipi_addr;
315};
316#endif
317
paul9172ee02004-09-27 12:46:37 +0000318/*
319 * OSPF Fragmentation / fragmented writes
320 *
321 * ospfd can support writing fragmented packets, for cases where
322 * kernel will not fragment IP_HDRINCL and/or multicast destined
323 * packets (ie TTBOMK all kernels, BSD, SunOS, Linux). However,
324 * SunOS, probably BSD too, clobber the user supplied IP ID and IP
325 * flags fields, hence user-space fragmentation will not work.
326 * Only Linux is known to leave IP header unmolested.
327 * Further, fragmentation really should be done the kernel, which already
328 * supports it, and which avoids nasty IP ID state problems.
329 *
330 * Fragmentation of OSPF packets can be required on networks with router
331 * with many many interfaces active in one area, or on networks with links
332 * with low MTUs.
333 */
334#ifdef GNU_LINUX
335#define WANT_OSPF_WRITE_FRAGMENT
336#endif
337
338/*
339 * IP_HDRINCL / struct ip byte order
340 *
341 * Linux: network byte order
342 * *BSD: network, except for length and offset. (cf Stevens)
343 * SunOS: nominally as per BSD. but bug: network order on LE.
344 * OpenBSD: network byte order, apart from older versions which are as per
345 * *BSD
346 */
Olivier Cochard-Labbéf6444e42014-10-09 10:28:21 +0100347#if defined(__NetBSD__) \
348 || (defined(__FreeBSD__) && (__FreeBSD_version < 1100030)) \
paul9172ee02004-09-27 12:46:37 +0000349 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
Doug VanLeuven3f0bfc92012-09-26 12:01:23 +0000350 || (defined(__APPLE__)) \
paul9172ee02004-09-27 12:46:37 +0000351 || (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
Avneesh Sachdev0915bb02012-11-13 22:48:55 +0000380#define ZEBRA_NUM_OF(x) (sizeof (x) / sizeof (x[0]))
381
paul718e3742002-12-13 20:15:29 +0000382/* For old definition. */
383#ifndef IN6_ARE_ADDR_EQUAL
384#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
385#endif /* IN6_ARE_ADDR_EQUAL */
386
paul8cc41982005-05-06 21:25:49 +0000387/* default zebra TCP port for zclient */
388#define ZEBRA_PORT 2600
389
paul718e3742002-12-13 20:15:29 +0000390/* Zebra message types. */
391#define ZEBRA_INTERFACE_ADD 1
392#define ZEBRA_INTERFACE_DELETE 2
393#define ZEBRA_INTERFACE_ADDRESS_ADD 3
394#define ZEBRA_INTERFACE_ADDRESS_DELETE 4
395#define ZEBRA_INTERFACE_UP 5
396#define ZEBRA_INTERFACE_DOWN 6
397#define ZEBRA_IPV4_ROUTE_ADD 7
398#define ZEBRA_IPV4_ROUTE_DELETE 8
399#define ZEBRA_IPV6_ROUTE_ADD 9
400#define ZEBRA_IPV6_ROUTE_DELETE 10
401#define ZEBRA_REDISTRIBUTE_ADD 11
402#define ZEBRA_REDISTRIBUTE_DELETE 12
403#define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13
404#define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14
405#define ZEBRA_IPV4_NEXTHOP_LOOKUP 15
406#define ZEBRA_IPV6_NEXTHOP_LOOKUP 16
407#define ZEBRA_IPV4_IMPORT_LOOKUP 17
408#define ZEBRA_IPV6_IMPORT_LOOKUP 18
paulefba6ce2004-08-25 13:47:16 +0000409#define ZEBRA_INTERFACE_RENAME 19
hasso18a6dce2004-10-03 18:18:34 +0000410#define ZEBRA_ROUTER_ID_ADD 20
411#define ZEBRA_ROUTER_ID_DELETE 21
412#define ZEBRA_ROUTER_ID_UPDATE 22
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +0400413#define ZEBRA_HELLO 23
Everton Marques4e5275b2014-07-01 15:15:52 -0300414#define ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB 24
415#define ZEBRA_MESSAGE_MAX 25
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
David Lampartere0ca5fd2009-09-16 01:52:42 +0200423/* Zebra route's types are defined in route_types.h */
424#include "route_types.h"
paul718e3742002-12-13 20:15:29 +0000425
Paul Jakmad6d672a2006-05-15 16:56:51 +0000426/* Note: whenever a new route-type or zserv-command is added the
427 * corresponding {command,route}_types[] table in lib/log.c MUST be
428 * updated! */
ajsf52d13c2005-10-01 17:38:06 +0000429
430/* Map a route type to a string. For example, ZEBRA_ROUTE_RIPNG -> "ripng". */
paulb6026072005-11-24 12:51:24 +0000431extern const char *zebra_route_string(unsigned int route_type);
ajsf52d13c2005-10-01 17:38:06 +0000432/* Map a route type to a char. For example, ZEBRA_ROUTE_RIPNG -> 'R'. */
paulb6026072005-11-24 12:51:24 +0000433extern char zebra_route_char(unsigned int route_type);
Paul Jakmad6d672a2006-05-15 16:56:51 +0000434/* Map a zserv command type to the same string,
435 * e.g. ZEBRA_INTERFACE_ADD -> "ZEBRA_INTERFACE_ADD" */
Paul Jakma7514fb72007-05-02 16:05:35 +0000436/* Map a protocol name to its number. e.g. ZEBRA_ROUTE_BGP->9*/
437extern int proto_name2num(const char *s);
David Lampartere0ca5fd2009-09-16 01:52:42 +0200438/* Map redistribute X argument to protocol number.
439 * unlike proto_name2num, this accepts shorthands and takes
440 * an AFI value to restrict input */
441extern int proto_redistnum(int afi, const char *s);
Paul Jakma7514fb72007-05-02 16:05:35 +0000442
Paul Jakmad6d672a2006-05-15 16:56:51 +0000443extern const char *zserv_command_string (unsigned int command);
ajsf52d13c2005-10-01 17:38:06 +0000444
paul718e3742002-12-13 20:15:29 +0000445/* Zebra's family types. */
446#define ZEBRA_FAMILY_IPV4 1
447#define ZEBRA_FAMILY_IPV6 2
448#define ZEBRA_FAMILY_MAX 3
449
450/* Error codes of zebra. */
Denis Ovsienkodc958242007-08-13 16:03:06 +0000451#define ZEBRA_ERR_NOERROR 0
paul718e3742002-12-13 20:15:29 +0000452#define ZEBRA_ERR_RTEXIST -1
453#define ZEBRA_ERR_RTUNREACH -2
454#define ZEBRA_ERR_EPERM -3
455#define ZEBRA_ERR_RTNOEXIST -4
Denis Ovsienkodc958242007-08-13 16:03:06 +0000456#define ZEBRA_ERR_KERNEL -5
paul718e3742002-12-13 20:15:29 +0000457
458/* Zebra message flags */
459#define ZEBRA_FLAG_INTERNAL 0x01
460#define ZEBRA_FLAG_SELFROUTE 0x02
461#define ZEBRA_FLAG_BLACKHOLE 0x04
462#define ZEBRA_FLAG_IBGP 0x08
463#define ZEBRA_FLAG_SELECTED 0x10
464#define ZEBRA_FLAG_CHANGED 0x20
465#define ZEBRA_FLAG_STATIC 0x40
hasso81dfcaa2003-05-25 19:21:25 +0000466#define ZEBRA_FLAG_REJECT 0x80
paul718e3742002-12-13 20:15:29 +0000467
468/* Zebra nexthop flags. */
469#define ZEBRA_NEXTHOP_IFINDEX 1
470#define ZEBRA_NEXTHOP_IFNAME 2
471#define ZEBRA_NEXTHOP_IPV4 3
472#define ZEBRA_NEXTHOP_IPV4_IFINDEX 4
473#define ZEBRA_NEXTHOP_IPV4_IFNAME 5
474#define ZEBRA_NEXTHOP_IPV6 6
475#define ZEBRA_NEXTHOP_IPV6_IFINDEX 7
476#define ZEBRA_NEXTHOP_IPV6_IFNAME 8
paul595db7f2003-05-25 21:35:06 +0000477#define ZEBRA_NEXTHOP_BLACKHOLE 9
paul718e3742002-12-13 20:15:29 +0000478
479#ifndef INADDR_LOOPBACK
480#define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
481#endif
482
483/* Address family numbers from RFC1700. */
484#define AFI_IP 1
485#define AFI_IP6 2
486#define AFI_MAX 3
487
488/* Subsequent Address Family Identifier. */
489#define SAFI_UNICAST 1
490#define SAFI_MULTICAST 2
Denis Ovsienko0a281302011-07-17 19:33:21 +0400491#define SAFI_RESERVED_3 3
paul718e3742002-12-13 20:15:29 +0000492#define SAFI_MPLS_VPN 4
493#define SAFI_MAX 5
494
495/* Filter direction. */
496#define FILTER_IN 0
497#define FILTER_OUT 1
498#define FILTER_MAX 2
499
500/* Default Administrative Distance of each protocol. */
501#define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
502#define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
503#define ZEBRA_STATIC_DISTANCE_DEFAULT 1
504#define ZEBRA_RIP_DISTANCE_DEFAULT 120
505#define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
506#define ZEBRA_OSPF_DISTANCE_DEFAULT 110
507#define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
jardin9e867fe2003-12-23 08:56:18 +0000508#define ZEBRA_ISIS_DISTANCE_DEFAULT 115
paul718e3742002-12-13 20:15:29 +0000509#define ZEBRA_IBGP_DISTANCE_DEFAULT 200
510#define ZEBRA_EBGP_DISTANCE_DEFAULT 20
511
512/* Flag manipulation macros. */
513#define CHECK_FLAG(V,F) ((V) & (F))
ajs548e6f72005-02-08 15:57:25 +0000514#define SET_FLAG(V,F) (V) |= (F)
515#define UNSET_FLAG(V,F) (V) &= ~(F)
paul718e3742002-12-13 20:15:29 +0000516
517/* AFI and SAFI type. */
518typedef u_int16_t afi_t;
paul5228ad22004-06-04 17:58:18 +0000519typedef u_int8_t safi_t;
paul718e3742002-12-13 20:15:29 +0000520
paulc1b98002006-01-16 01:54:02 +0000521/* Zebra types. Used in Zserv message header. */
paul718e3742002-12-13 20:15:29 +0000522typedef u_int16_t zebra_size_t;
paulc1b98002006-01-16 01:54:02 +0000523typedef u_int16_t zebra_command_t;
paul718e3742002-12-13 20:15:29 +0000524
paulf0438522003-05-19 21:06:32 +0000525/* FIFO -- first in first out structure and macros. */
526struct fifo
527{
528 struct fifo *next;
529 struct fifo *prev;
530};
531
532#define FIFO_INIT(F) \
533 do { \
534 struct fifo *Xfifo = (struct fifo *)(F); \
535 Xfifo->next = Xfifo->prev = Xfifo; \
536 } while (0)
537
538#define FIFO_ADD(F,N) \
539 do { \
540 struct fifo *Xfifo = (struct fifo *)(F); \
541 struct fifo *Xnode = (struct fifo *)(N); \
542 Xnode->next = Xfifo; \
543 Xnode->prev = Xfifo->prev; \
544 Xfifo->prev = Xfifo->prev->next = Xnode; \
545 } while (0)
546
547#define FIFO_DEL(N) \
548 do { \
549 struct fifo *Xnode = (struct fifo *)(N); \
550 Xnode->prev->next = Xnode->next; \
551 Xnode->next->prev = Xnode->prev; \
552 } while (0)
553
554#define FIFO_HEAD(F) \
555 ((((struct fifo *)(F))->next == (struct fifo *)(F)) \
556 ? NULL : (F)->next)
557
558#define FIFO_EMPTY(F) \
559 (((struct fifo *)(F))->next == (struct fifo *)(F))
560
561#define FIFO_TOP(F) \
562 (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
563
paul718e3742002-12-13 20:15:29 +0000564#endif /* _ZEBRA_H */