]> git.proxmox.com Git - mirror_frr.git/blob - lib/zebra.h
Merge pull request #5590 from qlyoung/fix-nhrp-underflow
[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 #ifndef GNU_LINUX
56 #include <sys/sysctl.h>
57 #endif
58 #endif /* HAVE_SYS_SYSCTL_H */
59 #include <sys/ioctl.h>
60 #ifdef HAVE_SYS_CONF_H
61 #include <sys/conf.h>
62 #endif /* HAVE_SYS_CONF_H */
63 #ifdef HAVE_SYS_KSYM_H
64 #include <sys/ksym.h>
65 #endif /* HAVE_SYS_KSYM_H */
66 #include <syslog.h>
67 #include <sys/time.h>
68 #include <time.h>
69 #include <sys/uio.h>
70 #include <sys/utsname.h>
71 #include <sys/resource.h>
72 #include <limits.h>
73 #include <inttypes.h>
74 #include <stdbool.h>
75
76 /* machine dependent includes */
77 #ifdef SUNOS_5
78 #include <strings.h>
79 #endif /* SUNOS_5 */
80
81 /* machine dependent includes */
82 #ifdef HAVE_LINUX_VERSION_H
83 #include <linux/version.h>
84 #endif /* HAVE_LINUX_VERSION_H */
85
86 #ifdef HAVE_ASM_TYPES_H
87 #include <asm/types.h>
88 #endif /* HAVE_ASM_TYPES_H */
89
90 /* misc include group */
91 #include <stdarg.h>
92 #if !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
93 /* Not C99; do we need to define va_copy? */
94 #ifndef va_copy
95 #ifdef __va_copy
96 #define va_copy(DST,SRC) __va_copy(DST,SRC)
97 #else
98 /* Now we are desperate; this should work on many typical platforms.
99 But this is slightly dangerous, because the standard does not require
100 va_copy to be a macro. */
101 #define va_copy(DST,SRC) memcpy(&(DST), &(SRC), sizeof(va_list))
102 #warning "Not C99 and no va_copy macro available, falling back to memcpy"
103 #endif /* __va_copy */
104 #endif /* !va_copy */
105 #endif /* !C99 */
106
107
108 #ifdef HAVE_LCAPS
109 #include <sys/capability.h>
110 #include <sys/prctl.h>
111 #endif /* HAVE_LCAPS */
112
113 #ifdef HAVE_SOLARIS_CAPABILITIES
114 #include <priv.h>
115 #endif /* HAVE_SOLARIS_CAPABILITIES */
116
117 /* network include group */
118
119 #include <sys/socket.h>
120
121 #ifdef HAVE_SYS_SOCKIO_H
122 #include <sys/sockio.h>
123 #endif /* HAVE_SYS_SOCKIO_H */
124
125 #ifdef __APPLE__
126 #define __APPLE_USE_RFC_3542
127 #endif
128
129 #ifndef HAVE_LIBCRYPT
130 #ifdef HAVE_LIBCRYPTO
131 #include <openssl/des.h>
132 # define crypt DES_crypt
133 #endif
134 #endif
135
136 #ifdef CRYPTO_OPENSSL
137 #include <openssl/evp.h>
138 #include <openssl/hmac.h>
139 #endif
140
141 #include "openbsd-tree.h"
142
143 #include <netinet/in.h>
144 #include <netinet/in_systm.h>
145 #include <netinet/ip.h>
146 #include <netinet/tcp.h>
147
148 #ifdef HAVE_NET_NETOPT_H
149 #include <net/netopt.h>
150 #endif /* HAVE_NET_NETOPT_H */
151
152 #include <net/if.h>
153
154 #ifdef HAVE_NET_IF_DL_H
155 #include <net/if_dl.h>
156 #endif /* HAVE_NET_IF_DL_H */
157
158 #ifdef HAVE_NET_IF_VAR_H
159 #include <net/if_var.h>
160 #endif /* HAVE_NET_IF_VAR_H */
161
162 #include <net/route.h>
163
164 #ifdef HAVE_NETLINK
165 #include <linux/netlink.h>
166 #include <linux/rtnetlink.h>
167 #include <linux/filter.h>
168 #else
169 #define RT_TABLE_MAIN 0
170 #endif /* HAVE_NETLINK */
171
172 #include <netdb.h>
173 #include <arpa/inet.h>
174
175 #ifdef HAVE_INET_ND_H
176 #include <inet/nd.h>
177 #endif /* HAVE_INET_ND_H */
178
179 #ifdef HAVE_NETINET_IN_VAR_H
180 #include <netinet/in_var.h>
181 #endif /* HAVE_NETINET_IN_VAR_H */
182
183 #ifdef HAVE_NETINET6_IN6_VAR_H
184 #include <netinet6/in6_var.h>
185 #endif /* HAVE_NETINET6_IN6_VAR_H */
186
187 #ifdef HAVE_NETINET_IN6_VAR_H
188 #include <netinet/in6_var.h>
189 #endif /* HAVE_NETINET_IN6_VAR_H */
190
191 #ifdef HAVE_NETINET6_IN_H
192 #include <netinet6/in.h>
193 #endif /* HAVE_NETINET6_IN_H */
194
195
196 #ifdef HAVE_NETINET6_IP6_H
197 #include <netinet6/ip6.h>
198 #endif /* HAVE_NETINET6_IP6_H */
199
200 #include <netinet/icmp6.h>
201
202 #ifdef HAVE_NETINET6_ND6_H
203 #include <netinet6/nd6.h>
204 #endif /* HAVE_NETINET6_ND6_H */
205
206 /* Some systems do not define UINT32_MAX, etc.. from inttypes.h
207 * e.g. this makes life easier for FBSD 4.11 users.
208 */
209 #ifndef INT16_MAX
210 #define INT16_MAX (32767)
211 #endif
212 #ifndef INT32_MAX
213 #define INT32_MAX (2147483647)
214 #endif
215 #ifndef UINT16_MAX
216 #define UINT16_MAX (65535U)
217 #endif
218 #ifndef UINT32_MAX
219 #define UINT32_MAX (4294967295U)
220 #endif
221
222 #ifdef HAVE_GLIBC_BACKTRACE
223 #include <execinfo.h>
224 #endif /* HAVE_GLIBC_BACKTRACE */
225
226 /* Local includes: */
227 #if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
228 #define __attribute__(x)
229 #endif /* !__GNUC__ || VTYSH_EXTRACT_PL */
230
231 #include "zassert.h"
232
233 /*
234 * Add explicit static cast only when using a C++ compiler.
235 */
236 #ifdef __cplusplus
237 #define static_cast(l, r) static_cast<decltype(l)>((r))
238 #else
239 #define static_cast(l, r) (r)
240 #endif
241
242 #ifndef HAVE_STRLCAT
243 size_t strlcat(char *__restrict dest,
244 const char *__restrict src, size_t destsize);
245 #endif
246 #ifndef HAVE_STRLCPY
247 size_t strlcpy(char *__restrict dest,
248 const char *__restrict src, size_t destsize);
249 #endif
250
251 /*
252 * 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.
259 */
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
268 /*
269 * CMSG_SPACE and CMSG_LEN are required in RFC3542, but were new in that
270 * version.
271 */
272 #ifndef CMSG_SPACE
273 #define CMSG_SPACE(l) \
274 (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + _CMSG_HDR_ALIGN(l))
275 #warning "assuming 4-byte alignment for CMSG_SPACE"
276 #endif /* CMSG_SPACE */
277
278
279 #ifndef CMSG_LEN
280 #define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
281 #warning "assuming 4-byte alignment for CMSG_LEN"
282 #endif /* CMSG_LEN */
283
284
285 /* 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_STRUCT_IN_PKTINFO)
288 struct in_pktinfo {
289 int ipi_ifindex;
290 struct in_addr ipi_spec_dst;
291 struct in_addr ipi_addr;
292 };
293 #endif
294
295 /*
296 * IP_HDRINCL / struct ip byte order
297 *
298 * Linux: network byte order
299 * *BSD: network, except for length and offset. (cf Stevens)
300 * SunOS: nominally as per BSD. but bug: network order on LE.
301 * OpenBSD: network byte order, apart from older versions which are as per
302 * *BSD
303 */
304 #if defined(__NetBSD__) \
305 || (defined(__FreeBSD__) && (__FreeBSD_version < 1100030)) \
306 || (defined(__OpenBSD__) && (OpenBSD < 200311)) \
307 || (defined(__APPLE__)) \
308 || (defined(SUNOS_5) && defined(WORDS_BIGENDIAN))
309 #define HAVE_IP_HDRINCL_BSD_ORDER
310 #endif
311
312 /* Define BYTE_ORDER, if not defined. Useful for compiler conditional
313 * code, rather than preprocessor conditional.
314 * Not all the world has this BSD define.
315 */
316 #ifndef BYTE_ORDER
317 #define BIG_ENDIAN 4321 /* least-significant byte first (vax, pc) */
318 #define LITTLE_ENDIAN 1234 /* most-significant byte first (IBM, net) */
319 #define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp) */
320
321 #if defined(WORDS_BIGENDIAN)
322 #define BYTE_ORDER BIG_ENDIAN
323 #else /* !WORDS_BIGENDIAN */
324 #define BYTE_ORDER LITTLE_ENDIAN
325 #endif /* WORDS_BIGENDIAN */
326
327 #endif /* ndef BYTE_ORDER */
328
329 /* For old definition. */
330 #ifndef IN6_ARE_ADDR_EQUAL
331 #define IN6_ARE_ADDR_EQUAL IN6_IS_ADDR_EQUAL
332 #endif /* IN6_ARE_ADDR_EQUAL */
333
334 /* default zebra TCP port for zclient */
335 #define ZEBRA_PORT 2600
336
337 /*
338 * The compiler.h header is used for anyone using the CPP_NOTICE
339 * since this is universally needed, let's add it to zebra.h
340 */
341 #include "compiler.h"
342
343 /* Zebra route's types are defined in route_types.h */
344 #include "route_types.h"
345
346 #define strmatch(a,b) (!strcmp((a), (b)))
347
348 #ifndef INADDR_LOOPBACK
349 #define INADDR_LOOPBACK 0x7f000001 /* Internet address 127.0.0.1. */
350 #endif
351
352 /* Address family numbers from RFC1700. */
353 typedef enum {
354 AFI_UNSPEC = 0,
355 AFI_IP = 1,
356 AFI_IP6 = 2,
357 AFI_L2VPN = 3,
358 AFI_MAX = 4
359 } afi_t;
360
361 /* Subsequent Address Family Identifier. */
362 typedef enum {
363 SAFI_UNSPEC = 0,
364 SAFI_UNICAST = 1,
365 SAFI_MULTICAST = 2,
366 SAFI_MPLS_VPN = 3,
367 SAFI_ENCAP = 4,
368 SAFI_EVPN = 5,
369 SAFI_LABELED_UNICAST = 6,
370 SAFI_FLOWSPEC = 7,
371 SAFI_MAX = 8
372 } safi_t;
373
374 /* Default Administrative Distance of each protocol. */
375 #define ZEBRA_KERNEL_DISTANCE_DEFAULT 0
376 #define ZEBRA_CONNECT_DISTANCE_DEFAULT 0
377 #define ZEBRA_STATIC_DISTANCE_DEFAULT 1
378 #define ZEBRA_RIP_DISTANCE_DEFAULT 120
379 #define ZEBRA_RIPNG_DISTANCE_DEFAULT 120
380 #define ZEBRA_OSPF_DISTANCE_DEFAULT 110
381 #define ZEBRA_OSPF6_DISTANCE_DEFAULT 110
382 #define ZEBRA_ISIS_DISTANCE_DEFAULT 115
383 #define ZEBRA_IBGP_DISTANCE_DEFAULT 200
384 #define ZEBRA_EBGP_DISTANCE_DEFAULT 20
385 #define ZEBRA_TABLE_DISTANCE_DEFAULT 15
386
387 /* Flag manipulation macros. */
388 #define CHECK_FLAG(V,F) ((V) & (F))
389 #define SET_FLAG(V,F) (V) |= (F)
390 #define UNSET_FLAG(V,F) (V) &= ~(F)
391 #define RESET_FLAG(V) (V) = 0
392 #define COND_FLAG(V, F, C) ((C) ? (SET_FLAG(V, F)) : (UNSET_FLAG(V, F)))
393
394 /* Atomic flag manipulation macros. */
395 #define CHECK_FLAG_ATOMIC(PV, F) \
396 ((atomic_load_explicit(PV, memory_order_seq_cst)) & (F))
397 #define SET_FLAG_ATOMIC(PV, F) \
398 ((atomic_fetch_or_explicit(PV, (F), memory_order_seq_cst)))
399 #define UNSET_FLAG_ATOMIC(PV, F) \
400 ((atomic_fetch_and_explicit(PV, ~(F), memory_order_seq_cst)))
401 #define RESET_FLAG_ATOMIC(PV) \
402 ((atomic_store_explicit(PV, 0, memory_order_seq_cst)))
403
404 /* VRF ID type. */
405 typedef uint32_t vrf_id_t;
406
407 typedef uint32_t route_tag_t;
408 #define ROUTE_TAG_MAX UINT32_MAX
409 #define ROUTE_TAG_PRI PRIu32
410
411 #endif /* _ZEBRA_H */