]> git.proxmox.com Git - mirror_frr.git/blob - lib/zebra.h
Merge pull request #5778 from ton31337/fix/add_doc_for_ebgp_connected_route_check
[mirror_frr.git] / lib / zebra.h
1 /* Zebra common header.
2 * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
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
9 * later version.
10 *
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.
15 *
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
19 */
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 #include "compiler.h"
29
30 #ifdef SUNOS_5
31 typedef unsigned int uint32_t;
32 typedef unsigned short uint16_t;
33 typedef unsigned char uint8_t;
34 #endif /* SUNOS_5 */
35
36 #include <unistd.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <stddef.h>
40 #include <ctype.h>
41 #include <errno.h>
42 #include <fcntl.h>
43 #include <signal.h>
44 #include <string.h>
45 #include <pwd.h>
46 #include <grp.h>
47 #ifdef HAVE_STROPTS_H
48 #include <stropts.h>
49 #endif /* HAVE_STROPTS_H */
50 #include <sys/select.h>
51 #include <sys/stat.h>
52 #include <sys/types.h>
53 #include <sys/param.h>
54 #ifdef HAVE_SYS_SYSCTL_H
55 #ifdef GNU_LINUX
56 #include <linux/types.h>
57 #else
58 #include <sys/sysctl.h>
59 #endif
60 #endif /* HAVE_SYS_SYSCTL_H */
61 #include <sys/ioctl.h>
62 #ifdef HAVE_SYS_CONF_H
63 #include <sys/conf.h>
64 #endif /* HAVE_SYS_CONF_H */
65 #ifdef HAVE_SYS_KSYM_H
66 #include <sys/ksym.h>
67 #endif /* HAVE_SYS_KSYM_H */
68 #include <syslog.h>
69 #include <sys/time.h>
70 #include <time.h>
71 #include <sys/uio.h>
72 #include <sys/utsname.h>
73 #include <sys/resource.h>
74 #include <limits.h>
75 #include <inttypes.h>
76 #include <stdbool.h>
77
78 /* machine dependent includes */
79 #ifdef SUNOS_5
80 #include <strings.h>
81 #endif /* SUNOS_5 */
82
83 /* machine dependent includes */
84 #ifdef HAVE_LINUX_VERSION_H
85 #include <linux/version.h>
86 #endif /* HAVE_LINUX_VERSION_H */
87
88 #ifdef HAVE_ASM_TYPES_H
89 #include <asm/types.h>
90 #endif /* HAVE_ASM_TYPES_H */
91
92 /* misc include group */
93 #include <stdarg.h>
94 #if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
95 /* Not C99; do we need to define va_copy? */
96 #ifndef va_copy
97 #ifdef __va_copy
98 #define va_copy(DST,SRC) __va_copy(DST,SRC)
99 #else
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 */
107 #endif /* !C99 */
108
109
110 #ifdef HAVE_LCAPS
111 #include <sys/capability.h>
112 #include <sys/prctl.h>
113 #endif /* HAVE_LCAPS */
114
115 #ifdef HAVE_SOLARIS_CAPABILITIES
116 #include <priv.h>
117 #endif /* HAVE_SOLARIS_CAPABILITIES */
118
119 /* 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 __APPLE__
128 #define __APPLE_USE_RFC_3542
129 #endif
130
131 #ifndef HAVE_LIBCRYPT
132 #ifdef HAVE_LIBCRYPTO
133 #include <openssl/des.h>
134 # define crypt DES_crypt
135 #endif
136 #endif
137
138 #ifdef CRYPTO_OPENSSL
139 #include <openssl/evp.h>
140 #include <openssl/hmac.h>
141 #endif
142
143 #include "openbsd-tree.h"
144
145 #include <netinet/in.h>
146 #include <netinet/in_systm.h>
147 #include <netinet/ip.h>
148 #include <netinet/tcp.h>
149
150 #ifdef HAVE_NET_NETOPT_H
151 #include <net/netopt.h>
152 #endif /* HAVE_NET_NETOPT_H */
153
154 #include <net/if.h>
155
156 #ifdef HAVE_NET_IF_DL_H
157 #include <net/if_dl.h>
158 #endif /* HAVE_NET_IF_DL_H */
159
160 #ifdef HAVE_NET_IF_VAR_H
161 #include <net/if_var.h>
162 #endif /* HAVE_NET_IF_VAR_H */
163
164 #include <net/route.h>
165
166 #ifdef HAVE_NETLINK
167 #include <linux/netlink.h>
168 #include <linux/rtnetlink.h>
169 #include <linux/filter.h>
170 #else
171 #define RT_TABLE_MAIN 0
172 #endif /* HAVE_NETLINK */
173
174 #include <netdb.h>
175 #include <arpa/inet.h>
176
177 #ifdef HAVE_INET_ND_H
178 #include <inet/nd.h>
179 #endif /* HAVE_INET_ND_H */
180
181 #ifdef HAVE_NETINET_IN_VAR_H
182 #include <netinet/in_var.h>
183 #endif /* HAVE_NETINET_IN_VAR_H */
184
185 #ifdef HAVE_NETINET6_IN6_VAR_H
186 #include <netinet6/in6_var.h>
187 #endif /* HAVE_NETINET6_IN6_VAR_H */
188
189 #ifdef HAVE_NETINET_IN6_VAR_H
190 #include <netinet/in6_var.h>
191 #endif /* HAVE_NETINET_IN6_VAR_H */
192
193 #ifdef HAVE_NETINET6_IN_H
194 #include <netinet6/in.h>
195 #endif /* HAVE_NETINET6_IN_H */
196
197
198 #ifdef HAVE_NETINET6_IP6_H
199 #include <netinet6/ip6.h>
200 #endif /* HAVE_NETINET6_IP6_H */
201
202 #include <netinet/icmp6.h>
203
204 #ifdef HAVE_NETINET6_ND6_H
205 #include <netinet6/nd6.h>
206 #endif /* HAVE_NETINET6_ND6_H */
207
208 /* Some systems do not define UINT32_MAX, etc.. from inttypes.h
209 * e.g. this makes life easier for FBSD 4.11 users.
210 */
211 #ifndef INT16_MAX
212 #define INT16_MAX (32767)
213 #endif
214 #ifndef INT32_MAX
215 #define INT32_MAX (2147483647)
216 #endif
217 #ifndef UINT16_MAX
218 #define UINT16_MAX (65535U)
219 #endif
220 #ifndef UINT32_MAX
221 #define UINT32_MAX (4294967295U)
222 #endif
223
224 #ifdef HAVE_GLIBC_BACKTRACE
225 #include <execinfo.h>
226 #endif /* HAVE_GLIBC_BACKTRACE */
227
228 /* Local includes: */
229 #if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
230 #define __attribute__(x)
231 #endif /* !__GNUC__ || VTYSH_EXTRACT_PL */
232
233 #include "zassert.h"
234
235 /*
236 * Add explicit static cast only when using a C++ compiler.
237 */
238 #ifdef __cplusplus
239 #define static_cast(l, r) static_cast<decltype(l)>((r))
240 #else
241 #define static_cast(l, r) (r)
242 #endif
243
244 #ifndef HAVE_STRLCAT
245 size_t strlcat(char *__restrict dest,
246 const char *__restrict src, size_t destsize);
247 #endif
248 #ifndef HAVE_STRLCPY
249 size_t strlcpy(char *__restrict dest,
250 const char *__restrict src, size_t destsize);
251 #endif
252
253 /*
254 * RFC 3542 defines several macros for using struct cmsghdr.
255 * Here, we define those that are not present
256 */
257
258 /*
259 * Internal defines, for use only in this file.
260 * These are likely wrong on other than ILP32 machines, so warn.
261 */
262 #ifndef _CMSG_DATA_ALIGN
263 #define _CMSG_DATA_ALIGN(n) (((n) + 3) & ~3)
264 #endif /* _CMSG_DATA_ALIGN */
265
266 #ifndef _CMSG_HDR_ALIGN
267 #define _CMSG_HDR_ALIGN(n) (((n) + 3) & ~3)
268 #endif /* _CMSG_HDR_ALIGN */
269
270 /*
271 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
272 * version.
273 */
274 #ifndef CMSG_SPACE
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 */
279
280
281 #ifndef CMSG_LEN
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 */
285
286
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)
290 struct in_pktinfo {
291 int ipi_ifindex;
292 struct in_addr ipi_spec_dst;
293 struct in_addr ipi_addr;
294 };
295 #endif
296
297 /*
298 * IP_HDRINCL / struct ip byte order
299 *
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
304 * *BSD
305 */
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
312 #endif
313
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.
317 */
318 #ifndef BYTE_ORDER
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) */
322
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 */
328
329 #endif /* ndef BYTE_ORDER */
330
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 */
335
336 /* default zebra TCP port for zclient */
337 #define ZEBRA_PORT 2600
338
339 /*
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
342 */
343 #include "compiler.h"
344
345 /* Zebra route's types are defined in route_types.h */
346 #include "route_types.h"
347
348 #define strmatch(a,b) (!strcmp((a), (b)))
349
350 #ifndef INADDR_LOOPBACK
351 #define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
352 #endif
353
354 /* Address family numbers from RFC1700. */
355 typedef enum {
356 AFI_UNSPEC = 0,
357 AFI_IP = 1,
358 AFI_IP6 = 2,
359 AFI_L2VPN = 3,
360 AFI_MAX = 4
361 } afi_t;
362
363 #define IS_VALID_AFI(a) ((a) > AFI_UNSPEC && (a) < AFI_MAX)
364
365 /* Subsequent Address Family Identifier. */
366 typedef enum {
367 SAFI_UNSPEC = 0,
368 SAFI_UNICAST = 1,
369 SAFI_MULTICAST = 2,
370 SAFI_MPLS_VPN = 3,
371 SAFI_ENCAP = 4,
372 SAFI_EVPN = 5,
373 SAFI_LABELED_UNICAST = 6,
374 SAFI_FLOWSPEC = 7,
375 SAFI_MAX = 8
376 } safi_t;
377
378 /* Default Administrative Distance of each protocol. */
379 #define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
380 #define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
381 #define ZEBRA_STATIC_DISTANCE_DEFAULT 1
382 #define ZEBRA_RIP_DISTANCE_DEFAULT 120
383 #define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
384 #define ZEBRA_OSPF_DISTANCE_DEFAULT 110
385 #define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
386 #define ZEBRA_ISIS_DISTANCE_DEFAULT 115
387 #define ZEBRA_IBGP_DISTANCE_DEFAULT 200
388 #define ZEBRA_EBGP_DISTANCE_DEFAULT 20
389 #define ZEBRA_TABLE_DISTANCE_DEFAULT 15
390
391 /* Flag manipulation macros. */
392 #define CHECK_FLAG(V,F) ((V) & (F))
393 #define SET_FLAG(V,F) (V) |= (F)
394 #define UNSET_FLAG(V,F) (V) &= ~(F)
395 #define RESET_FLAG(V) (V) = 0
396 #define COND_FLAG(V, F, C) ((C) ? (SET_FLAG(V, F)) : (UNSET_FLAG(V, F)))
397
398 /* Atomic flag manipulation macros. */
399 #define CHECK_FLAG_ATOMIC(PV, F) \
400 ((atomic_load_explicit(PV, memory_order_seq_cst)) & (F))
401 #define SET_FLAG_ATOMIC(PV, F) \
402 ((atomic_fetch_or_explicit(PV, (F), memory_order_seq_cst)))
403 #define UNSET_FLAG_ATOMIC(PV, F) \
404 ((atomic_fetch_and_explicit(PV, ~(F), memory_order_seq_cst)))
405 #define RESET_FLAG_ATOMIC(PV) \
406 ((atomic_store_explicit(PV, 0, memory_order_seq_cst)))
407
408 /* VRF ID type. */
409 typedef uint32_t vrf_id_t;
410
411 typedef uint32_t route_tag_t;
412 #define ROUTE_TAG_MAX UINT32_MAX
413 #define ROUTE_TAG_PRI PRIu32
414
415 #endif /* _ZEBRA_H */