2013-11-13 13:59:21 +01:00
|
|
|
#ifndef NETDB_H__
|
|
|
|
#define NETDB_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2014-01-05 15:53:44 +01:00
|
|
|
#include <set>
|
2013-11-13 13:59:21 +01:00
|
|
|
#include <map>
|
2014-11-21 19:02:46 +01:00
|
|
|
#include <list>
|
2013-11-13 13:59:21 +01:00
|
|
|
#include <string>
|
2013-11-19 02:37:38 +01:00
|
|
|
#include <thread>
|
2014-10-06 03:59:05 +02:00
|
|
|
#include <mutex>
|
2014-02-01 21:57:46 +01:00
|
|
|
#include <boost/filesystem.hpp>
|
2013-11-20 13:46:09 +01:00
|
|
|
#include "Queue.h"
|
|
|
|
#include "I2NPProtocol.h"
|
2013-11-13 13:59:21 +01:00
|
|
|
#include "RouterInfo.h"
|
|
|
|
#include "LeaseSet.h"
|
2013-12-25 18:19:46 +01:00
|
|
|
#include "Tunnel.h"
|
2014-08-20 17:12:53 +02:00
|
|
|
#include "TunnelPool.h"
|
2015-01-19 19:57:37 +01:00
|
|
|
#include "Reseed.h"
|
2015-04-09 18:45:00 +02:00
|
|
|
#include "NetDbRequests.h"
|
2013-11-13 13:59:21 +01:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
|
|
|
{
|
2014-01-05 15:53:44 +01:00
|
|
|
|
2013-11-13 13:59:21 +01:00
|
|
|
class NetDb
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
NetDb ();
|
|
|
|
~NetDb ();
|
2013-11-19 02:37:38 +01:00
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
2013-11-13 13:59:21 +01:00
|
|
|
|
2014-12-11 21:41:04 +01:00
|
|
|
void AddRouterInfo (const uint8_t * buf, int len);
|
2014-09-29 22:41:41 +02:00
|
|
|
void AddRouterInfo (const IdentHash& ident, const uint8_t * buf, int len);
|
2015-02-06 00:53:43 +01:00
|
|
|
void AddLeaseSet (const IdentHash& ident, const uint8_t * buf, int len, std::shared_ptr<i2p::tunnel::InboundTunnel> from);
|
2014-11-21 17:37:17 +01:00
|
|
|
std::shared_ptr<RouterInfo> FindRouter (const IdentHash& ident) const;
|
2015-01-27 17:27:58 +01:00
|
|
|
std::shared_ptr<LeaseSet> FindLeaseSet (const IdentHash& destination) const;
|
2014-03-13 21:26:04 +01:00
|
|
|
|
2015-01-14 22:11:09 +01:00
|
|
|
void RequestDestination (const IdentHash& destination, RequestedDestination::RequestComplete requestComplete = nullptr);
|
2014-08-20 17:12:53 +02:00
|
|
|
|
2015-07-04 03:27:40 +02: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 17:10:03 +02:00
|
|
|
|
2014-11-20 22:20:02 +01:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouter () const;
|
2014-11-21 16:46:11 +01: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 20:17:16 +01:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomPeerTestRouter () const;
|
2015-02-27 03:05:35 +01:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomIntroducer () const;
|
2014-11-28 19:01:35 +01:00
|
|
|
std::shared_ptr<const RouterInfo> GetClosestFloodfill (const IdentHash& destination, const std::set<IdentHash>& excluded) const;
|
2015-06-11 17:43:35 +02:00
|
|
|
std::vector<IdentHash> GetClosestFloodfills (const IdentHash& destination, size_t num,
|
|
|
|
std::set<IdentHash>& excluded) const;
|
2015-02-03 04:34:55 +01:00
|
|
|
std::shared_ptr<const RouterInfo> GetClosestNonFloodfill (const IdentHash& destination, const std::set<IdentHash>& excluded) const;
|
2014-10-24 21:39:53 +02:00
|
|
|
void SetUnreachable (const IdentHash& ident, bool unreachable);
|
|
|
|
|
2015-07-04 03:27:40 +02:00
|
|
|
void PostI2NPMsg (std::shared_ptr<const I2NPMessage> msg);
|
2014-06-17 03:23:22 +02:00
|
|
|
|
2015-01-19 19:57:37 +01:00
|
|
|
void Reseed ();
|
|
|
|
|
2015-04-05 19:56:41 +02:00
|
|
|
// for web interface
|
2014-06-17 03:23:22 +02: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 13:59:21 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-02-01 16:10:15 +01:00
|
|
|
bool CreateNetDb(boost::filesystem::path directory);
|
2015-06-19 21:44:50 +02:00
|
|
|
void Load ();
|
|
|
|
void SaveUpdated ();
|
2013-11-19 02:37:38 +01:00
|
|
|
void Run (); // exploratory thread
|
2014-12-24 17:20:38 +01:00
|
|
|
void Explore (int numDestinations);
|
2014-02-13 04:02:39 +01:00
|
|
|
void Publish ();
|
2014-07-31 18:59:43 +02:00
|
|
|
void ManageLeaseSets ();
|
2014-12-24 17:20:38 +01:00
|
|
|
void ManageRequests ();
|
2014-01-05 15:53:44 +01:00
|
|
|
|
2014-09-25 03:45:19 +02:00
|
|
|
template<typename Filter>
|
2014-11-20 22:20:02 +01:00
|
|
|
std::shared_ptr<const RouterInfo> GetRandomRouter (Filter filter) const;
|
2014-07-03 20:47:12 +02:00
|
|
|
|
2013-11-13 13:59:21 +01:00
|
|
|
private:
|
|
|
|
|
2015-01-27 17:27:58 +01:00
|
|
|
std::map<IdentHash, std::shared_ptr<LeaseSet> > m_LeaseSets;
|
2014-11-21 19:29:19 +01:00
|
|
|
mutable std::mutex m_RouterInfosMutex;
|
2014-11-18 17:08:10 +01:00
|
|
|
std::map<IdentHash, std::shared_ptr<RouterInfo> > m_RouterInfos;
|
2014-10-06 03:59:05 +02:00
|
|
|
mutable std::mutex m_FloodfillsMutex;
|
2014-11-21 19:02:46 +01:00
|
|
|
std::list<std::shared_ptr<RouterInfo> > m_Floodfills;
|
2014-01-05 15:53:44 +01:00
|
|
|
|
2013-11-19 02:37:38 +01:00
|
|
|
bool m_IsRunning;
|
|
|
|
std::thread * m_Thread;
|
2015-07-04 03:27:40 +02:00
|
|
|
i2p::util::Queue<std::shared_ptr<const I2NPMessage> > m_Queue; // of I2NPDatabaseStoreMsg
|
2014-02-01 21:57:46 +01:00
|
|
|
|
2015-01-19 19:57:37 +01:00
|
|
|
Reseeder * m_Reseeder;
|
|
|
|
|
2015-05-07 01:18:00 +02:00
|
|
|
friend class NetDbRequests;
|
2015-04-09 18:45:00 +02:00
|
|
|
NetDbRequests m_Requests;
|
|
|
|
|
2014-02-01 21:57:46 +01:00
|
|
|
static const char m_NetDbPath[];
|
2013-11-13 13:59:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern NetDb netdb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|