2 * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
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
14 # include <openssl/opensslconf.h>
16 # include <openssl/e_os2.h>
17 # include <openssl/crypto.h>
18 # include "internal/nelem.h"
21 * <openssl/e_os2.h> contains what we can justify to make visible to the
22 * outside; this file e_os.h is not part of the exported interface.
25 # if defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)
30 # define get_last_sys_error() errno
31 # define clear_sys_error() errno=0
32 # define set_sys_error(e) errno=(e)
34 /********************************************************************
36 ********************************************************************/
37 # if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
40 # if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
43 # if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
48 # undef get_last_sys_error
49 # undef clear_sys_error
51 # define get_last_sys_error() GetLastError()
52 # define clear_sys_error() SetLastError(0)
53 # define set_sys_error(e) SetLastError(e)
55 # define WIN_CONSOLE_BUG
60 # if (defined(WINDOWS) || defined(MSDOS))
64 # include <sys/stat.h>
65 # define _setmode setmode
66 # define _O_TEXT O_TEXT
67 # define _O_BINARY O_BINARY
68 # undef DEVRANDOM_EGD /* Neither MS-DOS nor FreeDOS provide 'egd' sockets. */
70 # define DEVRANDOM "/dev/urandom\x24"
71 # endif /* __DJGPP__ */
74 # define S_IFDIR _S_IFDIR
78 # define S_IFMT _S_IFMT
81 # if !defined(WINNT) && !defined(__DJGPP__)
86 # if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
88 * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
89 * Most notably we ought to check for availability of each specific
90 * routine that was introduced after denoted _WIN32_WINNT with
91 * GetProcAddress(). Normally newer functions are masked with higher
92 * _WIN32_WINNT in SDK headers. So that if you wish to use them in
93 * some module, you'd need to override _WIN32_WINNT definition in
94 * the target module in order to "reach for" prototypes, but replace
95 * calls to new functions with indirect calls. Alternatively it
96 * might be possible to achieve the goal by /DELAYLOAD-ing .DLLs
97 * and check for current OS version instead.
99 # define _WIN32_WINNT 0x0501
101 # if defined(_WIN32_WINNT) || defined(_WIN32_WCE)
103 * Just like defining _WIN32_WINNT including winsock2.h implies
104 * certain "discipline" for maintaining [broad] binary compatibility.
105 * As long as structures are invariant among Winsock versions,
106 * it's sufficient to check for specific Winsock2 API availability
107 * at run-time [DSO_global_lookup is recommended]...
109 # include <winsock2.h>
110 # include <ws2tcpip.h>
112 * Clang-based C++Builder 10.3.3 toolchains cannot find C inline
113 * definitions at link-time. This header defines WspiapiLoad() as an
114 * __inline function. https://quality.embarcadero.com/browse/RSP-33806
116 # if !defined(__BORLANDC__) || !defined(__clang__)
117 # include <wspiapi.h>
119 /* yes, they have to be #included prior to <windows.h> */
121 # include <windows.h>
125 # if defined(_WIN32_WCE) && !defined(EACCES)
130 # define strlen(s) _strlen31(s)
131 /* cut strings to 2GB */
132 static __inline
unsigned int _strlen31(const char *str
)
134 unsigned int len
= 0;
135 while (*str
&& len
< 0x80000000U
)
137 return len
& 0x7FFFFFFF;
141 # if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
142 # if _MSC_VER>=1300 && _MSC_VER<1600
147 # define stdin (&__iob_func()[0])
148 # define stdout (&__iob_func()[1])
149 # define stderr (&__iob_func()[2])
156 # ifdef OPENSSL_SYS_WINCE
157 # define OPENSSL_NO_POSIX_IO
160 # define EXIT(n) exit(n)
161 # define LIST_SEPARATOR_CHAR ';'
168 # ifdef OPENSSL_SYS_WINCE
169 # define DEFAULT_HOME ""
171 # define DEFAULT_HOME "C:"
174 /* Avoid Visual Studio 13 GetVersion deprecated problems */
175 # if defined(_MSC_VER) && _MSC_VER>=1800
176 # define check_winnt() (1)
177 # define check_win_minplat(x) (1)
179 # define check_winnt() (GetVersion() < 0x80000000)
180 # define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
183 # else /* The non-microsoft world */
185 # if defined(OPENSSL_SYS_VXWORKS)
188 # include <sys/time.h>
191 # ifdef OPENSSL_SYS_VMS
194 * some programs don't include stdlib, so exit() and others give implicit
201 # include <unixlib.h>
203 # define LIST_SEPARATOR_CHAR ','
204 /* We don't have any well-defined random devices on VMS, yet... */
207 We need to do this since VMS has the following coding on status codes:
209 Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
210 The important thing to know is that odd numbers are considered
211 good, while even ones are considered errors.
212 Bits 3-15: actual status number
213 Bits 16-27: facility number. 0 is considered "unknown"
214 Bits 28-31: control bits. If bit 28 is set, the shell won't try to
215 output the message (which, for random codes, just looks ugly)
217 So, what we do here is to change 0 to 1 to get the default success status,
218 and everything else is shifted up to fit into the status number field, and
219 the status is tagged as an error, which is what is wanted here.
221 Finally, we add the VMS C facility code 0x35a000, because there are some
222 programs, such as Perl, that will reinterpret the code back to something
223 POSIX. 'man perlvms' explains it further.
225 NOTE: the perlvms manual wants to turn all codes 2 to 255 into success
226 codes (status type = 1). I couldn't disagree more. Fortunately, the
227 status type doesn't seem to bother Perl.
230 # define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
232 # define DEFAULT_HOME "SYS$LOGIN:"
237 # include <sys/types.h>
238 # ifdef OPENSSL_SYS_WIN32_CYGWIN
243 # define LIST_SEPARATOR_CHAR ':'
244 # define EXIT(n) exit(n)
249 /***********************************************/
251 # if defined(OPENSSL_SYS_WINDOWS)
252 # if (_MSC_VER >= 1310) && !defined(_WIN32_WCE)
254 # define fdopen _fdopen
255 # define close _close
257 # define strdup _strdup
259 # define unlink _unlink
260 # define fileno _fileno
263 # include <strings.h>
267 # if defined(OPENSSL_SYS_VXWORKS)
269 # include <tickLib.h>
271 # include <vxWorks.h>
272 # include <sockLib.h>
273 # include <taskLib.h>
275 # define TTY_STRUCT int
276 # define sleep(a) taskDelay((a) * sysClkRateGet())
279 * NOTE: these are implemented by helpers in database app! if the database is
280 * not linked, we need to implement them elsewhere
282 struct hostent
*gethostbyname(const char *name
);
283 struct hostent
*gethostbyaddr(const char *addr
, int length
, int type
);
284 struct servent
*getservbyname(const char *name
, const char *proto
);
289 /* system-specific variants defining ossl_sleep() */
290 #if defined(OPENSSL_SYS_UNIX) || defined(__DJGPP__)
292 static ossl_inline
void ossl_sleep(unsigned long millis
)
294 # ifdef OPENSSL_SYS_VXWORKS
296 ts
.tv_sec
= (long int) (millis
/ 1000);
297 ts
.tv_nsec
= (long int) (millis
% 1000) * 1000000ul;
298 nanosleep(&ts
, NULL
);
299 # elif defined(__TANDEM) && !defined(_REENTRANT)
300 # include <cextdecs.h(PROCESS_DELAY_)>
302 /* HPNS does not support usleep for non threaded apps */
303 PROCESS_DELAY_(millis
* 1000);
305 unsigned int s
= (unsigned int)(millis
/ 1000);
306 unsigned int us
= (unsigned int)((millis
% 1000) * 1000);
313 #elif defined(_WIN32)
314 # include <windows.h>
315 static ossl_inline
void ossl_sleep(unsigned long millis
)
320 /* Fallback to a busy wait */
321 static ossl_inline
void ossl_sleep(unsigned long millis
)
323 struct timeval start
, now
;
324 unsigned long elapsedms
;
326 gettimeofday(&start
, NULL
);
328 gettimeofday(&now
, NULL
);
329 elapsedms
= (((now
.tv_sec
- start
.tv_sec
) * 1000000)
330 + now
.tv_usec
- start
.tv_usec
) / 1000;
331 } while (elapsedms
< millis
);
333 #endif /* defined OPENSSL_SYS_UNIX */
335 /* ----------------------------- HP NonStop -------------------------------- */
336 /* Required to support platform variant without getpid() and pid_t. */
337 # if defined(__TANDEM) && defined(_GUARDIAN_TARGET)
338 # include <strings.h>
340 # define getservbyname(name,proto) getservbyname((char*)name,proto)
341 # define gethostbyname(name) gethostbyname((char*)name)
342 # define ioctlsocket(a,b,c) ioctl(a,b,c)
344 inline int nssgetpid();
345 # ifndef NSSGETPID_MACRO
346 # define NSSGETPID_MACRO
347 # include <cextdecs.h(PROCESSHANDLE_GETMINE_)>
348 # include <cextdecs.h(PROCESSHANDLE_DECOMPOSE_)>
349 inline int nssgetpid()
351 short phandle
[10]={0};
359 PROCESSHANDLE_GETMINE_(phandle
);
360 PROCESSHANDLE_DECOMPOSE_(phandle
, &ppid
.cpu_pin
.cpu
, &ppid
.cpu_pin
.pin
);
363 # define getpid(a) nssgetpid(a)
364 # endif /* NSSGETPID_MACRO */
365 # endif /* NO_GETPID */
366 /*# define setsockopt(a,b,c,d,f) setsockopt(a,b,c,(char*)d,f)*/
367 /*# define getsockopt(a,b,c,d,f) getsockopt(a,b,c,(char*)d,f)*/
368 /*# define connect(a,b,c) connect(a,(struct sockaddr *)b,c)*/
369 /*# define bind(a,b,c) bind(a,(struct sockaddr *)b,c)*/
370 /*# define sendto(a,b,c,d,e,f) sendto(a,(char*)b,c,d,(struct sockaddr *)e,f)*/
371 # if defined(OPENSSL_THREADS) && !defined(_PUT_MODEL_)
375 # define SPT_THREAD_SIGNAL 1
376 # define SPT_THREAD_AWARE 1
377 # include <spthread.h>
379 # define close spt_close
381 # define get_last_socket_error() errno
382 # define clear_socket_error() errno=0
383 # define ioctlsocket(a,b,c) ioctl(a,b,c)
384 # define closesocket(s) close(s)
385 # define readsocket(s,b,n) read((s),(char*)(b),(n))
386 # define writesocket(s,b,n) write((s),(char*)(b),(n)
388 # define accept(a,b,c) accept(a,(struct sockaddr *)b,c)
389 # define recvfrom(a,b,c,d,e,f) recvfrom(a,b,(socklen_t)c,d,e,f)
393 # ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
394 # define CRYPTO_memcmp memcmp
397 # ifndef OPENSSL_NO_SECURE_MEMORY
398 /* unistd.h defines _POSIX_VERSION */
399 # if (defined(OPENSSL_SYS_UNIX) \
400 && ( (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) \
401 || defined(__sun) || defined(__hpux) || defined(__sgi) \
402 || defined(__osf__) )) \
404 /* secure memory is implemented */
406 # define OPENSSL_NO_SECURE_MEMORY
411 * str[n]casecmp_l is defined in POSIX 2008-01. Value is taken accordingly
412 * https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html
413 * There are also equivalent functions on Windows.
414 * There is no locale_t on NONSTOP.
416 # if defined(OPENSSL_SYS_WINDOWS)
417 # define locale_t _locale_t
418 # define freelocale _free_locale
419 # define strcasecmp_l _stricmp_l
420 # define strncasecmp_l _strnicmp_l
421 # define strcasecmp _stricmp
422 # define strncasecmp _strnicmp
423 # elif !defined(_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 200809L \
424 || defined(OPENSSL_SYS_TANDEM)
425 # ifndef OPENSSL_NO_LOCALE
426 # define OPENSSL_NO_LOCALE