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