]> The Tcpdump Group git mirrors - tcpdump/blob - netdissect-stdinc.h
CI: Add warning exemptions for Sun C (suncc-5.14) on Solaris 10
[tcpdump] / netdissect-stdinc.h
1 /*
2 * Copyright (c) 2002 - 2003
3 * NetGroup, Politecnico di Torino (Italy)
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the Politecnico di Torino nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /*
33 * Include the appropriate OS header files on Windows and various flavors
34 * of UNIX, include various non-OS header files on Windows, and define
35 * various items as needed, to isolate most of netdissect's platform
36 * differences to this one file.
37 */
38
39 #ifndef netdissect_stdinc_h
40 #define netdissect_stdinc_h
41
42 #include "ftmacros.h"
43
44 #include <errno.h>
45
46 #include "compiler-tests.h"
47
48 #include "varattrs.h"
49
50 /*
51 * If we're compiling with Visual Studio, make sure we have at least
52 * VS 2015 or later, so we have sufficient C99 support.
53 *
54 * XXX - verify that we have at least C99 support on UN*Xes?
55 *
56 * What about MinGW or various DOS toolchains? We're currently assuming
57 * sufficient C99 support there.
58 */
59 #if defined(_MSC_VER)
60 /*
61 * Make sure we have VS 2015 or later.
62 */
63 #if _MSC_VER < 1900
64 #error "Building tcpdump requires VS 2015 or later"
65 #endif
66 #endif
67
68 /*
69 * Get the C99 types, and the PRI[doux]64 format strings, defined.
70 */
71 #ifdef HAVE_PCAP_PCAP_INTTYPES_H
72 /*
73 * We have pcap/pcap-inttypes.h; use that, as it'll do all the
74 * work, and won't cause problems if a file includes this file
75 * and later includes a pcap header file that also includes
76 * pcap/pcap-inttypes.h.
77 */
78 #include <pcap/pcap-inttypes.h>
79 #else
80 /*
81 * OK, we don't have pcap/pcap-inttypes.h, so we'll have to
82 * do the work ourselves, but at least we don't have to
83 * worry about other headers including it and causing
84 * clashes.
85 */
86
87 /*
88 * Include <inttypes.h> to get the integer types and PRi[doux]64 values
89 * defined.
90 *
91 * If the compiler is MSVC, we require VS 2015 or newer, so we
92 * have <inttypes.h> - and support for %zu in the formatted
93 * printing functions.
94 *
95 * If the compiler is MinGW, we assume we have <inttypes.h> - and
96 * support for %zu in the formatted printing functions.
97 *
98 * If the target is UN*X, we assume we have a C99-or-later development
99 * environment, and thus have <inttypes.h> - and support for %zu in
100 * the formatted printing functions.
101 *
102 * If the target is MS-DOS, we assume we have <inttypes.h> - and support
103 * for %zu in the formatted printing functions.
104 */
105 #include <inttypes.h>
106
107 #if defined(_MSC_VER)
108 /*
109 * Suppress definition of intN_t in bittypes.h, which might be included
110 * by <pcap/pcap.h> in older versions of WinPcap.
111 * (Yes, HAVE_U_INTn_T, as the definition guards are UN*X-oriented.)
112 */
113 #define HAVE_U_INT8_T
114 #define HAVE_U_INT16_T
115 #define HAVE_U_INT32_T
116 #define HAVE_U_INT64_T
117 #endif
118 #endif /* HAVE_PCAP_PCAP_INTTYPES_H */
119
120 #ifdef _WIN32
121
122 /*
123 * Includes and definitions for Windows.
124 */
125
126 #include <stdio.h>
127 #include <winsock2.h>
128 #include <ws2tcpip.h>
129 #include <time.h>
130 #include <io.h>
131 #include <fcntl.h>
132 #include <sys/types.h>
133
134 #ifdef _MSC_VER
135 /*
136 * Compiler is MSVC.
137 *
138 * We require VS 2015 or newer, so we have strtoll(). Use that for
139 * strtoint64_t().
140 */
141 #define strtoint64_t strtoll
142 #else
143 /*
144 * Non-Microsoft compiler.
145 *
146 * XXX - should we use strtoll or should we use _strtoi64()?
147 */
148 #define strtoint64_t strtoll
149 #endif
150
151 #ifdef _MSC_VER
152 /*
153 * Microsoft tries to avoid polluting the C namespace with UN*Xisms,
154 * by adding a preceding underscore; we *want* the UN*Xisms, so add
155 * #defines to let us use them.
156 */
157 #define isatty _isatty
158 #define stat _stat
159 #define open _open
160 #define read _read
161 #define close _close
162 #define O_RDONLY _O_RDONLY
163
164 /*
165 * We define our_fstat64 as _fstati64, and define our_statb as
166 * struct _stati64, so we get 64-bit file sizes.
167 */
168 #define our_fstat _fstati64
169 #define our_statb struct _stati64
170
171 /*
172 * If <crtdbg.h> has been included, and _DEBUG is defined, and
173 * __STDC__ is zero, <crtdbg.h> will define strdup() to call
174 * _strdup_dbg(). So if it's already defined, don't redefine
175 * it.
176 */
177 #ifndef strdup
178 #define strdup _strdup
179 #endif
180
181 /*
182 * Windows doesn't have ssize_t; routines such as _read() return int.
183 */
184 typedef int ssize_t;
185 #endif /* _MSC_VER */
186
187 /*
188 * With MSVC, for C, __inline is used to make a function an inline.
189 */
190 #ifdef _MSC_VER
191 #define inline __inline
192 #endif
193
194 #ifndef INET6_ADDRSTRLEN
195 #define INET6_ADDRSTRLEN 46
196 #endif
197
198 /* It is in MSVC's <errno.h>, but not defined in MingW+Watcom.
199 */
200 #ifndef EAFNOSUPPORT
201 #define EAFNOSUPPORT WSAEAFNOSUPPORT
202 #endif
203
204 #ifndef caddr_t
205 typedef char *caddr_t;
206 #endif /* caddr_t */
207
208 #define MAXHOSTNAMELEN 64
209
210 #else /* _WIN32 */
211
212 /*
213 * Includes and definitions for various flavors of UN*X.
214 */
215
216 #include <unistd.h>
217 #include <netdb.h>
218 #include <sys/param.h>
219 #include <sys/types.h> /* concession to AIX */
220 #include <sys/time.h>
221 #include <sys/socket.h>
222 #include <netinet/in.h>
223
224 #include <time.h>
225
226 #include <arpa/inet.h>
227
228 /*
229 * We should have large file support enabled, if it's available,
230 * so just use fstat as our_fstat and struct stat as our_statb.
231 */
232 #define our_fstat fstat
233 #define our_statb struct stat
234
235 /*
236 * Assume all UN*Xes have strtoll(), and use it for strtoint64_t().
237 */
238 #define strtoint64_t strtoll
239 #endif /* _WIN32 */
240
241 /*
242 * Function attributes, for various compilers.
243 */
244 #include "funcattrs.h"
245
246 /*
247 * fopen() read and write modes for text files and binary files.
248 */
249 #if defined(_WIN32) || defined(MSDOS)
250 #define FOPEN_READ_TXT "rt"
251 #define FOPEN_READ_BIN "rb"
252 #define FOPEN_WRITE_TXT "wt"
253 #define FOPEN_WRITE_BIN "wb"
254 #else
255 #define FOPEN_READ_TXT "r"
256 #define FOPEN_READ_BIN FOPEN_READ_TXT
257 #define FOPEN_WRITE_TXT "w"
258 #define FOPEN_WRITE_BIN FOPEN_WRITE_TXT
259 #endif
260
261 /*
262 * Inline x86 assembler-language versions of ntoh[ls]() and hton[ls](),
263 * defined if the OS doesn't provide them. These assume no more than
264 * an 80386, so, for example, it avoids the bswap instruction added in
265 * the 80486.
266 *
267 * (We don't use them on macOS; Apple provides their own, which *doesn't*
268 * avoid the bswap instruction, as macOS only supports machines that
269 * have it.)
270 */
271 #if defined(__GNUC__) && defined(__i386__) && !defined(__APPLE__) && !defined(__ntohl)
272 #undef ntohl
273 #undef ntohs
274 #undef htonl
275 #undef htons
276
277 static __inline__ unsigned long __ntohl (unsigned long x);
278 static __inline__ unsigned short __ntohs (unsigned short x);
279
280 #define ntohl(x) __ntohl(x)
281 #define ntohs(x) __ntohs(x)
282 #define htonl(x) __ntohl(x)
283 #define htons(x) __ntohs(x)
284
285 static __inline__ unsigned long __ntohl (unsigned long x)
286 {
287 __asm__ ("xchgb %b0, %h0\n\t" /* swap lower bytes */
288 "rorl $16, %0\n\t" /* swap words */
289 "xchgb %b0, %h0" /* swap higher bytes */
290 : "=q" (x) : "0" (x));
291 return (x);
292 }
293
294 static __inline__ unsigned short __ntohs (unsigned short x)
295 {
296 __asm__ ("xchgb %b0, %h0" /* swap bytes */
297 : "=q" (x) : "0" (x));
298 return (x);
299 }
300 #endif
301
302 #ifndef NI_MAXHOST
303 #define NI_MAXHOST 1025
304 #endif
305
306 #ifndef INET_ADDRSTRLEN
307 #define INET_ADDRSTRLEN 16
308 #endif
309
310 #ifndef TRUE
311 #define TRUE 1
312 #endif
313
314 #ifndef FALSE
315 #define FALSE 0
316 #endif
317
318 /*
319 * Statement attributes, for various compilers.
320 *
321 * This was introduced sufficiently recently that compilers implementing
322 * it also implement __has_attribute() (for example, GCC 5.0 and later
323 * have __has_attribute(), and the "fallthrough" attribute was introduced
324 * in GCC 7).
325 *
326 * Unfortunately, Clang does this wrong - a statement
327 *
328 * __attribute__ ((fallthrough));
329 *
330 * produces bogus -Wmissing-declaration "declaration does not declare
331 * anything" warnings (dear Clang: that's not a declaration, it's an
332 * empty statement). GCC, however, has no trouble with this.
333 */
334 #if __has_attribute(fallthrough) && !defined(__clang__)
335 # define ND_FALL_THROUGH __attribute__ ((fallthrough))
336 #else
337 # define ND_FALL_THROUGH
338 #endif /* __has_attribute(fallthrough) */
339
340 #endif /* netdissect_stdinc_h */