|
|
|
#ifndef ROUTER_CONTEXT_H__
|
|
|
|
#define ROUTER_CONTEXT_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <cryptopp/dsa.h>
|
|
|
|
#include <cryptopp/osrng.h>
|
|
|
|
#include "Identity.h"
|
|
|
|
#include "RouterInfo.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
const char ROUTER_INFO[] = "router.info";
|
|
|
|
const char ROUTER_KEYS[] = "router.keys";
|
|
|
|
const int ROUTER_INFO_UPDATE_INTERVAL = 1800; // 30 minutes
|
|
|
|
|
|
|
|
class RouterContext: public i2p::data::LocalDestination
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
RouterContext ();
|
|
|
|
void Init ();
|
|
|
|
|
|
|
|
i2p::data::RouterInfo& GetRouterInfo () { return m_RouterInfo; };
|
|
|
|
const uint8_t * GetPrivateKey () const { return m_Keys.GetPrivateKey (); };
|
|
|
|
const i2p::data::Identity& GetRouterIdentity () const { return m_RouterInfo.GetRouterIdentity (); };
|
|
|
|
const i2p::data::IdentHash& GetRouterIdentHash () const { return m_RouterInfo.GetIdentHash (); };
|
|
|
|
CryptoPP::RandomNumberGenerator& GetRandomNumberGenerator () { return m_Rnd; };
|
|
|
|
|
|
|
|
void OverrideNTCPAddress (const char * host, int port); // temporary
|
|
|
|
void UpdateAddress (const char * host); // called from SSU
|
|
|
|
void AddIntroducer (const i2p::data::RouterInfo& routerInfo, uint32_t tag);
|
|
|
|
void RemoveIntroducer (const boost::asio::ip::udp::endpoint& e);
|
|
|
|
|
|
|
|
// implements LocalDestination
|
|
|
|
const i2p::data::PrivateKeys& GetPrivateKeys () const { return m_Keys; };
|
|
|
|
const uint8_t * GetEncryptionPrivateKey () const { return m_Keys.GetPrivateKey (); };
|
|
|
|
const uint8_t * GetEncryptionPublicKey () const { return GetIdentity ().GetStandardIdentity ().publicKey; };
|
|
|
|
void SetLeaseSetUpdated () {};
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void CreateNewRouter ();
|
|
|
|
void NewRouterInfo ();
|
|
|
|
void UpdateRouterInfo ();
|
|
|
|
bool Load ();
|
|
|
|
void SaveKeys ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
i2p::data::RouterInfo m_RouterInfo;
|
|
|
|
i2p::data::PrivateKeys m_Keys;
|
|
|
|
CryptoPP::AutoSeededRandomPool m_Rnd;
|
|
|
|
uint64_t m_LastUpdateTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern RouterContext context;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|