Add a fallback definition for __NR_getrandom for ARM linux
[openssl.git] / crypto / rand / rand_unix.c
1 /*
2  * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 _GNU_SOURCE
11 # define _GNU_SOURCE
12 #endif
13 #include "e_os.h"
14 #include <stdio.h>
15 #include "internal/cryptlib.h"
16 #include <openssl/rand.h>
17 #include "rand_lcl.h"
18 #include "internal/rand_int.h"
19 #include <stdio.h>
20 #include "internal/dso.h"
21 #if defined(__linux)
22 # include <asm/unistd.h>
23 #endif
24 #if defined(__FreeBSD__) && !defined(OPENSSL_SYS_UEFI)
25 # include <sys/types.h>
26 # include <sys/sysctl.h>
27 # include <sys/param.h>
28 #endif
29 #if defined(__OpenBSD__) || defined(__NetBSD__)
30 # include <sys/param.h>
31 #endif
32
33 #if (defined(OPENSSL_SYS_UNIX) && !defined(OPENSSL_SYS_VXWORKS)) \
34      || defined(__DJGPP__)
35 # include <sys/types.h>
36 # include <sys/stat.h>
37 # include <fcntl.h>
38 # include <unistd.h>
39 # include <sys/time.h>
40
41 static uint64_t get_time_stamp(void);
42 static uint64_t get_timer_bits(void);
43
44 /* Macro to convert two thirty two bit values into a sixty four bit one */
45 # define TWO32TO64(a, b) ((((uint64_t)(a)) << 32) + (b))
46
47 /*
48  * Check for the existence and support of POSIX timers.  The standard
49  * says that the _POSIX_TIMERS macro will have a positive value if they
50  * are available.
51  *
52  * However, we want an additional constraint: that the timer support does
53  * not require an extra library dependency.  Early versions of glibc
54  * require -lrt to be specified on the link line to access the timers,
55  * so this needs to be checked for.
56  *
57  * It is worse because some libraries define __GLIBC__ but don't
58  * support the version testing macro (e.g. uClibc).  This means
59  * an extra check is needed.
60  *
61  * The final condition is:
62  *      "have posix timers and either not glibc or glibc without -lrt"
63  *
64  * The nested #if sequences are required to avoid using a parameterised
65  * macro that might be undefined.
66  */
67 # undef OSSL_POSIX_TIMER_OKAY
68 # if defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0
69 #  if defined(__GLIBC__)
70 #   if defined(__GLIBC_PREREQ)
71 #    if __GLIBC_PREREQ(2, 17)
72 #     define OSSL_POSIX_TIMER_OKAY
73 #    endif
74 #   endif
75 #  else
76 #   define OSSL_POSIX_TIMER_OKAY
77 #  endif
78 # endif
79 #endif /* defined(OPENSSL_SYS_UNIX) || defined(__DJGPP__) */
80
81 #if defined(OPENSSL_RAND_SEED_NONE)
82 /* none means none. this simplifies the following logic */
83 # undef OPENSSL_RAND_SEED_OS
84 # undef OPENSSL_RAND_SEED_GETRANDOM
85 # undef OPENSSL_RAND_SEED_LIBRANDOM
86 # undef OPENSSL_RAND_SEED_DEVRANDOM
87 # undef OPENSSL_RAND_SEED_RDTSC
88 # undef OPENSSL_RAND_SEED_RDCPU
89 # undef OPENSSL_RAND_SEED_EGD
90 #endif
91
92 #if defined(OPENSSL_SYS_UEFI) && !defined(OPENSSL_RAND_SEED_NONE)
93 # error "UEFI only supports seeding NONE"
94 #endif
95
96 #if !(defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32) \
97     || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_VXWORKS) \
98     || defined(OPENSSL_SYS_UEFI))
99
100 # if defined(OPENSSL_SYS_VOS)
101
102 #  ifndef OPENSSL_RAND_SEED_OS
103 #   error "Unsupported seeding method configured; must be os"
104 #  endif
105
106 #  if defined(OPENSSL_SYS_VOS_HPPA) && defined(OPENSSL_SYS_VOS_IA32)
107 #   error "Unsupported HP-PA and IA32 at the same time."
108 #  endif
109 #  if !defined(OPENSSL_SYS_VOS_HPPA) && !defined(OPENSSL_SYS_VOS_IA32)
110 #   error "Must have one of HP-PA or IA32"
111 #  endif
112
113 /*
114  * The following algorithm repeatedly samples the real-time clock (RTC) to
115  * generate a sequence of unpredictable data.  The algorithm relies upon the
116  * uneven execution speed of the code (due to factors such as cache misses,
117  * interrupts, bus activity, and scheduling) and upon the rather large
118  * relative difference between the speed of the clock and the rate at which
119  * it can be read.  If it is ported to an environment where execution speed
120  * is more constant or where the RTC ticks at a much slower rate, or the
121  * clock can be read with fewer instructions, it is likely that the results
122  * would be far more predictable.  This should only be used for legacy
123  * platforms.
124  *
125  * As a precaution, we assume only 2 bits of entropy per byte.
126  */
127 size_t rand_pool_acquire_entropy(RAND_POOL *pool)
128 {
129     short int code;
130     int i, k;
131     size_t bytes_needed;
132     struct timespec ts;
133     unsigned char v;
134 #  ifdef OPENSSL_SYS_VOS_HPPA
135     long duration;
136     extern void s$sleep(long *_duration, short int *_code);
137 #  else
138     long long duration;
139     extern void s$sleep2(long long *_duration, short int *_code);
140 #  endif
141
142     bytes_needed = rand_pool_bytes_needed(pool, 4 /*entropy_factor*/);
143
144     for (i = 0; i < bytes_needed; i++) {
145         /*
146          * burn some cpu; hope for interrupts, cache collisions, bus
147          * interference, etc.
148          */
149         for (k = 0; k < 99; k++)
150             ts.tv_nsec = random();
151
152 #  ifdef OPENSSL_SYS_VOS_HPPA
153         /* sleep for 1/1024 of a second (976 us).  */
154         duration = 1;
155         s$sleep(&duration, &code);
156 #  else
157         /* sleep for 1/65536 of a second (15 us).  */
158         duration = 1;
159         s$sleep2(&duration, &code);
160 #  endif
161
162         /* Get wall clock time, take 8 bits. */
163         clock_gettime(CLOCK_REALTIME, &ts);
164         v = (unsigned char)(ts.tv_nsec & 0xFF);
165         rand_pool_add(pool, arg, &v, sizeof(v) , 2);
166     }
167     return rand_pool_entropy_available(pool);
168 }
169
170 void rand_pool_cleanup(void)
171 {
172 }
173
174 void rand_pool_keep_random_devices_open(int keep)
175 {
176 }
177
178 # else
179
180 #  if defined(OPENSSL_RAND_SEED_EGD) && \
181         (defined(OPENSSL_NO_EGD) || !defined(DEVRANDOM_EGD))
182 #   error "Seeding uses EGD but EGD is turned off or no device given"
183 #  endif
184
185 #  if defined(OPENSSL_RAND_SEED_DEVRANDOM) && !defined(DEVRANDOM)
186 #   error "Seeding uses urandom but DEVRANDOM is not configured"
187 #  endif
188
189 #  if defined(OPENSSL_RAND_SEED_OS)
190 #   if !defined(DEVRANDOM)
191 #    error "OS seeding requires DEVRANDOM to be configured"
192 #   endif
193 #   define OPENSSL_RAND_SEED_GETRANDOM
194 #   define OPENSSL_RAND_SEED_DEVRANDOM
195 #  endif
196
197 #  if defined(OPENSSL_RAND_SEED_LIBRANDOM)
198 #   error "librandom not (yet) supported"
199 #  endif
200
201 #  if (defined(__FreeBSD__) || defined(__NetBSD__)) && defined(KERN_ARND)
202 /*
203  * sysctl_random(): Use sysctl() to read a random number from the kernel
204  * Returns the number of bytes returned in buf on success, -1 on failure.
205  */
206 static ssize_t sysctl_random(char *buf, size_t buflen)
207 {
208     int mib[2];
209     size_t done = 0;
210     size_t len;
211
212     /*
213      * Note: sign conversion between size_t and ssize_t is safe even
214      * without a range check, see comment in syscall_random()
215      */
216
217     /*
218      * On FreeBSD old implementations returned longs, newer versions support
219      * variable sizes up to 256 byte. The code below would not work properly
220      * when the sysctl returns long and we want to request something not a
221      * multiple of longs, which should never be the case.
222      */
223     if (!ossl_assert(buflen % sizeof(long) == 0)) {
224         errno = EINVAL;
225         return -1;
226     }
227
228     /*
229      * On NetBSD before 4.0 KERN_ARND was an alias for KERN_URND, and only
230      * filled in an int, leaving the rest uninitialized. Since NetBSD 4.0
231      * it returns a variable number of bytes with the current version supporting
232      * up to 256 bytes.
233      * Just return an error on older NetBSD versions.
234      */
235 #if   defined(__NetBSD__) && __NetBSD_Version__ < 400000000
236     errno = ENOSYS;
237     return -1;
238 #endif
239
240     mib[0] = CTL_KERN;
241     mib[1] = KERN_ARND;
242
243     do {
244         len = buflen;
245         if (sysctl(mib, 2, buf, &len, NULL, 0) == -1)
246             return done > 0 ? done : -1;
247         done += len;
248         buf += len;
249         buflen -= len;
250     } while (buflen > 0);
251
252     return done;
253 }
254 #  endif
255
256 #  if defined(OPENSSL_RAND_SEED_GETRANDOM)
257
258 #   if defined(__linux) && !defined(__NR_getrandom)
259 #    if defined(__arm__) && defined(__NR_SYSCALL_BASE)
260 #     define __NR_getrandom    (__NR_SYSCALL_BASE+384)
261 #    endif
262 #   endif
263
264 /*
265  * syscall_random(): Try to get random data using a system call
266  * returns the number of bytes returned in buf, or < 0 on error.
267  */
268 static ssize_t syscall_random(void *buf, size_t buflen)
269 {
270     /*
271      * Note: 'buflen' equals the size of the buffer which is used by the
272      * get_entropy() callback of the RAND_DRBG. It is roughly bounded by
273      *
274      *   2 * RAND_POOL_FACTOR * (RAND_DRBG_STRENGTH / 8) = 2^14
275      *
276      * which is way below the OSSL_SSIZE_MAX limit. Therefore sign conversion
277      * between size_t and ssize_t is safe even without a range check.
278      */
279
280     /*
281      * Do runtime detection to find getentropy().
282      *
283      * Known OSs that should support this:
284      * - Darwin since 16 (OSX 10.12, IOS 10.0).
285      * - Solaris since 11.3
286      * - OpenBSD since 5.6
287      * - Linux since 3.17 with glibc 2.25
288      * - FreeBSD since 12.0 (1200061)
289      */
290 #  if defined(__GNUC__) && __GNUC__>=2 && defined(__ELF__) && !defined(__hpux)
291     extern int getentropy(void *buffer, size_t length) __attribute__((weak));
292
293     if (getentropy != NULL)
294         return getentropy(buf, buflen) == 0 ? (ssize_t)buflen : -1;
295 #  elif !defined(FIPS_MODE)
296     union {
297         void *p;
298         int (*f)(void *buffer, size_t length);
299     } p_getentropy;
300
301     /*
302      * We could cache the result of the lookup, but we normally don't
303      * call this function often.
304      */
305     ERR_set_mark();
306     p_getentropy.p = DSO_global_lookup("getentropy");
307     ERR_pop_to_mark();
308     if (p_getentropy.p != NULL)
309         return p_getentropy.f(buf, buflen) == 0 ? (ssize_t)buflen : -1;
310 #  endif
311
312     /* Linux supports this since version 3.17 */
313 #  if defined(__linux) && defined(__NR_getrandom)
314     return syscall(__NR_getrandom, buf, buflen, 0);
315 #  elif (defined(__FreeBSD__) || defined(__NetBSD__)) && defined(KERN_ARND)
316     return sysctl_random(buf, buflen);
317 #  else
318     errno = ENOSYS;
319     return -1;
320 #  endif
321 }
322 #  endif    /* defined(OPENSSL_RAND_SEED_GETRANDOM) */
323
324 #  if defined(OPENSSL_RAND_SEED_DEVRANDOM)
325 static const char *random_device_paths[] = { DEVRANDOM };
326 static struct random_device {
327     int fd;
328     dev_t dev;
329     ino_t ino;
330     mode_t mode;
331     dev_t rdev;
332 } random_devices[OSSL_NELEM(random_device_paths)];
333 static int keep_random_devices_open = 1;
334
335 /*
336  * Verify that the file descriptor associated with the random source is
337  * still valid. The rationale for doing this is the fact that it is not
338  * uncommon for daemons to close all open file handles when daemonizing.
339  * So the handle might have been closed or even reused for opening
340  * another file.
341  */
342 static int check_random_device(struct random_device * rd)
343 {
344     struct stat st;
345
346     return rd->fd != -1
347            && fstat(rd->fd, &st) != -1
348            && rd->dev == st.st_dev
349            && rd->ino == st.st_ino
350            && ((rd->mode ^ st.st_mode) & ~(S_IRWXU | S_IRWXG | S_IRWXO)) == 0
351            && rd->rdev == st.st_rdev;
352 }
353
354 /*
355  * Open a random device if required and return its file descriptor or -1 on error
356  */
357 static int get_random_device(size_t n)
358 {
359     struct stat st;
360     struct random_device * rd = &random_devices[n];
361
362     /* reuse existing file descriptor if it is (still) valid */
363     if (check_random_device(rd))
364         return rd->fd;
365
366     /* open the random device ... */
367     if ((rd->fd = open(random_device_paths[n], O_RDONLY)) == -1)
368         return rd->fd;
369
370     /* ... and cache its relevant stat(2) data */
371     if (fstat(rd->fd, &st) != -1) {
372         rd->dev = st.st_dev;
373         rd->ino = st.st_ino;
374         rd->mode = st.st_mode;
375         rd->rdev = st.st_rdev;
376     } else {
377         close(rd->fd);
378         rd->fd = -1;
379     }
380
381     return rd->fd;
382 }
383
384 /*
385  * Close a random device making sure it is a random device
386  */
387 static void close_random_device(size_t n)
388 {
389     struct random_device * rd = &random_devices[n];
390
391     if (check_random_device(rd))
392         close(rd->fd);
393     rd->fd = -1;
394 }
395
396 int rand_pool_init(void)
397 {
398     size_t i;
399
400     for (i = 0; i < OSSL_NELEM(random_devices); i++)
401         random_devices[i].fd = -1;
402
403     return 1;
404 }
405
406 void rand_pool_cleanup(void)
407 {
408     size_t i;
409
410     for (i = 0; i < OSSL_NELEM(random_devices); i++)
411         close_random_device(i);
412 }
413
414 void rand_pool_keep_random_devices_open(int keep)
415 {
416     if (!keep)
417         rand_pool_cleanup();
418
419     keep_random_devices_open = keep;
420 }
421
422 #  else     /* !defined(OPENSSL_RAND_SEED_DEVRANDOM) */
423
424 int rand_pool_init(void)
425 {
426     return 1;
427 }
428
429 void rand_pool_cleanup(void)
430 {
431 }
432
433 void rand_pool_keep_random_devices_open(int keep)
434 {
435 }
436
437 #  endif    /* defined(OPENSSL_RAND_SEED_DEVRANDOM) */
438
439 /*
440  * Try the various seeding methods in turn, exit when successful.
441  *
442  * TODO(DRBG): If more than one entropy source is available, is it
443  * preferable to stop as soon as enough entropy has been collected
444  * (as favored by @rsalz) or should one rather be defensive and add
445  * more entropy than requested and/or from different sources?
446  *
447  * Currently, the user can select multiple entropy sources in the
448  * configure step, yet in practice only the first available source
449  * will be used. A more flexible solution has been requested, but
450  * currently it is not clear how this can be achieved without
451  * overengineering the problem. There are many parameters which
452  * could be taken into account when selecting the order and amount
453  * of input from the different entropy sources (trust, quality,
454  * possibility of blocking).
455  */
456 size_t rand_pool_acquire_entropy(RAND_POOL *pool)
457 {
458 #  if defined(OPENSSL_RAND_SEED_NONE)
459     return rand_pool_entropy_available(pool);
460 #  else
461     size_t bytes_needed;
462     size_t entropy_available = 0;
463     unsigned char *buffer;
464
465 #   if defined(OPENSSL_RAND_SEED_GETRANDOM)
466     {
467         ssize_t bytes;
468         /* Maximum allowed number of consecutive unsuccessful attempts */
469         int attempts = 3;
470
471         bytes_needed = rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
472         while (bytes_needed != 0 && attempts-- > 0) {
473             buffer = rand_pool_add_begin(pool, bytes_needed);
474             bytes = syscall_random(buffer, bytes_needed);
475             if (bytes > 0) {
476                 rand_pool_add_end(pool, bytes, 8 * bytes);
477                 bytes_needed -= bytes;
478                 attempts = 3; /* reset counter after successful attempt */
479             } else if (bytes < 0 && errno != EINTR) {
480                 break;
481             }
482         }
483     }
484     entropy_available = rand_pool_entropy_available(pool);
485     if (entropy_available > 0)
486         return entropy_available;
487 #   endif
488
489 #   if defined(OPENSSL_RAND_SEED_LIBRANDOM)
490     {
491         /* Not yet implemented. */
492     }
493 #   endif
494
495 #   if defined(OPENSSL_RAND_SEED_DEVRANDOM)
496     bytes_needed = rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
497     {
498         size_t i;
499
500         for (i = 0; bytes_needed > 0 && i < OSSL_NELEM(random_device_paths); i++) {
501             ssize_t bytes = 0;
502             /* Maximum allowed number of consecutive unsuccessful attempts */
503             int attempts = 3;
504             const int fd = get_random_device(i);
505
506             if (fd == -1)
507                 continue;
508
509             while (bytes_needed != 0 && attempts-- > 0) {
510                 buffer = rand_pool_add_begin(pool, bytes_needed);
511                 bytes = read(fd, buffer, bytes_needed);
512
513                 if (bytes > 0) {
514                     rand_pool_add_end(pool, bytes, 8 * bytes);
515                     bytes_needed -= bytes;
516                     attempts = 3; /* reset counter after successful attempt */
517                 } else if (bytes < 0 && errno != EINTR) {
518                     break;
519                 }
520             }
521             if (bytes < 0 || !keep_random_devices_open)
522                 close_random_device(i);
523
524             bytes_needed = rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
525         }
526         entropy_available = rand_pool_entropy_available(pool);
527         if (entropy_available > 0)
528             return entropy_available;
529     }
530 #   endif
531
532 #   if defined(OPENSSL_RAND_SEED_RDTSC)
533     entropy_available = rand_acquire_entropy_from_tsc(pool);
534     if (entropy_available > 0)
535         return entropy_available;
536 #   endif
537
538 #   if defined(OPENSSL_RAND_SEED_RDCPU)
539     entropy_available = rand_acquire_entropy_from_cpu(pool);
540     if (entropy_available > 0)
541         return entropy_available;
542 #   endif
543
544 #   if defined(OPENSSL_RAND_SEED_EGD)
545     bytes_needed = rand_pool_bytes_needed(pool, 1 /*entropy_factor*/);
546     if (bytes_needed > 0) {
547         static const char *paths[] = { DEVRANDOM_EGD, NULL };
548         int i;
549
550         for (i = 0; paths[i] != NULL; i++) {
551             buffer = rand_pool_add_begin(pool, bytes_needed);
552             if (buffer != NULL) {
553                 size_t bytes = 0;
554                 int num = RAND_query_egd_bytes(paths[i],
555                                                buffer, (int)bytes_needed);
556                 if (num == (int)bytes_needed)
557                     bytes = bytes_needed;
558
559                 rand_pool_add_end(pool, bytes, 8 * bytes);
560                 entropy_available = rand_pool_entropy_available(pool);
561             }
562             if (entropy_available > 0)
563                 return entropy_available;
564         }
565     }
566 #   endif
567
568     return rand_pool_entropy_available(pool);
569 #  endif
570 }
571 # endif
572 #endif
573
574 #if (defined(OPENSSL_SYS_UNIX) && !defined(OPENSSL_SYS_VXWORKS)) \
575      || defined(__DJGPP__)
576 int rand_pool_add_nonce_data(RAND_POOL *pool)
577 {
578     struct {
579         pid_t pid;
580         CRYPTO_THREAD_ID tid;
581         uint64_t time;
582     } data;
583
584     /* Erase the entire structure including any padding */
585     memset(&data, 0, sizeof(data));
586
587     /*
588      * Add process id, thread id, and a high resolution timestamp to
589      * ensure that the nonce is unique with high probability for
590      * different process instances.
591      */
592     data.pid = getpid();
593     data.tid = CRYPTO_THREAD_get_current_id();
594     data.time = get_time_stamp();
595
596     return rand_pool_add(pool, (unsigned char *)&data, sizeof(data), 0);
597 }
598
599 int rand_pool_add_additional_data(RAND_POOL *pool)
600 {
601     struct {
602         CRYPTO_THREAD_ID tid;
603         uint64_t time;
604     } data;
605
606     /* Erase the entire structure including any padding */
607     memset(&data, 0, sizeof(data));
608
609     /*
610      * Add some noise from the thread id and a high resolution timer.
611      * The thread id adds a little randomness if the drbg is accessed
612      * concurrently (which is the case for the <master> drbg).
613      */
614     data.tid = CRYPTO_THREAD_get_current_id();
615     data.time = get_timer_bits();
616
617     return rand_pool_add(pool, (unsigned char *)&data, sizeof(data), 0);
618 }
619
620
621 /*
622  * Get the current time with the highest possible resolution
623  *
624  * The time stamp is added to the nonce, so it is optimized for not repeating.
625  * The current time is ideal for this purpose, provided the computer's clock
626  * is synchronized.
627  */
628 static uint64_t get_time_stamp(void)
629 {
630 # if defined(OSSL_POSIX_TIMER_OKAY)
631     {
632         struct timespec ts;
633
634         if (clock_gettime(CLOCK_REALTIME, &ts) == 0)
635             return TWO32TO64(ts.tv_sec, ts.tv_nsec);
636     }
637 # endif
638 # if defined(__unix__) \
639      || (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 200112L)
640     {
641         struct timeval tv;
642
643         if (gettimeofday(&tv, NULL) == 0)
644             return TWO32TO64(tv.tv_sec, tv.tv_usec);
645     }
646 # endif
647     return time(NULL);
648 }
649
650 /*
651  * Get an arbitrary timer value of the highest possible resolution
652  *
653  * The timer value is added as random noise to the additional data,
654  * which is not considered a trusted entropy sourec, so any result
655  * is acceptable.
656  */
657 static uint64_t get_timer_bits(void)
658 {
659     uint64_t res = OPENSSL_rdtsc();
660
661     if (res != 0)
662         return res;
663
664 # if defined(__sun) || defined(__hpux)
665     return gethrtime();
666 # elif defined(_AIX)
667     {
668         timebasestruct_t t;
669
670         read_wall_time(&t, TIMEBASE_SZ);
671         return TWO32TO64(t.tb_high, t.tb_low);
672     }
673 # elif defined(OSSL_POSIX_TIMER_OKAY)
674     {
675         struct timespec ts;
676
677 #  ifdef CLOCK_BOOTTIME
678 #   define CLOCK_TYPE CLOCK_BOOTTIME
679 #  elif defined(_POSIX_MONOTONIC_CLOCK)
680 #   define CLOCK_TYPE CLOCK_MONOTONIC
681 #  else
682 #   define CLOCK_TYPE CLOCK_REALTIME
683 #  endif
684
685         if (clock_gettime(CLOCK_TYPE, &ts) == 0)
686             return TWO32TO64(ts.tv_sec, ts.tv_nsec);
687     }
688 # endif
689 # if defined(__unix__) \
690      || (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 200112L)
691     {
692         struct timeval tv;
693
694         if (gettimeofday(&tv, NULL) == 0)
695             return TWO32TO64(tv.tv_sec, tv.tv_usec);
696     }
697 # endif
698     return time(NULL);
699 }
700 #endif /* defined(OPENSSL_SYS_UNIX) || defined(__DJGPP__) */