]>
git.proxmox.com Git - mirror_frr.git/blob - lib/zebra.h
1 /* Zebra common header.
2 * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Kunihiro Ishiguro
4 * This file is part of GNU Zebra.
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 #endif /* HAVE_CONFIG_H */
31 typedef unsigned int uint32_t;
32 typedef unsigned short uint16_t;
33 typedef unsigned char uint8_t;
49 #endif /* HAVE_STROPTS_H */
50 #include <sys/select.h>
52 #include <sys/types.h>
53 #include <sys/param.h>
54 #ifdef HAVE_SYS_SYSCTL_H
56 #include <linux/types.h>
58 #include <sys/sysctl.h>
60 #endif /* HAVE_SYS_SYSCTL_H */
61 #include <sys/ioctl.h>
62 #ifdef HAVE_SYS_CONF_H
64 #endif /* HAVE_SYS_CONF_H */
65 #ifdef HAVE_SYS_KSYM_H
67 #endif /* HAVE_SYS_KSYM_H */
72 #include <sys/utsname.h>
73 #include <sys/resource.h>
78 /* machine dependent includes */
83 /* machine dependent includes */
84 #ifdef HAVE_LINUX_VERSION_H
85 #include <linux/version.h>
86 #endif /* HAVE_LINUX_VERSION_H */
88 #ifdef HAVE_ASM_TYPES_H
89 #include <asm/types.h>
90 #endif /* HAVE_ASM_TYPES_H */
92 /* misc include group */
94 #if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
95 /* Not C99; do we need to define va_copy? */
98 #define va_copy(DST,SRC) __va_copy(DST,SRC)
100 /* Now we are desperate; this should work on many typical platforms.
101 But this is slightly dangerous, because the standard does not require
102 va_copy to be a macro. */
103 #define va_copy(DST,SRC) memcpy(&(DST), &(SRC), sizeof(va_list))
104 #warning "Not C99 and no va_copy macro available, falling back to memcpy"
105 #endif /* __va_copy */
106 #endif /* !va_copy */
111 #include <sys/capability.h>
112 #include <sys/prctl.h>
113 #endif /* HAVE_LCAPS */
115 #ifdef HAVE_SOLARIS_CAPABILITIES
117 #endif /* HAVE_SOLARIS_CAPABILITIES */
119 /* network include group */
121 #include <sys/socket.h>
123 #ifdef HAVE_SYS_SOCKIO_H
124 #include <sys/sockio.h>
125 #endif /* HAVE_SYS_SOCKIO_H */
128 #define __APPLE_USE_RFC_3542
131 #ifndef HAVE_LIBCRYPT
132 #ifdef HAVE_LIBCRYPTO
133 #include <openssl/des.h>
134 # define crypt DES_crypt
138 #ifdef CRYPTO_OPENSSL
139 #include <openssl/evp.h>
140 #include <openssl/hmac.h>
143 #include "openbsd-tree.h"
145 #include <netinet/in.h>
146 #include <netinet/in_systm.h>
147 #include <netinet/ip.h>
148 #include <netinet/tcp.h>
150 #ifdef HAVE_NET_NETOPT_H
151 #include <net/netopt.h>
152 #endif /* HAVE_NET_NETOPT_H */
156 #ifdef HAVE_NET_IF_DL_H
157 #include <net/if_dl.h>
158 #endif /* HAVE_NET_IF_DL_H */
160 #ifdef HAVE_NET_IF_VAR_H
161 #include <net/if_var.h>
162 #endif /* HAVE_NET_IF_VAR_H */
164 #include <net/route.h>
167 #include <linux/netlink.h>
168 #include <linux/rtnetlink.h>
169 #include <linux/filter.h>
171 #define RT_TABLE_MAIN 0
172 #endif /* HAVE_NETLINK */
175 #include <arpa/inet.h>
177 #ifdef HAVE_INET_ND_H
179 #endif /* HAVE_INET_ND_H */
181 #ifdef HAVE_NETINET_IN_VAR_H
182 #include <netinet/in_var.h>
183 #endif /* HAVE_NETINET_IN_VAR_H */
185 #ifdef HAVE_NETINET6_IN6_VAR_H
186 #include <netinet6/in6_var.h>
187 #endif /* HAVE_NETINET6_IN6_VAR_H */
189 #ifdef HAVE_NETINET_IN6_VAR_H
190 #include <netinet/in6_var.h>
191 #endif /* HAVE_NETINET_IN6_VAR_H */
193 #ifdef HAVE_NETINET6_IN_H
194 #include <netinet6/in.h>
195 #endif /* HAVE_NETINET6_IN_H */
198 #ifdef HAVE_NETINET6_IP6_H
199 #include <netinet6/ip6.h>
200 #endif /* HAVE_NETINET6_IP6_H */
202 #include <netinet/icmp6.h>
204 #ifdef HAVE_NETINET6_ND6_H
205 #include <netinet6/nd6.h>
206 #endif /* HAVE_NETINET6_ND6_H */
208 /* Some systems do not define UINT32_MAX, etc.. from inttypes.h
209 * e.g. this makes life easier for FBSD 4.11 users.
212 #define INT16_MAX (32767)
215 #define INT32_MAX (2147483647)
218 #define UINT16_MAX (65535U)
221 #define UINT32_MAX (4294967295U)
224 #ifdef HAVE_GLIBC_BACKTRACE
225 #include <execinfo.h>
226 #endif /* HAVE_GLIBC_BACKTRACE */
228 /* Local includes: */
229 #if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
230 #define __attribute__(x)
231 #endif /* !__GNUC__ || VTYSH_EXTRACT_PL */
236 * Add explicit static cast only when using a C++ compiler.
239 #define static_cast(l, r) static_cast<decltype(l)>((r))
241 #define static_cast(l, r) (r)
245 size_t strlcat(char *__restrict dest
,
246 const char *__restrict src
, size_t destsize
);
249 size_t strlcpy(char *__restrict dest
,
250 const char *__restrict src
, size_t destsize
);
254 * RFC 3542 defines several macros for using struct cmsghdr.
255 * Here, we define those that are not present
259 * Internal defines, for use only in this file.
260 * These are likely wrong on other than ILP32 machines, so warn.
262 #ifndef _CMSG_DATA_ALIGN
263 #define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3)
264 #endif /* _CMSG_DATA_ALIGN */
266 #ifndef _CMSG_HDR_ALIGN
267 #define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3)
268 #endif /* _CMSG_HDR_ALIGN */
271 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
275 #define CMSG_SPACE(l) \
276 (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + _CMSG_HDR_ALIGN(l))
277 #warning "assuming 4-byte alignment for CMSG_SPACE"
278 #endif /* CMSG_SPACE */
282 #define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
283 #warning "assuming 4-byte alignment for CMSG_LEN"
284 #endif /* CMSG_LEN */
287 /* The definition of struct in_pktinfo is missing in old version of
288 GLIBC 2.1 (Redhat 6.1). */
289 #if defined(GNU_LINUX) && !defined(HAVE_STRUCT_IN_PKTINFO)
292 struct in_addr ipi_spec_dst
;
293 struct in_addr ipi_addr
;
298 * IP_HDRINCL / struct ip byte order
300 * Linux: network byte order
301 * *BSD: network, except for length and offset. (cf Stevens)
302 * SunOS: nominally as per BSD. but bug: network order on LE.
303 * OpenBSD: network byte order, apart from older versions which are as per
306 #if defined(__NetBSD__) \
307 || (defined(__FreeBSD__) && (__FreeBSD_version < 1100030)) \
308 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
309 || (defined(__APPLE__)) \
310 || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN))
311 #define HAVE_IP_HDRINCL_BSD_ORDER
314 /* Define BYTE_ORDER, if not defined. Useful for compiler conditional
315 * code, rather than preprocessor conditional.
316 * Not all the world has this BSD define.
319 #define BIG_ENDIAN 4321 /* least-significant byte first (vax, pc) */
320 #define LITTLE_ENDIAN 1234 /* most-significant byte first (IBM, net) */
321 #define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp) */
323 #if defined(WORDS_BIGENDIAN)
324 #define BYTE_ORDER BIG_ENDIAN
325 #else /* !WORDS_BIGENDIAN */
326 #define BYTE_ORDER LITTLE_ENDIAN
327 #endif /* WORDS_BIGENDIAN */
329 #endif /* ndef BYTE_ORDER */
331 /* For old definition. */
332 #ifndef IN6_ARE_ADDR_EQUAL
333 #define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
334 #endif /* IN6_ARE_ADDR_EQUAL */
336 /* default zebra TCP port for zclient */
337 #define ZEBRA_PORT 2600
340 * The compiler.h header is used for anyone using the CPP_NOTICE
341 * since this is universally needed, let's add it to zebra.h
343 #include "compiler.h"
345 /* Zebra route's types are defined in route_types.h */
346 #include "route_types.h"
348 #define strmatch(a,b) (!strcmp((a), (b)))
350 #ifndef INADDR_LOOPBACK
351 #define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
354 /* Address family numbers from RFC1700. */
363 /* Subsequent Address Family Identifier. */
371 SAFI_LABELED_UNICAST
= 6,
376 /* Default Administrative Distance of each protocol. */
377 #define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
378 #define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
379 #define ZEBRA_STATIC_DISTANCE_DEFAULT 1
380 #define ZEBRA_RIP_DISTANCE_DEFAULT 120
381 #define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
382 #define ZEBRA_OSPF_DISTANCE_DEFAULT 110
383 #define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
384 #define ZEBRA_ISIS_DISTANCE_DEFAULT 115
385 #define ZEBRA_IBGP_DISTANCE_DEFAULT 200
386 #define ZEBRA_EBGP_DISTANCE_DEFAULT 20
387 #define ZEBRA_TABLE_DISTANCE_DEFAULT 15
389 /* Flag manipulation macros. */
390 #define CHECK_FLAG(V,F) ((V) & (F))
391 #define SET_FLAG(V,F) (V) |= (F)
392 #define UNSET_FLAG(V,F) (V) &= ~(F)
393 #define RESET_FLAG(V) (V) = 0
394 #define COND_FLAG(V, F, C) ((C) ? (SET_FLAG(V, F)) : (UNSET_FLAG(V, F)))
396 /* Atomic flag manipulation macros. */
397 #define CHECK_FLAG_ATOMIC(PV, F) \
398 ((atomic_load_explicit(PV, memory_order_seq_cst)) & (F))
399 #define SET_FLAG_ATOMIC(PV, F) \
400 ((atomic_fetch_or_explicit(PV, (F), memory_order_seq_cst)))
401 #define UNSET_FLAG_ATOMIC(PV, F) \
402 ((atomic_fetch_and_explicit(PV, ~(F), memory_order_seq_cst)))
403 #define RESET_FLAG_ATOMIC(PV) \
404 ((atomic_store_explicit(PV, 0, memory_order_seq_cst)))
407 typedef uint32_t vrf_id_t
;
409 typedef uint32_t route_tag_t
;
410 #define ROUTE_TAG_MAX UINT32_MAX
411 #define ROUTE_TAG_PRI PRIu32
413 #endif /* _ZEBRA_H */