123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "crypto/random/Random.h"
- #include "dht/Address.h"
- #include "dht/dhtcore/Janitor.h"
- #include "dht/dhtcore/Node.h"
- #include "dht/dhtcore/NodeList.h"
- #include "dht/dhtcore/RumorMill.h"
- #include "dht/dhtcore/RouterModule.h"
- #include "dht/dhtcore/SearchRunner.h"
- #include "dht/dhtcore/ReplySerializer.h"
- #include "benc/Object.h"
- #include "memory/Allocator.h"
- #include "switch/LabelSplicer.h"
- #include "util/AddrTools.h"
- #include "util/AverageRoller.h"
- #include "util/Bits.h"
- #include "util/events/EventBase.h"
- #include "util/Hex.h"
- #include "util/events/Timeout.h"
- #include "util/events/Time.h"
- #include "util/Defined.h"
- #include <stdint.h>
- #include <stdbool.h>
- #define MAX_SEARCHES 10
- /**
- * The goal of this is to run searches in the local area of this node.
- * it searches for hashes every localMaintainenceSearchPeriod milliseconds.
- * it runs searches by picking hashes at random, if a hash is chosen and there is a
- * non-zero-reach node which services that space, it stops. This way it will run many
- * searches early on but as the number of known nodes increases, it begins to taper off.
- */
- struct Janitor
- {
- struct RouterModule* routerModule;
- struct NodeStore* nodeStore;
- struct SearchRunner* searchRunner;
- // Externally accessible RumorMill.
- // Used for direct peers and search results that are closer than the responder.
- struct RumorMill* rumorMill;
- // High priority RumorMill.
- // Used to discover new links to nodes we already know about.
- struct RumorMill* linkMill;
- // Low priority RumorMill.
- // Used to discover new nodes.
- struct RumorMill* nodeMill;
- // Just used to keep track of nodes that we need to check on for DHT health.
- struct RumorMill* dhtMill;
- struct Timeout* timeout;
- struct Log* logger;
- uint64_t globalMaintainenceMilliseconds;
- uint64_t timeOfNextGlobalMaintainence;
- uint64_t localMaintainenceMilliseconds;
- struct Allocator* allocator;
- uint64_t timeOfNextSearchRepeat;
- uint64_t searchRepeatMilliseconds;
- struct EventBase* eventBase;
- struct Random* rand;
- /** Number of concurrent searches taking place. */
- int searches;
- Identity
- };
- struct Janitor_Search
- {
- struct Janitor* janitor;
- struct Address best;
- uint8_t target[16];
- struct Allocator* alloc;
- Identity
- };
- static void responseCallback(struct RouterModule_Promise* promise,
- uint32_t lagMilliseconds,
- struct Address* from,
- Dict* result)
- {
- struct Janitor_Search* search = Identity_check((struct Janitor_Search*)promise->userData);
- if (from) {
- Bits_memcpyConst(&search->best, from, sizeof(struct Address));
- return;
- }
- search->janitor->searches--;
- if (!search->best.path) {
- Log_debug(search->janitor->logger, "Search completed with no nodes found");
- }
- Allocator_free(search->alloc);
- }
- static void search(uint8_t target[16], struct Janitor* janitor)
- {
- if (janitor->searches >= MAX_SEARCHES) {
- Log_debug(janitor->logger, "Skipping search because 20 are in progress");
- return;
- }
- #ifdef Log_DEBUG
- uint8_t targetStr[40];
- AddrTools_printIp(targetStr, target);
- Log_debug(janitor->logger, "Beginning search for [%s]", targetStr);
- #endif
- struct Allocator* searchAlloc = Allocator_child(janitor->allocator);
- struct RouterModule_Promise* rp =
- SearchRunner_search(target, janitor->searchRunner, searchAlloc);
- if (!rp) {
- Log_debug(janitor->logger, "SearchRunner_search() returned NULL, probably full.");
- Allocator_free(searchAlloc);
- return;
- }
- janitor->searches++;
- struct Janitor_Search* search = Allocator_clone(rp->alloc, (&(struct Janitor_Search) {
- .janitor = janitor,
- .alloc = searchAlloc,
- }));
- Identity_set(search);
- Bits_memcpyConst(search->target, target, 16);
- rp->callback = responseCallback;
- rp->userData = search;
- }
- static void searchNoDupe(uint8_t target[Address_SEARCH_TARGET_SIZE], struct Janitor* janitor)
- {
- // See if we're already searching for this address.
- struct Allocator* seachListAlloc = Allocator_child(janitor->allocator);
- struct SearchRunner_SearchData* searchData;
- for (int i = 0; i < SearchRunner_DEFAULT_MAX_CONCURRENT_SEARCHES; i++) {
- searchData = SearchRunner_showActiveSearch(janitor->searchRunner,
- i,
- seachListAlloc);
- if (!searchData) { continue; }
- if (!Bits_memcmp(searchData->target, target, Address_SEARCH_TARGET_SIZE)) {
- // Already have a search going for this address, so nothing to do.
- Allocator_free(seachListAlloc);
- return;
- }
- }
- Allocator_free(seachListAlloc);
- // There's no search running for this address, so we start one.
- search(target, janitor);
- #ifdef Log_DEBUG
- uint8_t addrStr[40];
- AddrTools_printIp(addrStr, target);
- Log_debug(janitor->logger, "No active search for [%s], starting one.", addrStr);
- #endif
- }
- static void dhtResponseCallback(struct RouterModule_Promise* promise,
- uint32_t lagMilliseconds,
- struct Address* from,
- Dict* result)
- {
- struct Janitor* janitor = Identity_check((struct Janitor*)promise->userData);
- if (!from) { return; }
- struct Address_List* addresses =
- ReplySerializer_parse(from, result, janitor->logger, promise->alloc);
- struct Node_Two* parent = NodeStore_nodeForAddr(janitor->nodeStore, from->ip6.bytes);
- if (!parent) { return; }
- struct Address* selfAddr = janitor->nodeStore->selfAddress;
- for (int i = 0; addresses && i < addresses->length; i++) {
- if (addresses->elems[i].path == NodeStore_optimizePath_INVALID) {
- // Impossible to ping this (label is probably too large).
- continue;
- }
- if (Address_closest(selfAddr, from, &addresses->elems[i]) < 0) {
- // Address is further from us than the node we asked. Skip it.
- // FIXME(arceliar): Probably need stronger requirements than this.
- continue;
- }
- struct Node_Link* link = NodeStore_linkForPath(janitor->nodeStore,
- addresses->elems[i].path);
- if (link) {
- // We already know about this path and mill space is precious. Skip it.
- continue;
- }
- // Possibly interesting for dht reasons.
- RumorMill_addNode(janitor->dhtMill, &addresses->elems[i]);
- }
- }
- static void peersResponseCallback(struct RouterModule_Promise* promise,
- uint32_t lagMilliseconds,
- struct Address* from,
- Dict* result)
- {
- struct Janitor* janitor = Identity_check((struct Janitor*)promise->userData);
- if (!from) { return; }
- struct Address_List* addresses =
- ReplySerializer_parse(from, result, janitor->logger, promise->alloc);
- struct Node_Two* parent = NodeStore_nodeForAddr(janitor->nodeStore, from->ip6.bytes);
- if (!parent) { return; }
- int loopCount = 0;
- for (int i = 0; addresses && i < addresses->length; i++) {
- // they're telling us about themselves, how helpful...
- if (!Bits_memcmp(addresses->elems[i].key, from->key, 32)) { continue; }
- struct Node_Link* nl = NodeStore_linkForPath(janitor->nodeStore, addresses->elems[i].path);
- if (!nl || Bits_memcmp(nl->child->address.ip6.bytes,
- addresses->elems[i].ip6.bytes,
- Address_SEARCH_TARGET_SIZE))
- {
- struct Node_Two* node = NodeStore_nodeForAddr(janitor->nodeStore,
- addresses->elems[i].ip6.bytes);
- if (node) {
- RumorMill_addNode(janitor->linkMill, &addresses->elems[i]);
- } else {
- // First check if this node would be useful for keyspace reasons.
- uint16_t bucketNodes = 0;
- uint16_t bucket = NodeStore_bucketForAddr(janitor->nodeStore->selfAddress,
- &addresses->elems[i]);
- struct Allocator* nodeListAlloc = Allocator_child(janitor->allocator);
- struct NodeList* nodeList = NodeStore_getNodesForBucket(janitor->nodeStore,
- nodeListAlloc,
- bucket,
- NodeStore_bucketSize);
- for (uint32_t i = 0 ; i < nodeList->size ; i++) {
- if (nodeList->nodes[i] == janitor->nodeStore->selfNode) { continue; }
- if (nodeList->nodes[i]->address.path == UINT64_MAX) { continue; }
- bucketNodes++;
- }
- Allocator_free(nodeListAlloc);
- if (bucketNodes < NodeStore_bucketSize) {
- // Add it and move on to the next address.
- RumorMill_addNode(janitor->nodeMill, &addresses->elems[i]);
- continue;
- }
- // If it's not required for keyspace, then check if it can split a path.
- node = NodeStore_getNextNode(janitor->nodeStore, NULL);
- while (node) {
- if (LabelSplicer_routesThrough(node->address.path, addresses->elems[i].path)) {
- RumorMill_addNode(janitor->nodeMill, &addresses->elems[i]);
- break;
- }
- node = NodeStore_getNextNode(janitor->nodeStore, node);
- }
- }
- } else if (!Address_isSameIp(&addresses->elems[i], &nl->child->address)) {
- if (nl->parent != parent) {
- #ifdef Log_INFO
- uint8_t newAddr[60];
- Address_print(newAddr, from);
- uint8_t labelStr[20];
- AddrTools_printPath(labelStr, nl->cannonicalLabel);
- Log_info(janitor->logger, "Apparently [%s] reported [%s] as it's peer",
- newAddr, labelStr);
- #endif
- continue;
- }
- #ifdef Log_INFO
- uint8_t newAddr[60];
- Address_print(newAddr, from);
- Log_info(janitor->logger, "Apparently [%s] has renumbered it's switch", newAddr);
- #endif
- struct Node_Link* link = NodeStore_nextLink(parent, NULL);
- while (link) {
- struct Node_Link* nextLink = NodeStore_nextLink(parent, link);
- NodeStore_unlinkNodes(janitor->nodeStore, link);
- link = nextLink;
- // restart from the beginning...
- i = 0;
- Assert_true(!loopCount);
- }
- Assert_true(!NodeStore_nextLink(parent, NULL));
- loopCount++;
- }
- }
- }
- static bool checkPeers(struct Janitor* janitor, struct Node_Two* n)
- {
- // Lets check for non-one-hop links at each node along the path between us and this node.
- uint64_t path = n->address.path;
- struct Node_Link* link = NULL;
- for (;;) {
- link = NodeStore_firstHopInPath(janitor->nodeStore, path, &path, link);
- if (!link) { break; }
- if (link->parent == janitor->nodeStore->selfNode) { continue; }
- struct Node_Link* l = NULL;
- do {
- l = NodeStore_nextLink(link->child, l);
- if (l && (!Node_isOneHopLink(l) || Node_getReach(link->parent) == 0)) {
- struct RouterModule_Promise* rp =
- RouterModule_getPeers(&link->parent->address, l->cannonicalLabel, 0,
- janitor->routerModule, janitor->allocator);
- rp->callback = peersResponseCallback;
- rp->userData = janitor;
- // Only send max 1 getPeers req per second.
- return true;
- }
- } while (l);
- }
- return false;
- }
- /**
- * For a Distributed Hash Table to work, each node must know a valid next hop for every possible
- * lookup, unless no such node exists in the network (i.e. the final hop is either us or offline).
- *
- * This function queries other nodes to find valid next hops for any address.
- */
- static void keyspaceMaintenance(struct Janitor* janitor)
- {
- struct Address addr;
- struct Address* selfAddr = janitor->nodeStore->selfAddress;
- if (!RumorMill_getNode(janitor->dhtMill, &addr)) {
- // Try to fill the dhtMill for next time.
- for (uint16_t bucket = 0; bucket < NodeStore_bucketNumber ; bucket++) {
- // Check if there's a valid next hop for this bit in keyspace.
- struct Allocator* nodeListAlloc = Allocator_child(janitor->allocator);
- struct NodeList* nodeList = NodeStore_getNodesForBucket(janitor->nodeStore,
- nodeListAlloc,
- bucket,
- NodeStore_bucketSize);
- for (uint32_t i = 0 ; i < nodeList->size ; i++) {
- if (nodeList->nodes[i] == janitor->nodeStore->selfNode) { continue; }
- if (nodeList->nodes[i]->address.path == UINT64_MAX) { continue; }
- // There's a valid next hop.
- RumorMill_addNode(janitor->dhtMill, &nodeList->nodes[i]->address);
- }
- Allocator_free(nodeListAlloc);
- }
- return;
- }
- struct Node_Two* node = NodeStore_nodeForAddr(janitor->nodeStore, addr.ip6.bytes);
- if (node && node->address.path == addr.path) {
- if (checkPeers(janitor, node)) {
- // If the mills never empty, then returning here can block the dht.
- // This would be a sign that the nodeStore is too small for the network size.
- // Also blocked if we fail to correctly split the link when we find a hop in the middle.
- return;
- }
- //FIXME(arceliar): This target probably isn't optimal.
- uint16_t bucket = NodeStore_bucketForAddr(selfAddr, &addr);
- struct Address target = NodeStore_addrForBucket(&addr, bucket);
- struct RouterModule_Promise* rp = RouterModule_findNode(&addr,
- target.ip6.bytes,
- 0,
- janitor->routerModule,
- janitor->allocator);
- rp->callback = dhtResponseCallback;
- rp->userData = janitor;
- #ifdef Log_DEBUG
- uint8_t addrStr[60];
- Address_print(addrStr, &addr);
- Log_debug(janitor->logger, "Sending findNode to [%s] from "
- "dht-checking RumorMill", addrStr);
- #endif
- } else {
- // Node not already in our routing table.
- // Ping them. If they're good, we'll ask them to findNodes our next round.
- RouterModule_pingNode(&addr, 0, janitor->routerModule, janitor->allocator);
- #ifdef Log_DEBUG
- uint8_t addrStr[60];
- Address_print(addrStr, &addr);
- Log_debug(janitor->logger, "Pinging possible node [%s] from "
- "dht-checking RumorMill", addrStr);
- #endif
- }
- return;
- searchNoDupe(addr.ip6.bytes, janitor); // The last search, unaccessible.
- }
- // Iterate over all nodes in the table. Try to split any split-able links.
- static void splitLinks(struct Janitor* janitor)
- {
- return; // TODO(cjd): Enabled until we figure out if it's still needed.
- struct Node_Two* node = NodeStore_getNextNode(janitor->nodeStore, NULL);
- while (node) {
- struct Node_Link* bestParent = Node_getBestParent(node);
- if (bestParent) {
- struct Node_Link* link = NodeStore_nextLink(node, NULL);
- while (link) {
- if (!Node_isOneHopLink(link)) {
- RumorMill_addNode(janitor->linkMill, &node->address);
- break;
- }
- link = NodeStore_nextLink(node, link);
- }
- }
- node = NodeStore_getNextNode(janitor->nodeStore, node);
- }
- }
- static struct Node_Two* getRandomNode(struct Random* rand, struct NodeStore* store)
- {
- uint32_t index = Random_uint32(rand) % (store->nodeCount);
- struct Node_Two* node = NULL;
- do {
- node = NodeStore_getNextNode(store, node);
- } while (index--);
- // there's always the self node
- Assert_true(node);
- return node;
- }
- static void getPeersMill(struct Janitor* janitor, struct Address* addr)
- {
- // If we have a node in the store and we ping the same path with a different address
- // it can cause an error packet which causes the *good* link to be destroyed.
- // Therefore we will always ping the node which we believe to be at the end of the
- // path and if there is an error, we will flush the link rediscover the path later.
- struct Node_Link* nl = NodeStore_linkForPath(janitor->nodeStore, addr->path);
- if (nl) {
- addr = &nl->child->address;
- }
- struct RouterModule_Promise* rp =
- RouterModule_getPeers(addr,
- Random_uint32(janitor->rand),
- 0,
- janitor->routerModule,
- janitor->allocator);
- rp->callback = peersResponseCallback;
- rp->userData = janitor;
- }
- #define debugAddr(janitor, msg, addr) \
- if (Defined(Log_DEBUG)) { \
- uint8_t addrStr[60]; \
- Address_print(addrStr, (addr)); \
- Log_debug((janitor)->logger, "%s [%s]", (msg), addrStr); \
- } \
- do { } while (0)
- // CHECKFILES_IGNORE expecting a { or ;
- static bool tryExistingNode(struct Janitor* janitor)
- {
- struct Node_Two* worst = NULL;
- uint64_t worstTime = 0;
- struct Node_Two* node = NodeStore_getNextNode(janitor->nodeStore, NULL);
- while (node) {
- uint64_t nodeTime = NodeStore_timeSinceLastPing(janitor->nodeStore, node);
- if (node == janitor->nodeStore->selfNode) {
- // No reason to ping the selfNode.
- } else if (node->address.path != UINT64_MAX &&
- (!worst || nodeTime > worstTime))
- {
- worst = node;
- worstTime = nodeTime;
- }
- node = NodeStore_getNextNode(janitor->nodeStore, node);
- }
- if (worst) {
- getPeersMill(janitor, &worst->address);
- debugAddr(janitor, "Pinging existing node", &worst->address);
- return true;
- }
- return false;
- }
- static bool tryNodeMill(struct Janitor* janitor)
- {
- struct Address addr = { .protocolVersion = 0 };
- if (RumorMill_getNode(janitor->nodeMill, &addr)) {
- // ping a node from the low-priority ping queue
- getPeersMill(janitor, &addr);
- debugAddr(janitor, "Pinging possible node from node-finding RumorMill", &addr);
- return true;
- }
- return false;
- }
- static bool tryExternalMill(struct Janitor* janitor)
- {
- struct Address addr = { .protocolVersion = 0 };
- if (RumorMill_getNode(janitor->rumorMill, &addr)) {
- // ping a node from the externally accessible queue
- getPeersMill(janitor, &addr);
- debugAddr(janitor, "Pinging possible node from external RumorMill", &addr);
- return true;
- }
- return false;
- }
- static bool tryLinkMill(struct Janitor* janitor)
- {
- struct Address addr = { .protocolVersion = 0 };
- if (RumorMill_getNode(janitor->linkMill, &addr)) {
- // ping a node from the externally accessible queue
- getPeersMill(janitor, &addr);
- debugAddr(janitor, "Pinging possible node from link-finding RumorMill", &addr);
- return true;
- }
- return false;
- }
- static bool tryRandomLink(struct Janitor* janitor)
- {
- // There's not an obvious way to get a random link directly, so first get a random node.
- struct Node_Two* node = getRandomNode(janitor->rand, janitor->nodeStore);
- // Count the number of links leading from this node.
- struct Node_Link* link = NodeStore_nextLink(node, NULL);
- uint32_t linkCount = 0;
- while (link) {
- linkCount++;
- link = NodeStore_nextLink(node, link);
- }
- if (linkCount) {
- // Now pick one of these links at random.
- uint32_t randLinkIndex = Random_uint32(janitor->rand) % linkCount;
- link = NodeStore_nextLink(node, NULL);
- linkCount = 0;
- while (linkCount < randLinkIndex) {
- linkCount++;
- link = NodeStore_nextLink(node, link);
- }
- }
- if (link && link->parent != link->child) {
- struct Address addr = link->child->address;
- uint64_t path = NodeStore_getRouteLabel(janitor->nodeStore,
- link->parent->address.path,
- link->cannonicalLabel);
- if (path != NodeStore_getRouteLabel_PARENT_NOT_FOUND &&
- path != NodeStore_getRouteLabel_CHILD_NOT_FOUND)
- {
- addr.path = path;
- }
- if (addr.path < UINT64_MAX) {
- getPeersMill(janitor, &addr);
- #ifdef Log_DEBUG
- uint8_t addrStr[60];
- Address_print(addrStr, &addr);
- Log_debug(janitor->logger, "Pinging random node link [%s] for maintenance.",
- addrStr);
- #endif
- return true;
- }
- }
- return false;
- }
- static void maintanenceCycle(void* vcontext)
- {
- struct Janitor* const janitor = Identity_check((struct Janitor*) vcontext);
- uint64_t now = Time_currentTimeMilliseconds(janitor->eventBase);
- uint64_t nextTimeout = (janitor->localMaintainenceMilliseconds / 2);
- nextTimeout += Random_uint32(janitor->rand) % (nextTimeout * 2);
- Timeout_resetTimeout(janitor->timeout, nextTimeout);
- if (janitor->nodeStore->nodeCount == 0 && janitor->rumorMill->count == 0) {
- if (now > janitor->timeOfNextGlobalMaintainence) {
- Log_warn(janitor->logger,
- "No nodes in routing table, check network connection and configuration.");
- janitor->timeOfNextGlobalMaintainence += janitor->globalMaintainenceMilliseconds;
- }
- return;
- }
- struct Address addr = { .protocolVersion = 0 };
- if (tryExternalMill(janitor)) {
- // Always try the external mill first, this is low-traffic.
- } else if (tryLinkMill(janitor)) {
- // Try to find a new link to a known node.
- } else if (tryNodeMill(janitor)) {
- // Try to find a new node.
- } else if (tryRandomLink(janitor)) {
- // Ping a random link from a random node.
- } else {
- Log_debug(janitor->logger, "Could not find anything to do");
- }
- // Try to ping the existing node we have heard from least recently.
- tryExistingNode(janitor);
- // Look for better nodes for the dht.
- keyspaceMaintenance(janitor);
- // random search
- Random_bytes(janitor->rand, addr.ip6.bytes, 16);
- // Make this a valid address.
- addr.ip6.bytes[0] = 0xfc;
- struct Node_Two* n = NodeStore_getBest(janitor->nodeStore, addr.ip6.bytes);
- // If the best next node doesn't exist or has 0 reach, run a local maintenance search.
- if (n == NULL || Node_getReach(n) == 0) {
- //search(addr.ip6.bytes, janitor);
- //plugLargestKeyspaceHole(janitor, true);
- //return;
- } else {
- checkPeers(janitor, n);
- }
- Log_debug(janitor->logger,
- "Global Mean Response Time: %u nodes [%d] links [%d]",
- RouterModule_globalMeanResponseTime(janitor->routerModule),
- janitor->nodeStore->nodeCount,
- janitor->nodeStore->linkCount);
- if (now > janitor->timeOfNextGlobalMaintainence) {
- //search(addr.ip6.bytes, janitor);
- splitLinks(janitor);
- janitor->timeOfNextGlobalMaintainence += janitor->globalMaintainenceMilliseconds;
- }
- }
- struct Janitor* Janitor_new(uint64_t localMaintainenceMilliseconds,
- uint64_t globalMaintainenceMilliseconds,
- struct RouterModule* routerModule,
- struct NodeStore* nodeStore,
- struct SearchRunner* searchRunner,
- struct RumorMill* rumorMill,
- struct Log* logger,
- struct Allocator* allocator,
- struct EventBase* eventBase,
- struct Random* rand)
- {
- struct Allocator* alloc = Allocator_child(allocator);
- struct Janitor* janitor = Allocator_clone(alloc, (&(struct Janitor) {
- .eventBase = eventBase,
- .routerModule = routerModule,
- .nodeStore = nodeStore,
- .searchRunner = searchRunner,
- .rumorMill = rumorMill,
- .logger = logger,
- .globalMaintainenceMilliseconds = globalMaintainenceMilliseconds,
- .localMaintainenceMilliseconds = localMaintainenceMilliseconds,
- .allocator = alloc,
- .rand = rand
- }));
- Identity_set(janitor);
- janitor->linkMill = RumorMill_new(alloc, nodeStore->selfAddress, 64, logger, "linkMill");
- janitor->nodeMill = RumorMill_new(alloc, nodeStore->selfAddress, 64, logger, "nodeMill");
- janitor->dhtMill = RumorMill_new(alloc,
- nodeStore->selfAddress,
- (NodeStore_bucketNumber * NodeStore_bucketSize),
- logger,
- "dhtMill");
- janitor->timeOfNextGlobalMaintainence = Time_currentTimeMilliseconds(eventBase);
- janitor->timeout = Timeout_setTimeout(maintanenceCycle,
- janitor,
- localMaintainenceMilliseconds,
- eventBase,
- alloc);
- return janitor;
- }
|