blob: dc17730b7cd1273d46c7df29c1e718809bb98412 [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 */
78
79/* machine dependent includes */
80#ifdef SUNOS_5
81#include <limits.h>
82#include <strings.h>
83#endif /* SUNOS_5 */
84
85/* machine dependent includes */
86#ifdef HAVE_LINUX_VERSION_H
87#include <linux/version.h>
88#endif /* HAVE_LINUX_VERSION_H */
89
paulba965c62003-05-20 02:37:39 +000090#ifdef HAVE_ASM_TYPES_H
91#include <asm/types.h>
92#endif /* HAVE_ASM_TYPES_H */
93
paul718e3742002-12-13 20:15:29 +000094/* misc include group */
95#include <stdarg.h>
96#include <assert.h>
97
hassoba3a0bc2003-06-04 17:41:54 +000098#ifdef HAVE_LCAPS
99#include <sys/capability.h>
100#include <sys/prctl.h>
101#endif /* HAVE_LCAPS */
102
paul718e3742002-12-13 20:15:29 +0000103/* network include group */
104
105#include <sys/socket.h>
106
107#ifdef HAVE_SYS_SOCKIO_H
108#include <sys/sockio.h>
109#endif /* HAVE_SYS_SOCKIO_H */
110
111#ifdef HAVE_NETINET_IN_H
112#include <netinet/in.h>
113#endif /* HAVE_NETINET_IN_H */
114#include <netinet/in_systm.h>
115#include <netinet/ip.h>
116#include <netinet/tcp.h>
117
118#ifdef HAVE_NET_NETOPT_H
119#include <net/netopt.h>
120#endif /* HAVE_NET_NETOPT_H */
121
122#include <net/if.h>
123
124#ifdef HAVE_NET_IF_DL_H
125#include <net/if_dl.h>
126#endif /* HAVE_NET_IF_DL_H */
127
128#ifdef HAVE_NET_IF_VAR_H
129#include <net/if_var.h>
130#endif /* HAVE_NET_IF_VAR_H */
131
132#include <net/route.h>
133
134#ifdef HAVE_NETLINK
135#include <linux/netlink.h>
136#include <linux/rtnetlink.h>
137#else
138#define RT_TABLE_MAIN 0
139#endif /* HAVE_NETLINK */
140
141#ifdef HAVE_NETDB_H
142#include <netdb.h>
143#endif /* HAVE_NETDB_H */
144
145#include <arpa/inet.h>
146#include <arpa/telnet.h>
147
148#ifdef HAVE_INET_ND_H
149#include <inet/nd.h>
150#endif /* HAVE_INET_ND_H */
151
152#ifdef HAVE_NETINET_IN_VAR_H
153#include <netinet/in_var.h>
154#endif /* HAVE_NETINET_IN_VAR_H */
155
hasso726f9b22003-05-25 21:04:54 +0000156#ifdef HAVE_NETINET6_IN6_VAR_H
157#include <netinet6/in6_var.h>
158#endif /* HAVE_NETINET6_IN6_VAR_H */
159
paul718e3742002-12-13 20:15:29 +0000160#ifdef HAVE_NETINET_IN6_VAR_H
161#include <netinet/in6_var.h>
162#endif /* HAVE_NETINET_IN6_VAR_H */
163
164#ifdef HAVE_NETINET6_IN_H
165#include <netinet6/in.h>
166#endif /* HAVE_NETINET6_IN_H */
167
168
169#ifdef HAVE_NETINET6_IP6_H
170#include <netinet6/ip6.h>
171#endif /* HAVE_NETINET6_IP6_H */
172
173#ifdef HAVE_NETINET_ICMP6_H
174#include <netinet/icmp6.h>
175#endif /* HAVE_NETINET_ICMP6_H */
176
177#ifdef HAVE_NETINET6_ND6_H
178#include <netinet6/nd6.h>
179#endif /* HAVE_NETINET6_ND6_H */
180
181#ifdef HAVE_LIBUTIL_H
182#include <libutil.h>
183#endif /* HAVE_LIBUTIL_H */
184
paulfb2d1502003-06-04 09:40:54 +0000185#ifdef HAVE_GLIBC_BACKTRACE
186#include <execinfo.h>
187#endif /* HAVE_GLIBC_BACKTRACE */
188
paul718e3742002-12-13 20:15:29 +0000189#ifdef BSDI_NRL
190
191#ifdef HAVE_NETINET6_IN6_H
192#include <netinet6/in6.h>
193#endif /* HAVE_NETINET6_IN6_H */
194
195#ifdef NRL
196#include <netinet6/in6.h>
197#endif /* NRL */
198
199#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
200
201/* BSD/OS 4.0 has lost belows defines, it should appear at
202 /usr/include/sys/socket.h. */
203#define CMSG_ALIGN(n) (((n) + 3) & ~3)
204#define CMSG_SPACE(l) (CMSG_ALIGN(sizeof(struct cmsghdr)) + CMSG_ALIGN(l))
205#define CMSG_LEN(l) (CMSG_ALIGN(sizeof(struct cmsghdr)) + (l))
206
207#endif /* BSDI_NRL */
208
209/* The definition of struct in_pktinfo is missing in old version of
210 GLIBC 2.1 (Redhat 6.1). */
211#if defined (GNU_LINUX) && ! defined (HAVE_INPKTINFO)
212struct in_pktinfo
213{
214 int ipi_ifindex;
215 struct in_addr ipi_spec_dst;
216 struct in_addr ipi_addr;
217};
218#endif
219
220/* For old definition. */
221#ifndef IN6_ARE_ADDR_EQUAL
222#define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
223#endif /* IN6_ARE_ADDR_EQUAL */
224
225/* Zebra message types. */
226#define ZEBRA_INTERFACE_ADD 1
227#define ZEBRA_INTERFACE_DELETE 2
228#define ZEBRA_INTERFACE_ADDRESS_ADD 3
229#define ZEBRA_INTERFACE_ADDRESS_DELETE 4
230#define ZEBRA_INTERFACE_UP 5
231#define ZEBRA_INTERFACE_DOWN 6
232#define ZEBRA_IPV4_ROUTE_ADD 7
233#define ZEBRA_IPV4_ROUTE_DELETE 8
234#define ZEBRA_IPV6_ROUTE_ADD 9
235#define ZEBRA_IPV6_ROUTE_DELETE 10
236#define ZEBRA_REDISTRIBUTE_ADD 11
237#define ZEBRA_REDISTRIBUTE_DELETE 12
238#define ZEBRA_REDISTRIBUTE_DEFAULT_ADD 13
239#define ZEBRA_REDISTRIBUTE_DEFAULT_DELETE 14
240#define ZEBRA_IPV4_NEXTHOP_LOOKUP 15
241#define ZEBRA_IPV6_NEXTHOP_LOOKUP 16
242#define ZEBRA_IPV4_IMPORT_LOOKUP 17
243#define ZEBRA_IPV6_IMPORT_LOOKUP 18
244#define ZEBRA_MESSAGE_MAX 19
245
246/* Zebra route's types. */
247#define ZEBRA_ROUTE_SYSTEM 0
248#define ZEBRA_ROUTE_KERNEL 1
249#define ZEBRA_ROUTE_CONNECT 2
250#define ZEBRA_ROUTE_STATIC 3
251#define ZEBRA_ROUTE_RIP 4
252#define ZEBRA_ROUTE_RIPNG 5
253#define ZEBRA_ROUTE_OSPF 6
254#define ZEBRA_ROUTE_OSPF6 7
255#define ZEBRA_ROUTE_BGP 8
256#define ZEBRA_ROUTE_MAX 9
257
258/* Zebra's family types. */
259#define ZEBRA_FAMILY_IPV4 1
260#define ZEBRA_FAMILY_IPV6 2
261#define ZEBRA_FAMILY_MAX 3
262
263/* Error codes of zebra. */
264#define ZEBRA_ERR_RTEXIST -1
265#define ZEBRA_ERR_RTUNREACH -2
266#define ZEBRA_ERR_EPERM -3
267#define ZEBRA_ERR_RTNOEXIST -4
268
269/* Zebra message flags */
270#define ZEBRA_FLAG_INTERNAL 0x01
271#define ZEBRA_FLAG_SELFROUTE 0x02
272#define ZEBRA_FLAG_BLACKHOLE 0x04
273#define ZEBRA_FLAG_IBGP 0x08
274#define ZEBRA_FLAG_SELECTED 0x10
275#define ZEBRA_FLAG_CHANGED 0x20
276#define ZEBRA_FLAG_STATIC 0x40
hasso81dfcaa2003-05-25 19:21:25 +0000277#define ZEBRA_FLAG_REJECT 0x80
paul718e3742002-12-13 20:15:29 +0000278
279/* Zebra nexthop flags. */
280#define ZEBRA_NEXTHOP_IFINDEX 1
281#define ZEBRA_NEXTHOP_IFNAME 2
282#define ZEBRA_NEXTHOP_IPV4 3
283#define ZEBRA_NEXTHOP_IPV4_IFINDEX 4
284#define ZEBRA_NEXTHOP_IPV4_IFNAME 5
285#define ZEBRA_NEXTHOP_IPV6 6
286#define ZEBRA_NEXTHOP_IPV6_IFINDEX 7
287#define ZEBRA_NEXTHOP_IPV6_IFNAME 8
paul595db7f2003-05-25 21:35:06 +0000288#define ZEBRA_NEXTHOP_BLACKHOLE 9
paul718e3742002-12-13 20:15:29 +0000289
290#ifndef INADDR_LOOPBACK
291#define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
292#endif
293
294/* Address family numbers from RFC1700. */
295#define AFI_IP 1
296#define AFI_IP6 2
297#define AFI_MAX 3
298
299/* Subsequent Address Family Identifier. */
300#define SAFI_UNICAST 1
301#define SAFI_MULTICAST 2
302#define SAFI_UNICAST_MULTICAST 3
303#define SAFI_MPLS_VPN 4
304#define SAFI_MAX 5
305
306/* Filter direction. */
307#define FILTER_IN 0
308#define FILTER_OUT 1
309#define FILTER_MAX 2
310
311/* Default Administrative Distance of each protocol. */
312#define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
313#define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
314#define ZEBRA_STATIC_DISTANCE_DEFAULT 1
315#define ZEBRA_RIP_DISTANCE_DEFAULT 120
316#define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
317#define ZEBRA_OSPF_DISTANCE_DEFAULT 110
318#define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
319#define ZEBRA_IBGP_DISTANCE_DEFAULT 200
320#define ZEBRA_EBGP_DISTANCE_DEFAULT 20
321
322/* Flag manipulation macros. */
323#define CHECK_FLAG(V,F) ((V) & (F))
324#define SET_FLAG(V,F) (V) = (V) | (F)
325#define UNSET_FLAG(V,F) (V) = (V) & ~(F)
326
327/* AFI and SAFI type. */
328typedef u_int16_t afi_t;
329typedef u_char safi_t;
330
331/* Zebra types. */
332typedef u_int16_t zebra_size_t;
333typedef u_int8_t zebra_command_t;
334
paulf0438522003-05-19 21:06:32 +0000335/* FIFO -- first in first out structure and macros. */
336struct fifo
337{
338 struct fifo *next;
339 struct fifo *prev;
340};
341
342#define FIFO_INIT(F) \
343 do { \
344 struct fifo *Xfifo = (struct fifo *)(F); \
345 Xfifo->next = Xfifo->prev = Xfifo; \
346 } while (0)
347
348#define FIFO_ADD(F,N) \
349 do { \
350 struct fifo *Xfifo = (struct fifo *)(F); \
351 struct fifo *Xnode = (struct fifo *)(N); \
352 Xnode->next = Xfifo; \
353 Xnode->prev = Xfifo->prev; \
354 Xfifo->prev = Xfifo->prev->next = Xnode; \
355 } while (0)
356
357#define FIFO_DEL(N) \
358 do { \
359 struct fifo *Xnode = (struct fifo *)(N); \
360 Xnode->prev->next = Xnode->next; \
361 Xnode->next->prev = Xnode->prev; \
362 } while (0)
363
364#define FIFO_HEAD(F) \
365 ((((struct fifo *)(F))->next == (struct fifo *)(F)) \
366 ? NULL : (F)->next)
367
368#define FIFO_EMPTY(F) \
369 (((struct fifo *)(F))->next == (struct fifo *)(F))
370
371#define FIFO_TOP(F) \
372 (FIFO_EMPTY(F) ? NULL : ((struct fifo *)(F))->next)
373
paul718e3742002-12-13 20:15:29 +0000374#endif /* _ZEBRA_H */