1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
/*
* Copyright (C) 2009-2010 Big Muscle, http://strongdc.sourceforge.net/
* Copyright (C) 2019 Boris Pek <tehnick-8@yandex.ru>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 <https://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
#include "Constants.h"
#include "DHT.h"
#include "KBucket.h"
#include "Utils.h"
#include "dcpp/ClientManager.h"
namespace dht
{
// Set all new nodes' type to 3 to avoid spreading dead nodes..
Node::Node(const UserPtr& u) :
OnlineUser(u, *DHT::getInstance(), 0), created(GET_TICK()), expires(0), type(3), ipVerified(false), online(false)
{
}
CID Node::getUdpKey() const
{
// if our external IP changed from the last time, we can't encrypt packet with this key
if(DHT::getInstance()->getLastExternalIP() == key.ip)
return key.key;
else
return CID();
}
void Node::setUdpKey(const CID& _key)
{
// store key with our current IP address
key.ip = DHT::getInstance()->getLastExternalIP();
key.key = _key;
}
void Node::setAlive()
{
// long existing nodes will probably be there for another long time
uint64_t hours = (GET_TICK() - created) / 1000 / 60 / 60;
switch(hours)
{
case 0:
type = 2;
expires = GET_TICK() + (NODE_EXPIRATION / 2);
break;
case 1:
type = 1;
expires = GET_TICK() + (uint64_t)(NODE_EXPIRATION / 1.5);
break;
default: // long existing nodes
type = 0;
expires = GET_TICK() + NODE_EXPIRATION;
}
}
void Node::setTimeout(uint64_t now)
{
if(type == 4)
return;
type++;
expires = now + NODE_RESPONSE_TIMEOUT;
}
KBucket::KBucket(void)
{
}
KBucket::~KBucket(void)
{
// empty table
for(NodeList::iterator it = nodes.begin(); it != nodes.end(); ++it)
{
Node::Ptr& node = *it;
if(node->isOnline())
{
ClientManager::getInstance()->putOffline(node.get());
node->dec();
}
}
nodes.clear();
}
/*
* Creates new (or update existing) node which is NOT added to our routing table
*/
Node::Ptr KBucket::createNode(const UserPtr& u, const string& ip, const string& port, bool update, bool isUdpKeyValid)
{
if(u->isSet(User::DHT)) // is this user already known in DHT?
{
Node::Ptr node = nullptr;
// no online node found, try get from routing table
for(NodeList::iterator it = nodes.begin(); it != nodes.end(); ++it)
{
if(u->getCID() == (*it)->getUser()->getCID())
{
node = *it;
// put node at the end of the list
nodes.erase(it);
nodes.push_back(node);
break;
}
}
if(node == nullptr && u->isOnline())
{
// try to get node from ClientManager (user can be online but not in our routing table)
// this fixes the bug with DHT node online twice
node = (Node*)ClientManager::getInstance()->findDHTNode(u->getCID());
node = node.get();
}
if(node != nullptr)
{
// fine, node found, update it and return it
if(update)
{
const string oldIp = node->getIdentity().getIp();
const string oldPort = node->getIdentity().getUdpPort();
if(ip != oldIp || oldPort != port)
{
node->setIpVerified(false);
// TODO: don't allow update when new IP already exists for different node
// erase old IP and remember new one
ipMap.erase(oldIp + ":" + oldPort);
ipMap.insert(ip + ":" + port);
}
if(!node->isIpVerified())
node->setIpVerified(isUdpKeyValid);
node->setAlive();
node->getIdentity().setIp(ip);
node->getIdentity().setUdpPort(port);
DHT::getInstance()->setDirty();
}
return node;
}
}
u->setFlag(User::DHT);
Node::Ptr node(new Node(u));
node->getIdentity().setIp(ip);
node->getIdentity().setUdpPort(port);
node->setIpVerified(isUdpKeyValid);
return node;
}
/*
* Adds node to routing table
*/
bool KBucket::insert(const Node::Ptr& node)
{
if(node->isInList)
return true; // node is already in the table
string ip = node->getIdentity().getIp();
string port = node->getIdentity().getUdpPort();
// allow only one same IP:port
bool isAcceptable = (ipMap.find(ip + ":" + port) == ipMap.end());
if((nodes.size() < (K * ID_BITS)) && isAcceptable)
{
nodes.push_back(node);
node->isInList = true;
ipMap.insert(ip + ":" + port);
if(DHT::getInstance())
DHT::getInstance()->setDirty();
return true;
}
return isAcceptable;
}
/*
* Finds "max" closest nodes and stores them to the list
*/
void KBucket::getClosestNodes(const CID& cid, Node::Map& closest, unsigned int max, uint8_t maxType) const
{
for(NodeList::const_iterator it = nodes.begin(); it != nodes.end(); ++it)
{
const Node::Ptr& node = *it;
if(node->getType() <= maxType && node->isIpVerified() && !node->getUser()->isSet(User::PASSIVE))
{
CID distance = Utils::getDistance(cid, node->getUser()->getCID());
if(closest.size() < max)
{
// just insert
closest.insert(std::make_pair(distance, node));
}
else
{
// not enough room, so insert only closer nodes
if(distance < closest.rbegin()->first) // "closest" is sorted map, so just compare with last node
{
closest.erase(closest.rbegin()->first);
closest.insert(std::make_pair(distance, node));
}
}
}
}
}
/*
* Remove dead nodes
*/
bool KBucket::checkExpiration(uint64_t currentTime)
{
bool dirty = false;
// we should ping oldest node from every bucket here
// but since we have only one bucket now, simulate it by pinging more nodes
unsigned int pingCount = max(K, min((int)2 * K, (int)(nodes.size() / (K * 10)) + 1)); // <-- pings 10 - 20 oldest nodes
unsigned int pinged = 0;
dcdrun(unsigned int removed = 0);
// first, remove dead nodes
NodeList::iterator i = nodes.begin();
while(i != nodes.end())
{
Node::Ptr& node = *i;
if(node->getType() == 4 && node->expires > 0 && node->expires <= currentTime)
{
if(node->unique(2))
{
// node is dead, remove it
string ip = node->getIdentity().getIp();
string port = node->getIdentity().getUdpPort();
ipMap.erase(ip + ":" + port);
if(node->isOnline())
{
ClientManager::getInstance()->putOffline(node.get());
node->dec();
}
i = nodes.erase(i);
dirty = true;
dcdrun(removed++);
}
else
{
++i;
}
continue;
}
if(node->expires == 0)
node->expires = currentTime;
// select the oldest expired node
if(pinged < pingCount && node->getType() < 4 && node->expires <= currentTime)
{
// ping the oldest (expired) node
node->setTimeout(currentTime);
DHT::getInstance()->info(node->getIdentity().getIp(), node->getIdentity().getUdpPort(), DHT::PING, node->getUser()->getCID(), node->getUdpKey());
pinged++;
}
++i;
}
#ifdef _DEBUG
int verified = 0; int types[5] = { 0 };
for(NodeList::const_iterator j = nodes.begin(); j != nodes.end(); ++j)
{
Node::Ptr n = *j;
if(n->isIpVerified()) verified++;
dcassert(n->getType() >= 0 && n->getType() <= 4);
types[n->getType()]++;
}
dcdebug("DHT Nodes: %d (%d verified), Types: %d/%d/%d/%d/%d, pinged %d of %d, removed %d\n",
nodes.size(), verified, types[0], types[1], types[2], types[3], types[4], pinged, pingCount, removed);
#endif
return dirty;
}
/*
* Loads existing nodes from disk
*/
void KBucket::loadNodes(SimpleXML& xml)
{
xml.resetCurrentChild();
if(xml.findChild("Nodes"))
{
xml.stepIn();
while(xml.findChild("Node"))
{
CID cid = CID(xml.getChildAttrib("CID"));
string i4 = xml.getChildAttrib("I4");
string u4 = Util::toString(xml.getIntChildAttrib("U4"));
if(Utils::isGoodIPPort(i4, u4))
{
UDPKey udpKey;
string key = xml.getChildAttrib("key");
string keyIp = xml.getChildAttrib("keyIP");
if(!key.empty() && !keyIp.empty())
{
udpKey.key = CID(key);
udpKey.ip = keyIp;
}
//addUser(cid, i4, u4);
BootstrapManager::getInstance()->addBootstrapNode(i4, u4, cid, udpKey);
}
}
xml.stepOut();
}
}
/*
* Save bootstrap nodes to disk
*/
void KBucket::saveNodes(SimpleXML& xml)
{
xml.addTag("Nodes");
xml.stepIn();
// get 50 random nodes to bootstrap from them next time
Node::Map closestToMe;
getClosestNodes(CID::generate(), closestToMe, 50, 3);
for(Node::Map::const_iterator j = closestToMe.begin(); j != closestToMe.end(); ++j)
{
const Node::Ptr& node = j->second;
xml.addTag("Node");
xml.addChildAttrib("CID", node->getUser()->getCID().toBase32());
xml.addChildAttrib("type", node->getType());
xml.addChildAttrib("verified", node->isIpVerified());
if(node->getUDPKey().key && !node->getUDPKey().ip.empty())
{
xml.addChildAttrib("key", node->getUDPKey().key.toBase32());
xml.addChildAttrib("keyIP", node->getUDPKey().ip);
}
StringMap params;
node->getIdentity().getParams(params, Util::emptyString, false, true);
for(StringMap::const_iterator i = params.begin(); i != params.end(); ++i)
xml.addChildAttrib(i->first, i->second);
}
xml.stepOut();
}
}
|