Monero
net_node.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2020, The Monero Project
2 //
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are
6 // permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice, this list of
9 // conditions and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 // of conditions and the following disclaimer in the documentation and/or other
13 // materials provided with the distribution.
14 //
15 // 3. Neither the name of the copyright holder nor the names of its contributors may be
16 // used to endorse or promote products derived from this software without specific
17 // prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 //
29 // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30 
31 #pragma once
32 #include <array>
33 #include <atomic>
34 #include <boost/asio/io_service.hpp>
35 #include <boost/asio/ip/tcp.hpp>
36 #include <boost/thread.hpp>
37 #include <boost/optional/optional_fwd.hpp>
38 #include <boost/program_options/options_description.hpp>
39 #include <boost/program_options/variables_map.hpp>
40 #include <boost/uuid/uuid.hpp>
41 #include <chrono>
42 #include <functional>
43 #include <utility>
44 #include <vector>
45 
46 #include "cryptonote_config.h"
49 #include "warnings.h"
50 #include "net/abstract_tcp_server2.h"
51 #include "net/levin_protocol_handler.h"
52 #include "net/levin_protocol_handler_async.h"
53 #include "p2p_protocol_defs.h"
54 #include "storages/levin_abstract_invoke2.h"
55 #include "net_peerlist.h"
56 #include "math_helper.h"
57 #include "net_node_common.h"
58 #include "net/enums.h"
59 #include "net/fwd.h"
60 #include "common/command_line.h"
61 
64 
65 namespace nodetool
66 {
67  struct proxy
68  {
70  : max_connections(-1),
71  address(),
72  zone(epee::net_utils::zone::invalid),
73  noise(true)
74  {}
75 
76  std::int64_t max_connections;
77  boost::asio::ip::tcp::endpoint address;
78  epee::net_utils::zone zone;
79  bool noise;
80  };
81 
83  {
85  : max_connections(-1),
86  local_ip(),
87  local_port(),
88  our_address(),
89  default_remote()
90  {}
91 
92  std::int64_t max_connections;
93  std::string local_ip;
94  std::string local_port;
95  epee::net_utils::network_address our_address;
96  epee::net_utils::network_address default_remote;
97  };
98 
99  boost::optional<std::vector<proxy>> get_proxies(const boost::program_options::variables_map& vm);
100  boost::optional<std::vector<anonymous_inbound>> get_anonymous_inbounds(const boost::program_options::variables_map& vm);
101 
103  bool is_filtered_command(epee::net_utils::network_address const& address, int command);
104 
105  // hides boost::future and chrono stuff from mondo template file
106  boost::optional<boost::asio::ip::tcp::socket>
107  socks_connect_internal(const std::atomic<bool>& stop_signal, boost::asio::io_service& service, const boost::asio::ip::tcp::endpoint& proxy, const epee::net_utils::network_address& remote);
108 
109 
110  template<class base_type>
111  struct p2p_connection_context_t: base_type //t_payload_net_handler::connection_context //public net_utils::connection_context_base
112  {
114  : fluff_txs(),
115  flush_time(std::chrono::steady_clock::time_point::max()),
116  peer_id(0),
117  support_flags(0),
118  m_in_timedsync(false)
119  {}
120 
121  std::vector<cryptonote::blobdata> fluff_txs;
122  std::chrono::steady_clock::time_point flush_time;
124  uint32_t support_flags;
126  std::set<epee::net_utils::network_address> sent_addresses;
127  };
128 
129  template<class t_payload_net_handler>
130  class node_server: public epee::levin::levin_commands_handler<p2p_connection_context_t<typename t_payload_net_handler::connection_context> >,
131  public i_p2p_endpoint<typename t_payload_net_handler::connection_context>,
132  public epee::net_utils::i_connection_filter
133  {
134  struct by_conn_id{};
135  struct by_peer_id{};
136  struct by_addr{};
137 
139 
142 
143  typedef epee::net_utils::boosted_tcp_server<epee::levin::async_protocol_handler<p2p_connection_context>> net_server;
144 
145  struct network_zone;
146  using connect_func = boost::optional<p2p_connection_context>(network_zone&, epee::net_utils::network_address const&, epee::net_utils::ssl_support_t);
147 
148  struct config_t
149  {
151  : m_net_config(),
152  m_peer_id(crypto::rand<uint64_t>()),
153  m_support_flags(0)
154  {}
155 
157  uint64_t m_peer_id;
158  uint32_t m_support_flags;
159  };
160  typedef epee::misc_utils::struct_init<config_t> config;
161 
163  {
165  : m_connect(nullptr),
166  m_net_server(epee::net_utils::e_connection_type_P2P),
167  m_seed_nodes(),
168  m_bind_ip(),
169  m_bind_ipv6_address(),
170  m_port(),
171  m_port_ipv6(),
172  m_notifier(),
173  m_our_address(),
174  m_peerlist(),
175  m_config{},
176  m_proxy_address(),
177  m_current_number_of_out_peers(0),
178  m_current_number_of_in_peers(0),
179  m_seed_nodes_lock(),
180  m_can_pingback(false),
181  m_seed_nodes_initialized(false)
182  {
183  set_config_defaults();
184  }
185 
186  network_zone(boost::asio::io_service& public_service)
187  : m_connect(nullptr),
188  m_net_server(public_service, epee::net_utils::e_connection_type_P2P),
189  m_seed_nodes(),
190  m_bind_ip(),
191  m_bind_ipv6_address(),
192  m_port(),
193  m_port_ipv6(),
194  m_notifier(),
195  m_our_address(),
196  m_peerlist(),
197  m_config{},
198  m_proxy_address(),
199  m_current_number_of_out_peers(0),
200  m_current_number_of_in_peers(0),
201  m_seed_nodes_lock(),
202  m_can_pingback(false),
203  m_seed_nodes_initialized(false)
204  {
205  set_config_defaults();
206  }
207 
210  std::vector<epee::net_utils::network_address> m_seed_nodes;
211  std::string m_bind_ip;
212  std::string m_bind_ipv6_address;
213  std::string m_port;
214  std::string m_port_ipv6;
216  epee::net_utils::network_address m_our_address; // in anonymity networks
219  boost::asio::ip::tcp::endpoint m_proxy_address;
220  std::atomic<unsigned int> m_current_number_of_out_peers;
221  std::atomic<unsigned int> m_current_number_of_in_peers;
222  boost::shared_mutex m_seed_nodes_lock;
225 
226  private:
227  void set_config_defaults() noexcept
228  {
229  // at this moment we have a hardcoded config
230  m_config.m_net_config.handshake_interval = P2P_DEFAULT_HANDSHAKE_INTERVAL;
231  m_config.m_net_config.packet_max_size = P2P_DEFAULT_PACKET_MAX_SIZE;
232  m_config.m_net_config.config_id = 0;
233  m_config.m_net_config.connection_timeout = P2P_DEFAULT_CONNECTION_TIMEOUT;
234  m_config.m_net_config.ping_connection_timeout = P2P_DEFAULT_PING_CONNECTION_TIMEOUT;
235  m_config.m_net_config.send_peerlist_sz = P2P_DEFAULT_PEERS_IN_HANDSHAKE;
236  m_config.m_support_flags = 0; // only set in public zone
237  }
238  };
239 
240  enum igd_t
241  {
245  };
246 
247  public:
248  typedef t_payload_net_handler payload_net_handler;
249 
250  node_server(t_payload_net_handler& payload_handler)
251  : m_payload_handler(payload_handler),
252  m_external_port(0),
253  m_rpc_port(0),
254  m_rpc_credits_per_hash(0),
255  m_allow_local_ip(false),
256  m_hide_my_port(false),
257  m_igd(no_igd),
258  m_offline(false),
259  is_closing(false),
260  m_network_id()
261  {}
262  virtual ~node_server();
263 
264  static void init_options(boost::program_options::options_description& desc);
265 
266  bool run();
267  network_zone& add_zone(epee::net_utils::zone zone);
268  bool init(const boost::program_options::variables_map& vm);
269  bool deinit();
270  bool send_stop_signal();
271  uint32_t get_this_peer_port(){return m_listening_port;}
272  t_payload_net_handler& get_payload_object();
273 
274  // debug functions
275  bool log_peerlist();
276  bool log_connections();
277 
278  // These functions only return information for the "public" zone
279  virtual uint64_t get_public_connections_count();
280  size_t get_public_outgoing_connections_count();
281  size_t get_public_white_peers_count();
282  size_t get_public_gray_peers_count();
283  void get_public_peerlist(std::vector<peerlist_entry>& gray, std::vector<peerlist_entry>& white);
284  void get_peerlist(std::vector<peerlist_entry>& gray, std::vector<peerlist_entry>& white);
285 
286  void change_max_out_public_peers(size_t count);
287  uint32_t get_max_out_public_peers() const;
288  void change_max_in_public_peers(size_t count);
289  uint32_t get_max_in_public_peers() const;
290  virtual bool block_host(const epee::net_utils::network_address &adress, time_t seconds = P2P_IP_BLOCKTIME);
291  virtual bool unblock_host(const epee::net_utils::network_address &address);
292  virtual bool block_subnet(const epee::net_utils::ipv4_network_subnet &subnet, time_t seconds = P2P_IP_BLOCKTIME);
293  virtual bool unblock_subnet(const epee::net_utils::ipv4_network_subnet &subnet);
294  virtual bool is_host_blocked(const epee::net_utils::network_address &address, time_t *seconds) { CRITICAL_REGION_LOCAL(m_blocked_hosts_lock); return !is_remote_host_allowed(address, seconds); }
295  virtual std::map<std::string, time_t> get_blocked_hosts() { CRITICAL_REGION_LOCAL(m_blocked_hosts_lock); return m_blocked_hosts; }
296  virtual std::map<epee::net_utils::ipv4_network_subnet, time_t> get_blocked_subnets() { CRITICAL_REGION_LOCAL(m_blocked_hosts_lock); return m_blocked_subnets; }
297 
298  virtual void add_used_stripe_peer(const typename t_payload_net_handler::connection_context &context);
299  virtual void remove_used_stripe_peer(const typename t_payload_net_handler::connection_context &context);
300  virtual void clear_used_stripe_peers();
301 
302  private:
303  const std::vector<std::string> m_seed_nodes_list =
304  { "seeds.moneroseeds.se"
305  , "seeds.moneroseeds.ae.org"
306  , "seeds.moneroseeds.ch"
307  , "seeds.moneroseeds.li"
308  };
309 
310  bool islimitup=false;
311  bool islimitdown=false;
312 
313  CHAIN_LEVIN_INVOKE_MAP2(p2p_connection_context); //move levin_commands_handler interface invoke(...) callbacks into invoke map
314  CHAIN_LEVIN_NOTIFY_MAP2(p2p_connection_context); //move levin_commands_handler interface notify(...) callbacks into nothing
315 
316  BEGIN_INVOKE_MAP2(node_server)
317  if (is_filtered_command(context.m_remote_address, command))
318  return LEVIN_ERROR_CONNECTION_HANDLER_NOT_DEFINED;
319 
320  HANDLE_INVOKE_T2(COMMAND_HANDSHAKE, &node_server::handle_handshake)
321  HANDLE_INVOKE_T2(COMMAND_TIMED_SYNC, &node_server::handle_timed_sync)
322  HANDLE_INVOKE_T2(COMMAND_PING, &node_server::handle_ping)
323  HANDLE_INVOKE_T2(COMMAND_REQUEST_SUPPORT_FLAGS, &node_server::handle_get_support_flags)
324  CHAIN_INVOKE_MAP_TO_OBJ_FORCE_CONTEXT(m_payload_handler, typename t_payload_net_handler::connection_context&)
325  END_INVOKE_MAP2()
326 
327  enum PeerType { anchor = 0, white, gray };
328 
329  //----------------- commands handlers ----------------------------------------------
330  int handle_handshake(int command, typename COMMAND_HANDSHAKE::request& arg, typename COMMAND_HANDSHAKE::response& rsp, p2p_connection_context& context);
331  int handle_timed_sync(int command, typename COMMAND_TIMED_SYNC::request& arg, typename COMMAND_TIMED_SYNC::response& rsp, p2p_connection_context& context);
332  int handle_ping(int command, COMMAND_PING::request& arg, COMMAND_PING::response& rsp, p2p_connection_context& context);
333  int handle_get_support_flags(int command, COMMAND_REQUEST_SUPPORT_FLAGS::request& arg, COMMAND_REQUEST_SUPPORT_FLAGS::response& rsp, p2p_connection_context& context);
334  bool init_config();
335  bool make_default_peer_id();
336  bool make_default_config();
337  bool store_config();
338 
339 
340  //----------------- levin_commands_handler -------------------------------------------------------------
341  virtual void on_connection_new(p2p_connection_context& context);
342  virtual void on_connection_close(p2p_connection_context& context);
343  virtual void callback(p2p_connection_context& context);
344  //----------------- i_p2p_endpoint -------------------------------------------------------------
345  virtual bool relay_notify_to_list(int command, const epee::span<const uint8_t> data_buff, std::vector<std::pair<epee::net_utils::zone, boost::uuids::uuid>> connections);
346  virtual epee::net_utils::zone send_txs(std::vector<cryptonote::blobdata> txs, const epee::net_utils::zone origin, const boost::uuids::uuid& source, cryptonote::relay_method tx_relay);
347  virtual bool invoke_command_to_peer(int command, const epee::span<const uint8_t> req_buff, std::string& resp_buff, const epee::net_utils::connection_context_base& context);
348  virtual bool invoke_notify_to_peer(int command, const epee::span<const uint8_t> req_buff, const epee::net_utils::connection_context_base& context);
349  virtual bool drop_connection(const epee::net_utils::connection_context_base& context);
350  virtual void request_callback(const epee::net_utils::connection_context_base& context);
351  virtual void for_each_connection(std::function<bool(typename t_payload_net_handler::connection_context&, peerid_type, uint32_t)> f);
352  virtual bool for_connection(const boost::uuids::uuid&, std::function<bool(typename t_payload_net_handler::connection_context&, peerid_type, uint32_t)> f);
353  virtual bool add_host_fail(const epee::net_utils::network_address &address, unsigned int score = 1);
354  //----------------- i_connection_filter --------------------------------------------------------
355  virtual bool is_remote_host_allowed(const epee::net_utils::network_address &address, time_t *t = NULL);
356  //-----------------------------------------------------------------------------------------------
357  bool parse_peer_from_string(epee::net_utils::network_address& pe, const std::string& node_addr, uint16_t default_port = 0);
358  bool handle_command_line(
359  const boost::program_options::variables_map& vm
360  );
361  bool idle_worker();
362  bool handle_remote_peerlist(const std::vector<peerlist_entry>& peerlist, const epee::net_utils::connection_context_base& context);
363  bool get_local_node_data(basic_node_data& node_data, const network_zone& zone);
364  //bool get_local_handshake_data(handshake_data& hshd);
365 
366  bool sanitize_peerlist(std::vector<peerlist_entry>& local_peerlist);
367 
368  bool connections_maker();
369  bool peer_sync_idle_maker();
370  bool do_handshake_with_peer(peerid_type& pi, p2p_connection_context& context, bool just_take_peerlist = false);
371  bool do_peer_timed_sync(const epee::net_utils::connection_context_base& context, peerid_type peer_id);
372 
373  bool make_new_connection_from_anchor_peerlist(const std::vector<anchor_peerlist_entry>& anchor_peerlist);
374  bool make_new_connection_from_peerlist(network_zone& zone, bool use_white_list);
375  bool try_to_connect_and_handshake_with_new_peer(const epee::net_utils::network_address& na, bool just_take_peerlist = false, uint64_t last_seen_stamp = 0, PeerType peer_type = white, uint64_t first_seen_stamp = 0);
376  size_t get_random_index_with_fixed_probability(size_t max_index);
377  bool is_peer_used(const peerlist_entry& peer);
378  bool is_peer_used(const anchor_peerlist_entry& peer);
379  bool is_addr_connected(const epee::net_utils::network_address& peer);
380  void add_upnp_port_mapping_impl(uint32_t port, bool ipv6=false);
381  void add_upnp_port_mapping_v4(uint32_t port);
382  void add_upnp_port_mapping_v6(uint32_t port);
383  void add_upnp_port_mapping(uint32_t port, bool ipv4=true, bool ipv6=false);
384  void delete_upnp_port_mapping_impl(uint32_t port, bool ipv6=false);
385  void delete_upnp_port_mapping_v4(uint32_t port);
386  void delete_upnp_port_mapping_v6(uint32_t port);
387  void delete_upnp_port_mapping(uint32_t port);
388  template<class t_callback>
389  bool try_ping(basic_node_data& node_data, p2p_connection_context& context, const t_callback &cb);
390  bool try_get_support_flags(const p2p_connection_context& context, std::function<void(p2p_connection_context&, const uint32_t&)> f);
391  bool make_expected_connections_count(network_zone& zone, PeerType peer_type, size_t expected_connections);
392  void record_addr_failed(const epee::net_utils::network_address& addr);
393  bool is_addr_recently_failed(const epee::net_utils::network_address& addr);
394  bool is_priority_node(const epee::net_utils::network_address& na);
395  std::set<std::string> get_ip_seed_nodes() const;
396  std::set<std::string> get_dns_seed_nodes();
397  std::set<std::string> get_seed_nodes(epee::net_utils::zone);
398  bool connect_to_seed(epee::net_utils::zone);
399 
400  template <class Container>
401  bool connect_to_peerlist(const Container& peers);
402 
403  template <class Container>
404  bool parse_peers_and_add_to_container(const boost::program_options::variables_map& vm, const command_line::arg_descriptor<std::vector<std::string> > & arg, Container& container);
405 
406  bool set_max_out_peers(network_zone& zone, int64_t max);
407  bool set_max_in_peers(network_zone& zone, int64_t max);
408  bool set_tos_flag(const boost::program_options::variables_map& vm, int limit);
409 
410  bool set_rate_up_limit(const boost::program_options::variables_map& vm, int64_t limit);
411  bool set_rate_down_limit(const boost::program_options::variables_map& vm, int64_t limit);
412  bool set_rate_limit(const boost::program_options::variables_map& vm, int64_t limit);
413 
414  bool has_too_many_connections(const epee::net_utils::network_address &address);
415  size_t get_incoming_connections_count();
416  size_t get_incoming_connections_count(network_zone&);
417  size_t get_outgoing_connections_count();
418  size_t get_outgoing_connections_count(network_zone&);
419 
420  bool check_connection_and_handshake_with_peer(const epee::net_utils::network_address& na, uint64_t last_seen_stamp);
421  bool gray_peerlist_housekeeping();
422  bool check_incoming_connections();
423 
424  void kill() {
425  _info("Killing the net_node");
426  is_closing = true;
427  if(mPeersLoggerThread != nullptr)
428  mPeersLoggerThread->join(); // make sure the thread finishes
429  _info("Joined extra background net_node threads");
430  }
431 
432  //debug functions
433  std::string print_connections_container();
434 
435 
436  public:
437 
438  void set_rpc_port(uint16_t rpc_port)
439  {
440  m_rpc_port = rpc_port;
441  }
442 
443  void set_rpc_credits_per_hash(uint32_t rpc_credits_per_hash)
444  {
445  m_rpc_credits_per_hash = rpc_credits_per_hash;
446  }
447 
448  private:
449  std::string m_config_folder;
450 
455  uint32_t m_external_port;
456  uint16_t m_rpc_port;
460  igd_t m_igd;
461  bool m_offline;
464  std::atomic<bool> is_closing;
465  std::unique_ptr<boost::thread> mPeersLoggerThread;
466  //critical_section m_connections_lock;
467  //connections_indexed_container m_connections;
468 
469  t_payload_net_handler& m_payload_handler;
471 
472  epee::math_helper::once_a_time_seconds<P2P_DEFAULT_HANDSHAKE_INTERVAL> m_peer_handshake_idle_maker_interval;
473  epee::math_helper::once_a_time_seconds<1> m_connections_maker_interval;
474  epee::math_helper::once_a_time_seconds<60*30, false> m_peerlist_store_interval;
475  epee::math_helper::once_a_time_seconds<60> m_gray_peerlist_housekeeping_interval;
476  epee::math_helper::once_a_time_seconds<3600, false> m_incoming_connections_interval;
477 
478  std::list<epee::net_utils::network_address> m_priority_peers;
479  std::vector<epee::net_utils::network_address> m_exclusive_peers;
480  std::atomic_flag m_fallback_seed_nodes_added;
481  std::vector<nodetool::peerlist_entry> m_command_line_peers;
482  uint64_t m_peer_livetime;
483  //keep connections to initiate some interactions
484 
485 
486  static boost::optional<p2p_connection_context> public_connect(network_zone&, epee::net_utils::network_address const&, epee::net_utils::ssl_support_t);
487  static boost::optional<p2p_connection_context> socks_connect(network_zone&, epee::net_utils::network_address const&, epee::net_utils::ssl_support_t);
488 
489 
490  /* A `std::map` provides constant iterators and key/value pointers even with
491  inserts/erases to _other_ elements. This makes the configuration step easier
492  since references can safely be stored on the stack. Do not insert/erase
493  after configuration and before destruction, lock safety would need to be
494  added. `std::map::operator[]` WILL insert! */
495  std::map<epee::net_utils::zone, network_zone> m_network_zones;
496 
497 
498  std::map<std::string, time_t> m_conn_fails_cache;
499  epee::critical_section m_conn_fails_cache_lock;
500 
501  epee::critical_section m_blocked_hosts_lock; // for both hosts and subnets
502  std::map<std::string, time_t> m_blocked_hosts;
503  std::map<epee::net_utils::ipv4_network_subnet, time_t> m_blocked_subnets;
504 
505  epee::critical_section m_host_fails_score_lock;
506  std::map<std::string, uint64_t> m_host_fails_score;
507 
509  std::array<std::list<epee::net_utils::network_address>, 1 << CRYPTONOTE_PRUNING_LOG_STRIPES> m_used_stripe_peers;
510 
513 
514  epee::net_utils::ssl_support_t m_ssl_support;
515  };
516 
536 
543 
548 }
549 
550 POP_WARNINGS
551 
#define P2P_DEFAULT_HANDSHAKE_INTERVAL
Definition: cryptonote_config.h:132
bool m_require_ipv4
Definition: net_node.h:463
std::unique_ptr< boost::thread > mPeersLoggerThread
Definition: net_node.h:465
cryptonote::levin::notify m_notifier
Definition: net_node.h:215
bool m_use_ipv6
Definition: net_node.h:462
PUSH_WARNINGS
Definition: hash-ops.h:53
Definition: net_node.h:162
std::atomic< unsigned int > m_current_number_of_out_peers
Definition: net_node.h:220
void init_options(boost::program_options::options_description &hidden_options, boost::program_options::options_description &normal_options)
Definition: posix_daemonizer.inl:56
uint32_t m_listening_port
Definition: net_node.h:453
std::vector< epee::net_utils::network_address > m_exclusive_peers
Definition: net_node.h:479
std::map< epee::net_utils::ipv4_network_subnet, time_t > m_blocked_subnets
Definition: net_node.h:503
bool m_hide_my_port
Definition: net_node.h:459
boost::uuids::uuid uuid
Definition: net_node_common.h:46
const command_line::arg_descriptor< std::vector< std::string > > arg_anonymous_inbound
Definition: net_node.cpp:148
#define P2P_DEFAULT_PING_CONNECTION_TIMEOUT
Definition: cryptonote_config.h:137
static void init(std::string cache_filename)
Definition: blockchain_blackball.cpp:221
igd_t m_igd
Definition: net_node.h:460
epee::misc_utils::struct_init< request_t > request
Definition: p2p_protocol_defs.h:320
const command_line::arg_descriptor< std::string > arg_ban_list
Definition: net_node.cpp:149
uint32_t m_rpc_credits_per_hash
Definition: net_node.h:457
std::vector< cryptonote::blobdata > fluff_txs
Definition: net_node.h:121
Definition: net_node.h:242
network_zone()
Definition: net_node.h:164
#define CRYPTONOTE_PRUNING_LOG_STRIPES
Definition: cryptonote_config.h:192
const command_line::arg_descriptor< std::string, false, true, 2 > arg_p2p_bind_port_ipv6
Definition: net_node.cpp:126
epee::net_utils::network_address m_our_address
Definition: net_node.h:216
Definition: net_node.h:243
const command_line::arg_descriptor< int > arg_tos_flag
Definition: net_node.cpp:159
Definition: p2p_protocol_defs.h:274
std::string local_port
Definition: net_node.h:94
boost::optional< std::vector< anonymous_inbound > > get_anonymous_inbounds(boost::program_options::variables_map const &vm)
Definition: net_node.cpp:238
bool noise
Definition: net_node.h:79
epee::net_utils::boosted_tcp_server< epee::levin::async_protocol_handler< p2p_connection_context > > net_server
Definition: net_node.h:143
bool m_in_timedsync
Definition: net_node.h:125
crypto namespace.
Definition: crypto.cpp:60
Definition: p2p_protocol_defs.h:208
Definition: blockchain_ancestry.cpp:71
const command_line::arg_descriptor< bool > arg_no_sync
Definition: net_node.cpp:151
epee::math_helper::once_a_time_seconds< 60 *30, false > m_peerlist_store_interval
Definition: net_node.h:474
boost::mutex m_used_stripe_peers_mutex
Definition: net_node.h:508
Definition: cryptonote_config.h:199
const command_line::arg_descriptor< int64_t > arg_out_peers
Definition: net_node.cpp:157
Definition: net_node.h:327
COMMAND_HANDSHAKE_T< typename t_payload_net_handler::payload_type > COMMAND_HANDSHAKE
Definition: net_node.h:140
std::array< std::list< epee::net_utils::network_address >, 1<< CRYPTONOTE_PRUNING_LOG_STRIPES > m_used_stripe_peers
Definition: net_node.h:509
std::string m_bind_ip
Definition: net_node.h:211
bool m_can_pingback
Definition: net_node.h:223
proxy()
Definition: net_node.h:69
const command_line::arg_descriptor< std::string, false, true, 2 > arg_p2p_bind_port
Definition: net_node.cpp:113
void set_rpc_credits_per_hash(uint32_t rpc_credits_per_hash)
Definition: net_node.h:443
const command_line::arg_descriptor< std::string > arg_igd
Definition: net_node.cpp:154
const int64_t default_limit_down
Definition: net_node.h:518
bool m_offline
Definition: net_node.h:461
epee::math_helper::once_a_time_seconds< 1 > m_connections_maker_interval
Definition: net_node.h:473
Provides tx notification privacy.
Definition: levin_notify.h:69
boost::asio::ip::tcp::endpoint m_proxy_address
Definition: net_node.h:219
bool m_allow_local_ip
Definition: net_node.h:458
Definition: net_node.h:148
const command_line::arg_descriptor< std::string > arg_p2p_bind_ip
Definition: net_node.cpp:111
network_config m_net_config
Definition: net_node.h:156
epee::misc_utils::struct_init< request_t > request
Definition: p2p_protocol_defs.h:292
#define P2P_IP_BLOCKTIME
Definition: cryptonote_config.h:147
#define P2P_DEFAULT_LIMIT_RATE_DOWN
Definition: cryptonote_config.h:144
COMMAND_TIMED_SYNC_T< typename t_payload_net_handler::payload_type > COMMAND_TIMED_SYNC
Definition: net_node.h:141
epee::critical_section m_blocked_hosts_lock
Definition: net_node.h:501
Definition: net_node.h:136
const command_line::arg_descriptor< int64_t > arg_limit_rate_down
Definition: net_node.cpp:162
Definition: net_node.h:135
boost::asio::ip::tcp::endpoint address
Definition: net_node.h:77
Definition: net_node.h:67
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_add_peer
Definition: net_node.cpp:142
epee::critical_section m_conn_fails_cache_lock
Definition: net_node.h:499
#define P2P_DEFAULT_PEERS_IN_HANDSHAKE
Definition: cryptonote_config.h:134
std::string m_config_folder
Definition: net_node.h:449
anonymous_inbound()
Definition: net_node.h:84
uint32_t m_listening_port_ipv6
Definition: net_node.h:454
Definition: net_peerlist.h:62
const command_line::arg_descriptor< bool > arg_pad_transactions
Definition: net_node.cpp:165
mdb_size_t count(MDB_cursor *cur)
Definition: value_stream.cpp:39
boost::shared_mutex m_seed_nodes_lock
Definition: net_node.h:222
std::atomic< bool > is_closing
Definition: net_node.h:464
bool is_filtered_command(const epee::net_utils::network_address &address, int command)
Definition: net_node.cpp:305
std::chrono::steady_clock::time_point flush_time
Definition: net_node.h:122
virtual std::map< std::string, time_t > get_blocked_hosts()
Definition: net_node.h:295
void rand(size_t N, uint8_t *bytes)
Definition: crypto.h:156
config m_config
Definition: net_node.h:218
boost::optional< p2p_connection_context >(network_zone &, epee::net_utils::network_address const &, epee::net_utils::ssl_support_t) connect_func
Definition: net_node.h:146
peerlist_storage m_peerlist_storage
Definition: net_node.h:470
std::map< std::string, time_t > m_conn_fails_cache
Definition: net_node.h:498
epee::levin::async_protocol_handler_config< detail::p2p_context > connections
Definition: levin_notify.h:66
const command_line::arg_descriptor< std::vector< std::string > > arg_tx_proxy
Definition: net_node.cpp:147
const int64_t default_limit_up
Definition: net_node.h:517
std::list< epee::net_utils::network_address > m_priority_peers
Definition: net_node.h:478
#define P2P_DEFAULT_CONNECTION_TIMEOUT
Definition: cryptonote_config.h:135
const command_line::arg_descriptor< int64_t > arg_limit_rate_up
Definition: net_node.cpp:161
void set_config_defaults() noexcept
Definition: net_node.h:227
uint64_t m_peer_id
Definition: net_node.h:157
const command_line::arg_descriptor< std::string > arg_p2p_bind_ipv6_address
Definition: net_node.cpp:112
epee::math_helper::once_a_time_seconds< 60 > m_gray_peerlist_housekeeping_interval
Definition: net_node.h:475
net_server m_net_server
Definition: net_node.h:209
epee::critical_section m_host_fails_score_lock
Definition: net_node.h:505
Definition: p2p_protocol_defs.h:101
Definition: p2p_protocol_defs.h:184
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_add_priority_node
Definition: net_node.cpp:143
std::vector< nodetool::peerlist_entry > m_command_line_peers
Definition: net_node.h:481
epee::net_utils::network_address default_remote
Definition: net_node.h:96
bool m_seed_nodes_initialized
Definition: net_node.h:224
std::unique_ptr< void, terminate > context
Unique ZMQ context handle, calls zmq_term on destruction.
Definition: zmq.h:105
std::vector< epee::net_utils::network_address > m_seed_nodes
Definition: net_node.h:210
std::map< std::string, uint64_t > m_host_fails_score
Definition: net_node.h:506
Definition: net_node.h:244
std::int64_t max_connections
Definition: net_node.h:76
uint64_t peerid_type
Definition: p2p_protocol_defs.h:48
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_add_exclusive_node
Definition: net_node.cpp:144
#define false
Definition: stdbool.h:37
void kill()
Definition: net_node.h:424
std::string m_bind_ipv6_address
Definition: net_node.h:212
epee::net_utils::ssl_support_t m_ssl_support
Definition: net_node.h:514
std::set< epee::net_utils::network_address > sent_addresses
Definition: net_node.h:126
peerlist_manager m_peerlist
Definition: net_node.h:217
Definition: net_peerlist.h:99
std::string local_ip
Definition: net_node.h:93
Definition: net_node.h:134
const command_line::arg_descriptor< bool > arg_offline
Definition: cryptonote_core.cpp:112
uint32_t m_external_port
Definition: net_node.h:455
network_type
Definition: cryptonote_config.h:267
t_payload_net_handler & m_payload_handler
Definition: net_node.h:469
Definition: cryptonote_format_utils.h:43
epee::net_utils::network_address our_address
Definition: net_node.h:95
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_seed_node
Definition: net_node.cpp:146
std::atomic< unsigned int > m_current_number_of_in_peers
Definition: net_node.h:221
std::atomic_flag m_fallback_seed_nodes_added
Definition: net_node.h:480
std::int64_t max_connections
Definition: net_node.h:92
epee::misc_utils::struct_init< config_t > config
Definition: net_node.h:160
boost::optional< std::vector< proxy > > get_proxies(boost::program_options::variables_map const &vm)
Definition: net_node.cpp:169
std::map< epee::net_utils::zone, network_zone > m_network_zones
Definition: net_node.h:495
uint32_t support_flags
Definition: net_node.h:124
const command_line::arg_descriptor< bool > arg_p2p_hide_my_port
Definition: net_node.cpp:150
network_zone(boost::asio::io_service &public_service)
Definition: net_node.h:186
const command_line::arg_descriptor< bool > arg_no_igd
Definition: net_node.cpp:153
const command_line::arg_descriptor< bool > arg_p2p_use_ipv6
Definition: net_node.cpp:155
epee::math_helper::once_a_time_seconds< 3600, false > m_incoming_connections_interval
Definition: net_node.h:476
bool m_have_address
Definition: net_node.h:451
uint16_t m_rpc_port
Definition: net_node.h:456
cryptonote::network_type m_nettype
Definition: net_node.h:512
epee::net_utils::zone zone
Definition: net_node.h:78
Definition: levin_notify.h:53
Definition: levin_notify.h:51
bool m_first_connection_maker_call
Definition: net_node.h:452
config_t()
Definition: net_node.h:150
p2p_connection_context_t()
Definition: net_node.h:113
peerid_type peer_id
Definition: net_node.h:123
uint32_t get_this_peer_port()
Definition: net_node.h:271
Definition: net_node.h:82
t_payload_net_handler payload_net_handler
Definition: net_node.h:248
const command_line::arg_descriptor< bool > arg_p2p_ignore_ipv4
Definition: net_node.cpp:156
p2p_connection_context_t< typename t_payload_net_handler::connection_context > p2p_connection_context
Definition: net_node.h:138
relay_method
Methods tracking how a tx was received and relayed.
Definition: enums.h:36
DISABLE_VS_WARNINGS(4244 4345 4503) using namespace crypto
boost::optional< boost::asio::ip::tcp::socket > socks_connect_internal(const std::atomic< bool > &stop_signal, boost::asio::io_service &service, const boost::asio::ip::tcp::endpoint &proxy, const epee::net_utils::network_address &remote)
Definition: net_node.cpp:325
node_server(t_payload_net_handler &payload_handler)
Definition: net_node.h:250
std::map< std::string, time_t > m_blocked_hosts
Definition: net_node.h:502
connect_func * m_connect
Definition: net_node.h:208
Definition: p2p_protocol_defs.h:244
virtual std::map< epee::net_utils::ipv4_network_subnet, time_t > get_blocked_subnets()
Definition: net_node.h:296
#define P2P_DEFAULT_LIMIT_RATE_UP
Definition: cryptonote_config.h:143
const command_line::arg_descriptor< int64_t > arg_limit_rate
Definition: net_node.cpp:163
std::string m_port
Definition: net_node.h:213
boost::uuids::uuid m_network_id
Definition: net_node.h:511
Definition: command_line.h:53
const command_line::arg_descriptor< uint32_t > arg_p2p_external_port
Definition: net_node.cpp:140
epee::misc_utils::struct_init< response_t > response
Definition: p2p_protocol_defs.h:330
Definition: p2p_protocol_defs.h:164
uint32_t m_support_flags
Definition: net_node.h:158
void set_rpc_port(uint16_t rpc_port)
Definition: net_node.h:438
#define true
Definition: stdbool.h:36
const command_line::arg_descriptor< bool > arg_p2p_allow_local_ip
Definition: net_node.cpp:141
Definition: net_node_common.h:50
uint64_t m_peer_livetime
Definition: net_node.h:482
Definition: net_node.h:130
const command_line::arg_descriptor< int64_t > arg_in_peers
Definition: net_node.cpp:158
Definition: p2p_protocol_defs.h:311
epee::misc_utils::struct_init< response_t > response
Definition: p2p_protocol_defs.h:304
#define P2P_DEFAULT_PACKET_MAX_SIZE
Definition: cryptonote_config.h:133
std::string m_port_ipv6
Definition: net_node.h:214
Definition: p2p_protocol_defs.h:71
epee::math_helper::once_a_time_seconds< P2P_DEFAULT_HANDSHAKE_INTERVAL > m_peer_handshake_idle_maker_interval
Definition: net_node.h:472
virtual bool is_host_blocked(const epee::net_utils::network_address &address, time_t *seconds)
Definition: net_node.h:294