35 #include <boost/program_options/options_description.hpp> 36 #include <boost/program_options/variables_map.hpp> 37 #include <boost/interprocess/sync/file_lock.hpp> 40 #include "storages/portable_storage_template_helper.h" 138 bool handle_incoming_txs(
const std::vector<blobdata>& tx_blobs, std::vector<tx_verification_context>& tvc,
bool keeped_by_block,
bool relayed,
bool do_not_relay);
161 bool prepare_handle_incoming_blocks(
const std::vector<block_complete_entry> &
blocks);
168 bool cleanup_handle_incoming_blocks(
bool force_sync =
false);
177 bool check_incoming_block_size(
const blobdata& block_blob)
const;
199 virtual bool handle_block_found(
block&
b);
236 static void init_options(boost::program_options::options_description& desc);
257 bool set_genesis_block(
const block&
b);
271 void test_drop_download();
278 void test_drop_download_height(uint64_t
height);
285 bool get_test_drop_download()
const;
295 bool get_test_drop_download_height()
const;
302 uint64_t get_current_blockchain_height()
const;
317 bool get_blocks(uint64_t start_offset,
size_t count, std::vector<std::pair<cryptonote::blobdata,block>>&
blocks, std::vector<cryptonote::blobdata>& txs)
const;
324 bool get_blocks(uint64_t start_offset,
size_t count, std::vector<std::pair<cryptonote::blobdata,block>>&
blocks)
const;
331 bool get_blocks(uint64_t start_offset,
size_t count, std::vector<block>&
blocks)
const;
338 template<
class t_
ids_container,
class t_blocks_container,
class t_missed_container>
339 bool get_blocks(
const t_ids_container& block_ids, t_blocks_container&
blocks, t_missed_container& missed_bs)
const 341 return m_blockchain_storage.get_blocks(block_ids,
blocks, missed_bs);
356 bool get_transactions(
const std::vector<crypto::hash>& txs_ids, std::vector<cryptonote::blobdata>& txs, std::vector<crypto::hash>& missed_txs)
const;
363 bool get_transactions(
const std::vector<crypto::hash>& txs_ids, std::vector<transaction>& txs, std::vector<crypto::hash>& missed_txs)
const;
370 bool get_block_by_hash(
const crypto::hash &h,
block &blk,
bool *orphan = NULL)
const;
377 bool get_alternative_blocks(std::vector<block>&
blocks)
const;
384 size_t get_alternative_blocks_count()
const;
405 void set_checkpoints_file_path(
const std::string& path);
412 void set_enforce_dns_checkpoints(
bool enforce_dns);
434 bool get_pool_transactions(std::vector<transaction>& txs,
bool include_unrelayed_txes =
true)
const;
441 bool get_txpool_backlog(std::vector<tx_backlog_entry>& backlog)
const;
449 bool get_pool_transaction_hashes(std::vector<crypto::hash>& txs,
bool include_unrelayed_txes =
true)
const;
457 bool get_pool_transaction_stats(
struct txpool_stats& stats,
bool include_unrelayed_txes =
true)
const;
472 bool get_pool_transactions_and_spent_keys_info(std::vector<tx_info>& tx_infos, std::vector<spent_key_image_info>& key_image_infos,
bool include_unrelayed_txes =
true)
const;
486 size_t get_pool_transactions_count()
const;
493 size_t get_blockchain_total_transactions()
const;
507 bool get_short_chain_history(std::list<crypto::hash>& ids)
const;
521 bool find_blockchain_supplement(
const uint64_t req_start_block,
const std::list<crypto::hash>& qblock_ids, std::vector<std::pair<std::pair<cryptonote::blobdata, crypto::hash>, std::vector<std::pair<crypto::hash, cryptonote::blobdata> > > >&
blocks, uint64_t& total_height, uint64_t& start_height,
bool pruned,
bool get_miner_tx_hash,
size_t max_count)
const;
537 bool get_tx_outputs_gindexs(
const crypto::hash& tx_id, std::vector<uint64_t>& indexs)
const;
565 bool get_output_distribution(uint64_t amount, uint64_t from_height, uint64_t to_height, uint64_t &start_height, std::vector<uint64_t> &distribution, uint64_t &
base)
const;
600 std::string print_pool(
bool short_format)
const;
607 void on_synchronized();
614 void safesyncmode(
const bool onoff);
621 void set_target_blockchain_height(uint64_t target_blockchain_height);
628 uint64_t get_target_blockchain_height()
const;
635 uint8_t get_ideal_hard_fork_version()
const;
642 uint8_t get_ideal_hard_fork_version(uint64_t
height)
const;
649 uint8_t get_hard_fork_version(uint64_t
height)
const;
656 uint64_t get_earliest_ideal_height_for_version(uint8_t
version)
const;
662 std::time_t get_start_time()
const;
674 bool update_checkpoints();
682 void graceful_exit();
708 bool are_key_images_spent(
const std::vector<crypto::key_image>& key_im, std::vector<bool> &spent)
const;
718 bool are_key_images_spent_in_pool(
const std::vector<crypto::key_image>& key_im, std::vector<bool> &spent)
const;
725 size_t get_block_sync_size(uint64_t
height)
const;
732 std::pair<uint64_t, uint64_t> get_coinbase_tx_sum(
const uint64_t start_offset,
const size_t count);
763 uint64_t prevalidate_block_hashes(uint64_t
height,
const std::vector<crypto::hash> &hashes);
770 uint64_t get_free_space()
const;
824 bool load_state_data();
861 bool check_tx_semantic(
const transaction& tx,
bool keeped_by_block)
const;
867 bool handle_incoming_tx_accumulated_batch(std::vector<tx_verification_batch_info> &
tx_info,
bool keeped_by_block);
876 bool update_miner_block_template();
885 bool handle_command_line(
const boost::program_options::variables_map& vm);
894 bool check_tx_inputs_keyimages_diff(
const transaction& tx)
const;
903 bool check_tx_inputs_ring_members_diff(
const transaction& tx)
const;
913 bool check_tx_inputs_keyimages_domain(
const transaction& tx)
const;
925 bool check_fork_time();
932 bool relay_txpool_transactions();
946 bool check_disk_space();
948 bool m_test_drop_download =
true;
950 uint64_t m_test_drop_download_height = 0;
992 std::unordered_set<crypto::hash> bad_semantics_txes[2];
1000 } check_updates_level;
Definition: cryptonote_protocol_defs.h:162
Blockchain m_blockchain_storage
Blockchain instance.
Definition: cryptonote_core.h:953
std::string m_config_folder
folder to look in for configs and other files
Definition: cryptonote_core.h:963
PUSH_WARNINGS
Definition: hash-ops.h:53
epee::math_helper::once_a_time_seconds< 60 *60 *12, true > m_check_updates_interval
interval for checking for new versions
Definition: cryptonote_core.h:970
void init_options(boost::program_options::options_description &hidden_options, boost::program_options::options_description &normal_options)
Definition: posix_daemonizer.inl:56
std::atomic_flag m_checkpoints_updating
set if checkpoints are currently updating to avoid multiple threads attempting to update at once ...
Definition: cryptonote_core.h:985
crypto::hash tx_hash
Definition: cryptonote_core.h:866
Definition: cryptonote_protocol_handler_common.h:51
static void init(std::string cache_filename)
Definition: blockchain_blackball.cpp:223
Definition: cryptonote_core.h:999
Definition: cryptonote_basic.h:366
time_t m_last_json_checkpoints_update
time when json checkpoints were last updated
Definition: cryptonote_core.h:983
uint64_t height
Definition: blockchain.cpp:88
time_t start_time
Definition: cryptonote_core.h:990
account_public_address m_miner_address
address to mine to (for miner instance)
Definition: cryptonote_core.h:961
Definition: core_rpc_server_commands_defs.h:722
time_t m_last_dns_checkpoints_update
time when dns checkpoints were last updated
Definition: cryptonote_core.h:982
const command_line::arg_descriptor< bool, false > arg_stagenet_on
Definition: cryptonote_core.cpp:74
void disable_dns_checkpoints(bool disable=true)
set whether or not to enable or disable DNS checkpoints
Definition: cryptonote_core.h:419
Definition: connection_context.h:40
network_type get_nettype() const
get the network type we're on
Definition: cryptonote_core.h:739
Definition: cryptonote_core.h:997
Definition: verification_context.h:53
Definition: cryptonote_stat_info.h:37
std::unordered_map< crypto::key_image, std::vector< crypto::hash > > key_images_with_tx_hashes
Definition: message_data_structs.h:102
bool m_offline
Definition: cryptonote_core.h:1007
std::atomic< bool > m_update_available
Definition: cryptonote_core.h:979
bool m_fluffy_blocks_enabled
Definition: cryptonote_core.h:1006
std::atomic< bool > m_starter_message_showed
has the "daemon will sync now" message been shown?
Definition: cryptonote_core.h:973
network_type m_nettype
which network are we on?
Definition: cryptonote_core.h:977
Holds cryptonote related classes and helpers.
Definition: db_bdb.cpp:224
Definition: verification_context.h:37
const command_line::arg_descriptor< difficulty_type > arg_fixed_difficulty
Definition: cryptonote_core.cpp:84
epee::math_helper::once_a_time_seconds< 60 *60 *2, true > m_fork_moaner
interval for checking HardFork status
Definition: cryptonote_core.h:968
tx_memory_pool m_mempool
transaction pool instance
Definition: cryptonote_core.h:952
const command_line::arg_descriptor< bool, false > arg_testnet_on
Definition: cryptonote_core.cpp:69
epee::math_helper::once_a_time_seconds< 60 *60 *12, false > m_store_blockchain_interval
interval for manual storing of Blockchain, if enabled
Definition: cryptonote_core.h:967
size_t m_last_update_length
Definition: cryptonote_core.h:1003
bool m_disable_dns_checkpoints
Definition: cryptonote_core.h:986
Definition: cryptonote_core.h:996
i_cryptonote_protocol * get_protocol()
get the cryptonote protocol instance
Definition: cryptonote_core.h:184
Definition: cryptonote_protocol_defs.h:178
handles core cryptonote functionality
Definition: cryptonote_core.h:78
Definition: cryptonote_core.h:998
bool fluffy_blocks_enabled() const
get whether fluffy blocks are enabled
Definition: cryptonote_core.h:756
int b
Definition: base.py:1
const command_line::arg_descriptor< std::string, false, true, 2 > arg_data_dir
Definition: cryptonote_core.cpp:89
bool is_update_available() const
check whether an update is known to be available or not
Definition: cryptonote_core.h:749
bool get_blocks(const t_ids_container &block_ids, t_blocks_container &blocks, t_missed_container &missed_bs) const
gets blocks based on a list of block hashes
Definition: cryptonote_core.h:339
boost::mutex bad_semantics_txes_lock
Definition: cryptonote_core.h:993
std::string m_checkpoints_path
path to json checkpoints file
Definition: cryptonote_core.h:981
epee::critical_section m_incoming_tx_lock
incoming transaction lock
Definition: cryptonote_core.h:957
boost::mutex m_update_mutex
Definition: cryptonote_core.h:1004
cryptonote_protocol_stub m_protocol_stub
cryptonote protocol stub instance
Definition: cryptonote_core.h:965
Definition: cryptonote_core.h:56
uint64_t m_target_blockchain_height
blockchain height target
Definition: cryptonote_core.h:975
const Blockchain & get_blockchain_storage() const
gets the Blockchain instance (const)
Definition: cryptonote_core.h:593
epee::math_helper::once_a_time_seconds< 60 *10, true > m_check_disk_space_interval
interval for checking for disk space
Definition: cryptonote_core.h:971
const command_line::arg_descriptor< bool > arg_offline
Definition: cryptonote_core.cpp:102
uint8_t version
Definition: blockchain.cpp:87
Transaction pool, handles transactions which are not part of a block.
Definition: tx_pool.h:93
std::string blobdata
Definition: blobdatatype.h:35
#define blocks
Definition: sha512-hash.c:11
bool offline() const
get whether the core is running offline
Definition: cryptonote_core.h:777
Definition: core_rpc_server_commands_defs.h:1540
Definition: core_rpc_server_commands_defs.h:696
network_type
Definition: cryptonote_config.h:204
miner & get_miner()
gets the miner instance
Definition: cryptonote_core.h:219
Definition: core_rpc_server_commands_defs.h:1382
Definition: cryptonote_basic.h:400
Blockchain & get_blockchain_storage()
gets the Blockchain instance
Definition: cryptonote_core.h:586
std::uint64_t difficulty_type
Definition: difficulty.h:40
size_t block_sync_size
Definition: cryptonote_core.h:988
POD_CLASS key_image
Definition: crypto.h:89
const miner & get_miner() const
gets the miner instance (const)
Definition: cryptonote_core.h:226
Definition: cryptonote_protocol_defs.h:228
miner m_miner
miner instance
Definition: cryptonote_core.h:960
const command_line::arg_descriptor< bool > arg_regtest_on
Definition: cryptonote_core.cpp:79
tools::download_async_handle m_update_download
Definition: cryptonote_core.h:1002
DISABLE_VS_WARNINGS(4244 4345 4503) using namespace crypto
POD_CLASS hash
Definition: hash.h:49
i_cryptonote_protocol * m_pprotocol
cryptonote protocol instance
Definition: cryptonote_core.h:955
A container for blockchain checkpoints.
Definition: checkpoints.h:51
const std::pair< uint8_t, uint64_t > * hard_forks
Definition: cryptonote_core.h:57
epee::math_helper::once_a_time_seconds< 60 *2, false > m_txpool_auto_relayer
interval for checking re-relaying txpool transactions
Definition: cryptonote_core.h:969
Definition: cryptonote_basic.h:182
Definition: cryptonote_protocol_handler_common.h:41
Definition: blockchain.h:77
Definition: cryptonote_core.h:866