2013-10-27 11:26:39 -04:00
|
|
|
#ifndef TRANSPORTS_H__
|
|
|
|
#define TRANSPORTS_H__
|
|
|
|
|
|
|
|
#include <thread>
|
2014-04-04 16:29:40 -04:00
|
|
|
#include <mutex>
|
|
|
|
#include <condition_variable>
|
2013-10-27 11:26:39 -04:00
|
|
|
#include <functional>
|
|
|
|
#include <map>
|
2015-01-20 21:05:57 -05:00
|
|
|
#include <vector>
|
2014-04-04 16:29:40 -04:00
|
|
|
#include <queue>
|
2013-10-27 11:26:39 -04:00
|
|
|
#include <string>
|
2014-11-25 16:30:15 -05:00
|
|
|
#include <memory>
|
2015-03-16 19:33:59 -04:00
|
|
|
#include <atomic>
|
2013-10-27 11:26:39 -04:00
|
|
|
#include <boost/asio.hpp>
|
2014-10-20 16:09:59 -04:00
|
|
|
#include "TransportSession.h"
|
2013-10-27 11:26:39 -04:00
|
|
|
#include "NTCPSession.h"
|
2014-01-23 16:10:33 -05:00
|
|
|
#include "SSU.h"
|
2013-10-27 11:26:39 -04:00
|
|
|
#include "RouterInfo.h"
|
|
|
|
#include "I2NPProtocol.h"
|
2014-04-04 13:30:13 -04:00
|
|
|
#include "Identity.h"
|
2013-10-27 11:26:39 -04:00
|
|
|
|
|
|
|
namespace i2p
|
2014-10-21 12:25:53 -04:00
|
|
|
{
|
|
|
|
namespace transport
|
2013-10-27 11:26:39 -04:00
|
|
|
{
|
2014-04-04 16:29:40 -04:00
|
|
|
class DHKeysPairSupplier
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-10-20 15:19:56 -04:00
|
|
|
DHKeysPairSupplier (int size);
|
2014-04-04 16:29:40 -04:00
|
|
|
~DHKeysPairSupplier ();
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
2015-11-03 09:15:49 -05:00
|
|
|
std::shared_ptr<i2p::crypto::DHKeys> Acquire ();
|
|
|
|
void Return (std::shared_ptr<i2p::crypto::DHKeys> pair);
|
2014-04-04 16:29:40 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void Run ();
|
|
|
|
void CreateDHKeysPairs (int num);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-09-17 11:13:25 -04:00
|
|
|
const int m_QueueSize;
|
2015-11-03 09:15:49 -05:00
|
|
|
std::queue<std::shared_ptr<i2p::crypto::DHKeys> > m_Queue;
|
2014-04-04 16:29:40 -04:00
|
|
|
|
|
|
|
bool m_IsRunning;
|
|
|
|
std::thread * m_Thread;
|
|
|
|
std::condition_variable m_Acquired;
|
|
|
|
std::mutex m_AcquiredMutex;
|
|
|
|
};
|
|
|
|
|
2015-01-12 22:53:35 -05:00
|
|
|
struct Peer
|
|
|
|
{
|
2015-01-13 21:31:39 -05:00
|
|
|
int numAttempts;
|
2015-01-12 22:53:35 -05:00
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> router;
|
2015-06-09 11:00:37 -04:00
|
|
|
std::list<std::shared_ptr<TransportSession> > sessions;
|
2015-02-11 14:45:25 -05:00
|
|
|
uint64_t creationTime;
|
2015-06-17 10:47:26 -04:00
|
|
|
std::vector<std::shared_ptr<i2p::I2NPMessage> > delayedMessages;
|
2015-01-12 22:53:35 -05:00
|
|
|
|
2015-06-09 11:00:37 -04:00
|
|
|
void Done ()
|
|
|
|
{
|
2016-08-09 01:53:37 +03:00
|
|
|
for (auto& it: sessions)
|
2015-06-09 11:00:37 -04:00
|
|
|
it->Done ();
|
|
|
|
}
|
2015-01-12 22:53:35 -05:00
|
|
|
};
|
|
|
|
|
2015-02-11 14:45:25 -05:00
|
|
|
const size_t SESSION_CREATION_TIMEOUT = 10; // in seconds
|
2016-11-13 09:14:05 -05:00
|
|
|
const int PEER_TEST_INTERVAL = 71; // in minutes
|
2016-07-12 12:37:39 -04:00
|
|
|
const int MAX_NUM_DELAYED_MESSAGES = 50;
|
2013-10-27 11:26:39 -04:00
|
|
|
class Transports
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Transports ();
|
|
|
|
~Transports ();
|
|
|
|
|
2016-06-17 09:02:12 -04:00
|
|
|
void Start (bool enableNTCP=true, bool enableSSU=true);
|
2013-10-27 11:26:39 -04:00
|
|
|
void Stop ();
|
2016-06-13 11:34:44 -04:00
|
|
|
|
|
|
|
bool IsBoundNTCP() const { return m_NTCPServer != nullptr; }
|
|
|
|
bool IsBoundSSU() const { return m_SSUServer != nullptr; }
|
2013-10-27 11:26:39 -04:00
|
|
|
|
2016-07-13 10:09:22 -04:00
|
|
|
bool IsOnline() const { return m_IsOnline; };
|
|
|
|
void SetOnline (bool online) { m_IsOnline = online; };
|
|
|
|
|
2013-10-27 11:26:39 -04:00
|
|
|
boost::asio::io_service& GetService () { return m_Service; };
|
2015-11-03 09:15:49 -05:00
|
|
|
std::shared_ptr<i2p::crypto::DHKeys> GetNextDHKeysPair ();
|
|
|
|
void ReuseDHKeysPair (std::shared_ptr<i2p::crypto::DHKeys> pair);
|
2013-10-27 11:26:39 -04:00
|
|
|
|
2015-06-17 11:41:07 -04:00
|
|
|
void SendMessage (const i2p::data::IdentHash& ident, std::shared_ptr<i2p::I2NPMessage> msg);
|
|
|
|
void SendMessages (const i2p::data::IdentHash& ident, const std::vector<std::shared_ptr<i2p::I2NPMessage> >& msgs);
|
2014-11-24 12:26:11 -05:00
|
|
|
void CloseSession (std::shared_ptr<const i2p::data::RouterInfo> router);
|
2015-01-12 22:53:35 -05:00
|
|
|
|
|
|
|
void PeerConnected (std::shared_ptr<TransportSession> session);
|
|
|
|
void PeerDisconnected (std::shared_ptr<TransportSession> session);
|
2015-03-17 20:56:51 -04:00
|
|
|
bool IsConnected (const i2p::data::IdentHash& ident) const;
|
|
|
|
|
2015-03-16 19:33:59 -04:00
|
|
|
void UpdateSentBytes (uint64_t numBytes) { m_TotalSentBytes += numBytes; };
|
|
|
|
void UpdateReceivedBytes (uint64_t numBytes) { m_TotalReceivedBytes += numBytes; };
|
|
|
|
uint64_t GetTotalSentBytes () const { return m_TotalSentBytes; };
|
2015-03-17 15:19:38 -04:00
|
|
|
uint64_t GetTotalReceivedBytes () const { return m_TotalReceivedBytes; };
|
2016-03-31 00:00:00 +00:00
|
|
|
uint32_t GetInBandwidth () const { return m_InBandwidth; };
|
|
|
|
uint32_t GetOutBandwidth () const { return m_OutBandwidth; };
|
2015-03-18 13:07:11 -04:00
|
|
|
bool IsBandwidthExceeded () const;
|
2015-05-05 10:33:19 -04:00
|
|
|
size_t GetNumPeers () const { return m_Peers.size (); };
|
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> GetRandomPeer () const;
|
2015-03-17 15:19:38 -04:00
|
|
|
|
2016-06-17 11:03:33 -04:00
|
|
|
/** get a trusted first hop for restricted routes */
|
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> GetRestrictedPeer() const;
|
|
|
|
/** do we want to use restricted routes? */
|
|
|
|
bool RoutesRestricted() const;
|
|
|
|
/** restrict routes to use only these router families for first hops */
|
2016-10-28 12:50:26 -04:00
|
|
|
void RestrictRoutesToFamilies(std::set<std::string> families);
|
|
|
|
/** restrict routes to use only these routers for first hops */
|
|
|
|
void RestrictRoutesToRouters(std::set<i2p::data::IdentHash> routers);
|
|
|
|
|
|
|
|
bool IsRestrictedPeer(const i2p::data::IdentHash & ident) const;
|
2016-06-17 11:03:33 -04:00
|
|
|
|
2015-11-03 09:15:49 -05:00
|
|
|
void PeerTest ();
|
|
|
|
|
2013-10-27 11:26:39 -04:00
|
|
|
private:
|
|
|
|
|
2013-11-29 07:52:09 -05:00
|
|
|
void Run ();
|
2015-01-14 16:37:03 -05:00
|
|
|
void RequestComplete (std::shared_ptr<const i2p::data::RouterInfo> r, const i2p::data::IdentHash& ident);
|
2015-12-31 11:21:01 -05:00
|
|
|
void HandleRequestComplete (std::shared_ptr<const i2p::data::RouterInfo> r, i2p::data::IdentHash ident);
|
2015-06-17 11:41:07 -04:00
|
|
|
void PostMessages (i2p::data::IdentHash ident, std::vector<std::shared_ptr<i2p::I2NPMessage> > msgs);
|
2014-11-24 12:26:11 -05:00
|
|
|
void PostCloseSession (std::shared_ptr<const i2p::data::RouterInfo> router);
|
2015-01-13 21:31:39 -05:00
|
|
|
bool ConnectToPeer (const i2p::data::IdentHash& ident, Peer& peer);
|
2015-02-11 14:45:25 -05:00
|
|
|
void HandlePeerCleanupTimer (const boost::system::error_code& ecode);
|
2016-11-13 09:14:05 -05:00
|
|
|
void HandlePeerTestTimer (const boost::system::error_code& ecode);
|
|
|
|
|
2015-01-16 23:01:40 -05:00
|
|
|
void NTCPResolve (const std::string& addr, const i2p::data::IdentHash& ident);
|
2015-01-16 15:25:44 -05:00
|
|
|
void HandleNTCPResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
|
2015-12-03 15:45:01 -05:00
|
|
|
i2p::data::IdentHash ident, std::shared_ptr<boost::asio::ip::tcp::resolver> resolver);
|
|
|
|
void SSUResolve (const std::string& addr, const i2p::data::IdentHash& ident);
|
|
|
|
void HandleSSUResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
|
2015-02-15 10:23:06 -05:00
|
|
|
i2p::data::IdentHash ident, std::shared_ptr<boost::asio::ip::tcp::resolver> resolver);
|
2015-01-16 15:25:44 -05:00
|
|
|
|
2015-03-17 15:19:38 -04:00
|
|
|
void UpdateBandwidth ();
|
2014-02-08 21:06:40 -05:00
|
|
|
void DetectExternalIP ();
|
2013-10-27 11:26:39 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-07-13 10:09:22 -04:00
|
|
|
bool m_IsOnline, m_IsRunning;
|
2013-10-27 11:26:39 -04:00
|
|
|
std::thread * m_Thread;
|
|
|
|
boost::asio::io_service m_Service;
|
|
|
|
boost::asio::io_service::work m_Work;
|
2016-11-13 09:14:05 -05:00
|
|
|
boost::asio::deadline_timer m_PeerCleanupTimer, m_PeerTestTimer;
|
2013-10-27 11:26:39 -04:00
|
|
|
|
2015-01-11 17:41:56 -05:00
|
|
|
NTCPServer * m_NTCPServer;
|
2014-10-21 12:25:53 -04:00
|
|
|
SSUServer * m_SSUServer;
|
2016-01-15 16:23:03 -05:00
|
|
|
mutable std::mutex m_PeersMutex;
|
2015-01-12 22:53:35 -05:00
|
|
|
std::map<i2p::data::IdentHash, Peer> m_Peers;
|
|
|
|
|
2014-04-04 16:29:40 -04:00
|
|
|
DHKeysPairSupplier m_DHKeysPairSupplier;
|
2015-03-17 15:19:38 -04:00
|
|
|
|
2015-03-16 19:33:59 -04:00
|
|
|
std::atomic<uint64_t> m_TotalSentBytes, m_TotalReceivedBytes;
|
2016-03-31 00:00:00 +00:00
|
|
|
uint32_t m_InBandwidth, m_OutBandwidth; // bytes per second
|
2015-03-17 15:19:38 -04:00
|
|
|
uint64_t m_LastInBandwidthUpdateBytes, m_LastOutBandwidthUpdateBytes;
|
|
|
|
uint64_t m_LastBandwidthUpdateTime;
|
|
|
|
|
2016-11-15 14:11:55 -05:00
|
|
|
/** which router families to trust for first hops */
|
|
|
|
std::vector<std::string> m_TrustedFamilies;
|
|
|
|
mutable std::mutex m_FamilyMutex;
|
2016-10-28 12:50:26 -04:00
|
|
|
|
2016-11-15 14:11:55 -05:00
|
|
|
/** which routers for first hop to trust */
|
|
|
|
std::vector<i2p::data::IdentHash> m_TrustedRouters;
|
|
|
|
mutable std::mutex m_TrustedRoutersMutex;
|
|
|
|
|
|
|
|
i2p::I2NPMessagesHandler m_LoopbackHandler;
|
2016-06-17 11:03:33 -04:00
|
|
|
|
2013-12-10 08:10:49 -05:00
|
|
|
public:
|
|
|
|
|
|
|
|
// for HTTP only
|
2015-01-11 17:41:56 -05:00
|
|
|
const NTCPServer * GetNTCPServer () const { return m_NTCPServer; };
|
2014-10-21 12:25:53 -04:00
|
|
|
const SSUServer * GetSSUServer () const { return m_SSUServer; };
|
2015-01-14 13:21:41 -05:00
|
|
|
const decltype(m_Peers)& GetPeers () const { return m_Peers; };
|
2013-10-27 11:26:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Transports transports;
|
|
|
|
}
|
2014-10-21 12:25:53 -04:00
|
|
|
}
|
2013-10-27 11:26:39 -04:00
|
|
|
|
|
|
|
#endif
|