/src/openssl32/crypto/time.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2022-2023 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 | | #include <errno.h> |
11 | | #include <openssl/err.h> |
12 | | #include "internal/time.h" |
13 | | |
14 | | OSSL_TIME ossl_time_now(void) |
15 | 192k | { |
16 | 192k | OSSL_TIME r; |
17 | | |
18 | | #if defined(_WIN32) && !defined(OPENSSL_SYS_UEFI) |
19 | | SYSTEMTIME st; |
20 | | union { |
21 | | unsigned __int64 ul; |
22 | | FILETIME ft; |
23 | | } now; |
24 | | |
25 | | GetSystemTime(&st); |
26 | | SystemTimeToFileTime(&st, &now.ft); |
27 | | /* re-bias to 1/1/1970 */ |
28 | | # ifdef __MINGW32__ |
29 | | now.ul -= 116444736000000000ULL; |
30 | | # else |
31 | | now.ul -= 116444736000000000UI64; |
32 | | # endif |
33 | | r.t = ((uint64_t)now.ul) * (OSSL_TIME_SECOND / 10000000); |
34 | | #else /* defined(_WIN32) */ |
35 | 192k | struct timeval t; |
36 | | |
37 | 192k | if (gettimeofday(&t, NULL) < 0) { |
38 | 0 | ERR_raise_data(ERR_LIB_SYS, get_last_sys_error(), |
39 | 0 | "calling gettimeofday()"); |
40 | 0 | return ossl_time_zero(); |
41 | 0 | } |
42 | 192k | if (t.tv_sec <= 0) |
43 | 0 | r.t = t.tv_usec <= 0 ? 0 : t.tv_usec * OSSL_TIME_US; |
44 | 192k | else |
45 | 192k | r.t = ((uint64_t)t.tv_sec * 1000000 + t.tv_usec) * OSSL_TIME_US; |
46 | 192k | #endif /* defined(_WIN32) */ |
47 | 192k | return r; |
48 | 192k | } |