2020-05-22 16:18:41 +03:00
|
|
|
/*
|
2022-01-01 15:12:59 -05:00
|
|
|
* Copyright (c) 2013-2022, The PurpleI2P Project
|
2020-05-22 16:18:41 +03:00
|
|
|
*
|
|
|
|
* 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-11-13 07:59:21 -05:00
|
|
|
#ifndef NETDB_H__
|
|
|
|
#define NETDB_H__
|
2017-04-21 20:04:16 -04:00
|
|
|
// this file is called NetDb.hpp to resolve conflict with libc's netdb.h on case insensitive fs
|
2013-11-13 07:59:21 -05:00
|
|
|
#include <inttypes.h>
|
2014-01-05 09:53:44 -05:00
|
|
|
#include <set>
|
2020-07-07 15:38:20 -04:00
|
|
|
#include <unordered_map>
|
2014-11-21 13:02:46 -05:00
|
|
|
#include <list>
|
2013-11-13 07:59:21 -05:00
|
|
|
#include <string>
|
2013-11-18 20:37:38 -05:00
|
|
|
#include <thread>
|
2014-10-05 21:59:05 -04:00
|
|
|
#include <mutex>
|
2016-06-28 00:00:00 +00:00
|
|
|
|
2015-11-03 09:15:49 -05:00
|
|
|
#include "Base.h"
|
2016-06-28 00:00:00 +00:00
|
|
|
#include "Gzip.h"
|
2016-02-20 01:00:00 +00:00
|
|
|
#include "FS.h"
|
2013-11-20 07:46:09 -05:00
|
|
|
#include "Queue.h"
|
|
|
|
#include "I2NPProtocol.h"
|
2013-11-13 07:59:21 -05:00
|
|
|
#include "RouterInfo.h"
|
|
|
|
#include "LeaseSet.h"
|
2013-12-25 12:19:46 -05:00
|
|
|
#include "Tunnel.h"
|
2014-08-20 11:12:53 -04:00
|
|
|
#include "TunnelPool.h"
|
2015-01-19 13:57:37 -05:00
|
|
|
#include "Reseed.h"
|
2015-04-09 12:45:00 -04:00
|
|
|
#include "NetDbRequests.h"
|
2016-02-18 15:57:43 -05:00
|
|
|
#include "Family.h"
|
2020-05-20 14:59:18 -04:00
|
|
|
#include "version.h"
|
2021-12-30 15:16:13 -05:00
|
|
|
#include "util.h"
|
2013-11-13 07:59:21 -05:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
2018-01-06 11:48:51 +08:00
|
|
|
{
|
2016-02-24 11:31:14 -05:00
|
|
|
const int NETDB_MIN_ROUTERS = 90;
|
2021-08-26 15:13:58 -04:00
|
|
|
const int NETDB_MIN_FLOODFILLS = 5;
|
2020-03-01 13:25:50 +03:00
|
|
|
const int NETDB_FLOODFILL_EXPIRATION_TIMEOUT = 60 * 60; // 1 hour, in seconds
|
|
|
|
const int NETDB_INTRODUCEE_EXPIRATION_TIMEOUT = 65 * 60;
|
|
|
|
const int NETDB_MIN_EXPIRATION_TIMEOUT = 90 * 60; // 1.5 hours
|
|
|
|
const int NETDB_MAX_EXPIRATION_TIMEOUT = 27 * 60 * 60; // 27 hours
|
2022-02-13 15:42:06 -05:00
|
|
|
const int NETDB_MAX_OFFLINE_EXPIRATION_TIMEOUT = 180; // in days
|
2020-03-01 13:25:50 +03:00
|
|
|
const int NETDB_PUBLISH_INTERVAL = 60 * 40;
|
2020-11-15 13:06:02 -05:00
|
|
|
const int NETDB_PUBLISH_CONFIRMATION_TIMEOUT = 5; // in seconds
|
2021-11-27 23:30:35 +03:00
|
|
|
const int NETDB_MAX_PUBLISH_EXCLUDED_FLOODFILLS = 15;
|
2020-03-01 13:25:50 +03:00
|
|
|
const int NETDB_MIN_HIGHBANDWIDTH_VERSION = MAKE_VERSION_NUMBER(0, 9, 36); // 0.9.36
|
2021-07-19 17:50:55 -04:00
|
|
|
const int NETDB_MIN_FLOODFILL_VERSION = MAKE_VERSION_NUMBER(0, 9, 38); // 0.9.38
|
2021-07-22 20:58:35 -04:00
|
|
|
const int NETDB_MIN_SHORT_TUNNEL_BUILD_VERSION = MAKE_VERSION_NUMBER(0, 9, 51); // 0.9.51
|
2016-07-15 09:38:21 -04:00
|
|
|
|
2016-07-15 13:52:55 -04:00
|
|
|
/** function for visiting a leaseset stored in a floodfill */
|
|
|
|
typedef std::function<void(const IdentHash, std::shared_ptr<LeaseSet>)> LeaseSetVisitor;
|
2016-08-29 14:16:29 -04:00
|
|
|
|
|
|
|
/** function for visiting a router info we have locally */
|
2018-01-06 11:48:51 +08:00
|
|
|
typedef std::function<void(std::shared_ptr<const i2p::data::RouterInfo>)> RouterInfoVisitor;
|
2016-08-30 15:54:53 -04:00
|
|
|
|
|
|
|
/** function for visiting a router info and determining if we want to use it */
|
2016-08-30 19:59:24 -04:00
|
|
|
typedef std::function<bool(std::shared_ptr<const i2p::data::RouterInfo>)> RouterInfoFilter;
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2013-11-13 07:59:21 -05:00
|
|
|
class NetDb
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
NetDb ();
|
|
|
|
~NetDb ();
|
2013-11-18 20:37:38 -05:00
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2022-07-19 14:06:00 -04:00
|
|
|
std::shared_ptr<const RouterInfo> AddRouterInfo (const uint8_t * buf, int len);
|
2016-02-17 15:36:55 -05:00
|
|
|
bool AddRouterInfo (const IdentHash& ident, const uint8_t * buf, int len);
|
2019-01-16 19:00:17 -05:00
|
|
|
bool AddLeaseSet (const IdentHash& ident, const uint8_t * buf, int len);
|
2018-12-21 15:00:03 -05:00
|
|
|
bool AddLeaseSet2 (const IdentHash& ident, const uint8_t * buf, int len, uint8_t storeType);
|
2014-11-21 11:37:17 -05:00
|
|
|
std::shared_ptr<RouterInfo> FindRouter (const IdentHash& ident) const;
|
2015-01-27 11:27:58 -05:00
|
|
|
std::shared_ptr<LeaseSet> FindLeaseSet (const IdentHash& destination) const;
|
2015-11-03 09:15:49 -05:00
|
|
|
std::shared_ptr<RouterProfile> FindRouterProfile (const IdentHash& ident) const;
|
2014-03-13 16:26:04 -04:00
|
|
|
|
2020-10-03 17:20:04 -04:00
|
|
|
void RequestDestination (const IdentHash& destination, RequestedDestination::RequestComplete requestComplete = nullptr, bool direct = true);
|
2020-03-01 13:25:50 +03:00
|
|
|
void RequestDestinationFrom (const IdentHash& destination, const IdentHash & from, bool exploritory, RequestedDestination::RequestComplete requestComplete = nullptr);
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2015-07-03 21:27:40 -04:00
|
|
|
void HandleDatabaseStoreMsg (std::shared_ptr<const I2NPMessage> msg);
|
|
|
|
void HandleDatabaseSearchReplyMsg (std::shared_ptr<const I2NPMessage> msg);
|
2018-01-06 11:48:51 +08:00
|
|
|
void HandleDatabaseLookupMsg (std::shared_ptr<const I2NPMessage> msg);
|
2018-11-21 11:23:48 -05:00
|
|
|
void HandleNTCP2RouterInfoMsg (std::shared_ptr<const I2NPMessage> m);
|
2020-11-15 13:06:02 -05:00
|
|
|
void HandleDeliveryStatusMsg (std::shared_ptr<const I2NPMessage> msg);
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2014-11-20 16:20:02 -05:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouter () const;
|
2021-03-01 19:02:27 -05:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouter (std::shared_ptr<const RouterInfo> compatibleWith, bool reverse) const;
|
|
|
|
std::shared_ptr<const RouterInfo> GetHighBandwidthRandomRouter (std::shared_ptr<const RouterInfo> compatibleWith, bool reverse) const;
|
2021-04-17 14:33:53 -04:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomPeerTestRouter (bool v4, const std::set<IdentHash>& excluded) const;
|
2022-06-01 21:51:02 -04:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomSSU2PeerTestRouter (bool v4, const std::set<IdentHash>& excluded) const;
|
2019-05-23 15:59:44 -04:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomSSUV6Router () const; // TODO: change to v6 peer test later
|
2021-04-24 11:11:12 -04:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomIntroducer (bool v4, const std::set<IdentHash>& excluded) const;
|
2022-07-19 18:38:58 -04:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomSSU2Introducer (bool v4, const std::set<IdentHash>& excluded) const;
|
2016-02-11 15:05:46 -05:00
|
|
|
std::shared_ptr<const RouterInfo> GetClosestFloodfill (const IdentHash& destination, const std::set<IdentHash>& excluded, bool closeThanUsOnly = false) const;
|
2015-06-11 11:43:35 -04:00
|
|
|
std::vector<IdentHash> GetClosestFloodfills (const IdentHash& destination, size_t num,
|
2016-03-02 19:46:32 -05:00
|
|
|
std::set<IdentHash>& excluded, bool closeThanUsOnly = false) const;
|
2015-02-02 22:34:55 -05:00
|
|
|
std::shared_ptr<const RouterInfo> GetClosestNonFloodfill (const IdentHash& destination, const std::set<IdentHash>& excluded) const;
|
2022-03-24 15:50:20 -04:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouterInFamily (FamilyID fam) const;
|
2018-01-06 11:48:51 +08:00
|
|
|
void SetUnreachable (const IdentHash& ident, bool unreachable);
|
2014-10-24 15:39:53 -04:00
|
|
|
|
2015-07-03 21:27:40 -04:00
|
|
|
void PostI2NPMsg (std::shared_ptr<const I2NPMessage> msg);
|
2014-06-16 21:23:22 -04:00
|
|
|
|
2020-03-01 13:25:50 +03:00
|
|
|
/** set hidden mode, aka don't publish our RI to netdb and don't explore */
|
|
|
|
void SetHidden(bool hide);
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2015-01-19 13:57:37 -05:00
|
|
|
void Reseed ();
|
2016-02-19 16:37:41 -05:00
|
|
|
Families& GetFamilies () { return m_Families; };
|
2015-01-19 13:57:37 -05:00
|
|
|
|
2015-04-05 13:56:41 -04:00
|
|
|
// for web interface
|
2014-06-16 21:23:22 -04:00
|
|
|
int GetNumRouters () const { return m_RouterInfos.size (); };
|
|
|
|
int GetNumFloodfills () const { return m_Floodfills.size (); };
|
|
|
|
int GetNumLeaseSets () const { return m_LeaseSets.size (); };
|
2016-07-15 09:38:21 -04:00
|
|
|
|
2016-07-15 13:52:55 -04:00
|
|
|
/** visit all lease sets we currently store */
|
|
|
|
void VisitLeaseSets(LeaseSetVisitor v);
|
2016-08-29 14:16:29 -04:00
|
|
|
/** visit all router infos we have currently on disk, usually insanely expensive, does not access in memory RI */
|
|
|
|
void VisitStoredRouterInfos(RouterInfoVisitor v);
|
|
|
|
/** visit all router infos we have loaded in memory, cheaper than VisitLocalRouterInfos but locks access while visiting */
|
|
|
|
void VisitRouterInfos(RouterInfoVisitor v);
|
2016-08-30 15:54:53 -04:00
|
|
|
/** visit N random router that match using filter, then visit them with a visitor, return number of RouterInfos that were visited */
|
|
|
|
size_t VisitRandomRouterInfos(RouterInfoFilter f, RouterInfoVisitor v, size_t n);
|
2016-11-14 12:05:44 -05:00
|
|
|
|
2016-11-14 16:23:42 -05:00
|
|
|
void ClearRouterInfos () { m_RouterInfos.clear (); };
|
2021-12-30 15:16:13 -05:00
|
|
|
std::shared_ptr<RouterInfo::Buffer> NewRouterInfoBuffer () { return m_RouterInfoBuffersPool.AcquireSharedMt (); };
|
2022-06-15 13:10:49 -04:00
|
|
|
void PopulateRouterInfoBuffer (std::shared_ptr<RouterInfo> r);
|
2022-08-09 19:40:07 -04:00
|
|
|
std::shared_ptr<Lease> NewLease (const Lease& lease) { return m_LeasesPool.AcquireSharedMt (lease); };
|
2022-05-20 19:56:05 +03:00
|
|
|
|
2020-11-15 13:06:02 -05:00
|
|
|
uint32_t GetPublishReplyToken () const { return m_PublishReplyToken; };
|
|
|
|
|
2013-11-13 07:59:21 -05:00
|
|
|
private:
|
|
|
|
|
2015-06-19 14:44:50 -05:00
|
|
|
void Load ();
|
2022-02-13 15:42:06 -05:00
|
|
|
bool LoadRouterInfo (const std::string& path, uint64_t ts);
|
2015-06-19 14:44:50 -05:00
|
|
|
void SaveUpdated ();
|
2013-11-18 20:37:38 -05:00
|
|
|
void Run (); // exploratory thread
|
2018-01-06 11:48:51 +08:00
|
|
|
void Explore (int numDestinations);
|
2014-02-12 22:02:39 -05:00
|
|
|
void Publish ();
|
2018-11-21 13:24:54 -05:00
|
|
|
void Flood (const IdentHash& ident, std::shared_ptr<I2NPMessage> floodMsg);
|
2014-07-31 12:59:43 -04:00
|
|
|
void ManageLeaseSets ();
|
2014-12-24 11:20:38 -05:00
|
|
|
void ManageRequests ();
|
2014-01-05 09:53:44 -05:00
|
|
|
|
2020-03-01 13:25:50 +03:00
|
|
|
void ReseedFromFloodfill(const RouterInfo & ri, int numRouters = 40, int numFloodfills = 20);
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2018-11-21 13:24:54 -05:00
|
|
|
std::shared_ptr<const RouterInfo> AddRouterInfo (const uint8_t * buf, int len, bool& updated);
|
|
|
|
std::shared_ptr<const RouterInfo> AddRouterInfo (const IdentHash& ident, const uint8_t * buf, int len, bool& updated);
|
2020-03-01 13:25:50 +03:00
|
|
|
|
|
|
|
template<typename Filter>
|
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouter (Filter filter) const;
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2013-11-13 07:59:21 -05:00
|
|
|
private:
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2016-07-15 13:52:55 -04:00
|
|
|
mutable std::mutex m_LeaseSetsMutex;
|
2020-07-07 15:38:20 -04:00
|
|
|
std::unordered_map<IdentHash, std::shared_ptr<LeaseSet> > m_LeaseSets;
|
2014-11-21 13:29:19 -05:00
|
|
|
mutable std::mutex m_RouterInfosMutex;
|
2020-07-07 15:38:20 -04:00
|
|
|
std::unordered_map<IdentHash, std::shared_ptr<RouterInfo> > m_RouterInfos;
|
2014-10-05 21:59:05 -04:00
|
|
|
mutable std::mutex m_FloodfillsMutex;
|
2014-11-21 13:02:46 -05:00
|
|
|
std::list<std::shared_ptr<RouterInfo> > m_Floodfills;
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2013-11-18 20:37:38 -05:00
|
|
|
bool m_IsRunning;
|
2018-01-06 11:48:51 +08:00
|
|
|
std::thread * m_Thread;
|
2015-07-03 21:27:40 -04:00
|
|
|
i2p::util::Queue<std::shared_ptr<const I2NPMessage> > m_Queue; // of I2NPDatabaseStoreMsg
|
2014-02-01 15:57:46 -05:00
|
|
|
|
2015-11-03 09:15:49 -05:00
|
|
|
GzipInflator m_Inflator;
|
2015-01-19 13:57:37 -05:00
|
|
|
Reseeder * m_Reseeder;
|
2016-02-18 15:57:43 -05:00
|
|
|
Families m_Families;
|
2016-02-20 01:00:00 +00:00
|
|
|
i2p::fs::HashedStorage m_Storage;
|
2015-01-19 13:57:37 -05:00
|
|
|
|
2018-01-06 11:48:51 +08:00
|
|
|
friend class NetDbRequests;
|
2015-04-09 12:45:00 -04:00
|
|
|
NetDbRequests m_Requests;
|
2016-03-22 13:10:02 -04:00
|
|
|
|
2018-11-22 00:13:23 +03:00
|
|
|
bool m_PersistProfiles;
|
|
|
|
|
2020-03-01 13:25:50 +03:00
|
|
|
/** router info we are bootstrapping from or nullptr if we are not currently doing that*/
|
|
|
|
std::shared_ptr<RouterInfo> m_FloodfillBootstrap;
|
2018-01-06 11:48:51 +08:00
|
|
|
|
2020-03-01 13:25:50 +03:00
|
|
|
/** true if in hidden mode */
|
|
|
|
bool m_HiddenMode;
|
2020-11-15 13:06:02 -05:00
|
|
|
|
|
|
|
std::set<IdentHash> m_PublishExcluded;
|
|
|
|
uint32_t m_PublishReplyToken = 0;
|
2021-12-30 15:16:13 -05:00
|
|
|
|
|
|
|
i2p::util::MemoryPoolMt<RouterInfo::Buffer> m_RouterInfoBuffersPool;
|
2022-08-09 19:40:07 -04:00
|
|
|
i2p::util::MemoryPoolMt<Lease> m_LeasesPool;
|
2013-11-13 07:59:21 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
extern NetDb netdb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|