blob: 7d907ed7e7e08fc7b227013e8bbfb166fc1fcc65 [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? */
ajse22f5512005-01-12 16:18:17 +0000100#ifndef va_copy
101#ifdef __va_copy
ajs4cf0d0d2004-11-25 17:14:34 +0000102#define va_copy(DST,SRC) __va_copy(DST,SRC)
ajse22f5512005-01-12 16:18:17 +0000103#else
104/* Now we are desperate; this should work on many typical platforms.
105 But this is slightly dangerous, because the standard does not require
106 va_copy to be a macro. */
107#define va_copy(DST,SRC) memcpy(&(DST), &(SRC), sizeof(va_list))
108#warning "Not C99 and no va_copy macro available, falling back to memcpy"
109#endif /* __va_copy */
110#endif /* !va_copy */
ajs4cf0d0d2004-11-25 17:14:34 +0000111#endif /* !C99 */
ajsdb8eaac2005-03-16 16:13:06 +0000112
paul718e3742002-12-13 20:15:29 +0000113
hassoba3a0bc2003-06-04 17:41:54 +0000114#ifdef HAVE_LCAPS
115#include <sys/capability.h>
116#include <sys/prctl.h>
117#endif /* HAVE_LCAPS */
118
paul718e3742002-12-13 20:15:29 +0000119/* network include group */
120
121#include <sys/socket.h>
122
123#ifdef HAVE_SYS_SOCKIO_H
124#include <sys/sockio.h>
125#endif /* HAVE_SYS_SOCKIO_H */
126
127#ifdef HAVE_NETINET_IN_H
128#include <netinet/in.h>
129#endif /* HAVE_NETINET_IN_H */
130#include <netinet/in_systm.h>
131#include <netinet/ip.h>
132#include <netinet/tcp.h>
133
134#ifdef HAVE_NET_NETOPT_H
135#include <net/netopt.h>
136#endif /* HAVE_NET_NETOPT_H */
137
138#include <net/if.h>
139
140#ifdef HAVE_NET_IF_DL_H
141#include <net/if_dl.h>
142#endif /* HAVE_NET_IF_DL_H */
143
144#ifdef HAVE_NET_IF_VAR_H
145#include <net/if_var.h>
146#endif /* HAVE_NET_IF_VAR_H */
147
paula58c25b2003-10-22 02:50:45 +0000148#ifdef HAVE_NET_ROUTE_H
paul718e3742002-12-13 20:15:29 +0000149#include <net/route.h>
paula58c25b2003-10-22 02:50:45 +0000150#endif /* HAVE_NET_ROUTE_H */
paul718e3742002-12-13 20:15:29 +0000151
152#ifdef HAVE_NETLINK
153#include <linux/netlink.h>
154#include <linux/rtnetlink.h>
155#else
156#define RT_TABLE_MAIN 0
157#endif /* HAVE_NETLINK */
158
159#ifdef HAVE_NETDB_H
160#include <netdb.h>
161#endif /* HAVE_NETDB_H */
162
163#include <arpa/inet.h>
paul718e3742002-12-13 20:15:29 +0000164
165#ifdef HAVE_INET_ND_H
166#include <inet/nd.h>
167#endif /* HAVE_INET_ND_H */
168
169#ifdef HAVE_NETINET_IN_VAR_H
170#include <netinet/in_var.h>
171#endif /* HAVE_NETINET_IN_VAR_H */
172
hasso726f9b22003-05-25 21:04:54 +0000173#ifdef HAVE_NETINET6_IN6_VAR_H
174#include <netinet6/in6_var.h>
175#endif /* HAVE_NETINET6_IN6_VAR_H */
176
paul718e3742002-12-13 20:15:29 +0000177#ifdef HAVE_NETINET_IN6_VAR_H
178#include <netinet/in6_var.h>
179#endif /* HAVE_NETINET_IN6_VAR_H */
180
181#ifdef HAVE_NETINET6_IN_H
182#include <netinet6/in.h>
183#endif /* HAVE_NETINET6_IN_H */
184
185
186#ifdef HAVE_NETINET6_IP6_H
187#include <netinet6/ip6.h>
188#endif /* HAVE_NETINET6_IP6_H */
189
190#ifdef HAVE_NETINET_ICMP6_H
191#include <netinet/icmp6.h>
192#endif /* HAVE_NETINET_ICMP6_H */
193
194#ifdef HAVE_NETINET6_ND6_H
195#include <netinet6/nd6.h>
196#endif /* HAVE_NETINET6_ND6_H */
197
paul3b424972003-10-13 09:47:32 +0000198/* Some systems do not define UINT32_MAX */
199#ifndef UINT32_MAX
200#define UINT32_MAX 0xFFFFFFFFU
201#endif /* UINT32_MAX */
202
paul718e3742002-12-13 20:15:29 +0000203#ifdef HAVE_LIBUTIL_H
204#include <libutil.h>
205#endif /* HAVE_LIBUTIL_H */
206
paulfb2d1502003-06-04 09:40:54 +0000207#ifdef HAVE_GLIBC_BACKTRACE
208#include <execinfo.h>
209#endif /* HAVE_GLIBC_BACKTRACE */
210
paul718e3742002-12-13 20:15:29 +0000211#ifdef BSDI_NRL
212
213#ifdef HAVE_NETINET6_IN6_H
214#include <netinet6/in6.h>
215#endif /* HAVE_NETINET6_IN6_H */
216
217#ifdef NRL
218#include <netinet6/in6.h>
219#endif /* NRL */
220
221#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
222
paul718e3742002-12-13 20:15:29 +0000223#endif /* BSDI_NRL */
224
ajsdb8eaac2005-03-16 16:13:06 +0000225/* Local includes: */
226#if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
227#define __attribute__(x)
228#endif /* !__GNUC__ || VTYSH_EXTRACT_PL */
229
230#include "zassert.h"
ajs3cb98de2005-04-02 16:01:05 +0000231#include "str.h"
ajsdb8eaac2005-03-16 16:13:06 +0000232
233
ajsb99760a2005-01-04 16:24:43 +0000234#ifdef HAVE_BROKEN_CMSG_FIRSTHDR
235/* This bug is present in Solaris 8 and pre-patch Solaris 9 <sys/socket.h>;
236 please refer to http://bugzilla.quagga.net/show_bug.cgi?id=142 */
237
238/* Check that msg_controllen is large enough. */
239#define ZCMSG_FIRSTHDR(mhdr) \
240 (((size_t)((mhdr)->msg_controllen) >= sizeof(struct cmsghdr)) ? \
241 CMSG_FIRSTHDR(mhdr) : (struct cmsghdr *)NULL)
242
243#warning "CMSG_FIRSTHDR is broken on this platform, using a workaround"
244
245#else /* HAVE_BROKEN_CMSG_FIRSTHDR */
246#define ZCMSG_FIRSTHDR(M) CMSG_FIRSTHDR(M)
247#endif /* HAVE_BROKEN_CMSG_FIRSTHDR */
248
249
250
paul02ff83c2004-06-11 11:27:03 +0000251/*
gdt69e13252004-11-15 18:51:15 +0000252 * RFC 3542 defines several macros for using struct cmsghdr.
253 * Here, we define those that are not present
254 */
255
256/*
257 * Internal defines, for use only in this file.
258 * These are likely wrong on other than ILP32 machines, so warn.
paul02ff83c2004-06-11 11:27:03 +0000259 */
260#ifndef _CMSG_DATA_ALIGN
261#define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3)
262#endif /* _CMSG_DATA_ALIGN */
263
264#ifndef _CMSG_HDR_ALIGN
265#define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3)
266#endif /* _CMSG_HDR_ALIGN */
267
gdt69e13252004-11-15 18:51:15 +0000268/*
269 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
270 * version.
271 */
paul02ff83c2004-06-11 11:27:03 +0000272#ifndef CMSG_SPACE
273#define CMSG_SPACE(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + \
274 _CMSG_HDR_ALIGN(l))
gdt69e13252004-11-15 18:51:15 +0000275#warning "assuming 4-byte alignment for CMSG_SPACE"
paul02ff83c2004-06-11 11:27:03 +0000276#endif /* CMSG_SPACE */
277
278
279#ifndef CMSG_LEN
280#define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
gdt69e13252004-11-15 18:51:15 +0000281#warning "assuming 4-byte alignment for CMSG_LEN"
paul02ff83c2004-06-11 11:27:03 +0000282#endif /* CMSG_LEN */
283
gdt69e13252004-11-15 18:51:15 +0000284
paul718e3742002-12-13 20:15:29 +0000285/* The definition of struct in_pktinfo is missing in old version of
286 GLIBC 2.1 (Redhat 6.1). */
287#if defined (GNU_LINUX) && ! defined (HAVE_INPKTINFO)
288struct in_pktinfo
289{
290 int ipi_ifindex;
291 struct in_addr ipi_spec_dst;
292 struct in_addr ipi_addr;
293};
294#endif
295
paul9172ee02004-09-27 12:46:37 +0000296/*
297 * OSPF Fragmentation / fragmented writes
298 *
299 * ospfd can support writing fragmented packets, for cases where
300 * kernel will not fragment IP_HDRINCL and/or multicast destined
301 * packets (ie TTBOMK all kernels, BSD, SunOS, Linux). However,
302 * SunOS, probably BSD too, clobber the user supplied IP ID and IP
303 * flags fields, hence user-space fragmentation will not work.
304 * Only Linux is known to leave IP header unmolested.
305 * Further, fragmentation really should be done the kernel, which already
306 * supports it, and which avoids nasty IP ID state problems.
307 *
308 * Fragmentation of OSPF packets can be required on networks with router
309 * with many many interfaces active in one area, or on networks with links
310 * with low MTUs.
311 */
312#ifdef GNU_LINUX
313#define WANT_OSPF_WRITE_FRAGMENT
314#endif
315
316/*
317 * IP_HDRINCL / struct ip byte order
318 *
319 * Linux: network byte order
320 * *BSD: network, except for length and offset. (cf Stevens)
321 * SunOS: nominally as per BSD. but bug: network order on LE.
322 * OpenBSD: network byte order, apart from older versions which are as per
323 * *BSD
324 */
325#if defined(__NetBSD__) || defined(__FreeBSD__) \
326 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
327 || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN))
328#define HAVE_IP_HDRINCL_BSD_ORDER
329#endif
330
paulefba6ce2004-08-25 13:47:16 +0000331/* MAX / MIN are not commonly defined, but useful */
332#ifndef MAX
333#define MAX(a, b) ((a) > (b) ? (a) : (b))
334#endif
335#ifndef MIN
336#define MIN(a, b) ((a) < (b) ? (a) : (b))
337#endif
338
paul718e3742002-12-13 20:15:29 +0000339/* For old definition. */
340#ifndef IN6_ARE_ADDR_EQUAL
341#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
342#endif /* IN6_ARE_ADDR_EQUAL */
343
344/* Zebra message types. */
345#define ZEBRA_INTERFACE_ADD 1
346#define ZEBRA_INTERFACE_DELETE 2
347#define ZEBRA_INTERFACE_ADDRESS_ADD 3
348#define ZEBRA_INTERFACE_ADDRESS_DELETE 4
349#define ZEBRA_INTERFACE_UP 5
350#define ZEBRA_INTERFACE_DOWN 6
351#define ZEBRA_IPV4_ROUTE_ADD 7
352#define ZEBRA_IPV4_ROUTE_DELETE 8
353#define ZEBRA_IPV6_ROUTE_ADD 9
354#define ZEBRA_IPV6_ROUTE_DELETE 10
355#define ZEBRA_REDISTRIBUTE_ADD 11
356#define ZEBRA_REDISTRIBUTE_DELETE 12
357#define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13
358#define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14
359#define ZEBRA_IPV4_NEXTHOP_LOOKUP 15
360#define ZEBRA_IPV6_NEXTHOP_LOOKUP 16
361#define ZEBRA_IPV4_IMPORT_LOOKUP 17
362#define ZEBRA_IPV6_IMPORT_LOOKUP 18
paulefba6ce2004-08-25 13:47:16 +0000363#define ZEBRA_INTERFACE_RENAME 19
hasso18a6dce2004-10-03 18:18:34 +0000364#define ZEBRA_ROUTER_ID_ADD 20
365#define ZEBRA_ROUTER_ID_DELETE 21
366#define ZEBRA_ROUTER_ID_UPDATE 22
367#define ZEBRA_MESSAGE_MAX 23
paul718e3742002-12-13 20:15:29 +0000368
369/* Zebra route's types. */
370#define ZEBRA_ROUTE_SYSTEM 0
371#define ZEBRA_ROUTE_KERNEL 1
372#define ZEBRA_ROUTE_CONNECT 2
373#define ZEBRA_ROUTE_STATIC 3
374#define ZEBRA_ROUTE_RIP 4
375#define ZEBRA_ROUTE_RIPNG 5
376#define ZEBRA_ROUTE_OSPF 6
377#define ZEBRA_ROUTE_OSPF6 7
jardin9e867fe2003-12-23 08:56:18 +0000378#define ZEBRA_ROUTE_ISIS 8
379#define ZEBRA_ROUTE_BGP 9
paulaf0d97e2004-10-22 23:24:43 +0000380#define ZEBRA_ROUTE_HSLS 10
381#define ZEBRA_ROUTE_MAX 11
paul718e3742002-12-13 20:15:29 +0000382
383/* Zebra's family types. */
384#define ZEBRA_FAMILY_IPV4 1
385#define ZEBRA_FAMILY_IPV6 2
386#define ZEBRA_FAMILY_MAX 3
387
388/* Error codes of zebra. */
389#define ZEBRA_ERR_RTEXIST -1
390#define ZEBRA_ERR_RTUNREACH -2
391#define ZEBRA_ERR_EPERM -3
392#define ZEBRA_ERR_RTNOEXIST -4
393
394/* Zebra message flags */
395#define ZEBRA_FLAG_INTERNAL 0x01
396#define ZEBRA_FLAG_SELFROUTE 0x02
397#define ZEBRA_FLAG_BLACKHOLE 0x04
398#define ZEBRA_FLAG_IBGP 0x08
399#define ZEBRA_FLAG_SELECTED 0x10
400#define ZEBRA_FLAG_CHANGED 0x20
401#define ZEBRA_FLAG_STATIC 0x40
hasso81dfcaa2003-05-25 19:21:25 +0000402#define ZEBRA_FLAG_REJECT 0x80
paul718e3742002-12-13 20:15:29 +0000403
404/* Zebra nexthop flags. */
405#define ZEBRA_NEXTHOP_IFINDEX 1
406#define ZEBRA_NEXTHOP_IFNAME 2
407#define ZEBRA_NEXTHOP_IPV4 3
408#define ZEBRA_NEXTHOP_IPV4_IFINDEX 4
409#define ZEBRA_NEXTHOP_IPV4_IFNAME 5
410#define ZEBRA_NEXTHOP_IPV6 6
411#define ZEBRA_NEXTHOP_IPV6_IFINDEX 7
412#define ZEBRA_NEXTHOP_IPV6_IFNAME 8
paul595db7f2003-05-25 21:35:06 +0000413#define ZEBRA_NEXTHOP_BLACKHOLE 9
paul718e3742002-12-13 20:15:29 +0000414
415#ifndef INADDR_LOOPBACK
416#define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
417#endif
418
419/* Address family numbers from RFC1700. */
420#define AFI_IP 1
421#define AFI_IP6 2
422#define AFI_MAX 3
423
424/* Subsequent Address Family Identifier. */
425#define SAFI_UNICAST 1
426#define SAFI_MULTICAST 2
427#define SAFI_UNICAST_MULTICAST 3
428#define SAFI_MPLS_VPN 4
429#define SAFI_MAX 5
430
431/* Filter direction. */
432#define FILTER_IN 0
433#define FILTER_OUT 1
434#define FILTER_MAX 2
435
436/* Default Administrative Distance of each protocol. */
437#define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
438#define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
439#define ZEBRA_STATIC_DISTANCE_DEFAULT 1
440#define ZEBRA_RIP_DISTANCE_DEFAULT 120
441#define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
442#define ZEBRA_OSPF_DISTANCE_DEFAULT 110
443#define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
jardin9e867fe2003-12-23 08:56:18 +0000444#define ZEBRA_ISIS_DISTANCE_DEFAULT 115
paul718e3742002-12-13 20:15:29 +0000445#define ZEBRA_IBGP_DISTANCE_DEFAULT 200
446#define ZEBRA_EBGP_DISTANCE_DEFAULT 20
447
448/* Flag manipulation macros. */
449#define CHECK_FLAG(V,F) ((V) & (F))
ajs548e6f72005-02-08 15:57:25 +0000450#define SET_FLAG(V,F) (V) |= (F)
451#define UNSET_FLAG(V,F) (V) &= ~(F)
paul718e3742002-12-13 20:15:29 +0000452
453/* AFI and SAFI type. */
454typedef u_int16_t afi_t;
paul5228ad22004-06-04 17:58:18 +0000455typedef u_int8_t safi_t;
paul718e3742002-12-13 20:15:29 +0000456
457/* Zebra types. */
458typedef u_int16_t zebra_size_t;
459typedef u_int8_t zebra_command_t;
460
paulf0438522003-05-19 21:06:32 +0000461/* FIFO -- first in first out structure and macros. */
462struct fifo
463{
464 struct fifo *next;
465 struct fifo *prev;
466};
467
468#define FIFO_INIT(F) \
469 do { \
470 struct fifo *Xfifo = (struct fifo *)(F); \
471 Xfifo->next = Xfifo->prev = Xfifo; \
472 } while (0)
473
474#define FIFO_ADD(F,N) \
475 do { \
476 struct fifo *Xfifo = (struct fifo *)(F); \
477 struct fifo *Xnode = (struct fifo *)(N); \
478 Xnode->next = Xfifo; \
479 Xnode->prev = Xfifo->prev; \
480 Xfifo->prev = Xfifo->prev->next = Xnode; \
481 } while (0)
482
483#define FIFO_DEL(N) \
484 do { \
485 struct fifo *Xnode = (struct fifo *)(N); \
486 Xnode->prev->next = Xnode->next; \
487 Xnode->next->prev = Xnode->prev; \
488 } while (0)
489
490#define FIFO_HEAD(F) \
491 ((((struct fifo *)(F))->next == (struct fifo *)(F)) \
492 ? NULL : (F)->next)
493
494#define FIFO_EMPTY(F) \
495 (((struct fifo *)(F))->next == (struct fifo *)(F))
496
497#define FIFO_TOP(F) \
498 (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
499
paul718e3742002-12-13 20:15:29 +0000500#endif /* _ZEBRA_H */