2013-10-23 04:45:40 +02:00
|
|
|
#ifndef ROUTER_CONTEXT_H__
|
|
|
|
#define ROUTER_CONTEXT_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2014-10-27 20:08:50 +01:00
|
|
|
#include <string>
|
2013-10-23 04:45:40 +02:00
|
|
|
#include <cryptopp/dsa.h>
|
|
|
|
#include <cryptopp/osrng.h>
|
2014-04-01 19:42:04 +02:00
|
|
|
#include "Identity.h"
|
2013-10-23 04:45:40 +02:00
|
|
|
#include "RouterInfo.h"
|
2014-10-07 02:18:18 +02:00
|
|
|
#include "Garlic.h"
|
2013-10-23 04:45:40 +02:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
const char ROUTER_INFO[] = "router.info";
|
|
|
|
const char ROUTER_KEYS[] = "router.keys";
|
2014-08-31 22:46:39 +02:00
|
|
|
const int ROUTER_INFO_UPDATE_INTERVAL = 1800; // 30 minutes
|
2013-10-23 04:45:40 +02:00
|
|
|
|
2014-10-07 02:18:18 +02:00
|
|
|
class RouterContext: public i2p::garlic::GarlicDestination
|
2013-10-23 04:45:40 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
RouterContext ();
|
2014-09-04 15:31:42 +02:00
|
|
|
void Init ();
|
2013-10-23 04:45:40 +02:00
|
|
|
|
|
|
|
i2p::data::RouterInfo& GetRouterInfo () { return m_RouterInfo; };
|
|
|
|
CryptoPP::RandomNumberGenerator& GetRandomNumberGenerator () { return m_Rnd; };
|
2013-12-10 14:10:49 +01:00
|
|
|
|
2014-09-11 15:32:34 +02:00
|
|
|
void UpdatePort (int port); // called from Daemon
|
|
|
|
void UpdateAddress (const char * host); // called from SSU or Daemon
|
2014-09-09 14:03:05 +02:00
|
|
|
bool AddIntroducer (const i2p::data::RouterInfo& routerInfo, uint32_t tag);
|
2014-09-07 02:43:20 +02:00
|
|
|
void RemoveIntroducer (const boost::asio::ip::udp::endpoint& e);
|
2014-09-08 22:43:20 +02:00
|
|
|
bool IsUnreachable () const { return m_IsUnreachable; };
|
|
|
|
void SetUnreachable ();
|
2014-09-30 19:34:29 +02:00
|
|
|
bool AcceptsTunnels () const { return m_AcceptsTunnels; };
|
|
|
|
void SetAcceptsTunnels (bool acceptsTunnels) { m_AcceptsTunnels = acceptsTunnels; };
|
2014-10-27 02:32:06 +01:00
|
|
|
bool SupportsV6 () const { return m_RouterInfo.IsV6 (); };
|
|
|
|
void SetSupportsV6 (bool supportsV6);
|
2014-10-27 20:08:50 +01:00
|
|
|
void UpdateV6Address (const std::string& host); // called from NTCP session
|
|
|
|
|
2014-04-01 19:42:04 +02:00
|
|
|
// implements LocalDestination
|
2014-08-26 04:47:12 +02:00
|
|
|
const i2p::data::PrivateKeys& GetPrivateKeys () const { return m_Keys; };
|
|
|
|
const uint8_t * GetEncryptionPrivateKey () const { return m_Keys.GetPrivateKey (); };
|
2014-08-25 22:25:12 +02:00
|
|
|
const uint8_t * GetEncryptionPublicKey () const { return GetIdentity ().GetStandardIdentity ().publicKey; };
|
2014-08-16 01:21:30 +02:00
|
|
|
void SetLeaseSetUpdated () {};
|
2014-10-08 03:08:00 +02:00
|
|
|
|
|
|
|
// implements GarlicDestination
|
|
|
|
const i2p::data::LeaseSet * GetLeaseSet () { return nullptr; };
|
2014-10-13 23:45:07 +02:00
|
|
|
void HandleI2NPMessage (const uint8_t * buf, size_t len, i2p::tunnel::InboundTunnel * from);
|
2014-04-02 00:58:47 +02:00
|
|
|
|
2013-10-23 04:45:40 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
void CreateNewRouter ();
|
2014-08-31 22:46:39 +02:00
|
|
|
void NewRouterInfo ();
|
2014-02-23 17:48:09 +01:00
|
|
|
void UpdateRouterInfo ();
|
2013-10-23 04:45:40 +02:00
|
|
|
bool Load ();
|
2014-08-31 22:46:39 +02:00
|
|
|
void SaveKeys ();
|
2013-10-23 04:45:40 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
i2p::data::RouterInfo m_RouterInfo;
|
2014-08-25 22:25:12 +02:00
|
|
|
i2p::data::PrivateKeys m_Keys;
|
2013-10-23 04:45:40 +02:00
|
|
|
CryptoPP::AutoSeededRandomPool m_Rnd;
|
2014-08-31 22:46:39 +02:00
|
|
|
uint64_t m_LastUpdateTime;
|
2014-09-30 19:34:29 +02:00
|
|
|
bool m_IsUnreachable, m_AcceptsTunnels;
|
2013-10-23 04:45:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern RouterContext context;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|