Info on how to submit patches.
[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 #ifdef  __cplusplus
63 extern "C" {
64 #endif
65
66 /* Used to checking reference counts, most while doing perl5 stuff :-) */
67 #ifdef REF_PRINT
68 #undef REF_PRINT
69 #define REF_PRINT(a,b)  fprintf(stderr,"%08X:%4d:%s\n",(int)b,b->references,a)
70 #endif
71
72 #ifndef DEVRANDOM
73 /* set this to your 'random' device if you have one.
74  * My default, we will try to read this file */
75 #define DEVRANDOM "/dev/urandom"
76 #endif
77
78 /********************************************************************
79  The Microsoft section
80  ********************************************************************/
81 /* The following is used becaue of the small stack in some
82  * Microsoft operating systems */
83 #if defined(WIN16) || defined(MSDOS)
84 #  define MS_STATIC     static
85 #else
86 #  define MS_STATIC
87 #endif
88
89 #if defined(WIN32) || defined(WIN16)
90 #  ifndef WINDOWS
91 #    define WINDOWS
92 #  endif
93 #  ifndef MSDOS
94 #    define MSDOS
95 #  endif
96 #endif
97
98 #ifdef WIN32
99 #define get_last_sys_error()    GetLastError()
100 #define clear_sys_error()       SetLastError(0)
101 #if !defined(WINNT)
102 #define WIN_CONSOLE_BUG
103 #endif
104 #else
105 #define get_last_sys_error()    errno
106 #define clear_sys_error()       errno=0
107 #endif
108
109 #ifdef WINDOWS
110 #define get_last_socket_error() WSAGetLastError()
111 #define clear_socket_error()    WSASetLastError(0)
112 #define readsocket(s,b,n)       recv((s),(b),(n),0)
113 #define writesocket(s,b,n)      send((s),(b),(n),0)
114 #define EADDRINUSE              WSAEADDRINUSE
115 #else
116 #define get_last_socket_error() errno
117 #define clear_socket_error()    errno=0
118 #define ioctlsocket(a,b,c)      ioctl(a,b,c)
119 #define closesocket(s)          close(s)
120 #define readsocket(s,b,n)       read((s),(b),(n))
121 #define writesocket(s,b,n)      write((s),(b),(n))
122 #endif
123
124 #ifdef WIN16
125 #  define NO_FP_API
126 #  define MS_CALLBACK   _far _loadds
127 #  define MS_FAR        _far
128 #else
129 #  define MS_CALLBACK
130 #  define MS_FAR
131 #endif
132
133 #ifdef NO_STDIO
134 #  define NO_FP_API
135 #endif
136
137 #if defined(WINDOWS) || defined(MSDOS)
138
139 #ifndef S_IFDIR
140 #define S_IFDIR _S_IFDIR
141 #endif
142
143 #ifndef S_IFMT
144 #define S_IFMT  _S_IFMT
145
146 #if !defined(WINNT)
147 #define NO_SYSLOG
148 #endif
149 #define NO_DIRENT
150
151 #endif
152
153 #define strncasecmp(a,b,c)      strnicmp((a),(b),(c))
154
155 #  ifdef WINDOWS
156 #    include <windows.h>
157 #    include <stddef.h>
158 #    include <errno.h>
159 #    include <string.h>
160 #    include <malloc.h>
161 #  endif
162 #  include <io.h>
163 #  include <fcntl.h>
164
165 #if defined(WIN16) && !defined(MONOLITH) && defined(SSLEAY) && defined(_WINEXITNOPERSIST)
166 #  define EXIT(n) { if (n == 0) _wsetexit(_WINEXITNOPERSIST); return(n); }
167 #else
168 #  define EXIT(n)               return(n);
169 #endif
170 #  define LIST_SEPARATOR_CHAR ';'
171 #ifndef X_OK
172 #  define X_OK  0
173 #endif
174 #ifndef W_OK
175 #  define W_OK  2
176 #endif
177 #ifndef R_OK
178 #  define R_OK  4
179 #endif
180 #  define OPENSSL_CONF  "openssl.cnf"
181 #  define SSLEAY_CONF   OPENSSL_CONF
182 #  define NUL_DEV       "nul"
183 #  define RFILE         ".rnd"
184
185 #else /* The non-microsoft world world */
186
187 #  ifdef VMS
188 #    include <unixlib.h>
189 #  else
190 #    include <unistd.h>
191 #  endif
192
193 #  define OPENSSL_CONF  "openssl.cnf"
194 #  define SSLEAY_CONF   OPENSSL_CONF
195 #  define RFILE         ".rnd"
196 #  define LIST_SEPARATOR_CHAR ':'
197 #  ifndef MONOLITH
198 #    define EXIT(n)             exit(n); return(n)
199 #  else
200 #    define EXIT(n)             return(n)
201 #  endif
202 #  define NUL_DEV               "/dev/null"
203
204 #  define SSLeay_getpid()       getpid()
205
206 #endif
207
208 /*************/
209
210 #ifdef USE_SOCKETS
211 #  if defined(WINDOWS) || defined(MSDOS)
212       /* windows world */
213
214 #    ifdef NO_SOCK
215 #      define SSLeay_Write(a,b,c)       (-1)
216 #      define SSLeay_Read(a,b,c)        (-1)
217 #      define SHUTDOWN(fd)              close(fd)
218 #      define SHUTDOWN2(fd)             close(fd)
219 #    else
220 #      include <winsock.h>
221 extern HINSTANCE _hInstance;
222 #      define SSLeay_Write(a,b,c)       send((a),(b),(c),0)
223 #      define SSLeay_Read(a,b,c)        recv((a),(b),(c),0)
224 #      define SHUTDOWN(fd)              { shutdown((fd),0); closesocket(fd); }
225 #      define SHUTDOWN2(fd)             { shutdown((fd),2); closesocket(fd); }
226 #    endif
227
228
229 #  else
230
231 #    ifndef VMS
232       /* unix world */
233 #      include <netdb.h>
234 #      include <sys/types.h>
235 #      include <sys/socket.h>
236 #      ifdef FILIO_H
237 #        include <sys/filio.h> /* Added for FIONBIO under unixware */
238 #      endif
239 #      include <sys/param.h>
240 #      include <sys/time.h> /* Needed under linux for FD_XXX */
241 #      include <netinet/in.h>
242 #    endif
243
244 #    if defined(NeXT) || defined(_NEXT_SOURCE)
245 #      include <sys/fcntl.h>
246 #      include <sys/types.h>
247 #    endif
248
249 #    ifdef AIX
250 #      include <sys/select.h>
251 #    endif
252
253 #    if defined(sun)
254 #      include <sys/filio.h>
255 #    else
256 #      include <sys/ioctl.h>
257 #    endif
258
259 #    ifdef VMS
260 #      include <unixio.h>
261 #    endif
262
263 #    define SSLeay_Read(a,b,c)     read((a),(b),(c))
264 #    define SSLeay_Write(a,b,c)    write((a),(b),(c))
265 #    define SHUTDOWN(fd)    { shutdown((fd),0); close((fd)); }
266 #    define SHUTDOWN2(fd)   { shutdown((fd),2); close((fd)); }
267 #    define INVALID_SOCKET      (-1)
268 #  endif
269 #endif
270
271 #if defined(THREADS) || defined(sun)
272 #ifndef _REENTRANT
273 #define _REENTRANT
274 #endif
275 #endif
276
277 /***********************************************/
278
279 /* do we need to do this for getenv.
280  * Just define getenv for use under windows */
281
282 #ifdef WIN16
283 /* How to do this needs to be thought out a bit more.... */
284 /*char *GETENV(char *);
285 #define Getenv  GETENV*/
286 #define Getenv  getenv
287 #else
288 #define Getenv getenv
289 #endif
290
291 #define DG_GCC_BUG      /* gcc < 2.6.3 on DGUX */
292
293 #ifdef sgi
294 #define IRIX_CC_BUG     /* all version of IRIX I've tested (4.* 5.*) */
295 #endif
296
297 #ifdef NO_MD2
298 #define MD2_Init MD2Init
299 #define MD2_Update MD2Update
300 #define MD2_Final MD2Final
301 #define MD2_DIGEST_LENGTH 16
302 #endif
303 #ifdef NO_MD5
304 #define MD5_Init MD5Init 
305 #define MD5_Update MD5Update
306 #define MD5_Final MD5Final
307 #define MD5_DIGEST_LENGTH 16
308 #endif
309
310 #ifdef  __cplusplus
311 }
312 #endif
313
314 #endif
315