2013-11-13 12:59:21 +00:00
|
|
|
#ifndef NETDB_H__
|
|
|
|
#define NETDB_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2014-01-05 14:53:44 +00:00
|
|
|
#include <set>
|
2013-11-13 12:59:21 +00:00
|
|
|
#include <map>
|
2014-11-21 18:02:46 +00:00
|
|
|
#include <list>
|
2013-11-13 12:59:21 +00:00
|
|
|
#include <string>
|
2013-11-19 01:37:38 +00:00
|
|
|
#include <thread>
|
2014-10-06 01:59:05 +00:00
|
|
|
#include <mutex>
|
2015-11-03 14:15:49 +00:00
|
|
|
#include "Base.h"
|
2016-02-20 01:00:00 +00:00
|
|
|
#include "FS.h"
|
2013-11-20 12:46:09 +00:00
|
|
|
#include "Queue.h"
|
|
|
|
#include "I2NPProtocol.h"
|
2013-11-13 12:59:21 +00:00
|
|
|
#include "RouterInfo.h"
|
|
|
|
#include "LeaseSet.h"
|
2013-12-25 17:19:46 +00:00
|
|
|
#include "Tunnel.h"
|
2014-08-20 15:12:53 +00:00
|
|
|
#include "TunnelPool.h"
|
2015-01-19 18:57:37 +00:00
|
|
|
#include "Reseed.h"
|
2015-04-09 16:45:00 +00:00
|
|
|
#include "NetDbRequests.h"
|
2016-02-18 20:57:43 +00:00
|
|
|
#include "Family.h"
|
2013-11-13 12:59:21 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
|
|
|
{
|
2016-02-24 16:31:14 +00:00
|
|
|
const int NETDB_MIN_ROUTERS = 90;
|
|
|
|
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
|
|
|
|
|
2013-11-13 12:59:21 +00:00
|
|
|
class NetDb
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
NetDb ();
|
|
|
|
~NetDb ();
|
2013-11-19 01:37:38 +00:00
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
2013-11-13 12:59:21 +00:00
|
|
|
|
2016-02-17 20:36:55 +00:00
|
|
|
bool AddRouterInfo (const uint8_t * buf, int len);
|
|
|
|
bool AddRouterInfo (const IdentHash& ident, const uint8_t * buf, int len);
|
|
|
|
bool AddLeaseSet (const IdentHash& ident, const uint8_t * buf, int len, std::shared_ptr<i2p::tunnel::InboundTunnel> from);
|
2014-11-21 16:37:17 +00:00
|
|
|
std::shared_ptr<RouterInfo> FindRouter (const IdentHash& ident) const;
|
2015-01-27 16:27:58 +00:00
|
|
|
std::shared_ptr<LeaseSet> FindLeaseSet (const IdentHash& destination) const;
|
2015-11-03 14:15:49 +00:00
|
|
|
std::shared_ptr<RouterProfile> FindRouterProfile (const IdentHash& ident) const;
|
2014-03-13 20:26:04 +00:00
|
|
|
|
2015-01-14 21:11:09 +00:00
|
|
|
void RequestDestination (const IdentHash& destination, RequestedDestination::RequestComplete requestComplete = nullptr);
|
2014-08-20 15:12:53 +00:00
|
|
|
|
2015-07-04 01:27:40 +00:00
|
|
|
void HandleDatabaseStoreMsg (std::shared_ptr<const I2NPMessage> msg);
|
|
|
|
void HandleDatabaseSearchReplyMsg (std::shared_ptr<const I2NPMessage> msg);
|
|
|
|
void HandleDatabaseLookupMsg (std::shared_ptr<const I2NPMessage> msg);
|
2014-07-23 15:10:03 +00:00
|
|
|
|
2014-11-20 21:20:02 +00:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouter () const;
|
2014-11-21 15:46:11 +00:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouter (std::shared_ptr<const RouterInfo> compatibleWith) const;
|
|
|
|
std::shared_ptr<const RouterInfo> GetHighBandwidthRandomRouter (std::shared_ptr<const RouterInfo> compatibleWith) const;
|
2015-02-26 19:17:16 +00:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomPeerTestRouter () const;
|
2015-02-27 02:05:35 +00:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomIntroducer () const;
|
2016-02-11 20:05:46 +00:00
|
|
|
std::shared_ptr<const RouterInfo> GetClosestFloodfill (const IdentHash& destination, const std::set<IdentHash>& excluded, bool closeThanUsOnly = false) const;
|
2015-06-11 15:43:35 +00:00
|
|
|
std::vector<IdentHash> GetClosestFloodfills (const IdentHash& destination, size_t num,
|
2016-03-03 00:46:32 +00:00
|
|
|
std::set<IdentHash>& excluded, bool closeThanUsOnly = false) const;
|
2015-02-03 03:34:55 +00:00
|
|
|
std::shared_ptr<const RouterInfo> GetClosestNonFloodfill (const IdentHash& destination, const std::set<IdentHash>& excluded) const;
|
2014-10-24 19:39:53 +00:00
|
|
|
void SetUnreachable (const IdentHash& ident, bool unreachable);
|
|
|
|
|
2015-07-04 01:27:40 +00:00
|
|
|
void PostI2NPMsg (std::shared_ptr<const I2NPMessage> msg);
|
2014-06-17 01:23:22 +00:00
|
|
|
|
2015-01-19 18:57:37 +00:00
|
|
|
void Reseed ();
|
2016-02-19 21:37:41 +00:00
|
|
|
Families& GetFamilies () { return m_Families; };
|
2015-01-19 18:57:37 +00:00
|
|
|
|
2015-04-05 17:56:41 +00:00
|
|
|
// for web interface
|
2014-06-17 01:23:22 +00:00
|
|
|
int GetNumRouters () const { return m_RouterInfos.size (); };
|
|
|
|
int GetNumFloodfills () const { return m_Floodfills.size (); };
|
|
|
|
int GetNumLeaseSets () const { return m_LeaseSets.size (); };
|
2013-11-13 12:59:21 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-06-19 19:44:50 +00:00
|
|
|
void Load ();
|
2016-02-11 00:00:00 +00:00
|
|
|
bool LoadRouterInfo (const std::string & path);
|
2015-06-19 19:44:50 +00:00
|
|
|
void SaveUpdated ();
|
2013-11-19 01:37:38 +00:00
|
|
|
void Run (); // exploratory thread
|
2014-12-24 16:20:38 +00:00
|
|
|
void Explore (int numDestinations);
|
2014-02-13 03:02:39 +00:00
|
|
|
void Publish ();
|
2014-07-31 16:59:43 +00:00
|
|
|
void ManageLeaseSets ();
|
2014-12-24 16:20:38 +00:00
|
|
|
void ManageRequests ();
|
2016-03-22 17:10:02 +00:00
|
|
|
void ManageLookupResponses ();
|
2014-01-05 14:53:44 +00:00
|
|
|
|
2014-09-25 01:45:19 +00:00
|
|
|
template<typename Filter>
|
2014-11-20 21:20:02 +00:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouter (Filter filter) const;
|
2014-07-03 18:47:12 +00:00
|
|
|
|
2013-11-13 12:59:21 +00:00
|
|
|
private:
|
|
|
|
|
2015-01-27 16:27:58 +00:00
|
|
|
std::map<IdentHash, std::shared_ptr<LeaseSet> > m_LeaseSets;
|
2014-11-21 18:29:19 +00:00
|
|
|
mutable std::mutex m_RouterInfosMutex;
|
2014-11-18 16:08:10 +00:00
|
|
|
std::map<IdentHash, std::shared_ptr<RouterInfo> > m_RouterInfos;
|
2014-10-06 01:59:05 +00:00
|
|
|
mutable std::mutex m_FloodfillsMutex;
|
2014-11-21 18:02:46 +00:00
|
|
|
std::list<std::shared_ptr<RouterInfo> > m_Floodfills;
|
2014-01-05 14:53:44 +00:00
|
|
|
|
2013-11-19 01:37:38 +00:00
|
|
|
bool m_IsRunning;
|
2016-02-11 00:00:00 +00:00
|
|
|
uint64_t m_LastLoad;
|
2013-11-19 01:37:38 +00:00
|
|
|
std::thread * m_Thread;
|
2015-07-04 01:27:40 +00:00
|
|
|
i2p::util::Queue<std::shared_ptr<const I2NPMessage> > m_Queue; // of I2NPDatabaseStoreMsg
|
2014-02-01 20:57:46 +00:00
|
|
|
|
2015-11-03 14:15:49 +00:00
|
|
|
GzipInflator m_Inflator;
|
2015-01-19 18:57:37 +00:00
|
|
|
Reseeder * m_Reseeder;
|
2016-02-18 20:57:43 +00:00
|
|
|
Families m_Families;
|
2016-02-20 01:00:00 +00:00
|
|
|
i2p::fs::HashedStorage m_Storage;
|
2015-01-19 18:57:37 +00:00
|
|
|
|
2015-05-06 23:18:00 +00:00
|
|
|
friend class NetDbRequests;
|
2015-04-09 16:45:00 +00:00
|
|
|
NetDbRequests m_Requests;
|
2016-03-22 17:10:02 +00:00
|
|
|
|
|
|
|
std::map<IdentHash, std::pair<std::vector<IdentHash>, uint64_t> > m_LookupResponses; // ident->(closest FFs, timestamp)
|
2013-11-13 12:59:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern NetDb netdb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|