In templates, output_on() must be used the same way as output_off()
[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 # 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
81 # endif
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)
88 # endif
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)
94 # endif
95
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
103 # if !defined(OPENSSL_NO_EGD) && !defined(DEVRANDOM_EGD)
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
111
112 # if defined(OPENSSL_SYS_VXWORKS)
113 #  define NO_SYS_PARAM_H
114 #  define NO_CHMOD
115 #  define NO_SYSLOG
116 # endif
117
118 /********************************************************************
119  The Microsoft section
120  ********************************************************************/
121 # if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
122 #  define WIN32
123 # endif
124 # if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
125 #  define WINDOWS
126 # endif
127 # if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
128 #  define MSDOS
129 # endif
130
131 # if (defined(MSDOS) || defined(OPENSSL_SYS_UEFI)) && !defined(GETPID_IS_MEANINGLESS)
132 #  define GETPID_IS_MEANINGLESS
133 # endif
134
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
146
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
200
201 # if (defined(WINDOWS) || defined(MSDOS))
202
203 #  ifdef __DJGPP__
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__ */
215
216 #  ifndef S_IFDIR
217 #   define S_IFDIR     _S_IFDIR
218 #  endif
219
220 #  ifndef S_IFMT
221 #   define S_IFMT      _S_IFMT
222 #  endif
223
224 #  if !defined(WINNT) && !defined(__DJGPP__)
225 #   define NO_SYSLOG
226 #  endif
227 #  define NO_DIRENT
228
229 #  ifdef WINDOWS
230 #   if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
231        /*
232         * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
233         * Most notably we ought to check for availability of each specific
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.
242         */
243 #    define _WIN32_WINNT 0x0501
244 #   endif
245 #   if !defined(OPENSSL_NO_SOCK) && (defined(_WIN32_WINNT) || defined(_WIN32_WCE))
246        /*
247         * Just like defining _WIN32_WINNT including winsock2.h implies
248         * certain "discipline" for maintaining [broad] binary compatibility.
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         */
253 #    include <winsock2.h>
254 #    include <ws2tcpip.h>
255        /* yes, they have to be #included prior to <windows.h> */
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)
267 /* cut strings to 2GB */
268 static __inline unsigned int _strlen31(const char *str)
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)
278        /* compensate for bug in VC6 ctype.h */
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
290 FILE *__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'.
304           */
305 extern FILE *_imp___iob;
306 #     define stdin  (&_imp___iob[0])
307 #     define stdout (&_imp___iob[1])
308 #     define stderr (&_imp___iob[2])
309 #    endif
310 #   endif
311 #  endif
312 #  include <io.h>
313 #  include <fcntl.h>
314
315 #  ifdef OPENSSL_SYS_WINCE
316 #   define OPENSSL_NO_POSIX_IO
317 #  endif
318
319 #  if defined (__BORLANDC__)
320 #   define _setmode setmode
321 #   define _O_TEXT O_TEXT
322 #   define _O_BINARY O_BINARY
323 #   define _int64 __int64
324 #   define _kbhit kbhit
325 #  endif
326
327 #  define EXIT(n) exit(n)
328 #  define LIST_SEPARATOR_CHAR ';'
329 #  ifndef X_OK
330 #   define X_OK        0
331 #  endif
332 #  ifndef W_OK
333 #   define W_OK        2
334 #  endif
335 #  ifndef R_OK
336 #   define R_OK        4
337 #  endif
338 #  define OPENSSL_CONF  "openssl.cnf"
339 #  define NUL_DEV       "nul"
340 #  define RFILE         ".rnd"
341 #  ifdef OPENSSL_SYS_WINCE
342 #   define DEFAULT_HOME  ""
343 #  else
344 #   define DEFAULT_HOME  "C:"
345 #  endif
346
347 /* Avoid Visual Studio 13 GetVersion deprecated problems */
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
355
356 # else                          /* The non-microsoft world */
357
358 #  ifdef OPENSSL_SYS_VMS
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"
371 #   define RFILE               ".rnd"
372 #   define LIST_SEPARATOR_CHAR ','
373 #   define NUL_DEV             "NLA0:"
374   /* We don't have any well-defined random devices on VMS, yet... */
375 #   undef DEVRANDOM
376   /*-
377      We need to do this since VMS has the following coding on status codes:
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
381                good, while even ones are considered errors.
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
389      the status is tagged as an error, which is what is wanted here.
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.
394
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.
398      -- Richard Levitte
399   */
400 #   define EXIT(n)  exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
401
402 #   define NO_SYS_PARAM_H
403 #   define NO_SYS_UN_H
404
405 #  elif defined(OPENSSL_SYS_NETWARE)
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
412 extern int GetThreadID(void);
413 /* #      include <conio.h> */
414 extern 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"
424 #   define RFILE    ".rnd"
425 #   define LIST_SEPARATOR_CHAR ';'
426 #   define EXIT(n)  { if (n) printf("ERROR: %d\n", (int)n); exit(n); }
427
428 #  else
429      /* !defined VMS */
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"
444 #   define RFILE               ".rnd"
445 #   define LIST_SEPARATOR_CHAR ':'
446 #   define NUL_DEV             "/dev/null"
447 #   define EXIT(n)             exit(n)
448 #  endif
449
450 #  define OpenSSL_getpid()       getpid()
451
452 # endif
453
454 /*************/
455
456 # if defined(OPENSSL_NO_SOCK) && !defined(OPENSSL_NO_DGRAM)
457 #  define OPENSSL_NO_DGRAM
458 # endif
459
460 # ifdef USE_SOCKETS
461 #  if defined(WINDOWS) || defined(MSDOS)
462       /* windows world */
463
464 #   ifdef OPENSSL_NO_SOCK
465 #    define OpenSSL_Write(a,b,c)       (-1)
466 #    define OpenSSL_Read(a,b,c)        (-1)
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)
474          /* winsock[2].h was included already? */
475 #     include <winsock.h>
476 #    endif
477 #    ifdef getservbyname
478 #     undef getservbyname
479          /* this is used to be wcecompat/include/winsock_extras.h */
480 struct servent *PASCAL getservbyname(const char *, const char *);
481 #    endif
482
483 #    ifdef _WIN64
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
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.
490  */
491 #     define socket(d,t,p)   ((int)socket(d,t,p))
492 #     define accept(s,f,l)   ((int)accept(s,f,l))
493 #    endif
494 #    define OpenSSL_Write(a,b,c)       send((a),(b),(c),0)
495 #    define OpenSSL_Read(a,b,c)        recv((a),(b),(c),0)
496 #    define SHUTDOWN(fd)              { shutdown((fd),0); closesocket(fd); }
497 #    define SHUTDOWN2(fd)             { shutdown((fd),2); closesocket(fd); }
498 #   else
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)
501 #    define SHUTDOWN(fd)              close_s(fd)
502 #    define SHUTDOWN2(fd)             close_s(fd)
503 #   endif
504
505 #  elif defined(OPENSSL_SYS_NETWARE)
506          /*
507           * NetWare uses the WinSock2 interfaces by default, but can be
508           * configured for BSD
509           */
510 #   if defined(NETWARE_BSDSOCK)
511 #    include <netdb.h>
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>
517 #    else
518 #     include <sys/select.h>
519 #    endif
520 #    define INVALID_SOCKET (int)(~0)
521 #   else
522 #    include <novsock2.h>
523 #   endif
524 #   define OpenSSL_Write(a,b,c)   send((a),(b),(c),0)
525 #   define OpenSSL_Read(a,b,c) recv((a),(b),(c),0)
526 #   define SHUTDOWN(fd)    { shutdown((fd),0); closesocket(fd); }
527 #   define SHUTDOWN2(fd)      { shutdown((fd),2); closesocket(fd); }
528
529 #  else
530
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
554 #    endif
555 #    ifdef FILIO_H
556 #     include <sys/filio.h> /* FIONBIO in some SVR4, e.g. unixware, solaris */
557 #    endif
558 #    include <netinet/in.h>
559 #    include <arpa/inet.h>
560 #    include <netinet/tcp.h>
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
571 #   ifndef VMS
572 #    include <sys/ioctl.h>
573 #   else
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)
576 #     include <sys/ioctl.h>
577 #    endif
578 #   endif
579
580 #   ifdef VMS
581 #    include <unixio.h>
582 #    if defined(TCPIP_TYPE_SOCKETSHR)
583 #     include <socketshr.h>
584 #    endif
585 #   endif
586
587 #   define OpenSSL_Read(a,b,c)     read((a),(b),(c))
588 #   define OpenSSL_Write(a,b,c)    write((a),(b),(c))
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 */
594 #  endif
595
596 /*
597  * Some IPv6 implementations are broken, disable them in known bad versions.
598  */
599 #  if !defined(OPENSSL_USE_IPV6)
600 #   if defined(AF_INET6) && !defined(NETWARE_CLIB)
601 #    define OPENSSL_USE_IPV6 1
602 #   else
603 #    define OPENSSL_USE_IPV6 0
604 #   endif
605 #  endif
606
607 # endif
608
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
615 # endif
616
617 /***********************************************/
618
619 # if defined(OPENSSL_SYS_WINDOWS)
620 #  define strcasecmp _stricmp
621 #  define strncasecmp _strnicmp
622 # elif defined(OPENSSL_SYS_VMS)
623 /* VMS below version 7.0 doesn't have strcasecmp() */
624 #  include "internal/o_str.h"
625 #  define strcasecmp OPENSSL_strcasecmp
626 #  define strncasecmp OPENSSL_strncasecmp
627 #  define OPENSSL_IMPLEMENTS_strncasecmp
628 # elif defined(OPENSSL_SYS_OS2) && defined(__EMX__)
629 #  define strcasecmp stricmp
630 #  define strncasecmp strnicmp
631 # elif defined(OPENSSL_SYS_NETWARE)
632 #  include <string.h>
633 #  if defined(NETWARE_CLIB)
634 #   define strcasecmp stricmp
635 #   define strncasecmp strnicmp
636 #  endif                        /* NETWARE_CLIB */
637 # endif
638
639 # if defined(OPENSSL_SYS_OS2) && defined(__EMX__)
640 #  include <io.h>
641 #  include <fcntl.h>
642 #  define NO_SYSLOG
643 # endif
644
645 /* vxworks */
646 # if defined(OPENSSL_SYS_VXWORKS)
647 #  include <ioLib.h>
648 #  include <tickLib.h>
649 #  include <sysLib.h>
650
651 #  define TTY_STRUCT int
652
653 #  define sleep(a) taskDelay((a) * sysClkRateGet())
654
655 #  include <vxWorks.h>
656 #  include <sockLib.h>
657 #  include <taskLib.h>
658
659 #  define getpid taskIdSelf
660
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  */
665 struct hostent *gethostbyname(const char *name);
666 struct hostent *gethostbyaddr(const char *addr, int length, int type);
667 struct servent *getservbyname(const char *name, const char *proto);
668
669 # endif
670 /* end vxworks */
671
672 #define OSSL_NELEM(x)    (sizeof(x)/sizeof(x[0]))
673
674 #ifdef  __cplusplus
675 }
676 #endif
677
678 #endif