blob: 644729b74d165f4efa46f434211b0eb5d1ee7c98 [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
paul9bcdb632003-07-08 08:09:45 +000030typedef unsigned int u_int32_t;
31typedef unsigned short u_int16_t;
32typedef unsigned char u_int8_t;
paul718e3742002-12-13 20:15:29 +000033#endif /* SUNOS_5 */
34
paulf0438522003-05-19 21:06:32 +000035#ifndef HAVE_SOCKLEN_T
36typedef int socklen_t;
37#endif /* HAVE_SOCKLEN_T */
38
paul718e3742002-12-13 20:15:29 +000039#include <unistd.h>
40#include <stdio.h>
41#include <stdlib.h>
David Lamparterc423d412013-07-30 15:36:26 +020042#include <stddef.h>
paul718e3742002-12-13 20:15:29 +000043#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 */
paul718e3742002-12-13 20:15:29 +000053#ifdef HAVE_SYS_SELECT_H
54#include <sys/select.h>
55#endif /* HAVE_SYS_SELECT_H */
56#include <sys/stat.h>
paul718e3742002-12-13 20:15:29 +000057#include <sys/types.h>
58#include <sys/param.h>
59#ifdef HAVE_SYS_SYSCTL_H
Andrew J. Schorr0dc0b702007-06-01 13:21:20 +000060#ifdef GNU_LINUX
61#include <linux/types.h>
62#endif
paul718e3742002-12-13 20:15:29 +000063#include <sys/sysctl.h>
64#endif /* HAVE_SYS_SYSCTL_H */
65#include <sys/ioctl.h>
66#ifdef HAVE_SYS_CONF_H
67#include <sys/conf.h>
68#endif /* HAVE_SYS_CONF_H */
69#ifdef HAVE_SYS_KSYM_H
70#include <sys/ksym.h>
71#endif /* HAVE_SYS_KSYM_H */
72#include <syslog.h>
Paul Jakma6511cab2009-06-18 17:38:01 +010073#ifdef TIME_WITH_SYS_TIME
74# include <sys/time.h>
75# include <time.h>
76#else
77# ifdef HAVE_SYS_TIME_H
78# include <sys/time.h>
79# else
80# include <time.h>
81# endif
82#endif /* TIME_WITH_SYS_TIME */
paul718e3742002-12-13 20:15:29 +000083#include <sys/uio.h>
84#include <sys/utsname.h>
85#ifdef HAVE_RUSAGE
86#include <sys/resource.h>
87#endif /* HAVE_RUSAGE */
paula58c25b2003-10-22 02:50:45 +000088#ifdef HAVE_LIMITS_H
89#include <limits.h>
90#endif /* HAVE_LIMITS_H */
Paul Jakma35cfc902006-05-28 08:08:24 +000091#ifdef HAVE_INTTYPES_H
92#include <inttypes.h>
93#endif /* HAVE_INTTYPES_H */
Paul Jakmae8441a82015-09-15 16:15:27 +010094#ifdef HAVE_STDBOOL_H
95#include <stdbool.h>
96#endif
paul718e3742002-12-13 20:15:29 +000097
98/* machine dependent includes */
99#ifdef SUNOS_5
paul718e3742002-12-13 20:15:29 +0000100#include <strings.h>
101#endif /* SUNOS_5 */
102
103/* machine dependent includes */
104#ifdef HAVE_LINUX_VERSION_H
105#include <linux/version.h>
106#endif /* HAVE_LINUX_VERSION_H */
107
paulba965c62003-05-20 02:37:39 +0000108#ifdef HAVE_ASM_TYPES_H
109#include <asm/types.h>
110#endif /* HAVE_ASM_TYPES_H */
111
paul718e3742002-12-13 20:15:29 +0000112/* misc include group */
113#include <stdarg.h>
ajs4cf0d0d2004-11-25 17:14:34 +0000114#if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
115/* Not C99; do we need to define va_copy? */
ajse22f5512005-01-12 16:18:17 +0000116#ifndef va_copy
117#ifdef __va_copy
ajs4cf0d0d2004-11-25 17:14:34 +0000118#define va_copy(DST,SRC) __va_copy(DST,SRC)
ajse22f5512005-01-12 16:18:17 +0000119#else
120/* Now we are desperate; this should work on many typical platforms.
121 But this is slightly dangerous, because the standard does not require
122 va_copy to be a macro. */
123#define va_copy(DST,SRC) memcpy(&(DST), &(SRC), sizeof(va_list))
124#warning "Not C99 and no va_copy macro available, falling back to memcpy"
125#endif /* __va_copy */
126#endif /* !va_copy */
ajs4cf0d0d2004-11-25 17:14:34 +0000127#endif /* !C99 */
ajsdb8eaac2005-03-16 16:13:06 +0000128
paul718e3742002-12-13 20:15:29 +0000129
hassoba3a0bc2003-06-04 17:41:54 +0000130#ifdef HAVE_LCAPS
131#include <sys/capability.h>
132#include <sys/prctl.h>
133#endif /* HAVE_LCAPS */
134
paulceacedb2005-09-29 14:39:32 +0000135#ifdef HAVE_SOLARIS_CAPABILITIES
136#include <priv.h>
137#endif /* HAVE_SOLARIS_CAPABILITIES */
138
paul718e3742002-12-13 20:15:29 +0000139/* network include group */
140
141#include <sys/socket.h>
142
143#ifdef HAVE_SYS_SOCKIO_H
144#include <sys/sockio.h>
145#endif /* HAVE_SYS_SOCKIO_H */
146
Hasso Tepperea057672013-01-13 17:45:29 +0000147#ifdef __APPLE__
148#define __APPLE_USE_RFC_3542
149#endif
150
paul718e3742002-12-13 20:15:29 +0000151#ifdef HAVE_NETINET_IN_H
152#include <netinet/in.h>
153#endif /* HAVE_NETINET_IN_H */
154#include <netinet/in_systm.h>
155#include <netinet/ip.h>
156#include <netinet/tcp.h>
157
158#ifdef HAVE_NET_NETOPT_H
159#include <net/netopt.h>
160#endif /* HAVE_NET_NETOPT_H */
161
162#include <net/if.h>
163
164#ifdef HAVE_NET_IF_DL_H
165#include <net/if_dl.h>
166#endif /* HAVE_NET_IF_DL_H */
167
168#ifdef HAVE_NET_IF_VAR_H
169#include <net/if_var.h>
170#endif /* HAVE_NET_IF_VAR_H */
171
paula58c25b2003-10-22 02:50:45 +0000172#ifdef HAVE_NET_ROUTE_H
paul718e3742002-12-13 20:15:29 +0000173#include <net/route.h>
paula58c25b2003-10-22 02:50:45 +0000174#endif /* HAVE_NET_ROUTE_H */
paul718e3742002-12-13 20:15:29 +0000175
176#ifdef HAVE_NETLINK
177#include <linux/netlink.h>
178#include <linux/rtnetlink.h>
Paul Jakma768a27e2008-05-29 18:23:08 +0000179#include <linux/filter.h>
paul718e3742002-12-13 20:15:29 +0000180#else
181#define RT_TABLE_MAIN 0
182#endif /* HAVE_NETLINK */
183
184#ifdef HAVE_NETDB_H
185#include <netdb.h>
186#endif /* HAVE_NETDB_H */
187
188#include <arpa/inet.h>
paul718e3742002-12-13 20:15:29 +0000189
190#ifdef HAVE_INET_ND_H
191#include <inet/nd.h>
192#endif /* HAVE_INET_ND_H */
193
194#ifdef HAVE_NETINET_IN_VAR_H
195#include <netinet/in_var.h>
196#endif /* HAVE_NETINET_IN_VAR_H */
197
hasso726f9b22003-05-25 21:04:54 +0000198#ifdef HAVE_NETINET6_IN6_VAR_H
199#include <netinet6/in6_var.h>
200#endif /* HAVE_NETINET6_IN6_VAR_H */
201
paul718e3742002-12-13 20:15:29 +0000202#ifdef HAVE_NETINET_IN6_VAR_H
203#include <netinet/in6_var.h>
204#endif /* HAVE_NETINET_IN6_VAR_H */
205
206#ifdef HAVE_NETINET6_IN_H
207#include <netinet6/in.h>
208#endif /* HAVE_NETINET6_IN_H */
209
210
211#ifdef HAVE_NETINET6_IP6_H
212#include <netinet6/ip6.h>
213#endif /* HAVE_NETINET6_IP6_H */
214
215#ifdef HAVE_NETINET_ICMP6_H
216#include <netinet/icmp6.h>
217#endif /* HAVE_NETINET_ICMP6_H */
218
219#ifdef HAVE_NETINET6_ND6_H
220#include <netinet6/nd6.h>
221#endif /* HAVE_NETINET6_ND6_H */
222
Paul Jakma35cfc902006-05-28 08:08:24 +0000223/* Some systems do not define UINT32_MAX, etc.. from inttypes.h
224 * e.g. this makes life easier for FBSD 4.11 users.
225 */
226#ifndef INT8_MAX
227#define INT8_MAX (127)
228#endif
229#ifndef INT16_MAX
230#define INT16_MAX (32767)
231#endif
232#ifndef INT32_MAX
233#define INT32_MAX (2147483647)
234#endif
235#ifndef UINT8_MAX
236#define UINT8_MAX (255U)
237#endif
238#ifndef UINT16_MAX
239#define UINT16_MAX (65535U)
240#endif
paul3b424972003-10-13 09:47:32 +0000241#ifndef UINT32_MAX
Paul Jakma35cfc902006-05-28 08:08:24 +0000242#define UINT32_MAX (4294967295U)
243#endif
paul3b424972003-10-13 09:47:32 +0000244
paulfb2d1502003-06-04 09:40:54 +0000245#ifdef HAVE_GLIBC_BACKTRACE
246#include <execinfo.h>
247#endif /* HAVE_GLIBC_BACKTRACE */
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 */
Olivier Cochard-Labbéf6444e42014-10-09 10:28:21 +0100349#if defined(__NetBSD__) \
350 || (defined(__FreeBSD__) && (__FreeBSD_version < 1100030)) \
paul9172ee02004-09-27 12:46:37 +0000351 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
Doug VanLeuven3f0bfc92012-09-26 12:01:23 +0000352 || (defined(__APPLE__)) \
paul9172ee02004-09-27 12:46:37 +0000353 || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN))
354#define HAVE_IP_HDRINCL_BSD_ORDER
355#endif
356
paul34204aa2005-11-03 09:00:23 +0000357/* Define BYTE_ORDER, if not defined. Useful for compiler conditional
358 * code, rather than preprocessor conditional.
359 * Not all the world has this BSD define.
360 */
361#ifndef BYTE_ORDER
362#define BIG_ENDIAN 4321 /* least-significant byte first (vax, pc) */
363#define LITTLE_ENDIAN 1234 /* most-significant byte first (IBM, net) */
364#define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp) */
365
366#if defined(WORDS_BIGENDIAN)
367#define BYTE_ORDER BIG_ENDIAN
368#else /* !WORDS_BIGENDIAN */
369#define BYTE_ORDER LITTLE_ENDIAN
370#endif /* WORDS_BIGENDIAN */
371
372#endif /* ndef BYTE_ORDER */
373
paulefba6ce2004-08-25 13:47:16 +0000374/* MAX / MIN are not commonly defined, but useful */
375#ifndef MAX
376#define MAX(a, b) ((a) > (b) ? (a) : (b))
377#endif
378#ifndef MIN
379#define MIN(a, b) ((a) < (b) ? (a) : (b))
380#endif
381
Avneesh Sachdev0915bb02012-11-13 22:48:55 +0000382#define ZEBRA_NUM_OF(x) (sizeof (x) / sizeof (x[0]))
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
Vyacheslav Trushkin2ea1ab12011-12-11 18:48:47 +0400415#define ZEBRA_HELLO 23
Everton Marques4e5275b2014-07-01 15:15:52 -0300416#define ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB 24
Feng Luc99f3482014-10-16 09:52:36 +0800417#define ZEBRA_VRF_UNREGISTER 25
418#define ZEBRA_MESSAGE_MAX 26
paul718e3742002-12-13 20:15:29 +0000419
paulc1b98002006-01-16 01:54:02 +0000420/* Marker value used in new Zserv, in the byte location corresponding
421 * the command value in the old zserv header. To allow old and new
422 * Zserv headers to be distinguished from each other.
423 */
424#define ZEBRA_HEADER_MARKER 255
425
David Lampartere0ca5fd2009-09-16 01:52:42 +0200426/* Zebra route's types are defined in route_types.h */
427#include "route_types.h"
paul718e3742002-12-13 20:15:29 +0000428
Paul Jakmad6d672a2006-05-15 16:56:51 +0000429/* Note: whenever a new route-type or zserv-command is added the
430 * corresponding {command,route}_types[] table in lib/log.c MUST be
431 * updated! */
ajsf52d13c2005-10-01 17:38:06 +0000432
433/* Map a route type to a string. For example, ZEBRA_ROUTE_RIPNG -> "ripng". */
paulb6026072005-11-24 12:51:24 +0000434extern const char *zebra_route_string(unsigned int route_type);
ajsf52d13c2005-10-01 17:38:06 +0000435/* Map a route type to a char. For example, ZEBRA_ROUTE_RIPNG -> 'R'. */
paulb6026072005-11-24 12:51:24 +0000436extern char zebra_route_char(unsigned int route_type);
Paul Jakmad6d672a2006-05-15 16:56:51 +0000437/* Map a zserv command type to the same string,
438 * e.g. ZEBRA_INTERFACE_ADD -> "ZEBRA_INTERFACE_ADD" */
Paul Jakma7514fb72007-05-02 16:05:35 +0000439/* Map a protocol name to its number. e.g. ZEBRA_ROUTE_BGP->9*/
440extern int proto_name2num(const char *s);
David Lampartere0ca5fd2009-09-16 01:52:42 +0200441/* Map redistribute X argument to protocol number.
442 * unlike proto_name2num, this accepts shorthands and takes
443 * an AFI value to restrict input */
444extern int proto_redistnum(int afi, const char *s);
Paul Jakma7514fb72007-05-02 16:05:35 +0000445
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/* Error codes of zebra. */
Denis Ovsienkodc958242007-08-13 16:03:06 +0000449#define ZEBRA_ERR_NOERROR 0
paul718e3742002-12-13 20:15:29 +0000450#define ZEBRA_ERR_RTEXIST -1
451#define ZEBRA_ERR_RTUNREACH -2
452#define ZEBRA_ERR_EPERM -3
453#define ZEBRA_ERR_RTNOEXIST -4
Denis Ovsienkodc958242007-08-13 16:03:06 +0000454#define ZEBRA_ERR_KERNEL -5
paul718e3742002-12-13 20:15:29 +0000455
456/* Zebra message flags */
457#define ZEBRA_FLAG_INTERNAL 0x01
458#define ZEBRA_FLAG_SELFROUTE 0x02
459#define ZEBRA_FLAG_BLACKHOLE 0x04
460#define ZEBRA_FLAG_IBGP 0x08
461#define ZEBRA_FLAG_SELECTED 0x10
paul718e3742002-12-13 20:15:29 +0000462#define ZEBRA_FLAG_STATIC 0x40
hasso81dfcaa2003-05-25 19:21:25 +0000463#define ZEBRA_FLAG_REJECT 0x80
paul718e3742002-12-13 20:15:29 +0000464
465/* Zebra nexthop flags. */
466#define ZEBRA_NEXTHOP_IFINDEX 1
467#define ZEBRA_NEXTHOP_IFNAME 2
468#define ZEBRA_NEXTHOP_IPV4 3
469#define ZEBRA_NEXTHOP_IPV4_IFINDEX 4
470#define ZEBRA_NEXTHOP_IPV4_IFNAME 5
471#define ZEBRA_NEXTHOP_IPV6 6
472#define ZEBRA_NEXTHOP_IPV6_IFINDEX 7
473#define ZEBRA_NEXTHOP_IPV6_IFNAME 8
paul595db7f2003-05-25 21:35:06 +0000474#define ZEBRA_NEXTHOP_BLACKHOLE 9
paul718e3742002-12-13 20:15:29 +0000475
476#ifndef INADDR_LOOPBACK
477#define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
478#endif
479
480/* Address family numbers from RFC1700. */
Donald Sharpf3cfc462016-01-07 09:33:28 -0500481typedef enum {
482 AFI_IP = 1,
483 AFI_IP6 = 2,
484#define AFI_MAX 3
485} afi_t;
paul718e3742002-12-13 20:15:29 +0000486
487/* Subsequent Address Family Identifier. */
488#define SAFI_UNICAST 1
489#define SAFI_MULTICAST 2
Denis Ovsienko0a281302011-07-17 19:33:21 +0400490#define SAFI_RESERVED_3 3
paul718e3742002-12-13 20:15:29 +0000491#define SAFI_MPLS_VPN 4
Lou Berger2daf7f32016-01-12 13:41:50 -0500492#define SAFI_ENCAP 7 /* per IANA */
493#define SAFI_MAX 8
paul718e3742002-12-13 20:15:29 +0000494
paul718e3742002-12-13 20:15:29 +0000495/* Default Administrative Distance of each protocol. */
496#define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
497#define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
498#define ZEBRA_STATIC_DISTANCE_DEFAULT 1
499#define ZEBRA_RIP_DISTANCE_DEFAULT 120
500#define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
501#define ZEBRA_OSPF_DISTANCE_DEFAULT 110
502#define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
jardin9e867fe2003-12-23 08:56:18 +0000503#define ZEBRA_ISIS_DISTANCE_DEFAULT 115
paul718e3742002-12-13 20:15:29 +0000504#define ZEBRA_IBGP_DISTANCE_DEFAULT 200
505#define ZEBRA_EBGP_DISTANCE_DEFAULT 20
506
507/* Flag manipulation macros. */
508#define CHECK_FLAG(V,F) ((V) & (F))
ajs548e6f72005-02-08 15:57:25 +0000509#define SET_FLAG(V,F) (V) |= (F)
510#define UNSET_FLAG(V,F) (V) &= ~(F)
paul718e3742002-12-13 20:15:29 +0000511
paul5228ad22004-06-04 17:58:18 +0000512typedef u_int8_t safi_t;
paul718e3742002-12-13 20:15:29 +0000513
paulc1b98002006-01-16 01:54:02 +0000514/* Zebra types. Used in Zserv message header. */
paul718e3742002-12-13 20:15:29 +0000515typedef u_int16_t zebra_size_t;
paulc1b98002006-01-16 01:54:02 +0000516typedef u_int16_t zebra_command_t;
paul718e3742002-12-13 20:15:29 +0000517
Feng Lu41f44a22015-05-22 11:39:56 +0200518/* VRF ID type. */
519typedef u_int16_t vrf_id_t;
520
paulf0438522003-05-19 21:06:32 +0000521/* FIFO -- first in first out structure and macros. */
522struct fifo
523{
524 struct fifo *next;
525 struct fifo *prev;
526};
527
528#define FIFO_INIT(F) \
529 do { \
530 struct fifo *Xfifo = (struct fifo *)(F); \
531 Xfifo->next = Xfifo->prev = Xfifo; \
532 } while (0)
533
534#define FIFO_ADD(F,N) \
535 do { \
536 struct fifo *Xfifo = (struct fifo *)(F); \
537 struct fifo *Xnode = (struct fifo *)(N); \
538 Xnode->next = Xfifo; \
539 Xnode->prev = Xfifo->prev; \
540 Xfifo->prev = Xfifo->prev->next = Xnode; \
541 } while (0)
542
543#define FIFO_DEL(N) \
544 do { \
545 struct fifo *Xnode = (struct fifo *)(N); \
546 Xnode->prev->next = Xnode->next; \
547 Xnode->next->prev = Xnode->prev; \
548 } while (0)
549
550#define FIFO_HEAD(F) \
551 ((((struct fifo *)(F))->next == (struct fifo *)(F)) \
552 ? NULL : (F)->next)
553
554#define FIFO_EMPTY(F) \
555 (((struct fifo *)(F))->next == (struct fifo *)(F))
556
557#define FIFO_TOP(F) \
558 (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
559
paul718e3742002-12-13 20:15:29 +0000560#endif /* _ZEBRA_H */