5d99cc235bc8bd96e9002fd63b9a79052c334080
[tinc] / src / have.h
1 #ifndef TINC_HAVE_H
2 #define TINC_HAVE_H
3
4 /*
5     have.h -- include headers which are known to exist
6     Copyright (C) 1998-2005 Ivo Timmermans
7                   2003-2021 Guus Sliepen <guus@tinc-vpn.org>
8
9     This program is free software; you can redistribute it and/or modify
10     it under the terms of the GNU General Public License as published by
11     the Free Software Foundation; either version 2 of the License, or
12     (at your option) any later version.
13
14     This program is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19     You should have received a copy of the GNU General Public License along
20     with this program; if not, write to the Free Software Foundation, Inc.,
21     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 */
23
24 #ifdef HAVE_WINDOWS
25 #define WINVER 0x0600
26 #define _WIN32_WINNT 0x0600
27 #define WIN32_LEAN_AND_MEAN
28 #define _CRT_SECURE_NO_WARNINGS
29 #define _CRT_NONSTDC_NO_WARNINGS
30 #endif
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <stdarg.h>
35 #include <stdbool.h>
36 #include <string.h>
37 #include <ctype.h>
38 #include <signal.h>
39 #include <errno.h>
40 #include <fcntl.h>
41 #ifdef HAVE_UNISTD_H
42 #include <unistd.h>
43 #endif
44 #include <limits.h>
45 #include <math.h>
46 #include <time.h>
47
48 #ifdef HAVE_STATIC_ASSERT
49 #define STATIC_ASSERT(expr, msg) _Static_assert((expr), msg)
50 #else
51 #define STATIC_ASSERT(check, msg)
52 #endif
53
54 #ifdef HAVE_ATTR_PACKED
55 #define PACKED(...) __VA_ARGS__ __attribute__((__packed__))
56 #else
57 #ifdef _MSC_VER
58 #define PACKED(...) __pragma(pack(push, 1)) __VA_ARGS__ __pragma(pack(pop))
59 #else
60 #warning Your compiler does not support __packed__. Use at your own risk.
61 #endif
62 #endif
63
64 #ifdef HAVE_ATTR_MALLOC
65 #define ATTR_MALLOC __attribute__((__malloc__))
66 #else
67 #define ATTR_MALLOC
68 #endif
69
70 #ifdef HAVE_ATTR_NONNULL
71 #define ATTR_NONNULL __attribute__((__nonnull__))
72 #else
73 #define ATTR_NONNULL
74 #endif
75
76 #ifdef HAVE_ATTR_WARN_UNUSED_RESULT
77 #define ATTR_WARN_UNUSED __attribute__((__warn_unused_result__))
78 #else
79 #define ATTR_WARN_UNUSED
80 #endif
81
82 #ifdef HAVE_ATTR_FORMAT
83 #define ATTR_FORMAT(func, str, nonstr) __attribute__((format(func, str, nonstr)))
84 #else
85 #define ATTR_FORMAT(func, str, nonstr)
86 #endif
87
88 #ifdef HAVE_ALLOCA_H
89 #include <alloca.h>
90 #elif defined(HAVE_NETBSD)
91 #define alloca(size) __builtin_alloca(size)
92 #endif
93
94 #ifdef HAVE_WINDOWS
95 #ifdef HAVE_W32API_H
96 #include <w32api.h>
97 #endif
98
99 #include <winsock2.h>
100 #include <windows.h>
101 #include <ws2tcpip.h>
102
103 #ifdef _MSC_VER
104 #include <io.h>
105 #include <process.h>
106 #include <direct.h>
107 #endif
108 #endif // HAVE_WINDOWS
109
110 #ifdef HAVE_TERMIOS_H
111 #include <termios.h>
112 #endif
113
114 #ifdef HAVE_INTTYPES_H
115 #include <inttypes.h>
116 #endif
117
118 /* Include system specific headers */
119
120 #ifdef HAVE_STDDEF_H
121 #include <stddef.h>
122 #endif
123
124 #ifdef HAVE_SYSLOG_H
125 #include <syslog.h>
126 #endif
127
128 #ifdef HAVE_SYS_TIME_H
129 #include <sys/time.h>
130 #endif
131
132
133 #ifdef HAVE_SYS_TYPES_H
134 #include <sys/types.h>
135 #endif
136
137 #ifdef HAVE_SYS_STAT_H
138 #include <sys/stat.h>
139 #endif
140
141 #ifdef HAVE_SYS_FILE_H
142 #include <sys/file.h>
143 #endif
144
145 #ifdef HAVE_SYS_MMAN_H
146 #include <sys/mman.h>
147 #endif
148
149 #ifdef HAVE_SYS_WAIT_H
150 #include <sys/wait.h>
151 #endif
152
153 #ifdef HAVE_SYS_IOCTL_H
154 #include <sys/ioctl.h>
155 #endif
156
157 #ifdef HAVE_SYS_PARAM_H
158 #include <sys/param.h>
159 #endif
160
161 #ifdef HAVE_SYS_RESOURCE_H
162 #include <sys/resource.h>
163 #endif
164
165 #ifdef HAVE_SYS_UN_H
166 #include <sys/un.h>
167 #endif
168
169 #ifdef HAVE_DIRENT_H
170 #include <dirent.h>
171 #elif defined(_MSC_VER)
172 #include "dirent.h"
173 #endif
174
175 /* SunOS really wants sys/socket.h BEFORE net/if.h,
176    and FreeBSD wants these lines below the rest. */
177
178 #ifdef HAVE_NETDB_H
179 #include <netdb.h>
180 #endif
181
182 #ifdef HAVE_SYS_SOCKET_H
183 #include <sys/socket.h>
184 #endif
185
186 #ifdef HAVE_NET_IF_H
187 #include <net/if.h>
188 #endif
189
190 #ifdef HAVE_NET_IF_TYPES_H
191 #include <net/if_types.h>
192 #endif
193
194 #ifdef HAVE_NET_IF_TUN_H
195 #include <net/if_tun.h>
196 #endif
197
198 #ifdef HAVE_NET_TUN_IF_TUN_H
199 #include <net/tun/if_tun.h>
200 #endif
201
202 #ifdef HAVE_NET_IF_TAP_H
203 #include <net/if_tap.h>
204 #endif
205
206 #ifdef HAVE_NET_TAP_IF_TAP_H
207 #include <net/tap/if_tap.h>
208 #endif
209
210 #ifdef HAVE_NETINET_IN_SYSTM_H
211 #include <netinet/in_systm.h>
212 #endif
213
214 #ifdef HAVE_NETINET_IN_H
215 #include <netinet/in.h>
216 #endif
217
218 #ifdef HAVE_ARPA_INET_H
219 #include <arpa/inet.h>
220 #endif
221
222 #ifdef HAVE_NETINET_IP_H
223 #include <netinet/ip.h>
224 #endif
225
226 #ifdef HAVE_NETINET_TCP_H
227 #include <netinet/tcp.h>
228 #endif
229
230 #ifdef HAVE_NETINET_IN6_H
231 #include <netinet/in6.h>
232 #endif
233
234 #ifdef HAVE_NETINET_IP6_H
235 #include <netinet/ip6.h>
236 #endif
237
238 #ifdef HAVE_NET_ETHERNET_H
239 #include <net/ethernet.h>
240 #endif
241
242 #ifdef HAVE_NET_IF_ARP_H
243 #include <net/if_arp.h>
244 #endif
245
246 #ifdef HAVE_NETINET_IP_ICMP_H
247 #include <netinet/ip_icmp.h>
248 #endif
249
250 #ifdef HAVE_NETINET_ICMP6_H
251 #include <netinet/icmp6.h>
252 #endif
253
254 #ifdef HAVE_NETINET_IF_ETHER_H
255 #include <netinet/if_ether.h>
256 #endif
257
258 #ifdef HAVE_ARPA_NAMESER_H
259 #include <arpa/nameser.h>
260 #endif
261
262 #ifdef HAVE_RESOLV_H
263 #include <resolv.h>
264 #endif
265
266 #ifdef HAVE_LINUX_IF_TUN_H
267 #include <linux/if_tun.h>
268 #endif
269
270 #ifdef HAVE_GETOPT_H
271 #include <getopt.h>
272 #else
273 #include "getopt.h"
274 #endif
275
276 #ifdef STATUS
277 #undef STATUS
278 #endif
279
280 #ifdef HAVE_WINDOWS
281 #define SLASH "\\"
282 #else
283 #define SLASH "/"
284 #endif
285
286 #endif