]> git.ipfire.org Git - thirdparty/openssl.git/blame - e_os.h
Prepare for 1.1.0-pre4 release
[thirdparty/openssl.git] / e_os.h
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58#ifndef HEADER_E_OS_H
0f113f3e 59# define HEADER_E_OS_H
d02b48c6 60
0f113f3e 61# include <openssl/opensslconf.h>
06018c46 62
0f113f3e
MC
63# include <openssl/e_os2.h>
64/*
65 * <openssl/e_os2.h> contains what we can justify to make visible to the
66 * outside; this file e_os.h is not part of the exported interface.
67 */
fa470a84 68
d02b48c6
RE
69#ifdef __cplusplus
70extern "C" {
71#endif
72
58964a49 73/* Used to checking reference counts, most while doing perl5 stuff :-) */
f3f1cf84
RS
74# if defined(OPENSSL_NO_STDIO)
75# if defined(REF_DEBUG)
76# error "REF_DEBUG requires stdio"
77# endif
78# if defined(REF_PRINT)
79# error "REF_PRINT requires stdio"
80# endif
0f113f3e 81# endif
f3f1cf84
RS
82
83# if defined(REF_DEBUG)
84# define REF_ASSERT_ISNT(test) \
040d43b3 85 (void)((test) ? (OPENSSL_die("refcount error", __FILE__, __LINE__), 1) : 0)
f3f1cf84
RS
86# else
87# define REF_ASSERT_ISNT(i)
984d6c60 88# endif
f3f1cf84
RS
89# ifdef REF_PRINT
90# define REF_PRINT_COUNT(a, b) \
91 fprintf(stderr, "%p:%4d:%s\n", b, b->references, a)
92# else
93# define REF_PRINT_COUNT(a, b)
984d6c60 94# endif
58964a49 95
a773b52a 96# define osslargused(x) (void)x
040d43b3 97# define OPENSSL_CONF "openssl.cnf"
a773b52a 98
0f113f3e
MC
99# ifndef DEVRANDOM
100/*
101 * set this to a comma-separated list of 'random' device files to try out. My
102 * default, we will try to read at least one of these files
103 */
104# define DEVRANDOM "/dev/urandom","/dev/random","/dev/srandom"
105# endif
0423f812 106# if !defined(OPENSSL_NO_EGD) && !defined(DEVRANDOM_EGD)
0f113f3e
MC
107/*
108 * set this to a comma-separated list of 'egd' sockets to try out. These
109 * sockets will be tried in the order listed in case accessing the device
110 * files listed in DEVRANDOM did not return enough entropy.
111 */
112# define DEVRANDOM_EGD "/var/run/egd-pool","/dev/egd-pool","/etc/egd-pool","/etc/entropy"
113# endif
d02b48c6 114
0f113f3e 115# if defined(OPENSSL_SYS_VXWORKS)
3e83e686
RL
116# define NO_SYS_PARAM_H
117# define NO_CHMOD
118# define NO_SYSLOG
0f113f3e
MC
119# endif
120
d02b48c6
RE
121/********************************************************************
122 The Microsoft section
123 ********************************************************************/
0f113f3e 124# if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
b8384651 125# define WIN32
0f113f3e
MC
126# endif
127# if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
cf1b7d96 128# define WINDOWS
0f113f3e
MC
129# endif
130# if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
cf1b7d96 131# define MSDOS
0f113f3e 132# endif
d02b48c6 133
4d60c7e1 134# if (defined(MSDOS) || defined(OPENSSL_SYS_UEFI)) && !defined(GETPID_IS_MEANINGLESS)
9a1e34e5 135# define GETPID_IS_MEANINGLESS
0f113f3e 136# endif
9a1e34e5 137
0f113f3e
MC
138# ifdef WIN32
139# define NO_SYS_UN_H
140# define get_last_sys_error() GetLastError()
141# define clear_sys_error() SetLastError(0)
142# if !defined(WINNT)
143# define WIN_CONSOLE_BUG
144# endif
145# else
146# define get_last_sys_error() errno
147# define clear_sys_error() errno=0
148# endif
58964a49 149
0f113f3e
MC
150# if defined(WINDOWS)
151# define get_last_socket_error() WSAGetLastError()
152# define clear_socket_error() WSASetLastError(0)
153# define readsocket(s,b,n) recv((s),(b),(n),0)
154# define writesocket(s,b,n) send((s),(b),(n),0)
155# elif defined(__DJGPP__)
156# define WATT32
157# define get_last_socket_error() errno
158# define clear_socket_error() errno=0
159# define closesocket(s) close_s(s)
160# define readsocket(s,b,n) read_s(s,b,n)
161# define writesocket(s,b,n) send(s,b,n,0)
162# elif defined(OPENSSL_SYS_VMS)
163# define get_last_socket_error() errno
164# define clear_socket_error() errno=0
165# define ioctlsocket(a,b,c) ioctl(a,b,c)
166# define closesocket(s) close(s)
167# define readsocket(s,b,n) recv((s),(b),(n),0)
168# define writesocket(s,b,n) send((s),(b),(n),0)
169# elif defined(OPENSSL_SYS_VXWORKS)
170# define get_last_socket_error() errno
171# define clear_socket_error() errno=0
172# define ioctlsocket(a,b,c) ioctl((a),(b),(int)(c))
173# define closesocket(s) close(s)
174# define readsocket(s,b,n) read((s),(b),(n))
175# define writesocket(s,b,n) write((s),(char *)(b),(n))
176# elif defined(OPENSSL_SYS_NETWARE)
177# if defined(NETWARE_BSDSOCK)
178# define get_last_socket_error() errno
179# define clear_socket_error() errno=0
180# define closesocket(s) close(s)
181# define ioctlsocket(a,b,c) ioctl(a,b,c)
182# if defined(NETWARE_LIBC)
183# define readsocket(s,b,n) recv((s),(b),(n),0)
184# define writesocket(s,b,n) send((s),(b),(n),0)
185# else
186# define readsocket(s,b,n) recv((s),(char*)(b),(n),0)
187# define writesocket(s,b,n) send((s),(char*)(b),(n),0)
188# endif
189# else
190# define get_last_socket_error() WSAGetLastError()
191# define clear_socket_error() WSASetLastError(0)
192# define readsocket(s,b,n) recv((s),(b),(n),0)
193# define writesocket(s,b,n) send((s),(b),(n),0)
194# endif
195# else
196# define get_last_socket_error() errno
197# define clear_socket_error() errno=0
198# define ioctlsocket(a,b,c) ioctl(a,b,c)
199# define closesocket(s) close(s)
200# define readsocket(s,b,n) read((s),(b),(n))
201# define writesocket(s,b,n) write((s),(b),(n))
202# endif
58964a49 203
0f113f3e 204# if (defined(WINDOWS) || defined(MSDOS))
d02b48c6 205
f642ebc1 206# ifdef __DJGPP__
0f113f3e
MC
207# include <unistd.h>
208# include <sys/stat.h>
209# include <sys/socket.h>
210# include <tcp.h>
211# include <netdb.h>
212# define _setmode setmode
213# define _O_TEXT O_TEXT
214# define _O_BINARY O_BINARY
215# undef DEVRANDOM
216# define DEVRANDOM "/dev/urandom\x24"
217# endif /* __DJGPP__ */
f642ebc1 218
0056ef5d 219# ifndef S_IFDIR
0f113f3e 220# define S_IFDIR _S_IFDIR
0056ef5d 221# endif
6e064240 222
0056ef5d 223# ifndef S_IFMT
0f113f3e 224# define S_IFMT _S_IFMT
0056ef5d 225# endif
6e064240 226
f642ebc1 227# if !defined(WINNT) && !defined(__DJGPP__)
0f113f3e 228# define NO_SYSLOG
0056ef5d
RL
229# endif
230# define NO_DIRENT
d02b48c6 231
d02b48c6 232# ifdef WINDOWS
0f113f3e 233# if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
e476f942 234 /*
0f113f3e
MC
235 * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
236 * Most notably we ought to check for availability of each specific
0ee05b73
AP
237 * routine that was introduced after denoted _WIN32_WINNT with
238 * GetProcAddress(). Normally newer functions are masked with higher
239 * _WIN32_WINNT in SDK headers. So that if you wish to use them in
240 * some module, you'd need to override _WIN32_WINNT definition in
241 * the target module in order to "reach for" prototypes, but replace
242 * calls to new functions with indirect calls. Alternatively it
243 * might be possible to achieve the goal by /DELAYLOAD-ing .DLLs
244 * and check for current OS version instead.
0f113f3e 245 */
0ee05b73 246# define _WIN32_WINNT 0x0501
0f113f3e
MC
247# endif
248# if !defined(OPENSSL_NO_SOCK) && (defined(_WIN32_WINNT) || defined(_WIN32_WCE))
61aa2134
AP
249 /*
250 * Just like defining _WIN32_WINNT including winsock2.h implies
8711efb4 251 * certain "discipline" for maintaining [broad] binary compatibility.
61aa2134
AP
252 * As long as structures are invariant among Winsock versions,
253 * it's sufficient to check for specific Winsock2 API availability
254 * at run-time [DSO_global_lookup is recommended]...
255 */
0f113f3e
MC
256# include <winsock2.h>
257# include <ws2tcpip.h>
8711efb4 258 /* yes, they have to be #included prior to <windows.h> */
0f113f3e
MC
259# endif
260# include <windows.h>
261# include <stdio.h>
262# include <stddef.h>
263# include <errno.h>
264# if defined(_WIN32_WCE) && !defined(EACCES)
265# define EACCES 13
266# endif
267# include <string.h>
268# ifdef _WIN64
269# define strlen(s) _strlen31(s)
1875e6db 270/* cut strings to 2GB */
55c7a4cf 271static __inline unsigned int _strlen31(const char *str)
0f113f3e
MC
272{
273 unsigned int len = 0;
274 while (*str && len < 0x80000000U)
275 str++, len++;
276 return len & 0x7FFFFFFF;
277}
278# endif
279# include <malloc.h>
280# if defined(_MSC_VER) && _MSC_VER<=1200 && defined(_MT) && defined(isspace)
e527201f 281 /* compensate for bug in VC6 ctype.h */
0f113f3e
MC
282# undef isspace
283# undef isdigit
284# undef isalnum
285# undef isupper
286# undef isxdigit
287# endif
288# if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
289# if _MSC_VER>=1300 && _MSC_VER<1600
290# undef stdin
291# undef stdout
292# undef stderr
293FILE *__iob_func();
294# define stdin (&__iob_func()[0])
295# define stdout (&__iob_func()[1])
296# define stderr (&__iob_func()[2])
297# elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
298# undef stdin
299# undef stdout
300# undef stderr
301 /*
302 * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
303 * or in other words with /MD. Declaring implicit import, i.e. with
304 * _imp_ prefix, works correctly with all compiler options, but
305 * without /MD results in LINK warning LNK4049: 'locally defined
306 * symbol "__iob" imported'.
e527201f 307 */
0f113f3e
MC
308extern FILE *_imp___iob;
309# define stdin (&_imp___iob[0])
310# define stdout (&_imp___iob[1])
311# define stderr (&_imp___iob[2])
e527201f 312# endif
0f113f3e 313# endif
d02b48c6 314# endif
0f113f3e
MC
315# include <io.h>
316# include <fcntl.h>
d02b48c6 317
0bf23d9b 318# ifdef OPENSSL_SYS_WINCE
0f113f3e 319# define OPENSSL_NO_POSIX_IO
0bf23d9b
RL
320# endif
321
0056ef5d 322# if defined (__BORLANDC__)
0f113f3e
MC
323# define _setmode setmode
324# define _O_TEXT O_TEXT
325# define _O_BINARY O_BINARY
326# define _int64 __int64
327# define _kbhit kbhit
0056ef5d 328# endif
31a674d8 329
be7b4458 330# define EXIT(n) exit(n)
d02b48c6 331# define LIST_SEPARATOR_CHAR ';'
0056ef5d 332# ifndef X_OK
0f113f3e 333# define X_OK 0
0056ef5d
RL
334# endif
335# ifndef W_OK
0f113f3e 336# define W_OK 2
0056ef5d
RL
337# endif
338# ifndef R_OK
0f113f3e 339# define R_OK 4
0056ef5d 340# endif
0bf23d9b 341# ifdef OPENSSL_SYS_WINCE
0f113f3e 342# define DEFAULT_HOME ""
0bf23d9b 343# else
0f113f3e 344# define DEFAULT_HOME "C:"
0bf23d9b 345# endif
d02b48c6 346
86d21d0b 347/* Avoid Visual Studio 13 GetVersion deprecated problems */
0f113f3e
MC
348# if defined(_MSC_VER) && _MSC_VER>=1800
349# define check_winnt() (1)
350# define check_win_minplat(x) (1)
351# else
352# define check_winnt() (GetVersion() < 0x80000000)
353# define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
354# endif
f511b25a 355
0f113f3e 356# else /* The non-microsoft world */
d02b48c6 357
cf1b7d96 358# ifdef OPENSSL_SYS_VMS
0f113f3e
MC
359# define VMS 1
360 /*
361 * some programs don't include stdlib, so exit() and others give implicit
362 * function warnings
363 */
364# include <stdlib.h>
365# if defined(__DECC)
366# include <unistd.h>
367# else
368# include <unixlib.h>
369# endif
0f113f3e 370# define LIST_SEPARATOR_CHAR ','
0c61e299 371 /* We don't have any well-defined random devices on VMS, yet... */
0f113f3e 372# undef DEVRANDOM
1d97c843
TH
373 /*-
374 We need to do this since VMS has the following coding on status codes:
511e596b
RL
375
376 Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
377 The important thing to know is that odd numbers are considered
0f113f3e 378 good, while even ones are considered errors.
511e596b
RL
379 Bits 3-15: actual status number
380 Bits 16-27: facility number. 0 is considered "unknown"
381 Bits 28-31: control bits. If bit 28 is set, the shell won't try to
382 output the message (which, for random codes, just looks ugly)
383
384 So, what we do here is to change 0 to 1 to get the default success status,
385 and everything else is shifted up to fit into the status number field, and
f625d383 386 the status is tagged as an error, which is what is wanted here.
c3944a99
RL
387
388 Finally, we add the VMS C facility code 0x35a000, because there are some
389 programs, such as Perl, that will reinterpret the code back to something
390 POSIXly. 'man perlvms' explains it further.
f625d383 391
c3944a99
RL
392 NOTE: the perlvms manual wants to turn all codes 2 to 255 into success
393 codes (status type = 1). I couldn't disagree more. Fortunately, the
394 status type doesn't seem to bother Perl.
511e596b
RL
395 -- Richard Levitte
396 */
f625d383
RL
397# define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
398
0f113f3e 399# define NO_SYS_PARAM_H
c168a027 400# define NO_SYS_UN_H
4d8743f4
RL
401
402# elif defined(OPENSSL_SYS_NETWARE)
0f113f3e
MC
403# include <fcntl.h>
404# include <unistd.h>
405# define NO_SYS_TYPES_H
406# undef DEVRANDOM
407# ifdef NETWARE_CLIB
408# define getpid GetThreadID
409extern int GetThreadID(void);
eef0c1f3 410/* # include <conio.h> */
0f113f3e
MC
411extern int kbhit(void);
412# else
413# include <screen.h>
414# endif
415# define NO_SYSLOG
416# define _setmode setmode
417# define _kbhit kbhit
418# define _O_TEXT O_TEXT
419# define _O_BINARY O_BINARY
0f113f3e
MC
420# define LIST_SEPARATOR_CHAR ';'
421# define EXIT(n) { if (n) printf("ERROR: %d\n", (int)n); exit(n); }
4d8743f4 422
d02b48c6 423# else
06018c46 424 /* !defined VMS */
0f113f3e
MC
425# ifdef OPENSSL_UNISTD
426# include OPENSSL_UNISTD
427# else
428# include <unistd.h>
429# endif
430# ifndef NO_SYS_TYPES_H
431# include <sys/types.h>
432# endif
433# ifdef OPENSSL_SYS_WIN32_CYGWIN
434# include <io.h>
435# include <fcntl.h>
436# endif
437
0f113f3e 438# define LIST_SEPARATOR_CHAR ':'
0f113f3e 439# define EXIT(n) exit(n)
d02b48c6 440# endif
d02b48c6 441
0f113f3e 442# endif
7d7d2cbc 443
d02b48c6
RE
444/*************/
445
0f113f3e 446# if defined(OPENSSL_NO_SOCK) && !defined(OPENSSL_NO_DGRAM)
be0bd11d 447# define OPENSSL_NO_DGRAM
0f113f3e 448# endif
be0bd11d 449
0f113f3e 450# ifdef USE_SOCKETS
ffbc5b57
DW
451# ifdef OPENSSL_NO_SOCK
452# elif defined(WINDOWS) || defined(MSDOS)
37b1f8bd 453 /* windows world */
ffbc5b57 454# if !defined(__DJGPP__)
0f113f3e
MC
455# if defined(_WIN32_WCE) && _WIN32_WCE<410
456# define getservbyname _masked_declaration_getservbyname
457# endif
458# if !defined(IPPROTO_IP)
a6efc2d1 459 /* winsock[2].h was included already? */
0f113f3e
MC
460# include <winsock.h>
461# endif
462# ifdef getservbyname
463# undef getservbyname
63d3a9c5 464 /* this is used to be wcecompat/include/winsock_extras.h */
0f113f3e
MC
465struct servent *PASCAL getservbyname(const char *, const char *);
466# endif
63d3a9c5 467
0f113f3e 468# ifdef _WIN64
1875e6db
AP
469/*
470 * Even though sizeof(SOCKET) is 8, it's safe to cast it to int, because
471 * the value constitutes an index in per-process table of limited size
b13fdc48
AP
472 * and not a real pointer. And we also depend on fact that all processors
473 * Windows run on happen to be two's-complement, which allows to
474 * interchange INVALID_SOCKET and -1.
1875e6db 475 */
0f113f3e
MC
476# define socket(d,t,p) ((int)socket(d,t,p))
477# define accept(s,f,l) ((int)accept(s,f,l))
d02b48c6 478# endif
0f113f3e 479# else
0f113f3e 480# endif
d02b48c6 481
4d8743f4 482# elif defined(OPENSSL_SYS_NETWARE)
0f113f3e
MC
483 /*
484 * NetWare uses the WinSock2 interfaces by default, but can be
485 * configured for BSD
486 */
487# if defined(NETWARE_BSDSOCK)
28a0841b 488# include <netdb.h>
0f113f3e
MC
489# include <sys/socket.h>
490# include <netinet/in.h>
491# include <sys/time.h>
492# if defined(NETWARE_CLIB)
493# include <sys/bsdskt.h>
7d7d2cbc 494# else
0f113f3e 495# include <sys/select.h>
d02b48c6 496# endif
0f113f3e
MC
497# define INVALID_SOCKET (int)(~0)
498# else
499# include <novsock2.h>
500# endif
d02b48c6 501
0f113f3e 502# else
d02b48c6 503
0f113f3e
MC
504# ifndef NO_SYS_PARAM_H
505# include <sys/param.h>
506# endif
507# ifdef OPENSSL_SYS_VXWORKS
508# include <time.h>
509# endif
510
511# include <netdb.h>
512# if defined(OPENSSL_SYS_VMS_NODECC)
513# include <socket.h>
514# include <in.h>
515# include <inet.h>
516# else
517# include <sys/socket.h>
518# ifndef NO_SYS_UN_H
519# ifdef OPENSSL_SYS_VXWORKS
520# include <streams/un.h>
521# else
522# include <sys/un.h>
523# endif
524# ifndef UNIX_PATH_MAX
525# define UNIX_PATH_MAX sizeof(((struct sockaddr_un *)NULL)->sun_path)
526# endif
a545c6f6 527# endif
0f113f3e 528# ifdef FILIO_H
f6739c3d 529# include <sys/filio.h> /* FIONBIO in some SVR4, e.g. unixware, solaris */
0f113f3e
MC
530# endif
531# include <netinet/in.h>
532# include <arpa/inet.h>
28a0841b 533# include <netinet/tcp.h>
0f113f3e
MC
534# endif
535
536# ifdef OPENSSL_SYS_AIX
537# include <sys/select.h>
538# endif
539
540# ifdef __QNX__
541# include <sys/select.h>
542# endif
543
2f2c805a
AP
544# ifndef VMS
545# include <sys/ioctl.h>
0f113f3e 546# else
2f2c805a
AP
547 /* ioctl is only in VMS > 7.0 and when socketshr is not used */
548# if !defined(TCPIP_TYPE_SOCKETSHR) && defined(__VMS_VER) && (__VMS_VER > 70000000)
0f113f3e 549# include <sys/ioctl.h>
d02b48c6 550# endif
0f113f3e 551# endif
d02b48c6 552
0f113f3e
MC
553# ifdef VMS
554# include <unixio.h>
555# if defined(TCPIP_TYPE_SOCKETSHR)
556# include <socketshr.h>
d02b48c6 557# endif
0f113f3e
MC
558# endif
559
0f113f3e
MC
560# ifndef INVALID_SOCKET
561# define INVALID_SOCKET (-1)
562# endif /* INVALID_SOCKET */
d02b48c6 563# endif
a6dab873 564
0f113f3e
MC
565/*
566 * Some IPv6 implementations are broken, disable them in known bad versions.
a6dab873
DSH
567 */
568# if !defined(OPENSSL_USE_IPV6)
0f113f3e
MC
569# if defined(AF_INET6) && !defined(NETWARE_CLIB)
570# define OPENSSL_USE_IPV6 1
571# else
572# define OPENSSL_USE_IPV6 0
573# endif
a6dab873
DSH
574# endif
575
0f113f3e 576# endif
d02b48c6 577
0f113f3e
MC
578# ifndef OPENSSL_EXIT
579# if defined(MONOLITH) && !defined(OPENSSL_C)
580# define OPENSSL_EXIT(n) return(n)
581# else
582# define OPENSSL_EXIT(n) do { EXIT(n); return(n); } while(0)
583# endif
1c3e4a36 584# endif
1c3e4a36 585
d02b48c6
RE
586/***********************************************/
587
0f113f3e 588# if defined(OPENSSL_SYS_WINDOWS)
e6fa67fa
RL
589# define strcasecmp _stricmp
590# define strncasecmp _strnicmp
0f113f3e 591# elif defined(OPENSSL_SYS_VMS)
e6fa67fa 592/* VMS below version 7.0 doesn't have strcasecmp() */
68570797 593# include "internal/o_str.h"
e6fa67fa
RL
594# define strcasecmp OPENSSL_strcasecmp
595# define strncasecmp OPENSSL_strncasecmp
e6d27baf 596# define OPENSSL_IMPLEMENTS_strncasecmp
0f113f3e 597# elif defined(OPENSSL_SYS_OS2) && defined(__EMX__)
e6fa67fa
RL
598# define strcasecmp stricmp
599# define strncasecmp strnicmp
0f113f3e 600# elif defined(OPENSSL_SYS_NETWARE)
eef0c1f3
DSH
601# include <string.h>
602# if defined(NETWARE_CLIB)
0f113f3e
MC
603# define strcasecmp stricmp
604# define strncasecmp strnicmp
605# endif /* NETWARE_CLIB */
606# endif
e6fa67fa 607
0f113f3e
MC
608# if defined(OPENSSL_SYS_OS2) && defined(__EMX__)
609# include <io.h>
610# include <fcntl.h>
611# define NO_SYSLOG
612# endif
3bfd99bf 613
6a89a25c 614/* vxworks */
0f113f3e
MC
615# if defined(OPENSSL_SYS_VXWORKS)
616# include <ioLib.h>
617# include <tickLib.h>
618# include <sysLib.h>
6a89a25c 619
0f113f3e 620# define TTY_STRUCT int
6a89a25c 621
0f113f3e 622# define sleep(a) taskDelay((a) * sysClkRateGet())
6a89a25c 623
0f113f3e
MC
624# include <vxWorks.h>
625# include <sockLib.h>
626# include <taskLib.h>
6a89a25c 627
0f113f3e 628# define getpid taskIdSelf
6a89a25c 629
0f113f3e
MC
630/*
631 * NOTE: these are implemented by helpers in database app! if the database is
632 * not linked, we need to implement them elswhere
633 */
6a89a25c
RL
634struct hostent *gethostbyname(const char *name);
635struct hostent *gethostbyaddr(const char *addr, int length, int type);
636struct servent *getservbyname(const char *name, const char *proto);
637
0f113f3e 638# endif
6a89a25c
RL
639/* end vxworks */
640
b6eb9827
DSH
641#define OSSL_NELEM(x) (sizeof(x)/sizeof(x[0]))
642
d02b48c6
RE
643#ifdef __cplusplus
644}
645#endif
646
647#endif