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