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