mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	* Improve DHT store/load, pinging overlay peers * Fix speed limits in storage * Use keyStoreTypeDirectory in rldp-http-proxy and storage-daemon Mainly for caching synced block in tonlib. --------- Co-authored-by: SpyCheese <mikle98@yandex.ru>
		
			
				
	
	
		
			465 lines
		
	
	
	
		
			17 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			465 lines
		
	
	
	
		
			17 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
    This file is part of TON Blockchain Library.
 | 
						|
 | 
						|
    TON Blockchain Library is free software: you can redistribute it and/or modify
 | 
						|
    it under the terms of the GNU Lesser General Public License as published by
 | 
						|
    the Free Software Foundation, either version 2 of the License, or
 | 
						|
    (at your option) any later version.
 | 
						|
 | 
						|
    TON Blockchain Library 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 Lesser General Public License for more details.
 | 
						|
 | 
						|
    You should have received a copy of the GNU Lesser General Public License
 | 
						|
    along with TON Blockchain Library.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 | 
						|
    Copyright 2017-2020 Telegram Systems LLP
 | 
						|
*/
 | 
						|
#include "dht.hpp"
 | 
						|
 | 
						|
#include "td/utils/tl_storers.h"
 | 
						|
#include "td/utils/crypto.h"
 | 
						|
#include "td/utils/Random.h"
 | 
						|
#include "td/utils/overloaded.h"
 | 
						|
 | 
						|
#include "td/utils/format.h"
 | 
						|
 | 
						|
#include "auto/tl/ton_api.hpp"
 | 
						|
 | 
						|
#include "dht-query.hpp"
 | 
						|
 | 
						|
