Monero
cryptonote_protocol_handler.h
Go to the documentation of this file.
1 
5 // Copyright (c) 2014-2018, The Monero Project
6 //
7 // All rights reserved.
8 //
9 // Redistribution and use in source and binary forms, with or without modification, are
10 // permitted provided that the following conditions are met:
11 //
12 // 1. Redistributions of source code must retain the above copyright notice, this list of
13 // conditions and the following disclaimer.
14 //
15 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
16 // of conditions and the following disclaimer in the documentation and/or other
17 // materials provided with the distribution.
18 //
19 // 3. Neither the name of the copyright holder nor the names of its contributors may be
20 // used to endorse or promote products derived from this software without specific
21 // prior written permission.
22 //
23 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
24 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
26 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
31 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 //
33 // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
34 
35 #pragma once
36 
37 #include <boost/program_options/variables_map.hpp>
38 #include <string>
39 
40 #include "math_helper.h"
41 #include "storages/levin_abstract_invoke2.h"
42 #include "warnings.h"
45 #include "block_queue.h"
48 #include <boost/circular_buffer.hpp>
49 
52 
53 #define LOCALHOST_INT 2130706433
54 
55 namespace cryptonote
56 {
57 
58  class cryptonote_protocol_handler_base_pimpl;
60  private:
61  std::unique_ptr<cryptonote_protocol_handler_base_pimpl> mI;
62 
63  public:
66  void handler_request_blocks_history(std::list<crypto::hash>& ids); // before asking for list of objects, we can change the list still
67  void handler_response_blocks_now(size_t packet_size);
68 
69  virtual double get_avg_block_size() = 0;
70  virtual double estimate_one_block_size() noexcept; // for estimating size of blocks to download
71  };
72 
73  template<class t_core>
75  {
76  public:
81 
82  t_cryptonote_protocol_handler(t_core& rcore, nodetool::i_p2p_endpoint<connection_context>* p_net_layout, bool offline = false);
83 
84  BEGIN_INVOKE_MAP2(cryptonote_protocol_handler)
85  HANDLE_NOTIFY_T2(NOTIFY_NEW_BLOCK, &cryptonote_protocol_handler::handle_notify_new_block)
86  HANDLE_NOTIFY_T2(NOTIFY_NEW_TRANSACTIONS, &cryptonote_protocol_handler::handle_notify_new_transactions)
87  HANDLE_NOTIFY_T2(NOTIFY_REQUEST_GET_OBJECTS, &cryptonote_protocol_handler::handle_request_get_objects)
88  HANDLE_NOTIFY_T2(NOTIFY_RESPONSE_GET_OBJECTS, &cryptonote_protocol_handler::handle_response_get_objects)
89  HANDLE_NOTIFY_T2(NOTIFY_REQUEST_CHAIN, &cryptonote_protocol_handler::handle_request_chain)
90  HANDLE_NOTIFY_T2(NOTIFY_RESPONSE_CHAIN_ENTRY, &cryptonote_protocol_handler::handle_response_chain_entry)
91  HANDLE_NOTIFY_T2(NOTIFY_NEW_FLUFFY_BLOCK, &cryptonote_protocol_handler::handle_notify_new_fluffy_block)
92  HANDLE_NOTIFY_T2(NOTIFY_REQUEST_FLUFFY_MISSING_TX, &cryptonote_protocol_handler::handle_request_fluffy_missing_tx)
93  END_INVOKE_MAP2()
94 
95  bool on_idle();
96  bool init(const boost::program_options::variables_map& vm);
97  bool deinit();
98  void set_p2p_endpoint(nodetool::i_p2p_endpoint<connection_context>* p2p);
99  //bool process_handshake_data(const blobdata& data, cryptonote_connection_context& context);
100  bool process_payload_sync_data(const CORE_SYNC_DATA& hshd, cryptonote_connection_context& context, bool is_inital);
101  bool get_payload_sync_data(blobdata& data);
102  bool get_payload_sync_data(CORE_SYNC_DATA& hshd);
103  bool get_stat_info(core_stat_info& stat_inf);
104  bool on_callback(cryptonote_connection_context& context);
105  t_core& get_core(){return m_core;}
106  bool is_synchronized(){return m_synchronized;}
107  void log_connections();
108  std::list<connection_info> get_connections();
109  const block_queue &get_block_queue() const { return m_block_queue; }
110  void stop();
111  void on_connection_close(cryptonote_connection_context &context);
112  private:
113  //----------------- commands handlers ----------------------------------------------
114  int handle_notify_new_block(int command, NOTIFY_NEW_BLOCK::request& arg, cryptonote_connection_context& context);
115  int handle_notify_new_transactions(int command, NOTIFY_NEW_TRANSACTIONS::request& arg, cryptonote_connection_context& context);
116  int handle_request_get_objects(int command, NOTIFY_REQUEST_GET_OBJECTS::request& arg, cryptonote_connection_context& context);
117  int handle_response_get_objects(int command, NOTIFY_RESPONSE_GET_OBJECTS::request& arg, cryptonote_connection_context& context);
118  int handle_request_chain(int command, NOTIFY_REQUEST_CHAIN::request& arg, cryptonote_connection_context& context);
119  int handle_response_chain_entry(int command, NOTIFY_RESPONSE_CHAIN_ENTRY::request& arg, cryptonote_connection_context& context);
120  int handle_notify_new_fluffy_block(int command, NOTIFY_NEW_FLUFFY_BLOCK::request& arg, cryptonote_connection_context& context);
121  int handle_request_fluffy_missing_tx(int command, NOTIFY_REQUEST_FLUFFY_MISSING_TX::request& arg, cryptonote_connection_context& context);
122 
123  //----------------- i_bc_protocol_layout ---------------------------------------
124  virtual bool relay_block(NOTIFY_NEW_BLOCK::request& arg, cryptonote_connection_context& exclude_context);
125  virtual bool relay_transactions(NOTIFY_NEW_TRANSACTIONS::request& arg, cryptonote_connection_context& exclude_context);
126  //----------------------------------------------------------------------------------
127  //bool get_payload_sync_data(HANDSHAKE_DATA::request& hshd, cryptonote_connection_context& context);
128  bool request_missing_objects(cryptonote_connection_context& context, bool check_having_blocks, bool force_next_span = false);
129  size_t get_synchronizing_connections_count();
130  bool on_connection_synchronized();
131  bool should_download_next_span(cryptonote_connection_context& context) const;
132  void drop_connection(cryptonote_connection_context &context, bool add_fail, bool flush_all_spans);
133  bool kick_idle_peers();
134  int try_add_next_blocks(cryptonote_connection_context &context);
135 
136  t_core& m_core;
137 
140  std::atomic<uint32_t> m_syncronized_connections_count;
141  std::atomic<bool> m_synchronized;
142  std::atomic<bool> m_stopping;
143  boost::mutex m_sync_lock;
145  epee::math_helper::once_a_time_seconds<30> m_idle_peer_kicker;
146 
147  boost::mutex m_buffer_mutex;
148  double get_avg_block_size();
149  boost::circular_buffer<size_t> m_avg_buffer = boost::circular_buffer<size_t>(10);
150 
151  template<class t_parameter>
152  bool post_notify(typename t_parameter::request& arg, cryptonote_connection_context& context)
153  {
154  LOG_PRINT_L2("[" << epee::net_utils::print_connection_context_short(context) << "] post " << typeid(t_parameter).name() << " -->");
155  std::string blob;
156  epee::serialization::store_t_to_binary(arg, blob);
157  //handler_response_blocks_now(blob.size()); // XXX
158  return m_p2p->invoke_notify_to_peer(t_parameter::ID, blob, context);
159  }
160 
161  template<class t_parameter>
162  bool relay_post_notify(typename t_parameter::request& arg, cryptonote_connection_context& exclude_context)
163  {
164  LOG_PRINT_L2("[" << epee::net_utils::print_connection_context_short(exclude_context) << "] post relay " << typeid(t_parameter).name() << " -->");
165  std::string arg_buff;
166  epee::serialization::store_t_to_binary(arg, arg_buff);
167  return m_p2p->relay_notify_to_all(t_parameter::ID, arg_buff, exclude_context);
168  }
169  };
170 
171 } // namespace
172 
173 POP_WARNINGS
Definition: cryptonote_protocol_defs.h:162
nodetool::p2p_endpoint_stub< connection_context > m_p2p_stub
Definition: cryptonote_protocol_handler.h:138
epee::math_helper::once_a_time_seconds< 30 > m_idle_peer_kicker
Definition: cryptonote_protocol_handler.h:145
void handler_request_blocks_history(std::list< crypto::hash > &ids)
Definition: cryptonote_protocol_handler-base.cpp:122
Definition: block_queue.h:47
virtual double estimate_one_block_size() noexcept
Definition: cryptonote_protocol_handler-base.cpp:104
PUSH_WARNINGS
Definition: hash-ops.h:53
std::unique_ptr< cryptonote_protocol_handler_base_pimpl > mI
Definition: cryptonote_protocol_handler.h:61
Definition: net_node_common.h:62
Definition: unordered_containers_boost_serialization.h:37
const block_queue & get_block_queue() const
Definition: cryptonote_protocol_handler.h:109
static void init(std::string cache_filename)
Definition: blockchain_blackball.cpp:223
cryptonote_connection_context connection_context
Definition: cryptonote_protocol_handler.h:77
std::atomic< uint32_t > m_syncronized_connections_count
Definition: cryptonote_protocol_handler.h:140
virtual ~cryptonote_protocol_handler_base()
Definition: cryptonote_protocol_handler-base.cpp:119
Definition: connection_context.h:40
Definition: cryptonote_stat_info.h:37
virtual bool invoke_notify_to_peer(int command, const std::string &req_buff, const epee::net_utils::connection_context_base &context)=0
Definition: cryptonote_protocol_defs.h:224
void handler_response_blocks_now(size_t packet_size)
Definition: cryptonote_protocol_handler-base.cpp:125
core_stat_info stat_info
Definition: cryptonote_protocol_handler.h:78
Definition: cryptonote_protocol_defs.h:142
t_core & m_core
Definition: cryptonote_protocol_handler.h:136
nodetool::i_p2p_endpoint< connection_context > * m_p2p
Definition: cryptonote_protocol_handler.h:139
boost::mutex m_buffer_mutex
Definition: cryptonote_protocol_handler.h:147
Definition: cryptonote_protocol_defs.h:270
Definition: cryptonote_protocol_defs.h:251
Holds cryptonote related classes and helpers.
Definition: db_bdb.cpp:224
block_queue m_block_queue
Definition: cryptonote_protocol_handler.h:144
virtual bool relay_notify_to_all(int command, const std::string &data_buff, const epee::net_utils::connection_context_base &context)=0
t_cryptonote_protocol_handler< t_core > cryptonote_protocol_handler
Definition: cryptonote_protocol_handler.h:79
Definition: cryptonote_protocol_defs.h:174
Definition: cryptonote_protocol_defs.h:247
Definition: cryptonote_protocol_handler.h:74
Definition: cryptonote_protocol_defs.h:178
std::atomic< bool > m_stopping
Definition: cryptonote_protocol_handler.h:142
Definition: cryptonote_protocol_defs.h:123
bool post_notify(typename t_parameter::request &arg, cryptonote_connection_context &context)
Definition: cryptonote_protocol_handler.h:152
Definition: cryptonote_protocol_defs.h:127
Definition: cryptonote_protocol_defs.h:210
Definition: cryptonote_protocol_defs.h:195
CORE_SYNC_DATA payload_type
Definition: cryptonote_protocol_handler.h:80
bool relay_post_notify(typename t_parameter::request &arg, cryptonote_connection_context &exclude_context)
Definition: cryptonote_protocol_handler.h:162
Definition: cryptonote_protocol_handler.h:59
std::atomic< bool > m_synchronized
Definition: cryptonote_protocol_handler.h:141
std::string blobdata
Definition: blobdatatype.h:35
boost::mutex m_sync_lock
Definition: cryptonote_protocol_handler.h:143
Definition: cryptonote_protocol_defs.h:228
int bool
Definition: stdbool.h:35
Definition: net_node.cpp:34
cryptonote_protocol_handler_base()
Definition: cryptonote_protocol_handler-base.cpp:116
DISABLE_VS_WARNINGS(4244 4345 4503) using namespace crypto
bool is_synchronized()
Definition: cryptonote_protocol_handler.h:106
Definition: cryptonote_protocol_defs.h:158
Definition: cryptonote_protocol_defs.h:266
Definition: cryptonote_protocol_defs.h:146
const char * name
Definition: simplewallet.cpp:319
Definition: cryptonote_protocol_defs.h:214
Definition: net_node_common.h:44
Definition: cryptonote_protocol_handler_common.h:41