/* 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 . Copyright 2017-2019 Telegram Systems LLP */ #include "td/utils/crypto.h" #include "td/utils/Random.h" #include "adnl-local-id.h" #include "keys/encryptor.h" #include "utils.hpp" namespace ton { namespace adnl { AdnlNodeIdFull AdnlLocalId::get_id() const { return id_; } AdnlNodeIdShort AdnlLocalId::get_short_id() const { return short_id_; } AdnlAddressList AdnlLocalId::get_addr_list() const { CHECK(!addr_list_.empty()); return addr_list_; } void AdnlLocalId::receive(td::BufferSlice data) { auto P = td::PromiseCreator::lambda( [peer_table = peer_table_, dst = short_id_, id = print_id()](td::Result R) { if (R.is_error()) { VLOG(ADNL_WARNING) << id << ": dropping IN message: cannot decrypt: " << R.move_as_error(); } else { td::actor::send_closure(peer_table, &AdnlPeerTable::receive_decrypted_packet, dst, R.move_as_ok()); } }); decrypt(std::move(data), std::move(P)); } void AdnlLocalId::deliver(AdnlNodeIdShort src, td::BufferSlice data) { auto s = std::move(data); for (auto &cb : cb_) { auto f = cb.first; if (f.length() <= s.length() && s.as_slice().substr(0, f.length()) == f) { cb.second->receive_message(src, short_id_, std::move(s)); return; } } VLOG(ADNL_INFO) << this << ": dropping IN message from " << src << ": no callbacks for custom message. firstint=" << td::TlParser(s.as_slice()).fetch_int(); } void AdnlLocalId::deliver_query(AdnlNodeIdShort src, td::BufferSlice data, td::Promise promise) { auto s = std::move(data); for (auto &cb : cb_) { auto f = cb.first; if (f.length() <= s.length() && s.as_slice().substr(0, f.length()) == f) { cb.second->receive_query(src, short_id_, std::move(s), std::move(promise)); return; } } VLOG(ADNL_INFO) << this << ": dropping IN message from " << src << ": no callbacks for custom query. firstint=" << td::TlParser(s.as_slice()).fetch_int(); promise.set_error(td::Status::Error(ErrorCode::warning, "no callbacks for query")); } void AdnlLocalId::subscribe(std::string prefix, std::unique_ptr callback) { auto S = td::Slice(prefix); for (auto &cb : cb_) { auto G = td::Slice(cb.first); if (S.size() < G.size()) { LOG_CHECK(G.substr(0, S.size()) != S) << this << ": duplicate subscribe prefix"; } else { LOG_CHECK(S.substr(0, G.size()) != G) << this << ": duplicate subscribe prefix"; } } cb_.emplace_back(prefix, std::move(callback)); } void AdnlLocalId::unsubscribe(std::string prefix) { bool deleted = false; for (auto it = cb_.begin(); it != cb_.end();) { if (it->first == prefix) { it = cb_.erase(it); deleted = true; } else { it++; } } LOG_CHECK(deleted) << this << ": cannot unsubscribe: prefix not found"; } void AdnlLocalId::update_address_list(AdnlAddressList addr_list) { addr_list_ = std::move(addr_list); addr_list_.set_reinit_date(Adnl::adnl_start_time()); addr_list_.set_version(static_cast(td::Clocks::system())); VLOG(ADNL_INFO) << this << ": updated addr list. New version set to " << addr_list_.version(); publish_address_list(); } void AdnlLocalId::publish_address_list() { if (dht_node_.empty() || addr_list_.empty()) { VLOG(ADNL_NOTICE) << this << ": skipping public addr list, because localid (or dht node) not fully initialized"; return; } dht::DhtKey dht_key{short_id_.pubkey_hash(), "address", 0}; auto dht_update_rule = dht::DhtUpdateRuleSignature::create().move_as_ok(); dht::DhtKeyDescription dht_key_description{std::move(dht_key), id_.pubkey(), std::move(dht_update_rule), td::BufferSlice()}; auto B = serialize_tl_object(dht_key_description.tl(), true); auto P = td::PromiseCreator::lambda([dht_node = dht_node_, SelfId = actor_id(this), addr_list = addr_list_.tl(), dht_key_description = std::move(dht_key_description), print_id = print_id()](td::Result R) mutable { if (R.is_error()) { LOG(ERROR) << print_id << ": cannot sign: " << R.move_as_error(); return; } dht_key_description.update_signature(R.move_as_ok()); dht_key_description.check().ensure(); auto ttl = static_cast(td::Clocks::system() + 3600); dht::DhtValue dht_value{std::move(dht_key_description), serialize_tl_object(addr_list, true), ttl, td::BufferSlice("")}; auto B = serialize_tl_object(dht_value.tl(), true); auto Q = td::PromiseCreator::lambda( [dht_node, dht_value = std::move(dht_value), print_id](td::Result R) mutable { if (R.is_error()) { LOG(ERROR) << print_id << ": cannot sign: " << R.move_as_error(); return; } dht_value.update_signature(R.move_as_ok()); dht_value.check().ensure(); auto E = td::PromiseCreator::lambda([print_id](td::Result R) { if (R.is_error()) { VLOG(ADNL_NOTICE) << print_id << ": failed to update addr list in DHT: " << R.move_as_error(); } else { VLOG(ADNL_INFO) << print_id << ": updated dht addr list"; } }); td::actor::send_closure(dht_node, &dht::Dht::set_value, std::move(dht_value), std::move(E)); }); td::actor::send_closure(SelfId, &AdnlLocalId::sign_async, std::move(B), std::move(Q)); }); td::actor::send_closure(keyring_, &keyring::Keyring::sign_message, short_id_.pubkey_hash(), std::move(B), std::move(P)); } AdnlLocalId::AdnlLocalId(AdnlNodeIdFull id, AdnlAddressList addr_list, td::actor::ActorId peer_table, td::actor::ActorId keyring, td::actor::ActorId dht_node) { id_ = std::move(id); short_id_ = id_.compute_short_id(); addr_list_ = std::move(addr_list); if (addr_list_.addrs().size() > 0) { addr_list_.set_version(static_cast(td::Clocks::system())); } peer_table_ = peer_table; keyring_ = keyring; dht_node_ = dht_node; VLOG(ADNL_INFO) << this << ": created local id " << short_id_; } void AdnlLocalId::get_self_node(td::Promise promise) { //addr_list_->version_ = static_cast(td::Clocks::system()); promise.set_value(AdnlNode{id_, addr_list_}); } void AdnlLocalId::decrypt_message(td::BufferSlice data, td::Promise promise) { td::actor::send_closure(keyring_, &keyring::Keyring::decrypt_message, short_id_.pubkey_hash(), std::move(data), std::move(promise)); } void AdnlLocalId::decrypt(td::BufferSlice data, td::Promise promise) { auto P = td::PromiseCreator::lambda( [SelfId = actor_id(this), p = std::move(promise)](td::Result res) mutable { if (res.is_error()) { p.set_error(res.move_as_error()); } else { td::actor::send_closure_later(SelfId, &AdnlLocalId::decrypt_continue, res.move_as_ok(), std::move(p)); } }); td::actor::send_closure(keyring_, &keyring::Keyring::decrypt_message, short_id_.pubkey_hash(), std::move(data), std::move(P)); } void AdnlLocalId::decrypt_continue(td::BufferSlice data, td::Promise promise) { auto R = fetch_tl_object(std::move(data), true); if (R.is_error()) { promise.set_error(R.move_as_error()); return; } auto packetR = AdnlPacket::create(R.move_as_ok()); if (packetR.is_error()) { promise.set_error(packetR.move_as_error()); return; } promise.set_value(packetR.move_as_ok()); } void AdnlLocalId::sign_async(td::BufferSlice data, td::Promise promise) { td::actor::send_closure(keyring_, &keyring::Keyring::sign_message, short_id_.pubkey_hash(), std::move(data), std::move(promise)); } void AdnlLocalId::sign_batch_async(std::vector data, td::Promise>> promise) { td::actor::send_closure(keyring_, &keyring::Keyring::sign_messages, short_id_.pubkey_hash(), std::move(data), std::move(promise)); } void AdnlLocalId::start_up() { publish_address_list(); alarm_timestamp() = td::Timestamp::in(AdnlPeerTable::republish_addr_list_timeout() * td::Random::fast(1.0, 2.0)); } void AdnlLocalId::alarm() { publish_address_list(); alarm_timestamp() = td::Timestamp::in(AdnlPeerTable::republish_addr_list_timeout() * td::Random::fast(1.0, 2.0)); } void AdnlLocalId::update_packet(AdnlPacket packet, bool update_id, bool sign, td::int32 update_addr_list_if, td::int32 update_priority_addr_list_if, td::Promise promise) { packet.init_random(); if (update_id) { packet.set_source(id_); } if (!addr_list_.empty() && update_addr_list_if < addr_list_.version()) { packet.set_addr_list(addr_list_); } if (!sign) { promise.set_result(std::move(packet)); } else { auto to_sign = packet.to_sign(); auto P = td::PromiseCreator::lambda( [packet = std::move(packet), promise = std::move(promise)](td::Result R) mutable { if (R.is_error()) { promise.set_error(R.move_as_error()); } else { packet.set_signature(R.move_as_ok()); promise.set_value(std::move(packet)); } }); td::actor::send_closure(keyring_, &keyring::Keyring::sign_message, short_id_.pubkey_hash(), std::move(to_sign), std::move(P)); } } } // namespace adnl } // namespace ton