2013-10-23 02:45:40 +00:00
|
|
|
#include <fstream>
|
2018-06-11 19:33:48 +00:00
|
|
|
#include <openssl/rand.h>
|
2016-01-20 00:00:00 +00:00
|
|
|
#include "Config.h"
|
2015-11-03 14:15:49 +00:00
|
|
|
#include "Crypto.h"
|
2018-06-15 16:52:43 +00:00
|
|
|
#include "Ed25519.h"
|
2014-08-31 20:46:39 +00:00
|
|
|
#include "Timestamp.h"
|
2014-10-12 01:27:55 +00:00
|
|
|
#include "I2NPProtocol.h"
|
2017-04-22 00:04:16 +00:00
|
|
|
#include "NetDb.hpp"
|
2016-02-11 00:00:00 +00:00
|
|
|
#include "FS.h"
|
2014-01-30 00:56:48 +00:00
|
|
|
#include "util.h"
|
2014-08-17 05:09:15 +00:00
|
|
|
#include "version.h"
|
2015-11-03 14:15:49 +00:00
|
|
|
#include "Log.h"
|
2016-02-21 01:20:19 +00:00
|
|
|
#include "Family.h"
|
2015-11-03 14:15:49 +00:00
|
|
|
#include "RouterContext.h"
|
2013-10-23 02:45:40 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
RouterContext context;
|
|
|
|
|
2014-08-31 20:46:39 +00:00
|
|
|
RouterContext::RouterContext ():
|
2017-10-12 10:52:36 +00:00
|
|
|
m_LastUpdateTime (0), m_AcceptsTunnels (true), m_IsFloodfill (false),
|
|
|
|
m_StartupTime (0), m_ShareRatio (100), m_Status (eRouterStatusOK),
|
2017-05-04 18:58:12 +00:00
|
|
|
m_Error (eRouterErrorNone), m_NetID (I2PD_NET_ID)
|
2014-09-04 13:31:42 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void RouterContext::Init ()
|
2013-10-23 02:45:40 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
srand (i2p::util::GetMillisecondsSinceEpoch () % 1000);
|
2015-02-23 19:41:56 +00:00
|
|
|
m_StartupTime = i2p::util::GetSecondsSinceEpoch ();
|
2013-10-23 02:45:40 +00:00
|
|
|
if (!Load ())
|
|
|
|
CreateNewRouter ();
|
2018-01-06 03:48:51 +00:00
|
|
|
m_Decryptor = m_Keys.CreateDecryptor (nullptr);
|
2014-08-31 20:46:39 +00:00
|
|
|
UpdateRouterInfo ();
|
2014-08-17 05:09:15 +00:00
|
|
|
}
|
|
|
|
|
2013-10-23 02:45:40 +00:00
|
|
|
void RouterContext::CreateNewRouter ()
|
|
|
|
{
|
2015-11-03 18:05:37 +00:00
|
|
|
m_Keys = i2p::data::PrivateKeys::CreateRandomKeys (i2p::data::SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519);
|
2018-06-15 16:52:43 +00:00
|
|
|
SaveKeys ();
|
2014-08-31 20:46:39 +00:00
|
|
|
NewRouterInfo ();
|
2014-02-23 16:48:09 +00:00
|
|
|
}
|
|
|
|
|
2014-08-31 20:46:39 +00:00
|
|
|
void RouterContext::NewRouterInfo ()
|
2014-02-23 16:48:09 +00:00
|
|
|
{
|
2014-02-24 01:48:28 +00:00
|
|
|
i2p::data::RouterInfo routerInfo;
|
2014-11-20 17:21:27 +00:00
|
|
|
routerInfo.SetRouterIdentity (GetIdentity ());
|
2016-01-20 00:00:00 +00:00
|
|
|
uint16_t port; i2p::config::GetOption("port", port);
|
2014-08-31 20:46:39 +00:00
|
|
|
if (!port)
|
2019-01-23 14:53:30 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
port = rand () % (30777 - 9111) + 9111; // I2P network ports range
|
2019-01-23 14:53:30 +00:00
|
|
|
if (port == 9150) port = 9151; // Tor browser
|
|
|
|
}
|
2016-07-15 17:52:55 +00:00
|
|
|
bool ipv4; i2p::config::GetOption("ipv4", ipv4);
|
|
|
|
bool ipv6; i2p::config::GetOption("ipv6", ipv6);
|
2018-08-12 06:36:00 +00:00
|
|
|
bool ssu; i2p::config::GetOption("ssu", ssu);
|
|
|
|
bool ntcp; i2p::config::GetOption("ntcp", ntcp);
|
2018-07-19 13:45:24 +00:00
|
|
|
bool ntcp2; i2p::config::GetOption("ntcp2.enabled", ntcp2);
|
2018-06-15 16:52:43 +00:00
|
|
|
bool nat; i2p::config::GetOption("nat", nat);
|
2016-07-19 00:00:00 +00:00
|
|
|
std::string ifname; i2p::config::GetOption("ifname", ifname);
|
2016-11-24 18:56:37 +00:00
|
|
|
std::string ifname4; i2p::config::GetOption("ifname4", ifname4);
|
|
|
|
std::string ifname6; i2p::config::GetOption("ifname6", ifname6);
|
2016-07-22 14:16:57 +00:00
|
|
|
if (ipv4)
|
|
|
|
{
|
|
|
|
std::string host = "127.0.0.1";
|
2016-07-19 00:00:00 +00:00
|
|
|
if (!i2p::config::IsDefault("host"))
|
|
|
|
i2p::config::GetOption("host", host);
|
2016-07-22 14:16:57 +00:00
|
|
|
else if (!nat && !ifname.empty())
|
|
|
|
/* bind to interface, we have no NAT so set external address too */
|
|
|
|
host = i2p::util::net::GetInterfaceAddress(ifname, false).to_string(); // v4
|
2016-11-24 18:56:37 +00:00
|
|
|
|
|
|
|
if(ifname4.size())
|
|
|
|
host = i2p::util::net::GetInterfaceAddress(ifname4, false).to_string();
|
|
|
|
|
2018-08-12 06:36:00 +00:00
|
|
|
if (ssu)
|
|
|
|
routerInfo.AddSSUAddress (host.c_str(), port, routerInfo.GetIdentHash ());
|
|
|
|
if (ntcp)
|
|
|
|
routerInfo.AddNTCPAddress (host.c_str(), port);
|
2016-07-22 14:16:57 +00:00
|
|
|
}
|
|
|
|
if (ipv6)
|
|
|
|
{
|
|
|
|
std::string host = "::";
|
2016-07-22 14:34:56 +00:00
|
|
|
if (!i2p::config::IsDefault("host") && !ipv4) // override if v6 only
|
|
|
|
i2p::config::GetOption("host", host);
|
2017-10-12 10:52:36 +00:00
|
|
|
else if (!ifname.empty())
|
2016-07-22 14:16:57 +00:00
|
|
|
host = i2p::util::net::GetInterfaceAddress(ifname, true).to_string(); // v6
|
2016-11-24 15:11:46 +00:00
|
|
|
|
2016-11-24 18:56:37 +00:00
|
|
|
if(ifname6.size())
|
|
|
|
host = i2p::util::net::GetInterfaceAddress(ifname6, true).to_string();
|
|
|
|
|
2018-08-12 06:36:00 +00:00
|
|
|
if (ssu)
|
|
|
|
routerInfo.AddSSUAddress (host.c_str(), port, routerInfo.GetIdentHash ());
|
|
|
|
if (ntcp)
|
|
|
|
routerInfo.AddNTCPAddress (host.c_str(), port);
|
2016-11-24 15:11:46 +00:00
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
|
|
|
|
routerInfo.SetCaps (i2p::data::RouterInfo::eReachable |
|
2014-09-05 11:26:36 +00:00
|
|
|
i2p::data::RouterInfo::eSSUTesting | i2p::data::RouterInfo::eSSUIntroducer); // LR, BC
|
2017-10-12 10:52:36 +00:00
|
|
|
routerInfo.SetProperty ("netId", std::to_string (m_NetID));
|
2014-08-17 05:09:15 +00:00
|
|
|
routerInfo.SetProperty ("router.version", I2P_VERSION);
|
2014-08-26 02:47:12 +00:00
|
|
|
routerInfo.CreateBuffer (m_Keys);
|
2015-11-03 14:15:49 +00:00
|
|
|
m_RouterInfo.SetRouterIdentity (GetIdentity ());
|
2014-07-22 12:03:02 +00:00
|
|
|
m_RouterInfo.Update (routerInfo.GetBuffer (), routerInfo.GetBufferLen ());
|
2018-08-10 19:14:07 +00:00
|
|
|
|
|
|
|
if (ntcp2) // we don't store iv in the address if non published so we must update it from keys
|
|
|
|
{
|
|
|
|
if (!m_NTCP2Keys) NewNTCP2Keys ();
|
|
|
|
UpdateNTCP2Address (true);
|
|
|
|
}
|
|
|
|
|
2014-08-17 05:09:15 +00:00
|
|
|
}
|
|
|
|
|
2014-08-31 20:46:39 +00:00
|
|
|
void RouterContext::UpdateRouterInfo ()
|
|
|
|
{
|
|
|
|
m_RouterInfo.CreateBuffer (m_Keys);
|
2016-02-11 00:00:00 +00:00
|
|
|
m_RouterInfo.SaveToFile (i2p::fs::DataDirPath (ROUTER_INFO));
|
2014-08-31 20:46:39 +00:00
|
|
|
m_LastUpdateTime = i2p::util::GetSecondsSinceEpoch ();
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2014-09-11 13:32:34 +00:00
|
|
|
|
2018-06-11 19:33:48 +00:00
|
|
|
void RouterContext::NewNTCP2Keys ()
|
|
|
|
{
|
2018-11-01 14:43:31 +00:00
|
|
|
m_StaticKeys.reset (new i2p::crypto::X25519Keys ());
|
|
|
|
m_StaticKeys->GenerateKeys ();
|
2018-06-11 19:33:48 +00:00
|
|
|
m_NTCP2Keys.reset (new NTCP2PrivateKeys ());
|
2018-11-01 14:43:31 +00:00
|
|
|
m_StaticKeys->GetPrivateKey (m_NTCP2Keys->staticPrivateKey);
|
|
|
|
memcpy (m_NTCP2Keys->staticPublicKey, m_StaticKeys->GetPublicKey (), 32);
|
2018-06-11 19:33:48 +00:00
|
|
|
RAND_bytes (m_NTCP2Keys->iv, 16);
|
|
|
|
// save
|
|
|
|
std::ofstream fk (i2p::fs::DataDirPath (NTCP2_KEYS), std::ofstream::binary | std::ofstream::out);
|
2018-06-15 16:52:43 +00:00
|
|
|
fk.write ((char *)m_NTCP2Keys.get (), sizeof (NTCP2PrivateKeys));
|
2018-06-11 19:33:48 +00:00
|
|
|
}
|
|
|
|
|
2017-10-12 10:52:36 +00:00
|
|
|
void RouterContext::SetStatus (RouterStatus status)
|
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
if (status != m_Status)
|
2017-10-12 10:52:36 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
m_Status = status;
|
2016-09-20 01:37:04 +00:00
|
|
|
m_Error = eRouterErrorNone;
|
2015-11-03 14:15:49 +00:00
|
|
|
switch (m_Status)
|
2017-10-12 10:52:36 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
case eRouterStatusOK:
|
|
|
|
SetReachable ();
|
|
|
|
break;
|
|
|
|
case eRouterStatusFirewalled:
|
|
|
|
SetUnreachable ();
|
2017-10-12 10:52:36 +00:00
|
|
|
break;
|
2015-11-03 14:15:49 +00:00
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2015-11-03 14:15:49 +00:00
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2014-09-11 13:32:34 +00:00
|
|
|
void RouterContext::UpdatePort (int port)
|
2013-12-10 13:10:49 +00:00
|
|
|
{
|
2014-09-11 13:32:34 +00:00
|
|
|
bool updated = false;
|
2016-08-07 21:52:18 +00:00
|
|
|
for (auto& address : m_RouterInfo.GetAddresses ())
|
2013-12-10 13:10:49 +00:00
|
|
|
{
|
2018-07-23 17:51:29 +00:00
|
|
|
if (!address->IsNTCP2 () && address->port != port)
|
2017-10-12 10:52:36 +00:00
|
|
|
{
|
2016-03-21 17:02:51 +00:00
|
|
|
address->port = port;
|
2014-09-11 13:32:34 +00:00
|
|
|
updated = true;
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-11 13:32:34 +00:00
|
|
|
if (updated)
|
|
|
|
UpdateRouterInfo ();
|
2014-08-17 05:09:15 +00:00
|
|
|
}
|
2014-02-09 02:06:40 +00:00
|
|
|
|
2018-08-03 18:49:28 +00:00
|
|
|
void RouterContext::PublishNTCP2Address (int port, bool publish)
|
2018-07-23 17:51:29 +00:00
|
|
|
{
|
2018-08-19 20:17:57 +00:00
|
|
|
if (!m_NTCP2Keys) return;
|
2018-07-31 16:59:38 +00:00
|
|
|
if (!port)
|
2019-01-23 14:53:30 +00:00
|
|
|
{
|
2018-07-31 16:59:38 +00:00
|
|
|
port = rand () % (30777 - 9111) + 9111; // I2P network ports range
|
2019-01-23 14:53:30 +00:00
|
|
|
if (port == 9150) port = 9151; // Tor browser
|
|
|
|
}
|
2018-07-23 17:51:29 +00:00
|
|
|
bool updated = false;
|
|
|
|
for (auto& address : m_RouterInfo.GetAddresses ())
|
|
|
|
{
|
2018-08-03 18:49:28 +00:00
|
|
|
if (address->IsNTCP2 () && (address->port != port || address->ntcp2->isPublished != publish))
|
2018-07-23 17:51:29 +00:00
|
|
|
{
|
|
|
|
address->port = port;
|
2018-10-11 17:00:37 +00:00
|
|
|
address->cost = publish ? 3 : 14;
|
2018-08-03 18:49:28 +00:00
|
|
|
address->ntcp2->isPublished = publish;
|
2018-08-19 20:17:57 +00:00
|
|
|
address->ntcp2->iv = m_NTCP2Keys->iv;
|
2018-07-23 17:51:29 +00:00
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (updated)
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
|
|
|
|
2018-08-03 18:49:28 +00:00
|
|
|
void RouterContext::UpdateNTCP2Address (bool enable)
|
|
|
|
{
|
|
|
|
auto& addresses = m_RouterInfo.GetAddresses ();
|
|
|
|
bool found = false, updated = false;
|
|
|
|
for (auto it = addresses.begin (); it != addresses.end (); ++it)
|
|
|
|
{
|
|
|
|
if ((*it)->IsNTCP2 ())
|
|
|
|
{
|
|
|
|
found = true;
|
|
|
|
if (!enable)
|
|
|
|
{
|
|
|
|
addresses.erase (it);
|
|
|
|
updated= true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (enable && !found)
|
|
|
|
{
|
|
|
|
m_RouterInfo.AddNTCP2Address (m_NTCP2Keys->staticPublicKey, m_NTCP2Keys->iv);
|
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
if (updated)
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
|
|
|
|
2014-10-29 17:49:21 +00:00
|
|
|
void RouterContext::UpdateAddress (const boost::asio::ip::address& host)
|
2014-02-09 02:06:40 +00:00
|
|
|
{
|
2014-08-31 20:46:39 +00:00
|
|
|
bool updated = false;
|
2016-08-07 21:52:18 +00:00
|
|
|
for (auto& address : m_RouterInfo.GetAddresses ())
|
2014-08-31 20:46:39 +00:00
|
|
|
{
|
2016-03-21 17:02:51 +00:00
|
|
|
if (address->host != host && address->IsCompatible (host))
|
2017-10-12 10:52:36 +00:00
|
|
|
{
|
2016-03-21 17:02:51 +00:00
|
|
|
address->host = host;
|
2014-08-31 20:46:39 +00:00
|
|
|
updated = true;
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-31 20:46:39 +00:00
|
|
|
auto ts = i2p::util::GetSecondsSinceEpoch ();
|
|
|
|
if (updated || ts > m_LastUpdateTime + ROUTER_INFO_UPDATE_INTERVAL)
|
|
|
|
UpdateRouterInfo ();
|
2013-10-23 02:45:40 +00:00
|
|
|
}
|
|
|
|
|
2015-11-03 14:15:49 +00:00
|
|
|
bool RouterContext::AddIntroducer (const i2p::data::RouterInfo::Introducer& introducer)
|
2014-09-01 21:34:20 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
bool ret = m_RouterInfo.AddIntroducer (introducer);
|
|
|
|
if (ret)
|
2017-10-12 10:52:36 +00:00
|
|
|
UpdateRouterInfo ();
|
2014-09-15 01:53:00 +00:00
|
|
|
return ret;
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2014-09-01 21:34:20 +00:00
|
|
|
|
2014-09-07 00:43:20 +00:00
|
|
|
void RouterContext::RemoveIntroducer (const boost::asio::ip::udp::endpoint& e)
|
2014-09-01 21:34:20 +00:00
|
|
|
{
|
2014-09-07 00:43:20 +00:00
|
|
|
if (m_RouterInfo.RemoveIntroducer (e))
|
2014-09-01 21:34:20 +00:00
|
|
|
UpdateRouterInfo ();
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
|
|
|
|
2015-01-28 20:12:15 +00:00
|
|
|
void RouterContext::SetFloodfill (bool floodfill)
|
|
|
|
{
|
|
|
|
m_IsFloodfill = floodfill;
|
|
|
|
if (floodfill)
|
|
|
|
m_RouterInfo.SetCaps (m_RouterInfo.GetCaps () | i2p::data::RouterInfo::eFloodfill);
|
|
|
|
else
|
2015-03-18 19:06:15 +00:00
|
|
|
{
|
2015-01-28 20:12:15 +00:00
|
|
|
m_RouterInfo.SetCaps (m_RouterInfo.GetCaps () & ~i2p::data::RouterInfo::eFloodfill);
|
2015-03-18 19:06:15 +00:00
|
|
|
// we don't publish number of routers and leaseset for non-floodfill
|
2016-02-21 01:20:19 +00:00
|
|
|
m_RouterInfo.DeleteProperty (i2p::data::ROUTER_INFO_PROPERTY_LEASESETS);
|
|
|
|
m_RouterInfo.DeleteProperty (i2p::data::ROUTER_INFO_PROPERTY_ROUTERS);
|
2015-03-18 19:06:15 +00:00
|
|
|
}
|
2015-01-28 20:12:15 +00:00
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
|
|
|
|
2016-04-28 22:16:11 +00:00
|
|
|
std::string RouterContext::GetFamily () const
|
2016-04-26 22:48:23 +00:00
|
|
|
{
|
2016-04-28 22:16:11 +00:00
|
|
|
return m_RouterInfo.GetProperty (i2p::data::ROUTER_INFO_PROPERTY_FAMILY);
|
2016-04-26 22:31:33 +00:00
|
|
|
}
|
|
|
|
|
2016-02-21 01:20:19 +00:00
|
|
|
void RouterContext::SetFamily (const std::string& family)
|
|
|
|
{
|
|
|
|
std::string signature;
|
|
|
|
if (family.length () > 0)
|
|
|
|
signature = i2p::data::CreateFamilySignature (family, GetIdentHash ());
|
|
|
|
if (signature.length () > 0)
|
|
|
|
{
|
|
|
|
m_RouterInfo.SetProperty (i2p::data::ROUTER_INFO_PROPERTY_FAMILY, family);
|
|
|
|
m_RouterInfo.SetProperty (i2p::data::ROUTER_INFO_PROPERTY_FAMILY_SIG, signature);
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2016-02-21 01:20:19 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_RouterInfo.DeleteProperty (i2p::data::ROUTER_INFO_PROPERTY_FAMILY);
|
|
|
|
m_RouterInfo.DeleteProperty (i2p::data::ROUTER_INFO_PROPERTY_FAMILY_SIG);
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-19 15:14:21 +00:00
|
|
|
|
2018-01-06 03:48:51 +00:00
|
|
|
void RouterContext::SetBandwidth (char L)
|
2017-10-05 14:37:28 +00:00
|
|
|
{
|
|
|
|
uint32_t limit = 0;
|
2017-01-25 21:14:01 +00:00
|
|
|
enum { low, high, extra, unlim } type = high;
|
2016-03-31 00:00:00 +00:00
|
|
|
/* detect parameters */
|
2017-10-12 10:52:36 +00:00
|
|
|
switch (L)
|
2016-03-31 01:31:17 +00:00
|
|
|
{
|
2016-03-31 00:00:00 +00:00
|
|
|
case i2p::data::CAPS_FLAG_LOW_BANDWIDTH1 : limit = 12; type = low; break;
|
|
|
|
case i2p::data::CAPS_FLAG_LOW_BANDWIDTH2 : limit = 48; type = low; break;
|
|
|
|
case i2p::data::CAPS_FLAG_HIGH_BANDWIDTH1 : limit = 64; type = high; break;
|
|
|
|
case i2p::data::CAPS_FLAG_HIGH_BANDWIDTH2 : limit = 128; type = high; break;
|
|
|
|
case i2p::data::CAPS_FLAG_HIGH_BANDWIDTH3 : limit = 256; type = high; break;
|
|
|
|
case i2p::data::CAPS_FLAG_EXTRA_BANDWIDTH1 : limit = 2048; type = extra; break;
|
2017-10-05 14:37:28 +00:00
|
|
|
case i2p::data::CAPS_FLAG_EXTRA_BANDWIDTH2 : limit = 1000000; type = unlim; break; // 1Gbyte/s
|
2016-03-31 01:31:17 +00:00
|
|
|
default:
|
|
|
|
limit = 48; type = low;
|
2016-03-31 00:00:00 +00:00
|
|
|
}
|
|
|
|
/* update caps & flags in RI */
|
|
|
|
auto caps = m_RouterInfo.GetCaps ();
|
|
|
|
caps &= ~i2p::data::RouterInfo::eHighBandwidth;
|
|
|
|
caps &= ~i2p::data::RouterInfo::eExtraBandwidth;
|
2017-10-12 10:52:36 +00:00
|
|
|
switch (type)
|
2016-03-31 01:31:17 +00:00
|
|
|
{
|
2016-03-31 00:00:00 +00:00
|
|
|
case low : /* not set */; break;
|
2017-01-25 21:14:01 +00:00
|
|
|
case extra : caps |= i2p::data::RouterInfo::eExtraBandwidth; break; // 'P'
|
|
|
|
case unlim : caps |= i2p::data::RouterInfo::eExtraBandwidth; // no break here, extra + high means 'X'
|
2016-03-31 00:00:00 +00:00
|
|
|
case high : caps |= i2p::data::RouterInfo::eHighBandwidth; break;
|
|
|
|
}
|
|
|
|
m_RouterInfo.SetCaps (caps);
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
m_BandwidthLimit = limit;
|
2015-03-19 15:14:21 +00:00
|
|
|
}
|
|
|
|
|
2017-10-12 10:52:36 +00:00
|
|
|
void RouterContext::SetBandwidth (int limit)
|
2016-03-31 01:31:17 +00:00
|
|
|
{
|
2016-03-31 00:00:00 +00:00
|
|
|
if (limit > 2000) { SetBandwidth('X'); }
|
|
|
|
else if (limit > 256) { SetBandwidth('P'); }
|
|
|
|
else if (limit > 128) { SetBandwidth('O'); }
|
|
|
|
else if (limit > 64) { SetBandwidth('N'); }
|
|
|
|
else if (limit > 48) { SetBandwidth('M'); }
|
|
|
|
else if (limit > 12) { SetBandwidth('L'); }
|
|
|
|
else { SetBandwidth('K'); }
|
2016-01-03 03:17:04 +00:00
|
|
|
}
|
2016-03-31 00:00:00 +00:00
|
|
|
|
2017-05-04 18:58:12 +00:00
|
|
|
void RouterContext::SetShareRatio (int percents)
|
|
|
|
{
|
|
|
|
if (percents < 0) percents = 0;
|
|
|
|
if (percents > 100) percents = 100;
|
|
|
|
m_ShareRatio = percents;
|
|
|
|
}
|
|
|
|
|
2015-03-01 12:55:03 +00:00
|
|
|
bool RouterContext::IsUnreachable () const
|
|
|
|
{
|
|
|
|
return m_RouterInfo.GetCaps () & i2p::data::RouterInfo::eUnreachable;
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
|
|
|
|
2014-09-08 20:43:20 +00:00
|
|
|
void RouterContext::SetUnreachable ()
|
|
|
|
{
|
|
|
|
// set caps
|
2017-01-25 21:37:21 +00:00
|
|
|
uint8_t caps = m_RouterInfo.GetCaps ();
|
|
|
|
caps &= ~i2p::data::RouterInfo::eReachable;
|
|
|
|
caps |= i2p::data::RouterInfo::eUnreachable;
|
|
|
|
caps &= ~i2p::data::RouterInfo::eFloodfill; // can't be floodfill
|
|
|
|
caps &= ~i2p::data::RouterInfo::eSSUIntroducer; // can't be introducer
|
2017-10-12 10:52:36 +00:00
|
|
|
m_RouterInfo.SetCaps (caps);
|
2014-09-08 20:43:20 +00:00
|
|
|
// remove NTCP address
|
|
|
|
auto& addresses = m_RouterInfo.GetAddresses ();
|
2016-08-07 21:52:18 +00:00
|
|
|
for (auto it = addresses.begin (); it != addresses.end (); ++it)
|
2014-09-08 20:43:20 +00:00
|
|
|
{
|
2018-08-03 18:49:28 +00:00
|
|
|
if ((*it)->transportStyle == i2p::data::RouterInfo::eTransportNTCP && !(*it)->IsNTCP2 () &&
|
2016-07-14 18:29:45 +00:00
|
|
|
(*it)->host.is_v4 ())
|
2014-09-08 20:43:20 +00:00
|
|
|
{
|
2016-07-14 18:10:38 +00:00
|
|
|
addresses.erase (it);
|
2014-09-08 20:43:20 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2014-09-09 01:53:55 +00:00
|
|
|
// delete previous introducers
|
2017-10-12 10:52:36 +00:00
|
|
|
for (auto& addr : addresses)
|
2017-01-02 21:36:59 +00:00
|
|
|
if (addr->ssu)
|
|
|
|
addr->ssu->introducers.clear ();
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2014-09-08 20:43:20 +00:00
|
|
|
// update
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
2014-10-27 01:32:06 +00:00
|
|
|
|
2015-03-01 12:55:03 +00:00
|
|
|
void RouterContext::SetReachable ()
|
|
|
|
{
|
|
|
|
// update caps
|
|
|
|
uint8_t caps = m_RouterInfo.GetCaps ();
|
|
|
|
caps &= ~i2p::data::RouterInfo::eUnreachable;
|
|
|
|
caps |= i2p::data::RouterInfo::eReachable;
|
|
|
|
caps |= i2p::data::RouterInfo::eSSUIntroducer;
|
|
|
|
if (m_IsFloodfill)
|
|
|
|
caps |= i2p::data::RouterInfo::eFloodfill;
|
|
|
|
m_RouterInfo.SetCaps (caps);
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2015-03-01 12:55:03 +00:00
|
|
|
auto& addresses = m_RouterInfo.GetAddresses ();
|
2018-08-12 06:36:00 +00:00
|
|
|
// insert NTCP back
|
|
|
|
bool ntcp; i2p::config::GetOption("ntcp", ntcp);
|
|
|
|
if (ntcp) {
|
|
|
|
for (const auto& addr : addresses)
|
2015-03-01 12:55:03 +00:00
|
|
|
{
|
2018-08-12 06:36:00 +00:00
|
|
|
if (addr->transportStyle == i2p::data::RouterInfo::eTransportSSU &&
|
|
|
|
addr->host.is_v4 ())
|
|
|
|
{
|
|
|
|
// insert NTCP address with host/port from SSU
|
|
|
|
m_RouterInfo.AddNTCPAddress (addr->host.to_string ().c_str (), addr->port);
|
|
|
|
break;
|
|
|
|
}
|
2015-03-01 12:55:03 +00:00
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2015-03-01 12:55:03 +00:00
|
|
|
// delete previous introducers
|
2016-08-07 21:52:18 +00:00
|
|
|
for (auto& addr : addresses)
|
2017-01-02 21:36:59 +00:00
|
|
|
if (addr->ssu)
|
|
|
|
addr->ssu->introducers.clear ();
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2015-03-01 12:55:03 +00:00
|
|
|
// update
|
|
|
|
UpdateRouterInfo ();
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
|
|
|
|
2014-10-27 01:32:06 +00:00
|
|
|
void RouterContext::SetSupportsV6 (bool supportsV6)
|
|
|
|
{
|
|
|
|
if (supportsV6)
|
|
|
|
m_RouterInfo.EnableV6 ();
|
|
|
|
else
|
|
|
|
m_RouterInfo.DisableV6 ();
|
2014-10-29 22:46:35 +00:00
|
|
|
UpdateRouterInfo ();
|
2016-03-24 22:44:41 +00:00
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2016-03-24 22:44:41 +00:00
|
|
|
void RouterContext::SetSupportsV4 (bool supportsV4)
|
|
|
|
{
|
|
|
|
if (supportsV4)
|
|
|
|
m_RouterInfo.EnableV4 ();
|
|
|
|
else
|
|
|
|
m_RouterInfo.DisableV4 ();
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2014-10-27 19:08:50 +00:00
|
|
|
|
2014-10-29 17:49:21 +00:00
|
|
|
void RouterContext::UpdateNTCPV6Address (const boost::asio::ip::address& host)
|
2014-10-27 19:08:50 +00:00
|
|
|
{
|
2017-10-12 10:52:36 +00:00
|
|
|
bool updated = false, found = false;
|
2014-10-27 19:08:50 +00:00
|
|
|
int port = 0;
|
|
|
|
auto& addresses = m_RouterInfo.GetAddresses ();
|
2016-08-07 21:52:18 +00:00
|
|
|
for (auto& addr: addresses)
|
2014-10-27 19:08:50 +00:00
|
|
|
{
|
2016-03-21 17:02:51 +00:00
|
|
|
if (addr->host.is_v6 () && addr->transportStyle == i2p::data::RouterInfo::eTransportNTCP)
|
2014-10-27 19:08:50 +00:00
|
|
|
{
|
2016-03-21 17:02:51 +00:00
|
|
|
if (addr->host != host)
|
2014-10-27 19:08:50 +00:00
|
|
|
{
|
2016-03-21 17:02:51 +00:00
|
|
|
addr->host = host;
|
2014-10-27 19:08:50 +00:00
|
|
|
updated = true;
|
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
found = true;
|
|
|
|
}
|
2014-10-27 19:08:50 +00:00
|
|
|
else
|
2017-10-12 10:52:36 +00:00
|
|
|
port = addr->port;
|
|
|
|
}
|
2014-10-27 19:08:50 +00:00
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
// create new address
|
2014-10-29 17:49:21 +00:00
|
|
|
m_RouterInfo.AddNTCPAddress (host.to_string ().c_str (), port);
|
2014-10-31 22:27:51 +00:00
|
|
|
auto mtu = i2p::util::net::GetMTU (host);
|
|
|
|
if (mtu)
|
2017-10-12 10:52:36 +00:00
|
|
|
{
|
2015-12-18 13:49:57 +00:00
|
|
|
LogPrint (eLogDebug, "Router: Our v6 MTU=", mtu);
|
|
|
|
if (mtu > 1472) { // TODO: magic constant
|
|
|
|
mtu = 1472;
|
|
|
|
LogPrint(eLogWarning, "Router: MTU dropped to upper limit of 1472 bytes");
|
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2014-10-31 22:27:51 +00:00
|
|
|
m_RouterInfo.AddSSUAddress (host.to_string ().c_str (), port, GetIdentHash (), mtu ? mtu : 1472); // TODO
|
2014-10-27 19:08:50 +00:00
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
if (updated)
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
2015-03-18 19:36:07 +00:00
|
|
|
|
2018-08-27 19:01:43 +00:00
|
|
|
void RouterContext::UpdateNTCP2V6Address (const boost::asio::ip::address& host)
|
|
|
|
{
|
2018-08-27 22:56:57 +00:00
|
|
|
bool updated = false, found = false;
|
2018-08-27 19:01:43 +00:00
|
|
|
int port = 0;
|
|
|
|
auto& addresses = m_RouterInfo.GetAddresses ();
|
|
|
|
for (auto& addr: addresses)
|
|
|
|
{
|
|
|
|
if (addr->IsPublishedNTCP2 ())
|
|
|
|
{
|
|
|
|
if (addr->host.is_v6 ())
|
|
|
|
{
|
|
|
|
if (addr->host != host)
|
|
|
|
{
|
|
|
|
addr->host = host;
|
|
|
|
updated = true;
|
|
|
|
}
|
2018-08-27 22:56:57 +00:00
|
|
|
found = true;
|
|
|
|
break;
|
2018-08-27 19:01:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
port = addr->port; // NTCP2 v4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-27 22:56:57 +00:00
|
|
|
if (!found && port) // we have found NTCP2 v4 but not v6
|
2018-08-27 19:01:43 +00:00
|
|
|
{
|
2018-08-27 20:01:47 +00:00
|
|
|
m_RouterInfo.AddNTCP2Address (m_NTCP2Keys->staticPublicKey, m_NTCP2Keys->iv, host, port);
|
|
|
|
updated = true;
|
2018-08-27 19:01:43 +00:00
|
|
|
}
|
2018-08-27 20:01:47 +00:00
|
|
|
if (updated)
|
2018-08-27 19:01:43 +00:00
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
|
|
|
|
2015-03-18 19:36:07 +00:00
|
|
|
void RouterContext::UpdateStats ()
|
|
|
|
{
|
|
|
|
if (m_IsFloodfill)
|
|
|
|
{
|
|
|
|
// update routers and leasesets
|
2016-11-04 00:00:00 +00:00
|
|
|
m_RouterInfo.SetProperty (i2p::data::ROUTER_INFO_PROPERTY_LEASESETS, std::to_string(i2p::data::netdb.GetNumLeaseSets ()));
|
|
|
|
m_RouterInfo.SetProperty (i2p::data::ROUTER_INFO_PROPERTY_ROUTERS, std::to_string(i2p::data::netdb.GetNumRouters ()));
|
2017-10-12 10:52:36 +00:00
|
|
|
UpdateRouterInfo ();
|
2015-03-18 19:36:07 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2018-09-21 14:13:18 +00:00
|
|
|
void RouterContext::UpdateTimestamp (uint64_t ts)
|
|
|
|
{
|
|
|
|
if (ts > m_LastUpdateTime + ROUTER_INFO_UPDATE_INTERVAL)
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
|
|
|
|
2013-10-23 02:45:40 +00:00
|
|
|
bool RouterContext::Load ()
|
|
|
|
{
|
2016-02-11 00:00:00 +00:00
|
|
|
std::ifstream fk (i2p::fs::DataDirPath (ROUTER_KEYS), std::ifstream::in | std::ifstream::binary);
|
2013-10-23 02:45:40 +00:00
|
|
|
if (!fk.is_open ()) return false;
|
2015-11-03 18:05:37 +00:00
|
|
|
fk.seekg (0, std::ios::end);
|
|
|
|
size_t len = fk.tellg();
|
2017-10-12 10:52:36 +00:00
|
|
|
fk.seekg (0, std::ios::beg);
|
2015-11-03 18:05:37 +00:00
|
|
|
|
|
|
|
if (len == sizeof (i2p::data::Keys)) // old keys file format
|
|
|
|
{
|
2017-10-12 10:52:36 +00:00
|
|
|
i2p::data::Keys keys;
|
2015-11-03 18:05:37 +00:00
|
|
|
fk.read ((char *)&keys, sizeof (keys));
|
|
|
|
m_Keys = keys;
|
|
|
|
}
|
|
|
|
else // new keys file format
|
|
|
|
{
|
|
|
|
uint8_t * buf = new uint8_t[len];
|
|
|
|
fk.read ((char *)buf, len);
|
|
|
|
m_Keys.FromBuffer (buf, len);
|
|
|
|
delete[] buf;
|
|
|
|
}
|
2018-08-04 01:16:35 +00:00
|
|
|
// read NTCP2 keys if available
|
|
|
|
std::ifstream n2k (i2p::fs::DataDirPath (NTCP2_KEYS), std::ifstream::in | std::ifstream::binary);
|
|
|
|
if (n2k)
|
|
|
|
{
|
|
|
|
n2k.seekg (0, std::ios::end);
|
|
|
|
len = n2k.tellg();
|
|
|
|
n2k.seekg (0, std::ios::beg);
|
|
|
|
if (len == sizeof (NTCP2PrivateKeys))
|
|
|
|
{
|
|
|
|
m_NTCP2Keys.reset (new NTCP2PrivateKeys ());
|
|
|
|
n2k.read ((char *)m_NTCP2Keys.get (), sizeof (NTCP2PrivateKeys));
|
|
|
|
}
|
|
|
|
n2k.close ();
|
|
|
|
}
|
|
|
|
// read RouterInfo
|
2015-11-03 14:15:49 +00:00
|
|
|
m_RouterInfo.SetRouterIdentity (GetIdentity ());
|
2017-10-12 10:52:36 +00:00
|
|
|
i2p::data::RouterInfo routerInfo(i2p::fs::DataDirPath (ROUTER_INFO));
|
2016-04-05 14:22:32 +00:00
|
|
|
if (!routerInfo.IsUnreachable ()) // router.info looks good
|
|
|
|
{
|
|
|
|
m_RouterInfo.Update (routerInfo.GetBuffer (), routerInfo.GetBufferLen ());
|
|
|
|
m_RouterInfo.SetProperty ("coreVersion", I2P_VERSION);
|
|
|
|
m_RouterInfo.SetProperty ("router.version", I2P_VERSION);
|
|
|
|
|
|
|
|
// Migration to 0.9.24. TODO: remove later
|
|
|
|
m_RouterInfo.DeleteProperty ("coreVersion");
|
|
|
|
m_RouterInfo.DeleteProperty ("stat_uptime");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint (eLogError, ROUTER_INFO, " is malformed. Creating new");
|
|
|
|
NewRouterInfo ();
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2015-03-01 12:55:03 +00:00
|
|
|
|
|
|
|
if (IsUnreachable ())
|
|
|
|
SetReachable (); // we assume reachable until we discover firewall through peer tests
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2018-06-11 19:33:48 +00:00
|
|
|
// read NTCP2
|
2018-07-19 13:45:24 +00:00
|
|
|
bool ntcp2; i2p::config::GetOption("ntcp2.enabled", ntcp2);
|
2018-06-11 19:33:48 +00:00
|
|
|
if (ntcp2)
|
|
|
|
{
|
2018-08-04 01:16:35 +00:00
|
|
|
if (!m_NTCP2Keys) NewNTCP2Keys ();
|
|
|
|
UpdateNTCP2Address (true); // enable NTCP2
|
2018-06-11 19:33:48 +00:00
|
|
|
}
|
2018-08-03 18:49:28 +00:00
|
|
|
else
|
|
|
|
UpdateNTCP2Address (false); // disable NTCP2
|
2018-06-11 19:33:48 +00:00
|
|
|
|
2013-10-23 02:45:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-08-17 05:09:15 +00:00
|
|
|
|
2014-08-31 20:46:39 +00:00
|
|
|
void RouterContext::SaveKeys ()
|
2017-10-12 10:52:36 +00:00
|
|
|
{
|
2015-11-03 18:05:37 +00:00
|
|
|
// save in the same format as .dat files
|
2016-02-11 00:00:00 +00:00
|
|
|
std::ofstream fk (i2p::fs::DataDirPath (ROUTER_KEYS), std::ofstream::binary | std::ofstream::out);
|
2015-11-03 18:05:37 +00:00
|
|
|
size_t len = m_Keys.GetFullLen ();
|
|
|
|
uint8_t * buf = new uint8_t[len];
|
|
|
|
m_Keys.ToBuffer (buf, len);
|
|
|
|
fk.write ((char *)buf, len);
|
|
|
|
delete[] buf;
|
2014-08-17 05:09:15 +00:00
|
|
|
}
|
2014-10-12 01:27:55 +00:00
|
|
|
|
2015-04-05 16:54:15 +00:00
|
|
|
std::shared_ptr<i2p::tunnel::TunnelPool> RouterContext::GetTunnelPool () const
|
|
|
|
{
|
2017-10-12 10:52:36 +00:00
|
|
|
return i2p::tunnel::tunnels.GetExploratoryPool ();
|
|
|
|
}
|
|
|
|
|
2015-02-05 23:53:43 +00:00
|
|
|
void RouterContext::HandleI2NPMessage (const uint8_t * buf, size_t len, std::shared_ptr<i2p::tunnel::InboundTunnel> from)
|
2014-10-12 01:27:55 +00:00
|
|
|
{
|
2017-12-01 17:57:05 +00:00
|
|
|
i2p::HandleI2NPMessage (CreateI2NPMessage (buf, GetI2NPMessageLength (buf, len), from));
|
2015-02-23 19:41:56 +00:00
|
|
|
}
|
|
|
|
|
2015-06-16 14:14:14 +00:00
|
|
|
void RouterContext::ProcessGarlicMessage (std::shared_ptr<I2NPMessage> msg)
|
2015-06-10 02:14:31 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> l(m_GarlicMutex);
|
|
|
|
i2p::garlic::GarlicDestination::ProcessGarlicMessage (msg);
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
|
|
|
|
2015-06-16 14:14:14 +00:00
|
|
|
void RouterContext::ProcessDeliveryStatusMessage (std::shared_ptr<I2NPMessage> msg)
|
2015-06-10 02:14:31 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> l(m_GarlicMutex);
|
|
|
|
i2p::garlic::GarlicDestination::ProcessDeliveryStatusMessage (msg);
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2016-07-28 17:24:25 +00:00
|
|
|
|
|
|
|
void RouterContext::CleanupDestination ()
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> l(m_GarlicMutex);
|
|
|
|
i2p::garlic::GarlicDestination::CleanupExpiredTags ();
|
|
|
|
}
|
2017-10-12 10:52:36 +00:00
|
|
|
|
2015-02-23 19:41:56 +00:00
|
|
|
uint32_t RouterContext::GetUptime () const
|
|
|
|
{
|
|
|
|
return i2p::util::GetSecondsSinceEpoch () - m_StartupTime;
|
2017-10-12 10:52:36 +00:00
|
|
|
}
|
2017-11-08 18:49:48 +00:00
|
|
|
|
2017-11-09 01:45:53 +00:00
|
|
|
bool RouterContext::Decrypt (const uint8_t * encrypted, uint8_t * data, BN_CTX * ctx) const
|
2017-11-08 18:49:48 +00:00
|
|
|
{
|
2018-03-09 19:56:06 +00:00
|
|
|
return m_Decryptor ? m_Decryptor->Decrypt (encrypted, data, ctx, true) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RouterContext::DecryptTunnelBuildRecord (const uint8_t * encrypted, uint8_t * data, BN_CTX * ctx) const
|
|
|
|
{
|
|
|
|
return m_Decryptor ? m_Decryptor->Decrypt (encrypted, data, ctx, false) : false;
|
2017-11-08 18:49:48 +00:00
|
|
|
}
|
2018-09-09 02:08:08 +00:00
|
|
|
|
|
|
|
i2p::crypto::X25519Keys& RouterContext::GetStaticKeys ()
|
|
|
|
{
|
|
|
|
if (!m_StaticKeys)
|
|
|
|
{
|
|
|
|
if (!m_NTCP2Keys) NewNTCP2Keys ();
|
2018-09-09 12:38:12 +00:00
|
|
|
auto x = new i2p::crypto::X25519Keys (m_NTCP2Keys->staticPrivateKey, m_NTCP2Keys->staticPublicKey);
|
|
|
|
if (!m_StaticKeys)
|
|
|
|
m_StaticKeys.reset (x);
|
|
|
|
else
|
|
|
|
delete x;
|
2018-09-09 02:08:08 +00:00
|
|
|
}
|
|
|
|
return *m_StaticKeys;
|
|
|
|
}
|
2014-08-17 05:09:15 +00:00
|
|
|
}
|