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>
|
2014-04-04 16:29:40 -04:00
|
|
|
#include <queue>
|
2013-10-27 11:26:39 -04:00
|
|
|
#include <string>
|
2014-10-20 15:19:56 -04:00
|
|
|
#include <cryptopp/osrng.h>
|
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 ();
|
2014-10-21 12:25:53 -04:00
|
|
|
DHKeysPair * Acquire ();
|
|
|
|
void Return (DHKeysPair * 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;
|
2014-10-21 12:25:53 -04:00
|
|
|
std::queue<DHKeysPair *> 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;
|
2014-10-20 15:19:56 -04:00
|
|
|
CryptoPP::AutoSeededRandomPool m_Rnd;
|
2014-04-04 16:29:40 -04:00
|
|
|
};
|
|
|
|
|
2013-10-27 11:26:39 -04:00
|
|
|
class Transports
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Transports ();
|
|
|
|
~Transports ();
|
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
|
|
|
boost::asio::io_service& GetService () { return m_Service; };
|
2014-10-20 16:09:59 -04:00
|
|
|
i2p::transport::DHKeysPair * GetNextDHKeysPair ();
|
2014-10-21 12:25:53 -04:00
|
|
|
void ReuseDHKeysPair (DHKeysPair * pair);
|
2013-10-27 11:26:39 -04:00
|
|
|
|
2014-10-21 12:25:53 -04:00
|
|
|
void AddNTCPSession (NTCPSession * session);
|
|
|
|
void RemoveNTCPSession (NTCPSession * session);
|
2013-10-27 11:26:39 -04:00
|
|
|
|
2014-10-21 12:25:53 -04:00
|
|
|
NTCPSession * GetNextNTCPSession ();
|
|
|
|
NTCPSession * FindNTCPSession (const i2p::data::IdentHash& ident);
|
2013-10-27 11:26:39 -04:00
|
|
|
|
2013-11-29 07:52:09 -05:00
|
|
|
void SendMessage (const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg);
|
2014-11-24 12:26:11 -05:00
|
|
|
void CloseSession (std::shared_ptr<const i2p::data::RouterInfo> router);
|
2014-07-18 20:32:45 -04:00
|
|
|
|
2013-10-27 11:26:39 -04:00
|
|
|
private:
|
|
|
|
|
2013-11-29 07:52:09 -05:00
|
|
|
void Run ();
|
2014-10-21 12:25:53 -04:00
|
|
|
void HandleAccept (NTCPServerConnection * conn, const boost::system::error_code& error);
|
2014-10-27 15:08:50 -04:00
|
|
|
void HandleAcceptV6 (NTCPServerConnection * conn, const boost::system::error_code& error);
|
2014-08-28 21:34:23 -04:00
|
|
|
void HandleResendTimer (const boost::system::error_code& ecode, boost::asio::deadline_timer * timer,
|
|
|
|
const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg);
|
2013-12-29 10:48:57 -05:00
|
|
|
void PostMessage (const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg);
|
2014-11-24 12:26:11 -05:00
|
|
|
void PostCloseSession (std::shared_ptr<const i2p::data::RouterInfo> router);
|
2014-07-18 20:32:45 -04:00
|
|
|
|
2014-02-08 21:06:40 -05:00
|
|
|
void DetectExternalIP ();
|
2013-10-27 11:26:39 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2013-12-29 10:48:57 -05:00
|
|
|
bool 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;
|
2014-10-27 15:08:50 -04:00
|
|
|
boost::asio::ip::tcp::acceptor * m_NTCPAcceptor, * m_NTCPV6Acceptor;
|
2013-10-27 11:26:39 -04:00
|
|
|
|
2014-10-21 12:25:53 -04:00
|
|
|
std::map<i2p::data::IdentHash, NTCPSession *> m_NTCPSessions;
|
|
|
|
SSUServer * m_SSUServer;
|
2013-12-10 08:10:49 -05:00
|
|
|
|
2014-04-04 16:29:40 -04:00
|
|
|
DHKeysPairSupplier m_DHKeysPairSupplier;
|
|
|
|
|
2013-12-10 08:10:49 -05:00
|
|
|
public:
|
|
|
|
|
|
|
|
// for HTTP only
|
|
|
|
const decltype(m_NTCPSessions)& GetNTCPSessions () const { return m_NTCPSessions; };
|
2014-10-21 12:25:53 -04:00
|
|
|
const SSUServer * GetSSUServer () const { return m_SSUServer; };
|
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
|