i2pd/libi2pd/RouterInfo.cpp

1257 lines
34 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2013-2021, 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-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"
2021-01-31 02:32:17 +03:00
#include "util.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):
m_Buffer (nullptr), m_IsUpdated (false), m_IsUnreachable (false),
m_SupportedTransports (0),m_ReachableTransports (0), m_Caps (0), m_Version (0)
2013-10-27 19:28:23 +04:00
{
m_Addresses = boost::make_shared<Addresses>(); // create empty list
2021-10-07 22:08:33 +03:00
ReadFromFile (fullPath);
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):
m_IsUpdated (true), m_IsUnreachable (false), m_SupportedTransports (0),
2021-06-02 19:55:08 +03:00
m_ReachableTransports (0), m_Caps (0), m_Version (0)
2013-10-27 19:28:23 +04:00
{
m_Addresses = boost::make_shared<Addresses>(); // create empty list
if (len <= MAX_RI_BUFFER_SIZE)
{
m_Buffer = new uint8_t[len];
memcpy (m_Buffer, buf, len);
m_BufferLen = len;
ReadFromBuffer (true);
}
else
{
LogPrint (eLogError, "RouterInfo: Buffer is too long ", len, ". Ignored");
m_Buffer = nullptr;
m_IsUnreachable = 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
}
void RouterInfo::Update (const uint8_t * buf, size_t len)
2014-07-22 04:14:11 +04:00
{
2019-05-23 18:49:54 +03:00
if (len > MAX_RI_BUFFER_SIZE)
{
LogPrint (eLogError, "RouterInfo: Buffer is too long ", len);
m_IsUnreachable = true;
return;
}
2019-04-08 22:22:42 +03:00
// verify signature since we have identity already
2015-11-03 17:15:49 +03:00
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;
2021-06-02 19:55:08 +03:00
m_ReachableTransports = 0;
2015-11-03 17:15:49 +03:00
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
if (m_Buffer && m_BufferLen < len)
{
delete[] m_Buffer;
m_Buffer = nullptr;
}
2018-01-06 06:48:51 +03:00
if (!m_Buffer)
m_Buffer = new uint8_t[len];
2015-11-03 17:15:49 +03:00
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
{
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
2021-10-07 22:08:33 +03:00
bool RouterInfo::LoadFile (const std::string& fullPath)
2013-10-27 19:28:23 +04:00
{
2021-10-07 22:08:33 +03:00
std::ifstream s(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
{
2021-10-07 22:08:33 +03:00
LogPrint(eLogError, "RouterInfo: File", 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);
if (m_Buffer) delete[] m_Buffer;
m_Buffer = new uint8_t[m_BufferLen];
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
{
2021-10-07 22:08:33 +03:00
LogPrint (eLogError, "RouterInfo: Can't open file ", 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
2021-10-07 22:08:33 +03:00
void RouterInfo::ReadFromFile (const std::string& fullPath)
2014-07-23 18:56:41 +04:00
{
2021-10-07 22:08:33 +03:00
if (LoadFile (fullPath))
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
{
if (!m_Buffer)
{
m_IsUnreachable = true;
return;
}
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);
2016-02-02 19:55:38 +03:00
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
{
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");
2016-09-13 04:37:43 +03:00
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)
{
2021-10-12 20:28:16 +03:00
if (!s) return;
2021-02-23 06:53:25 +03:00
m_Caps = 0;
2013-10-27 19:28:23 +04:00
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;
s.read ((char *)&numAddresses, sizeof (numAddresses));
2021-10-10 16:53:21 +03:00
addresses->reserve (numAddresses);
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>();
2021-04-07 20:05:38 +03:00
uint8_t cost; // ignore
s.read ((char *)&cost, sizeof (cost));
2016-12-14 21:54:16 +03:00
s.read ((char *)&address->date, sizeof (address->date));
bool isHost = false, isIntroKey = false, isStaticKey = false;
char transportStyle[6];
ReadString (transportStyle, 6, s);
2018-06-15 19:52:43 +03:00
if (!strncmp (transportStyle, "NTCP", 4)) // NTCP or NTCP2
{
2016-12-14 21:54:16 +03:00
address->transportStyle = eTransportNTCP;
address->ntcp2.reset (new NTCP2Ext ());
}
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;
2021-02-23 05:04:26 +03:00
address->caps = 0;
2016-12-14 21:54:16 +03:00
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);
if (!ecode && !address->host.is_unspecified ()) isHost = true;
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)
isIntroKey = (Base64ToByteStream (value, strlen (value), address->ssu->key, 32) == 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"))
2021-02-23 06:53:25 +03:00
address->caps = ExtractAddressCaps (value);
2018-06-06 18:51:34 +03:00
else if (!strcmp (key, "s")) // ntcp2 static key
{
Base64ToByteStream (value, strlen (value), address->ntcp2->staticKey, 32);
isStaticKey = true;
}
2018-06-06 18:51:34 +03:00
else if (!strcmp (key, "i")) // ntcp2 iv
{
Base64ToByteStream (value, strlen (value), address->ntcp2->iv, 16);
2021-04-06 04:45:48 +03:00
address->published = true; // presence if "i" means "published"
}
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
2019-05-11 14:27:34 +03:00
if (!address->ssu)
{
LogPrint (eLogError, "RouterInfo: Introducer is presented for non-SSU address. Skipped");
continue;
}
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 ())
{
2021-10-12 20:28:16 +03:00
if (address->ssu->introducers.empty ()) // first time
address->ssu->introducers.reserve (3);
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 (address->transportStyle == eTransportNTCP)
{
2021-01-31 02:32:17 +03:00
if (isStaticKey)
{
2021-01-31 02:32:17 +03:00
if (isHost)
{
if (address->host.is_v6 ())
2021-06-02 19:55:08 +03:00
supportedTransports |= (i2p::util::net::IsYggdrasilAddress (address->host) ? eNTCP2V6Mesh : eNTCP2V6);
2021-01-31 02:32:17 +03:00
else
supportedTransports |= eNTCP2V4;
2021-06-02 19:55:08 +03:00
m_ReachableTransports |= supportedTransports;
}
2021-04-06 04:45:48 +03:00
else if (!address->published)
{
if (address->caps)
{
2021-03-06 05:53:19 +03:00
if (address->caps & AddressCaps::eV4) supportedTransports |= eNTCP2V4;
if (address->caps & AddressCaps::eV6) supportedTransports |= eNTCP2V6;
}
else
supportedTransports |= eNTCP2V4; // most likely, since we don't have host
}
2021-01-31 02:32:17 +03:00
}
}
else if (address->transportStyle == eTransportSSU)
{
if (isIntroKey)
{
if (isHost)
supportedTransports |= address->host.is_v4 () ? eSSUV4 : eSSUV6;
else if (address->caps & AddressCaps::eV6)
{
2021-03-05 06:47:56 +03:00
supportedTransports |= eSSUV6;
2021-03-06 05:53:19 +03:00
if (address->caps & AddressCaps::eV4) supportedTransports |= eSSUV4; // in additional to v6
}
else
2021-03-05 06:47:56 +03:00
supportedTransports |= eSSUV4; // in case if host or 6 caps is not preasented, we assume 4
2021-04-04 17:36:22 +03:00
if (address->ssu && !address->ssu->introducers.empty ())
{
// exclude invalid introducers
uint32_t ts = i2p::util::GetSecondsSinceEpoch ();
int numValid = 0;
for (auto& it: address->ssu->introducers)
{
if (!it.iExp) it.iExp = m_Timestamp/1000 + NETDB_INTRODUCEE_EXPIRATION_TIMEOUT;
if (ts <= it.iExp && it.iPort > 0 &&
((it.iHost.is_v4 () && address->IsV4 ()) || (it.iHost.is_v6 () && address->IsV6 ())))
2021-04-04 17:36:22 +03:00
numValid++;
else
it.iPort = 0;
}
2021-06-02 19:55:08 +03:00
if (numValid)
m_ReachableTransports |= supportedTransports;
else
2021-06-02 19:55:08 +03:00
address->ssu->introducers.resize (0);
}
2021-04-06 04:45:48 +03:00
else if (isHost && address->port)
{
2021-04-06 04:45:48 +03:00
address->published = true;
2021-06-02 19:55:08 +03:00
m_ReachableTransports |= supportedTransports;
}
}
}
if (supportedTransports)
{
if (!(m_SupportedTransports & supportedTransports)) // avoid duplicates
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
m_Version = 0;
bool isNetId = false;
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)
{
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"))
2021-02-23 06:53:25 +03:00
ExtractCaps (value);
// extract version
else if (!strcmp (key, ROUTER_INFO_PROPERTY_VERSION))
{
m_Version = 0;
char * ch = value;
while (*ch)
{
if (*ch >= '0' && *ch <= '9')
{
m_Version *= 10;
m_Version += (*ch - '0');
}
ch++;
}
}
2016-01-16 23:36:30 +03:00
// check netId
else if (!strcmp (key, ROUTER_INFO_PROPERTY_NETID))
2016-01-16 23:36:30 +03:00
{
isNetId = true;
if (atoi (value) != i2p::context.GetNetID ())
{
LogPrint (eLogError, "RouterInfo: Unexpected ", ROUTER_INFO_PROPERTY_NETID, "=", value);
m_IsUnreachable = true;
}
2018-01-06 06:48:51 +03:00
}
// 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
}
if (!m_SupportedTransports || !isNetId || !m_Version)
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
2021-02-23 06:53:25 +03:00
void RouterInfo::ExtractCaps (const char * value)
2014-03-19 20:02:51 +04:00
{
const char * cap = value;
while (*cap)
{
switch (*cap)
{
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_FLOODFILL:
2021-02-23 06:53:25 +03:00
m_Caps |= Caps::eFloodfill;
2014-03-19 20:02:51 +04:00
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_HIGH_BANDWIDTH1:
case CAPS_FLAG_HIGH_BANDWIDTH2:
case CAPS_FLAG_HIGH_BANDWIDTH3:
2021-02-23 06:53:25 +03: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:
2021-02-23 06:53:25 +03:00
m_Caps |= Caps::eExtraBandwidth | Caps::eHighBandwidth;
2018-01-06 06:48:51 +03:00
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_HIDDEN:
2021-02-23 06:53:25 +03:00
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:
2021-02-23 06:53:25 +03:00
m_Caps |= Caps::eReachable;
2014-03-19 20:02:51 +04:00
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_UNREACHABLE:
2021-02-23 06:53:25 +03:00
m_Caps |= Caps::eUnreachable;
2018-01-06 06:48:51 +03:00
break;
2021-02-23 06:53:25 +03:00
default: ;
}
cap++;
}
}
uint8_t RouterInfo::ExtractAddressCaps (const char * value) const
{
uint8_t caps = 0;
const char * cap = value;
while (*cap)
{
switch (*cap)
{
case CAPS_FLAG_V4:
caps |= AddressCaps::eV4;
break;
2021-02-23 06:53:25 +03:00
case CAPS_FLAG_V6:
caps |= AddressCaps::eV6;
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_SSU_TESTING:
2021-02-23 06:53:25 +03:00
caps |= AddressCaps::eSSUTesting;
2018-01-06 06:48:51 +03:00
break;
2014-09-03 00:11:31 +04:00
case CAPS_FLAG_SSU_INTRODUCER:
2021-02-23 06:53:25 +03:00
caps |= AddressCaps::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++;
}
2021-02-23 05:04:26 +03:00
return caps;
2014-03-19 20:02:51 +04:00
}
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'
2018-09-30 23:08:26 +03:00
else
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' */
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;
2021-04-07 20:05:38 +03:00
// calculate cost
uint8_t cost = 0x7f;
if (address.transportStyle == eTransportNTCP)
cost = address.published ? COST_NTCP2_PUBLISHED : COST_NTCP2_NON_PUBLISHED;
else if (address.transportStyle == eTransportSSU)
cost = address.published ? COST_SSU_DIRECT : COST_SSU_THROUGH_INTRODUCERS;
s.write ((const char *)&cost, sizeof (cost));
2016-08-08 00:52:18 +03:00
s.write ((const char *)&address.date, sizeof (address.date));
2014-02-23 20:48:09 +04:00
std::stringstream properties;
bool isPublished = false;
2013-10-27 19:28:23 +04:00
if (address.transportStyle == eTransportNTCP)
2020-10-04 01:46:12 +03:00
{
if (address.IsNTCP2 ())
{
2020-10-04 01:46:12 +03:00
WriteString ("NTCP2", s);
2021-06-14 19:36:54 +03:00
if (address.IsPublishedNTCP2 () && !address.host.is_unspecified () && address.port)
isPublished = true;
else
{
WriteString ("caps", properties);
properties << '=';
std::string caps;
if (address.IsV4 ()) caps += CAPS_FLAG_V4;
if (address.IsV6 ()) caps += CAPS_FLAG_V6;
if (caps.empty ()) caps += CAPS_FLAG_V4;
WriteString (caps, properties);
properties << ';';
}
}
2020-10-04 01:46:12 +03:00
else
continue; // don't write NTCP address
}
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 << '=';
std::string caps;
if (address.IsPeerTesting ()) caps += CAPS_FLAG_SSU_TESTING;
if (address.host.is_v4 ())
{
2021-04-06 04:45:48 +03:00
if (address.published)
{
isPublished = true;
if (address.IsIntroducer ()) caps += CAPS_FLAG_SSU_INTRODUCER;
}
else
caps += CAPS_FLAG_V4;
}
else if (address.host.is_v6 ())
{
2021-04-06 04:45:48 +03:00
if (address.published)
{
2021-04-06 04:45:48 +03:00
isPublished = true;
if (address.IsIntroducer ()) caps += CAPS_FLAG_SSU_INTRODUCER;
}
2021-04-06 04:45:48 +03:00
else
caps += CAPS_FLAG_V6;
}
else
{
if (address.IsV4 ()) caps += CAPS_FLAG_V4;
if (address.IsV6 ()) caps += CAPS_FLAG_V6;
if (caps.empty ()) caps += CAPS_FLAG_V4;
}
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);
if (isPublished)
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.empty())
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)
2021-04-09 20:29:07 +03:00
{
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++;
}
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
}
}
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
if (address.IsNTCP2 () && isPublished)
2018-08-01 19:28:34 +03:00
{
// publish i for NTCP2
WriteString ("i", properties); properties << '=';
WriteString (address.ntcp2->iv.ToBase64 (), properties); properties << ';';
}
2021-02-24 05:15:17 +03:00
if (isPublished || address.ssu)
2018-06-15 19:52:43 +03:00
{
WriteString ("port", properties);
properties << '=';
WriteString (boost::lexical_cast<std::string>(address.port), properties);
properties << ';';
}
2018-06-15 19:52:43 +03:00
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
}
2021-10-07 22:08:33 +03:00
const uint8_t * RouterInfo::LoadBuffer (const std::string& fullPath)
2014-07-23 18:56:41 +04:00
{
if (!m_Buffer)
{
2021-10-07 22:08:33 +03:00
if (LoadFile (fullPath))
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);
auto signatureLen = privateKeys.GetPublic ()->GetSignatureLen ();
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];
if (m_BufferLen + signatureLen < MAX_RI_BUFFER_SIZE)
{
memcpy (m_Buffer, s.str ().c_str (), m_BufferLen);
// signature
privateKeys.Sign ((uint8_t *)m_Buffer, m_BufferLen, (uint8_t *)m_Buffer + m_BufferLen);
m_BufferLen += signatureLen;
}
else
LogPrint (eLogError, "RouterInfo: Our RouterInfo is too long ", m_BufferLen + signatureLen);
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
{
if (!m_Buffer)
2021-10-07 22:08:33 +03:00
{
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);
2016-08-15 20:12:56 +03:00
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
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;
2021-04-06 04:45:48 +03:00
addr->published = true;
2021-02-23 05:04:26 +03:00
addr->caps = i2p::data::RouterInfo::eSSUTesting | i2p::data::RouterInfo::eSSUIntroducer; // BC;
2016-03-21 20:02:51 +03:00
addr->date = 0;
addr->ssu.reset (new SSUExt ());
2018-01-06 06:48:51 +03:00
addr->ssu->mtu = mtu;
2020-11-22 02:44:40 +03:00
if (key)
memcpy (addr->ssu->key, key, 32);
else
RAND_bytes (addr->ssu->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;
m_ReachableTransports |= addr->host.is_v6 () ? eSSUV6 : eSSUV4;
2016-08-08 00:52:18 +03:00
m_Addresses->push_back(std::move(addr));
2018-01-06 06:48:51 +03:00
}
2014-09-02 01:34:20 +04:00
void RouterInfo::AddNTCP2Address (const uint8_t * staticKey, const uint8_t * iv,
const boost::asio::ip::address& host, int port, uint8_t caps)
2018-06-15 19:52:43 +03:00
{
auto addr = std::make_shared<Address>();
2018-08-27 23:01:47 +03:00
addr->host = host;
addr->port = port;
addr->transportStyle = eTransportNTCP;
addr->caps = caps;
2018-06-15 19:52:43 +03:00
addr->date = 0;
addr->ntcp2.reset (new NTCP2Ext ());
2021-04-06 04:45:48 +03:00
if (port) addr->published = true;
2018-06-15 19:52:43 +03:00
memcpy (addr->ntcp2->staticKey, staticKey, 32);
memcpy (addr->ntcp2->iv, iv, 16);
if (addr->IsV4 ())
{
m_SupportedTransports |= eNTCP2V4;
if (addr->published) m_ReachableTransports |= eNTCP2V4;
}
if (addr->IsV6 ())
{
m_SupportedTransports |= eNTCP2V6;
if (addr->published) m_ReachableTransports |= eNTCP2V6;
}
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
{
if (addr->transportStyle == eTransportSSU &&
((addr->IsV4 () && introducer.iHost.is_v4 ()) || (addr->IsV6 () && introducer.iHost.is_v6 ())))
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);
2021-06-02 19:55:08 +03:00
m_ReachableTransports |= (addr->IsV4 () ? eSSUV4 : eSSUV6);
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
{
if (addr->transportStyle == eTransportSSU &&
((addr->IsV4 () && e.address ().is_v4 ()) || (addr->IsV6 () && e.address ().is_v6 ())))
2018-01-06 06:48:51 +03:00
{
for (auto it = addr->ssu->introducers.begin (); it != addr->ssu->introducers.end (); ++it)
if (boost::asio::ip::udp::endpoint (it->iHost, it->iPort) == e)
2014-09-02 01:34:20 +04:00
{
addr->ssu->introducers.erase (it);
2021-06-02 19:55:08 +03:00
if (addr->ssu->introducers.empty ())
m_ReachableTransports &= ~(addr->IsV4 () ? eSSUV4 : eSSUV6);
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);
2021-02-23 06:53:25 +03:00
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-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
2019-05-23 22:59:44 +03:00
bool RouterInfo::IsSSUV6 () const
{
return m_SupportedTransports & eSSUV6;
}
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::IsNTCP2V6 () const
{
return m_SupportedTransports & eNTCP2V6;
}
bool RouterInfo::IsV6 () const
{
return m_SupportedTransports & (eSSUV6 | eNTCP2V6);
}
2016-03-25 01:44:41 +03:00
bool RouterInfo::IsV4 () const
{
return m_SupportedTransports & (eSSUV4 | eNTCP2V4);
2016-03-25 01:44:41 +03:00
}
2018-01-06 06:48:51 +03:00
2021-02-01 01:25:07 +03:00
bool RouterInfo::IsMesh () const
{
return m_SupportedTransports & eNTCP2V6Mesh;
}
void RouterInfo::EnableV6 ()
{
if (!IsV6 ())
{
uint8_t addressCaps = AddressCaps::eV6;
if (IsV4 ()) addressCaps |= AddressCaps::eV4;
SetUnreachableAddressesTransportCaps (addressCaps);
2021-06-17 01:14:33 +03:00
UpdateSupportedTransports ();
}
}
2016-03-25 01:44:41 +03:00
void RouterInfo::EnableV4 ()
2016-03-25 01:44:41 +03:00
{
if (!IsV4 ())
{
uint8_t addressCaps = AddressCaps::eV4;
if (IsV6 ()) addressCaps |= AddressCaps::eV6;
SetUnreachableAddressesTransportCaps (addressCaps);
2021-06-17 01:14:33 +03:00
UpdateSupportedTransports ();
}
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
{
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;
2021-06-14 19:36:54 +03:00
if (addr->IsV6 ())
{
2021-06-14 19:36:54 +03:00
if (addr->IsV4 ())
{
2021-06-14 19:36:54 +03:00
addr->caps &= ~AddressCaps::eV6;
++it;
}
2021-06-14 19:36:54 +03:00
else
it = m_Addresses->erase (it);
}
2016-07-14 21:10:38 +03:00
else
2016-08-08 00:52:18 +03:00
++it;
2018-01-06 06:48:51 +03:00
}
2021-06-17 01:14:33 +03:00
UpdateSupportedTransports ();
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
{
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;
2021-06-14 19:36:54 +03:00
if (addr->IsV4 ())
{
2021-06-14 19:36:54 +03:00
if (addr->IsV6 ())
{
2021-06-14 19:36:54 +03:00
addr->caps &= ~AddressCaps::eV4;
++it;
}
2021-06-14 19:36:54 +03:00
else
it = m_Addresses->erase (it);
}
2016-07-14 21:10:38 +03:00
else
2016-08-08 00:52:18 +03:00
++it;
2018-01-06 06:48:51 +03:00
}
2021-06-17 01:14:33 +03:00
UpdateSupportedTransports ();
2018-01-06 06:48:51 +03:00
}
2016-03-25 01:44:41 +03:00
}
2018-01-06 06:48:51 +03:00
2021-02-01 01:25:07 +03:00
void RouterInfo::EnableMesh ()
{
if (!IsMesh ())
{
2021-02-01 01:25:07 +03:00
m_SupportedTransports |= eNTCP2V6Mesh;
2021-06-17 01:14:33 +03:00
m_ReachableTransports |= eNTCP2V6Mesh;
}
2021-02-01 01:25:07 +03:00
}
2021-02-01 01:25:07 +03:00
void RouterInfo::DisableMesh ()
{
2021-02-01 01:25:07 +03:00
if (IsMesh ())
{
m_SupportedTransports &= ~eNTCP2V6Mesh;
2021-06-17 01:14:33 +03:00
m_ReachableTransports &= ~eNTCP2V6Mesh;
2021-02-01 01:25:07 +03:00
for (auto it = m_Addresses->begin (); it != m_Addresses->end ();)
{
auto addr = *it;
if (i2p::util::net::IsYggdrasilAddress (addr->host))
it = m_Addresses->erase (it);
else
++it;
}
}
}
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
{
2018-08-04 15:47:58 +03:00
return GetAddress (
[v4only](std::shared_ptr<const RouterInfo::Address> address)->bool
{
return (address->transportStyle == eTransportSSU) && (!v4only || address->IsV4 ());
2018-08-04 15:47:58 +03:00
});
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
{
2018-08-04 15:47:58 +03:00
return GetAddress (
[](std::shared_ptr<const RouterInfo::Address> address)->bool
{
return (address->transportStyle == eTransportSSU) && address->IsV6();
2018-08-04 15:47:58 +03:00
});
2018-01-06 06:48:51 +03:00
}
template<typename Filter>
2018-08-04 15:47:58 +03:00
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetAddress (Filter filter) const
2013-10-27 19:28:23 +04:00
{
2019-04-08 22:22:42 +03:00
// TODO: make it more generic 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)
2018-08-04 15:47:58 +03:00
if (filter (address)) return address;
2013-10-27 19:28:23 +04:00
return nullptr;
2018-01-06 06:48:51 +03:00
}
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetNTCP2AddressWithStaticKey (const uint8_t * key) const
2018-07-31 22:41:13 +03:00
{
if (!key) return nullptr;
2018-08-04 15:47:58 +03:00
return GetAddress (
[key](std::shared_ptr<const RouterInfo::Address> address)->bool
{
return address->IsNTCP2 () && !memcmp (address->ntcp2->staticKey, key, 32);
2018-08-04 15:47:58 +03:00
});
2018-07-31 22:41:13 +03:00
}
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetPublishedNTCP2V4Address () const
{
return GetAddress (
[](std::shared_ptr<const RouterInfo::Address> address)->bool
{
return address->IsPublishedNTCP2 () && address->host.is_v4 ();
});
}
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetPublishedNTCP2V6Address () const
{
return GetAddress (
[](std::shared_ptr<const RouterInfo::Address> address)->bool
{
return address->IsPublishedNTCP2 () && address->host.is_v6 () &&
2021-02-02 02:00:03 +03:00
!i2p::util::net::IsYggdrasilAddress (address->host);
});
}
2021-02-01 01:25:07 +03:00
std::shared_ptr<const RouterInfo::Address> RouterInfo::GetYggdrasilAddress () const
{
return GetAddress (
[](std::shared_ptr<const RouterInfo::Address> address)->bool
{
2021-02-02 06:24:51 +03:00
return address->IsPublishedNTCP2 () && i2p::util::net::IsYggdrasilAddress (address->host);
2021-02-01 01:25:07 +03:00
});
}
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) const
{
auto encryptor = m_RouterIdentity->CreateEncryptor (nullptr);
if (encryptor)
encryptor->Encrypt (data, encrypted);
}
2020-11-23 20:49:18 +03:00
bool RouterInfo::IsEligibleFloodfill () const
2020-11-23 20:49:18 +03:00
{
// floodfill must be reachable by ipv4, >= 0.9.38 and not DSA
return IsReachableBy (eNTCP2V4 | eSSUV4) && m_Version >= NETDB_MIN_FLOODFILL_VERSION &&
GetIdentity ()->GetSigningKeyType () != SIGNING_KEY_TYPE_DSA_SHA1;
}
2021-02-23 05:04:26 +03:00
2021-03-23 22:36:57 +03:00
bool RouterInfo::IsPeerTesting (bool v4) const
2021-02-23 05:04:26 +03:00
{
if (!(m_SupportedTransports & (v4 ? eSSUV4 : eSSUV6))) return false;
return (bool)GetAddress (
2021-03-23 22:36:57 +03:00
[v4](std::shared_ptr<const RouterInfo::Address> address)->bool
{
2021-03-23 22:36:57 +03:00
return (address->transportStyle == eTransportSSU) && address->IsPeerTesting () &&
((v4 && address->IsV4 ()) || (!v4 && address->IsV6 ())) && address->IsReachableSSU ();
});
2021-02-23 05:04:26 +03:00
}
2021-03-30 18:31:11 +03:00
bool RouterInfo::IsIntroducer (bool v4) const
2021-02-23 05:04:26 +03:00
{
if (!(m_SupportedTransports & (v4 ? eSSUV4 : eSSUV6))) return false;
return (bool)GetAddress (
2021-03-30 18:31:11 +03:00
[v4](std::shared_ptr<const RouterInfo::Address> address)->bool
{
2021-03-30 18:31:11 +03:00
return (address->transportStyle == eTransportSSU) && address->IsIntroducer () &&
((v4 && address->IsV4 ()) || (!v4 && address->IsV6 ())) && !address->host.is_unspecified ();
});
}
void RouterInfo::SetUnreachableAddressesTransportCaps (uint8_t transports)
{
for (auto& addr: *m_Addresses)
{
// TODO: implement SSU
2021-06-14 19:36:54 +03:00
if (addr->transportStyle == eTransportNTCP && !addr->IsPublishedNTCP2 ())
{
addr->caps &= ~(eV4 | eV6);
addr->caps |= transports;
}
}
}
2021-06-02 19:55:08 +03:00
void RouterInfo::UpdateSupportedTransports ()
{
m_SupportedTransports = 0;
m_ReachableTransports = 0;
for (const auto& addr: *m_Addresses)
{
uint8_t transports = 0;
if (addr->transportStyle == eTransportNTCP)
{
if (addr->IsV4 ()) transports |= eNTCP2V4;
if (addr->IsV6 ())
2021-06-02 19:55:08 +03:00
transports |= (i2p::util::net::IsYggdrasilAddress (addr->host) ? eNTCP2V6Mesh : eNTCP2V6);
if (addr->IsPublishedNTCP2 ())
m_ReachableTransports |= transports;
}
else if (addr->transportStyle == eTransportSSU)
{
if (addr->IsV4 ()) transports |= eSSUV4;
if (addr->IsV6 ()) transports |= eSSUV6;
if (addr->IsReachableSSU ())
m_ReachableTransports |= transports;
}
2021-06-02 19:55:08 +03:00
m_SupportedTransports |= transports;
}
}
2013-10-27 19:28:23 +04:00
}
}