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