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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
* Functions for constant time operations on data and testing of
* constant time annotations using ctgrind.
*
* For more information about constant time programming see
* Wagner, Molnar, et al "The Program Counter Security Model"
*
* (C) 2010 Falko Strenzke
* (C) 2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TIMING_ATTACK_CM_H__
#define BOTAN_TIMING_ATTACK_CM_H__
#include <botan/types.h>
#include <vector>
#if defined(BOTAN_USE_CTGRIND)
// These are external symbols from libctgrind.so
extern "C" void ct_poison(const void* address, size_t length);
extern "C" void ct_unpoison(const void* address, size_t length);
#endif
namespace Botan {
namespace CT {
template<typename T>
inline void poison(T* p, size_t n)
{
#if defined(BOTAN_USE_CTGRIND)
ct_poison(p, sizeof(T)*n);
#else
BOTAN_UNUSED(p);
BOTAN_UNUSED(n);
#endif
}
template<typename T>
inline void unpoison(T* p, size_t n)
{
#if defined(BOTAN_USE_CTGRIND)
ct_unpoison(p, sizeof(T)*n);
#else
BOTAN_UNUSED(p);
BOTAN_UNUSED(n);
#endif
}
/*
* T should be an unsigned machine integer type
* Expand to a mask used for other operations
* @param in an integer
* @return If n is zero, returns zero. Otherwise
* returns a T with all bits set for use as a mask with
* select.
*/
template<typename T>
inline T expand_mask(T x)
{
T r = x;
// First fold r down to a single bit
for(size_t i = 1; i != sizeof(T)*8; i *= 2)
r |= r >> i;
r &= 1;
r = ~(r - 1);
return r;
}
template<typename T>
inline T select(T mask, T from0, T from1)
{
return (from0 & mask) | (from1 & ~mask);
}
template<typename T>
inline T is_zero(T x)
{
return ~expand_mask(x);
}
template<typename T>
inline T is_equal(T x, T y)
{
return is_zero(x ^ y);
}
template<typename T>
inline void conditional_copy_mem(T value,
T* to,
const T* from0,
const T* from1,
size_t bytes)
{
const T mask = CT::expand_mask(value);
for(size_t i = 0; i != bytes; ++i)
to[i] = CT::select(mask, from0[i], from1[i]);
}
}
}
#endif
|