2013-10-22 22:45:40 -04:00
|
|
|
#include <fstream>
|
|
|
|
#include <cryptopp/dh.h>
|
|
|
|
#include <cryptopp/dsa.h>
|
|
|
|
#include "CryptoConst.h"
|
|
|
|
#include "RouterContext.h"
|
2014-08-31 16:46:39 -04:00
|
|
|
#include "Timestamp.h"
|
2014-10-11 21:27:55 -04:00
|
|
|
#include "I2NPProtocol.h"
|
2014-01-30 01:56:48 +01:00
|
|
|
#include "util.h"
|
2014-08-17 07:09:15 +02:00
|
|
|
#include "version.h"
|
2013-10-22 22:45:40 -04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
RouterContext context;
|
|
|
|
|
2014-08-31 16:46:39 -04:00
|
|
|
RouterContext::RouterContext ():
|
2014-09-30 13:34:29 -04:00
|
|
|
m_LastUpdateTime (0), m_IsUnreachable (false), m_AcceptsTunnels (true)
|
2014-09-04 09:31:42 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void RouterContext::Init ()
|
2013-10-22 22:45:40 -04:00
|
|
|
{
|
|
|
|
if (!Load ())
|
|
|
|
CreateNewRouter ();
|
2014-08-31 16:46:39 -04:00
|
|
|
UpdateRouterInfo ();
|
2014-08-17 07:09:15 +02:00
|
|
|
}
|
|
|
|
|
2013-10-22 22:45:40 -04:00
|
|
|
void RouterContext::CreateNewRouter ()
|
|
|
|
{
|
2013-12-20 20:22:55 -05:00
|
|
|
m_Keys = i2p::data::CreateRandomKeys ();
|
2014-08-31 16:46:39 -04:00
|
|
|
SaveKeys ();
|
|
|
|
NewRouterInfo ();
|
2014-02-23 11:48:09 -05:00
|
|
|
}
|
|
|
|
|
2014-08-31 16:46:39 -04:00
|
|
|
void RouterContext::NewRouterInfo ()
|
2014-02-23 11:48:09 -05:00
|
|
|
{
|
2014-02-23 20:48:28 -05:00
|
|
|
i2p::data::RouterInfo routerInfo;
|
2014-11-20 12:21:27 -05:00
|
|
|
routerInfo.SetRouterIdentity (GetIdentity ());
|
2014-08-31 16:46:39 -04:00
|
|
|
int port = i2p::util::config::GetArg("-port", 0);
|
|
|
|
if (!port)
|
|
|
|
port = m_Rnd.GenerateWord32 (9111, 30777); // I2P network ports range
|
|
|
|
routerInfo.AddSSUAddress (i2p::util::config::GetCharArg("-host", "127.0.0.1"), port, routerInfo.GetIdentHash ());
|
|
|
|
routerInfo.AddNTCPAddress (i2p::util::config::GetCharArg("-host", "127.0.0.1"), port);
|
2014-09-05 07:26:36 -04:00
|
|
|
routerInfo.SetCaps (i2p::data::RouterInfo::eReachable |
|
|
|
|
i2p::data::RouterInfo::eSSUTesting | i2p::data::RouterInfo::eSSUIntroducer); // LR, BC
|
2014-08-17 07:09:15 +02:00
|
|
|
routerInfo.SetProperty ("coreVersion", I2P_VERSION);
|
2014-02-23 20:48:28 -05:00
|
|
|
routerInfo.SetProperty ("netId", "2");
|
2014-08-17 07:09:15 +02:00
|
|
|
routerInfo.SetProperty ("router.version", I2P_VERSION);
|
2014-09-03 13:00:15 -04:00
|
|
|
routerInfo.SetProperty ("stat_uptime", "90m");
|
2014-08-25 22:47:12 -04:00
|
|
|
routerInfo.CreateBuffer (m_Keys);
|
2014-07-22 08:03:02 -04:00
|
|
|
m_RouterInfo.Update (routerInfo.GetBuffer (), routerInfo.GetBufferLen ());
|
2014-08-17 07:09:15 +02:00
|
|
|
}
|
|
|
|
|
2014-08-31 16:46:39 -04:00
|
|
|
void RouterContext::UpdateRouterInfo ()
|
|
|
|
{
|
|
|
|
m_RouterInfo.CreateBuffer (m_Keys);
|
|
|
|
m_RouterInfo.SaveToFile (i2p::util::filesystem::GetFullPath (ROUTER_INFO));
|
|
|
|
m_LastUpdateTime = i2p::util::GetSecondsSinceEpoch ();
|
|
|
|
}
|
2014-09-11 09:32:34 -04:00
|
|
|
|
|
|
|
void RouterContext::UpdatePort (int port)
|
2013-12-10 08:10:49 -05:00
|
|
|
{
|
2014-09-11 09:32:34 -04:00
|
|
|
bool updated = false;
|
|
|
|
for (auto& address : m_RouterInfo.GetAddresses ())
|
2013-12-10 08:10:49 -05:00
|
|
|
{
|
2014-09-11 09:32:34 -04:00
|
|
|
if (address.port != port)
|
|
|
|
{
|
|
|
|
address.port = port;
|
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (updated)
|
|
|
|
UpdateRouterInfo ();
|
2014-08-17 07:09:15 +02:00
|
|
|
}
|
2014-02-08 21:06:40 -05:00
|
|
|
|
2014-10-29 13:49:21 -04:00
|
|
|
void RouterContext::UpdateAddress (const boost::asio::ip::address& host)
|
2014-02-08 21:06:40 -05:00
|
|
|
{
|
2014-08-31 16:46:39 -04:00
|
|
|
bool updated = false;
|
2014-02-08 21:06:40 -05:00
|
|
|
for (auto& address : m_RouterInfo.GetAddresses ())
|
2014-08-31 16:46:39 -04:00
|
|
|
{
|
2014-10-29 13:49:21 -04:00
|
|
|
if (address.host != host && address.IsCompatible (host))
|
2014-08-31 16:46:39 -04:00
|
|
|
{
|
2014-10-29 13:49:21 -04:00
|
|
|
address.host = host;
|
2014-08-31 16:46:39 -04:00
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
auto ts = i2p::util::GetSecondsSinceEpoch ();
|
|
|
|
if (updated || ts > m_LastUpdateTime + ROUTER_INFO_UPDATE_INTERVAL)
|
|
|
|
UpdateRouterInfo ();
|
2013-10-22 22:45:40 -04:00
|
|
|
}
|
|
|
|
|
2014-09-09 08:03:05 -04:00
|
|
|
bool RouterContext::AddIntroducer (const i2p::data::RouterInfo& routerInfo, uint32_t tag)
|
2014-09-01 17:34:20 -04:00
|
|
|
{
|
2014-09-09 08:03:05 -04:00
|
|
|
bool ret = false;
|
2014-09-01 17:34:20 -04:00
|
|
|
auto address = routerInfo.GetSSUAddress ();
|
|
|
|
if (address)
|
|
|
|
{
|
2014-09-09 08:03:05 -04:00
|
|
|
ret = m_RouterInfo.AddIntroducer (address, tag);
|
|
|
|
if (ret)
|
2014-09-01 17:34:20 -04:00
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
2014-09-14 21:53:00 -04:00
|
|
|
return ret;
|
2014-09-01 17:34:20 -04:00
|
|
|
}
|
|
|
|
|
2014-09-06 20:43:20 -04:00
|
|
|
void RouterContext::RemoveIntroducer (const boost::asio::ip::udp::endpoint& e)
|
2014-09-01 17:34:20 -04:00
|
|
|
{
|
2014-09-06 20:43:20 -04:00
|
|
|
if (m_RouterInfo.RemoveIntroducer (e))
|
2014-09-01 17:34:20 -04:00
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
2014-09-08 16:43:20 -04:00
|
|
|
|
|
|
|
void RouterContext::SetUnreachable ()
|
|
|
|
{
|
|
|
|
m_IsUnreachable = true;
|
|
|
|
// set caps
|
|
|
|
m_RouterInfo.SetCaps (i2p::data::RouterInfo::eUnreachable | i2p::data::RouterInfo::eSSUTesting); // LU, B
|
|
|
|
// remove NTCP address
|
|
|
|
auto& addresses = m_RouterInfo.GetAddresses ();
|
|
|
|
for (size_t i = 0; i < addresses.size (); i++)
|
|
|
|
{
|
|
|
|
if (addresses[i].transportStyle == i2p::data::RouterInfo::eTransportNTCP)
|
|
|
|
{
|
|
|
|
addresses.erase (addresses.begin () + i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-09-08 21:53:55 -04:00
|
|
|
// delete previous introducers
|
|
|
|
for (auto& addr : addresses)
|
|
|
|
addr.introducers.clear ();
|
|
|
|
|
2014-09-08 16:43:20 -04:00
|
|
|
// update
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
2014-10-26 21:32:06 -04:00
|
|
|
|
|
|
|
void RouterContext::SetSupportsV6 (bool supportsV6)
|
|
|
|
{
|
|
|
|
if (supportsV6)
|
|
|
|
m_RouterInfo.EnableV6 ();
|
|
|
|
else
|
|
|
|
m_RouterInfo.DisableV6 ();
|
2014-10-29 18:46:35 -04:00
|
|
|
UpdateRouterInfo ();
|
2014-10-26 21:32:06 -04:00
|
|
|
}
|
2014-10-27 15:08:50 -04:00
|
|
|
|
2014-10-29 13:49:21 -04:00
|
|
|
void RouterContext::UpdateNTCPV6Address (const boost::asio::ip::address& host)
|
2014-10-27 15:08:50 -04:00
|
|
|
{
|
|
|
|
bool updated = false, found = false;
|
|
|
|
int port = 0;
|
|
|
|
auto& addresses = m_RouterInfo.GetAddresses ();
|
|
|
|
for (auto& addr : addresses)
|
|
|
|
{
|
2014-10-29 18:46:35 -04:00
|
|
|
if (addr.host.is_v6 () && addr.transportStyle == i2p::data::RouterInfo::eTransportNTCP)
|
2014-10-27 15:08:50 -04:00
|
|
|
{
|
2014-10-29 13:49:21 -04:00
|
|
|
if (addr.host != host)
|
2014-10-27 15:08:50 -04:00
|
|
|
{
|
2014-10-29 13:49:21 -04:00
|
|
|
addr.host = host;
|
2014-10-27 15:08:50 -04:00
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
port = addr.port;
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
// create new address
|
2014-10-29 13:49:21 -04:00
|
|
|
m_RouterInfo.AddNTCPAddress (host.to_string ().c_str (), port);
|
2014-10-31 18:27:51 -04:00
|
|
|
auto mtu = i2p::util::net::GetMTU (host);
|
|
|
|
if (mtu)
|
|
|
|
{
|
|
|
|
LogPrint ("Our v6 MTU=", mtu);
|
|
|
|
if (mtu > 1472) mtu = 1472;
|
|
|
|
}
|
|
|
|
m_RouterInfo.AddSSUAddress (host.to_string ().c_str (), port, GetIdentHash (), mtu ? mtu : 1472); // TODO
|
2014-10-27 15:08:50 -04:00
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
if (updated)
|
|
|
|
UpdateRouterInfo ();
|
|
|
|
}
|
2014-10-26 21:32:06 -04:00
|
|
|
|
2013-10-22 22:45:40 -04:00
|
|
|
bool RouterContext::Load ()
|
|
|
|
{
|
2014-03-14 07:32:11 -04:00
|
|
|
std::ifstream fk (i2p::util::filesystem::GetFullPath (ROUTER_KEYS).c_str (), std::ifstream::binary | std::ofstream::in);
|
2013-10-22 22:45:40 -04:00
|
|
|
if (!fk.is_open ()) return false;
|
2014-08-25 16:25:12 -04:00
|
|
|
|
|
|
|
i2p::data::Keys keys;
|
|
|
|
fk.read ((char *)&keys, sizeof (keys));
|
|
|
|
m_Keys = keys;
|
2013-10-22 22:45:40 -04:00
|
|
|
|
2014-07-23 21:45:45 -04:00
|
|
|
i2p::data::RouterInfo routerInfo(i2p::util::filesystem::GetFullPath (ROUTER_INFO)); // TODO
|
|
|
|
m_RouterInfo.Update (routerInfo.GetBuffer (), routerInfo.GetBufferLen ());
|
2014-09-02 12:28:57 -04:00
|
|
|
m_RouterInfo.SetProperty ("coreVersion", I2P_VERSION);
|
2014-08-31 16:46:39 -04:00
|
|
|
m_RouterInfo.SetProperty ("router.version", I2P_VERSION);
|
2014-08-22 23:02:48 -04:00
|
|
|
|
2013-10-22 22:45:40 -04:00
|
|
|
return true;
|
|
|
|
}
|
2014-08-17 07:09:15 +02:00
|
|
|
|
2014-08-31 16:46:39 -04:00
|
|
|
void RouterContext::SaveKeys ()
|
|
|
|
{
|
|
|
|
std::ofstream fk (i2p::util::filesystem::GetFullPath (ROUTER_KEYS).c_str (), std::ofstream::binary | std::ofstream::out);
|
|
|
|
i2p::data::Keys keys;
|
|
|
|
memcpy (keys.privateKey, m_Keys.GetPrivateKey (), sizeof (keys.privateKey));
|
|
|
|
memcpy (keys.signingPrivateKey, m_Keys.GetSigningPrivateKey (), sizeof (keys.signingPrivateKey));
|
|
|
|
auto& ident = GetIdentity ().GetStandardIdentity ();
|
|
|
|
memcpy (keys.publicKey, ident.publicKey, sizeof (keys.publicKey));
|
|
|
|
memcpy (keys.signingKey, ident.signingKey, sizeof (keys.signingKey));
|
|
|
|
fk.write ((char *)&keys, sizeof (keys));
|
2014-08-17 07:09:15 +02:00
|
|
|
}
|
2014-10-11 21:27:55 -04:00
|
|
|
|
2014-10-13 17:45:07 -04:00
|
|
|
void RouterContext::HandleI2NPMessage (const uint8_t * buf, size_t len, i2p::tunnel::InboundTunnel * from)
|
2014-10-11 21:27:55 -04:00
|
|
|
{
|
2014-10-13 17:45:07 -04:00
|
|
|
i2p::HandleI2NPMessage (CreateI2NPMessage (buf, GetI2NPMessageLength (buf), from));
|
2014-10-11 21:27:55 -04:00
|
|
|
}
|
2014-08-17 07:09:15 +02:00
|
|
|
}
|