Missed part of b4f35e
[openssl.git] / e_os.h
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
7  *
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).
14  *
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.
21  *
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 :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
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.
51  *
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
59 # define HEADER_E_OS_H
60
61 # include <openssl/opensslconf.h>
62
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  */
68
69 #ifdef  __cplusplus
70 extern "C" {
71 #endif
72
73 /* Used to checking reference counts, most while doing perl5 stuff :-) */
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
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
84
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
92 # if !defined(OPENSSL_NO_EGD) && !defined(DEVRANDOM_EGD)
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
100
101 # if defined(OPENSSL_SYS_VXWORKS)
102 #  define NO_SYS_PARAM_H
103 #  define NO_CHMOD
104 #  define NO_SYSLOG
105 # endif
106
107 /********************************************************************
108  The Microsoft section
109  ********************************************************************/
110 # if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
111 #  define WIN32
112 # endif
113 # if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
114 #  define WINDOWS
115 # endif
116 # if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
117 #  define MSDOS
118 # endif
119
120 # if (defined(MSDOS) || defined(OPENSSL_SYS_UEFI)) && !defined(GETPID_IS_MEANINGLESS)
121 #  define GETPID_IS_MEANINGLESS
122 # endif
123
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
135
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
189
190 # if (defined(WINDOWS) || defined(MSDOS))
191
192 #  ifdef __DJGPP__
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__ */
204
205 #  ifndef S_IFDIR
206 #   define S_IFDIR     _S_IFDIR
207 #  endif
208
209 #  ifndef S_IFMT
210 #   define S_IFMT      _S_IFMT
211 #  endif
212
213 #  if !defined(WINNT) && !defined(__DJGPP__)
214 #   define NO_SYSLOG
215 #  endif
216 #  define NO_DIRENT
217
218 #  ifdef WINDOWS
219 #   if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
220        /*
221         * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
222         * Most notably we ought to check for availability of each specific
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.
231         */
232 #    define _WIN32_WINNT 0x0501
233 #   endif
234 #   if !defined(OPENSSL_NO_SOCK) && (defined(_WIN32_WINNT) || defined(_WIN32_WCE))
235        /*
236         * Just like defining _WIN32_WINNT including winsock2.h implies
237         * certain "discipline" for maintaining [broad] binary compatibility.
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         */
242 #    include <winsock2.h>
243 #    include <ws2tcpip.h>
244        /* yes, they have to be #included prior to <windows.h> */
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)
256 /* cut strings to 2GB */
257 static __inline unsigned int _strlen31(const char *str)
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)
267        /* compensate for bug in VC6 ctype.h */
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
279 FILE *__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'.
293           */
294 extern FILE *_imp___iob;
295 #     define stdin  (&_imp___iob[0])
296 #     define stdout (&_imp___iob[1])
297 #     define stderr (&_imp___iob[2])
298 #    endif
299 #   endif
300 #  endif
301 #  include <io.h>
302 #  include <fcntl.h>
303
304 #  ifdef OPENSSL_SYS_WINCE
305 #   define OPENSSL_NO_POSIX_IO
306 #  endif
307
308 #  if defined (__BORLANDC__)
309 #   define _setmode setmode
310 #   define _O_TEXT O_TEXT
311 #   define _O_BINARY O_BINARY
312 #   define _int64 __int64
313 #   define _kbhit kbhit
314 #  endif
315
316 #  define EXIT(n) exit(n)
317 #  define LIST_SEPARATOR_CHAR ';'
318 #  ifndef X_OK
319 #   define X_OK        0
320 #  endif
321 #  ifndef W_OK
322 #   define W_OK        2
323 #  endif
324 #  ifndef R_OK
325 #   define R_OK        4
326 #  endif
327 #  define OPENSSL_CONF  "openssl.cnf"
328 #  define NUL_DEV       "nul"
329 #  define RFILE         ".rnd"
330 #  ifdef OPENSSL_SYS_WINCE
331 #   define DEFAULT_HOME  ""
332 #  else
333 #   define DEFAULT_HOME  "C:"
334 #  endif
335
336 /* Avoid Visual Studio 13 GetVersion deprecated problems */
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
344
345 # else                          /* The non-microsoft world */
346
347 #  ifdef OPENSSL_SYS_VMS
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"
360 #   define RFILE               ".rnd"
361 #   define LIST_SEPARATOR_CHAR ','
362 #   define NUL_DEV             "NLA0:"
363   /* We don't have any well-defined random devices on VMS, yet... */
364 #   undef DEVRANDOM
365   /*-
366      We need to do this since VMS has the following coding on status codes:
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
370                good, while even ones are considered errors.
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
378      the status is tagged as an error, which is what is wanted here.
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.
383
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.
387      -- Richard Levitte
388   */
389 #   define EXIT(n)  exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
390
391 #   define NO_SYS_PARAM_H
392 #   define NO_SYS_UN_H
393
394 #  elif defined(OPENSSL_SYS_NETWARE)
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
401 extern int GetThreadID(void);
402 /* #      include <conio.h> */
403 extern 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"
413 #   define RFILE    ".rnd"
414 #   define LIST_SEPARATOR_CHAR ';'
415 #   define EXIT(n)  { if (n) printf("ERROR: %d\n", (int)n); exit(n); }
416
417 #  else
418      /* !defined VMS */
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"
433 #   define RFILE               ".rnd"
434 #   define LIST_SEPARATOR_CHAR ':'
435 #   define NUL_DEV             "/dev/null"
436 #   define EXIT(n)             exit(n)
437 #  endif
438
439 #  define OpenSSL_getpid()       getpid()
440
441 # endif
442
443 /*************/
444
445 # if defined(OPENSSL_NO_SOCK) && !defined(OPENSSL_NO_DGRAM)
446 #  define OPENSSL_NO_DGRAM
447 # endif
448
449 # ifdef USE_SOCKETS
450 #  if defined(WINDOWS) || defined(MSDOS)
451       /* windows world */
452
453 #   ifdef OPENSSL_NO_SOCK
454 #    define OpenSSL_Write(a,b,c)       (-1)
455 #    define OpenSSL_Read(a,b,c)        (-1)
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)
463          /* winsock[2].h was included already? */
464 #     include <winsock.h>
465 #    endif
466 #    ifdef getservbyname
467 #     undef getservbyname
468          /* this is used to be wcecompat/include/winsock_extras.h */
469 struct servent *PASCAL getservbyname(const char *, const char *);
470 #    endif
471
472 #    ifdef _WIN64
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
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.
479  */
480 #     define socket(d,t,p)   ((int)socket(d,t,p))
481 #     define accept(s,f,l)   ((int)accept(s,f,l))
482 #    endif
483 #    define OpenSSL_Write(a,b,c)       send((a),(b),(c),0)
484 #    define OpenSSL_Read(a,b,c)        recv((a),(b),(c),0)
485 #    define SHUTDOWN(fd)              { shutdown((fd),0); closesocket(fd); }
486 #    define SHUTDOWN2(fd)             { shutdown((fd),2); closesocket(fd); }
487 #   else
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)
490 #    define SHUTDOWN(fd)              close_s(fd)
491 #    define SHUTDOWN2(fd)             close_s(fd)
492 #   endif
493
494 #  elif defined(OPENSSL_SYS_NETWARE)
495          /*
496           * NetWare uses the WinSock2 interfaces by default, but can be
497           * configured for BSD
498           */
499 #   if defined(NETWARE_BSDSOCK)
500 #    include <sys/socket.h>
501 #    include <netinet/in.h>
502 #    include <sys/time.h>
503 #    if defined(NETWARE_CLIB)
504 #     include <sys/bsdskt.h>
505 #    else
506 #     include <sys/select.h>
507 #    endif
508 #    define INVALID_SOCKET (int)(~0)
509 #   else
510 #    include <novsock2.h>
511 #   endif
512 #   define OpenSSL_Write(a,b,c)   send((a),(b),(c),0)
513 #   define OpenSSL_Read(a,b,c) recv((a),(b),(c),0)
514 #   define SHUTDOWN(fd)    { shutdown((fd),0); closesocket(fd); }
515 #   define SHUTDOWN2(fd)      { shutdown((fd),2); closesocket(fd); }
516
517 #  else
518
519 #   ifndef NO_SYS_PARAM_H
520 #    include <sys/param.h>
521 #   endif
522 #   ifdef OPENSSL_SYS_VXWORKS
523 #    include <time.h>
524 #   endif
525
526 #   include <netdb.h>
527 #   if defined(OPENSSL_SYS_VMS_NODECC)
528 #    include <socket.h>
529 #    include <in.h>
530 #    include <inet.h>
531 #   else
532 #    include <sys/socket.h>
533 #    ifndef NO_SYS_UN_H
534 #     ifdef OPENSSL_SYS_VXWORKS
535 #      include <streams/un.h>
536 #     else
537 #      include <sys/un.h>
538 #     endif
539 #     ifndef UNIX_PATH_MAX
540 #      define UNIX_PATH_MAX sizeof(((struct sockaddr_un *)NULL)->sun_path)
541 #     endif
542 #    endif
543 #    ifdef FILIO_H
544 #     include <sys/filio.h> /* FIONBIO in some SVR4, e.g. unixware, solaris */
545 #    endif
546 #    include <netinet/in.h>
547 #    include <arpa/inet.h>
548 #   endif
549
550 #   ifdef OPENSSL_SYS_AIX
551 #    include <sys/select.h>
552 #   endif
553
554 #   ifdef __QNX__
555 #    include <sys/select.h>
556 #   endif
557
558 #   ifndef VMS
559 #    include <sys/ioctl.h>
560 #   else
561         /* ioctl is only in VMS > 7.0 and when socketshr is not used */
562 #    if !defined(TCPIP_TYPE_SOCKETSHR) && defined(__VMS_VER) && (__VMS_VER > 70000000)
563 #     include <sys/ioctl.h>
564 #    endif
565 #   endif
566
567 #   ifdef VMS
568 #    include <unixio.h>
569 #    if defined(TCPIP_TYPE_SOCKETSHR)
570 #     include <socketshr.h>
571 #    endif
572 #   endif
573
574 #   define OpenSSL_Read(a,b,c)     read((a),(b),(c))
575 #   define OpenSSL_Write(a,b,c)    write((a),(b),(c))
576 #   define SHUTDOWN(fd)    { shutdown((fd),0); closesocket((fd)); }
577 #   define SHUTDOWN2(fd)   { shutdown((fd),2); closesocket((fd)); }
578 #   ifndef INVALID_SOCKET
579 #    define INVALID_SOCKET      (-1)
580 #   endif                       /* INVALID_SOCKET */
581 #  endif
582
583 /*
584  * Some IPv6 implementations are broken, disable them in known bad versions.
585  */
586 #  if !defined(OPENSSL_USE_IPV6)
587 #   if defined(AF_INET6) && !defined(NETWARE_CLIB)
588 #    define OPENSSL_USE_IPV6 1
589 #   else
590 #    define OPENSSL_USE_IPV6 0
591 #   endif
592 #  endif
593
594 # endif
595
596 # ifndef OPENSSL_EXIT
597 #  if defined(MONOLITH) && !defined(OPENSSL_C)
598 #   define OPENSSL_EXIT(n) return(n)
599 #  else
600 #   define OPENSSL_EXIT(n) do { EXIT(n); return(n); } while(0)
601 #  endif
602 # endif
603
604 /***********************************************/
605
606 # if defined(OPENSSL_SYS_WINDOWS)
607 #  define strcasecmp _stricmp
608 #  define strncasecmp _strnicmp
609 # elif defined(OPENSSL_SYS_VMS)
610 /* VMS below version 7.0 doesn't have strcasecmp() */
611 #  include "internal/o_str.h"
612 #  define strcasecmp OPENSSL_strcasecmp
613 #  define strncasecmp OPENSSL_strncasecmp
614 #  define OPENSSL_IMPLEMENTS_strncasecmp
615 # elif defined(OPENSSL_SYS_OS2) && defined(__EMX__)
616 #  define strcasecmp stricmp
617 #  define strncasecmp strnicmp
618 # elif defined(OPENSSL_SYS_NETWARE)
619 #  include <string.h>
620 #  if defined(NETWARE_CLIB)
621 #   define strcasecmp stricmp
622 #   define strncasecmp strnicmp
623 #  endif                        /* NETWARE_CLIB */
624 # endif
625
626 # if defined(OPENSSL_SYS_OS2) && defined(__EMX__)
627 #  include <io.h>
628 #  include <fcntl.h>
629 #  define NO_SYSLOG
630 # endif
631
632 /* vxworks */
633 # if defined(OPENSSL_SYS_VXWORKS)
634 #  include <ioLib.h>
635 #  include <tickLib.h>
636 #  include <sysLib.h>
637
638 #  define TTY_STRUCT int
639
640 #  define sleep(a) taskDelay((a) * sysClkRateGet())
641
642 #  include <vxWorks.h>
643 #  include <sockLib.h>
644 #  include <taskLib.h>
645
646 #  define getpid taskIdSelf
647
648 /*
649  * NOTE: these are implemented by helpers in database app! if the database is
650  * not linked, we need to implement them elswhere
651  */
652 struct hostent *gethostbyname(const char *name);
653 struct hostent *gethostbyaddr(const char *addr, int length, int type);
654 struct servent *getservbyname(const char *name, const char *proto);
655
656 # endif
657 /* end vxworks */
658
659 #define OSSL_NELEM(x)    (sizeof(x)/sizeof(x[0]))
660
661 #ifdef  __cplusplus
662 }
663 #endif
664
665 #endif