forked from zeromq/libzmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecure_allocator.hpp
92 lines (78 loc) · 2 KB
/
secure_allocator.hpp
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
/* SPDX-License-Identifier: MPL-2.0 */
#ifndef __ZMQ_SECURE_ALLOCATOR_HPP_INCLUDED__
#define __ZMQ_SECURE_ALLOCATOR_HPP_INCLUDED__
#include "platform.hpp"
#include "macros.hpp"
#ifdef ZMQ_HAVE_CURVE
#if defined(ZMQ_USE_LIBSODIUM)
#include "sodium.h"
#endif
#include <memory>
namespace zmq
{
#if defined(ZMQ_USE_LIBSODIUM)
template <class T> struct secure_allocator_t
{
typedef T value_type;
secure_allocator_t () ZMQ_DEFAULT;
template <class U>
secure_allocator_t (const secure_allocator_t<U> &) ZMQ_NOEXCEPT
{
}
T *allocate (std::size_t n) ZMQ_NOEXCEPT
{
T *res = static_cast<T *> (sodium_allocarray (sizeof (T), n));
alloc_assert (res);
return res;
}
void deallocate (T *p, std::size_t) ZMQ_NOEXCEPT
{
if (p)
sodium_free (p);
}
// the following is only required with C++98
// TODO maybe make this conditionally compiled
typedef T *pointer;
typedef const T *const_pointer;
typedef T &reference;
typedef const T &const_reference;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
template <class U> struct rebind
{
typedef secure_allocator_t<U> other;
};
void construct (pointer p, const_reference val)
{
new ((void *) p) value_type (val);
}
void destroy (pointer p) { p->~value_type (); }
size_type max_size () const { return SIZE_MAX; }
};
template <class T, class U>
bool operator== (const secure_allocator_t<T> &, const secure_allocator_t<U> &)
{
return true;
}
template <class T, class U>
bool operator!= (const secure_allocator_t<T> &, const secure_allocator_t<U> &)
{
return false;
}
#else
template <typename T> struct secure_allocator_t : std::allocator<T>
{
secure_allocator_t () ZMQ_DEFAULT;
template <class U>
secure_allocator_t (const secure_allocator_t<U> &) ZMQ_NOEXCEPT
{
}
template <class U> struct rebind
{
typedef secure_allocator_t<U> other;
};
};
#endif
}
#endif
#endif