/* 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 . */ #include "out-msg-queue-proof.hpp" #include "interfaces/proof.h" #include "shard.hpp" #include "vm/cells/MerkleProof.h" #include "common/delay.h" #include "interfaces/validator-manager.h" #include "block/block-parse.h" #include "block/block-auto.h" namespace ton { namespace validator { td::Result> OutMsgQueueProof::fetch(BlockIdExt block_id, ShardIdFull dst_shard, const ton_api::tonNode_outMsgQueueProof& f) { Ref block_state_proof; td::Bits256 state_root_hash; if (block_id.seqno() == 0) { if (!f.block_state_proof_.empty()) { return td::Status::Error("expected empty block state proof"); } state_root_hash = block_id.root_hash; } else { TRY_RESULT_ASSIGN(block_state_proof, vm::std_boc_deserialize(f.block_state_proof_.as_slice())); TRY_RESULT_ASSIGN(state_root_hash, unpack_block_state_proof(block_id, block_state_proof)); } TRY_RESULT(queue_proof, vm::std_boc_deserialize(f.queue_proof_.as_slice())); auto virtual_root = vm::MerkleProof::virtualize(queue_proof, 1); if (virtual_root.is_null()) { return td::Status::Error("invalid queue proof"); } if (virtual_root->get_hash().as_slice() != state_root_hash.as_slice()) { return td::Status::Error("state root hash mismatch"); } // Validate proof auto state_root = vm::CellSlice(vm::NoVm(), queue_proof).prefetch_ref(0); TRY_RESULT_PREFIX(state, ShardStateQ::fetch(block_id, {}, state_root), "invalid proof: "); TRY_RESULT_PREFIX(outq_descr, state->message_queue(), "invalid proof: "); block::gen::OutMsgQueueInfo::Record qinfo; if (!tlb::unpack_cell(outq_descr->root_cell(), qinfo)) { return td::Status::Error("invalid proof: invalid message queue"); } td::Ref proc_info = qinfo.proc_info->prefetch_ref(0); if (proc_info.not_null() && proc_info->get_level() != 0) { return td::Status::Error("invalid proof: proc_info has prunned branches"); } td::Ref ihr_pending = qinfo.ihr_pending->prefetch_ref(0); if (ihr_pending.not_null() && ihr_pending->get_level() != 0) { return td::Status::Error("invalid proof: ihr_pending has prunned branches"); } auto queue = std::make_unique(qinfo.out_queue->prefetch_ref(0), 352, block::tlb::aug_OutMsgQueue); td::BitArray<96> prefix; td::BitPtr ptr = prefix.bits(); ptr.store_int(dst_shard.workchain, 32); ptr.advance(32); ptr.store_uint(dst_shard.shard, 64); if (!queue->cut_prefix_subdict(prefix.bits(), 32 + dst_shard.pfx_len())) { return td::Status::Error("invalid proof: failed to cut queue dict"); } if (queue->get_root_cell().not_null() && queue->get_root_cell()->get_level() != 0) { return td::Status::Error("invalid proof: msg queue has prunned branches"); } return Ref(true, std::move(virtual_root), std::move(block_state_proof)); } td::Result> OutMsgQueueProof::serialize(BlockIdExt block_id, ShardIdFull dst_shard, Ref state_root, Ref block_root) { if (!dst_shard.is_valid_ext()) { return td::Status::Error("invalid shard"); } vm::MerkleProofBuilder mpb{std::move(state_root)}; TRY_RESULT(state, ShardStateQ::fetch(block_id, {}, mpb.root())); TRY_RESULT(outq_descr, state->message_queue()); block::gen::OutMsgQueueInfo::Record qinfo; if (!tlb::unpack_cell(outq_descr->root_cell(), qinfo)) { return td::Status::Error("invalid message queue"); } td::HashSet visited; std::function)> dfs = [&](Ref cell) { if (cell.is_null() || !visited.insert(cell->get_hash()).second) { return; } vm::CellSlice cs(vm::NoVm(), cell); for (unsigned i = 0; i < cs.size_refs(); i++) { dfs(cs.prefetch_ref(i)); } }; auto dfs_cs = [&](const vm::CellSlice &cs) { for (unsigned i = 0; i < cs.size_refs(); i++) { dfs(cs.prefetch_ref(i)); } }; dfs_cs(*qinfo.proc_info); dfs_cs(*qinfo.ihr_pending); auto queue = std::make_unique(qinfo.out_queue->prefetch_ref(0), 352, block::tlb::aug_OutMsgQueue); td::BitArray<96> prefix; td::BitPtr ptr = prefix.bits(); ptr.store_int(dst_shard.workchain, 32); ptr.advance(32); ptr.store_uint(dst_shard.shard, 64); if (!queue->cut_prefix_subdict(prefix.bits(), 32 + dst_shard.pfx_len())) { return td::Status::Error("invalid message queue"); } dfs(queue->get_root_cell()); TRY_RESULT(queue_proof, vm::std_boc_serialize(mpb.extract_proof())); td::BufferSlice block_state_proof; if (block_id.seqno() != 0) { TRY_RESULT(proof, create_block_state_proof(std::move(block_root))); TRY_RESULT_ASSIGN(block_state_proof, vm::std_boc_serialize(std::move(proof), 31)); } return create_tl_object(std::move(queue_proof), std::move(block_state_proof)); } void WaitOutMsgQueueProof::alarm() { abort_query(td::Status::Error(ErrorCode::timeout, "timeout")); } void WaitOutMsgQueueProof::abort_query(td::Status reason) { if (promise_) { if (priority_ > 0 || (reason.code() != ErrorCode::timeout && reason.code() != ErrorCode::notready)) { LOG(WARNING) << "aborting wait msg queue query for " << block_id_.to_str() << " priority=" << priority_ << ": " << reason; } else { LOG(DEBUG) << "aborting wait msg queue query for " << block_id_.to_str() << " priority=" << priority_ << ": " << reason; } promise_.set_error( reason.move_as_error_prefix(PSTRING() << "failed to get msg queue for " << block_id_.to_str() << ": ")); } stop(); } void WaitOutMsgQueueProof::finish_query(Ref result) { promise_.set_result(std::move(result)); stop(); } void WaitOutMsgQueueProof::start_up() { alarm_timestamp() = timeout_; if (local_) { run_local(); } else { run_net(); } } void WaitOutMsgQueueProof::run_local() { ++pending; td::actor::send_closure(manager_, &ValidatorManager::wait_block_state_short, block_id_, priority_, timeout_, [SelfId = actor_id(this)](td::Result> R) { if (R.is_error()) { td::actor::send_closure(SelfId, &WaitOutMsgQueueProof::abort_query, R.move_as_error_prefix("failed to get shard state")); } else { td::actor::send_closure(SelfId, &WaitOutMsgQueueProof::got_state_root, R.move_as_ok()->root_cell()); } }); if (block_id_.seqno() != 0) { ++pending; td::actor::send_closure(manager_, &ValidatorManager::wait_block_data_short, block_id_, priority_, timeout_, [SelfId = actor_id(this)](td::Result> R) { if (R.is_error()) { td::actor::send_closure(SelfId, &WaitOutMsgQueueProof::abort_query, R.move_as_error_prefix("failed to get block data")); } else { td::actor::send_closure(SelfId, &WaitOutMsgQueueProof::got_block_root, R.move_as_ok()->root_cell()); } }); } } void WaitOutMsgQueueProof::got_state_root(Ref root) { state_root_ = std::move(root); if (--pending == 0) { run_local_cont(); } } void WaitOutMsgQueueProof::got_block_root(Ref root) { block_root_ = std::move(root); if (--pending == 0) { run_local_cont(); } } void WaitOutMsgQueueProof::run_local_cont() { Ref block_state_proof; if (block_id_.seqno() != 0) { auto R = create_block_state_proof(std::move(block_root_)); if (R.is_error()) { abort_query(R.move_as_error_prefix("failed to create block state proof")); return; } block_state_proof = R.move_as_ok(); } finish_query(td::Ref(true, std::move(state_root_), std::move(block_state_proof))); } void WaitOutMsgQueueProof::run_net() { auto P = td::PromiseCreator::lambda([SelfId = actor_id(this), block_id = block_id_](td::Result> R) { if (R.is_error()) { if (R.error().code() == ErrorCode::notready) { LOG(DEBUG) << "failed to get msg queue for " << block_id.to_str() << " from net: " << R.move_as_error(); } else { LOG(WARNING) << "failed to get msg queue for " << block_id.to_str() << " from net: " << R.move_as_error(); } delay_action([SelfId]() mutable { td::actor::send_closure(SelfId, &WaitOutMsgQueueProof::run_net); }, td::Timestamp::in(0.1)); } else { td::actor::send_closure(SelfId, &WaitOutMsgQueueProof::finish_query, R.move_as_ok()); } }); td::actor::send_closure(manager_, &ValidatorManager::send_get_out_msg_queue_proof_request, block_id_, dst_shard_, priority_, std::move(P)); } void BuildOutMsgQueueProof::abort_query(td::Status reason) { if (promise_) { LOG(WARNING) << "failed to build msg queue proof for " << block_id_.to_str() << ": " << reason; promise_.set_error( reason.move_as_error_prefix(PSTRING() << "failed to build msg queue proof for " << block_id_.to_str() << ": ")); } stop(); } void BuildOutMsgQueueProof::start_up() { ++pending; td::actor::send_closure(manager_, &ValidatorManagerInterface::get_shard_state_from_db_short, block_id_, [SelfId = actor_id(this)](td::Result> R) { if (R.is_error()) { td::actor::send_closure(SelfId, &BuildOutMsgQueueProof::abort_query, R.move_as_error_prefix("failed to get shard state")); } else { td::actor::send_closure(SelfId, &BuildOutMsgQueueProof::got_state_root, R.move_as_ok()->root_cell()); } }); if (block_id_.seqno() != 0) { ++pending; td::actor::send_closure(manager_, &ValidatorManagerInterface::get_block_data_from_db_short, block_id_, [SelfId = actor_id(this)](td::Result> R) { if (R.is_error()) { td::actor::send_closure(SelfId, &BuildOutMsgQueueProof::abort_query, R.move_as_error_prefix("failed to get block data")); } else { td::actor::send_closure(SelfId, &BuildOutMsgQueueProof::got_block_root, R.move_as_ok()->root_cell()); } }); } } void BuildOutMsgQueueProof::got_state_root(Ref root) { state_root_ = std::move(root); if (--pending == 0) { build_proof(); } } void BuildOutMsgQueueProof::got_block_root(Ref root) { block_root_ = std::move(root); if (--pending == 0) { build_proof(); } } void BuildOutMsgQueueProof::build_proof() { auto result = OutMsgQueueProof::serialize(block_id_, dst_shard_, std::move(state_root_), std::move(block_root_)); if (result.is_error()) { LOG(ERROR) << "Failed to build msg queue proof: " << result.error(); } promise_.set_result(std::move(result)); stop(); } } // namespace validator } // namespace ton