i2pd/libi2pd/NetDb.cpp

1328 lines
39 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2013-2020, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
2014-12-31 17:14:53 +03:00
#include <string.h>
2013-11-20 16:46:09 +04:00
#include <fstream>
2014-01-21 04:12:59 +04:00
#include <vector>
2014-01-23 00:32:50 +04:00
#include <boost/asio.hpp>
#include <stdexcept>
#include <pthread.h>
2016-02-11 03:00:00 +03:00
#include "I2PEndian.h"
2015-11-03 17:15:49 +03:00
#include "Base.h"
2016-05-11 22:12:38 +03:00
#include "Crypto.h"
2013-11-13 16:59:21 +04:00
#include "Log.h"
2013-11-20 16:46:09 +04:00
#include "Timestamp.h"
2013-11-13 16:59:21 +04:00
#include "I2NPProtocol.h"
#include "Tunnel.h"
#include "Transports.h"
2018-11-21 19:23:48 +03:00
#include "NTCP2.h"
2013-11-19 05:37:38 +04:00
#include "RouterContext.h"
2014-01-03 06:22:48 +04:00
#include "Garlic.h"
#include "ECIESX25519AEADRatchetSession.h"
2016-11-14 20:05:44 +03:00
#include "Config.h"
#include "NetDb.hpp"
2013-11-13 16:59:21 +04:00
using namespace i2p::transport;
2013-11-13 16:59:21 +04:00
namespace i2p
{
namespace data
2018-01-06 06:48:51 +03:00
{
2013-11-13 16:59:21 +04:00
NetDb netdb;
2018-11-22 19:30:44 +03:00
NetDb::NetDb (): m_IsRunning (false), m_Thread (nullptr), m_Reseeder (nullptr), m_Storage("netDb", "r", "routerInfo-", "dat"), m_PersistProfiles (true), m_HiddenMode(false)
2013-11-13 16:59:21 +04:00
{
}
2018-01-06 06:48:51 +03:00
2013-11-13 16:59:21 +04:00
NetDb::~NetDb ()
{
2018-01-06 06:48:51 +03:00
Stop ();
2015-01-19 21:57:37 +03:00
delete m_Reseeder;
2018-01-06 06:48:51 +03:00
}
2013-11-19 05:37:38 +04:00
void NetDb::Start ()
2016-08-29 22:34:59 +03:00
{
m_Storage.SetPlace(i2p::fs::GetDataDir());
m_Storage.Init(i2p::data::GetBase64SubstitutionTable(), 64);
InitProfilesStorage ();
2016-08-29 22:26:19 +03:00
m_Families.LoadCertificates ();
Load ();
2017-02-02 23:40:57 +03:00
uint16_t threshold; i2p::config::GetOption("reseed.threshold", threshold);
2017-02-02 23:40:57 +03:00
if (m_RouterInfos.size () < threshold) // reseed if # of router less than threshold
2015-01-19 21:57:37 +03:00
Reseed ();
2014-12-15 20:38:35 +03:00
i2p::config::GetOption("persist.profiles", m_PersistProfiles);
2015-01-15 04:27:19 +03:00
m_IsRunning = true;
2013-11-19 05:37:38 +04:00
m_Thread = new std::thread (std::bind (&NetDb::Run, this));
}
2018-01-06 06:48:51 +03:00
2013-11-19 05:37:38 +04:00
void NetDb::Stop ()
{
2015-04-11 22:39:23 +03:00
if (m_IsRunning)
2018-01-06 06:48:51 +03:00
{
if (m_PersistProfiles)
for (auto& it: m_RouterInfos)
it.second->SaveProfile ();
2015-04-11 22:39:23 +03:00
DeleteObsoleteProfiles ();
m_RouterInfos.clear ();
m_Floodfills.clear ();
if (m_Thread)
2018-01-06 06:48:51 +03:00
{
2015-04-11 22:39:23 +03:00
m_IsRunning = false;
m_Queue.WakeUp ();
2018-01-06 06:48:51 +03:00
m_Thread->join ();
2015-04-11 22:39:23 +03:00
delete m_Thread;
m_Thread = 0;
}
m_LeaseSets.clear();
m_Requests.Stop ();
2016-06-13 18:34:44 +03:00
}
2018-01-06 06:48:51 +03:00
}
2013-11-19 05:37:38 +04:00
void NetDb::Run ()
{
pthread_setname_np(pthread_self(), "NetDB");
2016-07-28 20:24:25 +03:00
uint32_t lastSave = 0, lastPublish = 0, lastExploratory = 0, lastManageRequest = 0, lastDestinationCleanup = 0;
2013-11-19 05:37:38 +04:00
while (m_IsRunning)
2018-01-06 06:48:51 +03:00
{
try
2018-01-06 06:48:51 +03:00
{
2015-06-16 20:32:42 +03:00
auto msg = m_Queue.GetNextWithTimeout (15000); // 15 sec
if (msg)
2018-01-06 06:48:51 +03:00
{
int numMsgs = 0;
2015-02-12 19:40:42 +03:00
while (msg)
2013-11-20 16:46:09 +04:00
{
2015-12-18 07:03:07 +03:00
LogPrint(eLogDebug, "NetDb: got request with type ", (int) msg->GetTypeID ());
2018-01-06 06:48:51 +03:00
switch (msg->GetTypeID ())
{
2018-01-06 06:48:51 +03:00
case eI2NPDatabaseStore:
2015-06-16 20:32:42 +03:00
HandleDatabaseStoreMsg (msg);
break;
case eI2NPDatabaseSearchReply:
2015-06-16 20:32:42 +03:00
HandleDatabaseSearchReplyMsg (msg);
break;
case eI2NPDatabaseLookup:
2015-06-16 20:32:42 +03:00
HandleDatabaseLookupMsg (msg);
2018-01-06 06:48:51 +03:00
break;
case eI2NPDeliveryStatus:
HandleDeliveryStatusMsg (msg);
break;
case eI2NPDummyMsg:
2018-11-21 21:24:54 +03:00
// plain RouterInfo from NTCP2 with flags for now
2018-11-21 19:23:48 +03:00
HandleNTCP2RouterInfoMsg (msg);
break;
default: // WTF?
2015-12-18 07:03:07 +03:00
LogPrint (eLogError, "NetDb: unexpected message type ", (int) msg->GetTypeID ());
2015-06-16 20:32:42 +03:00
//i2p::HandleI2NPMessage (msg);
2018-01-06 06:48:51 +03:00
}
2015-02-12 19:40:42 +03:00
if (numMsgs > 100) break;
msg = m_Queue.Get ();
numMsgs++;
2018-01-06 06:48:51 +03:00
}
}
if (!m_IsRunning) break;
2020-10-12 00:51:40 +03:00
if (!i2p::transport::transports.IsOnline ()) continue; // don't manage netdb when offline
uint64_t ts = i2p::util::GetSecondsSinceEpoch ();
if (ts - lastManageRequest >= 15) // manage requests every 15 seconds
{
2015-04-09 19:45:00 +03:00
m_Requests.ManageRequests ();
lastManageRequest = ts;
2018-01-06 06:48:51 +03:00
}
2014-07-31 20:59:43 +04:00
if (ts - lastSave >= 60) // save routers, manage leasesets and validate subscriptions every minute
{
2014-02-13 07:02:39 +04:00
if (lastSave)
2014-02-15 01:10:25 +04:00
{
SaveUpdated ();
2014-07-31 20:59:43 +04:00
ManageLeaseSets ();
2018-01-06 06:48:51 +03:00
}
2014-02-13 07:02:39 +04:00
lastSave = ts;
}
2018-01-06 06:48:51 +03:00
if (ts - lastDestinationCleanup >= i2p::garlic::INCOMING_TAGS_EXPIRATION_TIMEOUT)
2016-07-28 20:24:25 +03:00
{
i2p::context.CleanupDestination ();
lastDestinationCleanup = ts;
}
2018-01-06 06:48:51 +03:00
2020-11-16 05:46:49 +03:00
// publish
if (!m_HiddenMode && i2p::transport::transports.IsOnline ())
2014-02-13 07:02:39 +04:00
{
2020-11-16 05:46:49 +03:00
bool publish = false;
if (m_PublishReplyToken)
{
if (ts - lastPublish >= NETDB_PUBLISH_CONFIRMATION_TIMEOUT) publish = true;
}
else if (i2p::context.GetLastUpdateTime () > lastPublish ||
ts - lastPublish >= NETDB_PUBLISH_INTERVAL) publish = true;
if (publish) // update timestamp and publish
{
i2p::context.UpdateTimestamp (ts);
Publish ();
lastPublish = ts;
}
2018-01-06 06:48:51 +03:00
}
2015-01-11 00:08:13 +03:00
if (ts - lastExploratory >= 30) // exploratory every 30 seconds
2018-01-06 06:48:51 +03:00
{
2015-01-11 00:08:13 +03:00
auto numRouters = m_RouterInfos.size ();
2018-09-21 17:13:18 +03:00
if (!numRouters)
throw std::runtime_error("No known routers, reseed seems to be totally failed");
2016-11-14 20:05:44 +03:00
else // we have peers now
m_FloodfillBootstrap = nullptr;
2015-01-11 00:08:13 +03:00
if (numRouters < 2500 || ts - lastExploratory >= 90)
2018-01-06 06:48:51 +03:00
{
2015-01-11 00:08:13 +03:00
numRouters = 800/numRouters;
if (numRouters < 1) numRouters = 1;
2018-01-06 06:48:51 +03:00
if (numRouters > 9) numRouters = 9;
m_Requests.ManageRequests ();
if(!m_HiddenMode)
Explore (numRouters);
2015-01-11 00:08:13 +03:00
lastExploratory = ts;
2018-01-06 06:48:51 +03:00
}
}
2013-11-20 16:46:09 +04:00
}
catch (std::exception& ex)
2013-11-20 16:46:09 +04:00
{
2015-12-18 07:03:07 +03:00
LogPrint (eLogError, "NetDb: runtime exception: ", ex.what ());
2018-01-06 06:48:51 +03:00
}
}
}
void NetDb::SetHidden(bool hide)
2018-11-21 21:24:54 +03:00
{
// TODO: remove reachable addresses from router info
m_HiddenMode = hide;
}
2018-11-21 21:24:54 +03:00
2016-02-17 23:36:55 +03:00
bool NetDb::AddRouterInfo (const uint8_t * buf, int len)
2018-11-21 21:24:54 +03:00
{
bool updated;
AddRouterInfo (buf, len, updated);
return updated;
2018-11-21 21:24:54 +03:00
}
std::shared_ptr<const RouterInfo> NetDb::AddRouterInfo (const uint8_t * buf, int len, bool& updated)
2014-12-11 23:41:04 +03:00
{
IdentityEx identity;
2014-12-12 06:31:39 +03:00
if (identity.FromBuffer (buf, len))
2018-11-21 21:24:54 +03:00
return AddRouterInfo (identity.GetIdentHash (), buf, len, updated);
updated = false;
return nullptr;
2014-12-11 23:41:04 +03:00
}
2016-02-17 23:36:55 +03:00
bool NetDb::AddRouterInfo (const IdentHash& ident, const uint8_t * buf, int len)
2018-01-06 06:48:51 +03:00
{
2018-11-21 21:24:54 +03:00
bool updated;
AddRouterInfo (ident, buf, len, updated);
return updated;
2018-11-21 21:24:54 +03:00
}
std::shared_ptr<const RouterInfo> NetDb::AddRouterInfo (const IdentHash& ident, const uint8_t * buf, int len, bool& updated)
{
updated = true;
2014-11-21 21:29:19 +03:00
auto r = FindRouter (ident);
if (r)
{
2016-02-17 23:36:55 +03:00
if (r->IsNewer (buf, len))
{
bool wasFloodfill = r->IsFloodfill ();
2016-02-17 23:36:55 +03:00
r->Update (buf, len);
2016-01-18 03:00:00 +03:00
LogPrint (eLogInfo, "NetDb: RouterInfo updated: ", ident.ToBase64());
if (wasFloodfill != r->IsFloodfill ()) // if floodfill status updated
{
LogPrint (eLogDebug, "NetDb: RouterInfo floodfill status updated: ", ident.ToBase64());
std::unique_lock<std::mutex> l(m_FloodfillsMutex);
if (wasFloodfill)
m_Floodfills.remove (r);
2020-11-21 22:27:08 +03:00
else if (r->IsEligibleFloodfill ())
m_Floodfills.push_back (r);
}
2016-02-17 23:36:55 +03:00
}
else
2016-11-15 20:17:21 +03:00
{
2016-02-17 23:36:55 +03:00
LogPrint (eLogDebug, "NetDb: RouterInfo is older: ", ident.ToBase64());
2016-11-15 20:17:21 +03:00
updated = false;
}
2018-01-06 06:48:51 +03:00
}
else
{
2015-01-15 04:27:19 +03:00
r = std::make_shared<RouterInfo> (buf, len);
if (!r->IsUnreachable () && r->HasValidAddresses ())
2014-11-21 21:29:19 +03:00
{
2016-11-15 20:17:21 +03:00
bool inserted = false;
2016-01-16 23:36:30 +03:00
{
std::unique_lock<std::mutex> l(m_RouterInfosMutex);
2016-11-15 20:17:21 +03:00
inserted = m_RouterInfos.insert ({r->GetIdentHash (), r}).second;
}
if (inserted)
{
LogPrint (eLogInfo, "NetDb: RouterInfo added: ", ident.ToBase64());
2020-11-21 22:27:08 +03:00
if (r->IsFloodfill () && r->IsEligibleFloodfill ())
2016-11-15 20:17:21 +03:00
{
std::unique_lock<std::mutex> l(m_FloodfillsMutex);
m_Floodfills.push_back (r);
}
2016-01-16 23:36:30 +03:00
}
2016-11-15 20:17:21 +03:00
else
2016-01-16 23:36:30 +03:00
{
2016-11-15 20:17:21 +03:00
LogPrint (eLogWarning, "NetDb: Duplicated RouterInfo ", ident.ToBase64());
updated = false;
2016-01-16 23:36:30 +03:00
}
2018-01-06 06:48:51 +03:00
}
2016-02-17 23:36:55 +03:00
else
updated = false;
2018-01-06 06:48:51 +03:00
}
2015-01-15 00:11:09 +03:00
// take care about requested destination
2015-04-09 19:45:00 +03:00
m_Requests.RequestComplete (ident, r);
2018-11-21 21:24:54 +03:00
return r;
2018-01-06 06:48:51 +03:00
}
2013-11-13 16:59:21 +04:00
bool NetDb::AddLeaseSet (const IdentHash& ident, const uint8_t * buf, int len)
2013-11-13 16:59:21 +04:00
{
2016-07-15 20:52:55 +03:00
std::unique_lock<std::mutex> lock(m_LeaseSetsMutex);
2016-02-17 23:36:55 +03:00
bool updated = false;
auto it = m_LeaseSets.find(ident);
if (it != m_LeaseSets.end () && it->second->GetStoreType () == i2p::data::NETDB_STORE_TYPE_LEASESET)
2018-01-06 06:48:51 +03:00
{
// we update only is existing LeaseSet is not LeaseSet2
uint64_t expires;
if(LeaseSetBufferValidate(buf, len, expires))
{
if(it->second->GetExpirationTime() < expires)
2015-04-08 17:34:16 +03:00
{
it->second->Update (buf, len, false); // signature is verified already
LogPrint (eLogInfo, "NetDb: LeaseSet updated: ", ident.ToBase32());
updated = true;
2016-02-17 23:36:55 +03:00
}
else
LogPrint(eLogDebug, "NetDb: LeaseSet is older: ", ident.ToBase32());
}
else
LogPrint(eLogError, "NetDb: LeaseSet is invalid: ", ident.ToBase32());
}
else
{
auto leaseSet = std::make_shared<LeaseSet> (buf, len, false); // we don't need leases in netdb
if (leaseSet->IsValid ())
2018-01-06 06:48:51 +03:00
{
LogPrint (eLogInfo, "NetDb: LeaseSet added: ", ident.ToBase32());
m_LeaseSets[ident] = leaseSet;
updated = true;
2018-01-06 06:48:51 +03:00
}
else
LogPrint (eLogError, "NetDb: new LeaseSet validation failed: ", ident.ToBase32());
2018-01-06 06:48:51 +03:00
}
2016-02-17 23:36:55 +03:00
return updated;
2018-01-06 06:48:51 +03:00
}
2013-11-13 16:59:21 +04:00
2018-12-21 23:00:03 +03:00
bool NetDb::AddLeaseSet2 (const IdentHash& ident, const uint8_t * buf, int len, uint8_t storeType)
{
std::unique_lock<std::mutex> lock(m_LeaseSetsMutex);
auto leaseSet = std::make_shared<LeaseSet2> (storeType, buf, len, false); // we don't need leases in netdb
if (leaseSet->IsValid ())
{
auto it = m_LeaseSets.find(ident);
2019-03-07 22:51:05 +03:00
if (it == m_LeaseSets.end () || it->second->GetStoreType () != storeType ||
leaseSet->GetPublishedTimestamp () > it->second->GetPublishedTimestamp ())
{
if (leaseSet->IsPublic ())
{
// TODO: implement actual update
LogPrint (eLogInfo, "NetDb: LeaseSet2 updated: ", ident.ToBase32());
m_LeaseSets[ident] = leaseSet;
return true;
}
else
{
LogPrint (eLogWarning, "NetDb: Unpublished LeaseSet2 received: ", ident.ToBase32());
m_LeaseSets.erase (ident);
}
}
}
else
LogPrint (eLogError, "NetDb: new LeaseSet2 validation failed: ", ident.ToBase32());
return false;
2018-12-21 23:00:03 +03:00
}
std::shared_ptr<RouterInfo> NetDb::FindRouter (const IdentHash& ident) const
2013-11-13 16:59:21 +04:00
{
2014-11-21 21:29:19 +03:00
std::unique_lock<std::mutex> l(m_RouterInfosMutex);
2013-11-29 16:52:09 +04:00
auto it = m_RouterInfos.find (ident);
2013-11-13 16:59:21 +04:00
if (it != m_RouterInfos.end ())
return it->second;
2013-11-13 16:59:21 +04:00
else
return nullptr;
}
2013-12-22 20:29:57 +04:00
2015-01-27 19:27:58 +03:00
std::shared_ptr<LeaseSet> NetDb::FindLeaseSet (const IdentHash& destination) const
2013-12-22 20:29:57 +04:00
{
2016-07-15 20:52:55 +03:00
std::unique_lock<std::mutex> lock(m_LeaseSetsMutex);
2013-12-22 20:29:57 +04:00
auto it = m_LeaseSets.find (destination);
if (it != m_LeaseSets.end ())
return it->second;
else
return nullptr;
2014-01-29 22:36:20 +04:00
}
2015-11-03 17:15:49 +03:00
std::shared_ptr<RouterProfile> NetDb::FindRouterProfile (const IdentHash& ident) const
{
if (!m_PersistProfiles)
return nullptr;
2015-11-03 17:15:49 +03:00
auto router = FindRouter (ident);
return router ? router->GetProfile () : nullptr;
2018-01-06 06:48:51 +03:00
}
2014-10-24 23:39:53 +04:00
void NetDb::SetUnreachable (const IdentHash& ident, bool unreachable)
{
auto it = m_RouterInfos.find (ident);
if (it != m_RouterInfos.end ())
return it->second->SetUnreachable (unreachable);
}
2015-01-19 21:57:37 +03:00
void NetDb::Reseed ()
{
if (!m_Reseeder)
2018-01-06 06:48:51 +03:00
{
2015-01-19 21:57:37 +03:00
m_Reseeder = new Reseeder ();
m_Reseeder->LoadCertificates (); // we need certificates for SU3 verification
}
2016-11-14 20:05:44 +03:00
// try reseeding from floodfill first if specified
std::string riPath;
if(i2p::config::GetOption("reseed.floodfill", riPath)) {
auto ri = std::make_shared<RouterInfo>(riPath);
if (ri->IsFloodfill()) {
const uint8_t * riData = ri->GetBuffer();
int riLen = ri->GetBufferLen();
if(!i2p::data::netdb.AddRouterInfo(riData, riLen)) {
// bad router info
LogPrint(eLogError, "NetDb: bad router info");
return;
}
m_FloodfillBootstrap = ri;
ReseedFromFloodfill(*ri);
2019-04-08 22:22:42 +03:00
// don't try reseed servers if trying to bootstrap from floodfill
2016-11-14 20:05:44 +03:00
return;
}
}
2017-02-02 01:17:25 +03:00
m_Reseeder->Bootstrap ();
2015-01-19 21:57:37 +03:00
}
2016-11-14 20:05:44 +03:00
void NetDb::ReseedFromFloodfill(const RouterInfo & ri, int numRouters, int numFloodfills)
{
LogPrint(eLogInfo, "NetDB: reseeding from floodfill ", ri.GetIdentHashBase64());
std::vector<std::shared_ptr<i2p::I2NPMessage> > requests;
i2p::data::IdentHash ourIdent = i2p::context.GetIdentHash();
i2p::data::IdentHash ih = ri.GetIdentHash();
i2p::data::IdentHash randomIdent;
2018-01-06 06:48:51 +03:00
2016-11-14 20:05:44 +03:00
// make floodfill lookups
while(numFloodfills > 0) {
randomIdent.Randomize();
auto msg = i2p::CreateRouterInfoDatabaseLookupMsg(randomIdent, ourIdent, 0, false);
requests.push_back(msg);
numFloodfills --;
}
2018-01-06 06:48:51 +03:00
2016-11-14 20:05:44 +03:00
// make regular router lookups
while(numRouters > 0) {
randomIdent.Randomize();
auto msg = i2p::CreateRouterInfoDatabaseLookupMsg(randomIdent, ourIdent, 0, true);
requests.push_back(msg);
numRouters --;
}
2018-01-06 06:48:51 +03:00
2016-11-14 20:05:44 +03:00
// send them off
i2p::transport::transports.SendMessages(ih, requests);
}
2016-02-11 03:00:00 +03:00
bool NetDb::LoadRouterInfo (const std::string & path)
{
2016-02-11 03:00:00 +03:00
auto r = std::make_shared<RouterInfo>(path);
if (r->GetRouterIdentity () && !r->IsUnreachable () &&
2016-02-24 19:31:14 +03:00
(!r->UsesIntroducer () || m_LastLoad < r->GetTimestamp () + NETDB_INTRODUCEE_EXPIRATION_TIMEOUT*1000LL)) // 1 hour
2014-01-29 22:36:20 +04:00
{
2016-02-11 03:00:00 +03:00
r->DeleteBuffer ();
r->ClearProperties (); // properties are not used for regular routers
m_RouterInfos[r->GetIdentHash ()] = r;
2016-02-22 18:27:43 +03:00
if (r->IsFloodfill () && r->IsReachable ()) // floodfill must be reachable
2016-02-11 03:00:00 +03:00
m_Floodfills.push_back (r);
2018-01-06 06:48:51 +03:00
}
else
2016-02-22 18:27:43 +03:00
{
LogPrint(eLogWarning, "NetDb: RI from ", path, " is invalid. Delete");
2016-02-11 03:00:00 +03:00
i2p::fs::Remove(path);
2014-01-29 22:36:20 +04:00
}
2016-02-11 03:00:00 +03:00
return true;
}
2016-07-15 20:52:55 +03:00
void NetDb::VisitLeaseSets(LeaseSetVisitor v)
{
std::unique_lock<std::mutex> lock(m_LeaseSetsMutex);
for ( auto & entry : m_LeaseSets)
v(entry.first, entry.second);
}
2016-08-29 21:16:29 +03:00
void NetDb::VisitStoredRouterInfos(RouterInfoVisitor v)
{
m_Storage.Iterate([v] (const std::string & filename)
{
auto ri = std::make_shared<i2p::data::RouterInfo>(filename);
2016-08-29 21:16:29 +03:00
v(ri);
});
}
void NetDb::VisitRouterInfos(RouterInfoVisitor v)
{
std::unique_lock<std::mutex> lock(m_RouterInfosMutex);
for ( const auto & item : m_RouterInfos )
2016-08-31 02:59:24 +03:00
v(item.second);
2016-08-29 21:16:29 +03:00
}
2016-08-30 22:54:53 +03:00
size_t NetDb::VisitRandomRouterInfos(RouterInfoFilter filter, RouterInfoVisitor v, size_t n)
{
std::vector<std::shared_ptr<const RouterInfo> > found;
const size_t max_iters_per_cyle = 3;
size_t iters = max_iters_per_cyle;
2016-09-01 22:54:48 +03:00
while(n > 0)
2016-08-30 22:54:53 +03:00
{
std::unique_lock<std::mutex> lock(m_RouterInfosMutex);
uint32_t idx = rand () % m_RouterInfos.size ();
uint32_t i = 0;
for (const auto & it : m_RouterInfos) {
if(i >= idx) // are we at the random start point?
{
// yes, check if we want this one
2016-08-31 02:59:24 +03:00
if(filter(it.second))
2016-08-30 22:54:53 +03:00
{
// we have a match
--n;
found.push_back(it.second);
// reset max iterations per cycle
iters = max_iters_per_cyle;
break;
}
}
else // not there yet
++i;
}
2016-09-01 22:54:48 +03:00
// we have enough
if(n == 0) break;
2016-08-30 22:54:53 +03:00
--iters;
// have we tried enough this cycle ?
if(!iters) {
// yes let's try the next cycle
--n;
iters = max_iters_per_cyle;
}
}
// visit the ones we found
size_t visited = 0;
for(const auto & ri : found ) {
2016-08-31 02:59:24 +03:00
v(ri);
2016-08-30 22:54:53 +03:00
++visited;
}
return visited;
}
2018-01-06 06:48:51 +03:00
2016-02-11 03:00:00 +03:00
void NetDb::Load ()
{
2014-01-31 22:08:33 +04:00
// make sure we cleanup netDb from previous attempts
2018-01-06 06:48:51 +03:00
m_RouterInfos.clear ();
m_Floodfills.clear ();
2014-01-31 22:08:33 +04:00
2016-02-11 03:00:00 +03:00
m_LastLoad = i2p::util::GetSecondsSinceEpoch();
std::vector<std::string> files;
m_Storage.Traverse(files);
2016-08-05 21:23:54 +03:00
for (const auto& path : files)
2016-02-11 03:00:00 +03:00
LoadRouterInfo(path);
LogPrint (eLogInfo, "NetDb: ", m_RouterInfos.size(), " routers loaded (", m_Floodfills.size (), " floodfils)");
2018-01-06 06:48:51 +03:00
}
2013-11-13 16:59:21 +04:00
void NetDb::SaveUpdated ()
2018-01-06 06:48:51 +03:00
{
2016-02-11 03:00:00 +03:00
int updatedCount = 0, deletedCount = 0;
2014-01-23 05:19:39 +04:00
auto total = m_RouterInfos.size ();
2018-01-06 06:48:51 +03:00
uint64_t expirationTimeout = NETDB_MAX_EXPIRATION_TIMEOUT*1000LL;
2016-02-11 03:00:00 +03:00
uint64_t ts = i2p::util::GetMillisecondsSinceEpoch();
auto uptime = i2p::context.GetUptime ();
2018-01-06 06:48:51 +03:00
// routers don't expire if less than 90 or uptime is less than 1 hour
2019-06-19 18:43:04 +03:00
bool checkForExpiration = total > NETDB_MIN_ROUTERS && uptime > 600; // 10 minutes
if (checkForExpiration && uptime > 3600) // 1 hour
2016-02-24 19:31:14 +03:00
expirationTimeout = i2p::context.IsFloodfill () ? NETDB_FLOODFILL_EXPIRATION_TIMEOUT*1000LL :
NETDB_MIN_EXPIRATION_TIMEOUT*1000LL + (NETDB_MAX_EXPIRATION_TIMEOUT - NETDB_MIN_EXPIRATION_TIMEOUT)*1000LL*NETDB_MIN_ROUTERS/total;
2016-02-11 03:00:00 +03:00
2016-08-05 21:23:54 +03:00
for (auto& it: m_RouterInfos)
2018-01-06 06:48:51 +03:00
{
2016-02-11 03:00:00 +03:00
std::string ident = it.second->GetIdentHashBase64();
std::string path = m_Storage.Path(ident);
2018-01-06 06:48:51 +03:00
if (it.second->IsUpdated ())
{
2016-02-11 03:00:00 +03:00
it.second->SaveToFile (path);
2013-11-20 16:46:09 +04:00
it.second->SetUpdated (false);
2015-02-02 17:40:03 +03:00
it.second->SetUnreachable (false);
it.second->DeleteBuffer ();
2016-02-11 03:00:00 +03:00
updatedCount++;
continue;
2013-11-20 16:46:09 +04:00
}
// make router reachable back if too few routers
if (it.second->IsUnreachable () && total - deletedCount < NETDB_MIN_ROUTERS)
it.second->SetUnreachable (false);
2016-02-24 19:31:14 +03:00
// find & mark expired routers
if (it.second->UsesIntroducer ())
{
if (ts > it.second->GetTimestamp () + NETDB_INTRODUCEE_EXPIRATION_TIMEOUT*1000LL)
2014-08-19 19:01:11 +04:00
// RouterInfo expires after 1 hour if uses introducer
2016-02-24 19:31:14 +03:00
it.second->SetUnreachable (true);
2016-02-11 03:00:00 +03:00
}
2018-01-06 06:48:51 +03:00
else if (checkForExpiration && ts > it.second->GetTimestamp () + expirationTimeout)
2016-02-24 19:31:14 +03:00
it.second->SetUnreachable (true);
2016-02-11 03:00:00 +03:00
2018-01-06 06:48:51 +03:00
if (it.second->IsUnreachable ())
{
2016-02-11 03:00:00 +03:00
// delete RI file
m_Storage.Remove(ident);
2016-02-11 03:00:00 +03:00
deletedCount++;
if (total - deletedCount < NETDB_MIN_ROUTERS) checkForExpiration = false;
2016-02-11 03:00:00 +03:00
}
} // m_RouterInfos iteration
2018-01-06 06:48:51 +03:00
2016-02-11 03:00:00 +03:00
if (updatedCount > 0)
LogPrint (eLogInfo, "NetDb: saved ", updatedCount, " new/updated routers");
2013-12-22 20:29:57 +04:00
if (deletedCount > 0)
2014-11-21 21:29:19 +03:00
{
2016-02-11 03:00:00 +03:00
LogPrint (eLogInfo, "NetDb: deleting ", deletedCount, " unreachable routers");
2014-11-21 21:29:19 +03:00
// clean up RouterInfos table
{
std::unique_lock<std::mutex> l(m_RouterInfosMutex);
for (auto it = m_RouterInfos.begin (); it != m_RouterInfos.end ();)
{
2018-01-06 06:48:51 +03:00
if (it->second->IsUnreachable ())
{
if (m_PersistProfiles) it->second->SaveProfile ();
it = m_RouterInfos.erase (it);
continue;
2018-01-06 06:48:51 +03:00
}
2016-08-05 21:23:54 +03:00
++it;
}
2018-01-06 06:48:51 +03:00
}
// clean up expired floodfills or not floodfills anymore
{
std::unique_lock<std::mutex> l(m_FloodfillsMutex);
for (auto it = m_Floodfills.begin (); it != m_Floodfills.end ();)
if ((*it)->IsUnreachable () || !(*it)->IsFloodfill ())
it = m_Floodfills.erase (it);
else
2016-08-05 21:23:54 +03:00
++it;
2018-01-06 06:48:51 +03:00
}
2014-11-21 21:29:19 +03:00
}
2013-11-20 16:46:09 +04:00
}
void NetDb::RequestDestination (const IdentHash& destination, RequestedDestination::RequestComplete requestComplete, bool direct)
2014-01-03 06:22:48 +04:00
{
2015-04-09 19:45:00 +03:00
auto dest = m_Requests.CreateRequest (destination, false, requestComplete); // non-exploratory
if (!dest)
2015-02-04 00:14:33 +03:00
{
2016-01-18 03:00:00 +03:00
LogPrint (eLogWarning, "NetDb: destination ", destination.ToBase64(), " is requested already");
2018-01-06 06:48:51 +03:00
return;
2015-02-10 06:19:29 +03:00
}
2015-04-09 19:45:00 +03:00
2015-04-11 02:49:58 +03:00
auto floodfill = GetClosestFloodfill (destination, dest->GetExcludedPeers ());
if (floodfill)
{
if (direct)
transports.SendMessage (floodfill->GetIdentHash (), dest->CreateRequestMessage (floodfill->GetIdentHash ()));
else
{
auto pool = i2p::tunnel::tunnels.GetExploratoryPool ();
auto outbound = pool ? pool->GetNextOutboundTunnel () : nullptr;
auto inbound = pool ? pool->GetNextInboundTunnel () : nullptr;
if (outbound && inbound)
outbound->SendTunnelDataMsg (floodfill->GetIdentHash (), 0, dest->CreateRequestMessage (floodfill, inbound));
else
{
LogPrint (eLogError, "NetDb: ", destination.ToBase64(), " destination requested, but no tunnels found");
m_Requests.RequestComplete (destination, nullptr);
}
}
}
else
{
2016-01-18 03:00:00 +03:00
LogPrint (eLogError, "NetDb: ", destination.ToBase64(), " destination requested, but no floodfills found");
2015-04-09 19:45:00 +03:00
m_Requests.RequestComplete (destination, nullptr);
2018-01-06 06:48:51 +03:00
}
}
2016-11-14 20:05:44 +03:00
void NetDb::RequestDestinationFrom (const IdentHash& destination, const IdentHash & from, bool exploritory, RequestedDestination::RequestComplete requestComplete)
{
2018-01-06 06:48:51 +03:00
2016-11-14 20:05:44 +03:00
auto dest = m_Requests.CreateRequest (destination, exploritory, requestComplete); // non-exploratory
if (!dest)
{
LogPrint (eLogWarning, "NetDb: destination ", destination.ToBase64(), " is requested already");
2018-01-06 06:48:51 +03:00
return;
2016-11-14 20:05:44 +03:00
}
LogPrint(eLogInfo, "NetDb: destination ", destination.ToBase64(), " being requested directly from ", from.ToBase64());
// direct
2018-01-06 06:48:51 +03:00
transports.SendMessage (from, dest->CreateRequestMessage (nullptr, nullptr));
}
2018-11-21 19:23:48 +03:00
void NetDb::HandleNTCP2RouterInfoMsg (std::shared_ptr<const I2NPMessage> m)
{
uint8_t flood = m->GetPayload ()[0] & NTCP2_ROUTER_INFO_FLAG_REQUEST_FLOOD;
2018-11-21 21:24:54 +03:00
bool updated;
auto ri = AddRouterInfo (m->GetPayload () + 1, m->GetPayloadLength () - 1, updated); // without flags
if (flood && updated && context.IsFloodfill () && ri)
2018-11-21 19:23:48 +03:00
{
2018-11-21 21:24:54 +03:00
auto floodMsg = CreateDatabaseStoreMsg (ri, 0); // replyToken = 0
Flood (ri->GetIdentHash (), floodMsg);
2018-11-21 19:23:48 +03:00
}
}
2018-01-06 06:48:51 +03:00
2015-07-04 04:27:40 +03:00
void NetDb::HandleDatabaseStoreMsg (std::shared_ptr<const I2NPMessage> m)
2018-01-06 06:48:51 +03:00
{
const uint8_t * buf = m->GetPayload ();
2018-01-06 06:48:51 +03:00
size_t len = m->GetSize ();
2015-04-12 23:59:59 +03:00
IdentHash ident (buf + DATABASE_STORE_KEY_OFFSET);
if (ident.IsZero ())
{
2017-01-31 04:36:35 +03:00
LogPrint (eLogDebug, "NetDb: database store with zero ident, dropped");
2015-04-12 23:59:59 +03:00
return;
2018-01-06 06:48:51 +03:00
}
2015-01-03 05:11:40 +03:00
uint32_t replyToken = bufbe32toh (buf + DATABASE_STORE_REPLY_TOKEN_OFFSET);
size_t offset = DATABASE_STORE_HEADER_SIZE;
if (replyToken)
2015-01-30 23:13:09 +03:00
{
2018-01-06 06:48:51 +03:00
auto deliveryStatus = CreateDeliveryStatusMsg (replyToken);
2015-01-30 23:13:09 +03:00
uint32_t tunnelID = bufbe32toh (buf + offset);
offset += 4;
2015-01-30 23:13:09 +03:00
if (!tunnelID) // send response directly
2015-06-24 17:45:58 +03:00
transports.SendMessage (buf + offset, deliveryStatus);
2015-01-30 23:13:09 +03:00
else
{
auto pool = i2p::tunnel::tunnels.GetExploratoryPool ();
auto outbound = pool ? pool->GetNextOutboundTunnel () : nullptr;
if (outbound)
2015-06-24 17:45:58 +03:00
outbound->SendTunnelDataMsg (buf + offset, tunnelID, deliveryStatus);
2015-01-30 23:13:09 +03:00
else
2017-01-31 04:36:35 +03:00
LogPrint (eLogWarning, "NetDb: no outbound tunnels for DatabaseStore reply found");
2018-01-06 06:48:51 +03:00
}
offset += 32;
2015-01-30 23:13:09 +03:00
}
2018-01-06 06:48:51 +03:00
// we must send reply back before this check
2016-06-30 20:15:36 +03:00
if (ident == i2p::context.GetIdentHash ())
{
2017-01-31 04:36:35 +03:00
LogPrint (eLogDebug, "NetDb: database store with own RouterInfo received, dropped");
2016-06-30 20:15:36 +03:00
return;
}
2018-01-06 06:48:51 +03:00
size_t payloadOffset = offset;
2016-02-17 23:36:55 +03:00
bool updated = false;
uint8_t storeType = buf[DATABASE_STORE_TYPE_OFFSET];
2018-12-21 23:00:03 +03:00
if (storeType) // LeaseSet or LeaseSet2
2013-11-19 05:37:38 +04:00
{
if (!m->from) // unsolicited LS must be received directly
{
if (storeType == NETDB_STORE_TYPE_LEASESET) // 1
{
LogPrint (eLogDebug, "NetDb: store request: LeaseSet for ", ident.ToBase32());
updated = AddLeaseSet (ident, buf + offset, len - offset);
}
else // all others are considered as LeaseSet2
{
LogPrint (eLogDebug, "NetDb: store request: LeaseSet2 of type ", storeType, " for ", ident.ToBase32());
updated = AddLeaseSet2 (ident, buf + offset, len - offset, storeType);
}
}
2018-01-06 06:48:51 +03:00
}
2018-12-21 23:00:03 +03:00
else // RouterInfo
{
2015-12-18 07:03:07 +03:00
LogPrint (eLogDebug, "NetDb: store request: RouterInfo");
size_t size = bufbe16toh (buf + offset);
2015-02-03 04:15:49 +03:00
offset += 2;
if (size > MAX_RI_BUFFER_SIZE || size > len - offset)
{
2015-12-18 07:03:07 +03:00
LogPrint (eLogError, "NetDb: invalid RouterInfo length ", (int)size);
return;
2018-01-06 06:48:51 +03:00
}
uint8_t uncompressed[MAX_RI_BUFFER_SIZE];
size_t uncompressedSize = m_Inflator.Inflate (buf + offset, size, uncompressed, MAX_RI_BUFFER_SIZE);
if (uncompressedSize && uncompressedSize < MAX_RI_BUFFER_SIZE)
2016-02-17 23:36:55 +03:00
updated = AddRouterInfo (ident, uncompressed, uncompressedSize);
else
2018-01-06 06:48:51 +03:00
{
2017-01-31 04:36:35 +03:00
LogPrint (eLogInfo, "NetDb: decompression failed ", uncompressedSize);
return;
2018-01-06 06:48:51 +03:00
}
}
2016-02-17 23:36:55 +03:00
if (replyToken && context.IsFloodfill () && updated)
{
// flood updated
auto floodMsg = NewI2NPShortMessage ();
2018-01-06 06:48:51 +03:00
uint8_t * payload = floodMsg->GetPayload ();
2016-02-17 23:36:55 +03:00
memcpy (payload, buf, 33); // key + type
htobe32buf (payload + DATABASE_STORE_REPLY_TOKEN_OFFSET, 0); // zero reply token
2016-06-30 16:45:06 +03:00
size_t msgLen = len - payloadOffset;
2016-02-17 23:36:55 +03:00
floodMsg->len += DATABASE_STORE_HEADER_SIZE + msgLen;
if (floodMsg->len < floodMsg->maxLen)
2018-01-06 06:48:51 +03:00
{
2016-02-17 23:36:55 +03:00
memcpy (payload + DATABASE_STORE_HEADER_SIZE, buf + payloadOffset, msgLen);
2018-01-06 06:48:51 +03:00
floodMsg->FillI2NPMessageHeader (eI2NPDatabaseStore);
2018-11-21 21:24:54 +03:00
Flood (ident, floodMsg);
2018-01-06 06:48:51 +03:00
}
2016-02-17 23:36:55 +03:00
else
2016-06-30 16:45:06 +03:00
LogPrint (eLogError, "NetDb: Database store message is too long ", floodMsg->len);
2018-01-06 06:48:51 +03:00
}
}
2013-11-19 05:37:38 +04:00
2015-07-04 04:27:40 +03:00
void NetDb::HandleDatabaseSearchReplyMsg (std::shared_ptr<const I2NPMessage> msg)
{
2015-07-04 04:27:40 +03:00
const uint8_t * buf = msg->GetPayload ();
char key[48];
int l = i2p::data::ByteStreamToBase64 (buf, 32, key, 48);
key[l] = 0;
int num = buf[32]; // num
2015-12-18 07:03:07 +03:00
LogPrint (eLogDebug, "NetDb: DatabaseSearchReply for ", key, " num=", num);
2015-04-09 19:45:00 +03:00
IdentHash ident (buf);
2018-01-06 06:48:51 +03:00
auto dest = m_Requests.FindRequest (ident);
2015-04-09 19:45:00 +03:00
if (dest)
2018-01-06 06:48:51 +03:00
{
bool deleteDest = true;
2014-01-05 18:53:44 +04:00
if (num > 0)
2018-01-06 06:48:51 +03:00
{
auto pool = i2p::tunnel::tunnels.GetExploratoryPool ();
2015-01-12 01:40:11 +03:00
auto outbound = pool ? pool->GetNextOutboundTunnel () : nullptr;
auto inbound = pool ? pool->GetNextInboundTunnel () : nullptr;
2014-10-15 04:52:40 +04:00
if (!dest->IsExploratory ())
{
// reply to our destination. Try other floodfills
2016-11-14 20:05:44 +03:00
if (outbound && inbound)
2014-10-15 04:52:40 +04:00
{
auto count = dest->GetExcludedPeers ().size ();
if (count < 7)
2018-01-06 06:48:51 +03:00
{
2014-10-15 04:52:40 +04:00
auto nextFloodfill = GetClosestFloodfill (dest->GetDestination (), dest->GetExcludedPeers ());
if (nextFloodfill)
2018-01-06 06:48:51 +03:00
{
2014-10-15 04:52:40 +04:00
// request destination
2015-12-18 07:03:07 +03:00
LogPrint (eLogDebug, "NetDb: Try ", key, " at ", count, " floodfill ", nextFloodfill->GetIdentHash ().ToBase64 ());
outbound->SendTunnelDataMsg (nextFloodfill->GetIdentHash (), 0,
dest->CreateRequestMessage (nextFloodfill, inbound));
2014-10-15 04:52:40 +04:00
deleteDest = false;
2018-01-06 06:48:51 +03:00
}
2014-10-15 04:52:40 +04:00
}
else
2015-12-18 07:03:07 +03:00
LogPrint (eLogWarning, "NetDb: ", key, " was not found on ", count, " floodfills");
2018-01-06 06:48:51 +03:00
}
}
if (deleteDest)
2014-10-15 04:52:40 +04:00
// no more requests for the destinationation. delete it
2015-04-09 19:45:00 +03:00
m_Requests.RequestComplete (ident, nullptr);
2014-01-05 18:53:44 +04:00
}
else
2018-07-10 12:39:21 +03:00
// no more requests for destination possible. delete it
2015-04-09 19:45:00 +03:00
m_Requests.RequestComplete (ident, nullptr);
2014-01-05 18:53:44 +04:00
}
2016-11-14 20:05:44 +03:00
else if(!m_FloodfillBootstrap)
2015-12-18 07:03:07 +03:00
LogPrint (eLogWarning, "NetDb: requested destination for ", key, " not found");
2015-01-10 17:07:07 +03:00
// try responses
for (int i = 0; i < num; i++)
{
2015-07-04 04:27:40 +03:00
const uint8_t * router = buf + 33 + i*32;
2015-01-10 17:07:07 +03:00
char peerHash[48];
int l1 = i2p::data::ByteStreamToBase64 (router, 32, peerHash, 48);
peerHash[l1] = 0;
2015-12-18 07:03:07 +03:00
LogPrint (eLogDebug, "NetDb: ", i, ": ", peerHash);
2015-01-10 17:07:07 +03:00
2018-01-06 06:48:51 +03:00
auto r = FindRouter (router);
if (!r || i2p::util::GetMillisecondsSinceEpoch () > r->GetTimestamp () + 3600*1000LL)
{
2015-01-10 17:07:07 +03:00
// router with ident not found or too old (1 hour)
2015-12-18 07:03:07 +03:00
LogPrint (eLogDebug, "NetDb: found new/outdated router. Requesting RouterInfo ...");
2016-11-14 20:05:44 +03:00
if(m_FloodfillBootstrap)
RequestDestinationFrom(router, m_FloodfillBootstrap->GetIdentHash(), true);
else
RequestDestination (router);
2015-01-10 17:07:07 +03:00
}
else
2015-12-18 07:03:07 +03:00
LogPrint (eLogDebug, "NetDb: [:|||:]");
2018-01-06 06:48:51 +03:00
}
}
2015-07-04 04:27:40 +03:00
void NetDb::HandleDatabaseLookupMsg (std::shared_ptr<const I2NPMessage> msg)
{
2015-07-04 04:27:40 +03:00
const uint8_t * buf = msg->GetPayload ();
2015-04-12 23:59:59 +03:00
IdentHash ident (buf);
if (ident.IsZero ())
{
2015-12-18 07:03:07 +03:00
LogPrint (eLogError, "NetDb: DatabaseLookup for zero ident. Ignored");
2015-04-12 23:59:59 +03:00
return;
2018-01-06 06:48:51 +03:00
}
char key[48];
int l = i2p::data::ByteStreamToBase64 (buf, 32, key, 48);
key[l] = 0;
IdentHash replyIdent(buf + 32);
2016-07-15 19:49:45 +03:00
uint8_t flag = buf[64];
2018-01-06 06:48:51 +03:00
2017-12-07 16:26:28 +03:00
LogPrint (eLogDebug, "NetDb: DatabaseLookup for ", key, " received flags=", (int)flag);
2015-02-03 06:34:55 +03:00
uint8_t lookupType = flag & DATABASE_LOOKUP_TYPE_FLAGS_MASK;
2018-01-06 06:48:51 +03:00
const uint8_t * excluded = buf + 65;
uint32_t replyTunnelID = 0;
2015-02-03 04:15:49 +03:00
if (flag & DATABASE_LOOKUP_DELIVERY_FLAG) //reply to tunnel
{
2016-07-15 19:49:45 +03:00
replyTunnelID = bufbe32toh (excluded);
excluded += 4;
}
2018-01-06 06:48:51 +03:00
uint16_t numExcluded = bufbe16toh (excluded);
excluded += 2;
if (numExcluded > 512)
{
2015-12-18 07:03:07 +03:00
LogPrint (eLogWarning, "NetDb: number of excluded peers", numExcluded, " exceeds 512");
2016-07-15 19:49:45 +03:00
return;
2018-01-06 06:48:51 +03:00
}
2015-06-22 05:29:50 +03:00
std::shared_ptr<I2NPMessage> replyMsg;
2015-02-03 06:34:55 +03:00
if (lookupType == DATABASE_LOOKUP_TYPE_EXPLORATORY_LOOKUP)
2014-07-25 06:01:07 +04:00
{
LogPrint (eLogInfo, "NetDb: exploratory close to ", key, " ", numExcluded, " excluded");
std::set<IdentHash> excludedRouters;
for (int i = 0; i < numExcluded; i++)
{
excludedRouters.insert (excluded);
excluded += 32;
2018-01-06 06:48:51 +03:00
}
2015-02-02 03:58:26 +03:00
std::vector<IdentHash> routers;
for (int i = 0; i < 3; i++)
{
2015-04-12 23:59:59 +03:00
auto r = GetClosestNonFloodfill (ident, excludedRouters);
2015-02-03 06:34:55 +03:00
if (r)
2018-01-06 06:48:51 +03:00
{
2015-02-03 06:34:55 +03:00
routers.push_back (r->GetIdentHash ());
excludedRouters.insert (r->GetIdentHash ());
2018-01-06 06:48:51 +03:00
}
}
2015-11-03 17:15:49 +03:00
replyMsg = CreateDatabaseSearchReply (ident, routers);
2018-01-06 06:48:51 +03:00
}
2014-07-31 20:59:43 +04:00
else
2018-01-06 06:48:51 +03:00
{
if (lookupType == DATABASE_LOOKUP_TYPE_ROUTERINFO_LOOKUP ||
2015-04-12 22:54:28 +03:00
lookupType == DATABASE_LOOKUP_TYPE_NORMAL_LOOKUP)
2018-01-06 06:48:51 +03:00
{
2015-04-12 23:59:59 +03:00
auto router = FindRouter (ident);
2015-04-12 22:54:28 +03:00
if (router)
{
2015-12-18 07:03:07 +03:00
LogPrint (eLogDebug, "NetDb: requested RouterInfo ", key, " found");
2015-04-12 22:54:28 +03:00
router->LoadBuffer ();
2018-01-06 06:48:51 +03:00
if (router->GetBuffer ())
2015-11-03 17:15:49 +03:00
replyMsg = CreateDatabaseStoreMsg (router);
2015-04-12 22:54:28 +03:00
}
2015-02-03 06:34:55 +03:00
}
2018-01-06 06:48:51 +03:00
if (!replyMsg && (lookupType == DATABASE_LOOKUP_TYPE_LEASESET_LOOKUP ||
lookupType == DATABASE_LOOKUP_TYPE_NORMAL_LOOKUP))
2015-02-03 06:34:55 +03:00
{
2015-04-12 23:59:59 +03:00
auto leaseSet = FindLeaseSet (ident);
2016-06-29 21:56:00 +03:00
if (!leaseSet)
{
// no lease set found
2016-06-30 16:45:06 +03:00
LogPrint(eLogDebug, "NetDb: requested LeaseSet not found for ", ident.ToBase32());
2016-06-29 21:56:00 +03:00
}
2016-06-30 00:42:26 +03:00
else if (!leaseSet->IsExpired ()) // we don't send back our LeaseSets
2015-02-03 06:34:55 +03:00
{
2015-12-18 07:03:07 +03:00
LogPrint (eLogDebug, "NetDb: requested LeaseSet ", key, " found");
replyMsg = CreateDatabaseStoreMsg (ident, leaseSet);
2015-02-03 06:34:55 +03:00
}
}
2018-01-06 06:48:51 +03:00
2015-02-03 06:34:55 +03:00
if (!replyMsg)
2018-01-06 06:48:51 +03:00
{
2016-12-06 02:39:01 +03:00
std::set<IdentHash> excludedRouters;
const uint8_t * exclude_ident = excluded;
for (int i = 0; i < numExcluded; i++)
{
excludedRouters.insert (exclude_ident);
exclude_ident += 32;
2015-06-11 18:43:35 +03:00
}
2016-12-06 02:39:01 +03:00
auto closestFloodfills = GetClosestFloodfills (ident, 3, excludedRouters, true);
if (closestFloodfills.empty ())
LogPrint (eLogWarning, "NetDb: Requested ", key, " not found, ", numExcluded, " peers excluded");
2016-03-22 20:10:02 +03:00
replyMsg = CreateDatabaseSearchReply (ident, closestFloodfills);
2018-01-06 07:01:44 +03:00
}
2015-02-03 06:34:55 +03:00
}
2018-01-06 06:48:51 +03:00
excluded += numExcluded * 32;
if (replyMsg)
2018-01-06 06:48:51 +03:00
{
if (replyTunnelID)
{
// encryption might be used though tunnel only
if (flag & (DATABASE_LOOKUP_ENCRYPTION_FLAG | DATABASE_LOOKUP_ECIES_FLAG)) // encrypted reply requested
{
2015-07-04 04:27:40 +03:00
const uint8_t * sessionKey = excluded;
2016-07-15 19:49:45 +03:00
const uint8_t numTags = excluded[32];
if (numTags)
{
if (flag & DATABASE_LOOKUP_ECIES_FLAG)
{
uint64_t tag;
memcpy (&tag, excluded + 33, 8);
replyMsg = i2p::garlic::WrapECIESX25519AEADRatchetMessage (replyMsg, sessionKey, tag);
}
else
{
const i2p::garlic::SessionTag sessionTag(excluded + 33); // take first tag
i2p::garlic::ElGamalAESSession garlic (sessionKey, sessionTag);
replyMsg = garlic.WrapSingleMessage (replyMsg);
}
if (!replyMsg)
LogPrint (eLogError, "NetDb: failed to wrap message");
}
2016-07-15 19:49:45 +03:00
else
LogPrint(eLogWarning, "NetDb: encrypted reply requested but no tags provided");
2018-01-06 06:48:51 +03:00
}
auto exploratoryPool = i2p::tunnel::tunnels.GetExploratoryPool ();
auto outbound = exploratoryPool ? exploratoryPool->GetNextOutboundTunnel () : nullptr;
if (outbound)
outbound->SendTunnelDataMsg (replyIdent, replyTunnelID, replyMsg);
else
transports.SendMessage (replyIdent, i2p::CreateTunnelGatewayMsg (replyTunnelID, replyMsg));
}
else
transports.SendMessage (replyIdent, replyMsg);
}
2018-01-06 06:48:51 +03:00
}
void NetDb::HandleDeliveryStatusMsg (std::shared_ptr<const I2NPMessage> msg)
{
if (m_PublishReplyToken == bufbe32toh (msg->GetPayload () + DELIVERY_STATUS_MSGID_OFFSET))
{
LogPrint (eLogInfo, "NetDb: Publishing confirmed. reply token=", m_PublishReplyToken);
m_PublishExcluded.clear ();
m_PublishReplyToken = 0;
}
}
2014-06-17 06:30:34 +04:00
void NetDb::Explore (int numDestinations)
2018-01-06 06:48:51 +03:00
{
2014-07-03 21:41:36 +04:00
// new requests
2014-06-17 06:30:34 +04:00
auto exploratoryPool = i2p::tunnel::tunnels.GetExploratoryPool ();
2015-01-11 00:08:13 +03:00
auto outbound = exploratoryPool ? exploratoryPool->GetNextOutboundTunnel () : nullptr;
auto inbound = exploratoryPool ? exploratoryPool->GetNextInboundTunnel () : nullptr;
2014-06-17 06:30:34 +04:00
bool throughTunnels = outbound && inbound;
2018-01-06 06:48:51 +03:00
uint8_t randomHash[32];
2014-06-17 06:30:34 +04:00
std::vector<i2p::tunnel::TunnelMessageBlock> msgs;
2015-12-18 07:03:07 +03:00
LogPrint (eLogInfo, "NetDb: exploring new ", numDestinations, " routers ...");
2014-06-17 06:30:34 +04:00
for (int i = 0; i < numDestinations; i++)
2018-01-06 06:48:51 +03:00
{
2015-11-03 17:15:49 +03:00
RAND_bytes (randomHash, 32);
2015-04-09 19:45:00 +03:00
auto dest = m_Requests.CreateRequest (randomHash, true); // exploratory
if (!dest)
2018-01-06 06:48:51 +03:00
{
2015-12-18 07:03:07 +03:00
LogPrint (eLogWarning, "NetDb: exploratory destination is requested already");
2018-01-06 06:48:51 +03:00
return;
}
2014-06-17 06:30:34 +04:00
auto floodfill = GetClosestFloodfill (randomHash, dest->GetExcludedPeers ());
2018-01-06 06:48:51 +03:00
if (floodfill)
{
if (i2p::transport::transports.IsConnected (floodfill->GetIdentHash ()))
throughTunnels = false;
2014-06-17 06:30:34 +04:00
if (throughTunnels)
2018-01-06 06:48:51 +03:00
{
msgs.push_back (i2p::tunnel::TunnelMessageBlock
{
2014-06-17 06:30:34 +04:00
i2p::tunnel::eDeliveryTypeRouter,
floodfill->GetIdentHash (), 0,
2018-01-06 06:48:51 +03:00
CreateDatabaseStoreMsg () // tell floodfill about us
});
msgs.push_back (i2p::tunnel::TunnelMessageBlock
{
2014-06-17 06:30:34 +04:00
i2p::tunnel::eDeliveryTypeRouter,
2018-01-06 06:48:51 +03:00
floodfill->GetIdentHash (), 0,
2015-06-22 22:47:45 +03:00
dest->CreateRequestMessage (floodfill, inbound) // explore
2018-01-06 06:48:51 +03:00
});
}
2014-06-17 06:30:34 +04:00
else
i2p::transport::transports.SendMessage (floodfill->GetIdentHash (), dest->CreateRequestMessage (floodfill->GetIdentHash ()));
2018-01-06 06:48:51 +03:00
}
2014-02-12 07:19:51 +04:00
else
2015-04-09 19:45:00 +03:00
m_Requests.RequestComplete (randomHash, nullptr);
2018-01-06 06:48:51 +03:00
}
2014-06-17 06:30:34 +04:00
if (throughTunnels && msgs.size () > 0)
2018-01-06 06:48:51 +03:00
outbound->SendTunnelDataMsg (msgs);
}
2013-11-19 05:37:38 +04:00
2014-02-13 07:02:39 +04:00
void NetDb::Publish ()
{
2016-01-03 01:23:20 +03:00
i2p::context.UpdateStats (); // for floodfill
if (m_PublishExcluded.size () > NETDB_MAX_PUBLISH_EXCLUDED_FLOODFILLS)
2018-01-06 06:48:51 +03:00
{
LogPrint (eLogError, "NetDb: Couldn't publish our RouterInfo to ", NETDB_MAX_PUBLISH_EXCLUDED_FLOODFILLS, " closest routers. Try again");
m_PublishExcluded.clear ();
}
auto floodfill = GetClosestFloodfill (i2p::context.GetIdentHash (), m_PublishExcluded);
if (floodfill)
{
uint32_t replyToken;
RAND_bytes ((uint8_t *)&replyToken, 4);
LogPrint (eLogInfo, "NetDb: Publishing our RouterInfo to ", i2p::data::GetIdentHashAbbreviation(floodfill->GetIdentHash ()), ". reply token=", replyToken);
m_PublishExcluded.insert (floodfill->GetIdentHash ());
m_PublishReplyToken = replyToken;
transports.SendMessage (floodfill->GetIdentHash (), CreateDatabaseStoreMsg (i2p::context.GetSharedRouterInfo (), replyToken));
2018-01-06 06:48:51 +03:00
}
}
2013-11-19 05:37:38 +04:00
2018-11-21 21:24:54 +03:00
void NetDb::Flood (const IdentHash& ident, std::shared_ptr<I2NPMessage> floodMsg)
{
std::set<IdentHash> excluded;
excluded.insert (i2p::context.GetIdentHash ()); // don't flood to itself
excluded.insert (ident); // don't flood back
for (int i = 0; i < 3; i++)
{
auto floodfill = GetClosestFloodfill (ident, excluded);
if (floodfill)
{
auto h = floodfill->GetIdentHash();
LogPrint(eLogDebug, "NetDb: Flood lease set for ", ident.ToBase32(), " to ", h.ToBase64());
transports.SendMessage (h, CopyI2NPMessage(floodMsg));
excluded.insert (h);
}
else
break;
}
}
2014-11-21 00:20:02 +03:00
std::shared_ptr<const RouterInfo> NetDb::GetRandomRouter () const
{
return GetRandomRouter (
2018-01-06 06:48:51 +03:00
[](std::shared_ptr<const RouterInfo> router)->bool
{
return !router->IsHidden ();
});
2018-01-06 06:48:51 +03:00
}
std::shared_ptr<const RouterInfo> NetDb::GetRandomRouter (std::shared_ptr<const RouterInfo> compatibleWith) const
2014-09-25 05:45:19 +04:00
{
return GetRandomRouter (
2018-01-06 06:48:51 +03:00
[compatibleWith](std::shared_ptr<const RouterInfo> router)->bool
{
return !router->IsHidden () && router != compatibleWith &&
router->IsCompatible (*compatibleWith);
});
2018-01-06 06:48:51 +03:00
}
2014-09-25 05:45:19 +04:00
2016-12-02 19:17:22 +03:00
std::shared_ptr<const RouterInfo> NetDb::GetRandomPeerTestRouter (bool v4only) const
2015-02-26 22:17:16 +03:00
{
return GetRandomRouter (
2018-01-06 06:48:51 +03:00
[v4only](std::shared_ptr<const RouterInfo> router)->bool
{
return !router->IsHidden () && router->IsPeerTesting () && router->IsSSU (v4only);
2015-02-26 22:17:16 +03:00
});
}
2019-05-23 22:59:44 +03:00
std::shared_ptr<const RouterInfo> NetDb::GetRandomSSUV6Router () const
{
return GetRandomRouter (
[](std::shared_ptr<const RouterInfo> router)->bool
{
return !router->IsHidden () && router->IsSSUV6 ();
});
}
2019-05-23 22:59:44 +03:00
2015-02-27 05:05:35 +03:00
std::shared_ptr<const RouterInfo> NetDb::GetRandomIntroducer () const
{
return GetRandomRouter (
2018-01-06 06:48:51 +03:00
[](std::shared_ptr<const RouterInfo> router)->bool
{
return !router->IsHidden () && router->IsIntroducer ();
2015-02-27 05:05:35 +03:00
});
2018-01-06 06:48:51 +03:00
}
std::shared_ptr<const RouterInfo> NetDb::GetHighBandwidthRandomRouter (std::shared_ptr<const RouterInfo> compatibleWith) const
{
return GetRandomRouter (
2018-01-06 06:48:51 +03:00
[compatibleWith](std::shared_ptr<const RouterInfo> router)->bool
{
return !router->IsHidden () && router != compatibleWith &&
2018-01-06 06:48:51 +03:00
router->IsCompatible (*compatibleWith) &&
(router->GetCaps () & RouterInfo::eHighBandwidth) &&
router->GetVersion () >= NETDB_MIN_HIGHBANDWIDTH_VERSION;
});
2018-01-06 06:48:51 +03:00
}
2014-09-25 05:45:19 +04:00
template<typename Filter>
2014-11-21 00:20:02 +03:00
std::shared_ptr<const RouterInfo> NetDb::GetRandomRouter (Filter filter) const
2013-11-13 16:59:21 +04:00
{
2016-06-01 03:00:00 +03:00
if (m_RouterInfos.empty())
return 0;
2016-06-17 18:03:33 +03:00
uint32_t ind = rand () % m_RouterInfos.size ();
for (int j = 0; j < 2; j++)
2018-01-06 06:48:51 +03:00
{
uint32_t i = 0;
2014-11-21 21:29:19 +03:00
std::unique_lock<std::mutex> l(m_RouterInfosMutex);
2016-08-05 21:23:54 +03:00
for (const auto& it: m_RouterInfos)
2018-01-06 06:48:51 +03:00
{
if (i >= ind)
2018-01-06 06:48:51 +03:00
{
if (!it.second->IsUnreachable () && filter (it.second))
2014-11-21 00:20:02 +03:00
return it.second;
2018-01-06 06:48:51 +03:00
}
else
i++;
}
// we couldn't find anything, try second pass
ind = 0;
2018-01-06 06:48:51 +03:00
}
2014-03-19 22:08:09 +04:00
return nullptr; // seems we have too few routers
2018-01-06 06:48:51 +03:00
}
2015-07-04 04:27:40 +03:00
void NetDb::PostI2NPMsg (std::shared_ptr<const I2NPMessage> msg)
2013-11-20 16:46:09 +04:00
{
2018-01-06 06:48:51 +03:00
if (msg) m_Queue.Put (msg);
}
2014-01-04 06:24:20 +04:00
2018-01-06 06:48:51 +03:00
std::shared_ptr<const RouterInfo> NetDb::GetClosestFloodfill (const IdentHash& destination,
const std::set<IdentHash>& excluded, bool closeThanUsOnly) const
2014-01-04 06:24:20 +04:00
{
std::shared_ptr<const RouterInfo> r;
2014-01-04 06:24:20 +04:00
XORMetric minMetric;
IdentHash destKey = CreateRoutingKey (destination);
if (closeThanUsOnly)
minMetric = destKey ^ i2p::context.GetIdentHash ();
2018-01-06 06:48:51 +03:00
else
minMetric.SetMax ();
2014-10-06 05:59:05 +04:00
std::unique_lock<std::mutex> l(m_FloodfillsMutex);
2016-08-05 21:23:54 +03:00
for (const auto& it: m_Floodfills)
2018-01-06 06:48:51 +03:00
{
2015-04-11 02:49:58 +03:00
if (!it->IsUnreachable ())
2018-01-06 06:48:51 +03:00
{
XORMetric m = destKey ^ it->GetIdentHash ();
2015-04-11 02:49:58 +03:00
if (m < minMetric && !excluded.count (it->GetIdentHash ()))
2014-01-04 06:24:20 +04:00
{
minMetric = m;
r = it;
2014-01-04 06:24:20 +04:00
}
2018-01-06 06:48:51 +03:00
}
}
2014-01-04 06:24:20 +04:00
return r;
2018-01-06 06:48:51 +03:00
}
2014-01-23 00:32:50 +04:00
2015-06-11 18:43:35 +03:00
std::vector<IdentHash> NetDb::GetClosestFloodfills (const IdentHash& destination, size_t num,
std::set<IdentHash>& excluded, bool closeThanUsOnly) const
2015-04-10 23:15:13 +03:00
{
struct Sorted
{
std::shared_ptr<const RouterInfo> r;
XORMetric metric;
bool operator< (const Sorted& other) const { return metric < other.metric; };
};
std::set<Sorted> sorted;
IdentHash destKey = CreateRoutingKey (destination);
XORMetric ourMetric;
if (closeThanUsOnly) ourMetric = destKey ^ i2p::context.GetIdentHash ();
2015-04-10 23:15:13 +03:00
{
std::unique_lock<std::mutex> l(m_FloodfillsMutex);
2016-08-05 21:23:54 +03:00
for (const auto& it: m_Floodfills)
2015-04-10 23:15:13 +03:00
{
if (!it->IsUnreachable ())
2018-01-06 06:48:51 +03:00
{
2015-04-10 23:15:13 +03:00
XORMetric m = destKey ^ it->GetIdentHash ();
if (closeThanUsOnly && ourMetric < m) continue;
2015-04-10 23:15:13 +03:00
if (sorted.size () < num)
sorted.insert ({it, m});
else if (m < sorted.rbegin ()->metric)
{
sorted.insert ({it, m});
sorted.erase (std::prev (sorted.end ()));
}
}
}
}
2018-01-06 06:48:51 +03:00
std::vector<IdentHash> res;
size_t i = 0;
2016-08-05 21:23:54 +03:00
for (const auto& it: sorted)
2015-04-10 23:15:13 +03:00
{
if (i < num)
{
2016-08-05 21:23:54 +03:00
const auto& ident = it.r->GetIdentHash ();
2015-06-11 18:43:35 +03:00
if (!excluded.count (ident))
2018-01-06 06:48:51 +03:00
{
2015-06-11 18:43:35 +03:00
res.push_back (ident);
i++;
}
2015-04-10 23:15:13 +03:00
}
else
break;
2018-01-06 06:48:51 +03:00
}
2015-04-10 23:15:13 +03:00
return res;
}
std::shared_ptr<const RouterInfo> NetDb::GetRandomRouterInFamily(const std::string & fam) const {
return GetRandomRouter(
[fam](std::shared_ptr<const RouterInfo> router)->bool
{
return router->IsFamily(fam);
});
}
2018-01-06 06:48:51 +03:00
std::shared_ptr<const RouterInfo> NetDb::GetClosestNonFloodfill (const IdentHash& destination,
2015-02-03 06:34:55 +03:00
const std::set<IdentHash>& excluded) const
{
std::shared_ptr<const RouterInfo> r;
XORMetric minMetric;
IdentHash destKey = CreateRoutingKey (destination);
minMetric.SetMax ();
// must be called from NetDb thread only
2016-08-05 21:23:54 +03:00
for (const auto& it: m_RouterInfos)
2018-01-06 06:48:51 +03:00
{
2015-04-11 02:49:58 +03:00
if (!it.second->IsFloodfill ())
2018-01-06 06:48:51 +03:00
{
2015-02-03 06:34:55 +03:00
XORMetric m = destKey ^ it.first;
2015-04-11 02:49:58 +03:00
if (m < minMetric && !excluded.count (it.first))
2015-02-03 06:34:55 +03:00
{
minMetric = m;
r = it.second;
}
2018-01-06 06:48:51 +03:00
}
}
2015-02-03 06:34:55 +03:00
return r;
2018-01-06 06:48:51 +03:00
}
2014-07-31 20:59:43 +04:00
void NetDb::ManageLeaseSets ()
{
2016-02-08 03:45:06 +03:00
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
2014-07-31 20:59:43 +04:00
for (auto it = m_LeaseSets.begin (); it != m_LeaseSets.end ();)
{
2019-01-15 02:37:17 +03:00
if (!it->second->IsValid () || ts > it->second->GetExpirationTime () - LEASE_ENDDATE_THRESHOLD)
2014-07-31 20:59:43 +04:00
{
LogPrint (eLogInfo, "NetDb: LeaseSet ", it->first.ToBase64 (), " expired or invalid");
2014-07-31 20:59:43 +04:00
it = m_LeaseSets.erase (it);
2018-01-06 06:48:51 +03:00
}
else
2016-08-05 21:23:54 +03:00
++it;
2014-07-31 20:59:43 +04:00
}
}
2013-11-13 16:59:21 +04:00
}
}