mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	* Fix "sgn" in fift; fix marking infinite loops as noterurn in func * TON-P1-1: Remove unused catchain queries * TON-P1-15: Avoid synchronization with self * TON-P1-3, TON-P1-17: Disallow more than one candidate per src per round (to prevent flood), add checks to process_broadcast * TON-P1-10: Fix fast/slow attempts * TON-P1-14: Add named constants * TON-P1-18, TON-P1-19: Alloc temporary memory in the same way as persistent memory * TON-P1-20: Add comment to choose_blocks_to_approve * TON-P1-16: Avoid creating two catchain blocks on need_new_block * TON-P1-8: Add some validation to validator-engine parameters * TON-P1-6: Don't allow sending the same block many times Many requests for the same block are not unusual (however, there's no need to answer them all) * TON-P1-2: Enable prohibiting dependencies from blamed nodes (2.7.5 in CatChain doc), fix processing blame proofs * Best practices bp-6: Fix incorrect warning bp-7: Remove unused code bp-8: Bring back PerfWarningTimer logging (only when no callback) bp-9: Remove unnecessary condition bp-11: Remove commented-out code bp-13: Divide code in validator-session-state Adherence to Specification: Fix typo
		
			
				
	
	
		
			157 lines
		
	
	
	
		
			4.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			157 lines
		
	
	
	
		
			4.5 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
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <map>
 | 
						|
 | 
						|
#include "catchain-receiver-source.h"
 | 
						|
#include "catchain-receiver.h"
 | 
						|
#include "catchain-received-block.h"
 | 
						|
#include <queue>
 | 
						|
 | 
						|
namespace ton {
 | 
						|
 | 
						|
namespace catchain {
 | 
						|
 | 
						|
class CatChainReceiverSourceImpl : public CatChainReceiverSource {
 | 
						|
 public:
 | 
						|
  td::uint32 get_id() const override {
 | 
						|
    return id_;
 | 
						|
  }
 | 
						|
  PublicKeyHash get_hash() const override {
 | 
						|
    return src_;
 | 
						|
  }
 | 
						|
  PublicKey get_full_id() const override {
 | 
						|
    return full_id_;
 | 
						|
  }
 | 
						|
  adnl::AdnlNodeIdShort get_adnl_id() const override {
 | 
						|
    return adnl_id_;
 | 
						|
  }
 | 
						|
 | 
						|
  td::uint32 add_fork() override;
 | 
						|
 | 
						|
  bool blamed() const override {
 | 
						|
    return blamed_;
 | 
						|
  }
 | 
						|
  void blame(td::uint32 fork, CatChainBlockHeight height) override;
 | 
						|
  void blame() override;
 | 
						|
  void block_received(CatChainBlockHeight height) override;
 | 
						|
  void block_delivered(CatChainBlockHeight height) override;
 | 
						|
 | 
						|
  const std::vector<td::uint32> &get_forks() const override {
 | 
						|
    return fork_ids_;
 | 
						|
  }
 | 
						|
 | 
						|
  const std::vector<CatChainBlockHeight> &get_blamed_heights() const override {
 | 
						|
    return blamed_heights_;
 | 
						|
  }
 | 
						|
 | 
						|
  td::actor::ActorId<EncryptorAsync> get_encryptor() const {
 | 
						|
    return encryptor_.get();
 | 
						|
  }
 | 
						|
  Encryptor *get_encryptor_sync() const override {
 | 
						|
    return encryptor_sync_.get();
 | 
						|
  }
 | 
						|
 | 
						|
  td::uint32 get_forks_cnt() const override {
 | 
						|
    return static_cast<td::uint32>(fork_ids_.size());
 | 
						|
  }
 | 
						|
 | 
						|
  CatChainBlockHeight delivered_height() const override {
 | 
						|
    return delivered_height_;
 | 
						|
  }
 | 
						|
  CatChainBlockHeight received_height() const override {
 | 
						|
    return received_height_;
 | 
						|
  }
 | 
						|
  bool has_unreceived() const override {
 | 
						|
    if (blamed()) {
 | 
						|
      return true;
 | 
						|
    }
 | 
						|
    if (blocks_.empty()) {
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
    CHECK(blocks_.rbegin()->second->get_height() >= received_height_);
 | 
						|
    return blocks_.rbegin()->second->get_height() > received_height_;
 | 
						|
  }
 | 
						|
  bool has_undelivered() const override {
 | 
						|
    return delivered_height_ < received_height_;
 | 
						|
  }
 | 
						|
  CatChainReceivedBlock *get_block(CatChainBlockHeight height) const override;
 | 
						|
 | 
						|
  void on_new_block(CatChainReceivedBlock *block) override;
 | 
						|
  void on_found_fork_proof(const td::Slice &proof) override;
 | 
						|
  bool fork_is_found() const override {
 | 
						|
    return !fork_proof_.empty();
 | 
						|
  }
 | 
						|
  td::BufferSlice fork_proof() const override {
 | 
						|
    if (!fork_proof_.empty()) {
 | 
						|
      return fork_proof_.clone_as_buffer_slice();
 | 
						|
    } else {
 | 
						|
      return {};
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  CatChainReceiver *get_chain() const override {
 | 
						|
    return chain_;
 | 
						|
  }
 | 
						|
 | 
						|
  bool allow_send_block(CatChainBlockHash hash) override;
 | 
						|
 | 
						|
  CatChainReceiverSourceImpl(CatChainReceiver *chain, PublicKey source, adnl::AdnlNodeIdShort adnl_id, td::uint32 id);
 | 
						|
 | 
						|
 private:
 | 
						|
  CatChainReceiver *chain_;
 | 
						|
  td::uint32 id_;
 | 
						|
  PublicKeyHash src_;
 | 
						|
  bool blamed_ = false;
 | 
						|
  PublicKey full_id_;
 | 
						|
  adnl::AdnlNodeIdShort adnl_id_;
 | 
						|
 | 
						|
  std::vector<td::uint32> fork_ids_;
 | 
						|
  td::actor::ActorOwn<EncryptorAsync> encryptor_;
 | 
						|
  std::unique_ptr<Encryptor> encryptor_sync_;
 | 
						|
  std::vector<CatChainBlockHeight> blamed_heights_;
 | 
						|
  std::map<CatChainBlockHeight, CatChainReceivedBlock *> blocks_;
 | 
						|
  td::SharedSlice fork_proof_;
 | 
						|
 | 
						|
  CatChainBlockHeight delivered_height_ = 0;
 | 
						|
  CatChainBlockHeight received_height_ = 0;
 | 
						|
 | 
						|
  std::map<CatChainBlockHash, td::uint32> block_requests_count_;
 | 
						|
  // One block can be sent to one node up to 5 times
 | 
						|
 | 
						|
  static const td::uint32 MAX_BLOCK_REQUESTS = 5;
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace catchain
 | 
						|
 | 
						|
}  // namespace ton
 | 
						|
 | 
						|
namespace td {
 | 
						|
 | 
						|
inline td::StringBuilder &operator<<(td::StringBuilder &sb, const ton::catchain::CatChainReceiverSourceImpl &source) {
 | 
						|
  sb << "[source " << source.get_chain()->get_incarnation() << " " << source.get_id() << "]";
 | 
						|
  return sb;
 | 
						|
}
 | 
						|
inline td::StringBuilder &operator<<(td::StringBuilder &sb, const ton::catchain::CatChainReceiverSourceImpl *source) {
 | 
						|
  sb << *source;
 | 
						|
  return sb;
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace td
 |