]> git.ipfire.org Git - thirdparty/openssl.git/blame - e_os.h
Refactoring BIO: add wrappers around sockaddr et al
[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 :-) */
0f113f3e
MC
74# ifdef REF_PRINT
75# undef REF_PRINT
76# define REF_PRINT(a,b) fprintf(stderr,"%08X:%4d:%s\n",(int)b,b->references,a)
77# endif
984d6c60
DW
78# if defined(OPENSSL_NO_STDIO) && defined(REF_CHECK)
79# error "Cannot have REF_CHECK with no-stdio"
80# endif
81# if defined(OPENSSL_NO_STDIO) && defined(REF_PRINT)
82# error "Cannot have REF_PRINT with no-stdio"
83# endif
58964a49 84
0f113f3e
MC
85# ifndef DEVRANDOM
86/*
87 * set this to a comma-separated list of 'random' device files to try out. My
88 * default, we will try to read at least one of these files
89 */
90# define DEVRANDOM "/dev/urandom","/dev/random","/dev/srandom"
91# endif
0423f812 92# if !defined(OPENSSL_NO_EGD) && !defined(DEVRANDOM_EGD)
0f113f3e
MC
93/*
94 * set this to a comma-separated list of 'egd' sockets to try out. These
95 * sockets will be tried in the order listed in case accessing the device
96 * files listed in DEVRANDOM did not return enough entropy.
97 */
98# define DEVRANDOM_EGD "/var/run/egd-pool","/dev/egd-pool","/etc/egd-pool","/etc/entropy"
99# endif
d02b48c6 100
0f113f3e 101# if defined(OPENSSL_SYS_VXWORKS)
3e83e686
RL
102# define NO_SYS_PARAM_H
103# define NO_CHMOD
104# define NO_SYSLOG
0f113f3e
MC
105# endif
106
d02b48c6
RE
107/********************************************************************
108 The Microsoft section
109 ********************************************************************/
0f113f3e 110# if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
b8384651 111# define WIN32
0f113f3e
MC
112# endif
113# if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
cf1b7d96 114# define WINDOWS
0f113f3e
MC
115# endif
116# if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
cf1b7d96 117# define MSDOS
0f113f3e 118# endif
d02b48c6 119
4d60c7e1 120# if (defined(MSDOS) || defined(OPENSSL_SYS_UEFI)) && !defined(GETPID_IS_MEANINGLESS)
9a1e34e5 121# define GETPID_IS_MEANINGLESS
0f113f3e 122# endif
9a1e34e5 123
0f113f3e
MC
124# ifdef WIN32
125# define NO_SYS_UN_H
126# define get_last_sys_error() GetLastError()
127# define clear_sys_error() SetLastError(0)
128# if !defined(WINNT)
129# define WIN_CONSOLE_BUG
130# endif
131# else
132# define get_last_sys_error() errno
133# define clear_sys_error() errno=0
134# endif
58964a49 135
0f113f3e
MC
136# if defined(WINDOWS)
137# define get_last_socket_error() WSAGetLastError()
138# define clear_socket_error() WSASetLastError(0)
139# define readsocket(s,b,n) recv((s),(b),(n),0)
140# define writesocket(s,b,n) send((s),(b),(n),0)
141# elif defined(__DJGPP__)
142# define WATT32
143# define get_last_socket_error() errno
144# define clear_socket_error() errno=0
145# define closesocket(s) close_s(s)
146# define readsocket(s,b,n) read_s(s,b,n)
147# define writesocket(s,b,n) send(s,b,n,0)
148# elif defined(OPENSSL_SYS_VMS)
149# define get_last_socket_error() errno
150# define clear_socket_error() errno=0
151# define ioctlsocket(a,b,c) ioctl(a,b,c)
152# define closesocket(s) close(s)
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(OPENSSL_SYS_VXWORKS)
156# define get_last_socket_error() errno
157# define clear_socket_error() errno=0
158# define ioctlsocket(a,b,c) ioctl((a),(b),(int)(c))
159# define closesocket(s) close(s)
160# define readsocket(s,b,n) read((s),(b),(n))
161# define writesocket(s,b,n) write((s),(char *)(b),(n))
162# elif defined(OPENSSL_SYS_NETWARE)
163# if defined(NETWARE_BSDSOCK)
164# define get_last_socket_error() errno
165# define clear_socket_error() errno=0
166# define closesocket(s) close(s)
167# define ioctlsocket(a,b,c) ioctl(a,b,c)
168# if defined(NETWARE_LIBC)
169# define readsocket(s,b,n) recv((s),(b),(n),0)
170# define writesocket(s,b,n) send((s),(b),(n),0)
171# else
172# define readsocket(s,b,n) recv((s),(char*)(b),(n),0)
173# define writesocket(s,b,n) send((s),(char*)(b),(n),0)
174# endif
175# else
176# define get_last_socket_error() WSAGetLastError()
177# define clear_socket_error() WSASetLastError(0)
178# define readsocket(s,b,n) recv((s),(b),(n),0)
179# define writesocket(s,b,n) send((s),(b),(n),0)
180# endif
181# else
182# define get_last_socket_error() errno
183# define clear_socket_error() errno=0
184# define ioctlsocket(a,b,c) ioctl(a,b,c)
185# define closesocket(s) close(s)
186# define readsocket(s,b,n) read((s),(b),(n))
187# define writesocket(s,b,n) write((s),(b),(n))
188# endif
58964a49 189
0f113f3e 190# if (defined(WINDOWS) || defined(MSDOS))
d02b48c6 191
f642ebc1 192# ifdef __DJGPP__
0f113f3e
MC
193# include <unistd.h>
194# include <sys/stat.h>
195# include <sys/socket.h>
196# include <tcp.h>
197# include <netdb.h>
198# define _setmode setmode
199# define _O_TEXT O_TEXT
200# define _O_BINARY O_BINARY
201# undef DEVRANDOM
202# define DEVRANDOM "/dev/urandom\x24"
203# endif /* __DJGPP__ */
f642ebc1 204
0056ef5d 205# ifndef S_IFDIR
0f113f3e 206# define S_IFDIR _S_IFDIR
0056ef5d 207# endif
6e064240 208
0056ef5d 209# ifndef S_IFMT
0f113f3e 210# define S_IFMT _S_IFMT
0056ef5d 211# endif
6e064240 212
f642ebc1 213# if !defined(WINNT) && !defined(__DJGPP__)
0f113f3e 214# define NO_SYSLOG
0056ef5d
RL
215# endif
216# define NO_DIRENT
d02b48c6 217
d02b48c6 218# ifdef WINDOWS
0f113f3e 219# if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
e476f942 220 /*
0f113f3e
MC
221 * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
222 * Most notably we ought to check for availability of each specific
0ee05b73
AP
223 * routine that was introduced after denoted _WIN32_WINNT with
224 * GetProcAddress(). Normally newer functions are masked with higher
225 * _WIN32_WINNT in SDK headers. So that if you wish to use them in
226 * some module, you'd need to override _WIN32_WINNT definition in
227 * the target module in order to "reach for" prototypes, but replace
228 * calls to new functions with indirect calls. Alternatively it
229 * might be possible to achieve the goal by /DELAYLOAD-ing .DLLs
230 * and check for current OS version instead.
0f113f3e 231 */
0ee05b73 232# define _WIN32_WINNT 0x0501
0f113f3e
MC
233# endif
234# if !defined(OPENSSL_NO_SOCK) && (defined(_WIN32_WINNT) || defined(_WIN32_WCE))
61aa2134
AP
235 /*
236 * Just like defining _WIN32_WINNT including winsock2.h implies
8711efb4 237 * certain "discipline" for maintaining [broad] binary compatibility.
61aa2134
AP
238 * As long as structures are invariant among Winsock versions,
239 * it's sufficient to check for specific Winsock2 API availability
240 * at run-time [DSO_global_lookup is recommended]...
241 */
0f113f3e
MC
242# include <winsock2.h>
243# include <ws2tcpip.h>
8711efb4 244 /* yes, they have to be #included prior to <windows.h> */
0f113f3e
MC
245# endif
246# include <windows.h>
247# include <stdio.h>
248# include <stddef.h>
249# include <errno.h>
250# if defined(_WIN32_WCE) && !defined(EACCES)
251# define EACCES 13
252# endif
253# include <string.h>
254# ifdef _WIN64
255# define strlen(s) _strlen31(s)
1875e6db 256/* cut strings to 2GB */
55c7a4cf 257static __inline unsigned int _strlen31(const char *str)
0f113f3e
MC
258{
259 unsigned int len = 0;
260 while (*str && len < 0x80000000U)
261 str++, len++;
262 return len & 0x7FFFFFFF;
263}
264# endif
265# include <malloc.h>
266# if defined(_MSC_VER) && _MSC_VER<=1200 && defined(_MT) && defined(isspace)
e527201f 267 /* compensate for bug in VC6 ctype.h */
0f113f3e
MC
268# undef isspace
269# undef isdigit
270# undef isalnum
271# undef isupper
272# undef isxdigit
273# endif
274# if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
275# if _MSC_VER>=1300 && _MSC_VER<1600
276# undef stdin
277# undef stdout
278# undef stderr
279FILE *__iob_func();
280# define stdin (&__iob_func()[0])
281# define stdout (&__iob_func()[1])
282# define stderr (&__iob_func()[2])
283# elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
284# undef stdin
285# undef stdout
286# undef stderr
287 /*
288 * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
289 * or in other words with /MD. Declaring implicit import, i.e. with
290 * _imp_ prefix, works correctly with all compiler options, but
291 * without /MD results in LINK warning LNK4049: 'locally defined
292 * symbol "__iob" imported'.
e527201f 293 */
0f113f3e
MC
294extern FILE *_imp___iob;
295# define stdin (&_imp___iob[0])
296# define stdout (&_imp___iob[1])
297# define stderr (&_imp___iob[2])
e527201f 298# endif
0f113f3e 299# endif
d02b48c6 300# endif
0f113f3e
MC
301# include <io.h>
302# include <fcntl.h>
d02b48c6 303
0bf23d9b 304# ifdef OPENSSL_SYS_WINCE
0f113f3e 305# define OPENSSL_NO_POSIX_IO
0bf23d9b
RL
306# endif
307
0056ef5d 308# if defined (__BORLANDC__)
0f113f3e
MC
309# define _setmode setmode
310# define _O_TEXT O_TEXT
311# define _O_BINARY O_BINARY
312# define _int64 __int64
313# define _kbhit kbhit
0056ef5d 314# endif
31a674d8 315
be7b4458 316# define EXIT(n) exit(n)
d02b48c6 317# define LIST_SEPARATOR_CHAR ';'
0056ef5d 318# ifndef X_OK
0f113f3e 319# define X_OK 0
0056ef5d
RL
320# endif
321# ifndef W_OK
0f113f3e 322# define W_OK 2
0056ef5d
RL
323# endif
324# ifndef R_OK
0f113f3e 325# define R_OK 4
0056ef5d 326# endif
0f113f3e 327# define OPENSSL_CONF "openssl.cnf"
0f113f3e
MC
328# define NUL_DEV "nul"
329# define RFILE ".rnd"
0bf23d9b 330# ifdef OPENSSL_SYS_WINCE
0f113f3e 331# define DEFAULT_HOME ""
0bf23d9b 332# else
0f113f3e 333# define DEFAULT_HOME "C:"
0bf23d9b 334# endif
d02b48c6 335
86d21d0b 336/* Avoid Visual Studio 13 GetVersion deprecated problems */
0f113f3e
MC
337# if defined(_MSC_VER) && _MSC_VER>=1800
338# define check_winnt() (1)
339# define check_win_minplat(x) (1)
340# else
341# define check_winnt() (GetVersion() < 0x80000000)
342# define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
343# endif
f511b25a 344
0f113f3e 345# else /* The non-microsoft world */
d02b48c6 346
cf1b7d96 347# ifdef OPENSSL_SYS_VMS
0f113f3e
MC
348# define VMS 1
349 /*
350 * some programs don't include stdlib, so exit() and others give implicit
351 * function warnings
352 */
353# include <stdlib.h>
354# if defined(__DECC)
355# include <unistd.h>
356# else
357# include <unixlib.h>
358# endif
359# define OPENSSL_CONF "openssl.cnf"
0f113f3e
MC
360# define RFILE ".rnd"
361# define LIST_SEPARATOR_CHAR ','
362# define NUL_DEV "NLA0:"
0c61e299 363 /* We don't have any well-defined random devices on VMS, yet... */
0f113f3e 364# undef DEVRANDOM
1d97c843
TH
365 /*-
366 We need to do this since VMS has the following coding on status codes:
511e596b
RL
367
368 Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
369 The important thing to know is that odd numbers are considered
0f113f3e 370 good, while even ones are considered errors.
511e596b
RL
371 Bits 3-15: actual status number
372 Bits 16-27: facility number. 0 is considered "unknown"
373 Bits 28-31: control bits. If bit 28 is set, the shell won't try to
374 output the message (which, for random codes, just looks ugly)
375
376 So, what we do here is to change 0 to 1 to get the default success status,
377 and everything else is shifted up to fit into the status number field, and
f625d383 378 the status is tagged as an error, which is what is wanted here.
c3944a99
RL
379
380 Finally, we add the VMS C facility code 0x35a000, because there are some
381 programs, such as Perl, that will reinterpret the code back to something
382 POSIXly. 'man perlvms' explains it further.
f625d383 383
c3944a99
RL
384 NOTE: the perlvms manual wants to turn all codes 2 to 255 into success
385 codes (status type = 1). I couldn't disagree more. Fortunately, the
386 status type doesn't seem to bother Perl.
511e596b
RL
387 -- Richard Levitte
388 */
f625d383
RL
389# define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
390
0f113f3e 391# define NO_SYS_PARAM_H
c168a027 392# define NO_SYS_UN_H
4d8743f4
RL
393
394# elif defined(OPENSSL_SYS_NETWARE)
0f113f3e
MC
395# include <fcntl.h>
396# include <unistd.h>
397# define NO_SYS_TYPES_H
398# undef DEVRANDOM
399# ifdef NETWARE_CLIB
400# define getpid GetThreadID
401extern int GetThreadID(void);
eef0c1f3 402/* # include <conio.h> */
0f113f3e
MC
403extern int kbhit(void);
404# else
405# include <screen.h>
406# endif
407# define NO_SYSLOG
408# define _setmode setmode
409# define _kbhit kbhit
410# define _O_TEXT O_TEXT
411# define _O_BINARY O_BINARY
412# define OPENSSL_CONF "openssl.cnf"
0f113f3e
MC
413# define RFILE ".rnd"
414# define LIST_SEPARATOR_CHAR ';'
415# define EXIT(n) { if (n) printf("ERROR: %d\n", (int)n); exit(n); }
4d8743f4 416
d02b48c6 417# else
06018c46 418 /* !defined VMS */
0f113f3e
MC
419# ifdef OPENSSL_UNISTD
420# include OPENSSL_UNISTD
421# else
422# include <unistd.h>
423# endif
424# ifndef NO_SYS_TYPES_H
425# include <sys/types.h>
426# endif
427# ifdef OPENSSL_SYS_WIN32_CYGWIN
428# include <io.h>
429# include <fcntl.h>
430# endif
431
432# define OPENSSL_CONF "openssl.cnf"
0f113f3e
MC
433# define RFILE ".rnd"
434# define LIST_SEPARATOR_CHAR ':'
435# define NUL_DEV "/dev/null"
436# define EXIT(n) exit(n)
d02b48c6 437# endif
d02b48c6 438
b0700d2c 439# define OpenSSL_getpid() getpid()
d02b48c6 440
0f113f3e 441# endif
7d7d2cbc 442
d02b48c6
RE
443/*************/
444
0f113f3e 445# if defined(OPENSSL_NO_SOCK) && !defined(OPENSSL_NO_DGRAM)
be0bd11d 446# define OPENSSL_NO_DGRAM
0f113f3e 447# endif
be0bd11d 448
0f113f3e 449# ifdef USE_SOCKETS
8d6e6048 450# if defined(WINDOWS) || defined(MSDOS)
d02b48c6
RE
451 /* windows world */
452
0f113f3e 453# ifdef OPENSSL_NO_SOCK
b0700d2c
RS
454# define OpenSSL_Write(a,b,c) (-1)
455# define OpenSSL_Read(a,b,c) (-1)
0f113f3e
MC
456# define SHUTDOWN(fd) close(fd)
457# define SHUTDOWN2(fd) close(fd)
458# elif !defined(__DJGPP__)
459# if defined(_WIN32_WCE) && _WIN32_WCE<410
460# define getservbyname _masked_declaration_getservbyname
461# endif
462# if !defined(IPPROTO_IP)
a6efc2d1 463 /* winsock[2].h was included already? */
0f113f3e
MC
464# include <winsock.h>
465# endif
466# ifdef getservbyname
467# undef getservbyname
63d3a9c5 468 /* this is used to be wcecompat/include/winsock_extras.h */
0f113f3e
MC
469struct servent *PASCAL getservbyname(const char *, const char *);
470# endif
63d3a9c5 471
0f113f3e 472# ifdef _WIN64
1875e6db
AP
473/*
474 * Even though sizeof(SOCKET) is 8, it's safe to cast it to int, because
475 * the value constitutes an index in per-process table of limited size
b13fdc48
AP
476 * and not a real pointer. And we also depend on fact that all processors
477 * Windows run on happen to be two's-complement, which allows to
478 * interchange INVALID_SOCKET and -1.
1875e6db 479 */
0f113f3e
MC
480# define socket(d,t,p) ((int)socket(d,t,p))
481# define accept(s,f,l) ((int)accept(s,f,l))
d02b48c6 482# endif
b0700d2c
RS
483# define OpenSSL_Write(a,b,c) send((a),(b),(c),0)
484# define OpenSSL_Read(a,b,c) recv((a),(b),(c),0)
0f113f3e
MC
485# define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
486# define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
487# else
b0700d2c
RS
488# define OpenSSL_Write(a,b,c) write_s(a,b,c,0)
489# define OpenSSL_Read(a,b,c) read_s(a,b,c)
0f113f3e
MC
490# define SHUTDOWN(fd) close_s(fd)
491# define SHUTDOWN2(fd) close_s(fd)
492# endif
d02b48c6 493
4d8743f4 494# elif defined(OPENSSL_SYS_NETWARE)
0f113f3e
MC
495 /*
496 * NetWare uses the WinSock2 interfaces by default, but can be
497 * configured for BSD
498 */
499# if defined(NETWARE_BSDSOCK)
28a0841b 500# include <netdb.h>
0f113f3e
MC
501# include <sys/socket.h>
502# include <netinet/in.h>
503# include <sys/time.h>
504# if defined(NETWARE_CLIB)
505# include <sys/bsdskt.h>
7d7d2cbc 506# else
0f113f3e 507# include <sys/select.h>
d02b48c6 508# endif
0f113f3e
MC
509# define INVALID_SOCKET (int)(~0)
510# else
511# include <novsock2.h>
512# endif
b0700d2c
RS
513# define OpenSSL_Write(a,b,c) send((a),(b),(c),0)
514# define OpenSSL_Read(a,b,c) recv((a),(b),(c),0)
0f113f3e
MC
515# define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }
516# define SHUTDOWN2(fd) { shutdown((fd),2); closesocket(fd); }
d02b48c6 517
0f113f3e 518# else
d02b48c6 519
0f113f3e
MC
520# ifndef NO_SYS_PARAM_H
521# include <sys/param.h>
522# endif
523# ifdef OPENSSL_SYS_VXWORKS
524# include <time.h>
525# endif
526
527# include <netdb.h>
528# if defined(OPENSSL_SYS_VMS_NODECC)
529# include <socket.h>
530# include <in.h>
531# include <inet.h>
532# else
533# include <sys/socket.h>
534# ifndef NO_SYS_UN_H
535# ifdef OPENSSL_SYS_VXWORKS
536# include <streams/un.h>
537# else
538# include <sys/un.h>
539# endif
540# ifndef UNIX_PATH_MAX
541# define UNIX_PATH_MAX sizeof(((struct sockaddr_un *)NULL)->sun_path)
542# endif
a545c6f6 543# endif
0f113f3e 544# ifdef FILIO_H
f6739c3d 545# include <sys/filio.h> /* FIONBIO in some SVR4, e.g. unixware, solaris */
0f113f3e
MC
546# endif
547# include <netinet/in.h>
548# include <arpa/inet.h>
28a0841b 549# include <netinet/tcp.h>
0f113f3e
MC
550# endif
551
552# ifdef OPENSSL_SYS_AIX
553# include <sys/select.h>
554# endif
555
556# ifdef __QNX__
557# include <sys/select.h>
558# endif
559
2f2c805a
AP
560# ifndef VMS
561# include <sys/ioctl.h>
0f113f3e 562# else
2f2c805a
AP
563 /* ioctl is only in VMS > 7.0 and when socketshr is not used */
564# if !defined(TCPIP_TYPE_SOCKETSHR) && defined(__VMS_VER) && (__VMS_VER > 70000000)
0f113f3e 565# include <sys/ioctl.h>
d02b48c6 566# endif
0f113f3e 567# endif
d02b48c6 568
0f113f3e
MC
569# ifdef VMS
570# include <unixio.h>
571# if defined(TCPIP_TYPE_SOCKETSHR)
572# include <socketshr.h>
d02b48c6 573# endif
0f113f3e
MC
574# endif
575
b0700d2c
RS
576# define OpenSSL_Read(a,b,c) read((a),(b),(c))
577# define OpenSSL_Write(a,b,c) write((a),(b),(c))
0f113f3e
MC
578# define SHUTDOWN(fd) { shutdown((fd),0); closesocket((fd)); }
579# define SHUTDOWN2(fd) { shutdown((fd),2); closesocket((fd)); }
580# ifndef INVALID_SOCKET
581# define INVALID_SOCKET (-1)
582# endif /* INVALID_SOCKET */
d02b48c6 583# endif
a6dab873 584
0f113f3e
MC
585/*
586 * Some IPv6 implementations are broken, disable them in known bad versions.
a6dab873
DSH
587 */
588# if !defined(OPENSSL_USE_IPV6)
0f113f3e
MC
589# if defined(AF_INET6) && !defined(NETWARE_CLIB)
590# define OPENSSL_USE_IPV6 1
591# else
592# define OPENSSL_USE_IPV6 0
593# endif
a6dab873
DSH
594# endif
595
0f113f3e 596# endif
d02b48c6 597
0f113f3e
MC
598# ifndef OPENSSL_EXIT
599# if defined(MONOLITH) && !defined(OPENSSL_C)
600# define OPENSSL_EXIT(n) return(n)
601# else
602# define OPENSSL_EXIT(n) do { EXIT(n); return(n); } while(0)
603# endif
1c3e4a36 604# endif
1c3e4a36 605
d02b48c6
RE
606/***********************************************/
607
0f113f3e 608# if defined(OPENSSL_SYS_WINDOWS)
e6fa67fa
RL
609# define strcasecmp _stricmp
610# define strncasecmp _strnicmp
0f113f3e 611# elif defined(OPENSSL_SYS_VMS)
e6fa67fa 612/* VMS below version 7.0 doesn't have strcasecmp() */
68570797 613# include "internal/o_str.h"
e6fa67fa
RL
614# define strcasecmp OPENSSL_strcasecmp
615# define strncasecmp OPENSSL_strncasecmp
e6d27baf 616# define OPENSSL_IMPLEMENTS_strncasecmp
0f113f3e 617# elif defined(OPENSSL_SYS_OS2) && defined(__EMX__)
e6fa67fa
RL
618# define strcasecmp stricmp
619# define strncasecmp strnicmp
0f113f3e 620# elif defined(OPENSSL_SYS_NETWARE)
eef0c1f3
DSH
621# include <string.h>
622# if defined(NETWARE_CLIB)
0f113f3e
MC
623# define strcasecmp stricmp
624# define strncasecmp strnicmp
625# endif /* NETWARE_CLIB */
626# endif
e6fa67fa 627
0f113f3e
MC
628# if defined(OPENSSL_SYS_OS2) && defined(__EMX__)
629# include <io.h>
630# include <fcntl.h>
631# define NO_SYSLOG
632# endif
3bfd99bf 633
6a89a25c 634/* vxworks */
0f113f3e
MC
635# if defined(OPENSSL_SYS_VXWORKS)
636# include <ioLib.h>
637# include <tickLib.h>
638# include <sysLib.h>
6a89a25c 639
0f113f3e 640# define TTY_STRUCT int
6a89a25c 641
0f113f3e 642# define sleep(a) taskDelay((a) * sysClkRateGet())
6a89a25c 643
0f113f3e
MC
644# include <vxWorks.h>
645# include <sockLib.h>
646# include <taskLib.h>
6a89a25c 647
0f113f3e 648# define getpid taskIdSelf
6a89a25c 649
0f113f3e
MC
650/*
651 * NOTE: these are implemented by helpers in database app! if the database is
652 * not linked, we need to implement them elswhere
653 */
6a89a25c
RL
654struct hostent *gethostbyname(const char *name);
655struct hostent *gethostbyaddr(const char *addr, int length, int type);
656struct servent *getservbyname(const char *name, const char *proto);
657
0f113f3e 658# endif
6a89a25c
RL
659/* end vxworks */
660
b6eb9827
DSH
661#define OSSL_NELEM(x) (sizeof(x)/sizeof(x[0]))
662
d02b48c6
RE
663#ifdef __cplusplus
664}
665#endif
666
667#endif