blob: e2a5ddbefcbb963084f6064927141ff13aa726d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
* High Resolution Timestamp Entropy Source
* (C) 1999-2009,2011,2014,2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/hres_timer.h>
#include <botan/internal/os_utils.h>
#if defined(BOTAN_TARGET_OS_HAS_CLOCK_GETTIME)
#include <time.h>
#endif
namespace Botan {
/*
* Get the timestamp
*/
void High_Resolution_Timestamp::poll(Entropy_Accumulator& accum)
{
accum.add(OS::get_processor_timestamp(), BOTAN_ENTROPY_ESTIMATE_TIMESTAMPS);
accum.add(OS::get_system_timestamp_ns(), BOTAN_ENTROPY_ESTIMATE_TIMESTAMPS);
#if defined(BOTAN_TARGET_OS_HAS_CLOCK_GETTIME)
#define CLOCK_GETTIME_POLL(src) \
do { \
struct timespec ts; \
::clock_gettime(src, &ts); \
accum.add(&ts, sizeof(ts), BOTAN_ENTROPY_ESTIMATE_TIMESTAMPS); \
} while(0)
#if defined(CLOCK_REALTIME)
CLOCK_GETTIME_POLL(CLOCK_REALTIME);
#endif
#if defined(CLOCK_MONOTONIC)
CLOCK_GETTIME_POLL(CLOCK_MONOTONIC);
#endif
#if defined(CLOCK_MONOTONIC_RAW)
CLOCK_GETTIME_POLL(CLOCK_MONOTONIC_RAW);
#endif
#if defined(CLOCK_PROCESS_CPUTIME_ID)
CLOCK_GETTIME_POLL(CLOCK_PROCESS_CPUTIME_ID);
#endif
#if defined(CLOCK_THREAD_CPUTIME_ID)
CLOCK_GETTIME_POLL(CLOCK_THREAD_CPUTIME_ID);
#endif
#undef CLOCK_GETTIME_POLL
#endif
}
}
|