// Copyright (c) 2014-2018 Zano Project // Copyright (c) 2014-2018 The Louisdor Project // Copyright (c) 2012-2013 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #pragma once #include "include_base_utils.h" #include #include #include #include #include #include "string_tools.h" #include "syncobj.h" #include "math_helper.h" #include "common/db_abstract_accessor.h" #include "common/command_line.h" #include "currency_format_utils.h" #include "verification_context.h" #include "crypto/hash.h" #include "common/boost_serialization_helper.h" #include "currency_protocol/currency_protocol_handler_common.h" namespace currency { class blockchain_storage; /************************************************************************/ /* */ /************************************************************************/ class tx_memory_pool: boost::noncopyable { public: struct tx_details { transaction tx; size_t blob_size; uint64_t fee; crypto::hash max_used_block_id; uint64_t max_used_block_height; bool kept_by_block; // uint64_t last_failed_height; crypto::hash last_failed_id; time_t receive_time; BEGIN_SERIALIZE_OBJECT() FIELD(tx) FIELD(blob_size) FIELD(fee) FIELD(max_used_block_id) FIELD(max_used_block_height) FIELD(kept_by_block) FIELD(last_failed_height) FIELD(last_failed_id) FIELD(receive_time) END_SERIALIZE() }; struct performnce_data { //tx zone epee::math_helper::average tx_processing_time; epee::math_helper::average check_inputs_types_supported_time; epee::math_helper::average expiration_validate_time; epee::math_helper::average validate_amount_time; epee::math_helper::average validate_alias_time; epee::math_helper::average check_keyimages_ws_ms_time; epee::math_helper::average check_inputs_time; epee::math_helper::average begin_tx_time; epee::math_helper::average update_db_time; epee::math_helper::average db_commit_time; epee::math_helper::average check_post_hf4_balance; }; typedef std::unordered_map> key_image_cache; tx_memory_pool(blockchain_storage& bchs, i_currency_protocol* pprotocol); bool add_tx(const transaction &tx, const crypto::hash &id, uint64_t blob_size, tx_verification_context& tvc, bool kept_by_block, bool from_core = false); bool add_tx(const transaction &tx, tx_verification_context& tvc, bool kept_by_block, bool from_core = false); bool do_insert_transaction(const transaction &tx, const crypto::hash &id, uint64_t blob_size, bool kept_by_block, uint64_t fee, const crypto::hash& max_used_block_id, uint64_t max_used_block_height); //gets tx and remove it from pool bool take_tx(const crypto::hash &id, transaction &tx, size_t& blob_size, uint64_t& fee); bool have_tx(const crypto::hash &id)const; bool have_tx_keyimg_as_spent(const crypto::key_image& key_im)const; bool have_tx_keyimges_as_spent(const transaction& tx, crypto::key_image* p_spent_ki = nullptr) const; const performnce_data& get_performnce_data() const { return m_performance_data; } bool check_tx_multisig_ins_and_outs(const transaction& tx, bool check_against_pool_txs)const; bool on_blockchain_inc(uint64_t new_block_height, const crypto::hash& top_block_id, const std::list& bsk); bool on_blockchain_dec(uint64_t new_block_height, const crypto::hash& top_block_id); bool on_finalize_db_transaction(); bool add_transaction_to_black_list(const transaction& tx); bool force_relay_pool() const; bool set_protocol(i_currency_protocol* pprotocol); void on_idle(); void lock(); void unlock(); void purge_transactions(); void clear(); // load/store operations bool init(const std::string& config_folder, const boost::program_options::variables_map& vm); bool deinit(); bool fill_block_template(block &bl, bool pos, size_t median_size, const boost::multiprecision::uint128_t& already_generated_coins, size_t &total_size, uint64_t &fee, uint64_t height, const std::list& explicit_txs); bool get_transactions(std::list& txs) const; bool get_all_transactions_details(std::list& txs)const; bool get_all_transactions_brief_details(std::list& txs)const; bool get_all_transactions_list(std::list& txs)const; bool get_transactions_details(const std::list& ids, std::list& txs)const; bool get_transactions_brief_details(const std::list& ids, std::list& txs)const; bool get_transaction_details(const crypto::hash& id, tx_rpc_extended_info& trei)const; bool get_transaction(const crypto::hash& h, transaction& tx)const; bool get_transaction(const crypto::hash& h, tx_details& txd)const; size_t get_transactions_count() const; bool have_key_images(const std::unordered_set& kic, const transaction& tx)const; bool append_key_images(std::unordered_set& kic, const transaction& tx); std::string print_pool(bool short_format)const; uint64_t get_core_time() const; bool get_aliases_from_tx_pool(std::list& aliases)const; bool get_aliases_from_tx_pool(std::map& aliases)const; bool remove_stuck_transactions(); // made public to be called from coretests void remove_incompatible_txs(); // made public to be called after the BCS is loaded and hardfork info is ready bool is_tx_blacklisted(const crypto::hash& id) const; #ifdef TX_POOL_USE_UNSECURE_TEST_FUNCTIONS void unsecure_disable_tx_validation_on_addition(bool validation_disabled) { m_unsecure_disable_tx_validation_on_addition = validation_disabled; } #endif private: bool on_tx_add(crypto::hash tx_id, const transaction& tx, bool kept_by_block); bool on_tx_remove(const crypto::hash &tx_id, const transaction& tx, bool kept_by_block); bool insert_key_images(const crypto::hash& tx_id, const transaction& tx, bool kept_by_block); bool remove_key_images(const crypto::hash &tx_id, const transaction& tx, bool kept_by_block); bool insert_alias_info(const transaction& tx); bool remove_alias_info(const transaction& tx); bool check_tx_fee(const transaction &tx, uint64_t amount_fee); std::string get_blacklisted_txs_string() const; bool is_valid_contract_finalization_tx(const transaction &tx)const; void store_db_solo_options_values(); bool is_transaction_ready_to_go(tx_details& txd, const crypto::hash& id)const; bool validate_alias_info(const transaction& tx, bool is_in_block)const; bool get_key_images_from_tx_pool(key_image_cache& key_images) const; bool check_is_taken(const crypto::hash& id) const; void set_taken(const crypto::hash& id); void reset_all_taken(); bool load_keyimages_cache(); typedef tools::db::cached_key_value_accessor transactions_container; typedef tools::db::cached_key_value_accessor hash_container; typedef tools::db::cached_key_value_accessor solo_options_container; typedef tools::db::cached_key_value_accessor aliases_container; typedef tools::db::cached_key_value_accessor address_to_aliases_container; //main accessor epee::shared_recursive_mutex m_dummy_rw_lock; tools::db::basic_db_accessor m_db; //containers transactions_container m_db_transactions; hash_container m_db_black_tx_list; aliases_container m_db_alias_names; address_to_aliases_container m_db_alias_addresses; solo_options_container m_db_solo_options; tools::db::solo_db_value m_db_storage_major_compatibility_version; epee::math_helper::once_a_time_seconds<30> m_remove_stuck_tx_interval; performnce_data m_performance_data; std::string m_config_folder; blockchain_storage& m_blockchain; i_currency_protocol* m_pprotocol; //in memory containers mutable epee::critical_section m_taken_txs_lock; std::unordered_set m_taken_txs; mutable epee::critical_section m_key_images_lock; key_image_cache m_key_images; mutable epee::critical_section m_remove_stuck_txs_lock; bool m_unsecure_disable_tx_validation_on_addition = false; }; } namespace boost { namespace serialization { template void serialize(archive_t & ar, currency::tx_memory_pool::tx_details& td, const unsigned int version) { ar & td.blob_size; ar & td.fee; ar & td.tx; ar & td.max_used_block_height; ar & td.max_used_block_id; ar & td.last_failed_height; ar & td.last_failed_id; ar & td.receive_time; ar & td.kept_by_block; } } } BOOST_CLASS_VERSION(currency::tx_memory_pool, CURRENT_MEMPOOL_ARCHIVE_VER)