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>
|
2014-11-20 21:48:28 +01:00
|
|
|
#include <memory>
|
2015-06-10 04:14:31 +02:00
|
|
|
#include <mutex>
|
2014-10-29 18:49:21 +01:00
|
|
|
#include <boost/asio.hpp>
|
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
|
|
|
|
2015-03-18 20:06:15 +01:00
|
|
|
const char ROUTER_INFO_PROPERTY_LEASESETS[] = "netdb.knownLeaseSets";
|
|
|
|
const char ROUTER_INFO_PROPERTY_ROUTERS[] = "netdb.knownRouters";
|
|
|
|
|
2015-02-26 19:44:18 +01:00
|
|
|
enum RouterStatus
|
|
|
|
{
|
|
|
|
eRouterStatusOK = 0,
|
|
|
|
eRouterStatusTesting = 1,
|
|
|
|
eRouterStatusFirewalled = 2
|
|
|
|
};
|
|
|
|
|
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; };
|
2014-11-20 21:48:28 +01: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-12-16 20:52:48 +01:00
|
|
|
std::shared_ptr<i2p::garlic::GarlicDestination> GetSharedDestination ()
|
|
|
|
{
|
|
|
|
return std::shared_ptr<i2p::garlic::GarlicDestination> (this,
|
|
|
|
[](i2p::garlic::GarlicDestination *) {});
|
|
|
|
}
|
|
|
|
|
2015-02-23 20:41:56 +01:00
|
|
|
uint32_t GetUptime () const;
|
2015-02-24 17:58:39 +01:00
|
|
|
uint32_t GetStartupTime () const { return m_StartupTime; };
|
2015-03-18 20:06:15 +01:00
|
|
|
uint64_t GetLastUpdateTime () const { return m_LastUpdateTime; };
|
2015-02-26 19:44:18 +01:00
|
|
|
RouterStatus GetStatus () const { return m_Status; };
|
2015-11-03 15:15:49 +01:00
|
|
|
void SetStatus (RouterStatus status);
|
2013-12-10 14:10:49 +01:00
|
|
|
|
2014-09-11 15:32:34 +02:00
|
|
|
void UpdatePort (int port); // called from Daemon
|
2014-10-29 18:49:21 +01:00
|
|
|
void UpdateAddress (const boost::asio::ip::address& host); // called from SSU or Daemon
|
2015-11-03 15:15:49 +01:00
|
|
|
bool AddIntroducer (const i2p::data::RouterInfo::Introducer& introducer);
|
2014-09-07 02:43:20 +02:00
|
|
|
void RemoveIntroducer (const boost::asio::ip::udp::endpoint& e);
|
2015-03-01 13:55:03 +01:00
|
|
|
bool IsUnreachable () const;
|
2015-01-28 21:12:15 +01:00
|
|
|
void SetUnreachable ();
|
2015-03-01 13:55:03 +01:00
|
|
|
void SetReachable ();
|
2015-01-28 21:12:15 +01:00
|
|
|
bool IsFloodfill () const { return m_IsFloodfill; };
|
|
|
|
void SetFloodfill (bool floodfill);
|
2015-03-19 16:14:21 +01:00
|
|
|
void SetHighBandwidth ();
|
|
|
|
void SetLowBandwidth ();
|
2016-01-03 04:17:04 +01:00
|
|
|
void SetExtraBandwidth ();
|
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);
|
2015-03-18 20:36:07 +01:00
|
|
|
void UpdateNTCPV6Address (const boost::asio::ip::address& host); // called from NTCP session
|
|
|
|
void UpdateStats ();
|
2014-10-27 20:08:50 +01:00
|
|
|
|
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 (); };
|
2015-11-03 15:15:49 +01: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
|
2015-04-07 21:02:00 +02:00
|
|
|
std::shared_ptr<const i2p::data::LeaseSet> GetLeaseSet () { return nullptr; };
|
2015-04-05 18:54:15 +02:00
|
|
|
std::shared_ptr<i2p::tunnel::TunnelPool> GetTunnelPool () const;
|
2015-02-06 00:53:43 +01:00
|
|
|
void HandleI2NPMessage (const uint8_t * buf, size_t len, std::shared_ptr<i2p::tunnel::InboundTunnel> from);
|
2015-06-10 04:14:31 +02:00
|
|
|
|
|
|
|
// override GarlicDestination
|
2015-06-16 16:14:14 +02:00
|
|
|
void ProcessGarlicMessage (std::shared_ptr<I2NPMessage> msg);
|
|
|
|
void ProcessDeliveryStatusMessage (std::shared_ptr<I2NPMessage> msg);
|
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;
|
2014-08-31 22:46:39 +02:00
|
|
|
uint64_t m_LastUpdateTime;
|
2015-03-01 13:55:03 +01:00
|
|
|
bool m_AcceptsTunnels, m_IsFloodfill;
|
2015-02-23 20:41:56 +01:00
|
|
|
uint64_t m_StartupTime; // in seconds since epoch
|
2015-02-26 19:44:18 +01:00
|
|
|
RouterStatus m_Status;
|
2015-06-10 04:14:31 +02:00
|
|
|
std::mutex m_GarlicMutex;
|
2013-10-23 04:45:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern RouterContext context;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|