#include #include #include #include #include #include #include "netbase.h" #include "protocol.h" #include "util.h" #define TAU 86400.0 #define MIN_RETRY 1000 class CAddrInfo { private: CIPPort ip; uint64_t services; time_t lastTry; time_t ourLastTry; double reliability; double timing; double weight; double count; int total; int success; public: bool IsGood() { return (weight > 0 && reliability/weight > 0.8 && timing/weight < 86400) && ip.GetPort() == 8333; } bool IsTerrible() { return (weight > 0.5 & reliability/weight < 0.2 && timing/weight < 86400 && count/weight > 2.0); } void Update(bool good); friend class CAddrDb; }; // seen nodes // / \ // (a) banned nodes tracked nodes // / \ // tried nodes (b) unknown nodes // / \ // (d) good nodes (c) non-good nodes class CAddrDb { private: CCriticalSection cs; int nId; // number of address id's std::map idToInfo; // map address id to address info (b,c,d) std::map ipToId; // map ip to id (b,c,d) std::deque ourId; // sequence of tried nodes, in order we have tried connecting to them (c,d) std::set unkId; // set of nodes not yet tried (b) std::set goodId; // set of good nodes (d) std::map banned; // nodes that are banned, with their unban time (a) protected: void Add_(const CAddress &addr); void Good_(const CIPPort &ip); void Bad_(const CIPPort &ip, int ban); void Skipped_(const CIPPort &ip); bool Get_(CIPPort &ip); int Lookup_(const CIPPort &ip); void GetIPs_(std::set& ips, int max, bool fOnlyIPv4); public: void Stats() { CRITICAL_BLOCK(cs) printf("**** %i good, %lu our, %i unk, %i banned; %i known ips\n", (int)goodId.size(), (unsigned long)ourId.size(), (int)unkId.size(), (int)banned.size(), (int)ipToId.size()); } void Add(const CAddress &addr) { CRITICAL_BLOCK(cs) Add_(addr); } void Add(const std::vector &vAddr) { CRITICAL_BLOCK(cs) for (int i=0; i& ips, int max, bool fOnlyIPv4 = true) { CRITICAL_BLOCK(cs) GetIPs_(ips, max, fOnlyIPv4); } };