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