Remove NextStep support
[openssl.git] / include / openssl / e_os2.h
1 /*
2  * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #ifndef HEADER_E_OS2_H
11 # define HEADER_E_OS2_H
12
13 # include <openssl/opensslconf.h>
14
15 #ifdef  __cplusplus
16 extern "C" {
17 #endif
18
19 /******************************************************************************
20  * Detect operating systems.  This probably needs completing.
21  * The result is that at least one OPENSSL_SYS_os macro should be defined.
22  * However, if none is defined, Unix is assumed.
23  **/
24
25 # define OPENSSL_SYS_UNIX
26
27 /* --------------------- Microsoft operating systems ---------------------- */
28
29 /*
30  * Note that MSDOS actually denotes 32-bit environments running on top of
31  * MS-DOS, such as DJGPP one.
32  */
33 # if defined(OPENSSL_SYS_MSDOS)
34 #  undef OPENSSL_SYS_UNIX
35 # endif
36
37 /*
38  * For 32 bit environment, there seems to be the CygWin environment and then
39  * all the others that try to do the same thing Microsoft does...
40  */
41 /*
42  * UEFI lives here because it might be built with a Microsoft toolchain and
43  * we need to avoid the false positive match on Windows.
44  */
45 # if defined(OPENSSL_SYS_UEFI)
46 #  undef OPENSSL_SYS_UNIX
47 # elif defined(OPENSSL_SYS_UWIN)
48 #  undef OPENSSL_SYS_UNIX
49 #  define OPENSSL_SYS_WIN32_UWIN
50 # else
51 #  if defined(__CYGWIN__) || defined(OPENSSL_SYS_CYGWIN)
52 #   define OPENSSL_SYS_WIN32_CYGWIN
53 #  else
54 #   if defined(_WIN32) || defined(OPENSSL_SYS_WIN32)
55 #    undef OPENSSL_SYS_UNIX
56 #    if !defined(OPENSSL_SYS_WIN32)
57 #     define OPENSSL_SYS_WIN32
58 #    endif
59 #   endif
60 #   if defined(_WIN64) || defined(OPENSSL_SYS_WIN64)
61 #    undef OPENSSL_SYS_UNIX
62 #    if !defined(OPENSSL_SYS_WIN64)
63 #     define OPENSSL_SYS_WIN64
64 #    endif
65 #   endif
66 #   if defined(OPENSSL_SYS_WINNT)
67 #    undef OPENSSL_SYS_UNIX
68 #   endif
69 #   if defined(OPENSSL_SYS_WINCE)
70 #    undef OPENSSL_SYS_UNIX
71 #   endif
72 #  endif
73 # endif
74
75 /* Anything that tries to look like Microsoft is "Windows" */
76 # if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN64) || defined(OPENSSL_SYS_WINNT) || defined(OPENSSL_SYS_WINCE)
77 #  undef OPENSSL_SYS_UNIX
78 #  define OPENSSL_SYS_WINDOWS
79 #  ifndef OPENSSL_SYS_MSDOS
80 #   define OPENSSL_SYS_MSDOS
81 #  endif
82 # endif
83
84 /*
85  * DLL settings.  This part is a bit tough, because it's up to the
86  * application implementor how he or she will link the application, so it
87  * requires some macro to be used.
88  */
89 # ifdef OPENSSL_SYS_WINDOWS
90 #  ifndef OPENSSL_OPT_WINDLL
91 #   if defined(_WINDLL)         /* This is used when building OpenSSL to
92                                  * indicate that DLL linkage should be used */
93 #    define OPENSSL_OPT_WINDLL
94 #   endif
95 #  endif
96 # endif
97
98 /* ------------------------------- OpenVMS -------------------------------- */
99 # if defined(__VMS) || defined(VMS) || defined(OPENSSL_SYS_VMS)
100 #  if !defined(OPENSSL_SYS_VMS)
101 #   undef OPENSSL_SYS_UNIX
102 #  endif
103 #  define OPENSSL_SYS_VMS
104 #  if defined(__DECC)
105 #   define OPENSSL_SYS_VMS_DECC
106 #  elif defined(__DECCXX)
107 #   define OPENSSL_SYS_VMS_DECC
108 #   define OPENSSL_SYS_VMS_DECCXX
109 #  else
110 #   define OPENSSL_SYS_VMS_NODECC
111 #  endif
112 # endif
113
114 /* -------------------------------- Unix ---------------------------------- */
115 # ifdef OPENSSL_SYS_UNIX
116 #  if defined(linux) || defined(__linux__) && !defined(OPENSSL_SYS_LINUX)
117 #   define OPENSSL_SYS_LINUX
118 #  endif
119 #  if defined(_AIX) && !defined(OPENSSL_SYS_AIX)
120 #   define OPENSSL_SYS_AIX
121 #  endif
122 # endif
123
124 /* -------------------------------- VOS ----------------------------------- */
125 # if defined(__VOS__) && !defined(OPENSSL_SYS_VOS)
126 #  define OPENSSL_SYS_VOS
127 #  ifdef __HPPA__
128 #   define OPENSSL_SYS_VOS_HPPA
129 #  endif
130 #  ifdef __IA32__
131 #   define OPENSSL_SYS_VOS_IA32
132 #  endif
133 # endif
134
135 /**
136  * That's it for OS-specific stuff
137  *****************************************************************************/
138
139 /*-
140  * OPENSSL_EXTERN is normally used to declare a symbol with possible extra
141  * attributes to handle its presence in a shared library.
142  * OPENSSL_EXPORT is used to define a symbol with extra possible attributes
143  * to make it visible in a shared library.
144  * Care needs to be taken when a header file is used both to declare and
145  * define symbols.  Basically, for any library that exports some global
146  * variables, the following code must be present in the header file that
147  * declares them, before OPENSSL_EXTERN is used:
148  *
149  * #ifdef SOME_BUILD_FLAG_MACRO
150  * # undef OPENSSL_EXTERN
151  * # define OPENSSL_EXTERN OPENSSL_EXPORT
152  * #endif
153  *
154  * The default is to have OPENSSL_EXPORT and OPENSSL_EXTERN
155  * have some generally sensible values.
156  */
157
158 # if defined(OPENSSL_SYS_WINDOWS) && defined(OPENSSL_OPT_WINDLL)
159 #  define OPENSSL_EXPORT extern __declspec(dllexport)
160 #  define OPENSSL_EXTERN extern __declspec(dllimport)
161 # else
162 #  define OPENSSL_EXPORT extern
163 #  define OPENSSL_EXTERN extern
164 # endif
165
166 /*-
167  * Macros to allow global variables to be reached through function calls when
168  * required (if a shared library version requires it, for example.
169  * The way it's done allows definitions like this:
170  *
171  *      // in foobar.c
172  *      OPENSSL_IMPLEMENT_GLOBAL(int,foobar,0)
173  *      // in foobar.h
174  *      OPENSSL_DECLARE_GLOBAL(int,foobar);
175  *      #define foobar OPENSSL_GLOBAL_REF(foobar)
176  */
177 # ifdef OPENSSL_EXPORT_VAR_AS_FUNCTION
178 #  define OPENSSL_IMPLEMENT_GLOBAL(type,name,value)                      \
179         type *_shadow_##name(void)                                      \
180         { static type _hide_##name=value; return &_hide_##name; }
181 #  define OPENSSL_DECLARE_GLOBAL(type,name) type *_shadow_##name(void)
182 #  define OPENSSL_GLOBAL_REF(name) (*(_shadow_##name()))
183 # else
184 #  define OPENSSL_IMPLEMENT_GLOBAL(type,name,value) type _shadow_##name=value;
185 #  define OPENSSL_DECLARE_GLOBAL(type,name) OPENSSL_EXPORT type _shadow_##name
186 #  define OPENSSL_GLOBAL_REF(name) _shadow_##name
187 # endif
188
189 # ifdef _WIN32
190 #  ifdef _WIN64
191 #   define ossl_ssize_t __int64
192 #   define OSSL_SSIZE_MAX _I64_MAX
193 #  else
194 #   define ossl_ssize_t int
195 #   define OSSL_SSIZE_MAX INT_MAX
196 #  endif
197 # endif
198
199 # if defined(OPENSSL_SYS_UEFI) && !defined(ossl_ssize_t)
200 #  define ossl_ssize_t INTN
201 #  define OSSL_SSIZE_MAX MAX_INTN
202 # endif
203
204 # ifndef ossl_ssize_t
205 #  define ossl_ssize_t ssize_t
206 #  if defined(SSIZE_MAX)
207 #   define OSSL_SSIZE_MAX SSIZE_MAX
208 #  elif defined(_POSIX_SSIZE_MAX)
209 #   define OSSL_SSIZE_MAX _POSIX_SSIZE_MAX
210 #  else
211 #   define OSSL_SSIZE_MAX ((ssize_t)(SIZE_MAX>>1))
212 #  endif
213 # endif
214
215 # ifdef DEBUG_UNUSED
216 #  define __owur __attribute__((__warn_unused_result__))
217 # else
218 #  define __owur
219 # endif
220
221 /* Standard integer types */
222 # define OPENSSL_NO_INTTYPES_H
223 # define OPENSSL_NO_STDINT_H
224 # if defined(OPENSSL_SYS_UEFI)
225 typedef INT8 int8_t;
226 typedef UINT8 uint8_t;
227 typedef INT16 int16_t;
228 typedef UINT16 uint16_t;
229 typedef INT32 int32_t;
230 typedef UINT32 uint32_t;
231 typedef INT64 int64_t;
232 typedef UINT64 uint64_t;
233 # elif (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
234      defined(__osf__) || defined(__sgi) || defined(__hpux) || \
235      defined(OPENSSL_SYS_VMS) || defined (__OpenBSD__)
236 #  include <inttypes.h>
237 #  undef OPENSSL_NO_INTTYPES_H
238 /* Because the specs say that inttypes.h includes stdint.h if present */
239 #  undef OPENSSL_NO_STDINT_H
240 # elif defined(_MSC_VER) && _MSC_VER<=1500
241 /*
242  * minimally required typdefs for systems not supporting inttypes.h or
243  * stdint.h: currently just older VC++
244  */
245 typedef signed char int8_t;
246 typedef unsigned char uint8_t;
247 typedef short int16_t;
248 typedef unsigned short uint16_t;
249 typedef int int32_t;
250 typedef unsigned int uint32_t;
251 typedef __int64 int64_t;
252 typedef unsigned __int64 uint64_t;
253 # else
254 #  include <stdint.h>
255 #  undef OPENSSL_NO_STDINT_H
256 # endif
257
258 /* ossl_inline: portable inline definition usable in public headers */
259 # if !defined(inline) && !defined(__cplusplus)
260 #  if defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
261    /* just use inline */
262 #   define ossl_inline inline
263 #  elif defined(__GNUC__) && __GNUC__>=2
264 #   define ossl_inline __inline__
265 #  elif defined(_MSC_VER)
266   /*
267    * Visual Studio: inline is available in C++ only, however
268    * __inline is available for C, see
269    * http://msdn.microsoft.com/en-us/library/z8y1yy88.aspx
270    */
271 #   define ossl_inline __inline
272 #  else
273 #   define ossl_inline
274 #  endif
275 # else
276 #  define ossl_inline inline
277 # endif
278
279 # if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
280 #  define ossl_noreturn _Noreturn
281 # elif defined(__GNUC__) && __GNUC__ >= 2
282 #  define ossl_noreturn __attribute__((noreturn))
283 # else
284 #  define ossl_noreturn
285 # endif
286
287 /* ossl_unused: portable unused attribute for use in public headers */
288 # if defined(__GNUC__)
289 #  define ossl_unused __attribute__((unused))
290 # else
291 #  define ossl_unused
292 # endif
293
294 #ifdef  __cplusplus
295 }
296 #endif
297 #endif