2020-05-22 13:18:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2020, The PurpleI2P Project
|
|
|
|
*
|
|
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
|
|
*
|
|
|
|
* See full license text in LICENSE file at top of project tree
|
|
|
|
*/
|
|
|
|
|
2013-10-23 02:45:40 +00:00
|
|
|
#ifndef ROUTER_CONTEXT_H__
|
|
|
|
#define ROUTER_CONTEXT_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2014-10-27 19:08:50 +00:00
|
|
|
#include <string>
|
2014-11-20 20:48:28 +00:00
|
|
|
#include <memory>
|
2015-06-10 02:14:31 +00:00
|
|
|
#include <mutex>
|
2019-06-19 15:43:04 +00:00
|
|
|
#include <chrono>
|
2014-10-29 17:49:21 +00:00
|
|
|
#include <boost/asio.hpp>
|
2014-04-01 17:42:04 +00:00
|
|
|
#include "Identity.h"
|
2013-10-23 02:45:40 +00:00
|
|
|
#include "RouterInfo.h"
|
2014-10-07 00:18:18 +00:00
|
|
|
#include "Garlic.h"
|
2013-10-23 02:45:40 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
const char ROUTER_INFO[] = "router.info";
|
2018-01-06 03:48:51 +00:00
|
|
|
const char ROUTER_KEYS[] = "router.keys";
|
2020-03-01 10:25:50 +00:00
|
|
|
const char NTCP2_KEYS[] = "ntcp2.keys";
|
2014-08-31 20:46:39 +00:00
|
|
|
const int ROUTER_INFO_UPDATE_INTERVAL = 1800; // 30 minutes
|
2015-03-18 19:06:15 +00:00
|
|
|
|
2015-02-26 18:44:18 +00:00
|
|
|
enum RouterStatus
|
|
|
|
{
|
|
|
|
eRouterStatusOK = 0,
|
|
|
|
eRouterStatusTesting = 1,
|
2016-09-18 22:42:21 +00:00
|
|
|
eRouterStatusFirewalled = 2,
|
2018-01-06 03:48:51 +00:00
|
|
|
eRouterStatusError = 3
|
|
|
|
};
|
2015-02-26 18:44:18 +00:00
|
|
|
|
2016-09-20 01:37:04 +00:00
|
|
|
enum RouterError
|
|
|
|
{
|
|
|
|
eRouterErrorNone = 0,
|
2020-10-11 21:51:40 +00:00
|
|
|
eRouterErrorClockSkew = 1,
|
|
|
|
eRouterErrorOffline = 2
|
2018-01-06 03:48:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class RouterContext: public i2p::garlic::GarlicDestination
|
2013-10-23 02:45:40 +00:00
|
|
|
{
|
2018-06-11 19:33:48 +00:00
|
|
|
private:
|
|
|
|
|
2020-03-01 10:25:50 +00:00
|
|
|
struct NTCP2PrivateKeys
|
2018-06-11 19:33:48 +00:00
|
|
|
{
|
2018-06-15 16:52:43 +00:00
|
|
|
uint8_t staticPublicKey[32];
|
|
|
|
uint8_t staticPrivateKey[32];
|
2018-06-11 19:33:48 +00:00
|
|
|
uint8_t iv[16];
|
2020-03-01 10:25:50 +00:00
|
|
|
};
|
2018-06-11 19:33:48 +00:00
|
|
|
|
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
|
|
|
|
2016-05-26 18:54:33 +00:00
|
|
|
const i2p::data::PrivateKeys& GetPrivateKeys () const { return m_Keys; };
|
2013-10-23 02:45:40 +00:00
|
|
|
i2p::data::RouterInfo& GetRouterInfo () { return m_RouterInfo; };
|
2018-01-06 03:48:51 +00:00
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> GetSharedRouterInfo () const
|
|
|
|
{
|
|
|
|
return std::shared_ptr<const i2p::data::RouterInfo> (&m_RouterInfo,
|
2014-11-20 20:48:28 +00:00
|
|
|
[](const i2p::data::RouterInfo *) {});
|
|
|
|
}
|
2018-01-06 03:48:51 +00:00
|
|
|
std::shared_ptr<i2p::garlic::GarlicDestination> GetSharedDestination ()
|
2015-12-16 19:52:48 +00:00
|
|
|
{
|
2018-01-06 03:48:51 +00:00
|
|
|
return std::shared_ptr<i2p::garlic::GarlicDestination> (this,
|
2015-12-16 19:52:48 +00:00
|
|
|
[](i2p::garlic::GarlicDestination *) {});
|
2018-01-06 03:48:51 +00:00
|
|
|
}
|
2018-06-15 16:52:43 +00:00
|
|
|
const uint8_t * GetNTCP2StaticPublicKey () const { return m_NTCP2Keys ? m_NTCP2Keys->staticPublicKey : nullptr; };
|
|
|
|
const uint8_t * GetNTCP2StaticPrivateKey () const { return m_NTCP2Keys ? m_NTCP2Keys->staticPrivateKey : nullptr; };
|
|
|
|
const uint8_t * GetNTCP2IV () const { return m_NTCP2Keys ? m_NTCP2Keys->iv : nullptr; };
|
2020-03-01 10:25:50 +00:00
|
|
|
i2p::crypto::X25519Keys& GetStaticKeys ();
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2019-06-19 15:43:04 +00:00
|
|
|
uint32_t GetUptime () const; // in seconds
|
2015-03-18 19:06:15 +00:00
|
|
|
uint64_t GetLastUpdateTime () const { return m_LastUpdateTime; };
|
2016-03-31 00:00:00 +00:00
|
|
|
uint64_t GetBandwidthLimit () const { return m_BandwidthLimit; };
|
2017-05-04 18:58:12 +00:00
|
|
|
uint64_t GetTransitBandwidthLimit () const { return (m_BandwidthLimit*m_ShareRatio)/100LL; };
|
2015-02-26 18:44:18 +00:00
|
|
|
RouterStatus GetStatus () const { return m_Status; };
|
2015-11-03 14:15:49 +00:00
|
|
|
void SetStatus (RouterStatus status);
|
2016-09-20 01:37:04 +00:00
|
|
|
RouterError GetError () const { return m_Error; };
|
|
|
|
void SetError (RouterError error) { m_Status = eRouterStatusError; m_Error = error; };
|
2016-10-12 15:26:48 +00:00
|
|
|
int GetNetID () const { return m_NetID; };
|
2018-01-06 03:48:51 +00:00
|
|
|
void SetNetID (int netID) { m_NetID = netID; };
|
2020-11-02 23:49:07 +00:00
|
|
|
bool DecryptTunnelBuildRecord (const uint8_t * encrypted, uint8_t * data, BN_CTX * ctx);
|
2016-10-12 15:26:48 +00:00
|
|
|
|
2020-03-01 10:25:50 +00:00
|
|
|
void UpdatePort (int port); // called from Daemon
|
2014-10-29 17:49:21 +00:00
|
|
|
void UpdateAddress (const boost::asio::ip::address& host); // called from SSU or Daemon
|
2019-05-30 21:48:49 +00:00
|
|
|
void PublishNTCP2Address (int port, bool publish = true, bool v4only = false);
|
2018-08-03 18:49:28 +00:00
|
|
|
void UpdateNTCP2Address (bool enable);
|
2020-10-04 02:29:52 +00:00
|
|
|
void RemoveNTCPAddress (bool v4only = true); // delete NTCP address for older routers. TODO: remove later
|
2015-11-03 14:15:49 +00:00
|
|
|
bool AddIntroducer (const i2p::data::RouterInfo::Introducer& introducer);
|
2014-09-07 00:43:20 +00:00
|
|
|
void RemoveIntroducer (const boost::asio::ip::udp::endpoint& e);
|
2015-03-01 12:55:03 +00:00
|
|
|
bool IsUnreachable () const;
|
2018-01-06 03:48:51 +00:00
|
|
|
void SetUnreachable ();
|
2015-03-01 12:55:03 +00:00
|
|
|
void SetReachable ();
|
2018-01-06 03:48:51 +00:00
|
|
|
bool IsFloodfill () const { return m_IsFloodfill; };
|
|
|
|
void SetFloodfill (bool floodfill);
|
2016-02-21 01:20:19 +00:00
|
|
|
void SetFamily (const std::string& family);
|
2016-04-28 22:16:11 +00: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 */
|
2017-05-04 18:58:12 +00:00
|
|
|
void SetShareRatio (int percents); // 0 - 100
|
2014-09-30 17:34:29 +00:00
|
|
|
bool AcceptsTunnels () const { return m_AcceptsTunnels; };
|
|
|
|
void SetAcceptsTunnels (bool acceptsTunnels) { m_AcceptsTunnels = acceptsTunnels; };
|
2014-10-27 01:32:06 +00:00
|
|
|
bool SupportsV6 () const { return m_RouterInfo.IsV6 (); };
|
2016-03-24 22:44:41 +00:00
|
|
|
bool SupportsV4 () const { return m_RouterInfo.IsV4 (); };
|
2014-10-27 01:32:06 +00:00
|
|
|
void SetSupportsV6 (bool supportsV6);
|
2016-03-24 22:44:41 +00:00
|
|
|
void SetSupportsV4 (bool supportsV4);
|
2020-11-14 23:28:50 +00:00
|
|
|
bool IsECIES () const { return GetIdentity ()->GetCryptoKeyType () == i2p::data::CRYPTO_KEY_TYPE_ECIES_X25519_AEAD; };
|
2020-11-02 23:49:07 +00:00
|
|
|
std::unique_ptr<i2p::crypto::NoiseSymmetricState>& GetCurrentNoiseState () { return m_CurrentNoiseState; };
|
|
|
|
|
2019-05-29 15:36:58 +00:00
|
|
|
void UpdateNTCP2V6Address (const boost::asio::ip::address& host); // called from Daemon. TODO: remove
|
2018-01-06 03:48:51 +00:00
|
|
|
void UpdateStats ();
|
2018-09-21 14:13:18 +00:00
|
|
|
void UpdateTimestamp (uint64_t ts); // in seconds, called from NetDb before publishing
|
2016-07-28 17:24:25 +00:00
|
|
|
void CleanupDestination (); // garlic destination
|
2014-10-27 19:08:50 +00:00
|
|
|
|
2014-04-01 17:42:04 +00:00
|
|
|
// implements LocalDestination
|
2016-05-26 18:54:33 +00:00
|
|
|
std::shared_ptr<const i2p::data::IdentityEx> GetIdentity () const { return m_Keys.GetPublic (); };
|
2020-03-31 21:35:51 +00:00
|
|
|
bool Decrypt (const uint8_t * encrypted, uint8_t * data, BN_CTX * ctx, i2p::data::CryptoKeyType preferredCrypto) const;
|
2018-01-06 03:48:51 +00:00
|
|
|
void Sign (const uint8_t * buf, int len, uint8_t * signature) const { m_Keys.Sign (buf, len, signature); };
|
2014-08-15 23:21:30 +00:00
|
|
|
void SetLeaseSetUpdated () {};
|
2014-10-08 01:08:00 +00:00
|
|
|
|
|
|
|
// implements GarlicDestination
|
2016-05-25 19:10:28 +00:00
|
|
|
std::shared_ptr<const i2p::data::LocalLeaseSet> GetLeaseSet () { return nullptr; };
|
2015-04-05 16:54:15 +00:00
|
|
|
std::shared_ptr<i2p::tunnel::TunnelPool> GetTunnelPool () const;
|
2015-06-10 02:14:31 +00:00
|
|
|
|
|
|
|
// override GarlicDestination
|
2015-06-16 14:14:14 +00:00
|
|
|
void ProcessGarlicMessage (std::shared_ptr<I2NPMessage> msg);
|
2018-01-06 03:48:51 +00:00
|
|
|
void ProcessDeliveryStatusMessage (std::shared_ptr<I2NPMessage> msg);
|
|
|
|
|
2020-01-06 21:14:41 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
// implements GarlicDestination
|
2020-01-07 20:20:55 +00:00
|
|
|
void HandleI2NPMessage (const uint8_t * buf, size_t len);
|
2020-11-05 20:27:37 +00:00
|
|
|
bool HandleCloveI2NPMessage (I2NPMessageType typeID, const uint8_t * payload, size_t len);
|
2020-01-06 21:14:41 +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 ();
|
2018-06-11 19:33:48 +00:00
|
|
|
void NewNTCP2Keys ();
|
2013-10-23 02:45:40 +00:00
|
|
|
bool Load ();
|
2014-08-31 20:46:39 +00:00
|
|
|
void SaveKeys ();
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2013-10-23 02:45:40 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
i2p::data::RouterInfo m_RouterInfo;
|
2018-01-06 03:48:51 +00:00
|
|
|
i2p::data::PrivateKeys m_Keys;
|
2017-11-08 18:49:48 +00:00
|
|
|
std::shared_ptr<i2p::crypto::CryptoKeyDecryptor> m_Decryptor;
|
2018-09-21 14:13:18 +00:00
|
|
|
uint64_t m_LastUpdateTime; // in seconds
|
2020-03-01 10:25:50 +00:00
|
|
|
bool m_AcceptsTunnels, m_IsFloodfill;
|
2019-06-19 15:43:04 +00:00
|
|
|
std::chrono::time_point<std::chrono::steady_clock> m_StartupTime;
|
2017-05-04 18:58:12 +00:00
|
|
|
uint64_t m_BandwidthLimit; // allowed bandwidth
|
|
|
|
int m_ShareRatio;
|
2015-02-26 18:44:18 +00:00
|
|
|
RouterStatus m_Status;
|
2016-09-20 01:37:04 +00:00
|
|
|
RouterError m_Error;
|
2016-10-12 15:26:48 +00:00
|
|
|
int m_NetID;
|
2015-06-10 02:14:31 +00:00
|
|
|
std::mutex m_GarlicMutex;
|
2018-06-11 19:33:48 +00:00
|
|
|
std::unique_ptr<NTCP2PrivateKeys> m_NTCP2Keys;
|
2018-09-09 02:08:08 +00:00
|
|
|
std::unique_ptr<i2p::crypto::X25519Keys> m_StaticKeys;
|
2020-11-02 23:49:07 +00:00
|
|
|
// for ECIESx25519
|
|
|
|
std::unique_ptr<i2p::crypto::NoiseSymmetricState> m_InitialNoiseState, m_CurrentNoiseState;
|
2013-10-23 02:45:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern RouterContext context;
|
2018-01-06 03:48:51 +00:00
|
|
|
}
|
2013-10-23 02:45:40 +00:00
|
|
|
|
|
|
|
#endif
|