Coverage Report

Created: 2022-08-24 06:26

/src/botan/build/include/botan/secmem.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* Secure Memory Buffers
3
* (C) 1999-2007,2012 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_SECURE_MEMORY_BUFFERS_H_
9
#define BOTAN_SECURE_MEMORY_BUFFERS_H_
10
11
#include <botan/types.h> // IWYU pragma: export
12
#include <botan/mem_ops.h> // IWYU pragma: export
13
#include <vector> // IWYU pragma: export
14
#include <algorithm>
15
#include <deque>
16
#include <type_traits>
17
18
namespace Botan {
19
20
template<typename T>
21
class secure_allocator
22
   {
23
   public:
24
      /*
25
      * Assert exists to prevent someone from doing something that will
26
      * probably crash anyway (like secure_vector<non_POD_t> where ~non_POD_t
27
      * deletes a member pointer which was zeroed before it ran).
28
      * MSVC in debug mode uses non-integral proxy types in container types
29
      * like std::vector, thus we disable the check there.
30
      */
31
#if !defined(_ITERATOR_DEBUG_LEVEL) || _ITERATOR_DEBUG_LEVEL == 0
32
      static_assert(std::is_integral<T>::value, "secure_allocator supports only integer types");
33
#endif
34
35
      typedef T          value_type;
36
      typedef std::size_t size_type;
37
38
      secure_allocator() noexcept = default;
39
      secure_allocator(const secure_allocator&) noexcept = default;
40
      secure_allocator& operator=(const secure_allocator&) noexcept = default;
41
      ~secure_allocator() noexcept = default;
42
43
      template<typename U>
44
      secure_allocator(const secure_allocator<U>&) noexcept {}
45
46
      T* allocate(std::size_t n)
47
11.3M
         {
48
11.3M
         return static_cast<T*>(allocate_memory(n, sizeof(T)));
49
11.3M
         }
Botan::secure_allocator<unsigned char>::allocate(unsigned long)
Line
Count
Source
47
27.7k
         {
48
27.7k
         return static_cast<T*>(allocate_memory(n, sizeof(T)));
49
27.7k
         }
Botan::secure_allocator<unsigned long>::allocate(unsigned long)
Line
Count
Source
47
11.3M
         {
48
11.3M
         return static_cast<T*>(allocate_memory(n, sizeof(T)));
49
11.3M
         }
Unexecuted instantiation: Botan::secure_allocator<unsigned int>::allocate(unsigned long)
Unexecuted instantiation: Botan::secure_allocator<unsigned short>::allocate(unsigned long)
50
51
      void deallocate(T* p, std::size_t n)
52
11.3M
         {
53
11.3M
         deallocate_memory(p, n, sizeof(T));
54
11.3M
         }
Botan::secure_allocator<unsigned char>::deallocate(unsigned char*, unsigned long)
Line
Count
Source
52
27.7k
         {
53
27.7k
         deallocate_memory(p, n, sizeof(T));
54
27.7k
         }
Botan::secure_allocator<unsigned long>::deallocate(unsigned long*, unsigned long)
Line
Count
Source
52
11.3M
         {
53
11.3M
         deallocate_memory(p, n, sizeof(T));
54
11.3M
         }
Unexecuted instantiation: Botan::secure_allocator<unsigned int>::deallocate(unsigned int*, unsigned long)
Unexecuted instantiation: Botan::secure_allocator<unsigned short>::deallocate(unsigned short*, unsigned long)
55
   };
56
57
template<typename T, typename U> inline bool
58
operator==(const secure_allocator<T>&, const secure_allocator<U>&)
59
   { return true; }
60
61
template<typename T, typename U> inline bool
62
operator!=(const secure_allocator<T>&, const secure_allocator<U>&)
63
499
   { return false; }
64
65
template<typename T> using secure_vector = std::vector<T, secure_allocator<T>>;
66
template<typename T> using secure_deque = std::deque<T, secure_allocator<T>>;
67
68
// For better compatibility with 1.10 API
69
template<typename T> using SecureVector = secure_vector<T>;
70
71
template<typename T>
72
std::vector<T> unlock(const secure_vector<T>& in)
73
332
   {
74
332
   return std::vector<T>(in.begin(), in.end());
75
332
   }
76
77
template<typename T, typename Alloc, typename Alloc2>
78
std::vector<T, Alloc>&
79
operator+=(std::vector<T, Alloc>& out,
80
           const std::vector<T, Alloc2>& in)
81
13
   {
82
13
   out.insert(out.end(), in.begin(), in.end());
83
13
   return out;
84
13
   }
std::__1::vector<unsigned char, Botan::secure_allocator<unsigned char> >& Botan::operator+=<unsigned char, Botan::secure_allocator<unsigned char>, Botan::secure_allocator<unsigned char> >(std::__1::vector<unsigned char, Botan::secure_allocator<unsigned char> >&, std::__1::vector<unsigned char, Botan::secure_allocator<unsigned char> > const&)
Line
Count
Source
81
13
   {
82
13
   out.insert(out.end(), in.begin(), in.end());
83
13
   return out;
84
13
   }
Unexecuted instantiation: std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >& Botan::operator+=<unsigned char, std::__1::allocator<unsigned char>, Botan::secure_allocator<unsigned char> >(std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&, std::__1::vector<unsigned char, Botan::secure_allocator<unsigned char> > const&)
Unexecuted instantiation: std::__1::vector<unsigned char, Botan::secure_allocator<unsigned char> >& Botan::operator+=<unsigned char, Botan::secure_allocator<unsigned char>, std::__1::allocator<unsigned char> >(std::__1::vector<unsigned char, Botan::secure_allocator<unsigned char> >&, std::__1::vector<unsigned char, std::__1::allocator<unsigned char> > const&)
85
86
template<typename T, typename Alloc>
87
std::vector<T, Alloc>& operator+=(std::vector<T, Alloc>& out, T in)
88
   {
89
   out.push_back(in);
90
   return out;
91
   }
92
93
template<typename T, typename Alloc, typename L>
94
std::vector<T, Alloc>& operator+=(std::vector<T, Alloc>& out,
95
                                  const std::pair<const T*, L>& in)
96
335
   {
97
335
   out.insert(out.end(), in.first, in.first + in.second);
98
335
   return out;
99
335
   }
100
101
template<typename T, typename Alloc, typename L>
102
std::vector<T, Alloc>& operator+=(std::vector<T, Alloc>& out,
103
                                  const std::pair<T*, L>& in)
104
0
   {
105
0
   out.insert(out.end(), in.first, in.first + in.second);
106
0
   return out;
107
0
   }
108
109
/**
110
* Zeroise the values; length remains unchanged
111
* @param vec the vector to zeroise
112
*/
113
template<typename T, typename Alloc>
114
void zeroise(std::vector<T, Alloc>& vec)
115
1.87k
   {
116
1.87k
   clear_mem(vec.data(), vec.size());
117
1.87k
   }
void Botan::zeroise<unsigned char, Botan::secure_allocator<unsigned char> >(std::__1::vector<unsigned char, Botan::secure_allocator<unsigned char> >&)
Line
Count
Source
115
1.87k
   {
116
1.87k
   clear_mem(vec.data(), vec.size());
117
1.87k
   }
Unexecuted instantiation: void Botan::zeroise<unsigned long, Botan::secure_allocator<unsigned long> >(std::__1::vector<unsigned long, Botan::secure_allocator<unsigned long> >&)
Unexecuted instantiation: void Botan::zeroise<unsigned int, Botan::secure_allocator<unsigned int> >(std::__1::vector<unsigned int, Botan::secure_allocator<unsigned int> >&)
Unexecuted instantiation: void Botan::zeroise<unsigned char, std::__1::allocator<unsigned char> >(std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&)
Unexecuted instantiation: void Botan::zeroise<unsigned short, Botan::secure_allocator<unsigned short> >(std::__1::vector<unsigned short, Botan::secure_allocator<unsigned short> >&)
118
119
/**
120
* Zeroise the values then free the memory
121
* @param vec the vector to zeroise and free
122
*/
123
template<typename T, typename Alloc>
124
void zap(std::vector<T, Alloc>& vec)
125
0
   {
126
0
   zeroise(vec);
127
0
   vec.clear();
128
0
   vec.shrink_to_fit();
129
0
   }
Unexecuted instantiation: void Botan::zap<unsigned char, Botan::secure_allocator<unsigned char> >(std::__1::vector<unsigned char, Botan::secure_allocator<unsigned char> >&)
Unexecuted instantiation: void Botan::zap<unsigned long, Botan::secure_allocator<unsigned long> >(std::__1::vector<unsigned long, Botan::secure_allocator<unsigned long> >&)
Unexecuted instantiation: void Botan::zap<unsigned char, std::__1::allocator<unsigned char> >(std::__1::vector<unsigned char, std::__1::allocator<unsigned char> >&)
Unexecuted instantiation: void Botan::zap<unsigned int, Botan::secure_allocator<unsigned int> >(std::__1::vector<unsigned int, Botan::secure_allocator<unsigned int> >&)
Unexecuted instantiation: void Botan::zap<unsigned short, Botan::secure_allocator<unsigned short> >(std::__1::vector<unsigned short, Botan::secure_allocator<unsigned short> >&)
130
131
}
132
133
#endif