i2pd/libi2pd/RouterInfo.cpp

929 lines
26 KiB
C++
Raw Normal View History

2013-10-27 19:28:23 +04:00
#include <stdio.h>
#include <string.h>
#include "I2PEndian.h"
2013-10-27 19:28:23 +04:00
#include <fstream>
#include <boost/lexical_cast.hpp>
#include <boost/make_shared.hpp>
2016-09-24 15:29:08 +03:00
#if (BOOST_VERSION >= 105300)
#include <boost/atomic.hpp>
#endif
2016-01-16 23:36:30 +03:00
#include "version.h"
2015-11-03 17:15:49 +03:00
#include "Crypto.h"
#include "Base.h"
2013-10-27 19:28:23 +04:00
#include "Timestamp.h"
#include "Log.h"
#include "NetDb.hpp"
2016-10-12 18:26:48 +03:00
#include "RouterContext.h"
2013-10-27 19:28:23 +04:00
#include "RouterInfo.h"
2014-01-22 10:46:58 +04:00
2013-10-27 19:28:23 +04:00
namespace i2p
{
namespace data
2018-01-06 06:48:51 +03:00
{
RouterInfo::RouterInfo (): m_Buffer (nullptr)
{
m_Addresses = boost::make_shared<Addresses>(); // create empty list
}
2018-01-06 06:48:51 +03:00
2014-07-23 18:56:41 +04:00
RouterInfo::RouterInfo (const std::string& fullPath):
2018-01-06 06:48:51 +03:00
m_FullPath (fullPath), m_IsUpdated (false), m_IsUnreachable (false),
2014-07-23 18:56:41 +04:00
m_SupportedTransports (0), m_Caps (0)
2013-10-27 19:28:23 +04:00
{
m_Addresses = boost::make_shared<Addresses>(); // create empty list
m_Buffer = new uint8_t[MAX_RI_BUFFER_SIZE];
2014-07-23 18:56:41 +04:00
ReadFromFile ();
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
2013-11-20 16:46:09 +04:00
RouterInfo::RouterInfo (const uint8_t * buf, int len):
2014-03-19 20:02:51 +04:00
m_IsUpdated (true), m_IsUnreachable (false), m_SupportedTransports (0), m_Caps (0)
2013-10-27 19:28:23 +04:00
{
m_Addresses = boost::make_shared<Addresses>(); // create empty list
m_Buffer = new uint8_t[MAX_RI_BUFFER_SIZE];
2013-10-27 19:28:23 +04:00
memcpy (m_Buffer, buf, len);
m_BufferLen = len;
ReadFromBuffer (true);
2018-01-06 06:48:51 +03:00
}
2014-07-22 04:14:11 +04:00
RouterInfo::~RouterInfo ()
{
2015-04-07 23:26:35 +03:00
delete[] m_Buffer;
2018-01-06 06:48:51 +03:00
}
2014-07-22 04:14:11 +04:00
void RouterInfo::Update (const uint8_t * buf, int len)
{
2015-11-03 17:15:49 +03:00
// verify signature since we have indentity already
int l = len - m_RouterIdentity->GetSignatureLen ();
if (m_RouterIdentity->Verify (buf, l, buf + l))
{
// clean up
m_IsUpdated = true;
m_IsUnreachable = false;
m_SupportedTransports = 0;
m_Caps = 0;
2016-07-13 19:56:23 +03:00
// don't clean up m_Addresses, it will be replaced in ReadFromStream
2015-11-03 17:15:49 +03:00
m_Properties.clear ();
// copy buffer
2018-01-06 06:48:51 +03:00
if (!m_Buffer)
2015-11-03 17:15:49 +03:00
m_Buffer = new uint8_t[MAX_RI_BUFFER_SIZE];
memcpy (m_Buffer, buf, len);
m_BufferLen = len;
// skip identity
size_t identityLen = m_RouterIdentity->GetFullLen ();
2018-01-06 06:48:51 +03:00
// read new RI
2015-11-03 17:15:49 +03:00
std::stringstream str (std::string ((char *)m_Buffer + identityLen, m_BufferLen - identityLen));
ReadFromStream (str);
// don't delete buffer until saved to the file
}
else
2018-01-06 06:48:51 +03:00
{
2015-12-18 17:07:50 +03:00
LogPrint (eLogError, "RouterInfo: signature verification failed");
2015-11-03 17:15:49 +03:00
m_IsUnreachable = true;
}
2018-01-06 06:48:51 +03:00
}
2015-11-03 17:15:49 +03:00
void RouterInfo::SetRouterIdentity (std::shared_ptr<const IdentityEx> identity)
2018-01-06 06:48:51 +03:00
{
2013-10-27 19:28:23 +04:00
m_RouterIdentity = identity;
m_Timestamp = i2p::util::GetMillisecondsSinceEpoch ();
}
2018-01-06 06:48:51 +03:00
2014-07-23 18:56:41 +04:00
bool RouterInfo::LoadFile ()
2013-10-27 19:28:23 +04:00
{
2016-03-31 03:00:00 +03:00
std::ifstream s(m_FullPath, std::ifstream::binary);
2018-01-06 06:48:51 +03:00
if (s.is_open ())
{
2013-10-27 19:28:23 +04:00
s.seekg (0,std::ios::end);
2014-02-03 02:22:00 +04:00
m_BufferLen = s.tellg ();
2016-02-02 19:55:38 +03:00
if (m_BufferLen < 40 || m_BufferLen > MAX_RI_BUFFER_SIZE)
2014-02-03 02:22:00 +04:00
{
2015-12-18 17:07:50 +03:00
LogPrint(eLogError, "RouterInfo: File", m_FullPath, " is malformed");
2014-07-23 18:56:41 +04:00
return false;
2014-02-03 02:22:00 +04:00
}
2013-10-27 19:28:23 +04:00
s.seekg(0, std::ios::beg);
2014-07-23 18:56:41 +04:00
if (!m_Buffer)
m_Buffer = new uint8_t[MAX_RI_BUFFER_SIZE];
2014-07-10 23:33:42 +04:00
s.read((char *)m_Buffer, m_BufferLen);
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
else
2014-07-23 18:56:41 +04:00
{
2015-12-18 17:07:50 +03:00
LogPrint (eLogError, "RouterInfo: Can't open file ", m_FullPath);
2018-01-06 06:48:51 +03:00
return false;
2014-07-23 18:56:41 +04:00
}
return true;
2018-01-06 06:48:51 +03:00
}
2014-07-23 18:56:41 +04:00
void RouterInfo::ReadFromFile ()
{
if (LoadFile ())
2018-01-06 06:48:51 +03:00
ReadFromBuffer (false);
else
2018-01-06 06:48:51 +03:00
m_IsUnreachable = true;
}
2013-10-27 19:28:23 +04:00
void RouterInfo::ReadFromBuffer (bool verifySignature)
2013-10-27 19:28:23 +04:00
{
2015-11-03 17:15:49 +03:00
m_RouterIdentity = std::make_shared<IdentityEx>(m_Buffer, m_BufferLen);
size_t identityLen = m_RouterIdentity->GetFullLen ();
2016-02-02 19:55:38 +03:00
if (identityLen >= m_BufferLen)
{
LogPrint (eLogError, "RouterInfo: identity length ", identityLen, " exceeds buffer size ", m_BufferLen);
m_IsUnreachable = true;
return;
}
if (verifySignature)
2018-01-06 06:48:51 +03:00
{
2017-11-13 19:25:42 +03:00
// reject RSA signatures
if (m_RouterIdentity->IsRSA ())
2017-11-13 19:25:42 +03:00
{
LogPrint (eLogError, "RouterInfo: RSA signature type is not allowed");
2017-11-13 19:25:42 +03:00
m_IsUnreachable = true;
return;
}
// verify signature
2018-01-06 06:48:51 +03:00
int l = m_BufferLen - m_RouterIdentity->GetSignatureLen ();
2016-02-02 19:55:38 +03:00
if (l < 0 || !m_RouterIdentity->Verify ((uint8_t *)m_Buffer, l, (uint8_t *)m_Buffer + l))
2018-01-06 06:48:51 +03:00
{
2015-12-18 17:07:50 +03:00
LogPrint (eLogError, "RouterInfo: signature verification failed");
2014-11-26 18:28:06 +03:00
m_IsUnreachable = true;
2016-09-13 04:37:43 +03:00
return;
2014-11-26 18:28:06 +03:00
}
2015-11-03 17:15:49 +03:00
m_RouterIdentity->DropVerifier ();
2018-01-06 06:48:51 +03:00
}
2016-09-13 04:37:43 +03:00
// parse RI
std::stringstream str;
str.write ((const char *)m_Buffer + identityLen, m_BufferLen - identityLen);
ReadFromStream (str);
if (!str)
{
LogPrint (eLogError, "RouterInfo: malformed message");
m_IsUnreachable = true;
}
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
void RouterInfo::ReadFromStream (std::istream& s)
{
s.read ((char *)&m_Timestamp, sizeof (m_Timestamp));
m_Timestamp = be64toh (m_Timestamp);
// read addresses
2018-01-06 06:48:51 +03:00
auto addresses = boost::make_shared<Addresses>();
2013-10-27 19:28:23 +04:00
uint8_t numAddresses;
2018-01-06 06:48:51 +03:00
s.read ((char *)&numAddresses, sizeof (numAddresses)); if (!s) return;
2014-07-25 04:47:12 +04:00
bool introducers = false;
2013-10-27 19:28:23 +04:00
for (int i = 0; i < numAddresses; i++)
{
uint8_t supportedTransports = 0;
2016-12-14 21:54:16 +03:00
auto address = std::make_shared<Address>();
s.read ((char *)&address->cost, sizeof (address->cost));
s.read ((char *)&address->date, sizeof (address->date));
2018-06-15 19:52:43 +03:00
bool isNtcp2 = false;
char transportStyle[6];
auto transportStyleLen = ReadString (transportStyle, 6, s) - 1;
if (!strncmp (transportStyle, "NTCP", 4)) // NTCP or NTCP2
{
2016-12-14 21:54:16 +03:00
address->transportStyle = eTransportNTCP;
2018-06-15 19:52:43 +03:00
if (transportStyleLen > 4 || transportStyle[4] == '2') isNtcp2= true;
}
2013-10-27 19:28:23 +04:00
else if (!strcmp (transportStyle, "SSU"))
2018-01-06 06:48:51 +03:00
{
2016-12-14 21:54:16 +03:00
address->transportStyle = eTransportSSU;
address->ssu.reset (new SSUExt ());
address->ssu->mtu = 0;
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
else
2016-12-14 21:54:16 +03:00
address->transportStyle = eTransportUnknown;
address->port = 0;
2013-10-27 19:28:23 +04:00
uint16_t size, r = 0;
2016-02-02 19:55:38 +03:00
s.read ((char *)&size, sizeof (size)); if (!s) return;
2013-10-27 19:28:23 +04:00
size = be16toh (size);
while (r < size)
{
2016-08-15 20:12:56 +03:00
char key[255], value[255];
r += ReadString (key, 255, s);
2013-10-27 19:28:23 +04:00
s.seekg (1, std::ios_base::cur); r++; // =
2018-01-06 06:48:51 +03:00
r += ReadString (value, 255, s);
2013-10-27 19:28:23 +04:00
s.seekg (1, std::ios_base::cur); r++; // ;
2016-09-12 18:39:33 +03:00
if (!s) return;
2013-10-27 19:28:23 +04:00
if (!strcmp (key, "host"))
2018-01-06 06:48:51 +03:00
{
2014-01-22 03:01:11 +04:00
boost::system::error_code ecode;
2016-12-14 21:54:16 +03:00
address->host = boost::asio::ip::address::from_string (value, ecode);
2014-01-22 03:01:11 +04:00
if (ecode)
2018-01-06 06:48:51 +03:00
{
2016-12-14 21:54:16 +03:00
if (address->transportStyle == eTransportNTCP)
2015-01-17 07:01:40 +03:00
{
supportedTransports |= eNTCPV4; // TODO:
2016-12-14 21:54:16 +03:00
address->addressString = value;
2015-01-17 07:01:40 +03:00
}
else
2018-01-06 06:48:51 +03:00
{
supportedTransports |= eSSUV4; // TODO:
2016-12-14 21:54:16 +03:00
address->addressString = value;
2018-01-06 06:48:51 +03:00
}
}
else
{
// add supported protocol
2016-12-14 21:54:16 +03:00
if (address->host.is_v4 ())
2018-01-06 06:48:51 +03:00
supportedTransports |= (address->transportStyle == eTransportNTCP) ? eNTCPV4 : eSSUV4;
else
2016-12-14 21:54:16 +03:00
supportedTransports |= (address->transportStyle == eTransportNTCP) ? eNTCPV6 : eSSUV6;
2018-01-06 07:01:44 +03:00
}
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
else if (!strcmp (key, "port"))
2016-12-14 21:54:16 +03:00
address->port = boost::lexical_cast<int>(value);
2014-09-15 01:57:47 +04:00
else if (!strcmp (key, "mtu"))
{
if (address->ssu)
address->ssu->mtu = boost::lexical_cast<int>(value);
else
LogPrint (eLogWarning, "RouterInfo: Unexpected field 'mtu' for NTCP");
2018-01-06 06:48:51 +03:00
}
2014-01-28 04:48:46 +04:00
else if (!strcmp (key, "key"))
2018-01-06 06:48:51 +03:00
{
if (address->ssu)
Base64ToByteStream (value, strlen (value), address->ssu->key, 32);
else
LogPrint (eLogWarning, "RouterInfo: Unexpected field 'key' for NTCP");
2018-01-06 06:48:51 +03:00
}
2014-04-09 05:56:34 +04:00
else if (!strcmp (key, "caps"))
ExtractCaps (value);
2018-06-06 18:51:34 +03:00
else if (!strcmp (key, "s")) // ntcp2 static key
{
if (!address->ntcp2) address->ntcp2.reset (new NTCP2Ext ());
supportedTransports |= (address->host.is_v4 ()) ? eNTCP2V4 : eNTCP2V6;
Base64ToByteStream (value, strlen (value), address->ntcp2->staticKey, 32);
}
else if (!strcmp (key, "i")) // ntcp2 iv
{
if (!address->ntcp2) address->ntcp2.reset (new NTCP2Ext ());
supportedTransports |= (address->host.is_v4 ()) ? eNTCP2V4 : eNTCP2V6;
Base64ToByteStream (value, strlen (value), address->ntcp2->iv, 16);
address->ntcp2->isPublished = true; // presence if "i" means "published"
2018-06-06 18:51:34 +03:00
}
2014-02-21 01:15:12 +04:00
else if (key[0] == 'i')
2018-01-06 06:48:51 +03:00
{
2014-02-21 01:15:12 +04:00
// introducers
2014-07-25 04:47:12 +04:00
introducers = true;
2018-01-06 06:48:51 +03:00
size_t l = strlen(key);
2014-02-24 05:48:28 +04:00
unsigned char index = key[l-1] - '0'; // TODO:
2014-02-21 01:15:12 +04:00
key[l-1] = 0;
2016-09-12 18:39:33 +03:00
if (index > 9)
{
LogPrint (eLogError, "RouterInfo: Unexpected introducer's index ", index, " skipped");
if (s) continue; else return;
}
if (index >= address->ssu->introducers.size ())
2018-01-06 06:48:51 +03:00
address->ssu->introducers.resize (index + 1);
Introducer& introducer = address->ssu->introducers.at (index);
2014-02-21 01:15:12 +04:00
if (!strcmp (key, "ihost"))
{
boost::system::error_code ecode;
introducer.iHost = boost::asio::ip::address::from_string (value, ecode);
2018-01-06 06:48:51 +03:00
}
2014-02-21 01:15:12 +04:00
else if (!strcmp (key, "iport"))
introducer.iPort = boost::lexical_cast<int>(value);
else if (!strcmp (key, "itag"))
introducer.iTag = boost::lexical_cast<uint32_t>(value);
else if (!strcmp (key, "ikey"))
Base64ToByteStream (value, strlen (value), introducer.iKey, 32);
2017-05-24 19:49:36 +03:00
else if (!strcmp (key, "iexp"))
introducer.iExp = boost::lexical_cast<uint32_t>(value);
2014-02-21 01:15:12 +04:00
}
2016-02-02 19:55:38 +03:00
if (!s) return;
2018-01-06 06:48:51 +03:00
}
if (introducers) supportedTransports |= eSSUV4; // in case if host is not presented
if (supportedTransports && (!isNtcp2 || address->IsPublishedNTCP2 ())) // we ignore unpublished NTCP2 only addresses
{
2016-12-14 21:54:16 +03:00
addresses->push_back(address);
m_SupportedTransports |= supportedTransports;
}
2018-01-06 06:48:51 +03:00
}
#if (BOOST_VERSION >= 105300)
boost::atomic_store (&m_Addresses, addresses);
2016-09-24 15:29:08 +03:00
#else
m_Addresses = addresses; // race condition
2018-01-06 06:48:51 +03:00
#endif
2013-10-27 19:28:23 +04:00
// read peers
uint8_t numPeers;
2016-02-02 19:55:38 +03:00
s.read ((char *)&numPeers, sizeof (numPeers)); if (!s) return;
2013-10-27 19:28:23 +04:00
s.seekg (numPeers*32, std::ios_base::cur); // TODO: read peers
// read properties
uint16_t size, r = 0;
2016-02-02 19:55:38 +03:00
s.read ((char *)&size, sizeof (size)); if (!s) return;
2013-10-27 19:28:23 +04:00
size = be16toh (size);
while (r < size)
{
2018-01-06 06:48:51 +03:00
char key[255], value[255];
2016-08-15 20:12:56 +03:00
r += ReadString (key, 255, s);
2013-10-27 19:28:23 +04:00
s.seekg (1, std::ios_base::cur); r++; // =
2018-01-06 06:48:51 +03:00
r += ReadString (value, 255, s);
2013-10-27 19:28:23 +04:00
s.seekg (1, std::ios_base::cur); r++; // ;
2016-09-12 18:39:33 +03:00
if (!s) return;
2013-10-27 19:28:23 +04:00
m_Properties[key] = value;
2018-01-06 06:48:51 +03:00
// extract caps
2014-03-20 01:27:37 +04:00
if (!strcmp (key, "caps"))
2014-03-19 20:02:51 +04:00
ExtractCaps (value);
2016-01-16 23:36:30 +03:00
// check netId
2016-10-12 18:26:48 +03:00
else if (!strcmp (key, ROUTER_INFO_PROPERTY_NETID) && atoi (value) != i2p::context.GetNetID ())
2016-01-16 23:36:30 +03:00
{
2016-09-12 18:39:33 +03:00
LogPrint (eLogError, "RouterInfo: Unexpected ", ROUTER_INFO_PROPERTY_NETID, "=", value);
2018-01-06 06:48:51 +03:00
m_IsUnreachable = true;
}
// family
2016-02-21 04:20:19 +03:00
else if (!strcmp (key, ROUTER_INFO_PROPERTY_FAMILY))
{
m_Family = value;
boost::to_lower (m_Family);
}
2016-02-21 04:20:19 +03:00
else if (!strcmp (key, ROUTER_INFO_PROPERTY_FAMILY_SIG))
{
if (!netdb.GetFamilies ().VerifyFamily (m_Family, GetIdentHash (), value))
{
LogPrint (eLogWarning, "RouterInfo: family signature verification failed");
m_Family.clear ();
}
2018-01-06 06:48:51 +03:00
}
2016-02-02 19:55:38 +03:00
if (!s) return;
2018-01-06 06:48:51 +03:00
}
2016-07-13 19:56:23 +03:00
if (!m_SupportedTransports || !m_Addresses->size() || (UsesIntroducer () && !introducers))
SetUnreachable (true);
2016-06-17 18:03:33 +03:00
}
bool RouterInfo::IsFamily(const std::string & fam) const {
return m_Family == fam;
}
2013-12-29 19:48:57 +04:00
2014-03-19 20:02:51 +04:00
void RouterInfo::ExtractCaps (const char * value)
{
const char * cap = value;
while (*cap)
{
switch (*cap)
{
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_FLOODFILL:
2014-03-19 20:02:51 +04:00
m_Caps |= Caps::eFloodfill;
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_HIGH_BANDWIDTH1:
case CAPS_FLAG_HIGH_BANDWIDTH2:
case CAPS_FLAG_HIGH_BANDWIDTH3:
2014-03-19 23:58:57 +04:00
m_Caps |= Caps::eHighBandwidth;
2014-03-19 20:02:51 +04:00
break;
2016-01-03 06:17:04 +03:00
case CAPS_FLAG_EXTRA_BANDWIDTH1:
case CAPS_FLAG_EXTRA_BANDWIDTH2:
m_Caps |= Caps::eExtraBandwidth;
2018-01-06 06:48:51 +03:00
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_HIDDEN:
m_Caps |= Caps::eHidden;
2018-01-06 06:48:51 +03:00
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_REACHABLE:
2014-03-19 20:02:51 +04:00
m_Caps |= Caps::eReachable;
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_UNREACHABLE:
m_Caps |= Caps::eUnreachable;
2018-01-06 06:48:51 +03:00
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_SSU_TESTING:
2014-04-09 05:56:34 +04:00
m_Caps |= Caps::eSSUTesting;
2018-01-06 06:48:51 +03:00
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_SSU_INTRODUCER:
2014-04-09 05:56:34 +04:00
m_Caps |= Caps::eSSUIntroducer;
2018-01-06 06:48:51 +03:00
break;
2014-03-19 20:02:51 +04:00
default: ;
2018-01-06 06:48:51 +03:00
}
2014-03-19 20:02:51 +04:00
cap++;
}
}
2014-09-03 00:11:31 +04:00
void RouterInfo::UpdateCapsProperty ()
2018-01-06 06:48:51 +03:00
{
2014-09-03 00:11:31 +04:00
std::string caps;
2018-01-06 06:48:51 +03:00
if (m_Caps & eFloodfill)
2016-08-15 00:52:11 +03:00
{
2017-01-26 00:14:01 +03:00
if (m_Caps & eExtraBandwidth) caps += (m_Caps & eHighBandwidth) ?
CAPS_FLAG_EXTRA_BANDWIDTH2 : // 'X'
CAPS_FLAG_EXTRA_BANDWIDTH1; // 'P'
caps += CAPS_FLAG_HIGH_BANDWIDTH3; // 'O'
2018-01-06 06:48:51 +03:00
caps += CAPS_FLAG_FLOODFILL; // floodfill
}
else
2016-08-15 00:52:11 +03:00
{
2018-01-06 06:48:51 +03:00
if (m_Caps & eExtraBandwidth)
{
2017-01-26 00:14:01 +03:00
caps += (m_Caps & eHighBandwidth) ? CAPS_FLAG_EXTRA_BANDWIDTH2 /* 'X' */ : CAPS_FLAG_EXTRA_BANDWIDTH1; /*'P' */
caps += CAPS_FLAG_HIGH_BANDWIDTH3; // 'O'
}
2018-01-06 06:48:51 +03:00
else
caps += (m_Caps & eHighBandwidth) ? CAPS_FLAG_HIGH_BANDWIDTH3 /* 'O' */: CAPS_FLAG_LOW_BANDWIDTH2 /* 'L' */; // bandwidth
}
2014-09-03 00:11:31 +04:00
if (m_Caps & eHidden) caps += CAPS_FLAG_HIDDEN; // hidden
if (m_Caps & eReachable) caps += CAPS_FLAG_REACHABLE; // reachable
if (m_Caps & eUnreachable) caps += CAPS_FLAG_UNREACHABLE; // unreachable
2016-06-01 03:00:00 +03:00
SetProperty ("caps", caps);
2014-09-03 00:11:31 +04:00
}
2018-01-06 06:48:51 +03:00
2016-08-08 00:52:18 +03:00
void RouterInfo::WriteToStream (std::ostream& s) const
2013-10-27 19:28:23 +04:00
{
uint64_t ts = htobe64 (m_Timestamp);
2016-08-08 00:52:18 +03:00
s.write ((const char *)&ts, sizeof (ts));
2013-10-27 19:28:23 +04:00
// addresses
2016-07-13 19:56:23 +03:00
uint8_t numAddresses = m_Addresses->size ();
2013-10-27 19:28:23 +04:00
s.write ((char *)&numAddresses, sizeof (numAddresses));
2016-08-08 00:52:18 +03:00
for (const auto& addr_ptr : *m_Addresses)
2013-10-27 19:28:23 +04:00
{
2016-08-08 00:52:18 +03:00
const Address& address = *addr_ptr;
s.write ((const char *)&address.cost, sizeof (address.cost));
s.write ((const char *)&address.date, sizeof (address.date));
2014-02-23 20:48:09 +04:00
std::stringstream properties;
2013-10-27 19:28:23 +04:00
if (address.transportStyle == eTransportNTCP)
2018-06-15 19:52:43 +03:00
WriteString (address.IsNTCP2 () ? "NTCP2" : "NTCP", s);
2013-10-27 19:28:23 +04:00
else if (address.transportStyle == eTransportSSU)
2018-01-06 06:48:51 +03:00
{
2013-10-27 19:28:23 +04:00
WriteString ("SSU", s);
2014-02-24 05:48:28 +04:00
// caps
WriteString ("caps", properties);
2014-02-23 20:48:09 +04:00
properties << '=';
2014-04-09 05:56:34 +04:00
std::string caps;
2014-09-03 00:11:31 +04:00
if (IsPeerTesting ()) caps += CAPS_FLAG_SSU_TESTING;
if (IsIntroducer ()) caps += CAPS_FLAG_SSU_INTRODUCER;
2014-04-09 05:56:34 +04:00
WriteString (caps, properties);
2014-02-23 20:48:09 +04:00
properties << ';';
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
else
WriteString ("", s);
2018-07-23 20:51:29 +03:00
if (!address.IsNTCP2 () || address.IsPublishedNTCP2 ())
2018-06-15 19:52:43 +03:00
{
WriteString ("host", properties);
properties << '=';
WriteString (address.host.to_string (), properties);
properties << ';';
}
2014-02-24 05:48:28 +04:00
if (address.transportStyle == eTransportSSU)
{
2014-09-02 01:34:20 +04:00
// write introducers if any
if (address.ssu->introducers.size () > 0)
2018-01-06 06:48:51 +03:00
{
2014-09-02 01:34:20 +04:00
int i = 0;
for (const auto& introducer: address.ssu->introducers)
2014-09-02 01:34:20 +04:00
{
WriteString ("ihost" + boost::lexical_cast<std::string>(i), properties);
properties << '=';
WriteString (introducer.iHost.to_string (), properties);
properties << ';';
i++;
2018-01-06 06:48:51 +03:00
}
2014-09-02 01:34:20 +04:00
i = 0;
for (const auto& introducer: address.ssu->introducers)
2014-09-02 01:34:20 +04:00
{
WriteString ("ikey" + boost::lexical_cast<std::string>(i), properties);
properties << '=';
char value[64];
size_t l = ByteStreamToBase64 (introducer.iKey, 32, value, 64);
value[l] = 0;
WriteString (value, properties);
properties << ';';
i++;
2018-01-06 06:48:51 +03:00
}
2014-09-02 01:34:20 +04:00
i = 0;
for (const auto& introducer: address.ssu->introducers)
2014-09-02 01:34:20 +04:00
{
WriteString ("iport" + boost::lexical_cast<std::string>(i), properties);
properties << '=';
WriteString (boost::lexical_cast<std::string>(introducer.iPort), properties);
properties << ';';
i++;
2018-01-06 06:48:51 +03:00
}
2014-09-02 01:34:20 +04:00
i = 0;
for (const auto& introducer: address.ssu->introducers)
2014-09-02 01:34:20 +04:00
{
WriteString ("itag" + boost::lexical_cast<std::string>(i), properties);
properties << '=';
WriteString (boost::lexical_cast<std::string>(introducer.iTag), properties);
properties << ';';
i++;
2018-01-06 06:48:51 +03:00
}
2017-05-24 19:49:36 +03:00
i = 0;
for (const auto& introducer: address.ssu->introducers)
{
if (introducer.iExp) // expiration is specified
{
WriteString ("iexp" + boost::lexical_cast<std::string>(i), properties);
properties << '=';
WriteString (boost::lexical_cast<std::string>(introducer.iExp), properties);
properties << ';';
}
i++;
2018-01-06 06:48:51 +03:00
}
}
2014-09-02 01:34:20 +04:00
// write intro key
2014-02-24 05:48:28 +04:00
WriteString ("key", properties);
properties << '=';
char value[64];
size_t l = ByteStreamToBase64 (address.ssu->key, 32, value, 64);
2014-02-24 05:48:28 +04:00
value[l] = 0;
WriteString (value, properties);
properties << ';';
2014-10-30 17:07:39 +03:00
// write mtu
if (address.ssu->mtu)
2014-10-30 17:07:39 +03:00
{
WriteString ("mtu", properties);
properties << '=';
WriteString (boost::lexical_cast<std::string>(address.ssu->mtu), properties);
2014-10-30 17:07:39 +03:00
properties << ';';
2018-01-06 06:48:51 +03:00
}
}
2018-06-15 19:52:43 +03:00
2018-08-01 19:28:34 +03:00
if (address.IsPublishedNTCP2 ())
{
// publish i for NTCP2
WriteString ("i", properties); properties << '=';
WriteString (address.ntcp2->iv.ToBase64 (), properties); properties << ';';
}
2018-07-23 20:51:29 +03:00
if (!address.IsNTCP2 () || address.IsPublishedNTCP2 ())
2018-06-15 19:52:43 +03:00
{
WriteString ("port", properties);
properties << '=';
WriteString (boost::lexical_cast<std::string>(address.port), properties);
properties << ';';
}
if (address.IsNTCP2 ())
{
// publish s and v for NTCP2
WriteString ("s", properties); properties << '=';
WriteString (address.ntcp2->staticKey.ToBase64 (), properties); properties << ';';
WriteString ("v", properties); properties << '=';
WriteString ("2", properties); properties << ';';
}
2018-01-06 06:48:51 +03:00
2013-10-27 19:28:23 +04:00
uint16_t size = htobe16 (properties.str ().size ());
s.write ((char *)&size, sizeof (size));
s.write (properties.str ().c_str (), properties.str ().size ());
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
// peers
uint8_t numPeers = 0;
s.write ((char *)&numPeers, sizeof (numPeers));
// properties
std::stringstream properties;
2016-08-08 00:52:18 +03:00
for (const auto& p : m_Properties)
2013-10-27 19:28:23 +04:00
{
WriteString (p.first, properties);
properties << '=';
WriteString (p.second, properties);
properties << ';';
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
uint16_t size = htobe16 (properties.str ().size ());
s.write ((char *)&size, sizeof (size));
s.write (properties.str ().c_str (), properties.str ().size ());
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
2016-02-17 23:36:55 +03:00
bool RouterInfo::IsNewer (const uint8_t * buf, size_t len) const
{
if (!m_RouterIdentity) return false;
size_t size = m_RouterIdentity->GetFullLen ();
if (size + 8 > len) return false;
2018-01-06 06:48:51 +03:00
return bufbe64toh (buf + size) > m_Timestamp;
2016-02-17 23:36:55 +03:00
}
const uint8_t * RouterInfo::LoadBuffer ()
2014-07-23 18:56:41 +04:00
{
if (!m_Buffer)
{
if (LoadFile ())
2015-12-18 17:07:50 +03:00
LogPrint (eLogDebug, "RouterInfo: Buffer for ", GetIdentHashAbbreviation (GetIdentHash ()), " loaded from file");
2018-01-06 06:48:51 +03:00
}
return m_Buffer;
2014-07-23 18:56:41 +04:00
}
2014-08-26 06:47:12 +04:00
void RouterInfo::CreateBuffer (const PrivateKeys& privateKeys)
2013-10-27 19:28:23 +04:00
{
2013-11-20 16:46:09 +04:00
m_Timestamp = i2p::util::GetMillisecondsSinceEpoch (); // refresh timstamp
2013-10-27 19:28:23 +04:00
std::stringstream s;
uint8_t ident[1024];
2015-11-03 17:15:49 +03:00
auto identLen = privateKeys.GetPublic ()->ToBuffer (ident, 1024);
2018-01-06 06:48:51 +03:00
s.write ((char *)ident, identLen);
2013-10-27 19:28:23 +04:00
WriteToStream (s);
m_BufferLen = s.str ().size ();
2014-07-22 16:03:02 +04:00
if (!m_Buffer)
m_Buffer = new uint8_t[MAX_RI_BUFFER_SIZE];
2013-10-27 19:28:23 +04:00
memcpy (m_Buffer, s.str ().c_str (), m_BufferLen);
// signature
2014-08-26 06:47:12 +04:00
privateKeys.Sign ((uint8_t *)m_Buffer, m_BufferLen, (uint8_t *)m_Buffer + m_BufferLen);
2015-11-03 17:15:49 +03:00
m_BufferLen += privateKeys.GetPublic ()->GetSignatureLen ();
2018-01-06 06:48:51 +03:00
}
2014-07-10 23:33:42 +04:00
bool RouterInfo::SaveToFile (const std::string& fullPath)
2014-07-10 23:33:42 +04:00
{
2014-07-23 18:56:41 +04:00
m_FullPath = fullPath;
if (!m_Buffer) {
2015-12-18 17:07:50 +03:00
LogPrint (eLogError, "RouterInfo: Can't save, m_Buffer == NULL");
return false;
}
std::ofstream f (fullPath, std::ofstream::binary | std::ofstream::out);
if (!f.is_open ()) {
LogPrint(eLogError, "RouterInfo: Can't save to ", fullPath);
return false;
}
f.write ((char *)m_Buffer, m_BufferLen);
return true;
2014-07-10 23:33:42 +04:00
}
2018-01-06 06:48:51 +03:00
2016-08-15 20:12:56 +03:00
size_t RouterInfo::ReadString (char * str, size_t len, std::istream& s) const
2013-10-27 19:28:23 +04:00
{
2016-08-15 20:12:56 +03:00
uint8_t l;
s.read ((char *)&l, 1);
if (l < len)
2018-01-06 06:48:51 +03:00
{
2016-08-15 20:12:56 +03:00
s.read (str, l);
2016-09-12 18:39:33 +03:00
if (!s) l = 0; // failed, return empty string
2016-08-15 20:12:56 +03:00
str[l] = 0;
}
else
{
LogPrint (eLogWarning, "RouterInfo: string length ", (int)l, " exceeds buffer size ", len);
s.seekg (l, std::ios::cur); // skip
str[0] = 0;
2018-01-06 06:48:51 +03:00
}
2016-08-15 20:12:56 +03:00
return l+1;
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
2016-08-15 20:12:56 +03:00
void RouterInfo::WriteString (const std::string& str, std::ostream& s) const
2013-10-27 19:28:23 +04:00
{
uint8_t len = str.size ();
s.write ((char *)&len, 1);
s.write (str.c_str (), len);
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
void RouterInfo::AddNTCPAddress (const char * host, int port)
{
2016-03-21 20:02:51 +03:00
auto addr = std::make_shared<Address>();
addr->host = boost::asio::ip::address::from_string (host);
addr->port = port;
addr->transportStyle = eTransportNTCP;
addr->cost = 2;
addr->date = 0;
2016-08-08 00:52:18 +03:00
for (const auto& it: *m_Addresses) // don't insert same address twice
2016-03-22 14:30:16 +03:00
if (*it == *addr) return;
2016-03-21 20:02:51 +03:00
m_SupportedTransports |= addr->host.is_v6 () ? eNTCPV6 : eNTCPV4;
2018-08-04 03:28:29 +03:00
m_Addresses->push_front(std::move(addr)); // always make NTCP first
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
2014-10-30 17:07:39 +03:00
void RouterInfo::AddSSUAddress (const char * host, int port, const uint8_t * key, int mtu)
2014-02-23 20:48:09 +04:00
{
2016-03-21 20:02:51 +03:00
auto addr = std::make_shared<Address>();
addr->host = boost::asio::ip::address::from_string (host);
addr->port = port;
addr->transportStyle = eTransportSSU;
addr->cost = 10; // NTCP should have priority over SSU
addr->date = 0;
addr->ssu.reset (new SSUExt ());
2018-01-06 06:48:51 +03:00
addr->ssu->mtu = mtu;
memcpy (addr->ssu->key, key, 32);
2016-08-08 00:52:18 +03:00
for (const auto& it: *m_Addresses) // don't insert same address twice
2016-03-22 14:30:16 +03:00
if (*it == *addr) return;
2016-03-21 20:02:51 +03:00
m_SupportedTransports |= addr->host.is_v6 () ? eSSUV6 : eSSUV4;
2016-08-08 00:52:18 +03:00
m_Addresses->push_back(std::move(addr));
m_Caps |= eSSUTesting;
m_Caps |= eSSUIntroducer;
2018-01-06 06:48:51 +03:00
}
2014-09-02 01:34:20 +04:00
2018-06-15 19:52:43 +03:00
void RouterInfo::AddNTCP2Address (const uint8_t * staticKey, const uint8_t * iv)
{
for (const auto& it: *m_Addresses) // don't insert one more NTCP2
if (it->ntcp2) return;
auto addr = std::make_shared<Address>();
addr->port = 0;
addr->transportStyle = eTransportNTCP;
addr->cost = 14;
addr->date = 0;
addr->ntcp2.reset (new NTCP2Ext ());
memcpy (addr->ntcp2->staticKey, staticKey, 32);
2018-06-15 21:56:03 +03:00
memcpy (addr->ntcp2->iv, iv, 16);
2018-06-15 19:52:43 +03:00
m_Addresses->push_back(std::move(addr));
}
2015-11-03 17:15:49 +03:00
bool RouterInfo::AddIntroducer (const Introducer& introducer)
2014-09-02 01:34:20 +04:00
{
2016-08-08 00:52:18 +03:00
for (auto& addr : *m_Addresses)
2014-09-02 01:34:20 +04:00
{
2016-03-21 20:02:51 +03:00
if (addr->transportStyle == eTransportSSU && addr->host.is_v4 ())
2018-01-06 06:48:51 +03:00
{
for (auto& intro: addr->ssu->introducers)
2015-11-03 17:15:49 +03:00
if (intro.iTag == introducer.iTag) return false; // already presented
addr->ssu->introducers.push_back (introducer);
2014-09-02 01:34:20 +04:00
return true;
2018-01-06 06:48:51 +03:00
}
}
2014-09-02 01:34:20 +04:00
return false;
2018-01-06 06:48:51 +03:00
}
2014-09-02 01:34:20 +04:00
2014-09-07 04:43:20 +04:00
bool RouterInfo::RemoveIntroducer (const boost::asio::ip::udp::endpoint& e)
2018-01-06 06:48:51 +03:00
{
2016-08-08 00:52:18 +03:00
for (auto& addr: *m_Addresses)
2014-09-02 01:34:20 +04:00
{
2016-03-21 20:02:51 +03:00
if (addr->transportStyle == eTransportSSU && addr->host.is_v4 ())
2018-01-06 06:48:51 +03:00
{
for (auto it = addr->ssu->introducers.begin (); it != addr->ssu->introducers.end (); ++it)
2018-01-06 06:48:51 +03:00
if ( boost::asio::ip::udp::endpoint (it->iHost, it->iPort) == e)
2014-09-02 01:34:20 +04:00
{
addr->ssu->introducers.erase (it);
2014-09-02 01:34:20 +04:00
return true;
2016-08-08 00:52:18 +03:00
}
2018-01-06 06:48:51 +03:00
}
}
2014-09-02 01:34:20 +04:00
return false;
}
2014-09-03 00:11:31 +04:00
void RouterInfo::SetCaps (uint8_t caps)
{
m_Caps = caps;
UpdateCapsProperty ();
}
2018-01-06 06:48:51 +03:00
2014-09-02 01:34:20 +04:00
void RouterInfo::SetCaps (const char * caps)
{
SetProperty ("caps", caps);
m_Caps = 0;
ExtractCaps (caps);
2018-01-06 06:48:51 +03:00
}
void RouterInfo::SetProperty (const std::string& key, const std::string& value)
2013-10-27 19:28:23 +04:00
{
m_Properties[key] = value;
2018-01-06 06:48:51 +03:00
}
2013-10-27 19:28:23 +04:00
void RouterInfo::DeleteProperty (const std::string& key)
{
m_Properties.erase (key);
}
2018-01-06 06:48:51 +03:00
std::string RouterInfo::GetProperty (const std::string& key) const
{
auto it = m_Properties.find (key);
if (it != m_Properties.end ())
return it->second;
return "";
2018-01-06 06:48:51 +03:00
}
2014-01-22 04:14:30 +04:00
bool RouterInfo::IsNTCP (bool v4only) const
2013-10-27 19:28:23 +04:00
{
if (v4only)
return m_SupportedTransports & eNTCPV4;
else
return m_SupportedTransports & (eNTCPV4 | eNTCPV6);
2018-01-06 06:48:51 +03:00
}
2014-02-09 06:06:40 +04:00
bool RouterInfo::IsSSU (bool v4only) const
{
if (v4only)
return m_SupportedTransports & eSSUV4;
else
return m_SupportedTransports & (eSSUV4 | eSSUV6);
}
2014-02-22 01:13:36 +04:00
2018-06-06 18:51:34 +03:00
bool RouterInfo::IsNTCP2 (bool v4only) const
{
if (v4only)
return m_SupportedTransports & eNTCP2V4;
else
return m_SupportedTransports & (eNTCP2V4 | eNTCP2V6);
}
bool RouterInfo::IsV6 () const
{
return m_SupportedTransports & (eNTCPV6 | eSSUV6);
}
2016-03-25 01:44:41 +03:00
bool RouterInfo::IsV4 () const
{
2018-06-06 18:51:34 +03:00
return m_SupportedTransports & (eNTCPV4 | eSSUV4 | eNTCP2V4);
2016-03-25 01:44:41 +03:00
}
2018-01-06 06:48:51 +03:00
void RouterInfo::EnableV6 ()
{
if (!IsV6 ())
2018-06-06 18:51:34 +03:00
m_SupportedTransports |= eNTCPV6 | eSSUV6 | eNTCP2V6;
}
2016-03-25 01:44:41 +03:00
void RouterInfo::EnableV4 ()
{
if (!IsV4 ())
2018-06-06 18:51:34 +03:00
m_SupportedTransports |= eNTCPV4 | eSSUV4 | eNTCP2V4;
2016-03-25 01:44:41 +03:00
}
2018-01-06 06:48:51 +03:00
void RouterInfo::DisableV6 ()
2018-01-06 06:48:51 +03:00
{
if (IsV6 ())
2018-01-06 06:48:51 +03:00
{
2018-06-06 18:51:34 +03:00
m_SupportedTransports &= ~(eNTCPV6 | eSSUV6 | eNTCP2V6);
2016-07-14 21:10:38 +03:00
for (auto it = m_Addresses->begin (); it != m_Addresses->end ();)
{
2016-07-14 21:10:38 +03:00
auto addr = *it;
if (addr->host.is_v6 ())
it = m_Addresses->erase (it);
else
2016-08-08 00:52:18 +03:00
++it;
2018-01-06 06:48:51 +03:00
}
}
}
2016-03-25 01:44:41 +03:00
void RouterInfo::DisableV4 ()
2018-01-06 06:48:51 +03:00
{
2016-03-25 01:44:41 +03:00
if (IsV4 ())
2018-01-06 06:48:51 +03:00
{
2018-06-06 18:51:34 +03:00
m_SupportedTransports &= ~(eNTCPV4 | eSSUV4 | eNTCP2V4);
2016-07-14 21:10:38 +03:00
for (auto it = m_Addresses->begin (); it != m_Addresses->end ();)
2016-03-25 01:44:41 +03:00
{
2016-07-14 21:10:38 +03:00
auto addr = *it;
if (addr->host.is_v4 ())
it = m_Addresses->erase (it);
else
2016-08-08 00:52:18 +03:00
++it;
2018-01-06 06:48:51 +03:00
}
}
2016-03-25 01:44:41 +03:00
}
2018-01-06 06:48:51 +03:00
2014-02-22 01:13:36 +04:00
bool RouterInfo::UsesIntroducer () const
{
2014-08-19 19:01:11 +04:00
return m_Caps & Caps::eUnreachable; // non-reachable
2018-01-06 06:48:51 +03:00
}
2016-03-21 20:02:51 +03:00
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetNTCPAddress (bool v4only) const
2014-01-28 04:48:46 +04:00
{
return GetAddress (eTransportNTCP, v4only);
2018-01-06 06:48:51 +03:00
}
2014-01-28 04:48:46 +04:00
2018-01-06 06:48:51 +03:00
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetSSUAddress (bool v4only) const
2014-01-28 04:48:46 +04:00
{
return GetAddress (eTransportSSU, v4only);
2018-01-06 06:48:51 +03:00
}
2014-01-28 04:48:46 +04:00
2018-01-06 06:48:51 +03:00
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetSSUV6Address () const
{
return GetAddress (eTransportSSU, false, true);
2018-01-06 06:48:51 +03:00
}
2016-03-21 20:02:51 +03:00
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetAddress (TransportStyle s, bool v4only, bool v6only) const
2013-10-27 19:28:23 +04:00
{
2018-07-31 22:41:13 +03:00
// TODO: make it more gereric using comparator
2016-10-01 22:05:35 +03:00
#if (BOOST_VERSION >= 105300)
auto addresses = boost::atomic_load (&m_Addresses);
2018-01-06 06:48:51 +03:00
#else
2016-08-10 03:51:54 +03:00
auto addresses = m_Addresses;
2018-01-06 06:48:51 +03:00
#endif
2016-08-10 03:51:54 +03:00
for (const auto& address : *addresses)
2013-10-27 19:28:23 +04:00
{
2016-03-21 20:02:51 +03:00
if (address->transportStyle == s)
2018-01-06 06:48:51 +03:00
{
2016-03-21 20:02:51 +03:00
if ((!v4only || address->host.is_v4 ()) && (!v6only || address->host.is_v6 ()))
return address;
2018-01-06 06:48:51 +03:00
}
}
2013-10-27 19:28:23 +04:00
return nullptr;
2018-01-06 06:48:51 +03:00
}
2018-07-31 22:41:13 +03:00
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetNTCP2Address (bool v4only) const
{
// TODO: implement through GetAddress
#if (BOOST_VERSION >= 105300)
auto addresses = boost::atomic_load (&m_Addresses);
#else
auto addresses = m_Addresses;
#endif
for (const auto& address : *addresses)
{
if (address->IsPublishedNTCP2 ())
{
if (!v4only || address->host.is_v4 ())
return address;
}
}
return nullptr;
}
2018-01-06 06:48:51 +03:00
std::shared_ptr<RouterProfile> RouterInfo::GetProfile () const
{
if (!m_Profile)
m_Profile = GetRouterProfile (GetIdentHash ());
return m_Profile;
2018-01-06 06:48:51 +03:00
}
void RouterInfo::Encrypt (const uint8_t * data, uint8_t * encrypted, BN_CTX * ctx) const
{
auto encryptor = m_RouterIdentity->CreateEncryptor (nullptr);
if (encryptor)
encryptor->Encrypt (data, encrypted, ctx, true);
}
2013-10-27 19:28:23 +04:00
}
}