blob: 523d90dc9577335fd18c63497c7d7e6c6f224b7b [file] [log] [blame]
Adrien Béraud612b55b2023-05-29 10:42:04 -04001/*
Adrien Béraudcb753622023-07-17 22:32:49 -04002 * Copyright (C) 2004-2023 Savoir-faire Linux Inc.
Adrien Béraud612b55b2023-05-29 10:42:04 -04003 *
Adrien Béraudcb753622023-07-17 22:32:49 -04004 * This program is free software: you can redistribute it and/or modify
Adrien Béraud612b55b2023-05-29 10:42:04 -04005 * it under the terms of the GNU General Public License as published by
Adrien Béraudcb753622023-07-17 22:32:49 -04006 * the Free Software Foundation, either version 3 of the License, or
Adrien Béraud612b55b2023-05-29 10:42:04 -04007 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Adrien Béraudcb753622023-07-17 22:32:49 -040011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Adrien Béraud612b55b2023-05-29 10:42:04 -040012 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17#include "connectionmanager.h"
18#include "peer_connection.h"
19#include "upnp/upnp_control.h"
20#include "certstore.h"
21#include "fileutils.h"
22#include "sip_utils.h"
23#include "string_utils.h"
24
25#include <opendht/crypto.h>
26#include <opendht/thread_pool.h>
27#include <opendht/value.h>
28#include <asio.hpp>
29
30#include <algorithm>
31#include <mutex>
32#include <map>
33#include <condition_variable>
34#include <set>
35#include <charconv>
Morteza Namvar5f639522023-07-04 17:08:58 -040036#include <fstream>
Adrien Béraud612b55b2023-05-29 10:42:04 -040037
Adrien Béraud1ae60aa2023-07-07 09:55:09 -040038namespace dhtnet {
Adrien Béraud612b55b2023-05-29 10:42:04 -040039static constexpr std::chrono::seconds DHT_MSG_TIMEOUT {30};
40static constexpr uint64_t ID_MAX_VAL = 9007199254740992;
41
42using ValueIdDist = std::uniform_int_distribution<dht::Value::Id>;
Adrien Béraud75754b22023-10-17 09:16:06 -040043
Amna31791e52023-08-03 12:40:57 -040044std::string
45callbackIdToString(const dhtnet::DeviceId& did, const dht::Value::Id& vid)
46{
47 return fmt::format("{} {}", did.to_view(), vid);
48}
Adrien Béraud612b55b2023-05-29 10:42:04 -040049
Adrien Béraud75754b22023-10-17 09:16:06 -040050std::pair<dhtnet::DeviceId, dht::Value::Id> parseCallbackId(std::string_view ci)
Amna31791e52023-08-03 12:40:57 -040051{
52 auto sep = ci.find(' ');
53 std::string_view deviceIdString = ci.substr(0, sep);
54 std::string_view vidString = ci.substr(sep + 1);
55
56 dhtnet::DeviceId deviceId(deviceIdString);
57 dht::Value::Id vid = std::stoul(std::string(vidString), nullptr, 10);
Adrien Béraud75754b22023-10-17 09:16:06 -040058 return {deviceId, vid};
Amna31791e52023-08-03 12:40:57 -040059}
Amna81221ad2023-09-14 17:33:26 -040060
61std::shared_ptr<ConnectionManager::Config>
62createConfig(std::shared_ptr<ConnectionManager::Config> config_)
63{
64 if (!config_->certStore){
65 config_->certStore = std::make_shared<dhtnet::tls::CertificateStore>("client", config_->logger);
66 }
67 if (!config_->dht) {
68 dht::DhtRunner::Config dhtConfig;
69 dhtConfig.dht_config.id = config_->id;
70 dhtConfig.threaded = true;
71 dht::DhtRunner::Context dhtContext;
72 dhtContext.certificateStore = [c = config_->certStore](const dht::InfoHash& pk_id) {
73 std::vector<std::shared_ptr<dht::crypto::Certificate>> ret;
74 if (auto cert = c->getCertificate(pk_id.toString()))
75 ret.emplace_back(std::move(cert));
76 return ret;
77 };
78 config_->dht = std::make_shared<dht::DhtRunner>();
79 config_->dht->run(dhtConfig, std::move(dhtContext));
80 config_->dht->bootstrap("bootstrap.jami.net");
81 }
82 if (!config_->factory){
83 config_->factory = std::make_shared<IceTransportFactory>(config_->logger);
84 }
85 return config_;
86}
87
Adrien Béraud612b55b2023-05-29 10:42:04 -040088struct ConnectionInfo
89{
90 ~ConnectionInfo()
91 {
92 if (socket_)
93 socket_->join();
94 }
95
96 std::mutex mutex_ {};
97 bool responseReceived_ {false};
98 PeerConnectionRequest response_ {};
99 std::unique_ptr<IceTransport> ice_ {nullptr};
100 // Used to store currently non ready TLS Socket
101 std::unique_ptr<TlsSocketEndpoint> tls_ {nullptr};
102 std::shared_ptr<MultiplexedSocket> socket_ {};
Adrien Béraud75754b22023-10-17 09:16:06 -0400103 std::set<dht::Value::Id> cbIds_ {};
Adrien Béraud612b55b2023-05-29 10:42:04 -0400104
105 std::function<void(bool)> onConnected_;
106 std::unique_ptr<asio::steady_timer> waitForAnswer_ {};
Adrien Béraud75754b22023-10-17 09:16:06 -0400107
108 void shutdown() {
109 std::lock_guard<std::mutex> lk(mutex_);
110 if (tls_)
111 tls_->shutdown();
112 if (socket_)
113 socket_->shutdown();
114 if (waitForAnswer_)
115 waitForAnswer_->cancel();
116 if (ice_) {
117 dht::ThreadPool::io().run(
118 [ice = std::shared_ptr<IceTransport>(std::move(ice_))] {});
119 }
120 }
121
122 std::map<std::string, std::string>
123 getInfo(const DeviceId& deviceId, dht::Value::Id valueId, tls::CertificateStore& certStore) const
124 {
125 std::map<std::string, std::string> connectionInfo;
126 connectionInfo["id"] = callbackIdToString(deviceId, valueId);
127 connectionInfo["device"] = deviceId.toString();
128 auto cert = tls_ ? tls_->peerCertificate() : (socket_ ? socket_->peerCertificate() : nullptr);
129 if (not cert)
130 cert = certStore.getCertificate(deviceId.toString());
131 if (cert) {
132 connectionInfo["peer"] = cert->issuer->getId().toString();
133 }
134 if (socket_) {
135 connectionInfo["status"] = std::to_string(static_cast<int>(ConnectionStatus::Connected));
136 connectionInfo["remoteAddress"] = socket_->getRemoteAddress();
137 } else if (tls_) {
138 connectionInfo["status"] = std::to_string(static_cast<int>(ConnectionStatus::TLS));
139 connectionInfo["remoteAddress"] = tls_->getRemoteAddress();
140 } else if(ice_) {
141 connectionInfo["status"] = std::to_string(static_cast<int>(ConnectionStatus::ICE));
142 connectionInfo["remoteAddress"] = ice_->getRemoteAddress(ICE_COMP_ID_SIP_TRANSPORT);
143 }
144 return connectionInfo;
145 }
Adrien Béraud612b55b2023-05-29 10:42:04 -0400146};
147
Adrien Béraud75754b22023-10-17 09:16:06 -0400148struct PendingCb {
149 std::string name;
150 ConnectCallback cb;
Adrien Béraudb941e922023-10-16 12:56:14 -0400151 bool requested {false};
Adrien Béraud75754b22023-10-17 09:16:06 -0400152};
153
154struct DeviceInfo {
155 const DeviceId deviceId;
156 mutable std::mutex mtx_ {};
157 std::map<dht::Value::Id, std::shared_ptr<ConnectionInfo>> info;
158 std::map<dht::Value::Id, PendingCb> connecting;
159 std::map<dht::Value::Id, PendingCb> waiting;
160 DeviceInfo(DeviceId id) : deviceId {id} {}
161
162 inline bool isConnecting() const {
163 return !connecting.empty() || !waiting.empty();
164 }
165
166 inline bool empty() const {
167 return info.empty() && connecting.empty() && waiting.empty();
168 }
169
170 dht::Value::Id newId(std::mt19937_64& rand) const {
171 ValueIdDist dist(1, ID_MAX_VAL);
172 dht::Value::Id id;
173 do {
174 id = dist(rand);
175 } while (info.find(id) != info.end()
176 || connecting.find(id) != connecting.end()
177 || waiting.find(id) != waiting.end());
178 return id;
179 }
180
181 std::shared_ptr<ConnectionInfo> getConnectedInfo() const {
182 for (auto& [id, ci] : info) {
183 if (ci->socket_)
184 return ci;
185 }
186 return {};
187 }
188
189 std::vector<PendingCb> extractPendingOperations(dht::Value::Id vid, const std::shared_ptr<ChannelSocket>& sock, bool accepted = true)
190 {
191 std::vector<PendingCb> ret;
192 if (vid == 0) {
193 // Extract all pending callbacks
194 ret.reserve(connecting.size() + waiting.size());
195 for (auto& [vid, cb] : connecting)
196 ret.emplace_back(std::move(cb));
197 connecting.clear();
198 for (auto& [vid, cb] : waiting)
199 ret.emplace_back(std::move(cb));
200 waiting.clear();
201 } else if (auto n = waiting.extract(vid)) {
202 // If it's a waiting operation, just move it
203 ret.emplace_back(std::move(n.mapped()));
204 } else if (auto n = connecting.extract(vid)) {
205 ret.emplace_back(std::move(n.mapped()));
206 // If sock is nullptr, execute if it's the last connecting operation
207 // If accepted is false, it means that underlying socket is ok, but channel is declined
208 if (!sock && connecting.empty() && accepted) {
209 for (auto& [vid, cb] : waiting)
210 ret.emplace_back(std::move(cb));
211 waiting.clear();
212 for (auto& [vid, cb] : connecting)
213 ret.emplace_back(std::move(cb));
214 connecting.clear();
215 }
216 }
217 return ret;
218 }
219
220 std::vector<std::shared_ptr<ConnectionInfo>> extractUnusedConnections() {
221 std::vector<std::shared_ptr<ConnectionInfo>> unused {};
222 for (auto& [id, info] : info)
223 unused.emplace_back(std::move(info));
224 info.clear();
225 return unused;
226 }
227
228 void executePendingOperations(std::unique_lock<std::mutex>& lock, dht::Value::Id vid, const std::shared_ptr<ChannelSocket>& sock, bool accepted = true) {
229 auto ops = extractPendingOperations(vid, sock, accepted);
230 lock.unlock();
231 for (auto& cb : ops)
232 cb.cb(sock, deviceId);
233 }
234 void executePendingOperations(dht::Value::Id vid, const std::shared_ptr<ChannelSocket>& sock, bool accepted = true) {
235 std::unique_lock<std::mutex> lock(mtx_);
236 executePendingOperations(lock, vid, sock, accepted);
237 }
238
Adrien Béraudb941e922023-10-16 12:56:14 -0400239 bool isConnecting(const std::string& name) const {
Adrien Béraud75754b22023-10-17 09:16:06 -0400240 for (const auto& [id, pc]: connecting)
Adrien Béraudb941e922023-10-16 12:56:14 -0400241 if (pc.name == name)
242 return true;
Adrien Béraud75754b22023-10-17 09:16:06 -0400243 for (const auto& [id, pc]: waiting)
Adrien Béraudb941e922023-10-16 12:56:14 -0400244 if (pc.name == name)
245 return true;
246 return false;
247 }
248 std::map<dht::Value::Id, std::string> requestPendingOps() {
249 std::map<dht::Value::Id, std::string> ret;
250 for (auto& [id, pc]: connecting) {
251 if (!pc.requested) {
252 ret[id] = pc.name;
253 pc.requested = true;
254 }
255 }
256 for (auto& [id, pc]: waiting) {
257 if (!pc.requested) {
258 ret[id] = pc.name;
259 pc.requested = true;
260 }
261 }
Adrien Béraud75754b22023-10-17 09:16:06 -0400262 return ret;
263 }
264
265 std::vector<std::map<std::string, std::string>>
266 getConnectionList(tls::CertificateStore& certStore) const {
267 std::lock_guard<std::mutex> lk(mtx_);
268 std::vector<std::map<std::string, std::string>> ret;
Adrien Béraudd5ec7a82023-10-28 18:07:03 -0400269 ret.reserve(info.size() + connecting.size() + waiting.size());
Adrien Béraud75754b22023-10-17 09:16:06 -0400270 for (auto& [id, ci] : info) {
271 std::lock_guard<std::mutex> lk(ci->mutex_);
272 ret.emplace_back(ci->getInfo(deviceId, id, certStore));
273 }
274 auto cert = certStore.getCertificate(deviceId.toString());
275 for (const auto& [vid, ci] : connecting) {
276 ret.emplace_back(std::map<std::string, std::string> {
277 {"id", callbackIdToString(deviceId, vid)},
278 {"status", std::to_string(static_cast<int>(ConnectionStatus::Connecting))},
279 {"device", deviceId.toString()},
280 {"peer", cert ? cert->issuer->getId().toString() : ""}
281 });
282 }
283 for (const auto& [vid, ci] : waiting) {
284 ret.emplace_back(std::map<std::string, std::string> {
285 {"id", callbackIdToString(deviceId, vid)},
286 {"status", std::to_string(static_cast<int>(ConnectionStatus::Waiting))},
287 {"device", deviceId.toString()},
288 {"peer", cert ? cert->issuer->getId().toString() : ""}
289 });
290 }
291 return ret;
292 }
293};
294
295class DeviceInfoSet {
296public:
297 std::shared_ptr<DeviceInfo> getDeviceInfo(const DeviceId& deviceId) {
298 std::lock_guard<std::mutex> lk(mtx_);
299 auto it = infos_.find(deviceId);
300 if (it != infos_.end())
301 return it->second;
302 return {};
303 }
304
305 std::vector<std::shared_ptr<DeviceInfo>> getDeviceInfos() {
306 std::vector<std::shared_ptr<DeviceInfo>> deviceInfos;
307 std::lock_guard<std::mutex> lk(mtx_);
308 deviceInfos.reserve(infos_.size());
309 for (auto& [deviceId, info] : infos_)
310 deviceInfos.emplace_back(info);
311 return deviceInfos;
312 }
313
314 std::shared_ptr<DeviceInfo> createDeviceInfo(const DeviceId& deviceId) {
315 std::lock_guard<std::mutex> lk(mtx_);
316 auto& info = infos_[deviceId];
317 if (!info)
318 info = std::make_shared<DeviceInfo>(deviceId);
319 return info;
320 }
321
322 bool removeDeviceInfo(const DeviceId& deviceId) {
323 std::lock_guard<std::mutex> lk(mtx_);
324 return infos_.erase(deviceId) != 0;
325 }
326
327 std::shared_ptr<ConnectionInfo> getInfo(const DeviceId& deviceId, const dht::Value::Id& id) {
328 if (auto info = getDeviceInfo(deviceId)) {
329 std::lock_guard<std::mutex> lk(info->mtx_);
330 auto it = info->info.find(id);
331 if (it != info->info.end())
332 return it->second;
333 }
334 return {};
335 }
336
337 std::vector<std::shared_ptr<ConnectionInfo>> getConnectedInfos() {
338 auto deviceInfos = getDeviceInfos();
339 std::vector<std::shared_ptr<ConnectionInfo>> ret;
340 ret.reserve(deviceInfos.size());
341 for (auto& info : deviceInfos) {
342 std::lock_guard<std::mutex> lk(info->mtx_);
343 for (auto& [id, ci] : info->info) {
344 if (ci->socket_)
345 ret.emplace_back(ci);
346 }
347 }
348 return ret;
349 }
350 std::vector<std::shared_ptr<DeviceInfo>> shutdown() {
351 std::vector<std::shared_ptr<DeviceInfo>> ret;
352 std::lock_guard<std::mutex> lk(mtx_);
353 ret.reserve(infos_.size());
354 for (auto& [deviceId, info] : infos_) {
355 ret.emplace_back(std::move(info));
356 }
357 infos_.clear();
358 return ret;
359 }
360
361private:
362 std::mutex mtx_ {};
363 std::map<DeviceId, std::shared_ptr<DeviceInfo>> infos_ {};
364};
365
366
Adrien Béraud612b55b2023-05-29 10:42:04 -0400367/**
368 * returns whether or not UPnP is enabled and active_
369 * ie: if it is able to make port mappings
370 */
371bool
372ConnectionManager::Config::getUPnPActive() const
373{
374 if (upnpCtrl)
375 return upnpCtrl->isReady();
376 return false;
377}
378
379class ConnectionManager::Impl : public std::enable_shared_from_this<ConnectionManager::Impl>
380{
381public:
382 explicit Impl(std::shared_ptr<ConnectionManager::Config> config_)
Amna81221ad2023-09-14 17:33:26 -0400383 : config_ {std::move(createConfig(config_))}
Adrien Béraudd8b6a402023-12-08 14:19:25 -0500384 , rand_ {config_->rng ? *config_->rng : dht::crypto::getSeededRandomEngine<std::mt19937_64>()}
Kateryna Kostiukc39f6672023-09-15 16:49:42 -0400385 {
Kateryna Kostiukbb300a12023-10-02 13:19:50 -0400386 loadTreatedMessages();
Amna81221ad2023-09-14 17:33:26 -0400387 if(!config_->ioContext) {
388 config_->ioContext = std::make_shared<asio::io_context>();
389 ioContextRunner_ = std::make_unique<std::thread>([context = config_->ioContext, l=config_->logger]() {
390 try {
391 auto work = asio::make_work_guard(*context);
392 context->run();
393 } catch (const std::exception& ex) {
394 if (l) l->error("Exception: {}", ex.what());
395 }
396 });
397 }
Kateryna Kostiukc39f6672023-09-15 16:49:42 -0400398 }
Amna81221ad2023-09-14 17:33:26 -0400399 ~Impl() {
400 if (ioContextRunner_) {
401 if (config_->logger) config_->logger->debug("ConnectionManager: stopping io_context thread");
402 config_->ioContext->stop();
403 ioContextRunner_->join();
404 ioContextRunner_.reset();
405 }
406 }
Adrien Béraud612b55b2023-05-29 10:42:04 -0400407
408 std::shared_ptr<dht::DhtRunner> dht() { return config_->dht; }
409 const dht::crypto::Identity& identity() const { return config_->id; }
410
Adrien Béraud75754b22023-10-17 09:16:06 -0400411 void shutdown()
Adrien Béraud612b55b2023-05-29 10:42:04 -0400412 {
Adrien Béraud75754b22023-10-17 09:16:06 -0400413 if (isDestroying_.exchange(true))
414 return;
415 std::vector<std::shared_ptr<ConnectionInfo>> unused;
416 std::vector<std::pair<DeviceId, std::vector<PendingCb>>> pending;
417 for (auto& dinfo: infos_.shutdown()) {
418 std::lock_guard<std::mutex> lk(dinfo->mtx_);
419 auto p = dinfo->extractPendingOperations(0, nullptr, false);
420 if (!p.empty())
421 pending.emplace_back(dinfo->deviceId, std::move(p));
422 auto uc = dinfo->extractUnusedConnections();
423 unused.insert(unused.end(), std::make_move_iterator(uc.begin()), std::make_move_iterator(uc.end()));
Adrien Béraud612b55b2023-05-29 10:42:04 -0400424 }
Adrien Béraud75754b22023-10-17 09:16:06 -0400425 for (auto& info: unused)
426 info->shutdown();
427 for (auto& op: pending)
428 for (auto& cb: op.second)
429 cb.cb(nullptr, op.first);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400430 if (!unused.empty())
Amna81221ad2023-09-14 17:33:26 -0400431 dht::ThreadPool::io().run([infos = std::move(unused)]() mutable {
432 infos.clear();
433 });
Adrien Béraud612b55b2023-05-29 10:42:04 -0400434 }
435
Adrien Béraud75754b22023-10-17 09:16:06 -0400436 void connectDeviceStartIce(const std::shared_ptr<ConnectionInfo>& info,
437 const std::shared_ptr<dht::crypto::PublicKey>& devicePk,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400438 const dht::Value::Id& vid,
439 const std::string& connType,
440 std::function<void(bool)> onConnected);
Adrien Béraud75754b22023-10-17 09:16:06 -0400441 void onResponse(const asio::error_code& ec, const std::weak_ptr<ConnectionInfo>& info, const DeviceId& deviceId, const dht::Value::Id& vid);
442 bool connectDeviceOnNegoDone(const std::weak_ptr<DeviceInfo>& dinfo,
443 const std::shared_ptr<ConnectionInfo>& info,
444 const DeviceId& deviceId,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400445 const std::string& name,
446 const dht::Value::Id& vid,
447 const std::shared_ptr<dht::crypto::Certificate>& cert);
448 void connectDevice(const DeviceId& deviceId,
449 const std::string& uri,
450 ConnectCallback cb,
451 bool noNewSocket = false,
452 bool forceNewSocket = false,
453 const std::string& connType = "");
Amna0cf544d2023-07-25 14:25:09 -0400454 void connectDevice(const dht::InfoHash& deviceId,
455 const std::string& uri,
456 ConnectCallbackLegacy cb,
457 bool noNewSocket = false,
458 bool forceNewSocket = false,
459 const std::string& connType = "");
460
Adrien Béraud612b55b2023-05-29 10:42:04 -0400461 void connectDevice(const std::shared_ptr<dht::crypto::Certificate>& cert,
462 const std::string& name,
463 ConnectCallback cb,
464 bool noNewSocket = false,
465 bool forceNewSocket = false,
466 const std::string& connType = "");
467 /**
468 * Send a ChannelRequest on the TLS socket. Triggers cb when ready
469 * @param sock socket used to send the request
470 * @param name channel's name
471 * @param vid channel's id
472 * @param deviceId to identify the linked ConnectCallback
473 */
Adrien Béraud75754b22023-10-17 09:16:06 -0400474 void sendChannelRequest(const std::weak_ptr<DeviceInfo>& dinfo,
Adrien Bérauda9ef2a52023-11-05 00:47:24 -0400475 const std::weak_ptr<ConnectionInfo>& cinfo,
Adrien Béraud75754b22023-10-17 09:16:06 -0400476 const std::shared_ptr<MultiplexedSocket>& sock,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400477 const std::string& name,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400478 const dht::Value::Id& vid);
479 /**
480 * Triggered when a PeerConnectionRequest comes from the DHT
481 */
482 void answerTo(IceTransport& ice,
483 const dht::Value::Id& id,
484 const std::shared_ptr<dht::crypto::PublicKey>& fromPk);
Adrien Béraud75754b22023-10-17 09:16:06 -0400485 bool onRequestStartIce(const std::shared_ptr<ConnectionInfo>& info, const PeerConnectionRequest& req);
486 bool onRequestOnNegoDone(const std::weak_ptr<DeviceInfo>& dinfo, const std::shared_ptr<ConnectionInfo>& info, const PeerConnectionRequest& req);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400487 void onDhtPeerRequest(const PeerConnectionRequest& req,
488 const std::shared_ptr<dht::crypto::Certificate>& cert);
Adrien Béraud75754b22023-10-17 09:16:06 -0400489 /**
490 * Triggered when a new TLS socket is ready to use
491 * @param ok If succeed
492 * @param deviceId Related device
493 * @param vid vid of the connection request
494 * @param name non empty if TLS was created by connectDevice()
495 */
496 void onTlsNegotiationDone(const std::shared_ptr<DeviceInfo>& dinfo,
497 const std::shared_ptr<ConnectionInfo>& info,
498 bool ok,
499 const DeviceId& deviceId,
500 const dht::Value::Id& vid,
501 const std::string& name = "");
Adrien Béraud612b55b2023-05-29 10:42:04 -0400502
Adrien Béraud75754b22023-10-17 09:16:06 -0400503 void addNewMultiplexedSocket(const std::weak_ptr<DeviceInfo>& dinfo, const DeviceId& deviceId, const dht::Value::Id& vid, const std::shared_ptr<ConnectionInfo>& info);
Adrien Béraud1addf952023-09-30 17:38:35 -0400504 void onPeerResponse(PeerConnectionRequest&& req);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400505 void onDhtConnected(const dht::crypto::PublicKey& devicePk);
506
Adrien Béraud75754b22023-10-17 09:16:06 -0400507
Adrien Béraud612b55b2023-05-29 10:42:04 -0400508 const std::shared_future<tls::DhParams> dhParams() const;
509 tls::CertificateStore& certStore() const { return *config_->certStore; }
510
511 mutable std::mutex messageMutex_ {};
512 std::set<std::string, std::less<>> treatedMessages_ {};
513
514 void loadTreatedMessages();
515 void saveTreatedMessages() const;
516
517 /// \return true if the given DHT message identifier has been treated
518 /// \note if message has not been treated yet this method st/ore this id and returns true at
519 /// further calls
520 bool isMessageTreated(std::string_view id);
521
522 const std::shared_ptr<dht::log::Logger>& logger() const { return config_->logger; }
523
524 /**
525 * Published IPv4/IPv6 addresses, used only if defined by the user in account
526 * configuration
527 *
528 */
529 IpAddr publishedIp_[2] {};
530
Adrien Béraud612b55b2023-05-29 10:42:04 -0400531 /**
532 * interface name on which this account is bound
533 */
534 std::string interface_ {"default"};
535
536 /**
537 * Get the local interface name on which this account is bound.
538 */
539 const std::string& getLocalInterface() const { return interface_; }
540
541 /**
542 * Get the published IP address, fallbacks to NAT if family is unspecified
543 * Prefers the usage of IPv4 if possible.
544 */
545 IpAddr getPublishedIpAddress(uint16_t family = PF_UNSPEC) const;
546
547 /**
548 * Set published IP address according to given family
549 */
550 void setPublishedAddress(const IpAddr& ip_addr);
551
552 /**
553 * Store the local/public addresses used to register
554 */
555 void storeActiveIpAddress(std::function<void()>&& cb = {});
556
557 /**
558 * Create and return ICE options.
559 */
560 void getIceOptions(std::function<void(IceTransportOptions&&)> cb) noexcept;
561 IceTransportOptions getIceOptions() const noexcept;
562
563 /**
564 * Inform that a potential peer device have been found.
565 * Returns true only if the device certificate is a valid device certificate.
566 * In that case (true is returned) the account_id parameter is set to the peer account ID.
567 */
568 static bool foundPeerDevice(const std::shared_ptr<dht::crypto::Certificate>& crt,
569 dht::InfoHash& account_id, const std::shared_ptr<Logger>& logger);
570
571 bool findCertificate(const dht::PkId& id,
572 std::function<void(const std::shared_ptr<dht::crypto::Certificate>&)>&& cb);
Sébastien Blin34086512023-07-25 09:52:14 -0400573 bool findCertificate(const dht::InfoHash& h, std::function<void(const std::shared_ptr<dht::crypto::Certificate>&)>&& cb);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400574
575 /**
576 * returns whether or not UPnP is enabled and active
577 * ie: if it is able to make port mappings
578 */
579 bool getUPnPActive() const;
580
Adrien Béraud612b55b2023-05-29 10:42:04 -0400581 std::shared_ptr<ConnectionManager::Config> config_;
Amna81221ad2023-09-14 17:33:26 -0400582 std::unique_ptr<std::thread> ioContextRunner_;
Adrien Béraud612b55b2023-05-29 10:42:04 -0400583
Adrien Béraud75754b22023-10-17 09:16:06 -0400584 mutable std::mutex randMtx_;
585 mutable std::mt19937_64 rand_;
Adrien Béraud612b55b2023-05-29 10:42:04 -0400586
587 iOSConnectedCallback iOSConnectedCb_ {};
588
Adrien Béraud75754b22023-10-17 09:16:06 -0400589 DeviceInfoSet infos_ {};
Adrien Béraud612b55b2023-05-29 10:42:04 -0400590
591 ChannelRequestCallback channelReqCb_ {};
592 ConnectionReadyCallback connReadyCb_ {};
593 onICERequestCallback iceReqCb_ {};
Adrien Béraud612b55b2023-05-29 10:42:04 -0400594 std::atomic_bool isDestroying_ {false};
595};
596
597void
598ConnectionManager::Impl::connectDeviceStartIce(
Adrien Béraud75754b22023-10-17 09:16:06 -0400599 const std::shared_ptr<ConnectionInfo>& info,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400600 const std::shared_ptr<dht::crypto::PublicKey>& devicePk,
601 const dht::Value::Id& vid,
602 const std::string& connType,
603 std::function<void(bool)> onConnected)
604{
605 auto deviceId = devicePk->getLongId();
Adrien Béraud612b55b2023-05-29 10:42:04 -0400606 if (!info) {
607 onConnected(false);
608 return;
609 }
610
611 std::unique_lock<std::mutex> lk(info->mutex_);
612 auto& ice = info->ice_;
613
614 if (!ice) {
615 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400616 config_->logger->error("[device {}] No ICE detected", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400617 onConnected(false);
618 return;
619 }
620
621 auto iceAttributes = ice->getLocalAttributes();
622 std::ostringstream icemsg;
623 icemsg << iceAttributes.ufrag << "\n";
624 icemsg << iceAttributes.pwd << "\n";
625 for (const auto& addr : ice->getLocalCandidates(1)) {
626 icemsg << addr << "\n";
627 if (config_->logger)
Sébastien Blinaec46fc2023-07-25 15:43:10 -0400628 config_->logger->debug("[device {}] Added local ICE candidate {}", deviceId, addr);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400629 }
630
631 // Prepare connection request as a DHT message
632 PeerConnectionRequest val;
633
634 val.id = vid; /* Random id for the message unicity */
635 val.ice_msg = icemsg.str();
636 val.connType = connType;
637
638 auto value = std::make_shared<dht::Value>(std::move(val));
639 value->user_type = "peer_request";
640
641 // Send connection request through DHT
642 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400643 config_->logger->debug("[device {}] Sending connection request", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400644 dht()->putEncrypted(dht::InfoHash::get(PeerConnectionRequest::key_prefix
645 + devicePk->getId().toString()),
646 devicePk,
647 value,
648 [l=config_->logger,deviceId](bool ok) {
649 if (l)
Adrien Béraud23852462023-07-22 01:46:27 -0400650 l->debug("[device {}] Sent connection request. Put encrypted {:s}",
Adrien Béraud612b55b2023-05-29 10:42:04 -0400651 deviceId,
652 (ok ? "ok" : "failed"));
653 });
654 // Wait for call to onResponse() operated by DHT
655 if (isDestroying_) {
656 onConnected(true); // This avoid to wait new negotiation when destroying
657 return;
658 }
659
660 info->onConnected_ = std::move(onConnected);
661 info->waitForAnswer_ = std::make_unique<asio::steady_timer>(*config_->ioContext,
662 std::chrono::steady_clock::now()
663 + DHT_MSG_TIMEOUT);
664 info->waitForAnswer_->async_wait(
Adrien Béraud75754b22023-10-17 09:16:06 -0400665 std::bind(&ConnectionManager::Impl::onResponse, this, std::placeholders::_1, info, deviceId, vid));
Adrien Béraud612b55b2023-05-29 10:42:04 -0400666}
667
668void
669ConnectionManager::Impl::onResponse(const asio::error_code& ec,
Adrien Béraud75754b22023-10-17 09:16:06 -0400670 const std::weak_ptr<ConnectionInfo>& winfo,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400671 const DeviceId& deviceId,
672 const dht::Value::Id& vid)
673{
674 if (ec == asio::error::operation_aborted)
675 return;
Adrien Béraud75754b22023-10-17 09:16:06 -0400676 auto info = winfo.lock();
Adrien Béraud612b55b2023-05-29 10:42:04 -0400677 if (!info)
678 return;
679
680 std::unique_lock<std::mutex> lk(info->mutex_);
681 auto& ice = info->ice_;
682 if (isDestroying_) {
683 info->onConnected_(true); // The destructor can wake a pending wait here.
684 return;
685 }
686 if (!info->responseReceived_) {
687 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400688 config_->logger->error("[device {}] no response from DHT to ICE request.", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400689 info->onConnected_(false);
690 return;
691 }
692
693 if (!info->ice_) {
694 info->onConnected_(false);
695 return;
696 }
697
698 auto sdp = ice->parseIceCandidates(info->response_.ice_msg);
699
700 if (not ice->startIce({sdp.rem_ufrag, sdp.rem_pwd}, std::move(sdp.rem_candidates))) {
701 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400702 config_->logger->warn("[device {}] start ICE failed", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400703 info->onConnected_(false);
704 return;
705 }
706 info->onConnected_(true);
707}
708
709bool
710ConnectionManager::Impl::connectDeviceOnNegoDone(
Adrien Béraud75754b22023-10-17 09:16:06 -0400711 const std::weak_ptr<DeviceInfo>& dinfo,
712 const std::shared_ptr<ConnectionInfo>& info,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400713 const DeviceId& deviceId,
714 const std::string& name,
715 const dht::Value::Id& vid,
716 const std::shared_ptr<dht::crypto::Certificate>& cert)
717{
Adrien Béraud612b55b2023-05-29 10:42:04 -0400718 if (!info)
719 return false;
720
721 std::unique_lock<std::mutex> lk {info->mutex_};
722 if (info->waitForAnswer_) {
723 // Negotiation is done and connected, go to handshake
724 // and avoid any cancellation at this point.
725 info->waitForAnswer_->cancel();
726 }
727 auto& ice = info->ice_;
728 if (!ice || !ice->isRunning()) {
729 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400730 config_->logger->error("[device {}] No ICE detected or not running", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400731 return false;
732 }
733
734 // Build socket
735 auto endpoint = std::make_unique<IceSocketEndpoint>(std::shared_ptr<IceTransport>(
736 std::move(ice)),
737 true);
738
739 // Negotiate a TLS session
740 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400741 config_->logger->debug("[device {}] Start TLS session - Initied by connectDevice(). Launched by channel: {} - vid: {}", deviceId, name, vid);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400742 info->tls_ = std::make_unique<TlsSocketEndpoint>(std::move(endpoint),
743 certStore(),
Adrien Béraud3f93ddf2023-07-21 14:46:22 -0400744 config_->ioContext,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400745 identity(),
746 dhParams(),
747 *cert);
748
749 info->tls_->setOnReady(
Adrien Béraud75754b22023-10-17 09:16:06 -0400750 [w = weak_from_this(), dinfo, winfo=std::weak_ptr(info), deviceId = std::move(deviceId), vid = std::move(vid), name = std::move(name)](
Adrien Béraud612b55b2023-05-29 10:42:04 -0400751 bool ok) {
Andreas Traczyk8b6e99f2024-01-04 17:12:55 -0500752 if (auto shared = w.lock())
Andreas Traczykb23278d2023-12-11 16:14:00 -0500753 if (auto info = winfo.lock()) {
754 shared->onTlsNegotiationDone(dinfo.lock(), info, ok, deviceId, vid, name);
Andreas Traczyk8b6e99f2024-01-04 17:12:55 -0500755 // Make another reference to info to avoid destruction (could lead to a deadlock/crash).
Andreas Traczykb23278d2023-12-11 16:14:00 -0500756 dht::ThreadPool::io().run([info = std::move(info)] {});
757 }
Adrien Béraud612b55b2023-05-29 10:42:04 -0400758 });
759 return true;
760}
761
762void
763ConnectionManager::Impl::connectDevice(const DeviceId& deviceId,
764 const std::string& name,
765 ConnectCallback cb,
766 bool noNewSocket,
767 bool forceNewSocket,
768 const std::string& connType)
769{
770 if (!dht()) {
771 cb(nullptr, deviceId);
772 return;
773 }
774 if (deviceId.toString() == identity().second->getLongId().toString()) {
775 cb(nullptr, deviceId);
776 return;
777 }
778 findCertificate(deviceId,
Adrien Béraud75754b22023-10-17 09:16:06 -0400779 [w = weak_from_this(),
Adrien Béraud612b55b2023-05-29 10:42:04 -0400780 deviceId,
781 name,
782 cb = std::move(cb),
783 noNewSocket,
784 forceNewSocket,
785 connType](const std::shared_ptr<dht::crypto::Certificate>& cert) {
786 if (!cert) {
787 if (auto shared = w.lock())
788 if (shared->config_->logger)
789 shared->config_->logger->error(
790 "No valid certificate found for device {}",
791 deviceId);
792 cb(nullptr, deviceId);
793 return;
794 }
795 if (auto shared = w.lock()) {
796 shared->connectDevice(cert,
797 name,
798 std::move(cb),
799 noNewSocket,
800 forceNewSocket,
801 connType);
802 } else
803 cb(nullptr, deviceId);
804 });
805}
806
807void
Amna0cf544d2023-07-25 14:25:09 -0400808ConnectionManager::Impl::connectDevice(const dht::InfoHash& deviceId,
809 const std::string& name,
810 ConnectCallbackLegacy cb,
811 bool noNewSocket,
812 bool forceNewSocket,
813 const std::string& connType)
814{
815 if (!dht()) {
816 cb(nullptr, deviceId);
817 return;
818 }
819 if (deviceId.toString() == identity().second->getLongId().toString()) {
820 cb(nullptr, deviceId);
821 return;
822 }
823 findCertificate(deviceId,
Adrien Béraud75754b22023-10-17 09:16:06 -0400824 [w = weak_from_this(),
Amna0cf544d2023-07-25 14:25:09 -0400825 deviceId,
826 name,
827 cb = std::move(cb),
828 noNewSocket,
829 forceNewSocket,
830 connType](const std::shared_ptr<dht::crypto::Certificate>& cert) {
831 if (!cert) {
832 if (auto shared = w.lock())
833 if (shared->config_->logger)
834 shared->config_->logger->error(
835 "No valid certificate found for device {}",
836 deviceId);
837 cb(nullptr, deviceId);
838 return;
839 }
840 if (auto shared = w.lock()) {
841 shared->connectDevice(cert,
842 name,
Adrien Béraudd78d1ac2023-08-25 10:43:33 -0400843 [cb, deviceId](const std::shared_ptr<ChannelSocket>& sock, const DeviceId& /*did*/){
Amna0cf544d2023-07-25 14:25:09 -0400844 cb(sock, deviceId);
845 },
846 noNewSocket,
847 forceNewSocket,
848 connType);
849 } else
850 cb(nullptr, deviceId);
851 });
852}
853
854void
Adrien Béraud612b55b2023-05-29 10:42:04 -0400855ConnectionManager::Impl::connectDevice(const std::shared_ptr<dht::crypto::Certificate>& cert,
856 const std::string& name,
857 ConnectCallback cb,
858 bool noNewSocket,
859 bool forceNewSocket,
860 const std::string& connType)
861{
862 // Avoid dht operation in a DHT callback to avoid deadlocks
Adrien Béraud75754b22023-10-17 09:16:06 -0400863 dht::ThreadPool::computation().run([w = weak_from_this(),
Adrien Béraud612b55b2023-05-29 10:42:04 -0400864 name = std::move(name),
865 cert = std::move(cert),
866 cb = std::move(cb),
867 noNewSocket,
868 forceNewSocket,
869 connType] {
870 auto devicePk = cert->getSharedPublicKey();
871 auto deviceId = devicePk->getLongId();
872 auto sthis = w.lock();
873 if (!sthis || sthis->isDestroying_) {
874 cb(nullptr, deviceId);
875 return;
876 }
Adrien Béraud75754b22023-10-17 09:16:06 -0400877 auto di = sthis->infos_.createDeviceInfo(deviceId);
878 std::unique_lock<std::mutex> lk(di->mtx_);
879
Adrien Béraud26365c92023-09-23 23:42:43 -0400880 dht::Value::Id vid;
Adrien Béraud612b55b2023-05-29 10:42:04 -0400881 {
Adrien Béraud75754b22023-10-17 09:16:06 -0400882 std::lock_guard<std::mutex> lkr(sthis->randMtx_);
883 vid = di->newId(sthis->rand_);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400884 }
885
Adrien Béraud75754b22023-10-17 09:16:06 -0400886 // Check if already connecting
887 auto isConnectingToDevice = di->isConnecting();
888 // Note: we can be in a state where first
889 // socket is negotiated and first channel is pending
890 // so return only after we checked the info
Adrien Béraudb941e922023-10-16 12:56:14 -0400891 auto& diw = (isConnectingToDevice && !forceNewSocket)
892 ? di->waiting[vid]
893 : di->connecting[vid];
894 diw = PendingCb {name, std::move(cb)};
895
Adrien Béraud612b55b2023-05-29 10:42:04 -0400896 // Check if already negotiated
Adrien Béraud75754b22023-10-17 09:16:06 -0400897 if (auto info = di->getConnectedInfo()) {
898 std::unique_lock<std::mutex> lkc(info->mutex_);
899 if (auto sock = info->socket_) {
900 info->cbIds_.emplace(vid);
Adrien Béraudb941e922023-10-16 12:56:14 -0400901 diw.requested = true;
Adrien Béraud75754b22023-10-17 09:16:06 -0400902 lkc.unlock();
903 lk.unlock();
Adrien Béraud612b55b2023-05-29 10:42:04 -0400904 if (sthis->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400905 sthis->config_->logger->debug("[device {}] Peer already connected. Add a new channel", deviceId);
Adrien Bérauda9ef2a52023-11-05 00:47:24 -0400906 sthis->sendChannelRequest(di, info, sock, name, vid);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400907 return;
908 }
909 }
910
911 if (isConnectingToDevice && !forceNewSocket) {
912 if (sthis->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400913 sthis->config_->logger->debug("[device {}] Already connecting, wait for ICE negotiation", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400914 return;
915 }
916 if (noNewSocket) {
917 // If no new socket is specified, we don't try to generate a new socket
Adrien Béraud75754b22023-10-17 09:16:06 -0400918 di->executePendingOperations(lk, vid, nullptr);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400919 return;
920 }
921
922 // Note: used when the ice negotiation fails to erase
923 // all stored structures.
Adrien Béraud75754b22023-10-17 09:16:06 -0400924 auto eraseInfo = [w, diw=std::weak_ptr(di), vid] {
925 if (auto di = diw.lock()) {
926 std::unique_lock<std::mutex> lk(di->mtx_);
927 di->info.erase(vid);
928 auto ops = di->extractPendingOperations(vid, nullptr);
929 if (di->empty()) {
930 if (auto shared = w.lock())
931 shared->infos_.removeDeviceInfo(di->deviceId);
932 }
933 lk.unlock();
934 for (const auto& op: ops)
935 op.cb(nullptr, di->deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400936 }
937 };
938
939 // If no socket exists, we need to initiate an ICE connection.
940 sthis->getIceOptions([w,
941 deviceId = std::move(deviceId),
942 devicePk = std::move(devicePk),
Adrien Béraud75754b22023-10-17 09:16:06 -0400943 diw=std::weak_ptr(di),
Adrien Béraud612b55b2023-05-29 10:42:04 -0400944 name = std::move(name),
945 cert = std::move(cert),
946 vid,
947 connType,
948 eraseInfo](auto&& ice_config) {
949 auto sthis = w.lock();
950 if (!sthis) {
951 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
952 return;
953 }
Adrien Béraud75754b22023-10-17 09:16:06 -0400954 auto info = std::make_shared<ConnectionInfo>();
955 auto winfo = std::weak_ptr(info);
Adrien Béraud612b55b2023-05-29 10:42:04 -0400956 ice_config.tcpEnable = true;
957 ice_config.onInitDone = [w,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400958 devicePk = std::move(devicePk),
959 name = std::move(name),
960 cert = std::move(cert),
Adrien Béraud75754b22023-10-17 09:16:06 -0400961 diw,
962 winfo = std::weak_ptr(info),
Adrien Béraud612b55b2023-05-29 10:42:04 -0400963 vid,
964 connType,
965 eraseInfo](bool ok) {
966 dht::ThreadPool::io().run([w = std::move(w),
967 devicePk = std::move(devicePk),
Adrien Béraud75754b22023-10-17 09:16:06 -0400968 vid,
969 winfo,
Adrien Béraud612b55b2023-05-29 10:42:04 -0400970 eraseInfo,
971 connType, ok] {
972 auto sthis = w.lock();
973 if (!ok && sthis && sthis->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -0400974 sthis->config_->logger->error("[device {}] Cannot initialize ICE session.", devicePk->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -0400975 if (!sthis || !ok) {
976 eraseInfo();
977 return;
978 }
Adrien Béraud75754b22023-10-17 09:16:06 -0400979 sthis->connectDeviceStartIce(winfo.lock(), devicePk, vid, connType, [=](bool ok) {
Adrien Béraud612b55b2023-05-29 10:42:04 -0400980 if (!ok) {
981 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
982 }
983 });
984 });
985 };
986 ice_config.onNegoDone = [w,
987 deviceId,
988 name,
989 cert = std::move(cert),
Adrien Béraud75754b22023-10-17 09:16:06 -0400990 diw,
991 winfo = std::weak_ptr(info),
Adrien Béraud612b55b2023-05-29 10:42:04 -0400992 vid,
993 eraseInfo](bool ok) {
994 dht::ThreadPool::io().run([w = std::move(w),
995 deviceId = std::move(deviceId),
996 name = std::move(name),
997 cert = std::move(cert),
Adrien Béraud75754b22023-10-17 09:16:06 -0400998 diw = std::move(diw),
999 winfo = std::move(winfo),
Adrien Béraud612b55b2023-05-29 10:42:04 -04001000 vid = std::move(vid),
1001 eraseInfo = std::move(eraseInfo),
1002 ok] {
1003 auto sthis = w.lock();
1004 if (!ok && sthis && sthis->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001005 sthis->config_->logger->error("[device {}] ICE negotiation failed.", deviceId);
Adrien Béraud75754b22023-10-17 09:16:06 -04001006 if (!sthis || !ok || !sthis->connectDeviceOnNegoDone(diw, winfo.lock(), deviceId, name, vid, cert))
Adrien Béraud612b55b2023-05-29 10:42:04 -04001007 eraseInfo();
1008 });
1009 };
1010
Adrien Béraud75754b22023-10-17 09:16:06 -04001011 if (auto di = diw.lock()) {
1012 std::lock_guard<std::mutex> lk(di->mtx_);
1013 di->info[vid] = info;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001014 }
1015 std::unique_lock<std::mutex> lk {info->mutex_};
1016 ice_config.master = false;
1017 ice_config.streamsCount = 1;
1018 ice_config.compCountPerStream = 1;
Sébastien Blin34086512023-07-25 09:52:14 -04001019 info->ice_ = sthis->config_->factory->createUTransport("");
Adrien Béraud612b55b2023-05-29 10:42:04 -04001020 if (!info->ice_) {
1021 if (sthis->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001022 sthis->config_->logger->error("[device {}] Cannot initialize ICE session.", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001023 eraseInfo();
1024 return;
1025 }
1026 // We need to detect any shutdown if the ice session is destroyed before going to the
1027 // TLS session;
1028 info->ice_->setOnShutdown([eraseInfo]() {
1029 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1030 });
Adrien Béraud4cda2d72023-06-01 15:44:43 -04001031 try {
1032 info->ice_->initIceInstance(ice_config);
1033 } catch (const std::exception& e) {
1034 if (sthis->config_->logger)
1035 sthis->config_->logger->error("{}", e.what());
1036 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1037 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001038 });
1039 });
1040}
1041
1042void
Adrien Bérauda9ef2a52023-11-05 00:47:24 -04001043ConnectionManager::Impl::sendChannelRequest(const std::weak_ptr<DeviceInfo>& dinfow,
1044 const std::weak_ptr<ConnectionInfo>& cinfow,
Adrien Béraud75754b22023-10-17 09:16:06 -04001045 const std::shared_ptr<MultiplexedSocket>& sock,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001046 const std::string& name,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001047 const dht::Value::Id& vid)
1048{
1049 auto channelSock = sock->addChannel(name);
Adrien Béraud9a4e98b2023-10-15 12:10:21 -04001050 if (!channelSock) {
1051 if (config_->logger)
1052 config_->logger->error("sendChannelRequest failed - cannot create channel");
Adrien Bérauda9ef2a52023-11-05 00:47:24 -04001053 if (auto info = dinfow.lock())
Adrien Béraud9a4e98b2023-10-15 12:10:21 -04001054 info->executePendingOperations(vid, nullptr);
1055 return;
1056 }
Adrien Bérauda9ef2a52023-11-05 00:47:24 -04001057 channelSock->onShutdown([dinfow, name, vid] {
1058 if (auto info = dinfow.lock())
Adrien Béraud75754b22023-10-17 09:16:06 -04001059 info->executePendingOperations(vid, nullptr);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001060 });
1061 channelSock->onReady(
Adrien Bérauda9ef2a52023-11-05 00:47:24 -04001062 [dinfow, cinfow, wSock = std::weak_ptr(channelSock), name, vid](bool accepted) {
1063 if (auto dinfo = dinfow.lock()) {
1064 dinfo->executePendingOperations(vid, accepted ? wSock.lock() : nullptr, accepted);
Sébastien Blinad161572024-01-31 14:14:51 -05001065 // Always lock top-down cinfo->mutex
1066 dht::ThreadPool::io().run([cinfow, vid]() {
1067 if (auto cinfo = cinfow.lock()) {
1068 std::lock_guard<std::mutex> lk(cinfo->mutex_);
1069 cinfo->cbIds_.erase(vid);
1070 }
1071 });
Adrien Bérauda9ef2a52023-11-05 00:47:24 -04001072 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001073 });
1074
1075 ChannelRequest val;
1076 val.name = channelSock->name();
1077 val.state = ChannelRequestState::REQUEST;
1078 val.channel = channelSock->channel();
1079 msgpack::sbuffer buffer(256);
1080 msgpack::pack(buffer, val);
1081
1082 std::error_code ec;
1083 int res = sock->write(CONTROL_CHANNEL,
1084 reinterpret_cast<const uint8_t*>(buffer.data()),
1085 buffer.size(),
1086 ec);
1087 if (res < 0) {
1088 // TODO check if we should handle errors here
1089 if (config_->logger)
Adrien Béraud75754b22023-10-17 09:16:06 -04001090 config_->logger->error("sendChannelRequest failed - error: {}", ec.message());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001091 }
1092}
1093
1094void
Adrien Béraud1addf952023-09-30 17:38:35 -04001095ConnectionManager::Impl::onPeerResponse(PeerConnectionRequest&& req)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001096{
1097 auto device = req.owner->getLongId();
Adrien Béraud75754b22023-10-17 09:16:06 -04001098 if (auto info = infos_.getInfo(device, req.id)) {
Adrien Béraud23852462023-07-22 01:46:27 -04001099 if (config_->logger)
1100 config_->logger->debug("[device {}] New response received", device);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001101 std::lock_guard<std::mutex> lk {info->mutex_};
1102 info->responseReceived_ = true;
1103 info->response_ = std::move(req);
1104 info->waitForAnswer_->expires_at(std::chrono::steady_clock::now());
1105 info->waitForAnswer_->async_wait(std::bind(&ConnectionManager::Impl::onResponse,
1106 this,
1107 std::placeholders::_1,
Adrien Béraud75754b22023-10-17 09:16:06 -04001108 std::weak_ptr(info),
Adrien Béraud612b55b2023-05-29 10:42:04 -04001109 device,
1110 req.id));
1111 } else {
1112 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001113 config_->logger->warn("[device {}] Respond received, but cannot find request", device);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001114 }
1115}
1116
1117void
1118ConnectionManager::Impl::onDhtConnected(const dht::crypto::PublicKey& devicePk)
1119{
1120 if (!dht())
1121 return;
1122 dht()->listen<PeerConnectionRequest>(
1123 dht::InfoHash::get(PeerConnectionRequest::key_prefix + devicePk.getId().toString()),
Adrien Béraud75754b22023-10-17 09:16:06 -04001124 [w = weak_from_this()](PeerConnectionRequest&& req) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001125 auto shared = w.lock();
1126 if (!shared)
1127 return false;
1128 if (shared->isMessageTreated(to_hex_string(req.id))) {
1129 // Message already treated. Just ignore
1130 return true;
1131 }
1132 if (req.isAnswer) {
1133 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001134 shared->config_->logger->debug("[device {}] Received request answer", req.owner->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001135 } else {
1136 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001137 shared->config_->logger->debug("[device {}] Received request", req.owner->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001138 }
1139 if (req.isAnswer) {
Adrien Béraud1addf952023-09-30 17:38:35 -04001140 shared->onPeerResponse(std::move(req));
Adrien Béraud612b55b2023-05-29 10:42:04 -04001141 } else {
1142 // Async certificate checking
Sébastien Blin34086512023-07-25 09:52:14 -04001143 shared->findCertificate(
Adrien Béraud612b55b2023-05-29 10:42:04 -04001144 req.from,
1145 [w, req = std::move(req)](
1146 const std::shared_ptr<dht::crypto::Certificate>& cert) mutable {
1147 auto shared = w.lock();
1148 if (!shared)
1149 return;
1150 dht::InfoHash peer_h;
1151 if (foundPeerDevice(cert, peer_h, shared->config_->logger)) {
1152#if TARGET_OS_IOS
1153 if (shared->iOSConnectedCb_(req.connType, peer_h))
1154 return;
1155#endif
1156 shared->onDhtPeerRequest(req, cert);
1157 } else {
1158 if (shared->config_->logger)
1159 shared->config_->logger->warn(
Adrien Béraud23852462023-07-22 01:46:27 -04001160 "[device {}] Received request from untrusted peer",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001161 req.owner->getLongId());
1162 }
1163 });
1164 }
1165
1166 return true;
1167 },
1168 dht::Value::UserTypeFilter("peer_request"));
1169}
1170
1171void
Adrien Béraud75754b22023-10-17 09:16:06 -04001172ConnectionManager::Impl::onTlsNegotiationDone(const std::shared_ptr<DeviceInfo>& dinfo,
1173 const std::shared_ptr<ConnectionInfo>& info,
1174 bool ok,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001175 const DeviceId& deviceId,
1176 const dht::Value::Id& vid,
1177 const std::string& name)
1178{
1179 if (isDestroying_)
1180 return;
1181 // Note: only handle pendingCallbacks here for TLS initied by connectDevice()
1182 // Note: if not initied by connectDevice() the channel name will be empty (because no channel
1183 // asked yet)
1184 auto isDhtRequest = name.empty();
1185 if (!ok) {
1186 if (isDhtRequest) {
1187 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001188 config_->logger->error("[device {}] TLS connection failure - Initied by DHT request. channel: {} - vid: {}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001189 deviceId,
1190 name,
1191 vid);
1192 if (connReadyCb_)
1193 connReadyCb_(deviceId, "", nullptr);
1194 } else {
1195 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001196 config_->logger->error("[device {}] TLS connection failure - Initied by connectDevice. channel: {} - vid: {}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001197 deviceId,
1198 name,
1199 vid);
Adrien Béraud75754b22023-10-17 09:16:06 -04001200 dinfo->executePendingOperations(vid, nullptr);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001201 }
Sébastien Blin3cf0acc2023-10-23 09:45:32 -04001202
1203 std::unique_lock<std::mutex> lk(dinfo->mtx_);
1204 dinfo->info.erase(vid);
1205
1206 if (dinfo->empty()) {
1207 infos_.removeDeviceInfo(dinfo->deviceId);
1208 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001209 } else {
1210 // The socket is ready, store it
1211 if (isDhtRequest) {
1212 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001213 config_->logger->debug("[device {}] Connection is ready - Initied by DHT request. Vid: {}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001214 deviceId,
1215 vid);
1216 } else {
1217 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001218 config_->logger->debug("[device {}] Connection is ready - Initied by connectDevice(). channel: {} - vid: {}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001219 deviceId,
1220 name,
1221 vid);
1222 }
1223
Adrien Béraud75754b22023-10-17 09:16:06 -04001224 // Note: do not remove pending there it's done in sendChannelRequest
1225 std::unique_lock<std::mutex> lk2 {dinfo->mtx_};
Adrien Béraudb941e922023-10-16 12:56:14 -04001226 auto pendingIds = dinfo->requestPendingOps();
Adrien Béraud75754b22023-10-17 09:16:06 -04001227 lk2.unlock();
1228 std::unique_lock<std::mutex> lk {info->mutex_};
1229 addNewMultiplexedSocket(dinfo, deviceId, vid, info);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001230 // Finally, open the channel and launch pending callbacks
Adrien Béraud75754b22023-10-17 09:16:06 -04001231 lk.unlock();
1232 for (const auto& [id, name]: pendingIds) {
1233 if (config_->logger)
1234 config_->logger->debug("[device {}] Send request on TLS socket for channel {}",
1235 deviceId, name);
Adrien Bérauda9ef2a52023-11-05 00:47:24 -04001236 sendChannelRequest(dinfo, info, info->socket_, name, id);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001237 }
1238 }
1239}
1240
1241void
1242ConnectionManager::Impl::answerTo(IceTransport& ice,
1243 const dht::Value::Id& id,
1244 const std::shared_ptr<dht::crypto::PublicKey>& from)
1245{
1246 // NOTE: This is a shortest version of a real SDP message to save some bits
1247 auto iceAttributes = ice.getLocalAttributes();
1248 std::ostringstream icemsg;
1249 icemsg << iceAttributes.ufrag << "\n";
1250 icemsg << iceAttributes.pwd << "\n";
1251 for (const auto& addr : ice.getLocalCandidates(1)) {
1252 icemsg << addr << "\n";
1253 }
1254
1255 // Send PeerConnection response
1256 PeerConnectionRequest val;
1257 val.id = id;
1258 val.ice_msg = icemsg.str();
1259 val.isAnswer = true;
1260 auto value = std::make_shared<dht::Value>(std::move(val));
1261 value->user_type = "peer_request";
1262
1263 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001264 config_->logger->debug("[device {}] Connection accepted, DHT reply", from->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001265 dht()->putEncrypted(dht::InfoHash::get(PeerConnectionRequest::key_prefix
1266 + from->getId().toString()),
1267 from,
1268 value,
1269 [from,l=config_->logger](bool ok) {
1270 if (l)
Adrien Béraud23852462023-07-22 01:46:27 -04001271 l->debug("[device {}] Answer to connection request: put encrypted {:s}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001272 from->getLongId(),
1273 (ok ? "ok" : "failed"));
1274 });
1275}
1276
1277bool
Adrien Béraud75754b22023-10-17 09:16:06 -04001278ConnectionManager::Impl::onRequestStartIce(const std::shared_ptr<ConnectionInfo>& info, const PeerConnectionRequest& req)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001279{
Adrien Béraud612b55b2023-05-29 10:42:04 -04001280 if (!info)
1281 return false;
1282
Adrien Béraud75754b22023-10-17 09:16:06 -04001283 auto deviceId = req.owner->getLongId();
Adrien Béraud612b55b2023-05-29 10:42:04 -04001284 std::unique_lock<std::mutex> lk {info->mutex_};
1285 auto& ice = info->ice_;
1286 if (!ice) {
1287 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001288 config_->logger->error("[device {}] No ICE detected", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001289 if (connReadyCb_)
1290 connReadyCb_(deviceId, "", nullptr);
1291 return false;
1292 }
1293
1294 auto sdp = ice->parseIceCandidates(req.ice_msg);
1295 answerTo(*ice, req.id, req.owner);
1296 if (not ice->startIce({sdp.rem_ufrag, sdp.rem_pwd}, std::move(sdp.rem_candidates))) {
1297 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001298 config_->logger->error("[device {}] Start ICE failed", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001299 ice = nullptr;
1300 if (connReadyCb_)
1301 connReadyCb_(deviceId, "", nullptr);
1302 return false;
1303 }
1304 return true;
1305}
1306
1307bool
Adrien Béraud75754b22023-10-17 09:16:06 -04001308ConnectionManager::Impl::onRequestOnNegoDone(const std::weak_ptr<DeviceInfo>& dinfo, const std::shared_ptr<ConnectionInfo>& info, const PeerConnectionRequest& req)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001309{
Adrien Béraud612b55b2023-05-29 10:42:04 -04001310 if (!info)
1311 return false;
1312
Adrien Béraud75754b22023-10-17 09:16:06 -04001313 auto deviceId = req.owner->getLongId();
Adrien Béraud612b55b2023-05-29 10:42:04 -04001314 std::unique_lock<std::mutex> lk {info->mutex_};
1315 auto& ice = info->ice_;
1316 if (!ice) {
1317 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001318 config_->logger->error("[device {}] No ICE detected", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001319 return false;
1320 }
1321
1322 // Build socket
1323 auto endpoint = std::make_unique<IceSocketEndpoint>(std::shared_ptr<IceTransport>(
1324 std::move(ice)),
1325 false);
1326
1327 // init TLS session
1328 auto ph = req.from;
1329 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001330 config_->logger->debug("[device {}] Start TLS session - Initied by DHT request. vid: {}",
1331 deviceId,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001332 req.id);
1333 info->tls_ = std::make_unique<TlsSocketEndpoint>(
1334 std::move(endpoint),
1335 certStore(),
Adrien Béraud3f93ddf2023-07-21 14:46:22 -04001336 config_->ioContext,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001337 identity(),
1338 dhParams(),
Adrien Béraud75754b22023-10-17 09:16:06 -04001339 [ph, deviceId, w=weak_from_this(), l=config_->logger](const dht::crypto::Certificate& cert) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001340 auto shared = w.lock();
1341 if (!shared)
1342 return false;
Adrien Béraud9efbd442023-08-27 12:38:07 -04001343 if (cert.getPublicKey().getId() != ph
1344 || deviceId != cert.getPublicKey().getLongId()) {
1345 if (l) l->warn("[device {}] TLS certificate with ID {} doesn't match the DHT request.",
1346 deviceId,
1347 cert.getPublicKey().getLongId());
1348 return false;
1349 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001350 auto crt = shared->certStore().getCertificate(cert.getLongId().toString());
1351 if (!crt)
1352 return false;
1353 return crt->getPacked() == cert.getPacked();
1354 });
1355
1356 info->tls_->setOnReady(
Adrien Béraud75754b22023-10-17 09:16:06 -04001357 [w = weak_from_this(), dinfo, winfo=std::weak_ptr(info), deviceId = std::move(deviceId), vid = std::move(req.id)](bool ok) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001358 if (auto shared = w.lock())
Andreas Traczyk8b6e99f2024-01-04 17:12:55 -05001359 if (auto info = winfo.lock()) {
1360 shared->onTlsNegotiationDone(dinfo.lock(), winfo.lock(), ok, deviceId, vid);
1361 // Make another reference to info to avoid destruction (could lead to a deadlock/crash).
1362 dht::ThreadPool::io().run([info = std::move(info)] {});
1363 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001364 });
1365 return true;
1366}
1367
1368void
1369ConnectionManager::Impl::onDhtPeerRequest(const PeerConnectionRequest& req,
1370 const std::shared_ptr<dht::crypto::Certificate>& /*cert*/)
1371{
1372 auto deviceId = req.owner->getLongId();
1373 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001374 config_->logger->debug("[device {}] New connection request", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001375 if (!iceReqCb_ || !iceReqCb_(deviceId)) {
1376 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001377 config_->logger->debug("[device {}] Refusing connection", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001378 return;
1379 }
1380
1381 // Because the connection is accepted, create an ICE socket.
Adrien Béraud75754b22023-10-17 09:16:06 -04001382 getIceOptions([w = weak_from_this(), req, deviceId](auto&& ice_config) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001383 auto shared = w.lock();
1384 if (!shared)
1385 return;
Adrien Béraud75754b22023-10-17 09:16:06 -04001386
1387 auto di = shared->infos_.createDeviceInfo(deviceId);
1388 auto info = std::make_shared<ConnectionInfo>();
1389 auto wdi = std::weak_ptr(di);
1390 auto winfo = std::weak_ptr(info);
1391
Adrien Béraud612b55b2023-05-29 10:42:04 -04001392 // Note: used when the ice negotiation fails to erase
1393 // all stored structures.
Adrien Béraud75754b22023-10-17 09:16:06 -04001394 auto eraseInfo = [w, wdi, id = req.id] {
1395 auto shared = w.lock();
1396 if (auto di = wdi.lock()) {
1397 std::unique_lock<std::mutex> lk(di->mtx_);
1398 di->info.erase(id);
1399 auto ops = di->extractPendingOperations(id, nullptr);
1400 if (di->empty()) {
1401 if (shared)
1402 shared->infos_.removeDeviceInfo(di->deviceId);
1403 }
1404 lk.unlock();
1405 for (const auto& op: ops)
1406 op.cb(nullptr, di->deviceId);
1407 if (shared && shared->connReadyCb_)
1408 shared->connReadyCb_(di->deviceId, "", nullptr);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001409 }
1410 };
1411
Adrien Béraud75754b22023-10-17 09:16:06 -04001412 ice_config.master = true;
1413 ice_config.streamsCount = 1;
1414 ice_config.compCountPerStream = 1; // TCP
Adrien Béraud612b55b2023-05-29 10:42:04 -04001415 ice_config.tcpEnable = true;
Adrien Béraud75754b22023-10-17 09:16:06 -04001416 ice_config.onInitDone = [w, winfo, req, eraseInfo](bool ok) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001417 auto shared = w.lock();
1418 if (!shared)
1419 return;
1420 if (!ok) {
1421 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001422 shared->config_->logger->error("[device {}] Cannot initialize ICE session.", req.owner->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001423 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1424 return;
1425 }
1426
1427 dht::ThreadPool::io().run(
Adrien Béraud75754b22023-10-17 09:16:06 -04001428 [w = std::move(w), winfo = std::move(winfo), req = std::move(req), eraseInfo = std::move(eraseInfo)] {
1429 if (auto shared = w.lock()) {
1430 if (!shared->onRequestStartIce(winfo.lock(), req))
1431 eraseInfo();
1432 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001433 });
1434 };
1435
Adrien Béraud75754b22023-10-17 09:16:06 -04001436 ice_config.onNegoDone = [w, wdi, winfo, req, eraseInfo](bool ok) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001437 auto shared = w.lock();
1438 if (!shared)
1439 return;
1440 if (!ok) {
1441 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001442 shared->config_->logger->error("[device {}] ICE negotiation failed.", req.owner->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001443 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1444 return;
1445 }
1446
1447 dht::ThreadPool::io().run(
Adrien Béraud75754b22023-10-17 09:16:06 -04001448 [w = std::move(w), wdi = std::move(wdi), winfo = std::move(winfo), req = std::move(req), eraseInfo = std::move(eraseInfo)] {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001449 if (auto shared = w.lock())
Adrien Béraud75754b22023-10-17 09:16:06 -04001450 if (!shared->onRequestOnNegoDone(wdi.lock(), winfo.lock(), req))
Adrien Béraud612b55b2023-05-29 10:42:04 -04001451 eraseInfo();
1452 });
1453 };
1454
1455 // Negotiate a new ICE socket
Adrien Béraud612b55b2023-05-29 10:42:04 -04001456 {
Adrien Béraud75754b22023-10-17 09:16:06 -04001457 std::lock_guard<std::mutex> lk(di->mtx_);
1458 di->info[req.id] = info;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001459 }
Adrien Béraud75754b22023-10-17 09:16:06 -04001460
Adrien Béraud612b55b2023-05-29 10:42:04 -04001461 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001462 shared->config_->logger->debug("[device {}] Accepting connection", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001463 std::unique_lock<std::mutex> lk {info->mutex_};
Sébastien Blin34086512023-07-25 09:52:14 -04001464 info->ice_ = shared->config_->factory->createUTransport("");
Adrien Béraud612b55b2023-05-29 10:42:04 -04001465 if (not info->ice_) {
1466 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001467 shared->config_->logger->error("[device {}] Cannot initialize ICE session", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001468 eraseInfo();
1469 return;
1470 }
1471 // We need to detect any shutdown if the ice session is destroyed before going to the TLS session;
1472 info->ice_->setOnShutdown([eraseInfo]() {
1473 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1474 });
Adrien Béraud4cda2d72023-06-01 15:44:43 -04001475 try {
1476 info->ice_->initIceInstance(ice_config);
1477 } catch (const std::exception& e) {
1478 if (shared->config_->logger)
1479 shared->config_->logger->error("{}", e.what());
1480 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1481 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001482 });
1483}
1484
1485void
Adrien Béraud75754b22023-10-17 09:16:06 -04001486ConnectionManager::Impl::addNewMultiplexedSocket(const std::weak_ptr<DeviceInfo>& dinfo, const DeviceId& deviceId, const dht::Value::Id& vid, const std::shared_ptr<ConnectionInfo>& info)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001487{
Adrien Béraud75754b22023-10-17 09:16:06 -04001488 info->socket_ = std::make_shared<MultiplexedSocket>(config_->ioContext, deviceId, std::move(info->tls_), config_->logger);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001489 info->socket_->setOnReady(
Adrien Béraud75754b22023-10-17 09:16:06 -04001490 [w = weak_from_this()](const DeviceId& deviceId, const std::shared_ptr<ChannelSocket>& socket) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001491 if (auto sthis = w.lock())
1492 if (sthis->connReadyCb_)
1493 sthis->connReadyCb_(deviceId, socket->name(), socket);
1494 });
Adrien Béraud75754b22023-10-17 09:16:06 -04001495 info->socket_->setOnRequest([w = weak_from_this()](const std::shared_ptr<dht::crypto::Certificate>& peer,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001496 const uint16_t&,
1497 const std::string& name) {
1498 if (auto sthis = w.lock())
1499 if (sthis->channelReqCb_)
1500 return sthis->channelReqCb_(peer, name);
1501 return false;
1502 });
Adrien Béraud75754b22023-10-17 09:16:06 -04001503 info->socket_->onShutdown([dinfo, wi=std::weak_ptr(info), vid]() {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001504 // Cancel current outgoing connections
Adrien Béraud75754b22023-10-17 09:16:06 -04001505 dht::ThreadPool::io().run([dinfo, wi, vid] {
1506 std::set<dht::Value::Id> ids;
1507 if (auto info = wi.lock()) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001508 std::lock_guard<std::mutex> lk(info->mutex_);
1509 if (info->socket_) {
1510 ids = std::move(info->cbIds_);
1511 info->socket_->shutdown();
1512 }
1513 }
Adrien Béraud75754b22023-10-17 09:16:06 -04001514 if (auto deviceInfo = dinfo.lock()) {
1515 std::shared_ptr<ConnectionInfo> info;
1516 std::vector<PendingCb> ops;
1517 std::unique_lock<std::mutex> lk(deviceInfo->mtx_);
1518 auto it = deviceInfo->info.find(vid);
1519 if (it != deviceInfo->info.end()) {
1520 info = std::move(it->second);
1521 deviceInfo->info.erase(it);
1522 }
1523 for (const auto& cbId : ids) {
1524 auto po = deviceInfo->extractPendingOperations(cbId, nullptr);
1525 ops.insert(ops.end(), po.begin(), po.end());
1526 }
1527 lk.unlock();
1528 for (auto& op : ops)
1529 op.cb(nullptr, deviceInfo->deviceId);
1530 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001531 });
1532 });
1533}
1534
1535const std::shared_future<tls::DhParams>
1536ConnectionManager::Impl::dhParams() const
1537{
1538 return dht::ThreadPool::computation().get<tls::DhParams>(
Adrien Béraud2a4e73d2023-08-27 12:53:55 -04001539 std::bind(tls::DhParams::loadDhParams, config_->cachePath / "dhParams"));
Adrien Béraud612b55b2023-05-29 10:42:04 -04001540}
1541
1542template<typename ID = dht::Value::Id>
1543std::set<ID, std::less<>>
Adrien Béraud1299a0d2023-09-19 15:03:28 -04001544loadIdList(const std::filesystem::path& path)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001545{
1546 std::set<ID, std::less<>> ids;
Adrien Béraud1299a0d2023-09-19 15:03:28 -04001547 std::ifstream file(path);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001548 if (!file.is_open()) {
1549 //JAMI_DBG("Could not load %s", path.c_str());
1550 return ids;
1551 }
1552 std::string line;
1553 while (std::getline(file, line)) {
1554 if constexpr (std::is_same<ID, std::string>::value) {
1555 ids.emplace(std::move(line));
1556 } else if constexpr (std::is_integral<ID>::value) {
1557 ID vid;
1558 if (auto [p, ec] = std::from_chars(line.data(), line.data() + line.size(), vid, 16);
1559 ec == std::errc()) {
1560 ids.emplace(vid);
1561 }
1562 }
1563 }
1564 return ids;
1565}
1566
1567template<typename List = std::set<dht::Value::Id>>
1568void
Adrien Béraud2a4e73d2023-08-27 12:53:55 -04001569saveIdList(const std::filesystem::path& path, const List& ids)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001570{
Adrien Béraud1299a0d2023-09-19 15:03:28 -04001571 std::ofstream file(path, std::ios::trunc | std::ios::binary);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001572 if (!file.is_open()) {
1573 //JAMI_ERR("Could not save to %s", path.c_str());
1574 return;
1575 }
1576 for (auto& c : ids)
1577 file << std::hex << c << "\n";
1578}
1579
1580void
1581ConnectionManager::Impl::loadTreatedMessages()
1582{
1583 std::lock_guard<std::mutex> lock(messageMutex_);
Adrien Béraud2a4e73d2023-08-27 12:53:55 -04001584 auto path = config_->cachePath / "treatedMessages";
Aline Gondim Santos406c0f42023-09-13 12:10:23 -03001585 treatedMessages_ = loadIdList<std::string>(path.string());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001586 if (treatedMessages_.empty()) {
Aline Gondim Santos406c0f42023-09-13 12:10:23 -03001587 auto messages = loadIdList(path.string());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001588 for (const auto& m : messages)
1589 treatedMessages_.emplace(to_hex_string(m));
1590 }
1591}
1592
1593void
1594ConnectionManager::Impl::saveTreatedMessages() const
1595{
Adrien Béraud75754b22023-10-17 09:16:06 -04001596 dht::ThreadPool::io().run([w = weak_from_this()]() {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001597 if (auto sthis = w.lock()) {
1598 auto& this_ = *sthis;
1599 std::lock_guard<std::mutex> lock(this_.messageMutex_);
1600 fileutils::check_dir(this_.config_->cachePath.c_str());
Adrien Béraud2a4e73d2023-08-27 12:53:55 -04001601 saveIdList<decltype(this_.treatedMessages_)>(this_.config_->cachePath / "treatedMessages",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001602 this_.treatedMessages_);
1603 }
1604 });
1605}
1606
1607bool
1608ConnectionManager::Impl::isMessageTreated(std::string_view id)
1609{
1610 std::lock_guard<std::mutex> lock(messageMutex_);
1611 auto res = treatedMessages_.emplace(id);
1612 if (res.second) {
1613 saveTreatedMessages();
1614 return false;
1615 }
1616 return true;
1617}
1618
1619/**
1620 * returns whether or not UPnP is enabled and active_
1621 * ie: if it is able to make port mappings
1622 */
1623bool
1624ConnectionManager::Impl::getUPnPActive() const
1625{
1626 return config_->getUPnPActive();
1627}
1628
1629IpAddr
1630ConnectionManager::Impl::getPublishedIpAddress(uint16_t family) const
1631{
1632 if (family == AF_INET)
1633 return publishedIp_[0];
1634 if (family == AF_INET6)
1635 return publishedIp_[1];
1636
1637 assert(family == AF_UNSPEC);
1638
1639 // If family is not set, prefere IPv4 if available. It's more
1640 // likely to succeed behind NAT.
1641 if (publishedIp_[0])
1642 return publishedIp_[0];
1643 if (publishedIp_[1])
1644 return publishedIp_[1];
1645 return {};
1646}
1647
1648void
1649ConnectionManager::Impl::setPublishedAddress(const IpAddr& ip_addr)
1650{
1651 if (ip_addr.getFamily() == AF_INET) {
1652 publishedIp_[0] = ip_addr;
1653 } else {
1654 publishedIp_[1] = ip_addr;
1655 }
1656}
1657
1658void
1659ConnectionManager::Impl::storeActiveIpAddress(std::function<void()>&& cb)
1660{
Adrien Béraud75754b22023-10-17 09:16:06 -04001661 dht()->getPublicAddress([w=weak_from_this(), cb = std::move(cb)](std::vector<dht::SockAddr>&& results) {
Sébastien Blinb6504372023-10-12 10:35:35 -04001662 auto shared = w.lock();
1663 if (!shared)
1664 return;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001665 bool hasIpv4 {false}, hasIpv6 {false};
1666 for (auto& result : results) {
1667 auto family = result.getFamily();
1668 if (family == AF_INET) {
1669 if (not hasIpv4) {
1670 hasIpv4 = true;
Sébastien Blinb6504372023-10-12 10:35:35 -04001671 if (shared->config_->logger)
1672 shared->config_->logger->debug("Store DHT public IPv4 address: {}", result);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001673 //JAMI_DBG("Store DHT public IPv4 address : %s", result.toString().c_str());
Sébastien Blinb6504372023-10-12 10:35:35 -04001674 shared->setPublishedAddress(*result.get());
1675 if (shared->config_->upnpCtrl) {
1676 shared->config_->upnpCtrl->setPublicAddress(*result.get());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001677 }
1678 }
1679 } else if (family == AF_INET6) {
1680 if (not hasIpv6) {
1681 hasIpv6 = true;
Sébastien Blinb6504372023-10-12 10:35:35 -04001682 if (shared->config_->logger)
1683 shared->config_->logger->debug("Store DHT public IPv6 address: {}", result);
1684 shared->setPublishedAddress(*result.get());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001685 }
1686 }
1687 if (hasIpv4 and hasIpv6)
1688 break;
1689 }
1690 if (cb)
1691 cb();
1692 });
1693}
1694
1695void
1696ConnectionManager::Impl::getIceOptions(std::function<void(IceTransportOptions&&)> cb) noexcept
1697{
1698 storeActiveIpAddress([this, cb = std::move(cb)] {
1699 IceTransportOptions opts = ConnectionManager::Impl::getIceOptions();
1700 auto publishedAddr = getPublishedIpAddress();
1701
1702 if (publishedAddr) {
1703 auto interfaceAddr = ip_utils::getInterfaceAddr(getLocalInterface(),
1704 publishedAddr.getFamily());
1705 if (interfaceAddr) {
1706 opts.accountLocalAddr = interfaceAddr;
1707 opts.accountPublicAddr = publishedAddr;
1708 }
1709 }
1710 if (cb)
1711 cb(std::move(opts));
1712 });
1713}
1714
1715IceTransportOptions
1716ConnectionManager::Impl::getIceOptions() const noexcept
1717{
1718 IceTransportOptions opts;
Sébastien Blin34086512023-07-25 09:52:14 -04001719 opts.factory = config_->factory;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001720 opts.upnpEnable = getUPnPActive();
Adrien Béraud7b869d92023-08-21 09:02:35 -04001721 opts.upnpContext = config_->upnpCtrl ? config_->upnpCtrl->upnpContext() : nullptr;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001722
1723 if (config_->stunEnabled)
1724 opts.stunServers.emplace_back(StunServerInfo().setUri(config_->stunServer));
1725 if (config_->turnEnabled) {
Sébastien Blin84bf4182023-07-21 14:18:39 -04001726 if (config_->turnCache) {
1727 auto turnAddr = config_->turnCache->getResolvedTurn();
1728 if (turnAddr != std::nullopt) {
1729 opts.turnServers.emplace_back(TurnServerInfo()
1730 .setUri(turnAddr->toString())
1731 .setUsername(config_->turnServerUserName)
1732 .setPassword(config_->turnServerPwd)
1733 .setRealm(config_->turnServerRealm));
1734 }
1735 } else {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001736 opts.turnServers.emplace_back(TurnServerInfo()
Sébastien Blin84bf4182023-07-21 14:18:39 -04001737 .setUri(config_->turnServer)
1738 .setUsername(config_->turnServerUserName)
1739 .setPassword(config_->turnServerPwd)
1740 .setRealm(config_->turnServerRealm));
Adrien Béraud612b55b2023-05-29 10:42:04 -04001741 }
1742 // NOTE: first test with ipv6 turn was not concluant and resulted in multiple
1743 // co issues. So this needs some debug. for now just disable
1744 // if (cacheTurnV6 && *cacheTurnV6) {
1745 // opts.turnServers.emplace_back(TurnServerInfo()
1746 // .setUri(cacheTurnV6->toString(true))
1747 // .setUsername(turnServerUserName_)
1748 // .setPassword(turnServerPwd_)
1749 // .setRealm(turnServerRealm_));
1750 //}
Adrien Béraud612b55b2023-05-29 10:42:04 -04001751 }
1752 return opts;
1753}
1754
1755bool
1756ConnectionManager::Impl::foundPeerDevice(const std::shared_ptr<dht::crypto::Certificate>& crt,
1757 dht::InfoHash& account_id,
1758 const std::shared_ptr<Logger>& logger)
1759{
1760 if (not crt)
1761 return false;
1762
1763 auto top_issuer = crt;
1764 while (top_issuer->issuer)
1765 top_issuer = top_issuer->issuer;
1766
1767 // Device certificate can't be self-signed
Adrien Béraudc631a832023-07-26 22:19:00 -04001768 if (top_issuer == crt) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001769 if (logger)
Adrien Béraud8b831a82023-07-21 14:13:06 -04001770 logger->warn("Found invalid (self-signed) peer device: {}", crt->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001771 return false;
Adrien Béraudc631a832023-07-26 22:19:00 -04001772 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001773
1774 // Check peer certificate chain
1775 // Trust store with top issuer as the only CA
1776 dht::crypto::TrustList peer_trust;
1777 peer_trust.add(*top_issuer);
1778 if (not peer_trust.verify(*crt)) {
1779 if (logger)
1780 logger->warn("Found invalid peer device: {}", crt->getLongId());
1781 return false;
1782 }
1783
1784 // Check cached OCSP response
1785 if (crt->ocspResponse and crt->ocspResponse->getCertificateStatus() != GNUTLS_OCSP_CERT_GOOD) {
1786 if (logger)
Adrien Béraud8b831a82023-07-21 14:13:06 -04001787 logger->error("Certificate {} is disabled by cached OCSP response", crt->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001788 return false;
1789 }
1790
Adrien Béraudc631a832023-07-26 22:19:00 -04001791 account_id = crt->issuer->getId();
1792 if (logger)
1793 logger->warn("Found peer device: {} account:{} CA:{}",
1794 crt->getLongId(),
1795 account_id,
1796 top_issuer->getId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001797 return true;
1798}
1799
1800bool
1801ConnectionManager::Impl::findCertificate(
1802 const dht::PkId& id, std::function<void(const std::shared_ptr<dht::crypto::Certificate>&)>&& cb)
1803{
1804 if (auto cert = certStore().getCertificate(id.toString())) {
1805 if (cb)
1806 cb(cert);
1807 } else if (cb)
1808 cb(nullptr);
1809 return true;
1810}
1811
Sébastien Blin34086512023-07-25 09:52:14 -04001812bool
1813ConnectionManager::Impl::findCertificate(const dht::InfoHash& h,
1814 std::function<void(const std::shared_ptr<dht::crypto::Certificate>&)>&& cb)
1815{
1816 if (auto cert = certStore().getCertificate(h.toString())) {
1817 if (cb)
1818 cb(cert);
1819 } else {
1820 dht()->findCertificate(h,
1821 [cb = std::move(cb), this](
1822 const std::shared_ptr<dht::crypto::Certificate>& crt) {
1823 if (crt)
1824 certStore().pinCertificate(crt);
1825 if (cb)
1826 cb(crt);
1827 });
1828 }
1829 return true;
1830}
1831
Amna81221ad2023-09-14 17:33:26 -04001832std::shared_ptr<ConnectionManager::Config>
1833buildDefaultConfig(dht::crypto::Identity id){
1834 auto conf = std::make_shared<ConnectionManager::Config>();
1835 conf->id = std::move(id);
1836 return conf;
1837}
1838
Adrien Béraud612b55b2023-05-29 10:42:04 -04001839ConnectionManager::ConnectionManager(std::shared_ptr<ConnectionManager::Config> config_)
1840 : pimpl_ {std::make_shared<Impl>(config_)}
1841{}
1842
Amna81221ad2023-09-14 17:33:26 -04001843ConnectionManager::ConnectionManager(dht::crypto::Identity id)
1844 : ConnectionManager {buildDefaultConfig(id)}
1845{}
1846
Adrien Béraud612b55b2023-05-29 10:42:04 -04001847ConnectionManager::~ConnectionManager()
1848{
1849 if (pimpl_)
1850 pimpl_->shutdown();
1851}
1852
1853void
1854ConnectionManager::connectDevice(const DeviceId& deviceId,
1855 const std::string& name,
1856 ConnectCallback cb,
1857 bool noNewSocket,
1858 bool forceNewSocket,
1859 const std::string& connType)
1860{
1861 pimpl_->connectDevice(deviceId, name, std::move(cb), noNewSocket, forceNewSocket, connType);
1862}
1863
1864void
Amna0cf544d2023-07-25 14:25:09 -04001865ConnectionManager::connectDevice(const dht::InfoHash& deviceId,
1866 const std::string& name,
1867 ConnectCallbackLegacy cb,
1868 bool noNewSocket,
1869 bool forceNewSocket,
1870 const std::string& connType)
1871{
1872 pimpl_->connectDevice(deviceId, name, std::move(cb), noNewSocket, forceNewSocket, connType);
1873}
1874
1875
1876void
Adrien Béraud612b55b2023-05-29 10:42:04 -04001877ConnectionManager::connectDevice(const std::shared_ptr<dht::crypto::Certificate>& cert,
1878 const std::string& name,
1879 ConnectCallback cb,
1880 bool noNewSocket,
1881 bool forceNewSocket,
1882 const std::string& connType)
1883{
1884 pimpl_->connectDevice(cert, name, std::move(cb), noNewSocket, forceNewSocket, connType);
1885}
1886
1887bool
1888ConnectionManager::isConnecting(const DeviceId& deviceId, const std::string& name) const
1889{
Adrien Béraud75754b22023-10-17 09:16:06 -04001890 if (auto dinfo = pimpl_->infos_.getDeviceInfo(deviceId)) {
1891 std::unique_lock<std::mutex> lk {dinfo->mtx_};
Adrien Béraudb941e922023-10-16 12:56:14 -04001892 return dinfo->isConnecting(name);
Adrien Béraud75754b22023-10-17 09:16:06 -04001893 }
1894 return false;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001895}
1896
Sébastien Blind0c92c72023-12-07 15:27:51 -05001897bool
1898ConnectionManager::isConnected(const DeviceId& deviceId) const
1899{
1900 if (auto dinfo = pimpl_->infos_.getDeviceInfo(deviceId)) {
1901 std::unique_lock<std::mutex> lk {dinfo->mtx_};
1902 return dinfo->getConnectedInfo() != nullptr;
1903 }
1904 return false;
1905}
1906
Adrien Béraud612b55b2023-05-29 10:42:04 -04001907void
1908ConnectionManager::closeConnectionsWith(const std::string& peerUri)
1909{
Adrien Béraud75754b22023-10-17 09:16:06 -04001910 std::vector<std::shared_ptr<DeviceInfo>> dInfos;
1911 for (const auto& dinfo: pimpl_->infos_.getDeviceInfos()) {
1912 std::unique_lock<std::mutex> lk(dinfo->mtx_);
1913 bool isPeer = false;
1914 for (auto const& [id, cinfo]: dinfo->info) {
1915 std::lock_guard<std::mutex> lkv {cinfo->mutex_};
1916 auto tls = cinfo->tls_ ? cinfo->tls_.get() : (cinfo->socket_ ? cinfo->socket_->endpoint() : nullptr);
Adrien Béraudafa8e282023-09-24 12:53:20 -04001917 auto cert = tls ? tls->peerCertificate() : nullptr;
1918 if (not cert)
Adrien Béraud75754b22023-10-17 09:16:06 -04001919 cert = pimpl_->certStore().getCertificate(dinfo->deviceId.toString());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001920 if (cert && cert->issuer && peerUri == cert->issuer->getId().toString()) {
Adrien Béraud75754b22023-10-17 09:16:06 -04001921 isPeer = true;
1922 break;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001923 }
1924 }
Adrien Béraud75754b22023-10-17 09:16:06 -04001925 lk.unlock();
1926 if (isPeer) {
1927 dInfos.emplace_back(std::move(dinfo));
1928 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001929 }
1930 // Stop connections to all peers devices
Adrien Béraud75754b22023-10-17 09:16:06 -04001931 for (const auto& dinfo : dInfos) {
1932 std::unique_lock<std::mutex> lk {dinfo->mtx_};
1933 auto unused = dinfo->extractUnusedConnections();
1934 auto pending = dinfo->extractPendingOperations(0, nullptr);
1935 pimpl_->infos_.removeDeviceInfo(dinfo->deviceId);
1936 lk.unlock();
1937 for (auto& op : unused)
1938 op->shutdown();
1939 for (auto& op : pending)
1940 op.cb(nullptr, dinfo->deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001941 }
1942}
1943
1944void
1945ConnectionManager::onDhtConnected(const dht::crypto::PublicKey& devicePk)
1946{
1947 pimpl_->onDhtConnected(devicePk);
1948}
1949
1950void
1951ConnectionManager::onICERequest(onICERequestCallback&& cb)
1952{
1953 pimpl_->iceReqCb_ = std::move(cb);
1954}
1955
1956void
1957ConnectionManager::onChannelRequest(ChannelRequestCallback&& cb)
1958{
1959 pimpl_->channelReqCb_ = std::move(cb);
1960}
1961
1962void
1963ConnectionManager::onConnectionReady(ConnectionReadyCallback&& cb)
1964{
1965 pimpl_->connReadyCb_ = std::move(cb);
1966}
1967
1968void
1969ConnectionManager::oniOSConnected(iOSConnectedCallback&& cb)
1970{
1971 pimpl_->iOSConnectedCb_ = std::move(cb);
1972}
1973
1974std::size_t
1975ConnectionManager::activeSockets() const
1976{
Adrien Béraud75754b22023-10-17 09:16:06 -04001977 return pimpl_->infos_.getConnectedInfos().size();
Adrien Béraud612b55b2023-05-29 10:42:04 -04001978}
1979
1980void
1981ConnectionManager::monitor() const
1982{
Adrien Béraud612b55b2023-05-29 10:42:04 -04001983 auto logger = pimpl_->config_->logger;
1984 if (!logger)
1985 return;
1986 logger->debug("ConnectionManager current status:");
Adrien Béraud75754b22023-10-17 09:16:06 -04001987 for (const auto& ci : pimpl_->infos_.getConnectedInfos()) {
1988 std::lock_guard<std::mutex> lk(ci->mutex_);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001989 if (ci->socket_)
1990 ci->socket_->monitor();
1991 }
1992 logger->debug("ConnectionManager end status.");
1993}
1994
1995void
1996ConnectionManager::connectivityChanged()
1997{
Adrien Béraud75754b22023-10-17 09:16:06 -04001998 for (const auto& ci : pimpl_->infos_.getConnectedInfos()) {
1999 std::lock_guard<std::mutex> lk(ci->mutex_);
Adrien Béraud612b55b2023-05-29 10:42:04 -04002000 if (ci->socket_)
Adrien Béraud51a54712023-10-17 21:24:30 -04002001 dht::ThreadPool::io().run([s = ci->socket_] { s->sendBeacon(); });
Adrien Béraud612b55b2023-05-29 10:42:04 -04002002 }
2003}
2004
2005void
2006ConnectionManager::getIceOptions(std::function<void(IceTransportOptions&&)> cb) noexcept
2007{
2008 return pimpl_->getIceOptions(std::move(cb));
2009}
2010
2011IceTransportOptions
2012ConnectionManager::getIceOptions() const noexcept
2013{
2014 return pimpl_->getIceOptions();
2015}
2016
2017IpAddr
2018ConnectionManager::getPublishedIpAddress(uint16_t family) const
2019{
2020 return pimpl_->getPublishedIpAddress(family);
2021}
2022
2023void
2024ConnectionManager::setPublishedAddress(const IpAddr& ip_addr)
2025{
2026 return pimpl_->setPublishedAddress(ip_addr);
2027}
2028
2029void
2030ConnectionManager::storeActiveIpAddress(std::function<void()>&& cb)
2031{
2032 return pimpl_->storeActiveIpAddress(std::move(cb));
2033}
2034
2035std::shared_ptr<ConnectionManager::Config>
2036ConnectionManager::getConfig()
2037{
2038 return pimpl_->config_;
2039}
2040
Amna31791e52023-08-03 12:40:57 -04002041std::vector<std::map<std::string, std::string>>
2042ConnectionManager::getConnectionList(const DeviceId& device) const
2043{
2044 std::vector<std::map<std::string, std::string>> connectionsList;
Amna31791e52023-08-03 12:40:57 -04002045 if (device) {
Adrien Béraud75754b22023-10-17 09:16:06 -04002046 if (auto deviceInfo = pimpl_->infos_.getDeviceInfo(device)) {
2047 connectionsList = deviceInfo->getConnectionList(pimpl_->certStore());
Amna31791e52023-08-03 12:40:57 -04002048 }
Adrien Béraud75754b22023-10-17 09:16:06 -04002049 } else {
2050 for (const auto& deviceInfo : pimpl_->infos_.getDeviceInfos()) {
2051 auto cl = deviceInfo->getConnectionList(pimpl_->certStore());
2052 connectionsList.insert(connectionsList.end(), std::make_move_iterator(cl.begin()), std::make_move_iterator(cl.end()));
Amna31791e52023-08-03 12:40:57 -04002053 }
2054 }
2055 return connectionsList;
2056}
2057
2058std::vector<std::map<std::string, std::string>>
2059ConnectionManager::getChannelList(const std::string& connectionId) const
2060{
Adrien Béraud75754b22023-10-17 09:16:06 -04002061 auto [deviceId, valueId] = parseCallbackId(connectionId);
2062 if (auto info = pimpl_->infos_.getInfo(deviceId, valueId)) {
2063 std::lock_guard<std::mutex> lk(info->mutex_);
2064 if (info->socket_)
2065 return info->socket_->getChannelList();
Amna31791e52023-08-03 12:40:57 -04002066 }
Adrien Béraud75754b22023-10-17 09:16:06 -04002067 return {};
Amna31791e52023-08-03 12:40:57 -04002068}
2069
Sébastien Blin464bdff2023-07-19 08:02:53 -04002070} // namespace dhtnet