namespace ton {
 | 
						|
 | 
						|
namespace dht {
 | 
						|
 | 
						|
void DhtQuery::send_queries() {
 | 
						|
  while (pending_queries_.size() > k_ * 2) {
 | 
						|
    pending_queries_.erase(--pending_queries_.end());
 | 
						|
  }
 | 
						|
  VLOG(DHT_EXTRA_DEBUG) << this << ": sending new queries. active=" << active_queries_ << " max_active=" << a_;
 | 
						|
  while (pending_queries_.size() > 0 && active_queries_ < a_) {
 | 
						|
    auto id_xor = *pending_queries_.begin();
 | 
						|
    if (result_list_.size() == k_ && *result_list_.rbegin() < id_xor) {
 | 
						|
      break;
 | 
						|
    }
 | 
						|
    active_queries_++;
 | 
						|
    auto id = id_xor ^ key_;
 | 
						|
    VLOG(DHT_EXTRA_DEBUG) << this << ": sending " << get_name() << " query to " << id;
 | 
						|
    pending_queries_.erase(id_xor);
 | 
						|
 | 
						|
    auto it = nodes_.find(id_xor);
 | 
						|
    CHECK(it != nodes_.end());
 | 
						|
    td::actor::send_closure(adnl_, &adnl::Adnl::add_peer, get_src(), it->second.node.adnl_id(),
 | 
						|
                            it->second.node.addr_list());
 | 
						|
    send_one_query(id.to_adnl());
 | 
						|
  }
 | 
						|
  if (active_queries_ == 0) {
 | 
						|
    pending_queries_.clear();
 | 
						|
    DhtNodesList list;
 | 
						|
    for (auto id_xor : result_list_) {
 | 
						|
      auto it = nodes_.find(id_xor);
 | 
						|
      CHECK(it != nodes_.end());
 | 
						|
      list.push_back(it->second.node.clone());
 | 
						|
    }
 | 
						|
    CHECK(list.size() <= k_);
 | 
						|
    VLOG(DHT_EXTRA_DEBUG) << this << ": finalizing " << get_name() << " query. List size=" << list.size();
 | 
						|
    finish(std::move(list));
 | 
						|
    stop();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void DhtQuery::add_nodes(DhtNodesList list) {
 | 
						|
  VLOG(DHT_EXTRA_DEBUG) << this << ": " << get_name() << " query: received " << list.size() << " new dht nodes";
 | 
						|
  for (auto &node : list.list()) {
 | 
						|
    auto id = node.get_key();
 | 
						|
    auto id_xor = key_ ^ id;
 | 
						|
    if (nodes_.find(id_xor) != nodes_.end()) {
 | 
						|
      continue;
 | 
						|
    }
 | 
						|
    VLOG(DHT_EXTRA_DEBUG) << this << ": " << get_name() << " query: adding " << id << " key";
 | 
						|
    td::actor::send_closure(node_, &DhtMember::add_full_node, id, node.clone(), false);
 | 
						|
    nodes_[id_xor].node = std::move(node);
 | 
						|
    pending_queries_.insert(id_xor);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void DhtQuery::finish_query(adnl::AdnlNodeIdShort id, bool success) {
 | 
						|
  active_queries_--;
 | 
						|
  CHECK(active_queries_ <= k_);
 | 
						|
  auto id_xor = key_ ^ DhtKeyId(id);
 | 
						|
  if (success) {
 | 
						|
    result_list_.insert(id_xor);
 | 
						|
    if (result_list_.size() > k_) {
 | 
						|
      result_list_.erase(--result_list_.end());
 | 
						|
    }
 | 
						|
  } else {
 | 
						|
    NodeInfo &info = nodes_[id_xor];
 | 
						|
    if (++info.failed_attempts < MAX_ATTEMPTS) {
 | 
						|
      pending_queries_.insert(id_xor);
 | 
						|
    }
 | 
						|
  }
 | 
						|
  send_queries();
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryFindNodes::send_one_query(adnl::AdnlNodeIdShort id) {
 | 
						|
  auto P = create_serialize_tl_object<ton_api::dht_findNode>(get_key().tl(), get_k());
 | 
						|
  td::BufferSlice B;
 | 
						|
  if (client_only_) {
 | 
						|
    B = std::move(P);
 | 
						|
  } else {
 | 
						|
    B = create_serialize_tl_object_suffix<ton_api::dht_query>(P.as_slice(), self_.tl());
 | 
						|
  }
 | 
						|
 | 
						|
  auto Pr = td::PromiseCreator::lambda([SelfId = actor_id(this), dst = id](td::Result<td::BufferSlice> R) {
 | 
						|
    td::actor::send_closure(SelfId, &DhtQueryFindNodes::on_result, std::move(R), dst);
 | 
						|
  });
 | 
						|
 | 
						|
  td::actor::send_closure(adnl_, &adnl::Adnl::send_query, get_src(), id, "dht findNode", std::move(Pr),
 | 
						|
                          td::Timestamp::in(2.0 + td::Random::fast(0, 20) * 0.1), std::move(B));
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryFindNodes::on_result(td::Result<td::BufferSlice> R, adnl::AdnlNodeIdShort dst) {
 | 
						|
  if (R.is_error()) {
 | 
						|
    VLOG(DHT_INFO) << this << ": failed find nodes query " << get_src() << "->" << dst << ": " << R.move_as_error();
 | 
						|
    finish_query(dst, false);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  auto Res = fetch_tl_object<ton_api::dht_nodes>(R.move_as_ok(), true);
 | 
						|
  if (Res.is_error()) {
 | 
						|
    VLOG(DHT_WARNING) << this << ": incorrect result on dht.findNodes query from " << dst << ": "
 | 
						|
                      << Res.move_as_error();
 | 
						|
  } else {
 | 
						|
    add_nodes(DhtNodesList{Res.move_as_ok(), our_network_id()});
 | 
						|
  }
 | 
						|
  finish_query(dst);
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryFindNodes::finish(DhtNodesList list) {
 | 
						|
  promise_.set_result(std::move(list));
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryFindValue::send_one_query(adnl::AdnlNodeIdShort id) {
 | 
						|
  auto P = create_serialize_tl_object<ton_api::dht_findValue>(get_key().tl(), get_k());
 | 
						|
  td::BufferSlice B;
 | 
						|
  if (client_only_) {
 | 
						|
    B = std::move(P);
 | 
						|
  } else {
 | 
						|
    B = create_serialize_tl_object_suffix<ton_api::dht_query>(P.as_slice(), self_.tl());
 | 
						|
  }
 | 
						|
 | 
						|
  auto Pr = td::PromiseCreator::lambda([SelfId = actor_id(this), dst = id](td::Result<td::BufferSlice> R) {
 | 
						|
    td::actor::send_closure(SelfId, &DhtQueryFindValue::on_result, std::move(R), dst);
 | 
						|
  });
 | 
						|
 | 
						|
  td::actor::send_closure(adnl_, &adnl::Adnl::send_query, get_src(), id, "dht findValue", std::move(Pr),
 | 
						|
                          td::Timestamp::in(2.0 + td::Random::fast(0, 20) * 0.1), std::move(B));
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryFindValue::send_one_query_nodes(adnl::AdnlNodeIdShort id) {
 | 
						|
  auto P = create_serialize_tl_object<ton_api::dht_findNode>(get_key().tl(), get_k());
 | 
						|
  td::BufferSlice B;
 | 
						|
  if (client_only_) {
 | 
						|
    B = std::move(P);
 | 
						|
  } else {
 | 
						|
    B = create_serialize_tl_object_suffix<ton_api::dht_query>(P.as_slice(), self_.tl());
 | 
						|
  }
 | 
						|
 | 
						|
  auto Pr = td::PromiseCreator::lambda([SelfId = actor_id(this), dst = id](td::Result<td::BufferSlice> R) {
 | 
						|
    td::actor::send_closure(SelfId, &DhtQueryFindValue::on_result_nodes, std::move(R), dst);
 | 
						|
  });
 | 
						|
 | 
						|
  td::actor::send_closure(adnl_, &adnl::Adnl::send_query, get_src(), id, "dht findValue", std::move(Pr),
 | 
						|
                          td::Timestamp::in(2.0 + td::Random::fast(0, 20) * 0.1), std::move(B));
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryFindValue::on_result(td::Result<td::BufferSlice> R, adnl::AdnlNodeIdShort dst) {
 | 
						|
  if (R.is_error()) {
 | 
						|
    VLOG(DHT_INFO) << this << ": failed find value query " << get_src() << "->" << dst << ": " << R.move_as_error();
 | 
						|
    finish_query(dst, false);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  auto Res = fetch_tl_object<ton_api::dht_ValueResult>(R.move_as_ok(), true);
 | 
						|
  if (Res.is_error()) {
 | 
						|
    VLOG(DHT_WARNING) << this << ": dropping incorrect answer on dht.findValue query from " << dst << ": "
 | 
						|
                      << Res.move_as_error();
 | 
						|
    finish_query(dst, false);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  bool need_stop = false;
 | 
						|
  bool send_get_nodes = false;
 | 
						|
 | 
						|
  auto A = Res.move_as_ok();
 | 
						|
  ton_api::downcast_call(
 | 
						|
      *A, td::overloaded(
 | 
						|
              [&](ton_api::dht_valueFound &v) {
 | 
						|
                auto valueR = DhtValue::create(std::move(v.value_), true);
 | 
						|
                if (valueR.is_error()) {
 | 
						|
                  VLOG(DHT_WARNING) << this << ": received incorrect dht answer on find value query from " << dst
 | 
						|
                                    << ": " << valueR.move_as_error();
 | 
						|
                  return;
 | 
						|
                }
 | 
						|
                auto value = valueR.move_as_ok();
 | 
						|
                if (value.key_id() != key_) {
 | 
						|
                  VLOG(DHT_WARNING) << this << ": received value for bad key on find value query from " << dst;
 | 
						|
                  return;
 | 
						|
                }
 | 
						|
                if (!value.check_is_acceptable()) {
 | 
						|
                  send_get_nodes = true;
 | 
						|
                  return;
 | 
						|
                }
 | 
						|
                promise_.set_value(std::move(value));
 | 
						|
                need_stop = true;
 | 
						|
              },
 | 
						|
              [&](ton_api::dht_valueNotFound &v) {
 | 
						|
                add_nodes(DhtNodesList{std::move(v.nodes_), our_network_id()});
 | 
						|
              }));
 | 
						|
  if (need_stop) {
 | 
						|
    stop();
 | 
						|
  } else if (send_get_nodes) {
 | 
						|
    send_one_query_nodes(dst);
 | 
						|
  } else {
 | 
						|
    finish_query(dst);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryFindValue::on_result_nodes(td::Result<td::BufferSlice> R, adnl::AdnlNodeIdShort dst) {
 | 
						|
  if (R.is_error()) {
 | 
						|
    VLOG(DHT_INFO) << this << ": failed find nodes query " << get_src() << "->" << dst << ": " << R.move_as_error();
 | 
						|
    finish_query(dst, false);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  auto Res = fetch_tl_object<ton_api::dht_nodes>(R.move_as_ok(), true);
 | 
						|
  if (Res.is_error()) {
 | 
						|
    VLOG(DHT_WARNING) << this << ": dropping incorrect answer on dht.findNodes query from " << dst << ": "
 | 
						|
                      << Res.move_as_error();
 | 
						|
    finish_query(dst, false);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  auto r = Res.move_as_ok();
 | 
						|
  add_nodes(DhtNodesList{create_tl_object<ton_api::dht_nodes>(std::move(r->nodes_)), our_network_id()});
 | 
						|
  finish_query(dst);
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryFindValue::finish(DhtNodesList list) {
 | 
						|
  promise_.set_error(td::Status::Error(ErrorCode::notready, "dht key not found"));
 | 
						|
}
 | 
						|
 | 
						|
DhtQueryStore::DhtQueryStore(DhtValue key_value, DhtMember::PrintId print_id, adnl::AdnlNodeIdShort src,
 | 
						|
                             DhtNodesList list, td::uint32 k, td::uint32 a, td::int32 our_network_id, DhtNode self,
 | 
						|
                             bool client_only, td::actor::ActorId<DhtMember> node, td::actor::ActorId<adnl::Adnl> adnl,
 | 
						|
                             td::Promise<td::Unit> promise)
 | 
						|
    : print_id_(print_id)
 | 
						|
    , k_(k)
 | 
						|
    , a_(a)
 | 
						|
    , our_network_id_(our_network_id)
 | 
						|
    , promise_(std::move(promise))
 | 
						|
    , value_(std::move(key_value))
 | 
						|
    , list_(std::move(list))
 | 
						|
    , self_(std::move(self))
 | 
						|
    , client_only_(client_only) {
 | 
						|
  node_ = node;
 | 
						|
  adnl_ = adnl;
 | 
						|
  src_ = src;
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryStore::start_up() {
 | 
						|
  auto P = td::PromiseCreator::lambda([SelfId = actor_id(this)](td::Result<DhtNodesList> res) {
 | 
						|
    td::actor::send_closure(SelfId, &DhtQueryStore::send_stores, std::move(res));
 | 
						|
  });
 | 
						|
 | 
						|
  auto key = value_.key_id();
 | 
						|
  auto A = td::actor::create_actor<DhtQueryFindNodes>("FindNodesQuery", key, print_id_, src_, std::move(list_), k_, a_,
 | 
						|
                                                      our_network_id_, self_.clone(), client_only_, node_, adnl_,
 | 
						|
                                                      std::move(P));
 | 
						|
  A.release();
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryStore::send_stores(td::Result<DhtNodesList> R) {
 | 
						|
  if (R.is_error()) {
 | 
						|
    auto S = R.move_as_error();
 | 
						|
    VLOG(DHT_NOTICE) << this << ": failed to get nearest nodes to " << value_.key_id() << ": " << S;
 | 
						|
    promise_.set_error(std::move(S));
 | 
						|
    stop();
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  auto list = R.move_as_ok();
 | 
						|
  if (list.size() < k_) {
 | 
						|
    td::actor::send_closure(node_, &DhtMember::store_in, value_.clone());
 | 
						|
  } else {
 | 
						|
    auto last_key = list.list().rbegin()->get_key();
 | 
						|
    auto value_key = value_.key_id();
 | 
						|
    if ((value_key ^ src_) < (value_key ^ last_key)) {
 | 
						|
      td::actor::send_closure(node_, &DhtMember::store_in, value_.clone());
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  remaining_ = static_cast<td::uint32>(list.size());
 | 
						|
 | 
						|
  for (auto &node : list.list()) {
 | 
						|
    auto P = td::PromiseCreator::lambda([SelfId = actor_id(this)](td::Result<td::BufferSlice> R) {
 | 
						|
      td::actor::send_closure(SelfId, &DhtQueryStore::store_ready, std::move(R));
 | 
						|
    });
 | 
						|
    auto M = create_serialize_tl_object<ton_api::dht_store>(value_.tl());
 | 
						|
    td::actor::send_closure(adnl_, &adnl::Adnl::send_query, src_, node.adnl_id().compute_short_id(), "dht store",
 | 
						|
                            std::move(P), td::Timestamp::in(2.0 + td::Random::fast(0, 20) * 0.1), std::move(M));
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryStore::store_ready(td::Result<td::BufferSlice> R) {
 | 
						|
  if (R.is_error()) {
 | 
						|
    fail_++;
 | 
						|
    VLOG(DHT_INFO) << this << ": failed store query: " << R.move_as_error();
 | 
						|
  } else {
 | 
						|
    auto R2 = fetch_tl_object<ton_api::dht_stored>(R.move_as_ok(), true);
 | 
						|
    if (R2.is_error()) {
 | 
						|
      fail_++;
 | 
						|
      VLOG(DHT_WARNING) << this << ": can not parse answer (expected dht.stored): " << R2.move_as_error();
 | 
						|
    } else {
 | 
						|
      success_++;
 | 
						|
    }
 | 
						|
  }
 | 
						|
  CHECK(remaining_ > 0);
 | 
						|
  remaining_--;
 | 
						|
  if (remaining_ == 0) {
 | 
						|
    if (success_ > 0) {
 | 
						|
      promise_.set_value(td::Unit());
 | 
						|
    } else {
 | 
						|
      promise_.set_result(td::Status::Error("failed to make actual store query"));
 | 
						|
    }
 | 
						|
    stop();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
DhtQueryRegisterReverseConnection::DhtQueryRegisterReverseConnection(
 | 
						|
    DhtKeyId key_id, adnl::AdnlNodeIdFull client, td::uint32 ttl, td::BufferSlice signature,
 | 
						|
    DhtMember::PrintId print_id, adnl::AdnlNodeIdShort src, DhtNodesList list, td::uint32 k, td::uint32 a,
 | 
						|
    td::int32 our_network_id, DhtNode self, bool client_only, td::actor::ActorId<DhtMember> node,
 | 
						|
    td::actor::ActorId<adnl::Adnl> adnl, td::Promise<td::Unit> promise)
 | 
						|
    : print_id_(print_id)
 | 
						|
    , k_(k)
 | 
						|
    , a_(a)
 | 
						|
    , our_network_id_(our_network_id)
 | 
						|
    , promise_(std::move(promise))
 | 
						|
    , key_id_(key_id)
 | 
						|
    , list_(std::move(list))
 | 
						|
    , self_(std::move(self))
 | 
						|
    , client_only_(client_only) {
 | 
						|
  node_ = node;
 | 
						|
  adnl_ = adnl;
 | 
						|
  src_ = src;
 | 
						|
  query_ = create_serialize_tl_object<ton_api::dht_registerReverseConnection>(client.tl(), ttl, std::move(signature));
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryRegisterReverseConnection::start_up() {
 | 
						|
  auto P = td::PromiseCreator::lambda([SelfId = actor_id(this)](td::Result<DhtNodesList> res) {
 | 
						|
    td::actor::send_closure(SelfId, &DhtQueryRegisterReverseConnection::send_queries, std::move(res));
 | 
						|
  });
 | 
						|
 | 
						|
  auto A = td::actor::create_actor<DhtQueryFindNodes>("FindNodesQuery", key_id_, print_id_, src_, std::move(list_), k_,
 | 
						|
                                                      a_, our_network_id_, self_.clone(), client_only_, node_, adnl_,
 | 
						|
                                                      std::move(P));
 | 
						|
  A.release();
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryRegisterReverseConnection::send_queries(td::Result<DhtNodesList> R) {
 | 
						|
  if (R.is_error()) {
 | 
						|
    auto S = R.move_as_error();
 | 
						|
    VLOG(DHT_NOTICE) << this << ": failed to get nearest nodes to " << key_id_ << ": " << S;
 | 
						|
    promise_.set_error(std::move(S));
 | 
						|
    stop();
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  auto list = R.move_as_ok();
 | 
						|
 | 
						|
  remaining_ = static_cast<td::uint32>(list.size());
 | 
						|
  if (remaining_ == 0) {
 | 
						|
    VLOG(DHT_NOTICE) << this << ": failed to get nearest nodes to " << key_id_ << ": no nodes";
 | 
						|
    promise_.set_error(td::Status::Error("no dht nodes"));
 | 
						|
    stop();
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  for (auto &node : list.list()) {
 | 
						|
    auto P = td::PromiseCreator::lambda([SelfId = actor_id(this)](td::Result<td::BufferSlice> R) {
 | 
						|
      td::actor::send_closure(SelfId, &DhtQueryRegisterReverseConnection::ready, std::move(R));
 | 
						|
    });
 | 
						|
    td::actor::send_closure(adnl_, &adnl::Adnl::send_query, src_, node.adnl_id().compute_short_id(), "dht regrevcon",
 | 
						|
                            std::move(P), td::Timestamp::in(2.0 + td::Random::fast(0, 20) * 0.1), query_.clone());
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryRegisterReverseConnection::ready(td::Result<td::BufferSlice> R) {
 | 
						|
  if (R.is_error()) {
 | 
						|
    fail_++;
 | 
						|
    VLOG(DHT_INFO) << this << ": failed register reverse connection query: " << R.move_as_error();
 | 
						|
  } else {
 | 
						|
    auto R2 = fetch_tl_object<ton_api::dht_stored>(R.move_as_ok(), true);
 | 
						|
    if (R2.is_error()) {
 | 
						|
      fail_++;
 | 
						|
      VLOG(DHT_WARNING) << this << ": can not parse answer (expected dht.stored): " << R2.move_as_error();
 | 
						|
    } else {
 | 
						|
      success_++;
 | 
						|
    }
 | 
						|
  }
 | 
						|
  CHECK(remaining_ > 0);
 | 
						|
  remaining_--;
 | 
						|
  if (remaining_ == 0) {
 | 
						|
    if (success_ > 0) {
 | 
						|
      promise_.set_value(td::Unit());
 | 
						|
    } else {
 | 
						|
      promise_.set_result(td::Status::Error("failed to make actual query"));
 | 
						|
    }
 | 
						|
    stop();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryRequestReversePing::send_one_query(adnl::AdnlNodeIdShort id) {
 | 
						|
  td::BufferSlice B;
 | 
						|
  if (client_only_) {
 | 
						|
    B = query_.clone();
 | 
						|
  } else {
 | 
						|
    B = create_serialize_tl_object_suffix<ton_api::dht_query>(query_.as_slice(), self_.tl());
 | 
						|
  }
 | 
						|
  auto P = td::PromiseCreator::lambda([SelfId = actor_id(this), dst = id](td::Result<td::BufferSlice> R) {
 | 
						|
    td::actor::send_closure(SelfId, &DhtQueryRequestReversePing::on_result, std::move(R), dst);
 | 
						|
  });
 | 
						|
  td::actor::send_closure(adnl_, &adnl::Adnl::send_query, get_src(), id, "dht requestReversePing", std::move(P),
 | 
						|
                          td::Timestamp::in(2.0 + td::Random::fast(0, 20) * 0.1), std::move(B));
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryRequestReversePing::on_result(td::Result<td::BufferSlice> R, adnl::AdnlNodeIdShort dst) {
 | 
						|
  if (R.is_error()) {
 | 
						|
    VLOG(DHT_INFO) << this << ": failed reverse ping query " << get_src() << "->" << dst << ": " << R.move_as_error();
 | 
						|
    finish_query(dst, false);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  auto Res = fetch_tl_object<ton_api::dht_ReversePingResult>(R.move_as_ok(), true);
 | 
						|
  if (Res.is_error()) {
 | 
						|
    VLOG(DHT_WARNING) << this << ": dropping incorrect answer on dht.requestReversePing query from " << dst << ": "
 | 
						|
                      << Res.move_as_error();
 | 
						|
    finish_query(dst, false);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  auto A = Res.move_as_ok();
 | 
						|
  ton_api::downcast_call(*A, td::overloaded(
 | 
						|
                                 [&](ton_api::dht_reversePingOk &v) {
 | 
						|
                                   promise_.set_value(td::Unit());
 | 
						|
                                   stop();
 | 
						|
                                 },
 | 
						|
                                 [&](ton_api::dht_clientNotFound &v) {
 | 
						|
                                   add_nodes(DhtNodesList{std::move(v.nodes_), our_network_id()});
 | 
						|
                                   finish_query(dst);
 | 
						|
                                 }));
 | 
						|
}
 | 
						|
 | 
						|
void DhtQueryRequestReversePing::finish(DhtNodesList list) {
 | 
						|
  promise_.set_error(td::Status::Error(ErrorCode::notready, "dht key not found"));
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace dht
 | 
						|
 | 
						|
}  // namespace ton
 |