1 /* -*- c -*- ------------------------------------------------------------- *
3 * Copyright 2001-2006 H. Peter Anvin - All Rights Reserved
5 * This program is free software available under the same license
6 * as the "OpenBSD" operating system, distributed at
7 * http://www.openbsd.org/.
9 * ----------------------------------------------------------------------- */
15 * Sets up a common baseline environment, based on "autoconf" findings...
21 /* Must be included before we include any system headers! */
22 #include "aconfig.h" /* autogenerated configuration header */
24 /* Standard includes */
28 #ifdef HAVE_SYS_TYPES_H
29 #include <sys/types.h>
32 #ifdef HAVE_SYS_STAT_H
59 #ifdef HAVE_INTTYPES_H
60 #ifdef INTTYPES_H_IS_SANE
77 #ifdef TIME_WITH_SYS_TIME
99 #ifdef HAVE_SYS_SOCKET_H
100 #include <sys/socket.h>
102 #ifdef HAVE_WINSOCK2_H
103 #include <winsock2.h>
105 #ifdef HAVE_WINSOCK_H
115 extern int optind
, opterr
, optopt
;
118 /* Test for EAGAIN/EWOULDBLOCK */
120 #if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
121 #define E_WOULD_BLOCK(x) ((x) == EAGAIN || (x) == EWOULDBLOCK)
123 #define E_WOULD_BLOCK(x) ((x) == EAGAIN)
126 #define E_WOULD_BLOCK(x) ((x) == EWOULDBLOCK)
129 /* Some broken systems care about text versus binary, but
130 real Unix systems don't... */
131 #ifndef HAVE_O_TEXT_DEFINITION
134 #ifndef HAVE_O_BINARY_DEFINITION
138 /* If we don't have intmax_t, try creating it */
140 #ifndef HAVE_INTMAX_T
141 #ifdef HAVE_LONG_LONG
142 typedef long long intmax_t;
143 typedef unsigned long long uintmax_t;
144 #define PRIdMAX "lld"
145 #define PRIuMAX "llu"
146 #define PRIxMAX "llx"
147 #define INTMAX_C(x) (x##LL)
148 #define UINTMAX_C(x) (x##ULL)
150 typedef long intmax_t;
151 typedef unsigned long uintmax_t;
155 #define INTMAX_C(x) (x##L)
156 #define UINTMAX_C(x) (x##UL)
160 /* On some version of AIX, <inttypes.h> is buggy to the point of
161 unusability. We have to use macros here, not typedefs, to override. */
162 #ifdef HAVE_INTTYPES_H
163 #ifndef INTTYPES_H_IS_SANE
169 #undef HAVE_STRTOUMAX
171 #ifdef HAVE_LONG_LONG
172 #define intmax_t long long
173 #define uintmax_t unsigned long long
177 #define INTMAX_C(x) (x##LL)
178 #define UINTMAX_C(x) (x##ULL)
180 #define intmax_t long
181 #define uintmax_t unsigned long
185 #define INTMAX_C(x) (x##L)
186 #define UINTMAX_C(x) (x##UL)
191 /* Even if intmax_t is defined, we may need this (Solaris 8 braindamage) */
192 #ifndef HAVE_STRTOUMAX
193 #if defined(HAVE_LONG_LONG) && defined(HAVE_STRTOULL)
194 #define strtoumax(p,e,b) ((uintmax_t)strtoull(p,e,b))
196 #define strtoumax(p,e,b) ((uintmax_t)strtoul(p,e,b))
200 /* A lot of this is old BSD code. Some newer systems don't approve. */
202 /* The type used by htons(), ntohs() */
205 typedef uint16_t u_short
;
207 typedef unsigned short u_short
;
211 /* The type used to htonl(), ntohl() */
214 typedef uint32_t u_long
;
216 typedef unsigned long u_long
;
221 #ifndef HAVE_SOCKLEN_T
222 typedef int socklen_t
;
227 #ifdef HAVE_SYSEXITS_H
228 #include <sysexits.h>
230 #define EX_USAGE 64 /* command line usage error */
231 #define EX_DATAERR 65 /* data format error */
232 #define EX_NOINPUT 66 /* cannot open input */
233 #define EX_NOUSER 67 /* addressee unknown */
234 #define EX_NOHOST 68 /* host name unknown */
235 #define EX_UNAVAILABLE 69 /* service unavailable */
236 #define EX_SOFTWARE 70 /* internal software error */
237 #define EX_OSERR 71 /* system error (e.g., can't fork) */
238 #define EX_OSFILE 72 /* critical OS file missing */
239 #define EX_CANTCREAT 73 /* can't create (user) output file */
240 #define EX_IOERR 74 /* input/output error */
241 #define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
242 #define EX_PROTOCOL 76 /* remote error in protocol */
243 #define EX_NOPERM 77 /* permission denied */
244 #define EX_CONFIG 78 /* configuration error */
247 /* If we don't have sigsetjmp() et all, setjmp() will have to do */
249 #ifndef HAVE_SIGSETJMP
250 #define sigsetjmp(x,y) setjmp(x)
251 #define siglongjmp(x,y) longjmp(x,y)
252 #define sigjmp_buf jmp_buf
255 /* How do we annotate unused data items? */
259 #define UNUSED __attribute__((unused))
265 /* netinet/in.h, and possible missing pieces */
267 #include <netinet/in.h>
269 #ifndef HAVE_IPPORT_TFTP_DEFINITION
271 #define IPPORT_TFTP 69
275 /* arpa/{inet,tftp}.h, and possible missing pieces */
277 #ifdef HAVE_ARPA_INET_H
278 #include <arpa/inet.h>
280 /* If we don't have arpa/tftp.h we have problems... */
281 #include <arpa/tftp.h>
290 /* tftp-hpa version and configuration strings */
295 #define WITH_READLINE_STR ", with readline"
297 #define WITH_READLINE_STR ", without readline"
301 #define WITH_REGEX_STR ", with remap"
303 #define WITH_REGEX_STR ", without remap"
307 #define HAVE_LIBWRAP_STR ", with tcpwrappers"
309 #define HAVE_LIBWRAP_STR ", without tcpwrappers"
312 #define TFTP_CONFIG_STR VERSION WITH_READLINE_STR
313 #define TFTPD_CONFIG_STR VERSION WITH_REGEX_STR HAVE_LIBWRAP_STR