Botan 3.13.0
Crypto and TLS for C&
roughtime.cpp
Go to the documentation of this file.
1/*
2* Roughtime
3* (C) 2019 Nuno Goncalves <nunojpg@gmail.com>
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#include <botan/roughtime.h>
9
10#include <botan/base64.h>
11#include <botan/hash.h>
12#include <botan/mem_ops.h>
13#include <botan/pubkey.h>
14#include <botan/rng.h>
15#include <botan/internal/buffer_slicer.h>
16#include <botan/internal/int_utils.h>
17#include <botan/internal/socket_udp.h>
18
19#include <map>
20#include <sstream>
21
22namespace Botan {
23
24namespace {
25
26// This exists to work around a LGTM false positive
27static_assert(Roughtime::request_min_size == 1024, "Expected minimum size");
28
29template <class T>
30struct is_array : std::false_type {};
31
32template <class T, std::size_t N>
33struct is_array<std::array<T, N>> : std::true_type {};
34
35template <typename T>
36T impl_from_little_endian(const uint8_t* t, const size_t i)
37 requires(sizeof(T) <= sizeof(int64_t))
38{
39 return T(static_cast<int64_t>(t[i]) << i * 8) + (i == 0 ? T(0) : impl_from_little_endian<T>(t, i - 1));
40}
41
42template <typename T>
43T from_little_endian(const uint8_t* t) {
44 return impl_from_little_endian<T>(t, sizeof(T) - 1);
45}
46
47template <typename T>
48T copy(const uint8_t* t)
49 requires(is_array<T>::value)
50{
51 return typecast_copy<T>(t); //arrays are endianness independent, so we do a memcpy
52}
53
54template <typename T>
55T copy(const uint8_t* t)
56 requires(!is_array<T>::value)
57{
58 //other types are arithmetic, so we account that roughtime serializes as little endian
59 return from_little_endian<T>(t);
60}
61
62template <typename T>
63std::map<std::string, std::vector<uint8_t>> unpack_roughtime_packet(T bytes) {
64 if(bytes.size() < 8) {
65 throw Roughtime::Roughtime_Error("Map length is under minimum of 8 bytes");
66 }
67 const auto buf = bytes.data();
68 const uint32_t num_tags = buf[0];
69 const uint32_t start_content = num_tags * 8;
70 if(start_content > bytes.size()) {
71 throw Roughtime::Roughtime_Error("Map length too small to contain all tags");
72 }
73 uint32_t start = start_content;
74 std::map<std::string, std::vector<uint8_t>> tags;
75 for(uint32_t i = 0; i < num_tags; ++i) {
76 size_t end = bytes.size();
77 if((i + 1) != num_tags) {
78 const auto tag_end = checked_add(start_content, from_little_endian<uint32_t>(buf + 4 + i * 4));
79 if(!tag_end.has_value()) {
80 throw Roughtime::Roughtime_Error("Tag end index out of bounds");
81 }
82 end = tag_end.value();
83 }
84 if(end > bytes.size()) {
85 throw Roughtime::Roughtime_Error("Tag end index out of bounds");
86 }
87 if(end < start) {
88 throw Roughtime::Roughtime_Error("Tag offset must be more than previous tag offset");
89 }
90 const char* label_ptr = cast_uint8_ptr_to_char(buf) + (num_tags + i) * 4;
91 const char label[] = {label_ptr[0], label_ptr[1], label_ptr[2], label_ptr[3], 0};
92 auto ret = tags.emplace(label, std::vector<uint8_t>(buf + start, buf + end));
93 if(!ret.second) {
94 throw Roughtime::Roughtime_Error(std::string("Map has duplicated tag: ") + label);
95 }
96 start = static_cast<uint32_t>(end);
97 }
98 return tags;
99}
100
101template <typename T>
102T get(const std::map<std::string, std::vector<uint8_t>>& map, const std::string& label) {
103 const auto& tag = map.find(label);
104 if(tag == map.end()) {
105 throw Roughtime::Roughtime_Error("Tag " + label + " not found");
106 }
107 if(tag->second.size() != sizeof(T)) {
108 throw Roughtime::Roughtime_Error("Tag " + label + " has unexpected size");
109 }
110 return copy<T>(tag->second.data());
111}
112
113const std::vector<uint8_t>& get_v(const std::map<std::string, std::vector<uint8_t>>& map, const std::string& label) {
114 const auto& tag = map.find(label);
115 if(tag == map.end()) {
116 throw Roughtime::Roughtime_Error("Tag " + label + " not found");
117 }
118 return tag->second;
119}
120
121bool verify_signature(const std::array<uint8_t, 32>& pk,
122 const std::vector<uint8_t>& payload,
123 const std::array<uint8_t, 64>& signature) {
124 constexpr std::string_view context("RoughTime v1 response signature\0", 32);
125 const Ed25519_PublicKey key(std::vector<uint8_t>(pk.data(), pk.data() + pk.size()));
126 PK_Verifier verifier(key, "Pure");
127 verifier.update(context);
128 verifier.update(payload);
129 return verifier.check_signature(signature.data(), signature.size());
130}
131
132std::array<uint8_t, 64> hashLeaf(const std::array<uint8_t, 64>& leaf) {
133 std::array<uint8_t, 64> ret{};
134 auto hash = HashFunction::create_or_throw("SHA-512");
135 hash->update(0);
136 hash->update(leaf.data(), leaf.size());
137 hash->final(ret.data());
138 return ret;
139}
140
141void hashNode(std::span<uint8_t, 64> hash, std::span<const uint8_t, 64> node, bool reverse) {
142 auto h = HashFunction::create_or_throw("SHA-512");
143 h->update(1);
144 if(reverse) {
145 h->update(node.data(), node.size());
146 h->update(hash.data(), hash.size());
147 } else {
148 h->update(hash.data(), hash.size());
149 h->update(node.data(), node.size());
150 }
151 h->final(hash.data());
152}
153
154template <size_t N, typename T>
155std::array<uint8_t, N> vector_to_array(std::vector<uint8_t, T> vec) {
156 if(vec.size() != N) {
157 throw std::logic_error("Invalid vector size");
158 }
159 return typecast_copy<std::array<uint8_t, N>>(vec.data());
160}
161} // namespace
162
163namespace Roughtime {
164
165Nonce::Nonce(const std::vector<uint8_t>& nonce) : m_nonce{} {
166 if(nonce.size() != 64) {
167 throw Invalid_Argument("Roughtime nonce must be 64 bytes long");
168 }
169 m_nonce = typecast_copy<std::array<uint8_t, 64>>(nonce.data());
170}
171
172Nonce::Nonce(RandomNumberGenerator& rng) : m_nonce(rng.random_array<64>()) {}
173
174std::array<uint8_t, request_min_size> encode_request(const Nonce& nonce) {
175 std::array<uint8_t, request_min_size> buf = {{2, 0, 0, 0, 64, 0, 0, 0, 'N', 'O', 'N', 'C', 'P', 'A', 'D', 0xff}};
176 std::memcpy(buf.data() + 16, nonce.get_nonce().data(), nonce.get_nonce().size());
177 std::memset(buf.data() + 16 + nonce.get_nonce().size(), 0, buf.size() - 16 - nonce.get_nonce().size());
178 return buf;
179}
180
181Response Response::from_bits(const std::vector<uint8_t>& response, const Nonce& nonce) {
182 const auto response_v = unpack_roughtime_packet(response);
183 const auto cert = unpack_roughtime_packet(get_v(response_v, "CERT"));
184 const auto cert_dele = get<std::array<uint8_t, 72>>(cert, "DELE");
185 const auto cert_sig = get<std::array<uint8_t, 64>>(cert, "SIG");
186 const auto cert_dele_v = unpack_roughtime_packet(cert_dele);
187 const auto srep = get_v(response_v, "SREP");
188 const auto srep_v = unpack_roughtime_packet(srep);
189
190 const auto cert_dele_pubk = get<std::array<uint8_t, 32>>(cert_dele_v, "PUBK");
191 const auto sig = get<std::array<uint8_t, 64>>(response_v, "SIG");
192 if(!verify_signature(cert_dele_pubk, srep, sig)) {
193 throw Roughtime_Error("Response signature invalid");
194 }
195
196 const auto indx = get<uint32_t>(response_v, "INDX");
197 const auto path = get_v(response_v, "PATH");
198 const auto srep_root = get<std::array<uint8_t, 64>>(srep_v, "ROOT");
199 const size_t size = path.size();
200 const size_t levels = size / 64;
201
202 if(size % 64 != 0) {
203 throw Roughtime_Error("Merkle tree path size must be multiple of 64 bytes");
204 }
205 if(levels >= 32 || indx >= (uint32_t(1) << levels)) {
206 throw Roughtime_Error("Merkle tree path is too short");
207 }
208
209 BufferSlicer slicer(path);
210 auto hash = hashLeaf(nonce.get_nonce());
211 auto index = indx;
212 for(std::size_t level = 0; level < levels; ++level) {
213 hashNode(hash, slicer.take<64>(), index % 2 == 1);
214 index >>= 1;
215 }
216
217 if(srep_root != hash) {
218 throw Roughtime_Error("Nonce verification failed");
219 }
220
221 const auto cert_dele_maxt = sys_microseconds64(get<microseconds64>(cert_dele_v, "MAXT"));
222 const auto cert_dele_mint = sys_microseconds64(get<microseconds64>(cert_dele_v, "MINT"));
223 const auto srep_midp = sys_microseconds64(get<microseconds64>(srep_v, "MIDP"));
224 const auto srep_radi = get<microseconds32>(srep_v, "RADI");
225 if(srep_midp < cert_dele_mint) {
226 throw Roughtime_Error("Midpoint earlier than delegation start");
227 }
228 if(srep_midp > cert_dele_maxt) {
229 throw Roughtime_Error("Midpoint later than delegation end");
230 }
231 return {cert_dele, cert_sig, srep_midp, srep_radi};
232}
233
235 constexpr std::string_view context("RoughTime v1 delegation signature--\0", 36);
236 PK_Verifier verifier(pk, "Pure");
237 verifier.update(context);
238 verifier.update(m_cert_dele.data(), m_cert_dele.size());
239 return verifier.check_signature(m_cert_sig.data(), m_cert_sig.size());
240}
241
242Nonce nonce_from_blind(const std::vector<uint8_t>& previous_response, const Nonce& blind) {
243 std::array<uint8_t, 64> ret{};
244 const auto blind_arr = blind.get_nonce();
245 auto hash = HashFunction::create_or_throw("SHA-512");
246 hash->update(previous_response);
247 hash->update(hash->final());
248 hash->update(blind_arr.data(), blind_arr.size());
249 hash->final(ret.data());
250
251 return Nonce(ret);
252}
253
254Chain::Chain(std::string_view str) {
255 std::istringstream ss{std::string(str)}; // FIXME C++23 avoid copy
256 const std::string ERROR_MESSAGE = "Line does not have 4 space separated fields";
257 for(std::string s; std::getline(ss, s);) {
258 size_t start = 0;
259 size_t end = 0;
260 end = s.find(' ', start);
261 if(end == std::string::npos) {
262 throw Decoding_Error(ERROR_MESSAGE);
263 }
264 const auto publicKeyType = s.substr(start, end - start);
265 if(publicKeyType != "ed25519") {
266 throw Not_Implemented("Only ed25519 publicKeyType is implemented");
267 }
268
269 start = end + 1;
270 end = s.find(' ', start);
271 if(end == std::string::npos) {
272 throw Decoding_Error(ERROR_MESSAGE);
273 }
274 const auto serverPublicKey = Ed25519_PublicKey(base64_decode(s.substr(start, end - start)));
275
276 start = end + 1;
277 end = s.find(' ', start);
278 if(end == std::string::npos) {
279 throw Decoding_Error(ERROR_MESSAGE);
280 }
281 if((end - start) != 88) {
282 throw Decoding_Error("Nonce has invalid length");
283 }
284 const auto vec = base64_decode(s.substr(start, end - start));
285 const auto nonceOrBlind = Nonce(vector_to_array<64>(base64_decode(s.substr(start, end - start))));
286
287 start = end + 1;
288 end = s.find(' ', start);
289 if(end != std::string::npos) {
290 throw Decoding_Error(ERROR_MESSAGE);
291 }
292 const auto response = unlock(base64_decode(s.substr(start)));
293
294 m_links.push_back({response, serverPublicKey, nonceOrBlind});
295 }
296}
297
298std::vector<Response> Chain::responses() const {
299 std::vector<Response> responses;
300 for(size_t i = 0; i < m_links.size(); ++i) {
301 const auto& l = m_links[i];
302 const auto nonce = i > 0 ? nonce_from_blind(m_links[i - 1].response(), l.nonce_or_blind()) : l.nonce_or_blind();
303 const auto response = Response::from_bits(l.response(), nonce);
304 if(!response.validate(l.public_key())) {
305 throw Roughtime_Error("Invalid signature or public key");
306 }
307 responses.push_back(response);
308 }
309 return responses;
310}
311
312Nonce Chain::next_nonce(const Nonce& blind) const {
313 return m_links.empty() ? blind : nonce_from_blind(m_links.back().response(), blind);
314}
315
316void Chain::append(const Link& new_link, size_t max_chain_size) {
317 if(max_chain_size <= 0) {
318 throw Invalid_Argument("Max chain size must be positive");
319 }
320
321 while(m_links.size() >= max_chain_size) {
322 if(m_links.size() == 1) {
323 auto new_link_updated = new_link;
324 new_link_updated.nonce_or_blind() =
325 nonce_from_blind(m_links[0].response(), new_link.nonce_or_blind()); //we need to convert blind to nonce
326 m_links.clear();
327 m_links.push_back(new_link_updated);
328 return;
329 }
330 if(m_links.size() >= 2) {
331 m_links[1].nonce_or_blind() =
332 nonce_from_blind(m_links[0].response(), m_links[1].nonce_or_blind()); //we need to convert blind to nonce
333 }
334 m_links.erase(m_links.begin());
335 }
336 m_links.push_back(new_link);
337}
338
339std::string Chain::to_string() const {
340 std::string s;
341 s.reserve((7 + 1 + 88 + 1 + 44 + 1 + 480) * m_links.size());
342 for(const auto& link : m_links) {
343 s += "ed25519";
344 s += ' ';
345 s += base64_encode(link.public_key().get_public_key());
346 s += ' ';
347 s += base64_encode(link.nonce_or_blind().get_nonce().data(), link.nonce_or_blind().get_nonce().size());
348 s += ' ';
349 s += base64_encode(link.response());
350 s += '\n';
351 }
352 return s;
353}
354
355std::vector<uint8_t> online_request(std::string_view uri, const Nonce& nonce, std::chrono::milliseconds timeout) {
356 const std::chrono::system_clock::time_point start_time = std::chrono::system_clock::now();
357 auto socket = OS::open_socket_udp(uri, timeout);
358 if(!socket) {
359 throw Not_Implemented("No socket support enabled in build");
360 }
361
362 const auto encoded = encode_request(nonce);
363 socket->write(encoded.data(), encoded.size());
364
365 if(std::chrono::system_clock::now() - start_time > timeout) {
366 throw System_Error("Timeout during socket write");
367 }
368
369 std::vector<uint8_t> buffer;
370 buffer.resize(360 + 64 * 10 + 1); //response basic size is 360 bytes + 64 bytes for each level of merkle tree
371 //add one additional byte to be able to differentiate if datagram got truncated
372 const auto n = socket->read(buffer.data(), buffer.size());
373
374 if(n == 0 || std::chrono::system_clock::now() - start_time > timeout) {
375 throw System_Error("Timeout waiting for response");
376 }
377
378 if(n == buffer.size()) {
379 throw System_Error("Buffer too small");
380 }
381
382 buffer.resize(n);
383 return buffer;
384}
385
386std::vector<Server_Information> servers_from_str(std::string_view str) {
387 std::vector<Server_Information> servers;
388 std::istringstream ss{std::string(str)}; // FIXME C++23 avoid copy
389
390 const std::string ERROR_MESSAGE = "Line does not have at least 5 space separated fields";
391 for(std::string s; std::getline(ss, s);) {
392 size_t start = 0;
393 size_t end = 0;
394 end = s.find(' ', start);
395 if(end == std::string::npos) {
396 throw Decoding_Error(ERROR_MESSAGE);
397 }
398 const auto name = s.substr(start, end - start);
399
400 start = end + 1;
401 end = s.find(' ', start);
402 if(end == std::string::npos) {
403 throw Decoding_Error(ERROR_MESSAGE);
404 }
405 const auto publicKeyType = s.substr(start, end - start);
406 if(publicKeyType != "ed25519") {
407 throw Not_Implemented("Only ed25519 publicKeyType is implemented");
408 }
409
410 start = end + 1;
411 end = s.find(' ', start);
412
413 if(end == std::string::npos) {
414 throw Decoding_Error(ERROR_MESSAGE);
415 }
416 const auto publicKeyBase64 = s.substr(start, end - start);
417 const auto publicKey = Ed25519_PublicKey(base64_decode(publicKeyBase64));
418
419 start = end + 1;
420 end = s.find(' ', start);
421 if(end == std::string::npos) {
422 throw Decoding_Error(ERROR_MESSAGE);
423 }
424 const auto protocol = s.substr(start, end - start);
425 if(protocol != "udp") {
426 throw Not_Implemented("Only UDP protocol is implemented");
427 }
428
429 const auto addresses = [&]() {
430 std::vector<std::string> addr;
431 for(;;) {
432 start = end + 1;
433 end = s.find(' ', start);
434 const auto address = s.substr(start, (end == std::string::npos) ? std::string::npos : end - start);
435 if(address.empty()) {
436 return addr;
437 }
438 addr.push_back(address);
439 if(end == std::string::npos) {
440 return addr;
441 }
442 }
443 }();
444 if(addresses.empty()) {
445 throw Decoding_Error(ERROR_MESSAGE);
446 }
447
448 servers.push_back({name, publicKey, addresses});
449 }
450 return servers;
451}
452
453} // namespace Roughtime
454
455} // namespace Botan
std::span< const uint8_t > take(const size_t count)
static std::unique_ptr< HashFunction > create_or_throw(std::string_view algo_spec, std::string_view provider="")
Definition hash.cpp:308
void update(uint8_t in)
Definition pubkey.h:339
bool check_signature(const uint8_t sig[], size_t length)
Definition pubkey.cpp:455
void append(const Link &new_link, size_t max_chain_size)
std::string to_string() const
Nonce next_nonce(const Nonce &blind) const
std::vector< Response > responses() const
const std::array< uint8_t, 64 > & get_nonce() const
Definition roughtime.h:85
std::chrono::time_point< std::chrono::system_clock, microseconds64 > sys_microseconds64
Definition roughtime.h:118
static Response from_bits(const std::vector< uint8_t > &response, const Nonce &nonce)
bool validate(const Ed25519_PublicKey &pk) const
std::unique_ptr< SocketUDP > BOTAN_TEST_API open_socket_udp(std::string_view hostname, std::string_view service, std::chrono::microseconds timeout)
std::vector< Server_Information > servers_from_str(std::string_view str)
std::vector< uint8_t > online_request(std::string_view uri, const Nonce &nonce, std::chrono::milliseconds timeout)
Nonce nonce_from_blind(const std::vector< uint8_t > &previous_response, const Nonce &blind)
std::array< uint8_t, request_min_size > encode_request(const Nonce &nonce)
const unsigned request_min_size
Definition roughtime.h:26
constexpr std::optional< T > checked_add(T a, T b)
Definition int_utils.h:19
constexpr void typecast_copy(ToR &&out, const FromR &in)
Definition mem_ops.h:176
size_t base64_encode(char out[], const uint8_t in[], size_t input_length, size_t &input_consumed, bool final_inputs)
Definition base64.cpp:161
size_t base64_decode(uint8_t out[], const char in[], size_t input_length, size_t &input_consumed, bool final_inputs, bool ignore_ws)
Definition base64.cpp:169
std::vector< T > unlock(const secure_vector< T > &in)
Definition secmem.h:155
bool verify_signature(std::span< const uint8_t, ED448_LEN > pk, bool phflag, std::span< const uint8_t > context, std::span< const uint8_t > sig, std::span< const uint8_t > msg)
Verify a signature(RFC 8032 5.2.7).
const char * cast_uint8_ptr_to_char(const uint8_t *b)
Definition mem_ops.h:323