blob: 37becf7409ad0c6f6e1dcde6ea6480c4911f466f [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);
1065 if (auto cinfo = cinfow.lock()) {
1066 std::lock_guard<std::mutex> lk(cinfo->mutex_);
1067 cinfo->cbIds_.erase(vid);
1068 }
1069 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001070 });
1071
1072 ChannelRequest val;
1073 val.name = channelSock->name();
1074 val.state = ChannelRequestState::REQUEST;
1075 val.channel = channelSock->channel();
1076 msgpack::sbuffer buffer(256);
1077 msgpack::pack(buffer, val);
1078
1079 std::error_code ec;
1080 int res = sock->write(CONTROL_CHANNEL,
1081 reinterpret_cast<const uint8_t*>(buffer.data()),
1082 buffer.size(),
1083 ec);
1084 if (res < 0) {
1085 // TODO check if we should handle errors here
1086 if (config_->logger)
Adrien Béraud75754b22023-10-17 09:16:06 -04001087 config_->logger->error("sendChannelRequest failed - error: {}", ec.message());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001088 }
1089}
1090
1091void
Adrien Béraud1addf952023-09-30 17:38:35 -04001092ConnectionManager::Impl::onPeerResponse(PeerConnectionRequest&& req)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001093{
1094 auto device = req.owner->getLongId();
Adrien Béraud75754b22023-10-17 09:16:06 -04001095 if (auto info = infos_.getInfo(device, req.id)) {
Adrien Béraud23852462023-07-22 01:46:27 -04001096 if (config_->logger)
1097 config_->logger->debug("[device {}] New response received", device);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001098 std::lock_guard<std::mutex> lk {info->mutex_};
1099 info->responseReceived_ = true;
1100 info->response_ = std::move(req);
1101 info->waitForAnswer_->expires_at(std::chrono::steady_clock::now());
1102 info->waitForAnswer_->async_wait(std::bind(&ConnectionManager::Impl::onResponse,
1103 this,
1104 std::placeholders::_1,
Adrien Béraud75754b22023-10-17 09:16:06 -04001105 std::weak_ptr(info),
Adrien Béraud612b55b2023-05-29 10:42:04 -04001106 device,
1107 req.id));
1108 } else {
1109 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001110 config_->logger->warn("[device {}] Respond received, but cannot find request", device);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001111 }
1112}
1113
1114void
1115ConnectionManager::Impl::onDhtConnected(const dht::crypto::PublicKey& devicePk)
1116{
1117 if (!dht())
1118 return;
1119 dht()->listen<PeerConnectionRequest>(
1120 dht::InfoHash::get(PeerConnectionRequest::key_prefix + devicePk.getId().toString()),
Adrien Béraud75754b22023-10-17 09:16:06 -04001121 [w = weak_from_this()](PeerConnectionRequest&& req) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001122 auto shared = w.lock();
1123 if (!shared)
1124 return false;
1125 if (shared->isMessageTreated(to_hex_string(req.id))) {
1126 // Message already treated. Just ignore
1127 return true;
1128 }
1129 if (req.isAnswer) {
1130 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001131 shared->config_->logger->debug("[device {}] Received request answer", req.owner->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001132 } else {
1133 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001134 shared->config_->logger->debug("[device {}] Received request", req.owner->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001135 }
1136 if (req.isAnswer) {
Adrien Béraud1addf952023-09-30 17:38:35 -04001137 shared->onPeerResponse(std::move(req));
Adrien Béraud612b55b2023-05-29 10:42:04 -04001138 } else {
1139 // Async certificate checking
Sébastien Blin34086512023-07-25 09:52:14 -04001140 shared->findCertificate(
Adrien Béraud612b55b2023-05-29 10:42:04 -04001141 req.from,
1142 [w, req = std::move(req)](
1143 const std::shared_ptr<dht::crypto::Certificate>& cert) mutable {
1144 auto shared = w.lock();
1145 if (!shared)
1146 return;
1147 dht::InfoHash peer_h;
1148 if (foundPeerDevice(cert, peer_h, shared->config_->logger)) {
1149#if TARGET_OS_IOS
1150 if (shared->iOSConnectedCb_(req.connType, peer_h))
1151 return;
1152#endif
1153 shared->onDhtPeerRequest(req, cert);
1154 } else {
1155 if (shared->config_->logger)
1156 shared->config_->logger->warn(
Adrien Béraud23852462023-07-22 01:46:27 -04001157 "[device {}] Received request from untrusted peer",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001158 req.owner->getLongId());
1159 }
1160 });
1161 }
1162
1163 return true;
1164 },
1165 dht::Value::UserTypeFilter("peer_request"));
1166}
1167
1168void
Adrien Béraud75754b22023-10-17 09:16:06 -04001169ConnectionManager::Impl::onTlsNegotiationDone(const std::shared_ptr<DeviceInfo>& dinfo,
1170 const std::shared_ptr<ConnectionInfo>& info,
1171 bool ok,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001172 const DeviceId& deviceId,
1173 const dht::Value::Id& vid,
1174 const std::string& name)
1175{
1176 if (isDestroying_)
1177 return;
1178 // Note: only handle pendingCallbacks here for TLS initied by connectDevice()
1179 // Note: if not initied by connectDevice() the channel name will be empty (because no channel
1180 // asked yet)
1181 auto isDhtRequest = name.empty();
1182 if (!ok) {
1183 if (isDhtRequest) {
1184 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001185 config_->logger->error("[device {}] TLS connection failure - Initied by DHT request. channel: {} - vid: {}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001186 deviceId,
1187 name,
1188 vid);
1189 if (connReadyCb_)
1190 connReadyCb_(deviceId, "", nullptr);
1191 } else {
1192 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001193 config_->logger->error("[device {}] TLS connection failure - Initied by connectDevice. channel: {} - vid: {}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001194 deviceId,
1195 name,
1196 vid);
Adrien Béraud75754b22023-10-17 09:16:06 -04001197 dinfo->executePendingOperations(vid, nullptr);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001198 }
Sébastien Blin3cf0acc2023-10-23 09:45:32 -04001199
1200 std::unique_lock<std::mutex> lk(dinfo->mtx_);
1201 dinfo->info.erase(vid);
1202
1203 if (dinfo->empty()) {
1204 infos_.removeDeviceInfo(dinfo->deviceId);
1205 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001206 } else {
1207 // The socket is ready, store it
1208 if (isDhtRequest) {
1209 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001210 config_->logger->debug("[device {}] Connection is ready - Initied by DHT request. Vid: {}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001211 deviceId,
1212 vid);
1213 } else {
1214 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001215 config_->logger->debug("[device {}] Connection is ready - Initied by connectDevice(). channel: {} - vid: {}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001216 deviceId,
1217 name,
1218 vid);
1219 }
1220
Adrien Béraud75754b22023-10-17 09:16:06 -04001221 // Note: do not remove pending there it's done in sendChannelRequest
1222 std::unique_lock<std::mutex> lk2 {dinfo->mtx_};
Adrien Béraudb941e922023-10-16 12:56:14 -04001223 auto pendingIds = dinfo->requestPendingOps();
Adrien Béraud75754b22023-10-17 09:16:06 -04001224 lk2.unlock();
1225 std::unique_lock<std::mutex> lk {info->mutex_};
1226 addNewMultiplexedSocket(dinfo, deviceId, vid, info);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001227 // Finally, open the channel and launch pending callbacks
Adrien Béraud75754b22023-10-17 09:16:06 -04001228 lk.unlock();
1229 for (const auto& [id, name]: pendingIds) {
1230 if (config_->logger)
1231 config_->logger->debug("[device {}] Send request on TLS socket for channel {}",
1232 deviceId, name);
Adrien Bérauda9ef2a52023-11-05 00:47:24 -04001233 sendChannelRequest(dinfo, info, info->socket_, name, id);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001234 }
1235 }
1236}
1237
1238void
1239ConnectionManager::Impl::answerTo(IceTransport& ice,
1240 const dht::Value::Id& id,
1241 const std::shared_ptr<dht::crypto::PublicKey>& from)
1242{
1243 // NOTE: This is a shortest version of a real SDP message to save some bits
1244 auto iceAttributes = ice.getLocalAttributes();
1245 std::ostringstream icemsg;
1246 icemsg << iceAttributes.ufrag << "\n";
1247 icemsg << iceAttributes.pwd << "\n";
1248 for (const auto& addr : ice.getLocalCandidates(1)) {
1249 icemsg << addr << "\n";
1250 }
1251
1252 // Send PeerConnection response
1253 PeerConnectionRequest val;
1254 val.id = id;
1255 val.ice_msg = icemsg.str();
1256 val.isAnswer = true;
1257 auto value = std::make_shared<dht::Value>(std::move(val));
1258 value->user_type = "peer_request";
1259
1260 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001261 config_->logger->debug("[device {}] Connection accepted, DHT reply", from->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001262 dht()->putEncrypted(dht::InfoHash::get(PeerConnectionRequest::key_prefix
1263 + from->getId().toString()),
1264 from,
1265 value,
1266 [from,l=config_->logger](bool ok) {
1267 if (l)
Adrien Béraud23852462023-07-22 01:46:27 -04001268 l->debug("[device {}] Answer to connection request: put encrypted {:s}",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001269 from->getLongId(),
1270 (ok ? "ok" : "failed"));
1271 });
1272}
1273
1274bool
Adrien Béraud75754b22023-10-17 09:16:06 -04001275ConnectionManager::Impl::onRequestStartIce(const std::shared_ptr<ConnectionInfo>& info, const PeerConnectionRequest& req)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001276{
Adrien Béraud612b55b2023-05-29 10:42:04 -04001277 if (!info)
1278 return false;
1279
Adrien Béraud75754b22023-10-17 09:16:06 -04001280 auto deviceId = req.owner->getLongId();
Adrien Béraud612b55b2023-05-29 10:42:04 -04001281 std::unique_lock<std::mutex> lk {info->mutex_};
1282 auto& ice = info->ice_;
1283 if (!ice) {
1284 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001285 config_->logger->error("[device {}] No ICE detected", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001286 if (connReadyCb_)
1287 connReadyCb_(deviceId, "", nullptr);
1288 return false;
1289 }
1290
1291 auto sdp = ice->parseIceCandidates(req.ice_msg);
1292 answerTo(*ice, req.id, req.owner);
1293 if (not ice->startIce({sdp.rem_ufrag, sdp.rem_pwd}, std::move(sdp.rem_candidates))) {
1294 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001295 config_->logger->error("[device {}] Start ICE failed", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001296 ice = nullptr;
1297 if (connReadyCb_)
1298 connReadyCb_(deviceId, "", nullptr);
1299 return false;
1300 }
1301 return true;
1302}
1303
1304bool
Adrien Béraud75754b22023-10-17 09:16:06 -04001305ConnectionManager::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 -04001306{
Adrien Béraud612b55b2023-05-29 10:42:04 -04001307 if (!info)
1308 return false;
1309
Adrien Béraud75754b22023-10-17 09:16:06 -04001310 auto deviceId = req.owner->getLongId();
Adrien Béraud612b55b2023-05-29 10:42:04 -04001311 std::unique_lock<std::mutex> lk {info->mutex_};
1312 auto& ice = info->ice_;
1313 if (!ice) {
1314 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001315 config_->logger->error("[device {}] No ICE detected", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001316 return false;
1317 }
1318
1319 // Build socket
1320 auto endpoint = std::make_unique<IceSocketEndpoint>(std::shared_ptr<IceTransport>(
1321 std::move(ice)),
1322 false);
1323
1324 // init TLS session
1325 auto ph = req.from;
1326 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001327 config_->logger->debug("[device {}] Start TLS session - Initied by DHT request. vid: {}",
1328 deviceId,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001329 req.id);
1330 info->tls_ = std::make_unique<TlsSocketEndpoint>(
1331 std::move(endpoint),
1332 certStore(),
Adrien Béraud3f93ddf2023-07-21 14:46:22 -04001333 config_->ioContext,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001334 identity(),
1335 dhParams(),
Adrien Béraud75754b22023-10-17 09:16:06 -04001336 [ph, deviceId, w=weak_from_this(), l=config_->logger](const dht::crypto::Certificate& cert) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001337 auto shared = w.lock();
1338 if (!shared)
1339 return false;
Adrien Béraud9efbd442023-08-27 12:38:07 -04001340 if (cert.getPublicKey().getId() != ph
1341 || deviceId != cert.getPublicKey().getLongId()) {
1342 if (l) l->warn("[device {}] TLS certificate with ID {} doesn't match the DHT request.",
1343 deviceId,
1344 cert.getPublicKey().getLongId());
1345 return false;
1346 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001347 auto crt = shared->certStore().getCertificate(cert.getLongId().toString());
1348 if (!crt)
1349 return false;
1350 return crt->getPacked() == cert.getPacked();
1351 });
1352
1353 info->tls_->setOnReady(
Adrien Béraud75754b22023-10-17 09:16:06 -04001354 [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 -04001355 if (auto shared = w.lock())
Andreas Traczyk8b6e99f2024-01-04 17:12:55 -05001356 if (auto info = winfo.lock()) {
1357 shared->onTlsNegotiationDone(dinfo.lock(), winfo.lock(), ok, deviceId, vid);
1358 // Make another reference to info to avoid destruction (could lead to a deadlock/crash).
1359 dht::ThreadPool::io().run([info = std::move(info)] {});
1360 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001361 });
1362 return true;
1363}
1364
1365void
1366ConnectionManager::Impl::onDhtPeerRequest(const PeerConnectionRequest& req,
1367 const std::shared_ptr<dht::crypto::Certificate>& /*cert*/)
1368{
1369 auto deviceId = req.owner->getLongId();
1370 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001371 config_->logger->debug("[device {}] New connection request", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001372 if (!iceReqCb_ || !iceReqCb_(deviceId)) {
1373 if (config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001374 config_->logger->debug("[device {}] Refusing connection", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001375 return;
1376 }
1377
1378 // Because the connection is accepted, create an ICE socket.
Adrien Béraud75754b22023-10-17 09:16:06 -04001379 getIceOptions([w = weak_from_this(), req, deviceId](auto&& ice_config) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001380 auto shared = w.lock();
1381 if (!shared)
1382 return;
Adrien Béraud75754b22023-10-17 09:16:06 -04001383
1384 auto di = shared->infos_.createDeviceInfo(deviceId);
1385 auto info = std::make_shared<ConnectionInfo>();
1386 auto wdi = std::weak_ptr(di);
1387 auto winfo = std::weak_ptr(info);
1388
Adrien Béraud612b55b2023-05-29 10:42:04 -04001389 // Note: used when the ice negotiation fails to erase
1390 // all stored structures.
Adrien Béraud75754b22023-10-17 09:16:06 -04001391 auto eraseInfo = [w, wdi, id = req.id] {
1392 auto shared = w.lock();
1393 if (auto di = wdi.lock()) {
1394 std::unique_lock<std::mutex> lk(di->mtx_);
1395 di->info.erase(id);
1396 auto ops = di->extractPendingOperations(id, nullptr);
1397 if (di->empty()) {
1398 if (shared)
1399 shared->infos_.removeDeviceInfo(di->deviceId);
1400 }
1401 lk.unlock();
1402 for (const auto& op: ops)
1403 op.cb(nullptr, di->deviceId);
1404 if (shared && shared->connReadyCb_)
1405 shared->connReadyCb_(di->deviceId, "", nullptr);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001406 }
1407 };
1408
Adrien Béraud75754b22023-10-17 09:16:06 -04001409 ice_config.master = true;
1410 ice_config.streamsCount = 1;
1411 ice_config.compCountPerStream = 1; // TCP
Adrien Béraud612b55b2023-05-29 10:42:04 -04001412 ice_config.tcpEnable = true;
Adrien Béraud75754b22023-10-17 09:16:06 -04001413 ice_config.onInitDone = [w, winfo, req, eraseInfo](bool ok) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001414 auto shared = w.lock();
1415 if (!shared)
1416 return;
1417 if (!ok) {
1418 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001419 shared->config_->logger->error("[device {}] Cannot initialize ICE session.", req.owner->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001420 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1421 return;
1422 }
1423
1424 dht::ThreadPool::io().run(
Adrien Béraud75754b22023-10-17 09:16:06 -04001425 [w = std::move(w), winfo = std::move(winfo), req = std::move(req), eraseInfo = std::move(eraseInfo)] {
1426 if (auto shared = w.lock()) {
1427 if (!shared->onRequestStartIce(winfo.lock(), req))
1428 eraseInfo();
1429 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001430 });
1431 };
1432
Adrien Béraud75754b22023-10-17 09:16:06 -04001433 ice_config.onNegoDone = [w, wdi, winfo, req, eraseInfo](bool ok) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001434 auto shared = w.lock();
1435 if (!shared)
1436 return;
1437 if (!ok) {
1438 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001439 shared->config_->logger->error("[device {}] ICE negotiation failed.", req.owner->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001440 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1441 return;
1442 }
1443
1444 dht::ThreadPool::io().run(
Adrien Béraud75754b22023-10-17 09:16:06 -04001445 [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 -04001446 if (auto shared = w.lock())
Adrien Béraud75754b22023-10-17 09:16:06 -04001447 if (!shared->onRequestOnNegoDone(wdi.lock(), winfo.lock(), req))
Adrien Béraud612b55b2023-05-29 10:42:04 -04001448 eraseInfo();
1449 });
1450 };
1451
1452 // Negotiate a new ICE socket
Adrien Béraud612b55b2023-05-29 10:42:04 -04001453 {
Adrien Béraud75754b22023-10-17 09:16:06 -04001454 std::lock_guard<std::mutex> lk(di->mtx_);
1455 di->info[req.id] = info;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001456 }
Adrien Béraud75754b22023-10-17 09:16:06 -04001457
Adrien Béraud612b55b2023-05-29 10:42:04 -04001458 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001459 shared->config_->logger->debug("[device {}] Accepting connection", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001460 std::unique_lock<std::mutex> lk {info->mutex_};
Sébastien Blin34086512023-07-25 09:52:14 -04001461 info->ice_ = shared->config_->factory->createUTransport("");
Adrien Béraud612b55b2023-05-29 10:42:04 -04001462 if (not info->ice_) {
1463 if (shared->config_->logger)
Adrien Béraud23852462023-07-22 01:46:27 -04001464 shared->config_->logger->error("[device {}] Cannot initialize ICE session", deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001465 eraseInfo();
1466 return;
1467 }
1468 // We need to detect any shutdown if the ice session is destroyed before going to the TLS session;
1469 info->ice_->setOnShutdown([eraseInfo]() {
1470 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1471 });
Adrien Béraud4cda2d72023-06-01 15:44:43 -04001472 try {
1473 info->ice_->initIceInstance(ice_config);
1474 } catch (const std::exception& e) {
1475 if (shared->config_->logger)
1476 shared->config_->logger->error("{}", e.what());
1477 dht::ThreadPool::io().run([eraseInfo = std::move(eraseInfo)] { eraseInfo(); });
1478 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001479 });
1480}
1481
1482void
Adrien Béraud75754b22023-10-17 09:16:06 -04001483ConnectionManager::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 -04001484{
Adrien Béraud75754b22023-10-17 09:16:06 -04001485 info->socket_ = std::make_shared<MultiplexedSocket>(config_->ioContext, deviceId, std::move(info->tls_), config_->logger);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001486 info->socket_->setOnReady(
Adrien Béraud75754b22023-10-17 09:16:06 -04001487 [w = weak_from_this()](const DeviceId& deviceId, const std::shared_ptr<ChannelSocket>& socket) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001488 if (auto sthis = w.lock())
1489 if (sthis->connReadyCb_)
1490 sthis->connReadyCb_(deviceId, socket->name(), socket);
1491 });
Adrien Béraud75754b22023-10-17 09:16:06 -04001492 info->socket_->setOnRequest([w = weak_from_this()](const std::shared_ptr<dht::crypto::Certificate>& peer,
Adrien Béraud612b55b2023-05-29 10:42:04 -04001493 const uint16_t&,
1494 const std::string& name) {
1495 if (auto sthis = w.lock())
1496 if (sthis->channelReqCb_)
1497 return sthis->channelReqCb_(peer, name);
1498 return false;
1499 });
Adrien Béraud75754b22023-10-17 09:16:06 -04001500 info->socket_->onShutdown([dinfo, wi=std::weak_ptr(info), vid]() {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001501 // Cancel current outgoing connections
Adrien Béraud75754b22023-10-17 09:16:06 -04001502 dht::ThreadPool::io().run([dinfo, wi, vid] {
1503 std::set<dht::Value::Id> ids;
1504 if (auto info = wi.lock()) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001505 std::lock_guard<std::mutex> lk(info->mutex_);
1506 if (info->socket_) {
1507 ids = std::move(info->cbIds_);
1508 info->socket_->shutdown();
1509 }
1510 }
Adrien Béraud75754b22023-10-17 09:16:06 -04001511 if (auto deviceInfo = dinfo.lock()) {
1512 std::shared_ptr<ConnectionInfo> info;
1513 std::vector<PendingCb> ops;
1514 std::unique_lock<std::mutex> lk(deviceInfo->mtx_);
1515 auto it = deviceInfo->info.find(vid);
1516 if (it != deviceInfo->info.end()) {
1517 info = std::move(it->second);
1518 deviceInfo->info.erase(it);
1519 }
1520 for (const auto& cbId : ids) {
1521 auto po = deviceInfo->extractPendingOperations(cbId, nullptr);
1522 ops.insert(ops.end(), po.begin(), po.end());
1523 }
1524 lk.unlock();
1525 for (auto& op : ops)
1526 op.cb(nullptr, deviceInfo->deviceId);
1527 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001528 });
1529 });
1530}
1531
1532const std::shared_future<tls::DhParams>
1533ConnectionManager::Impl::dhParams() const
1534{
1535 return dht::ThreadPool::computation().get<tls::DhParams>(
Adrien Béraud2a4e73d2023-08-27 12:53:55 -04001536 std::bind(tls::DhParams::loadDhParams, config_->cachePath / "dhParams"));
Adrien Béraud612b55b2023-05-29 10:42:04 -04001537}
1538
1539template<typename ID = dht::Value::Id>
1540std::set<ID, std::less<>>
Adrien Béraud1299a0d2023-09-19 15:03:28 -04001541loadIdList(const std::filesystem::path& path)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001542{
1543 std::set<ID, std::less<>> ids;
Adrien Béraud1299a0d2023-09-19 15:03:28 -04001544 std::ifstream file(path);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001545 if (!file.is_open()) {
1546 //JAMI_DBG("Could not load %s", path.c_str());
1547 return ids;
1548 }
1549 std::string line;
1550 while (std::getline(file, line)) {
1551 if constexpr (std::is_same<ID, std::string>::value) {
1552 ids.emplace(std::move(line));
1553 } else if constexpr (std::is_integral<ID>::value) {
1554 ID vid;
1555 if (auto [p, ec] = std::from_chars(line.data(), line.data() + line.size(), vid, 16);
1556 ec == std::errc()) {
1557 ids.emplace(vid);
1558 }
1559 }
1560 }
1561 return ids;
1562}
1563
1564template<typename List = std::set<dht::Value::Id>>
1565void
Adrien Béraud2a4e73d2023-08-27 12:53:55 -04001566saveIdList(const std::filesystem::path& path, const List& ids)
Adrien Béraud612b55b2023-05-29 10:42:04 -04001567{
Adrien Béraud1299a0d2023-09-19 15:03:28 -04001568 std::ofstream file(path, std::ios::trunc | std::ios::binary);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001569 if (!file.is_open()) {
1570 //JAMI_ERR("Could not save to %s", path.c_str());
1571 return;
1572 }
1573 for (auto& c : ids)
1574 file << std::hex << c << "\n";
1575}
1576
1577void
1578ConnectionManager::Impl::loadTreatedMessages()
1579{
1580 std::lock_guard<std::mutex> lock(messageMutex_);
Adrien Béraud2a4e73d2023-08-27 12:53:55 -04001581 auto path = config_->cachePath / "treatedMessages";
Aline Gondim Santos406c0f42023-09-13 12:10:23 -03001582 treatedMessages_ = loadIdList<std::string>(path.string());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001583 if (treatedMessages_.empty()) {
Aline Gondim Santos406c0f42023-09-13 12:10:23 -03001584 auto messages = loadIdList(path.string());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001585 for (const auto& m : messages)
1586 treatedMessages_.emplace(to_hex_string(m));
1587 }
1588}
1589
1590void
1591ConnectionManager::Impl::saveTreatedMessages() const
1592{
Adrien Béraud75754b22023-10-17 09:16:06 -04001593 dht::ThreadPool::io().run([w = weak_from_this()]() {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001594 if (auto sthis = w.lock()) {
1595 auto& this_ = *sthis;
1596 std::lock_guard<std::mutex> lock(this_.messageMutex_);
1597 fileutils::check_dir(this_.config_->cachePath.c_str());
Adrien Béraud2a4e73d2023-08-27 12:53:55 -04001598 saveIdList<decltype(this_.treatedMessages_)>(this_.config_->cachePath / "treatedMessages",
Adrien Béraud612b55b2023-05-29 10:42:04 -04001599 this_.treatedMessages_);
1600 }
1601 });
1602}
1603
1604bool
1605ConnectionManager::Impl::isMessageTreated(std::string_view id)
1606{
1607 std::lock_guard<std::mutex> lock(messageMutex_);
1608 auto res = treatedMessages_.emplace(id);
1609 if (res.second) {
1610 saveTreatedMessages();
1611 return false;
1612 }
1613 return true;
1614}
1615
1616/**
1617 * returns whether or not UPnP is enabled and active_
1618 * ie: if it is able to make port mappings
1619 */
1620bool
1621ConnectionManager::Impl::getUPnPActive() const
1622{
1623 return config_->getUPnPActive();
1624}
1625
1626IpAddr
1627ConnectionManager::Impl::getPublishedIpAddress(uint16_t family) const
1628{
1629 if (family == AF_INET)
1630 return publishedIp_[0];
1631 if (family == AF_INET6)
1632 return publishedIp_[1];
1633
1634 assert(family == AF_UNSPEC);
1635
1636 // If family is not set, prefere IPv4 if available. It's more
1637 // likely to succeed behind NAT.
1638 if (publishedIp_[0])
1639 return publishedIp_[0];
1640 if (publishedIp_[1])
1641 return publishedIp_[1];
1642 return {};
1643}
1644
1645void
1646ConnectionManager::Impl::setPublishedAddress(const IpAddr& ip_addr)
1647{
1648 if (ip_addr.getFamily() == AF_INET) {
1649 publishedIp_[0] = ip_addr;
1650 } else {
1651 publishedIp_[1] = ip_addr;
1652 }
1653}
1654
1655void
1656ConnectionManager::Impl::storeActiveIpAddress(std::function<void()>&& cb)
1657{
Adrien Béraud75754b22023-10-17 09:16:06 -04001658 dht()->getPublicAddress([w=weak_from_this(), cb = std::move(cb)](std::vector<dht::SockAddr>&& results) {
Sébastien Blinb6504372023-10-12 10:35:35 -04001659 auto shared = w.lock();
1660 if (!shared)
1661 return;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001662 bool hasIpv4 {false}, hasIpv6 {false};
1663 for (auto& result : results) {
1664 auto family = result.getFamily();
1665 if (family == AF_INET) {
1666 if (not hasIpv4) {
1667 hasIpv4 = true;
Sébastien Blinb6504372023-10-12 10:35:35 -04001668 if (shared->config_->logger)
1669 shared->config_->logger->debug("Store DHT public IPv4 address: {}", result);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001670 //JAMI_DBG("Store DHT public IPv4 address : %s", result.toString().c_str());
Sébastien Blinb6504372023-10-12 10:35:35 -04001671 shared->setPublishedAddress(*result.get());
1672 if (shared->config_->upnpCtrl) {
1673 shared->config_->upnpCtrl->setPublicAddress(*result.get());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001674 }
1675 }
1676 } else if (family == AF_INET6) {
1677 if (not hasIpv6) {
1678 hasIpv6 = true;
Sébastien Blinb6504372023-10-12 10:35:35 -04001679 if (shared->config_->logger)
1680 shared->config_->logger->debug("Store DHT public IPv6 address: {}", result);
1681 shared->setPublishedAddress(*result.get());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001682 }
1683 }
1684 if (hasIpv4 and hasIpv6)
1685 break;
1686 }
1687 if (cb)
1688 cb();
1689 });
1690}
1691
1692void
1693ConnectionManager::Impl::getIceOptions(std::function<void(IceTransportOptions&&)> cb) noexcept
1694{
1695 storeActiveIpAddress([this, cb = std::move(cb)] {
1696 IceTransportOptions opts = ConnectionManager::Impl::getIceOptions();
1697 auto publishedAddr = getPublishedIpAddress();
1698
1699 if (publishedAddr) {
1700 auto interfaceAddr = ip_utils::getInterfaceAddr(getLocalInterface(),
1701 publishedAddr.getFamily());
1702 if (interfaceAddr) {
1703 opts.accountLocalAddr = interfaceAddr;
1704 opts.accountPublicAddr = publishedAddr;
1705 }
1706 }
1707 if (cb)
1708 cb(std::move(opts));
1709 });
1710}
1711
1712IceTransportOptions
1713ConnectionManager::Impl::getIceOptions() const noexcept
1714{
1715 IceTransportOptions opts;
Sébastien Blin34086512023-07-25 09:52:14 -04001716 opts.factory = config_->factory;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001717 opts.upnpEnable = getUPnPActive();
Adrien Béraud7b869d92023-08-21 09:02:35 -04001718 opts.upnpContext = config_->upnpCtrl ? config_->upnpCtrl->upnpContext() : nullptr;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001719
1720 if (config_->stunEnabled)
1721 opts.stunServers.emplace_back(StunServerInfo().setUri(config_->stunServer));
1722 if (config_->turnEnabled) {
Sébastien Blin84bf4182023-07-21 14:18:39 -04001723 if (config_->turnCache) {
1724 auto turnAddr = config_->turnCache->getResolvedTurn();
1725 if (turnAddr != std::nullopt) {
1726 opts.turnServers.emplace_back(TurnServerInfo()
1727 .setUri(turnAddr->toString())
1728 .setUsername(config_->turnServerUserName)
1729 .setPassword(config_->turnServerPwd)
1730 .setRealm(config_->turnServerRealm));
1731 }
1732 } else {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001733 opts.turnServers.emplace_back(TurnServerInfo()
Sébastien Blin84bf4182023-07-21 14:18:39 -04001734 .setUri(config_->turnServer)
1735 .setUsername(config_->turnServerUserName)
1736 .setPassword(config_->turnServerPwd)
1737 .setRealm(config_->turnServerRealm));
Adrien Béraud612b55b2023-05-29 10:42:04 -04001738 }
1739 // NOTE: first test with ipv6 turn was not concluant and resulted in multiple
1740 // co issues. So this needs some debug. for now just disable
1741 // if (cacheTurnV6 && *cacheTurnV6) {
1742 // opts.turnServers.emplace_back(TurnServerInfo()
1743 // .setUri(cacheTurnV6->toString(true))
1744 // .setUsername(turnServerUserName_)
1745 // .setPassword(turnServerPwd_)
1746 // .setRealm(turnServerRealm_));
1747 //}
Adrien Béraud612b55b2023-05-29 10:42:04 -04001748 }
1749 return opts;
1750}
1751
1752bool
1753ConnectionManager::Impl::foundPeerDevice(const std::shared_ptr<dht::crypto::Certificate>& crt,
1754 dht::InfoHash& account_id,
1755 const std::shared_ptr<Logger>& logger)
1756{
1757 if (not crt)
1758 return false;
1759
1760 auto top_issuer = crt;
1761 while (top_issuer->issuer)
1762 top_issuer = top_issuer->issuer;
1763
1764 // Device certificate can't be self-signed
Adrien Béraudc631a832023-07-26 22:19:00 -04001765 if (top_issuer == crt) {
Adrien Béraud612b55b2023-05-29 10:42:04 -04001766 if (logger)
Adrien Béraud8b831a82023-07-21 14:13:06 -04001767 logger->warn("Found invalid (self-signed) peer device: {}", crt->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001768 return false;
Adrien Béraudc631a832023-07-26 22:19:00 -04001769 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001770
1771 // Check peer certificate chain
1772 // Trust store with top issuer as the only CA
1773 dht::crypto::TrustList peer_trust;
1774 peer_trust.add(*top_issuer);
1775 if (not peer_trust.verify(*crt)) {
1776 if (logger)
1777 logger->warn("Found invalid peer device: {}", crt->getLongId());
1778 return false;
1779 }
1780
1781 // Check cached OCSP response
1782 if (crt->ocspResponse and crt->ocspResponse->getCertificateStatus() != GNUTLS_OCSP_CERT_GOOD) {
1783 if (logger)
Adrien Béraud8b831a82023-07-21 14:13:06 -04001784 logger->error("Certificate {} is disabled by cached OCSP response", crt->getLongId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001785 return false;
1786 }
1787
Adrien Béraudc631a832023-07-26 22:19:00 -04001788 account_id = crt->issuer->getId();
1789 if (logger)
1790 logger->warn("Found peer device: {} account:{} CA:{}",
1791 crt->getLongId(),
1792 account_id,
1793 top_issuer->getId());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001794 return true;
1795}
1796
1797bool
1798ConnectionManager::Impl::findCertificate(
1799 const dht::PkId& id, std::function<void(const std::shared_ptr<dht::crypto::Certificate>&)>&& cb)
1800{
1801 if (auto cert = certStore().getCertificate(id.toString())) {
1802 if (cb)
1803 cb(cert);
1804 } else if (cb)
1805 cb(nullptr);
1806 return true;
1807}
1808
Sébastien Blin34086512023-07-25 09:52:14 -04001809bool
1810ConnectionManager::Impl::findCertificate(const dht::InfoHash& h,
1811 std::function<void(const std::shared_ptr<dht::crypto::Certificate>&)>&& cb)
1812{
1813 if (auto cert = certStore().getCertificate(h.toString())) {
1814 if (cb)
1815 cb(cert);
1816 } else {
1817 dht()->findCertificate(h,
1818 [cb = std::move(cb), this](
1819 const std::shared_ptr<dht::crypto::Certificate>& crt) {
1820 if (crt)
1821 certStore().pinCertificate(crt);
1822 if (cb)
1823 cb(crt);
1824 });
1825 }
1826 return true;
1827}
1828
Amna81221ad2023-09-14 17:33:26 -04001829std::shared_ptr<ConnectionManager::Config>
1830buildDefaultConfig(dht::crypto::Identity id){
1831 auto conf = std::make_shared<ConnectionManager::Config>();
1832 conf->id = std::move(id);
1833 return conf;
1834}
1835
Adrien Béraud612b55b2023-05-29 10:42:04 -04001836ConnectionManager::ConnectionManager(std::shared_ptr<ConnectionManager::Config> config_)
1837 : pimpl_ {std::make_shared<Impl>(config_)}
1838{}
1839
Amna81221ad2023-09-14 17:33:26 -04001840ConnectionManager::ConnectionManager(dht::crypto::Identity id)
1841 : ConnectionManager {buildDefaultConfig(id)}
1842{}
1843
Adrien Béraud612b55b2023-05-29 10:42:04 -04001844ConnectionManager::~ConnectionManager()
1845{
1846 if (pimpl_)
1847 pimpl_->shutdown();
1848}
1849
1850void
1851ConnectionManager::connectDevice(const DeviceId& deviceId,
1852 const std::string& name,
1853 ConnectCallback cb,
1854 bool noNewSocket,
1855 bool forceNewSocket,
1856 const std::string& connType)
1857{
1858 pimpl_->connectDevice(deviceId, name, std::move(cb), noNewSocket, forceNewSocket, connType);
1859}
1860
1861void
Amna0cf544d2023-07-25 14:25:09 -04001862ConnectionManager::connectDevice(const dht::InfoHash& deviceId,
1863 const std::string& name,
1864 ConnectCallbackLegacy cb,
1865 bool noNewSocket,
1866 bool forceNewSocket,
1867 const std::string& connType)
1868{
1869 pimpl_->connectDevice(deviceId, name, std::move(cb), noNewSocket, forceNewSocket, connType);
1870}
1871
1872
1873void
Adrien Béraud612b55b2023-05-29 10:42:04 -04001874ConnectionManager::connectDevice(const std::shared_ptr<dht::crypto::Certificate>& cert,
1875 const std::string& name,
1876 ConnectCallback cb,
1877 bool noNewSocket,
1878 bool forceNewSocket,
1879 const std::string& connType)
1880{
1881 pimpl_->connectDevice(cert, name, std::move(cb), noNewSocket, forceNewSocket, connType);
1882}
1883
1884bool
1885ConnectionManager::isConnecting(const DeviceId& deviceId, const std::string& name) const
1886{
Adrien Béraud75754b22023-10-17 09:16:06 -04001887 if (auto dinfo = pimpl_->infos_.getDeviceInfo(deviceId)) {
1888 std::unique_lock<std::mutex> lk {dinfo->mtx_};
Adrien Béraudb941e922023-10-16 12:56:14 -04001889 return dinfo->isConnecting(name);
Adrien Béraud75754b22023-10-17 09:16:06 -04001890 }
1891 return false;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001892}
1893
Sébastien Blind0c92c72023-12-07 15:27:51 -05001894bool
1895ConnectionManager::isConnected(const DeviceId& deviceId) const
1896{
1897 if (auto dinfo = pimpl_->infos_.getDeviceInfo(deviceId)) {
1898 std::unique_lock<std::mutex> lk {dinfo->mtx_};
1899 return dinfo->getConnectedInfo() != nullptr;
1900 }
1901 return false;
1902}
1903
Adrien Béraud612b55b2023-05-29 10:42:04 -04001904void
1905ConnectionManager::closeConnectionsWith(const std::string& peerUri)
1906{
Adrien Béraud75754b22023-10-17 09:16:06 -04001907 std::vector<std::shared_ptr<DeviceInfo>> dInfos;
1908 for (const auto& dinfo: pimpl_->infos_.getDeviceInfos()) {
1909 std::unique_lock<std::mutex> lk(dinfo->mtx_);
1910 bool isPeer = false;
1911 for (auto const& [id, cinfo]: dinfo->info) {
1912 std::lock_guard<std::mutex> lkv {cinfo->mutex_};
1913 auto tls = cinfo->tls_ ? cinfo->tls_.get() : (cinfo->socket_ ? cinfo->socket_->endpoint() : nullptr);
Adrien Béraudafa8e282023-09-24 12:53:20 -04001914 auto cert = tls ? tls->peerCertificate() : nullptr;
1915 if (not cert)
Adrien Béraud75754b22023-10-17 09:16:06 -04001916 cert = pimpl_->certStore().getCertificate(dinfo->deviceId.toString());
Adrien Béraud612b55b2023-05-29 10:42:04 -04001917 if (cert && cert->issuer && peerUri == cert->issuer->getId().toString()) {
Adrien Béraud75754b22023-10-17 09:16:06 -04001918 isPeer = true;
1919 break;
Adrien Béraud612b55b2023-05-29 10:42:04 -04001920 }
1921 }
Adrien Béraud75754b22023-10-17 09:16:06 -04001922 lk.unlock();
1923 if (isPeer) {
1924 dInfos.emplace_back(std::move(dinfo));
1925 }
Adrien Béraud612b55b2023-05-29 10:42:04 -04001926 }
1927 // Stop connections to all peers devices
Adrien Béraud75754b22023-10-17 09:16:06 -04001928 for (const auto& dinfo : dInfos) {
1929 std::unique_lock<std::mutex> lk {dinfo->mtx_};
1930 auto unused = dinfo->extractUnusedConnections();
1931 auto pending = dinfo->extractPendingOperations(0, nullptr);
1932 pimpl_->infos_.removeDeviceInfo(dinfo->deviceId);
1933 lk.unlock();
1934 for (auto& op : unused)
1935 op->shutdown();
1936 for (auto& op : pending)
1937 op.cb(nullptr, dinfo->deviceId);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001938 }
1939}
1940
1941void
1942ConnectionManager::onDhtConnected(const dht::crypto::PublicKey& devicePk)
1943{
1944 pimpl_->onDhtConnected(devicePk);
1945}
1946
1947void
1948ConnectionManager::onICERequest(onICERequestCallback&& cb)
1949{
1950 pimpl_->iceReqCb_ = std::move(cb);
1951}
1952
1953void
1954ConnectionManager::onChannelRequest(ChannelRequestCallback&& cb)
1955{
1956 pimpl_->channelReqCb_ = std::move(cb);
1957}
1958
1959void
1960ConnectionManager::onConnectionReady(ConnectionReadyCallback&& cb)
1961{
1962 pimpl_->connReadyCb_ = std::move(cb);
1963}
1964
1965void
1966ConnectionManager::oniOSConnected(iOSConnectedCallback&& cb)
1967{
1968 pimpl_->iOSConnectedCb_ = std::move(cb);
1969}
1970
1971std::size_t
1972ConnectionManager::activeSockets() const
1973{
Adrien Béraud75754b22023-10-17 09:16:06 -04001974 return pimpl_->infos_.getConnectedInfos().size();
Adrien Béraud612b55b2023-05-29 10:42:04 -04001975}
1976
1977void
1978ConnectionManager::monitor() const
1979{
Adrien Béraud612b55b2023-05-29 10:42:04 -04001980 auto logger = pimpl_->config_->logger;
1981 if (!logger)
1982 return;
1983 logger->debug("ConnectionManager current status:");
Adrien Béraud75754b22023-10-17 09:16:06 -04001984 for (const auto& ci : pimpl_->infos_.getConnectedInfos()) {
1985 std::lock_guard<std::mutex> lk(ci->mutex_);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001986 if (ci->socket_)
1987 ci->socket_->monitor();
1988 }
1989 logger->debug("ConnectionManager end status.");
1990}
1991
1992void
1993ConnectionManager::connectivityChanged()
1994{
Adrien Béraud75754b22023-10-17 09:16:06 -04001995 for (const auto& ci : pimpl_->infos_.getConnectedInfos()) {
1996 std::lock_guard<std::mutex> lk(ci->mutex_);
Adrien Béraud612b55b2023-05-29 10:42:04 -04001997 if (ci->socket_)
Adrien Béraud51a54712023-10-17 21:24:30 -04001998 dht::ThreadPool::io().run([s = ci->socket_] { s->sendBeacon(); });
Adrien Béraud612b55b2023-05-29 10:42:04 -04001999 }
2000}
2001
2002void
2003ConnectionManager::getIceOptions(std::function<void(IceTransportOptions&&)> cb) noexcept
2004{
2005 return pimpl_->getIceOptions(std::move(cb));
2006}
2007
2008IceTransportOptions
2009ConnectionManager::getIceOptions() const noexcept
2010{
2011 return pimpl_->getIceOptions();
2012}
2013
2014IpAddr
2015ConnectionManager::getPublishedIpAddress(uint16_t family) const
2016{
2017 return pimpl_->getPublishedIpAddress(family);
2018}
2019
2020void
2021ConnectionManager::setPublishedAddress(const IpAddr& ip_addr)
2022{
2023 return pimpl_->setPublishedAddress(ip_addr);
2024}
2025
2026void
2027ConnectionManager::storeActiveIpAddress(std::function<void()>&& cb)
2028{
2029 return pimpl_->storeActiveIpAddress(std::move(cb));
2030}
2031
2032std::shared_ptr<ConnectionManager::Config>
2033ConnectionManager::getConfig()
2034{
2035 return pimpl_->config_;
2036}
2037
Amna31791e52023-08-03 12:40:57 -04002038std::vector<std::map<std::string, std::string>>
2039ConnectionManager::getConnectionList(const DeviceId& device) const
2040{
2041 std::vector<std::map<std::string, std::string>> connectionsList;
Amna31791e52023-08-03 12:40:57 -04002042 if (device) {
Adrien Béraud75754b22023-10-17 09:16:06 -04002043 if (auto deviceInfo = pimpl_->infos_.getDeviceInfo(device)) {
2044 connectionsList = deviceInfo->getConnectionList(pimpl_->certStore());
Amna31791e52023-08-03 12:40:57 -04002045 }
Adrien Béraud75754b22023-10-17 09:16:06 -04002046 } else {
2047 for (const auto& deviceInfo : pimpl_->infos_.getDeviceInfos()) {
2048 auto cl = deviceInfo->getConnectionList(pimpl_->certStore());
2049 connectionsList.insert(connectionsList.end(), std::make_move_iterator(cl.begin()), std::make_move_iterator(cl.end()));
Amna31791e52023-08-03 12:40:57 -04002050 }
2051 }
2052 return connectionsList;
2053}
2054
2055std::vector<std::map<std::string, std::string>>
2056ConnectionManager::getChannelList(const std::string& connectionId) const
2057{
Adrien Béraud75754b22023-10-17 09:16:06 -04002058 auto [deviceId, valueId] = parseCallbackId(connectionId);
2059 if (auto info = pimpl_->infos_.getInfo(deviceId, valueId)) {
2060 std::lock_guard<std::mutex> lk(info->mutex_);
2061 if (info->socket_)
2062 return info->socket_->getChannelList();
Amna31791e52023-08-03 12:40:57 -04002063 }
Adrien Béraud75754b22023-10-17 09:16:06 -04002064 return {};
Amna31791e52023-08-03 12:40:57 -04002065}
2066
Sébastien Blin464bdff2023-07-19 08:02:53 -04002067} // namespace dhtnet