blob: 77cfe9feeccb92f47863b6507fb7c92869a19025 [file] [log] [blame]
Amna38768302023-08-21 11:51:56 -04001/*
Amna2f3539b2023-09-18 13:59:22 -04002 * Copyright (C) 2023 Savoir-faire Linux Inc.
Amna38768302023-08-21 11:51:56 -04003 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * 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 "multiplexed_socket.h"
19#include "ice_transport_factory.h"
20#include "certstore.h"
21
22#include <asio.hpp>
23
24namespace dhtnet {
25/**
26 * Attempt to retrieve the identity from the .ssh directory, and if none is found, generate a new
27 * certification.
28 * @return dht::crypto::Identity
29 */
30
31class Dnc
32{
33public:
34 // Build a server
Adrien Béraudecde63f2023-08-26 18:11:21 -040035 Dnc(const std::filesystem::path& path,
36 dht::crypto::Identity identity,
Amna2f3539b2023-09-18 13:59:22 -040037 const std::string& bootstrap,
38 const std::string& turn_host,
39 const std::string& turn_user,
40 const std::string& turn_pass,
Amna4325f0f2024-01-22 16:11:00 -050041 const std::string& turn_realm,
42 const bool anonymous);
Amna38768302023-08-21 11:51:56 -040043 // Build a client
Adrien Béraudecde63f2023-08-26 18:11:21 -040044 Dnc(const std::filesystem::path& path,
45 dht::crypto::Identity identity,
46 const std::string& bootstrap,
Amna38768302023-08-21 11:51:56 -040047 dht::InfoHash peer_id,
Adrien Béraudecde63f2023-08-26 18:11:21 -040048 const std::string& remote_host,
Amna2f3539b2023-09-18 13:59:22 -040049 int remote_port,
Amna4325f0f2024-01-22 16:11:00 -050050 const std::string& turn_host,
51 const std::string& turn_user,
52 const std::string& turn_pass,
53 const std::string& turn_realm);
Amna38768302023-08-21 11:51:56 -040054 ~Dnc();
55 void run();
56
57private:
58 std::unique_ptr<ConnectionManager> connectionManager;
59 std::shared_ptr<Logger> logger;
Amna2f3539b2023-09-18 13:59:22 -040060 std::shared_ptr<tls::CertificateStore> certStore;
61 std::shared_ptr<IceTransportFactory> iceFactory;
Amna38768302023-08-21 11:51:56 -040062 std::shared_ptr<asio::io_context> ioContext;
63 std::thread ioContextRunner;
Amna4325f0f2024-01-22 16:11:00 -050064 std::shared_ptr<tls::TrustStore> trustStore;
Amna38768302023-08-21 11:51:56 -040065
Amna38768302023-08-21 11:51:56 -040066 std::pair<std::string, std::string> parseName(const std::string_view name);
67};
68
69} // namespace dhtnet