]> git.ipfire.org Git - thirdparty/openssl.git/blame - e_os.h
Make minimum size for secure memory a size_t.
[thirdparty/openssl.git] / e_os.h
CommitLineData
b6cff313 1/*
0d664759 2 * Copyright 1995-2018 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
RL
68# define HAS_LFN_SUPPORT(name) (pathconf((name), _PC_NAME_MAX) > 12)
69# undef DEVRANDOM_EGD /* Neither MS-DOS nor FreeDOS provide 'egd' sockets. */
0f113f3e
MC
70# undef DEVRANDOM
71# define DEVRANDOM "/dev/urandom\x24"
72# endif /* __DJGPP__ */
f642ebc1 73
0056ef5d 74# ifndef S_IFDIR
0f113f3e 75# define S_IFDIR _S_IFDIR
0056ef5d 76# endif
6e064240 77
0056ef5d 78# ifndef S_IFMT
0f113f3e 79# define S_IFMT _S_IFMT
0056ef5d 80# endif
6e064240 81
f642ebc1 82# if !defined(WINNT) && !defined(__DJGPP__)
0f113f3e 83# define NO_SYSLOG
0056ef5d 84# endif
d02b48c6 85
d02b48c6 86# ifdef WINDOWS
0f113f3e 87# if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
e476f942 88 /*
0f113f3e
MC
89 * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
90 * Most notably we ought to check for availability of each specific
0ee05b73
AP
91 * routine that was introduced after denoted _WIN32_WINNT with
92 * GetProcAddress(). Normally newer functions are masked with higher
93 * _WIN32_WINNT in SDK headers. So that if you wish to use them in
94 * some module, you'd need to override _WIN32_WINNT definition in
95 * the target module in order to "reach for" prototypes, but replace
96 * calls to new functions with indirect calls. Alternatively it
97 * might be possible to achieve the goal by /DELAYLOAD-ing .DLLs
98 * and check for current OS version instead.
0f113f3e 99 */
0ee05b73 100# define _WIN32_WINNT 0x0501
0f113f3e 101# endif
2469e76b 102# if defined(_WIN32_WINNT) || defined(_WIN32_WCE)
61aa2134
AP
103 /*
104 * Just like defining _WIN32_WINNT including winsock2.h implies
8711efb4 105 * certain "discipline" for maintaining [broad] binary compatibility.
61aa2134
AP
106 * As long as structures are invariant among Winsock versions,
107 * it's sufficient to check for specific Winsock2 API availability
108 * at run-time [DSO_global_lookup is recommended]...
109 */
0f113f3e
MC
110# include <winsock2.h>
111# include <ws2tcpip.h>
8711efb4 112 /* yes, they have to be #included prior to <windows.h> */
0f113f3e
MC
113# endif
114# include <windows.h>
115# include <stdio.h>
116# include <stddef.h>
117# include <errno.h>
118# if defined(_WIN32_WCE) && !defined(EACCES)
119# define EACCES 13
120# endif
121# include <string.h>
122# ifdef _WIN64
123# define strlen(s) _strlen31(s)
1875e6db 124/* cut strings to 2GB */
55c7a4cf 125static __inline unsigned int _strlen31(const char *str)
0f113f3e
MC
126{
127 unsigned int len = 0;
128 while (*str && len < 0x80000000U)
129 str++, len++;
130 return len & 0x7FFFFFFF;
131}
132# endif
133# include <malloc.h>
0f113f3e
MC
134# if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
135# if _MSC_VER>=1300 && _MSC_VER<1600
136# undef stdin
137# undef stdout
138# undef stderr
139FILE *__iob_func();
140# define stdin (&__iob_func()[0])
141# define stdout (&__iob_func()[1])
142# define stderr (&__iob_func()[2])
143# elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
144# undef stdin
145# undef stdout
146# undef stderr
147 /*
148 * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
149 * or in other words with /MD. Declaring implicit import, i.e. with
150 * _imp_ prefix, works correctly with all compiler options, but
151 * without /MD results in LINK warning LNK4049: 'locally defined
152 * symbol "__iob" imported'.
e527201f 153 */
0f113f3e
MC
154extern FILE *_imp___iob;
155# define stdin (&_imp___iob[0])
156# define stdout (&_imp___iob[1])
157# define stderr (&_imp___iob[2])
e527201f 158# endif
0f113f3e 159# endif
d02b48c6 160# endif
0f113f3e
MC
161# include <io.h>
162# include <fcntl.h>
d02b48c6 163
0bf23d9b 164# ifdef OPENSSL_SYS_WINCE
0f113f3e 165# define OPENSSL_NO_POSIX_IO
0bf23d9b
RL
166# endif
167
be7b4458 168# define EXIT(n) exit(n)
d02b48c6 169# define LIST_SEPARATOR_CHAR ';'
0056ef5d 170# ifndef W_OK
0f113f3e 171# define W_OK 2
0056ef5d
RL
172# endif
173# ifndef R_OK
0f113f3e 174# define R_OK 4
0056ef5d 175# endif
0bf23d9b 176# ifdef OPENSSL_SYS_WINCE
0f113f3e 177# define DEFAULT_HOME ""
0bf23d9b 178# else
0f113f3e 179# define DEFAULT_HOME "C:"
0bf23d9b 180# endif
d02b48c6 181
86d21d0b 182/* Avoid Visual Studio 13 GetVersion deprecated problems */
0f113f3e
MC
183# if defined(_MSC_VER) && _MSC_VER>=1800
184# define check_winnt() (1)
185# define check_win_minplat(x) (1)
186# else
187# define check_winnt() (GetVersion() < 0x80000000)
188# define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
189# endif
f511b25a 190
0f113f3e 191# else /* The non-microsoft world */
d02b48c6 192
4cff10dc 193# if defined(OPENSSL_SYS_VXWORKS)
61783db5 194# include <time.h>
4cff10dc
P
195# else
196# include <sys/time.h>
197# endif
198
cf1b7d96 199# ifdef OPENSSL_SYS_VMS
0f113f3e
MC
200# define VMS 1
201 /*
202 * some programs don't include stdlib, so exit() and others give implicit
203 * function warnings
204 */
205# include <stdlib.h>
206# if defined(__DECC)
207# include <unistd.h>
208# else
209# include <unixlib.h>
210# endif
0f113f3e 211# define LIST_SEPARATOR_CHAR ','
0c61e299 212 /* We don't have any well-defined random devices on VMS, yet... */
0f113f3e 213# undef DEVRANDOM
1d97c843
TH
214 /*-
215 We need to do this since VMS has the following coding on status codes:
511e596b
RL
216
217 Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
218 The important thing to know is that odd numbers are considered
0f113f3e 219 good, while even ones are considered errors.
511e596b
RL
220 Bits 3-15: actual status number
221 Bits 16-27: facility number. 0 is considered "unknown"
222 Bits 28-31: control bits. If bit 28 is set, the shell won't try to
223 output the message (which, for random codes, just looks ugly)
224
225 So, what we do here is to change 0 to 1 to get the default success status,
226 and everything else is shifted up to fit into the status number field, and
f625d383 227 the status is tagged as an error, which is what is wanted here.
c3944a99
RL
228
229 Finally, we add the VMS C facility code 0x35a000, because there are some
230 programs, such as Perl, that will reinterpret the code back to something
46d08509 231 POSIX. 'man perlvms' explains it further.
f625d383 232
c3944a99
RL
233 NOTE: the perlvms manual wants to turn all codes 2 to 255 into success
234 codes (status type = 1). I couldn't disagree more. Fortunately, the
235 status type doesn't seem to bother Perl.
511e596b
RL
236 -- Richard Levitte
237 */
f625d383
RL
238# define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
239
b8f304f7
RL
240# define DEFAULT_HOME "SYS$LOGIN:"
241
d02b48c6 242# else
06018c46 243 /* !defined VMS */
6b10d29c 244# include <unistd.h>
b379fe6c 245# include <sys/types.h>
0f113f3e
MC
246# ifdef OPENSSL_SYS_WIN32_CYGWIN
247# include <io.h>
248# include <fcntl.h>
249# endif
250
0f113f3e 251# define LIST_SEPARATOR_CHAR ':'
0f113f3e 252# define EXIT(n) exit(n)
d02b48c6 253# endif
d02b48c6 254
0f113f3e 255# endif
7d7d2cbc 256
d02b48c6
RE
257/***********************************************/
258
0f113f3e 259# if defined(OPENSSL_SYS_WINDOWS)
e6fa67fa
RL
260# define strcasecmp _stricmp
261# define strncasecmp _strnicmp
dc6b5c7b
RL
262# if (_MSC_VER >= 1310)
263# define open _open
264# define fdopen _fdopen
265# define close _close
8d95ca36
M
266# ifndef strdup
267# define strdup _strdup
268# endif
dc6b5c7b 269# define unlink _unlink
2e38091c 270# define fileno _fileno
dc6b5c7b 271# endif
7233bea2
RL
272# else
273# include <strings.h>
0f113f3e 274# endif
3bfd99bf 275
6a89a25c 276/* vxworks */
0f113f3e
MC
277# if defined(OPENSSL_SYS_VXWORKS)
278# include <ioLib.h>
279# include <tickLib.h>
280# include <sysLib.h>
0f113f3e
MC
281# include <vxWorks.h>
282# include <sockLib.h>
283# include <taskLib.h>
6a89a25c 284
0e97f1e1
RS
285# define TTY_STRUCT int
286# define sleep(a) taskDelay((a) * sysClkRateGet())
6a89a25c 287
0f113f3e
MC
288/*
289 * NOTE: these are implemented by helpers in database app! if the database is
a303e9a6 290 * not linked, we need to implement them elsewhere
0f113f3e 291 */
6a89a25c
RL
292struct hostent *gethostbyname(const char *name);
293struct hostent *gethostbyaddr(const char *addr, int length, int type);
294struct servent *getservbyname(const char *name, const char *proto);
295
0f113f3e 296# endif
6a89a25c
RL
297/* end vxworks */
298
8529b156
DMSP
299# ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
300# define CRYPTO_memcmp memcmp
301# endif
43c56417 302
8529b156
DMSP
303/* unistd.h defines _POSIX_VERSION */
304# if !defined(OPENSSL_NO_SECURE_MEMORY) && defined(OPENSSL_SYS_UNIX) \
305 && ( (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) \
306 || defined(__sun) || defined(__hpux) || defined(__sgi) \
307 || defined(__osf__) )
308# define OPENSSL_SECURE_MEMORY /* secure memory is implemented */
309# endif
d02b48c6 310#endif