]> git.ipfire.org Git - thirdparty/openssl.git/blame - e_os.h
Remove the X_OK define, it is unused.
[thirdparty/openssl.git] / e_os.h
CommitLineData
b6cff313 1/*
b99fe5f4 2 * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
0f113f3e 3 *
b6cff313
RS
4 * Licensed under the OpenSSL license (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
d02b48c6
RE
8 */
9
10#ifndef HEADER_E_OS_H
0f113f3e 11# define HEADER_E_OS_H
d02b48c6 12
0f113f3e 13# include <openssl/opensslconf.h>
06018c46 14
0f113f3e 15# include <openssl/e_os2.h>
98d132cf 16# include <openssl/crypto.h>
176db6dc 17# include "internal/nelem.h"
b99fe5f4 18
0f113f3e
MC
19/*
20 * <openssl/e_os2.h> contains what we can justify to make visible to the
21 * outside; this file e_os.h is not part of the exported interface.
22 */
fa470a84 23
d02b48c6
RE
24#ifdef __cplusplus
25extern "C" {
26#endif
27
43708c15 28/*
5f584013
AP
29 * Format specifier for printing size_t. Original conundrum was to
30 * get it working with -Wformat [-Werror], which can be considered
a303e9a6 31 * overzealous, especially in multi-platform context, but it's
5f584013 32 * conscious choice...
43708c15 33 */
5f584013
AP
34# if defined(_WIN64)
35# define OSSLzu "I64u" /* One would expect _WIN{64|32} cases after
36 * __STDC_VERSION__, but there are corner
37 * cases of MinGW compilers that link with
38 * non-compliant MSVCRT.DLL... */
39# elif defined(_WIN32)
40# define OSSLzu "u"
41# elif defined(__VMS)
42# define OSSLzu "u" /* VMS suffers from similar problem as MinGW,
43 * i.e. C RTL falling behind compiler. Recall
44 * that sizeof(size_t)==4 even in LP64 case. */
45# elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
43708c15 46# define OSSLzu "zu"
5f584013
AP
47# elif defined(__SIZEOF_SIZE_T__) && __SIZEOF_SIZE_T__==4
48# define OSSLzu "u" /* 'lu' should have worked, but when generating
49 * 32-bit code gcc still complains :-( */
43708c15 50# else
5f584013
AP
51# define OSSLzu "lu" /* To see that is works recall what does L
52 * stand for in ILP32 and LP64 */
43708c15
RS
53# endif
54
040d43b3 55# define OPENSSL_CONF "openssl.cnf"
a773b52a 56
0f113f3e
MC
57# ifndef DEVRANDOM
58/*
f367ac2b 59 * set this to a comma-separated list of 'random' device files to try out. By
0f113f3e
MC
60 * default, we will try to read at least one of these files
61 */
62# define DEVRANDOM "/dev/urandom","/dev/random","/dev/srandom"
63# endif
0423f812 64# if !defined(OPENSSL_NO_EGD) && !defined(DEVRANDOM_EGD)
0f113f3e
MC
65/*
66 * set this to a comma-separated list of 'egd' sockets to try out. These
67 * sockets will be tried in the order listed in case accessing the device
f367ac2b 68 * files listed in DEVRANDOM did not return enough randomness.
0f113f3e
MC
69 */
70# define DEVRANDOM_EGD "/var/run/egd-pool","/dev/egd-pool","/etc/egd-pool","/etc/entropy"
71# endif
d02b48c6 72
cff55b90 73# if defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)
3e83e686
RL
74# define NO_CHMOD
75# define NO_SYSLOG
0f113f3e
MC
76# endif
77
0e97f1e1
RS
78# define get_last_sys_error() errno
79# define clear_sys_error() errno=0
80
d02b48c6
RE
81/********************************************************************
82 The Microsoft section
83 ********************************************************************/
0f113f3e 84# if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
b8384651 85# define WIN32
0f113f3e
MC
86# endif
87# if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
cf1b7d96 88# define WINDOWS
0f113f3e
MC
89# endif
90# if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
cf1b7d96 91# define MSDOS
0f113f3e 92# endif
d02b48c6 93
0f113f3e 94# ifdef WIN32
0e97f1e1
RS
95# undef get_last_sys_error
96# undef clear_sys_error
0f113f3e
MC
97# define get_last_sys_error() GetLastError()
98# define clear_sys_error() SetLastError(0)
99# if !defined(WINNT)
100# define WIN_CONSOLE_BUG
101# endif
102# else
0f113f3e 103# endif
58964a49 104
0f113f3e 105# if (defined(WINDOWS) || defined(MSDOS))
d02b48c6 106
f642ebc1 107# ifdef __DJGPP__
0f113f3e
MC
108# include <unistd.h>
109# include <sys/stat.h>
0f113f3e
MC
110# define _setmode setmode
111# define _O_TEXT O_TEXT
112# define _O_BINARY O_BINARY
2c25ebd1
RL
113# define HAS_LFN_SUPPORT(name) (pathconf((name), _PC_NAME_MAX) > 12)
114# undef DEVRANDOM_EGD /* Neither MS-DOS nor FreeDOS provide 'egd' sockets. */
0f113f3e
MC
115# undef DEVRANDOM
116# define DEVRANDOM "/dev/urandom\x24"
117# endif /* __DJGPP__ */
f642ebc1 118
0056ef5d 119# ifndef S_IFDIR
0f113f3e 120# define S_IFDIR _S_IFDIR
0056ef5d 121# endif
6e064240 122
0056ef5d 123# ifndef S_IFMT
0f113f3e 124# define S_IFMT _S_IFMT
0056ef5d 125# endif
6e064240 126
f642ebc1 127# if !defined(WINNT) && !defined(__DJGPP__)
0f113f3e 128# define NO_SYSLOG
0056ef5d 129# endif
d02b48c6 130
d02b48c6 131# ifdef WINDOWS
0f113f3e 132# if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
e476f942 133 /*
0f113f3e
MC
134 * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
135 * Most notably we ought to check for availability of each specific
0ee05b73
AP
136 * routine that was introduced after denoted _WIN32_WINNT with
137 * GetProcAddress(). Normally newer functions are masked with higher
138 * _WIN32_WINNT in SDK headers. So that if you wish to use them in
139 * some module, you'd need to override _WIN32_WINNT definition in
140 * the target module in order to "reach for" prototypes, but replace
141 * calls to new functions with indirect calls. Alternatively it
142 * might be possible to achieve the goal by /DELAYLOAD-ing .DLLs
143 * and check for current OS version instead.
0f113f3e 144 */
0ee05b73 145# define _WIN32_WINNT 0x0501
0f113f3e 146# endif
2469e76b 147# if defined(_WIN32_WINNT) || defined(_WIN32_WCE)
61aa2134
AP
148 /*
149 * Just like defining _WIN32_WINNT including winsock2.h implies
8711efb4 150 * certain "discipline" for maintaining [broad] binary compatibility.
61aa2134
AP
151 * As long as structures are invariant among Winsock versions,
152 * it's sufficient to check for specific Winsock2 API availability
153 * at run-time [DSO_global_lookup is recommended]...
154 */
0f113f3e
MC
155# include <winsock2.h>
156# include <ws2tcpip.h>
8711efb4 157 /* yes, they have to be #included prior to <windows.h> */
0f113f3e
MC
158# endif
159# include <windows.h>
160# include <stdio.h>
161# include <stddef.h>
162# include <errno.h>
163# if defined(_WIN32_WCE) && !defined(EACCES)
164# define EACCES 13
165# endif
166# include <string.h>
167# ifdef _WIN64
168# define strlen(s) _strlen31(s)
1875e6db 169/* cut strings to 2GB */
55c7a4cf 170static __inline unsigned int _strlen31(const char *str)
0f113f3e
MC
171{
172 unsigned int len = 0;
173 while (*str && len < 0x80000000U)
174 str++, len++;
175 return len & 0x7FFFFFFF;
176}
177# endif
178# include <malloc.h>
0f113f3e
MC
179# if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
180# if _MSC_VER>=1300 && _MSC_VER<1600
181# undef stdin
182# undef stdout
183# undef stderr
184FILE *__iob_func();
185# define stdin (&__iob_func()[0])
186# define stdout (&__iob_func()[1])
187# define stderr (&__iob_func()[2])
188# elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
189# undef stdin
190# undef stdout
191# undef stderr
192 /*
193 * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
194 * or in other words with /MD. Declaring implicit import, i.e. with
195 * _imp_ prefix, works correctly with all compiler options, but
196 * without /MD results in LINK warning LNK4049: 'locally defined
197 * symbol "__iob" imported'.
e527201f 198 */
0f113f3e
MC
199extern FILE *_imp___iob;
200# define stdin (&_imp___iob[0])
201# define stdout (&_imp___iob[1])
202# define stderr (&_imp___iob[2])
e527201f 203# endif
0f113f3e 204# endif
d02b48c6 205# endif
0f113f3e
MC
206# include <io.h>
207# include <fcntl.h>
d02b48c6 208
0bf23d9b 209# ifdef OPENSSL_SYS_WINCE
0f113f3e 210# define OPENSSL_NO_POSIX_IO
0bf23d9b
RL
211# endif
212
be7b4458 213# define EXIT(n) exit(n)
d02b48c6 214# define LIST_SEPARATOR_CHAR ';'
0056ef5d 215# ifndef W_OK
0f113f3e 216# define W_OK 2
0056ef5d
RL
217# endif
218# ifndef R_OK
0f113f3e 219# define R_OK 4
0056ef5d 220# endif
0bf23d9b 221# ifdef OPENSSL_SYS_WINCE
0f113f3e 222# define DEFAULT_HOME ""
0bf23d9b 223# else
0f113f3e 224# define DEFAULT_HOME "C:"
0bf23d9b 225# endif
d02b48c6 226
86d21d0b 227/* Avoid Visual Studio 13 GetVersion deprecated problems */
0f113f3e
MC
228# if defined(_MSC_VER) && _MSC_VER>=1800
229# define check_winnt() (1)
230# define check_win_minplat(x) (1)
231# else
232# define check_winnt() (GetVersion() < 0x80000000)
233# define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
234# endif
f511b25a 235
0f113f3e 236# else /* The non-microsoft world */
d02b48c6 237
cf1b7d96 238# ifdef OPENSSL_SYS_VMS
0f113f3e
MC
239# define VMS 1
240 /*
241 * some programs don't include stdlib, so exit() and others give implicit
242 * function warnings
243 */
244# include <stdlib.h>
245# if defined(__DECC)
246# include <unistd.h>
247# else
248# include <unixlib.h>
249# endif
0f113f3e 250# define LIST_SEPARATOR_CHAR ','
0c61e299 251 /* We don't have any well-defined random devices on VMS, yet... */
0f113f3e 252# undef DEVRANDOM
1d97c843
TH
253 /*-
254 We need to do this since VMS has the following coding on status codes:
511e596b
RL
255
256 Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
257 The important thing to know is that odd numbers are considered
0f113f3e 258 good, while even ones are considered errors.
511e596b
RL
259 Bits 3-15: actual status number
260 Bits 16-27: facility number. 0 is considered "unknown"
261 Bits 28-31: control bits. If bit 28 is set, the shell won't try to
262 output the message (which, for random codes, just looks ugly)
263
264 So, what we do here is to change 0 to 1 to get the default success status,
265 and everything else is shifted up to fit into the status number field, and
f625d383 266 the status is tagged as an error, which is what is wanted here.
c3944a99
RL
267
268 Finally, we add the VMS C facility code 0x35a000, because there are some
269 programs, such as Perl, that will reinterpret the code back to something
270 POSIXly. 'man perlvms' explains it further.
f625d383 271
c3944a99
RL
272 NOTE: the perlvms manual wants to turn all codes 2 to 255 into success
273 codes (status type = 1). I couldn't disagree more. Fortunately, the
274 status type doesn't seem to bother Perl.
511e596b
RL
275 -- Richard Levitte
276 */
f625d383
RL
277# define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
278
b8f304f7
RL
279# define DEFAULT_HOME "SYS$LOGIN:"
280
d02b48c6 281# else
06018c46 282 /* !defined VMS */
0f113f3e
MC
283# ifdef OPENSSL_UNISTD
284# include OPENSSL_UNISTD
285# else
286# include <unistd.h>
287# endif
b379fe6c 288# include <sys/types.h>
0f113f3e
MC
289# ifdef OPENSSL_SYS_WIN32_CYGWIN
290# include <io.h>
291# include <fcntl.h>
292# endif
293
0f113f3e 294# define LIST_SEPARATOR_CHAR ':'
0f113f3e 295# define EXIT(n) exit(n)
d02b48c6 296# endif
d02b48c6 297
0f113f3e 298# endif
7d7d2cbc 299
d02b48c6
RE
300/***********************************************/
301
0f113f3e 302# if defined(OPENSSL_SYS_WINDOWS)
e6fa67fa
RL
303# define strcasecmp _stricmp
304# define strncasecmp _strnicmp
dc6b5c7b
RL
305# if (_MSC_VER >= 1310)
306# define open _open
307# define fdopen _fdopen
308# define close _close
8d95ca36
M
309# ifndef strdup
310# define strdup _strdup
311# endif
dc6b5c7b 312# define unlink _unlink
2e38091c 313# define fileno _fileno
dc6b5c7b 314# endif
7233bea2
RL
315# else
316# include <strings.h>
0f113f3e 317# endif
3bfd99bf 318
6a89a25c 319/* vxworks */
0f113f3e
MC
320# if defined(OPENSSL_SYS_VXWORKS)
321# include <ioLib.h>
322# include <tickLib.h>
323# include <sysLib.h>
0f113f3e
MC
324# include <vxWorks.h>
325# include <sockLib.h>
326# include <taskLib.h>
6a89a25c 327
0e97f1e1
RS
328# define TTY_STRUCT int
329# define sleep(a) taskDelay((a) * sysClkRateGet())
6a89a25c 330
0f113f3e
MC
331/*
332 * NOTE: these are implemented by helpers in database app! if the database is
a303e9a6 333 * not linked, we need to implement them elsewhere
0f113f3e 334 */
6a89a25c
RL
335struct hostent *gethostbyname(const char *name);
336struct hostent *gethostbyaddr(const char *addr, int length, int type);
337struct servent *getservbyname(const char *name, const char *proto);
338
0f113f3e 339# endif
6a89a25c
RL
340/* end vxworks */
341
43c56417
KR
342#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
343# define CRYPTO_memcmp memcmp
344#endif
345
d02b48c6
RE
346#ifdef __cplusplus
347}
348#endif
349
350#endif