]> git.ipfire.org Git - thirdparty/openssl.git/blame - e_os.h
Remove I_CAN_LIVE_WITH_LNK4049
[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])
e527201f 150# endif
0f113f3e 151# endif
d02b48c6 152# endif
0f113f3e
MC
153# include <io.h>
154# include <fcntl.h>
d02b48c6 155
0bf23d9b 156# ifdef OPENSSL_SYS_WINCE
0f113f3e 157# define OPENSSL_NO_POSIX_IO
0bf23d9b
RL
158# endif
159
be7b4458 160# define EXIT(n) exit(n)
d02b48c6 161# define LIST_SEPARATOR_CHAR ';'
0056ef5d 162# ifndef W_OK
0f113f3e 163# define W_OK 2
0056ef5d
RL
164# endif
165# ifndef R_OK
0f113f3e 166# define R_OK 4
0056ef5d 167# endif
0bf23d9b 168# ifdef OPENSSL_SYS_WINCE
0f113f3e 169# define DEFAULT_HOME ""
0bf23d9b 170# else
0f113f3e 171# define DEFAULT_HOME "C:"
0bf23d9b 172# endif
d02b48c6 173
86d21d0b 174/* Avoid Visual Studio 13 GetVersion deprecated problems */
0f113f3e
MC
175# if defined(_MSC_VER) && _MSC_VER>=1800
176# define check_winnt() (1)
177# define check_win_minplat(x) (1)
178# else
179# define check_winnt() (GetVersion() < 0x80000000)
180# define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
181# endif
f511b25a 182
0f113f3e 183# else /* The non-microsoft world */
d02b48c6 184
4cff10dc 185# if defined(OPENSSL_SYS_VXWORKS)
61783db5 186# include <time.h>
4cff10dc
P
187# else
188# include <sys/time.h>
189# endif
190
cf1b7d96 191# ifdef OPENSSL_SYS_VMS
0f113f3e
MC
192# define VMS 1
193 /*
194 * some programs don't include stdlib, so exit() and others give implicit
195 * function warnings
196 */
197# include <stdlib.h>
198# if defined(__DECC)
199# include <unistd.h>
200# else
201# include <unixlib.h>
202# endif
0f113f3e 203# define LIST_SEPARATOR_CHAR ','
0c61e299 204 /* We don't have any well-defined random devices on VMS, yet... */
0f113f3e 205# undef DEVRANDOM
1d97c843
TH
206 /*-
207 We need to do this since VMS has the following coding on status codes:
511e596b
RL
208
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
0f113f3e 211 good, while even ones are considered errors.
511e596b
RL
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)
216
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
f625d383 219 the status is tagged as an error, which is what is wanted here.
c3944a99
RL
220
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
46d08509 223 POSIX. 'man perlvms' explains it further.
f625d383 224
c3944a99
RL
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.
511e596b
RL
228 -- Richard Levitte
229 */
f625d383
RL
230# define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
231
b8f304f7
RL
232# define DEFAULT_HOME "SYS$LOGIN:"
233
d02b48c6 234# else
06018c46 235 /* !defined VMS */
6b10d29c 236# include <unistd.h>
b379fe6c 237# include <sys/types.h>
0f113f3e
MC
238# ifdef OPENSSL_SYS_WIN32_CYGWIN
239# include <io.h>
240# include <fcntl.h>
241# endif
242
0f113f3e 243# define LIST_SEPARATOR_CHAR ':'
0f113f3e 244# define EXIT(n) exit(n)
d02b48c6 245# endif
d02b48c6 246
0f113f3e 247# endif
7d7d2cbc 248
d02b48c6
RE
249/***********************************************/
250
0f113f3e 251# if defined(OPENSSL_SYS_WINDOWS)
e6fa67fa
RL
252# define strcasecmp _stricmp
253# define strncasecmp _strnicmp
c35b8535 254# if (_MSC_VER >= 1310) && !defined(_WIN32_WCE)
dc6b5c7b
RL
255# define open _open
256# define fdopen _fdopen
257# define close _close
8d95ca36
M
258# ifndef strdup
259# define strdup _strdup
260# endif
dc6b5c7b 261# define unlink _unlink
2e38091c 262# define fileno _fileno
dc6b5c7b 263# endif
7233bea2
RL
264# else
265# include <strings.h>
0f113f3e 266# endif
3bfd99bf 267
6a89a25c 268/* vxworks */
0f113f3e
MC
269# if defined(OPENSSL_SYS_VXWORKS)
270# include <ioLib.h>
271# include <tickLib.h>
272# include <sysLib.h>
0f113f3e
MC
273# include <vxWorks.h>
274# include <sockLib.h>
275# include <taskLib.h>
6a89a25c 276
0e97f1e1
RS
277# define TTY_STRUCT int
278# define sleep(a) taskDelay((a) * sysClkRateGet())
6a89a25c 279
0f113f3e
MC
280/*
281 * NOTE: these are implemented by helpers in database app! if the database is
a303e9a6 282 * not linked, we need to implement them elsewhere
0f113f3e 283 */
6a89a25c
RL
284struct hostent *gethostbyname(const char *name);
285struct hostent *gethostbyaddr(const char *addr, int length, int type);
286struct servent *getservbyname(const char *name, const char *proto);
287
0f113f3e 288# endif
6a89a25c
RL
289/* end vxworks */
290
9be5f9a8
DDO
291/* system-specific variants defining ossl_sleep() */
292#ifdef OPENSSL_SYS_UNIX
293# include <unistd.h>
294static ossl_inline void ossl_sleep(unsigned long millis)
295{
296# ifdef OPENSSL_SYS_VXWORKS
297 struct timespec ts;
298 ts.tv_sec = (long int) (millis / 1000);
299 ts.tv_nsec = (long int) (millis % 1000) * 1000000ul;
300 nanosleep(&ts, NULL);
301# elif defined(__TANDEM)
302# if !defined(_REENTRANT)
303# include <cextdecs.h(PROCESS_DELAY_)>
304 /* HPNS does not support usleep for non threaded apps */
305 PROCESS_DELAY_(millis * 1000);
306# elif defined(_SPT_MODEL_)
307# include <spthread.h>
308# include <spt_extensions.h>
309 usleep(millis * 1000);
310# else
311 usleep(millis * 1000);
312# endif
313# else
314 usleep(millis * 1000);
315# endif
316}
317#elif defined(_WIN32)
318# include <windows.h>
319static ossl_inline void ossl_sleep(unsigned long millis)
320{
321 Sleep(millis);
322}
323#else
324/* Fallback to a busy wait */
325static ossl_inline void ossl_sleep(unsigned long millis)
326{
327 struct timeval start, now;
328 unsigned long elapsedms;
329
330 gettimeofday(&start, NULL);
331 do {
332 gettimeofday(&now, NULL);
333 elapsedms = (((now.tv_sec - start.tv_sec) * 1000000)
334 + now.tv_usec - start.tv_usec) / 1000;
335 } while (elapsedms < millis);
336}
337#endif /* defined OPENSSL_SYS_UNIX */
338
08073700
RB
339/* ----------------------------- HP NonStop -------------------------------- */
340/* Required to support platform variant without getpid() and pid_t. */
650c6687 341# if defined(__TANDEM) && defined(_GUARDIAN_TARGET)
08073700
RB
342# include <strings.h>
343# include <netdb.h>
344# define getservbyname(name,proto) getservbyname((char*)name,proto)
345# define gethostbyname(name) gethostbyname((char*)name)
346# define ioctlsocket(a,b,c) ioctl(a,b,c)
347# ifdef NO_GETPID
348inline int nssgetpid();
349# ifndef NSSGETPID_MACRO
350# define NSSGETPID_MACRO
351# include <cextdecs.h(PROCESSHANDLE_GETMINE_)>
352# include <cextdecs.h(PROCESSHANDLE_DECOMPOSE_)>
353 inline int nssgetpid()
354 {
355 short phandle[10]={0};
356 union pseudo_pid {
357 struct {
358 short cpu;
359 short pin;
360 } cpu_pin ;
361 int ppid;
362 } ppid = { 0 };
363 PROCESSHANDLE_GETMINE_(phandle);
364 PROCESSHANDLE_DECOMPOSE_(phandle, &ppid.cpu_pin.cpu, &ppid.cpu_pin.pin);
365 return ppid.ppid;
366 }
367# define getpid(a) nssgetpid(a)
368# endif /* NSSGETPID_MACRO */
369# endif /* NO_GETPID */
370/*# define setsockopt(a,b,c,d,f) setsockopt(a,b,c,(char*)d,f)*/
371/*# define getsockopt(a,b,c,d,f) getsockopt(a,b,c,(char*)d,f)*/
372/*# define connect(a,b,c) connect(a,(struct sockaddr *)b,c)*/
373/*# define bind(a,b,c) bind(a,(struct sockaddr *)b,c)*/
374/*# define sendto(a,b,c,d,e,f) sendto(a,(char*)b,c,d,(struct sockaddr *)e,f)*/
375# if defined(OPENSSL_THREADS) && !defined(_PUT_MODEL_)
376 /*
377 * HPNS SPT threads
378 */
379# define SPT_THREAD_SIGNAL 1
380# define SPT_THREAD_AWARE 1
381# include <spthread.h>
382# undef close
383# define close spt_close
384/*
385# define get_last_socket_error() errno
386# define clear_socket_error() errno=0
387# define ioctlsocket(a,b,c) ioctl(a,b,c)
388# define closesocket(s) close(s)
389# define readsocket(s,b,n) read((s),(char*)(b),(n))
390# define writesocket(s,b,n) write((s),(char*)(b),(n)
391*/
392# define accept(a,b,c) accept(a,(struct sockaddr *)b,c)
393# define recvfrom(a,b,c,d,e,f) recvfrom(a,b,(socklen_t)c,d,e,f)
394# endif
395# endif
396
8529b156
DMSP
397# ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
398# define CRYPTO_memcmp memcmp
399# endif
43c56417 400
6943335e
RS
401# ifndef OPENSSL_NO_SECURE_MEMORY
402 /* unistd.h defines _POSIX_VERSION */
f31ac320
JG
403# if (defined(OPENSSL_SYS_UNIX) \
404 && ( (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) \
405 || defined(__sun) || defined(__hpux) || defined(__sgi) \
406 || defined(__osf__) )) \
407 || defined(_WIN32)
6943335e
RS
408 /* secure memory is implemented */
409# else
410# define OPENSSL_NO_SECURE_MEMORY
411# endif
8529b156 412# endif
6943335e 413
d02b48c6 414#endif