i2pd/RouterContext.h

104 lines
3.4 KiB
C
Raw Normal View History

2013-10-23 06:45:40 +04:00
#ifndef ROUTER_CONTEXT_H__
#define ROUTER_CONTEXT_H__
#include <inttypes.h>
2014-10-27 22:08:50 +03:00
#include <string>
2014-11-20 23:48:28 +03:00
#include <memory>
2015-06-10 05:14:31 +03:00
#include <mutex>
2014-10-29 20:49:21 +03:00
#include <boost/asio.hpp>
2014-04-01 21:42:04 +04:00
#include "Identity.h"
2013-10-23 06:45:40 +04:00
#include "RouterInfo.h"
2014-10-07 04:18:18 +04:00
#include "Garlic.h"
2013-10-23 06:45:40 +04:00
namespace i2p
{
const char ROUTER_INFO[] = "router.info";
const char ROUTER_KEYS[] = "router.keys";
const int ROUTER_INFO_UPDATE_INTERVAL = 1800; // 30 minutes
2013-10-23 06:45:40 +04:00
const char ROUTER_INFO_PROPERTY_LEASESETS[] = "netdb.knownLeaseSets";
const char ROUTER_INFO_PROPERTY_ROUTERS[] = "netdb.knownRouters";
2015-02-26 21:44:18 +03:00
enum RouterStatus
{
eRouterStatusOK = 0,
eRouterStatusTesting = 1,
eRouterStatusFirewalled = 2
};
2014-10-07 04:18:18 +04:00
class RouterContext: public i2p::garlic::GarlicDestination
2013-10-23 06:45:40 +04:00
{
public:
RouterContext ();
2014-09-04 17:31:42 +04:00
void Init ();
2013-10-23 06:45:40 +04:00
i2p::data::RouterInfo& GetRouterInfo () { return m_RouterInfo; };
2014-11-20 23:48:28 +03:00
std::shared_ptr<const i2p::data::RouterInfo> GetSharedRouterInfo () const
{
return std::shared_ptr<const i2p::data::RouterInfo> (&m_RouterInfo,
[](const i2p::data::RouterInfo *) {});
}
2015-02-23 22:41:56 +03:00
uint32_t GetUptime () const;
uint32_t GetStartupTime () const { return m_StartupTime; };
uint64_t GetLastUpdateTime () const { return m_LastUpdateTime; };
2015-02-26 21:44:18 +03:00
RouterStatus GetStatus () const { return m_Status; };
2015-11-03 17:15:49 +03:00
void SetStatus (RouterStatus status);
2013-12-10 17:10:49 +04:00
2014-09-11 17:32:34 +04:00
void UpdatePort (int port); // called from Daemon
2014-10-29 20:49:21 +03:00
void UpdateAddress (const boost::asio::ip::address& host); // called from SSU or Daemon
2015-11-03 17:15:49 +03:00
bool AddIntroducer (const i2p::data::RouterInfo::Introducer& introducer);
2014-09-07 04:43:20 +04:00
void RemoveIntroducer (const boost::asio::ip::udp::endpoint& e);
bool IsUnreachable () const;
2015-01-28 23:12:15 +03:00
void SetUnreachable ();
void SetReachable ();
2015-01-28 23:12:15 +03:00
bool IsFloodfill () const { return m_IsFloodfill; };
void SetFloodfill (bool floodfill);
2015-03-19 18:14:21 +03:00
void SetHighBandwidth ();
void SetLowBandwidth ();
2014-09-30 21:34:29 +04:00
bool AcceptsTunnels () const { return m_AcceptsTunnels; };
void SetAcceptsTunnels (bool acceptsTunnels) { m_AcceptsTunnels = acceptsTunnels; };
bool SupportsV6 () const { return m_RouterInfo.IsV6 (); };
void SetSupportsV6 (bool supportsV6);
2015-03-18 22:36:07 +03:00
void UpdateNTCPV6Address (const boost::asio::ip::address& host); // called from NTCP session
void UpdateStats ();
2014-10-27 22:08:50 +03:00
2014-04-01 21:42:04 +04:00
// implements LocalDestination
2014-08-26 06:47:12 +04:00
const i2p::data::PrivateKeys& GetPrivateKeys () const { return m_Keys; };
const uint8_t * GetEncryptionPrivateKey () const { return m_Keys.GetPrivateKey (); };
2015-11-03 17:15:49 +03:00
const uint8_t * GetEncryptionPublicKey () const { return GetIdentity ()->GetStandardIdentity ().publicKey; };
2014-08-16 03:21:30 +04:00
void SetLeaseSetUpdated () {};
2014-10-08 05:08:00 +04:00
// implements GarlicDestination
2015-04-07 22:02:00 +03:00
std::shared_ptr<const i2p::data::LeaseSet> GetLeaseSet () { return nullptr; };
std::shared_ptr<i2p::tunnel::TunnelPool> GetTunnelPool () const;
2015-02-06 02:53:43 +03:00
void HandleI2NPMessage (const uint8_t * buf, size_t len, std::shared_ptr<i2p::tunnel::InboundTunnel> from);
2015-06-10 05:14:31 +03:00
// override GarlicDestination
2015-06-16 17:14:14 +03:00
void ProcessGarlicMessage (std::shared_ptr<I2NPMessage> msg);
void ProcessDeliveryStatusMessage (std::shared_ptr<I2NPMessage> msg);
2013-10-23 06:45:40 +04:00
private:
void CreateNewRouter ();
void NewRouterInfo ();
2014-02-23 20:48:09 +04:00
void UpdateRouterInfo ();
2013-10-23 06:45:40 +04:00
bool Load ();
void SaveKeys ();
2013-10-23 06:45:40 +04:00
private:
i2p::data::RouterInfo m_RouterInfo;
2014-08-26 00:25:12 +04:00
i2p::data::PrivateKeys m_Keys;
uint64_t m_LastUpdateTime;
bool m_AcceptsTunnels, m_IsFloodfill;
2015-02-23 22:41:56 +03:00
uint64_t m_StartupTime; // in seconds since epoch
2015-02-26 21:44:18 +03:00
RouterStatus m_Status;
2015-06-10 05:14:31 +03:00
std::mutex m_GarlicMutex;
2013-10-23 06:45:40 +04:00
};
extern RouterContext context;
}
#endif