1 | /*
|
---|
2 | * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
|
---|
3 | *
|
---|
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
|
---|
8 | */
|
---|
9 |
|
---|
10 | #ifndef OSSL_E_OS_H
|
---|
11 | # define OSSL_E_OS_H
|
---|
12 |
|
---|
13 | # include <limits.h>
|
---|
14 | # include <openssl/opensslconf.h>
|
---|
15 |
|
---|
16 | # include <openssl/e_os2.h>
|
---|
17 | # include <openssl/crypto.h>
|
---|
18 | # include "internal/nelem.h"
|
---|
19 |
|
---|
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 | */
|
---|
24 |
|
---|
25 | # ifndef DEVRANDOM
|
---|
26 | /*
|
---|
27 | * set this to a comma-separated list of 'random' device files to try out. By
|
---|
28 | * default, we will try to read at least one of these files
|
---|
29 | */
|
---|
30 | # define DEVRANDOM "/dev/urandom", "/dev/random", "/dev/hwrng", "/dev/srandom"
|
---|
31 | # if defined(__linux) && !defined(__ANDROID__)
|
---|
32 | # ifndef DEVRANDOM_WAIT
|
---|
33 | # define DEVRANDOM_WAIT "/dev/random"
|
---|
34 | # endif
|
---|
35 | /*
|
---|
36 | * Linux kernels 4.8 and later changes how their random device works and there
|
---|
37 | * is no reliable way to tell that /dev/urandom has been seeded -- getentropy(2)
|
---|
38 | * should be used instead.
|
---|
39 | */
|
---|
40 | # ifndef DEVRANDOM_SAFE_KERNEL
|
---|
41 | # define DEVRANDOM_SAFE_KERNEL 4, 8
|
---|
42 | # endif
|
---|
43 | /*
|
---|
44 | * Some operating systems do not permit select(2) on their random devices,
|
---|
45 | * defining this to zero will force the use of read(2) to extract one byte
|
---|
46 | * from /dev/random.
|
---|
47 | */
|
---|
48 | # ifndef DEVRANDM_WAIT_USE_SELECT
|
---|
49 | # define DEVRANDM_WAIT_USE_SELECT 1
|
---|
50 | # endif
|
---|
51 | /*
|
---|
52 | * Define the shared memory identifier used to indicate if the operating
|
---|
53 | * system has properly seeded the DEVRANDOM source.
|
---|
54 | */
|
---|
55 | # ifndef OPENSSL_RAND_SEED_DEVRANDOM_SHM_ID
|
---|
56 | # define OPENSSL_RAND_SEED_DEVRANDOM_SHM_ID 114
|
---|
57 | # endif
|
---|
58 |
|
---|
59 | # endif
|
---|
60 | # endif
|
---|
61 | # if !defined(OPENSSL_NO_EGD) && !defined(DEVRANDOM_EGD)
|
---|
62 | /*
|
---|
63 | * set this to a comma-separated list of 'egd' sockets to try out. These
|
---|
64 | * sockets will be tried in the order listed in case accessing the device
|
---|
65 | * files listed in DEVRANDOM did not return enough randomness.
|
---|
66 | */
|
---|
67 | # define DEVRANDOM_EGD "/var/run/egd-pool", "/dev/egd-pool", "/etc/egd-pool", "/etc/entropy"
|
---|
68 | # endif
|
---|
69 |
|
---|
70 | # if defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)
|
---|
71 | # define NO_CHMOD
|
---|
72 | # define NO_SYSLOG
|
---|
73 | # endif
|
---|
74 |
|
---|
75 | # define get_last_sys_error() errno
|
---|
76 | # define clear_sys_error() errno=0
|
---|
77 | # define set_sys_error(e) errno=(e)
|
---|
78 |
|
---|
79 | /********************************************************************
|
---|
80 | The Microsoft section
|
---|
81 | ********************************************************************/
|
---|
82 | # if defined(OPENSSL_SYS_WIN32) && !defined(WIN32)
|
---|
83 | # define WIN32
|
---|
84 | # endif
|
---|
85 | # if defined(OPENSSL_SYS_WINDOWS) && !defined(WINDOWS)
|
---|
86 | # define WINDOWS
|
---|
87 | # endif
|
---|
88 | # if defined(OPENSSL_SYS_MSDOS) && !defined(MSDOS)
|
---|
89 | # define MSDOS
|
---|
90 | # endif
|
---|
91 |
|
---|
92 | # ifdef WIN32
|
---|
93 | # undef get_last_sys_error
|
---|
94 | # undef clear_sys_error
|
---|
95 | # undef set_sys_error
|
---|
96 | # define get_last_sys_error() GetLastError()
|
---|
97 | # define clear_sys_error() SetLastError(0)
|
---|
98 | # define set_sys_error(e) SetLastError(e)
|
---|
99 | # if !defined(WINNT)
|
---|
100 | # define WIN_CONSOLE_BUG
|
---|
101 | # endif
|
---|
102 | # else
|
---|
103 | # endif
|
---|
104 |
|
---|
105 | # if (defined(WINDOWS) || defined(MSDOS))
|
---|
106 |
|
---|
107 | # ifdef __DJGPP__
|
---|
108 | # include <unistd.h>
|
---|
109 | # include <sys/stat.h>
|
---|
110 | # define _setmode setmode
|
---|
111 | # define _O_TEXT O_TEXT
|
---|
112 | # define _O_BINARY O_BINARY
|
---|
113 | # define HAS_LFN_SUPPORT(name) (pathconf((name), _PC_NAME_MAX) > 12)
|
---|
114 | # undef DEVRANDOM_EGD /* Neither MS-DOS nor FreeDOS provide 'egd' sockets. */
|
---|
115 | # undef DEVRANDOM
|
---|
116 | # define DEVRANDOM "/dev/urandom\x24"
|
---|
117 | # endif /* __DJGPP__ */
|
---|
118 |
|
---|
119 | # ifndef S_IFDIR
|
---|
120 | # define S_IFDIR _S_IFDIR
|
---|
121 | # endif
|
---|
122 |
|
---|
123 | # ifndef S_IFMT
|
---|
124 | # define S_IFMT _S_IFMT
|
---|
125 | # endif
|
---|
126 |
|
---|
127 | # if !defined(WINNT) && !defined(__DJGPP__)
|
---|
128 | # define NO_SYSLOG
|
---|
129 | # endif
|
---|
130 |
|
---|
131 | # ifdef WINDOWS
|
---|
132 | # if !defined(_WIN32_WCE) && !defined(_WIN32_WINNT)
|
---|
133 | /*
|
---|
134 | * Defining _WIN32_WINNT here in e_os.h implies certain "discipline."
|
---|
135 | * Most notably we ought to check for availability of each specific
|
---|
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.
|
---|
144 | */
|
---|
145 | # define _WIN32_WINNT 0x0501
|
---|
146 | # endif
|
---|
147 | # ifndef IN_RING0 /* bird */
|
---|
148 | # if defined(_WIN32_WINNT) || defined(_WIN32_WCE)
|
---|
149 | /*
|
---|
150 | * Just like defining _WIN32_WINNT including winsock2.h implies
|
---|
151 | * certain "discipline" for maintaining [broad] binary compatibility.
|
---|
152 | * As long as structures are invariant among Winsock versions,
|
---|
153 | * it's sufficient to check for specific Winsock2 API availability
|
---|
154 | * at run-time [DSO_global_lookup is recommended]...
|
---|
155 | */
|
---|
156 | # ifdef VBOX
|
---|
157 | # include <iprt/win/winsock2.h>
|
---|
158 | # include <iprt/win/ws2tcpip.h>
|
---|
159 | # else
|
---|
160 | # include <winsock2.h>
|
---|
161 | # include <ws2tcpip.h>
|
---|
162 | # endif
|
---|
163 | /* yes, they have to be #included prior to <windows.h> */
|
---|
164 | # endif
|
---|
165 | # ifdef VBOX
|
---|
166 | # include <iprt/win/windows.h>
|
---|
167 | # else
|
---|
168 | # include <windows.h>
|
---|
169 | # endif
|
---|
170 | # endif /* bird */
|
---|
171 | # include <stdio.h>
|
---|
172 | # include <stddef.h>
|
---|
173 | # include <errno.h>
|
---|
174 | # if defined(_WIN32_WCE) && !defined(EACCES)
|
---|
175 | # define EACCES 13
|
---|
176 | # endif
|
---|
177 | # include <string.h>
|
---|
178 | # ifdef _WIN64
|
---|
179 | # define strlen(s) _strlen31(s)
|
---|
180 | /* cut strings to 2GB */
|
---|
181 | # ifndef VBOX
|
---|
182 | static __inline unsigned int _strlen31(const char *str)
|
---|
183 | # else
|
---|
184 | static __inline size_t _strlen31(const char *str)
|
---|
185 | # endif
|
---|
186 | {
|
---|
187 | unsigned int len = 0;
|
---|
188 | while (*str && len < 0x80000000U)
|
---|
189 | str++, len++;
|
---|
190 | return len & 0x7FFFFFFF;
|
---|
191 | }
|
---|
192 | # endif
|
---|
193 | # include <malloc.h>
|
---|
194 | # if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
|
---|
195 | # if _MSC_VER>=1300 && _MSC_VER<1600
|
---|
196 | # undef stdin
|
---|
197 | # undef stdout
|
---|
198 | # undef stderr
|
---|
199 | FILE * __cdecl __iob_func(); /* vbox/bird: added __cdecl */
|
---|
200 | # define stdin (&__iob_func()[0])
|
---|
201 | # define stdout (&__iob_func()[1])
|
---|
202 | # define stderr (&__iob_func()[2])
|
---|
203 | # elif _MSC_VER<1300 && defined(I_CAN_LIVE_WITH_LNK4049)
|
---|
204 | # undef stdin
|
---|
205 | # undef stdout
|
---|
206 | # undef stderr
|
---|
207 | /*
|
---|
208 | * pre-1300 has __p__iob(), but it's available only in msvcrt.lib,
|
---|
209 | * or in other words with /MD. Declaring implicit import, i.e. with
|
---|
210 | * _imp_ prefix, works correctly with all compiler options, but
|
---|
211 | * without /MD results in LINK warning LNK4049: 'locally defined
|
---|
212 | * symbol "__iob" imported'.
|
---|
213 | */
|
---|
214 | extern FILE *_imp___iob;
|
---|
215 | # define stdin (&_imp___iob[0])
|
---|
216 | # define stdout (&_imp___iob[1])
|
---|
217 | # define stderr (&_imp___iob[2])
|
---|
218 | # endif
|
---|
219 | # endif
|
---|
220 | # endif
|
---|
221 | # include <io.h>
|
---|
222 | # include <fcntl.h>
|
---|
223 |
|
---|
224 | # ifdef OPENSSL_SYS_WINCE
|
---|
225 | # define OPENSSL_NO_POSIX_IO
|
---|
226 | # endif
|
---|
227 |
|
---|
228 | # define EXIT(n) exit(n)
|
---|
229 | # define LIST_SEPARATOR_CHAR ';'
|
---|
230 | # ifndef W_OK
|
---|
231 | # define W_OK 2
|
---|
232 | # endif
|
---|
233 | # ifndef R_OK
|
---|
234 | # define R_OK 4
|
---|
235 | # endif
|
---|
236 | # ifdef OPENSSL_SYS_WINCE
|
---|
237 | # define DEFAULT_HOME ""
|
---|
238 | # else
|
---|
239 | # define DEFAULT_HOME "C:"
|
---|
240 | # endif
|
---|
241 |
|
---|
242 | /* Avoid Visual Studio 13 GetVersion deprecated problems */
|
---|
243 | # if defined(_MSC_VER) && _MSC_VER>=1800
|
---|
244 | # define check_winnt() (1)
|
---|
245 | # define check_win_minplat(x) (1)
|
---|
246 | # else
|
---|
247 | # define check_winnt() (GetVersion() < 0x80000000)
|
---|
248 | # define check_win_minplat(x) (LOBYTE(LOWORD(GetVersion())) >= (x))
|
---|
249 | # endif
|
---|
250 |
|
---|
251 | # else /* The non-microsoft world */
|
---|
252 |
|
---|
253 | # if defined(OPENSSL_SYS_VXWORKS)
|
---|
254 | # include <sys/times.h>
|
---|
255 | # else
|
---|
256 | # include <sys/time.h>
|
---|
257 | # endif
|
---|
258 |
|
---|
259 | # ifdef OPENSSL_SYS_VMS
|
---|
260 | # define VMS 1
|
---|
261 | /*
|
---|
262 | * some programs don't include stdlib, so exit() and others give implicit
|
---|
263 | * function warnings
|
---|
264 | */
|
---|
265 | # include <stdlib.h>
|
---|
266 | # if defined(__DECC)
|
---|
267 | # include <unistd.h>
|
---|
268 | # else
|
---|
269 | # include <unixlib.h>
|
---|
270 | # endif
|
---|
271 | # define LIST_SEPARATOR_CHAR ','
|
---|
272 | /* We don't have any well-defined random devices on VMS, yet... */
|
---|
273 | # undef DEVRANDOM
|
---|
274 | /*-
|
---|
275 | We need to do this since VMS has the following coding on status codes:
|
---|
276 |
|
---|
277 | Bits 0-2: status type: 0 = warning, 1 = success, 2 = error, 3 = info ...
|
---|
278 | The important thing to know is that odd numbers are considered
|
---|
279 | good, while even ones are considered errors.
|
---|
280 | Bits 3-15: actual status number
|
---|
281 | Bits 16-27: facility number. 0 is considered "unknown"
|
---|
282 | Bits 28-31: control bits. If bit 28 is set, the shell won't try to
|
---|
283 | output the message (which, for random codes, just looks ugly)
|
---|
284 |
|
---|
285 | So, what we do here is to change 0 to 1 to get the default success status,
|
---|
286 | and everything else is shifted up to fit into the status number field, and
|
---|
287 | the status is tagged as an error, which is what is wanted here.
|
---|
288 |
|
---|
289 | Finally, we add the VMS C facility code 0x35a000, because there are some
|
---|
290 | programs, such as Perl, that will reinterpret the code back to something
|
---|
291 | POSIX. 'man perlvms' explains it further.
|
---|
292 |
|
---|
293 | NOTE: the perlvms manual wants to turn all codes 2 to 255 into success
|
---|
294 | codes (status type = 1). I couldn't disagree more. Fortunately, the
|
---|
295 | status type doesn't seem to bother Perl.
|
---|
296 | -- Richard Levitte
|
---|
297 | */
|
---|
298 | # define EXIT(n) exit((n) ? (((n) << 3) | 2 | 0x10000000 | 0x35a000) : 1)
|
---|
299 |
|
---|
300 | # define DEFAULT_HOME "SYS$LOGIN:"
|
---|
301 |
|
---|
302 | # else
|
---|
303 | /* !defined VMS */
|
---|
304 | # ifdef OPENSSL_UNISTD
|
---|
305 | # include OPENSSL_UNISTD
|
---|
306 | # else
|
---|
307 | # include <unistd.h>
|
---|
308 | # endif
|
---|
309 | # include <sys/types.h>
|
---|
310 | # ifdef OPENSSL_SYS_WIN32_CYGWIN
|
---|
311 | # include <io.h>
|
---|
312 | # include <fcntl.h>
|
---|
313 | # endif
|
---|
314 |
|
---|
315 | # define LIST_SEPARATOR_CHAR ':'
|
---|
316 | # define EXIT(n) exit(n)
|
---|
317 | # endif
|
---|
318 |
|
---|
319 | # endif
|
---|
320 |
|
---|
321 | /***********************************************/
|
---|
322 |
|
---|
323 | # if defined(OPENSSL_SYS_WINDOWS)
|
---|
324 | # define strcasecmp _stricmp
|
---|
325 | # define strncasecmp _strnicmp
|
---|
326 | # if (_MSC_VER >= 1310)
|
---|
327 | # define open _open
|
---|
328 | # define fdopen _fdopen
|
---|
329 | # define close _close
|
---|
330 | # ifndef strdup
|
---|
331 | # define strdup _strdup
|
---|
332 | # endif
|
---|
333 | # define unlink _unlink
|
---|
334 | # define fileno _fileno
|
---|
335 | # endif
|
---|
336 | # else
|
---|
337 | # include <strings.h>
|
---|
338 | # endif
|
---|
339 |
|
---|
340 | /* vxworks */
|
---|
341 | # if defined(OPENSSL_SYS_VXWORKS)
|
---|
342 | # include <ioLib.h>
|
---|
343 | # include <tickLib.h>
|
---|
344 | # include <sysLib.h>
|
---|
345 | # include <vxWorks.h>
|
---|
346 | # include <sockLib.h>
|
---|
347 | # include <taskLib.h>
|
---|
348 |
|
---|
349 | # define TTY_STRUCT int
|
---|
350 | # define sleep(a) taskDelay((a) * sysClkRateGet())
|
---|
351 |
|
---|
352 | /*
|
---|
353 | * NOTE: these are implemented by helpers in database app! if the database is
|
---|
354 | * not linked, we need to implement them elsewhere
|
---|
355 | */
|
---|
356 | struct hostent *gethostbyname(const char *name);
|
---|
357 | struct hostent *gethostbyaddr(const char *addr, int length, int type);
|
---|
358 | struct servent *getservbyname(const char *name, const char *proto);
|
---|
359 |
|
---|
360 | # endif
|
---|
361 | /* end vxworks */
|
---|
362 |
|
---|
363 | # ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
|
---|
364 | # define CRYPTO_memcmp memcmp
|
---|
365 | # endif
|
---|
366 |
|
---|
367 | /* unistd.h defines _POSIX_VERSION */
|
---|
368 | # if !defined(OPENSSL_NO_SECURE_MEMORY) && defined(OPENSSL_SYS_UNIX) \
|
---|
369 | && ( (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) \
|
---|
370 | || defined(__sun) || defined(__hpux) || defined(__sgi) \
|
---|
371 | || defined(__osf__) )
|
---|
372 | # define OPENSSL_SECURE_MEMORY /* secure memory is implemented */
|
---|
373 | # endif
|
---|
374 | #endif
|
---|