-
Notifications
You must be signed in to change notification settings - Fork 398
/
pool.hpp
186 lines (166 loc) · 5.09 KB
/
pool.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// OpenVPN -- An application to securely tunnel IP networks
// over a single port, with support for SSL/TLS-based
// session authentication and key exchange,
// packet encryption, packet authentication, and
// packet compression.
//
// Copyright (C) 2012- OpenVPN Inc.
//
// SPDX-License-Identifier: MPL-2.0 OR AGPL-3.0-only WITH openvpn3-openssl-exception
//
#ifndef OPENVPN_ADDR_POOL_H
#define OPENVPN_ADDR_POOL_H
#include <deque>
#include <optional>
#include <string>
#include <unordered_map>
#include <openvpn/common/exception.hpp>
#include <openvpn/addr/ip.hpp>
#include <openvpn/addr/range.hpp>
namespace openvpn::IP {
// Maintain a pool of IP addresses.
// Should be IP::Addr, IPv4::Addr, or IPv6::Addr.
template <typename ADDR>
class PoolType
{
public:
PoolType() = default;
/**
* @brief Adds range of addresses to pool (pool will own the addresses).
* @param range RangeType of IP Addresses
*/
void add_range(const RangeType<ADDR> &range)
{
for (const auto &address : range)
{
add_addr(address);
}
}
// Add single address to pool (pool will own the address).
void add_addr(const ADDR &addr)
{
auto [iter, inserted] = map.try_emplace(addr, false);
if (inserted)
{
freelist.push_back(addr);
}
}
/**
* @brief Returns number of pool addresses currently in use
* @return number of pool addresses currently in use
*/
[[nodiscard]] size_t n_in_use() const noexcept
{
return map.size() - freelist.size();
}
/**
* @brief Returns number of free pool addresses
* @return number of free pool addresses
*/
[[nodiscard]] size_t n_free() const noexcept
{
return freelist.size();
}
// Acquire an address from pool. Returns true if successful,
// with address placed in dest, or false if pool depleted.
bool acquire_addr(ADDR &dest)
{
while (true)
{
freelist_fill();
if (freelist.empty())
return false;
const ADDR &a = freelist.front();
auto e = map.find(a);
if (e == map.end()) // any address in freelist must exist in map
throw Exception("PoolType: address in freelist doesn't exist in map");
if (!e->second)
{
e->second = true;
dest = a;
freelist.pop_front();
return true;
}
freelist.pop_front();
}
}
/**
* @brief Acquires a specific address from the pool.
*
* This function attempts to acquire a specific address from the pool. If the address is
* available, it marks the address as in use and returns true. If the address is not available,
* it returns false.
*
* @param addr The IP address to acquire.
* @return true if the address was successfully acquired, false otherwise.
*/
bool acquire_specific_addr(const ADDR &addr)
{
auto optional_iterator = is_address_available(addr);
if (optional_iterator)
{
(*optional_iterator)->second = true;
return true;
}
return false;
}
// Return a previously acquired address to the pool. Does nothing if
// (a) the address is owned by the pool and marked as free, or
// (b) the address is not owned by the pool.
void release_addr(const ADDR &addr)
{
auto optional_iterator = is_address_in_use(addr);
if (optional_iterator)
{
freelist.push_back(addr);
(*optional_iterator)->second = false;
}
}
// Override to refill freelist on demand
virtual void freelist_fill()
{
}
std::string to_string() const
{
std::string ret;
for (const auto &e : map)
{
if (e.second)
{
ret += e.first.to_string();
ret += '\n';
}
}
return ret;
}
virtual ~PoolType() = default;
private:
std::deque<ADDR> freelist;
std::unordered_map<ADDR, bool> map;
/**
* @brief Checks if address is available (free)
* @param addr IP Address to check
* @return Optional iterator to position; std::nullopt if address is not available
*/
auto is_address_available(const ADDR &addr) -> std::optional<decltype(map.begin())> // Easy decltype for map iterator
{
auto it = map.find(addr);
if (it != map.end() && !it->second)
return it;
return std::nullopt;
}
/**
* @brief Checks if address is in use
* @param addr IP Address to check
* @return Optional containing iterator to position if found, std::nullopt otherwise
*/
auto is_address_in_use(const ADDR &addr) -> std::optional<decltype(map.begin())> // Easy decltype for map iterator
{
if (auto it = map.find(addr); it != map.end())
return it;
return std::nullopt;
}
};
typedef PoolType<IP::Addr> Pool;
} // namespace openvpn::IP
#endif