blob: 83da37c5471819a402786241ded227d4f117609d [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 */
paul718e3742002-12-13 20:15:29 +000081
82/* machine dependent includes */
83#ifdef SUNOS_5
paul718e3742002-12-13 20:15:29 +000084#include <strings.h>
85#endif /* SUNOS_5 */
86
87/* machine dependent includes */
88#ifdef HAVE_LINUX_VERSION_H
89#include <linux/version.h>
90#endif /* HAVE_LINUX_VERSION_H */
91
paulba965c62003-05-20 02:37:39 +000092#ifdef HAVE_ASM_TYPES_H
93#include <asm/types.h>
94#endif /* HAVE_ASM_TYPES_H */
95
paul718e3742002-12-13 20:15:29 +000096/* misc include group */
97#include <stdarg.h>
ajs4cf0d0d2004-11-25 17:14:34 +000098#if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
99/* Not C99; do we need to define va_copy? */
100#if !defined(va_copy) && defined(__va_copy)
101#define va_copy(DST,SRC) __va_copy(DST,SRC)
102#endif /* need va_copy */
103#endif /* !C99 */
ajscee3df12004-11-24 17:14:49 +0000104#include "zassert.h"
paul718e3742002-12-13 20:15:29 +0000105
hassoba3a0bc2003-06-04 17:41:54 +0000106#ifdef HAVE_LCAPS
107#include <sys/capability.h>
108#include <sys/prctl.h>
109#endif /* HAVE_LCAPS */
110
paul718e3742002-12-13 20:15:29 +0000111/* network include group */
112
113#include <sys/socket.h>
114
115#ifdef HAVE_SYS_SOCKIO_H
116#include <sys/sockio.h>
117#endif /* HAVE_SYS_SOCKIO_H */
118
119#ifdef HAVE_NETINET_IN_H
120#include <netinet/in.h>
121#endif /* HAVE_NETINET_IN_H */
122#include <netinet/in_systm.h>
123#include <netinet/ip.h>
124#include <netinet/tcp.h>
125
126#ifdef HAVE_NET_NETOPT_H
127#include <net/netopt.h>
128#endif /* HAVE_NET_NETOPT_H */
129
130#include <net/if.h>
131
132#ifdef HAVE_NET_IF_DL_H
133#include <net/if_dl.h>
134#endif /* HAVE_NET_IF_DL_H */
135
136#ifdef HAVE_NET_IF_VAR_H
137#include <net/if_var.h>
138#endif /* HAVE_NET_IF_VAR_H */
139
paula58c25b2003-10-22 02:50:45 +0000140#ifdef HAVE_NET_ROUTE_H
paul718e3742002-12-13 20:15:29 +0000141#include <net/route.h>
paula58c25b2003-10-22 02:50:45 +0000142#endif /* HAVE_NET_ROUTE_H */
paul718e3742002-12-13 20:15:29 +0000143
144#ifdef HAVE_NETLINK
145#include <linux/netlink.h>
146#include <linux/rtnetlink.h>
147#else
148#define RT_TABLE_MAIN 0
149#endif /* HAVE_NETLINK */
150
151#ifdef HAVE_NETDB_H
152#include <netdb.h>
153#endif /* HAVE_NETDB_H */
154
155#include <arpa/inet.h>
156#include <arpa/telnet.h>
157
158#ifdef HAVE_INET_ND_H
159#include <inet/nd.h>
160#endif /* HAVE_INET_ND_H */
161
162#ifdef HAVE_NETINET_IN_VAR_H
163#include <netinet/in_var.h>
164#endif /* HAVE_NETINET_IN_VAR_H */
165
hasso726f9b22003-05-25 21:04:54 +0000166#ifdef HAVE_NETINET6_IN6_VAR_H
167#include <netinet6/in6_var.h>
168#endif /* HAVE_NETINET6_IN6_VAR_H */
169
paul718e3742002-12-13 20:15:29 +0000170#ifdef HAVE_NETINET_IN6_VAR_H
171#include <netinet/in6_var.h>
172#endif /* HAVE_NETINET_IN6_VAR_H */
173
174#ifdef HAVE_NETINET6_IN_H
175#include <netinet6/in.h>
176#endif /* HAVE_NETINET6_IN_H */
177
178
179#ifdef HAVE_NETINET6_IP6_H
180#include <netinet6/ip6.h>
181#endif /* HAVE_NETINET6_IP6_H */
182
183#ifdef HAVE_NETINET_ICMP6_H
184#include <netinet/icmp6.h>
185#endif /* HAVE_NETINET_ICMP6_H */
186
187#ifdef HAVE_NETINET6_ND6_H
188#include <netinet6/nd6.h>
189#endif /* HAVE_NETINET6_ND6_H */
190
paul3b424972003-10-13 09:47:32 +0000191/* Some systems do not define UINT32_MAX */
192#ifndef UINT32_MAX
193#define UINT32_MAX 0xFFFFFFFFU
194#endif /* UINT32_MAX */
195
paul718e3742002-12-13 20:15:29 +0000196#ifdef HAVE_LIBUTIL_H
197#include <libutil.h>
198#endif /* HAVE_LIBUTIL_H */
199
paulfb2d1502003-06-04 09:40:54 +0000200#ifdef HAVE_GLIBC_BACKTRACE
201#include <execinfo.h>
202#endif /* HAVE_GLIBC_BACKTRACE */
203
paul718e3742002-12-13 20:15:29 +0000204#ifdef BSDI_NRL
205
206#ifdef HAVE_NETINET6_IN6_H
207#include <netinet6/in6.h>
208#endif /* HAVE_NETINET6_IN6_H */
209
210#ifdef NRL
211#include <netinet6/in6.h>
212#endif /* NRL */
213
214#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
215
paul718e3742002-12-13 20:15:29 +0000216#endif /* BSDI_NRL */
217
paul02ff83c2004-06-11 11:27:03 +0000218/*
gdt69e13252004-11-15 18:51:15 +0000219 * RFC 3542 defines several macros for using struct cmsghdr.
220 * Here, we define those that are not present
221 */
222
223/*
224 * Internal defines, for use only in this file.
225 * These are likely wrong on other than ILP32 machines, so warn.
paul02ff83c2004-06-11 11:27:03 +0000226 */
227#ifndef _CMSG_DATA_ALIGN
228#define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3)
229#endif /* _CMSG_DATA_ALIGN */
230
231#ifndef _CMSG_HDR_ALIGN
232#define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3)
233#endif /* _CMSG_HDR_ALIGN */
234
gdt69e13252004-11-15 18:51:15 +0000235/*
236 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
237 * version.
238 */
paul02ff83c2004-06-11 11:27:03 +0000239#ifndef CMSG_SPACE
240#define CMSG_SPACE(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + \
241 _CMSG_HDR_ALIGN(l))
gdt69e13252004-11-15 18:51:15 +0000242#warning "assuming 4-byte alignment for CMSG_SPACE"
paul02ff83c2004-06-11 11:27:03 +0000243#endif /* CMSG_SPACE */
244
245
246#ifndef CMSG_LEN
247#define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
gdt69e13252004-11-15 18:51:15 +0000248#warning "assuming 4-byte alignment for CMSG_LEN"
paul02ff83c2004-06-11 11:27:03 +0000249#endif /* CMSG_LEN */
250
gdt69e13252004-11-15 18:51:15 +0000251
252
paul138ce752004-06-21 10:35:59 +0000253#if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
paul51a87982004-06-09 10:36:05 +0000254#define __attribute__(x)
255#endif /* !__GNUC__ */
256
paul718e3742002-12-13 20:15:29 +0000257/* The definition of struct in_pktinfo is missing in old version of
258 GLIBC 2.1 (Redhat 6.1). */
259#if defined (GNU_LINUX) && ! defined (HAVE_INPKTINFO)
260struct in_pktinfo
261{
262 int ipi_ifindex;
263 struct in_addr ipi_spec_dst;
264 struct in_addr ipi_addr;
265};
266#endif
267
paul9172ee02004-09-27 12:46:37 +0000268/*
269 * OSPF Fragmentation / fragmented writes
270 *
271 * ospfd can support writing fragmented packets, for cases where
272 * kernel will not fragment IP_HDRINCL and/or multicast destined
273 * packets (ie TTBOMK all kernels, BSD, SunOS, Linux). However,
274 * SunOS, probably BSD too, clobber the user supplied IP ID and IP
275 * flags fields, hence user-space fragmentation will not work.
276 * Only Linux is known to leave IP header unmolested.
277 * Further, fragmentation really should be done the kernel, which already
278 * supports it, and which avoids nasty IP ID state problems.
279 *
280 * Fragmentation of OSPF packets can be required on networks with router
281 * with many many interfaces active in one area, or on networks with links
282 * with low MTUs.
283 */
284#ifdef GNU_LINUX
285#define WANT_OSPF_WRITE_FRAGMENT
286#endif
287
288/*
289 * IP_HDRINCL / struct ip byte order
290 *
291 * Linux: network byte order
292 * *BSD: network, except for length and offset. (cf Stevens)
293 * SunOS: nominally as per BSD. but bug: network order on LE.
294 * OpenBSD: network byte order, apart from older versions which are as per
295 * *BSD
296 */
297#if defined(__NetBSD__) || defined(__FreeBSD__) \
298 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
299 || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN))
300#define HAVE_IP_HDRINCL_BSD_ORDER
301#endif
302
paulefba6ce2004-08-25 13:47:16 +0000303/* MAX / MIN are not commonly defined, but useful */
304#ifndef MAX
305#define MAX(a, b) ((a) > (b) ? (a) : (b))
306#endif
307#ifndef MIN
308#define MIN(a, b) ((a) < (b) ? (a) : (b))
309#endif
310
paul718e3742002-12-13 20:15:29 +0000311/* For old definition. */
312#ifndef IN6_ARE_ADDR_EQUAL
313#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
314#endif /* IN6_ARE_ADDR_EQUAL */
315
316/* Zebra message types. */
317#define ZEBRA_INTERFACE_ADD 1
318#define ZEBRA_INTERFACE_DELETE 2
319#define ZEBRA_INTERFACE_ADDRESS_ADD 3
320#define ZEBRA_INTERFACE_ADDRESS_DELETE 4
321#define ZEBRA_INTERFACE_UP 5
322#define ZEBRA_INTERFACE_DOWN 6
323#define ZEBRA_IPV4_ROUTE_ADD 7
324#define ZEBRA_IPV4_ROUTE_DELETE 8
325#define ZEBRA_IPV6_ROUTE_ADD 9
326#define ZEBRA_IPV6_ROUTE_DELETE 10
327#define ZEBRA_REDISTRIBUTE_ADD 11
328#define ZEBRA_REDISTRIBUTE_DELETE 12
329#define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13
330#define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14
331#define ZEBRA_IPV4_NEXTHOP_LOOKUP 15
332#define ZEBRA_IPV6_NEXTHOP_LOOKUP 16
333#define ZEBRA_IPV4_IMPORT_LOOKUP 17
334#define ZEBRA_IPV6_IMPORT_LOOKUP 18
paulefba6ce2004-08-25 13:47:16 +0000335#define ZEBRA_INTERFACE_RENAME 19
hasso18a6dce2004-10-03 18:18:34 +0000336#define ZEBRA_ROUTER_ID_ADD 20
337#define ZEBRA_ROUTER_ID_DELETE 21
338#define ZEBRA_ROUTER_ID_UPDATE 22
339#define ZEBRA_MESSAGE_MAX 23
paul718e3742002-12-13 20:15:29 +0000340
341/* Zebra route's types. */
342#define ZEBRA_ROUTE_SYSTEM 0
343#define ZEBRA_ROUTE_KERNEL 1
344#define ZEBRA_ROUTE_CONNECT 2
345#define ZEBRA_ROUTE_STATIC 3
346#define ZEBRA_ROUTE_RIP 4
347#define ZEBRA_ROUTE_RIPNG 5
348#define ZEBRA_ROUTE_OSPF 6
349#define ZEBRA_ROUTE_OSPF6 7
jardin9e867fe2003-12-23 08:56:18 +0000350#define ZEBRA_ROUTE_ISIS 8
351#define ZEBRA_ROUTE_BGP 9
paulaf0d97e2004-10-22 23:24:43 +0000352#define ZEBRA_ROUTE_HSLS 10
353#define ZEBRA_ROUTE_MAX 11
paul718e3742002-12-13 20:15:29 +0000354
355/* Zebra's family types. */
356#define ZEBRA_FAMILY_IPV4 1
357#define ZEBRA_FAMILY_IPV6 2
358#define ZEBRA_FAMILY_MAX 3
359
360/* Error codes of zebra. */
361#define ZEBRA_ERR_RTEXIST -1
362#define ZEBRA_ERR_RTUNREACH -2
363#define ZEBRA_ERR_EPERM -3
364#define ZEBRA_ERR_RTNOEXIST -4
365
366/* Zebra message flags */
367#define ZEBRA_FLAG_INTERNAL 0x01
368#define ZEBRA_FLAG_SELFROUTE 0x02
369#define ZEBRA_FLAG_BLACKHOLE 0x04
370#define ZEBRA_FLAG_IBGP 0x08
371#define ZEBRA_FLAG_SELECTED 0x10
372#define ZEBRA_FLAG_CHANGED 0x20
373#define ZEBRA_FLAG_STATIC 0x40
hasso81dfcaa2003-05-25 19:21:25 +0000374#define ZEBRA_FLAG_REJECT 0x80
paul718e3742002-12-13 20:15:29 +0000375
376/* Zebra nexthop flags. */
377#define ZEBRA_NEXTHOP_IFINDEX 1
378#define ZEBRA_NEXTHOP_IFNAME 2
379#define ZEBRA_NEXTHOP_IPV4 3
380#define ZEBRA_NEXTHOP_IPV4_IFINDEX 4
381#define ZEBRA_NEXTHOP_IPV4_IFNAME 5
382#define ZEBRA_NEXTHOP_IPV6 6
383#define ZEBRA_NEXTHOP_IPV6_IFINDEX 7
384#define ZEBRA_NEXTHOP_IPV6_IFNAME 8
paul595db7f2003-05-25 21:35:06 +0000385#define ZEBRA_NEXTHOP_BLACKHOLE 9
paul718e3742002-12-13 20:15:29 +0000386
387#ifndef INADDR_LOOPBACK
388#define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
389#endif
390
391/* Address family numbers from RFC1700. */
392#define AFI_IP 1
393#define AFI_IP6 2
394#define AFI_MAX 3
395
396/* Subsequent Address Family Identifier. */
397#define SAFI_UNICAST 1
398#define SAFI_MULTICAST 2
399#define SAFI_UNICAST_MULTICAST 3
400#define SAFI_MPLS_VPN 4
401#define SAFI_MAX 5
402
403/* Filter direction. */
404#define FILTER_IN 0
405#define FILTER_OUT 1
406#define FILTER_MAX 2
407
408/* Default Administrative Distance of each protocol. */
409#define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
410#define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
411#define ZEBRA_STATIC_DISTANCE_DEFAULT 1
412#define ZEBRA_RIP_DISTANCE_DEFAULT 120
413#define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
414#define ZEBRA_OSPF_DISTANCE_DEFAULT 110
415#define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
jardin9e867fe2003-12-23 08:56:18 +0000416#define ZEBRA_ISIS_DISTANCE_DEFAULT 115
paul718e3742002-12-13 20:15:29 +0000417#define ZEBRA_IBGP_DISTANCE_DEFAULT 200
418#define ZEBRA_EBGP_DISTANCE_DEFAULT 20
419
420/* Flag manipulation macros. */
421#define CHECK_FLAG(V,F) ((V) & (F))
422#define SET_FLAG(V,F) (V) = (V) | (F)
423#define UNSET_FLAG(V,F) (V) = (V) & ~(F)
424
425/* AFI and SAFI type. */
426typedef u_int16_t afi_t;
paul5228ad22004-06-04 17:58:18 +0000427typedef u_int8_t safi_t;
paul718e3742002-12-13 20:15:29 +0000428
429/* Zebra types. */
430typedef u_int16_t zebra_size_t;
431typedef u_int8_t zebra_command_t;
432
paulf0438522003-05-19 21:06:32 +0000433/* FIFO -- first in first out structure and macros. */
434struct fifo
435{
436 struct fifo *next;
437 struct fifo *prev;
438};
439
440#define FIFO_INIT(F) \
441 do { \
442 struct fifo *Xfifo = (struct fifo *)(F); \
443 Xfifo->next = Xfifo->prev = Xfifo; \
444 } while (0)
445
446#define FIFO_ADD(F,N) \
447 do { \
448 struct fifo *Xfifo = (struct fifo *)(F); \
449 struct fifo *Xnode = (struct fifo *)(N); \
450 Xnode->next = Xfifo; \
451 Xnode->prev = Xfifo->prev; \
452 Xfifo->prev = Xfifo->prev->next = Xnode; \
453 } while (0)
454
455#define FIFO_DEL(N) \
456 do { \
457 struct fifo *Xnode = (struct fifo *)(N); \
458 Xnode->prev->next = Xnode->next; \
459 Xnode->next->prev = Xnode->prev; \
460 } while (0)
461
462#define FIFO_HEAD(F) \
463 ((((struct fifo *)(F))->next == (struct fifo *)(F)) \
464 ? NULL : (F)->next)
465
466#define FIFO_EMPTY(F) \
467 (((struct fifo *)(F))->next == (struct fifo *)(F))
468
469#define FIFO_TOP(F) \
470 (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
471
paul718e3742002-12-13 20:15:29 +0000472#endif /* _ZEBRA_H */