]> git.ipfire.org Git - thirdparty/openssl.git/blame - e_os.h
Move ossl_sleep() to e_os.h and use it in apps
[thirdparty/openssl.git] / e_os.h
CommitLineData
b6cff313 1/*
3c2bdd7d 2 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
0f113f3e 3 *
402dd558 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
b6cff313
RS
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
d02b48c6
RE
8 */
9
ae4186b0
DMSP
10#ifndef OSSL_E_OS_H
11# define OSSL_E_OS_H
d02b48c6 12
07016a8a 13# include <limits.h>
0f113f3e 14# include <openssl/opensslconf.h>
06018c46 15
0f113f3e 16# include <openssl/e_os2.h>
98d132cf 17# include <openssl/crypto.h>
176db6dc 18# include "internal/nelem.h"
b99fe5f4 19
0f113f3e
MC
20/*
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.
23 */
fa470a84 24
cff55b90 25# if defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)
3e83e686
RL
26# define NO_CHMOD
27# define NO_SYSLOG
0f113f3e
MC
28# endif
29
0e97f1e1
RS
30# define get_last_sys_error() errno
31# define clear_sys_error() errno=0
71b1ceff 32# define set_sys_error(e) errno=(e)
0e97f1e1 33
d02b48c6
RE
34/********************************************************************
35 The Microsoft section
36 ********************************************************************/
0f113f3e 37# if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
b8384651 38# define WIN32
0f113f3e
MC
39# endif
40# if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
cf1b7d96 41# define WINDOWS
0f113f3e
MC
42# endif
43# if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
cf1b7d96 44# define MSDOS
0f113f3e 45# endif
d02b48c6 46
0f113f3e 47# ifdef WIN32
0e97f1e1
RS
48# undef get_last_sys_error
49# undef clear_sys_error
71b1ceff 50# undef set_sys_error
0f113f3e
MC
51# define get_last_sys_error() GetLastError()
52# define clear_sys_error() SetLastError(0)
71b1ceff 53# define set_sys_error(e) SetLastError(e)
0f113f3e
MC
54# if !defined(WINNT)
55# define WIN_CONSOLE_BUG
56# endif
57# else
0f113f3e 58# endif
58964a49 59
0f113f3e 60# if (defined(WINDOWS) || defined(MSDOS))
d02b48c6 61
f642ebc1 62# ifdef __DJGPP__
0f113f3e
MC
63# include <unistd.h>
64# include <sys/stat.h>
0f113f3e
MC
65# define _setmode setmode
66# define _O_TEXT O_TEXT
67# define _O_BINARY O_BINARY
2c25ebd1 68# undef DEVRANDOM_EGD /* Neither MS-DOS nor FreeDOS provide 'egd' sockets. */
0f113f3e
MC
69# undef DEVRANDOM
70# define DEVRANDOM "/dev/urandom\x24"
71# endif /* __DJGPP__ */
f642ebc1 72
0056ef5d 73# ifndef S_IFDIR
0f113f3e 74# define S_IFDIR _S_IFDIR
0056ef5d 75# endif
6e064240 76
0056ef5d 77# ifndef S_IFMT
0f113f3e 78# define S_IFMT _S_IFMT
0056ef5d 79# endif
6e064240 80
f642ebc1 81# if !defined(WINNT) && !defined(__DJGPP__)
0f113f3e 82# define NO_SYSLOG
0056ef5d 83# endif
d02b48c6 84
d02b48c6 85# ifdef WINDOWS
0f113f3e 86# if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
e476f942 87 /*
0f113f3e
MC
88 * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
89 * Most notably we ought to check for availability of each specific
0ee05b73
AP
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.
0f113f3e 98 */
0ee05b73 99# define _WIN32_WINNT 0x0501
0f113f3e 100# endif
2469e76b 101# if defined(_WIN32_WINNT) || defined(_WIN32_WCE)
61aa2134
AP
102 /*
103 * Just like defining _WIN32_WINNT including winsock2.h implies
8711efb4 104 * certain "discipline" for maintaining [broad] binary compatibility.
61aa2134
AP
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]...
108 */
0f113f3e
MC
109# include <winsock2.h>
110# include <ws2tcpip.h>
3e4981dd
TI
111 /*
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
115 */
116# if !defined(__BORLANDC__) || !defined(__clang__)
117# include <wspiapi.h>
118# endif
8711efb4 119 /* yes, they have to be #included prior to <windows.h> */
0f113f3e
MC
120# endif
121# include <windows.h>
122# include <stdio.h>
123# include <stddef.h>
124# include <errno.h>
125# if defined(_WIN32_WCE) && !defined(EACCES)
126# define EACCES 13
127# endif
128# include <string.h>
129# ifdef _WIN64
130# define strlen(s) _strlen31(s)
1875e6db 131/* cut strings to 2GB */
55c7a4cf 132static __inline unsigned int _strlen31(const char *str)
0f113f3e
MC
133{
134 unsigned int len = 0;
135 while (*str && len < 0x80000000U)
136 str++, len++;
137 return len & 0x7FFFFFFF;
138}
139# endif
140# include <malloc.h>
0f113f3e
MC
141# if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
142# if _MSC_VER>=1300 && _MSC_VER<1600
143# undef stdin
144# undef stdout
145# undef stderr
146FILE *__iob_func();
147# define stdin (&__iob_func()[0])
148# define stdout (&__iob_func()[1])
149# define stderr (&__iob_func()[2])
150# elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
151# undef stdin
152# undef stdout
153# undef stderr
154 /*
155 * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
156 * or in other words with /MD. Declaring implicit import, i.e. with
157 * _imp_ prefix, works correctly with all compiler options, but
158 * without /MD results in LINK warning LNK4049: 'locally defined
159 * symbol "__iob" imported'.
e527201f 160 */
0f113f3e
MC
161extern FILE *_imp___iob;
162# define stdin (&_imp___iob[0])
163# define stdout (&_imp___iob[1])
164# define stderr (&_imp___iob[2])
e527201f 165# endif
0f113f3e 166# endif
d02b48c6 167# endif
0f113f3e
MC
168# include <io.h>
169# include <fcntl.h>
d02b48c6 170
0bf23d9b 171# ifdef OPENSSL_SYS_WINCE
0f113f3e 172# define OPENSSL_NO_POSIX_IO
0bf23d9b
RL
173# endif
174
be7b4458 175# define EXIT(n) exit(n)
d02b48c6 176# define LIST_SEPARATOR_CHAR ';'
0056ef5d 177# ifndef W_OK
0f113f3e 178# define W_OK 2
0056ef5d
RL
179# endif
180# ifndef R_OK
0f113f3e 181# define R_OK 4
0056ef5d 182# endif
0bf23d9b 183# ifdef OPENSSL_SYS_WINCE
0f113f3e 184# define DEFAULT_HOME ""
0bf23d9b 185# else
0f113f3e 186# define DEFAULT_HOME "C:"
0bf23d9b 187# endif
d02b48c6 188
86d21d0b 189/* Avoid Visual Studio 13 GetVersion deprecated problems */
0f113f3e
MC
190# if defined(_MSC_VER) && _MSC_VER>=1800
191# define check_winnt() (1)
192# define check_win_minplat(x) (1)
193# else
194# define check_winnt() (GetVersion() < 0x80000000)
195# define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
196# endif
f511b25a 197
0f113f3e 198# else /* The non-microsoft world */
d02b48c6 199
4cff10dc 200# if defined(OPENSSL_SYS_VXWORKS)
61783db5 201# include <time.h>
4cff10dc
P
202# else
203# include <sys/time.h>
204# endif
205
cf1b7d96 206# ifdef OPENSSL_SYS_VMS
0f113f3e
MC
207# define VMS 1
208 /*
209 * some programs don't include stdlib, so exit() and others give implicit
210 * function warnings
211 */
212# include <stdlib.h>
213# if defined(__DECC)
214# include <unistd.h>
215# else
216# include <unixlib.h>
217# endif
0f113f3e 218# define LIST_SEPARATOR_CHAR ','
0c61e299 219 /* We don't have any well-defined random devices on VMS, yet... */
0f113f3e 220# undef DEVRANDOM
1d97c843
TH
221 /*-
222 We need to do this since VMS has the following coding on status codes:
511e596b
RL
223
224 Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
225 The important thing to know is that odd numbers are considered
0f113f3e 226 good, while even ones are considered errors.
511e596b
RL
227 Bits 3-15: actual status number
228 Bits 16-27: facility number. 0 is considered "unknown"
229 Bits 28-31: control bits. If bit 28 is set, the shell won't try to
230 output the message (which, for random codes, just looks ugly)
231
232 So, what we do here is to change 0 to 1 to get the default success status,
233 and everything else is shifted up to fit into the status number field, and
f625d383 234 the status is tagged as an error, which is what is wanted here.
c3944a99
RL
235
236 Finally, we add the VMS C facility code 0x35a000, because there are some
237 programs, such as Perl, that will reinterpret the code back to something
46d08509 238 POSIX. 'man perlvms' explains it further.
f625d383 239
c3944a99
RL
240 NOTE: the perlvms manual wants to turn all codes 2 to 255 into success
241 codes (status type = 1). I couldn't disagree more. Fortunately, the
242 status type doesn't seem to bother Perl.
511e596b
RL
243 -- Richard Levitte
244 */
f625d383
RL
245# define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
246
b8f304f7
RL
247# define DEFAULT_HOME "SYS$LOGIN:"
248
d02b48c6 249# else
06018c46 250 /* !defined VMS */
6b10d29c 251# include <unistd.h>
b379fe6c 252# include <sys/types.h>
0f113f3e
MC
253# ifdef OPENSSL_SYS_WIN32_CYGWIN
254# include <io.h>
255# include <fcntl.h>
256# endif
257
0f113f3e 258# define LIST_SEPARATOR_CHAR ':'
0f113f3e 259# define EXIT(n) exit(n)
d02b48c6 260# endif
d02b48c6 261
0f113f3e 262# endif
7d7d2cbc 263
d02b48c6
RE
264/***********************************************/
265
0f113f3e 266# if defined(OPENSSL_SYS_WINDOWS)
e6fa67fa
RL
267# define strcasecmp _stricmp
268# define strncasecmp _strnicmp
c35b8535 269# if (_MSC_VER >= 1310) && !defined(_WIN32_WCE)
dc6b5c7b
RL
270# define open _open
271# define fdopen _fdopen
272# define close _close
8d95ca36
M
273# ifndef strdup
274# define strdup _strdup
275# endif
dc6b5c7b 276# define unlink _unlink
2e38091c 277# define fileno _fileno
dc6b5c7b 278# endif
7233bea2
RL
279# else
280# include <strings.h>
0f113f3e 281# endif
3bfd99bf 282
6a89a25c 283/* vxworks */
0f113f3e
MC
284# if defined(OPENSSL_SYS_VXWORKS)
285# include <ioLib.h>
286# include <tickLib.h>
287# include <sysLib.h>
0f113f3e
MC
288# include <vxWorks.h>
289# include <sockLib.h>
290# include <taskLib.h>
6a89a25c 291
0e97f1e1
RS
292# define TTY_STRUCT int
293# define sleep(a) taskDelay((a) * sysClkRateGet())
6a89a25c 294
0f113f3e
MC
295/*
296 * NOTE: these are implemented by helpers in database app! if the database is
a303e9a6 297 * not linked, we need to implement them elsewhere
0f113f3e 298 */
6a89a25c
RL
299struct hostent *gethostbyname(const char *name);
300struct hostent *gethostbyaddr(const char *addr, int length, int type);
301struct servent *getservbyname(const char *name, const char *proto);
302
0f113f3e 303# endif
6a89a25c
RL
304/* end vxworks */
305
9be5f9a8
DDO
306/* system-specific variants defining ossl_sleep() */
307#ifdef OPENSSL_SYS_UNIX
308# include <unistd.h>
309static ossl_inline void ossl_sleep(unsigned long millis)
310{
311# ifdef OPENSSL_SYS_VXWORKS
312 struct timespec ts;
313 ts.tv_sec = (long int) (millis / 1000);
314 ts.tv_nsec = (long int) (millis % 1000) * 1000000ul;
315 nanosleep(&ts, NULL);
316# elif defined(__TANDEM)
317# if !defined(_REENTRANT)
318# include <cextdecs.h(PROCESS_DELAY_)>
319 /* HPNS does not support usleep for non threaded apps */
320 PROCESS_DELAY_(millis * 1000);
321# elif defined(_SPT_MODEL_)
322# include <spthread.h>
323# include <spt_extensions.h>
324 usleep(millis * 1000);
325# else
326 usleep(millis * 1000);
327# endif
328# else
329 usleep(millis * 1000);
330# endif
331}
332#elif defined(_WIN32)
333# include <windows.h>
334static ossl_inline void ossl_sleep(unsigned long millis)
335{
336 Sleep(millis);
337}
338#else
339/* Fallback to a busy wait */
340static ossl_inline void ossl_sleep(unsigned long millis)
341{
342 struct timeval start, now;
343 unsigned long elapsedms;
344
345 gettimeofday(&start, NULL);
346 do {
347 gettimeofday(&now, NULL);
348 elapsedms = (((now.tv_sec - start.tv_sec) * 1000000)
349 + now.tv_usec - start.tv_usec) / 1000;
350 } while (elapsedms < millis);
351}
352#endif /* defined OPENSSL_SYS_UNIX */
353
08073700
RB
354/* ----------------------------- HP NonStop -------------------------------- */
355/* Required to support platform variant without getpid() and pid_t. */
650c6687 356# if defined(__TANDEM) && defined(_GUARDIAN_TARGET)
08073700
RB
357# include <strings.h>
358# include <netdb.h>
359# define getservbyname(name,proto) getservbyname((char*)name,proto)
360# define gethostbyname(name) gethostbyname((char*)name)
361# define ioctlsocket(a,b,c) ioctl(a,b,c)
362# ifdef NO_GETPID
363inline int nssgetpid();
364# ifndef NSSGETPID_MACRO
365# define NSSGETPID_MACRO
366# include <cextdecs.h(PROCESSHANDLE_GETMINE_)>
367# include <cextdecs.h(PROCESSHANDLE_DECOMPOSE_)>
368 inline int nssgetpid()
369 {
370 short phandle[10]={0};
371 union pseudo_pid {
372 struct {
373 short cpu;
374 short pin;
375 } cpu_pin ;
376 int ppid;
377 } ppid = { 0 };
378 PROCESSHANDLE_GETMINE_(phandle);
379 PROCESSHANDLE_DECOMPOSE_(phandle, &ppid.cpu_pin.cpu, &ppid.cpu_pin.pin);
380 return ppid.ppid;
381 }
382# define getpid(a) nssgetpid(a)
383# endif /* NSSGETPID_MACRO */
384# endif /* NO_GETPID */
385/*# define setsockopt(a,b,c,d,f) setsockopt(a,b,c,(char*)d,f)*/
386/*# define getsockopt(a,b,c,d,f) getsockopt(a,b,c,(char*)d,f)*/
387/*# define connect(a,b,c) connect(a,(struct sockaddr *)b,c)*/
388/*# define bind(a,b,c) bind(a,(struct sockaddr *)b,c)*/
389/*# define sendto(a,b,c,d,e,f) sendto(a,(char*)b,c,d,(struct sockaddr *)e,f)*/
390# if defined(OPENSSL_THREADS) && !defined(_PUT_MODEL_)
391 /*
392 * HPNS SPT threads
393 */
394# define SPT_THREAD_SIGNAL 1
395# define SPT_THREAD_AWARE 1
396# include <spthread.h>
397# undef close
398# define close spt_close
399/*
400# define get_last_socket_error() errno
401# define clear_socket_error() errno=0
402# define ioctlsocket(a,b,c) ioctl(a,b,c)
403# define closesocket(s) close(s)
404# define readsocket(s,b,n) read((s),(char*)(b),(n))
405# define writesocket(s,b,n) write((s),(char*)(b),(n)
406*/
407# define accept(a,b,c) accept(a,(struct sockaddr *)b,c)
408# define recvfrom(a,b,c,d,e,f) recvfrom(a,b,(socklen_t)c,d,e,f)
409# endif
410# endif
411
8529b156
DMSP
412# ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
413# define CRYPTO_memcmp memcmp
414# endif
43c56417 415
6943335e
RS
416# ifndef OPENSSL_NO_SECURE_MEMORY
417 /* unistd.h defines _POSIX_VERSION */
f31ac320
JG
418# if (defined(OPENSSL_SYS_UNIX) \
419 && ( (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) \
420 || defined(__sun) || defined(__hpux) || defined(__sgi) \
421 || defined(__osf__) )) \
422 || defined(_WIN32)
6943335e
RS
423 /* secure memory is implemented */
424# else
425# define OPENSSL_NO_SECURE_MEMORY
426# endif
8529b156 427# endif
6943335e 428
d02b48c6 429#endif