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  static_assert(p2p_connection_context::handshake_command() == COMMAND_HANDSHAKE::ID, "invalid handshake command id");
143 
144  typedef epee::net_utils::boosted_tcp_server<epee::levin::async_protocol_handler<p2p_connection_context>> net_server;
145 
146  struct network_zone;
147  using connect_func = boost::optional<p2p_connection_context>(network_zone&, epee::net_utils::network_address const&, epee::net_utils::ssl_support_t);
148 
149  struct config_t
150  {
152  : m_net_config(),
153  m_peer_id(1),
154  m_support_flags(0)
155  {}
156 
158  uint64_t m_peer_id;
159  uint32_t m_support_flags;
160  };
161  typedef epee::misc_utils::struct_init<config_t> config;
162 
164  {
166  : m_connect(nullptr),
167  m_net_server(epee::net_utils::e_connection_type_P2P),
168  m_seed_nodes(),
169  m_bind_ip(),
170  m_bind_ipv6_address(),
171  m_port(),
172  m_port_ipv6(),
173  m_notifier(),
174  m_our_address(),
175  m_peerlist(),
176  m_config{},
177  m_proxy_address(),
178  m_current_number_of_out_peers(0),
179  m_current_number_of_in_peers(0),
180  m_seed_nodes_lock(),
181  m_can_pingback(false),
182  m_seed_nodes_initialized(false)
183  {
184  set_config_defaults();
185  }
186 
187  network_zone(boost::asio::io_service& public_service)
188  : m_connect(nullptr),
189  m_net_server(public_service, epee::net_utils::e_connection_type_P2P),
190  m_seed_nodes(),
191  m_bind_ip(),
192  m_bind_ipv6_address(),
193  m_port(),
194  m_port_ipv6(),
195  m_notifier(),
196  m_our_address(),
197  m_peerlist(),
198  m_config{},
199  m_proxy_address(),
200  m_current_number_of_out_peers(0),
201  m_current_number_of_in_peers(0),
202  m_seed_nodes_lock(),
203  m_can_pingback(false),
204  m_seed_nodes_initialized(false)
205  {
206  set_config_defaults();
207  }
208 
211  std::vector<epee::net_utils::network_address> m_seed_nodes;
212  std::string m_bind_ip;
213  std::string m_bind_ipv6_address;
214  std::string m_port;
215  std::string m_port_ipv6;
217  epee::net_utils::network_address m_our_address; // in anonymity networks
220  boost::asio::ip::tcp::endpoint m_proxy_address;
221  std::atomic<unsigned int> m_current_number_of_out_peers;
222  std::atomic<unsigned int> m_current_number_of_in_peers;
223  boost::shared_mutex m_seed_nodes_lock;
226 
227  private:
228  void set_config_defaults() noexcept
229  {
230  // at this moment we have a hardcoded config
231  m_config.m_net_config.handshake_interval = P2P_DEFAULT_HANDSHAKE_INTERVAL;
232  m_config.m_net_config.packet_max_size = P2P_DEFAULT_PACKET_MAX_SIZE;
233  m_config.m_net_config.config_id = 0;
234  m_config.m_net_config.connection_timeout = P2P_DEFAULT_CONNECTION_TIMEOUT;
235  m_config.m_net_config.ping_connection_timeout = P2P_DEFAULT_PING_CONNECTION_TIMEOUT;
236  m_config.m_net_config.send_peerlist_sz = P2P_DEFAULT_PEERS_IN_HANDSHAKE;
237  m_config.m_support_flags = 0; // only set in public zone
238  }
239  };
240 
241  enum igd_t
242  {
246  };
247 
248  public:
249  typedef t_payload_net_handler payload_net_handler;
250 
251  node_server(t_payload_net_handler& payload_handler)
252  : m_payload_handler(payload_handler),
253  m_external_port(0),
254  m_rpc_port(0),
255  m_rpc_credits_per_hash(0),
256  m_allow_local_ip(false),
257  m_hide_my_port(false),
258  m_igd(no_igd),
259  m_offline(false),
260  is_closing(false),
261  m_network_id()
262  {}
263  virtual ~node_server();
264 
265  static void init_options(boost::program_options::options_description& desc);
266 
267  bool run();
268  network_zone& add_zone(epee::net_utils::zone zone);
269  bool init(const boost::program_options::variables_map& vm);
270  bool deinit();
271  bool send_stop_signal();
272  uint32_t get_this_peer_port(){return m_listening_port;}
273  t_payload_net_handler& get_payload_object();
274 
275  // debug functions
276  bool log_peerlist();
277  bool log_connections();
278 
279  // These functions only return information for the "public" zone
280  virtual uint64_t get_public_connections_count();
281  size_t get_public_outgoing_connections_count();
282  size_t get_public_white_peers_count();
283  size_t get_public_gray_peers_count();
284  void get_public_peerlist(std::vector<peerlist_entry>& gray, std::vector<peerlist_entry>& white);
285  void get_peerlist(std::vector<peerlist_entry>& gray, std::vector<peerlist_entry>& white);
286 
287  void change_max_out_public_peers(size_t count);
288  uint32_t get_max_out_public_peers() const;
289  void change_max_in_public_peers(size_t count);
290  uint32_t get_max_in_public_peers() const;
291  virtual bool block_host(epee::net_utils::network_address address, time_t seconds = P2P_IP_BLOCKTIME, bool add_only = false);
292  virtual bool unblock_host(const epee::net_utils::network_address &address);
293  virtual bool block_subnet(const epee::net_utils::ipv4_network_subnet &subnet, time_t seconds = P2P_IP_BLOCKTIME);
294  virtual bool unblock_subnet(const epee::net_utils::ipv4_network_subnet &subnet);
295  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); }
296  virtual std::map<std::string, time_t> get_blocked_hosts() { CRITICAL_REGION_LOCAL(m_blocked_hosts_lock); return m_blocked_hosts; }
297  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; }
298 
299  virtual void add_used_stripe_peer(const typename t_payload_net_handler::connection_context &context);
300  virtual void remove_used_stripe_peer(const typename t_payload_net_handler::connection_context &context);
301  virtual void clear_used_stripe_peers();
302 
303  private:
304  const std::vector<std::string> m_seed_nodes_list =
305  { "seeds.moneroseeds.se"
306  , "seeds.moneroseeds.ae.org"
307  , "seeds.moneroseeds.ch"
308  , "seeds.moneroseeds.li"
309  };
310 
311  bool islimitup=false;
312  bool islimitdown=false;
313 
314  CHAIN_LEVIN_INVOKE_MAP2(p2p_connection_context); //move levin_commands_handler interface invoke(...) callbacks into invoke map
315  CHAIN_LEVIN_NOTIFY_MAP2(p2p_connection_context); //move levin_commands_handler interface notify(...) callbacks into nothing
316 
317  BEGIN_INVOKE_MAP2(node_server)
318  if (is_filtered_command(context.m_remote_address, command))
319  return LEVIN_ERROR_CONNECTION_HANDLER_NOT_DEFINED;
320 
321  HANDLE_INVOKE_T2(COMMAND_HANDSHAKE, &node_server::handle_handshake)
322  HANDLE_INVOKE_T2(COMMAND_TIMED_SYNC, &node_server::handle_timed_sync)
323  HANDLE_INVOKE_T2(COMMAND_PING, &node_server::handle_ping)
324  HANDLE_INVOKE_T2(COMMAND_REQUEST_SUPPORT_FLAGS, &node_server::handle_get_support_flags)
325  CHAIN_INVOKE_MAP_TO_OBJ_FORCE_CONTEXT(m_payload_handler, typename t_payload_net_handler::connection_context&)
326  END_INVOKE_MAP2()
327 
328  enum PeerType { anchor = 0, white, gray };
329 
330  //----------------- commands handlers ----------------------------------------------
331  int handle_handshake(int command, typename COMMAND_HANDSHAKE::request& arg, typename COMMAND_HANDSHAKE::response& rsp, p2p_connection_context& context);
332  int handle_timed_sync(int command, typename COMMAND_TIMED_SYNC::request& arg, typename COMMAND_TIMED_SYNC::response& rsp, p2p_connection_context& context);
333  int handle_ping(int command, COMMAND_PING::request& arg, COMMAND_PING::response& rsp, p2p_connection_context& context);
334  int handle_get_support_flags(int command, COMMAND_REQUEST_SUPPORT_FLAGS::request& arg, COMMAND_REQUEST_SUPPORT_FLAGS::response& rsp, p2p_connection_context& context);
335  bool init_config();
338  bool store_config();
339 
340 
341  //----------------- levin_commands_handler -------------------------------------------------------------
342  virtual void on_connection_new(p2p_connection_context& context);
343  virtual void on_connection_close(p2p_connection_context& context);
344  virtual void callback(p2p_connection_context& context);
345  //----------------- i_p2p_endpoint -------------------------------------------------------------
346  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);
347  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);
348  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);
349  virtual bool invoke_notify_to_peer(int command, const epee::span<const uint8_t> req_buff, const epee::net_utils::connection_context_base& context);
350  virtual bool drop_connection(const epee::net_utils::connection_context_base& context);
351  virtual void request_callback(const epee::net_utils::connection_context_base& context);
352  virtual void for_each_connection(std::function<bool(typename t_payload_net_handler::connection_context&, peerid_type, uint32_t)> f);
353  virtual bool for_connection(const boost::uuids::uuid&, std::function<bool(typename t_payload_net_handler::connection_context&, peerid_type, uint32_t)> f);
354  virtual bool add_host_fail(const epee::net_utils::network_address &address, unsigned int score = 1);
355  //----------------- i_connection_filter --------------------------------------------------------
356  virtual bool is_remote_host_allowed(const epee::net_utils::network_address &address, time_t *t = NULL);
357  //-----------------------------------------------------------------------------------------------
358  bool parse_peer_from_string(epee::net_utils::network_address& pe, const std::string& node_addr, uint16_t default_port = 0);
359  bool handle_command_line(
360  const boost::program_options::variables_map& vm
361  );
362  bool idle_worker();
363  bool handle_remote_peerlist(const std::vector<peerlist_entry>& peerlist, const epee::net_utils::connection_context_base& context);
364  bool get_local_node_data(basic_node_data& node_data, const network_zone& zone);
365  //bool get_local_handshake_data(handshake_data& hshd);
366 
367  bool sanitize_peerlist(std::vector<peerlist_entry>& local_peerlist);
368 
369  bool connections_maker();
370  bool peer_sync_idle_maker();
371  bool do_handshake_with_peer(peerid_type& pi, p2p_connection_context& context, bool just_take_peerlist = false);
372  bool do_peer_timed_sync(const epee::net_utils::connection_context_base& context, peerid_type peer_id);
373  bool update_dns_blocklist();
374 
375  bool make_new_connection_from_anchor_peerlist(const std::vector<anchor_peerlist_entry>& anchor_peerlist);
376  bool make_new_connection_from_peerlist(network_zone& zone, bool use_white_list);
377  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);
378  size_t get_random_index_with_fixed_probability(size_t max_index);
379  bool is_peer_used(const peerlist_entry& peer);
380  bool is_peer_used(const anchor_peerlist_entry& peer);
381  bool is_addr_connected(const epee::net_utils::network_address& peer);
382  void add_upnp_port_mapping_impl(uint32_t port, bool ipv6=false);
383  void add_upnp_port_mapping_v4(uint32_t port);
384  void add_upnp_port_mapping_v6(uint32_t port);
385  void add_upnp_port_mapping(uint32_t port, bool ipv4=true, bool ipv6=false);
386  void delete_upnp_port_mapping_impl(uint32_t port, bool ipv6=false);
387  void delete_upnp_port_mapping_v4(uint32_t port);
388  void delete_upnp_port_mapping_v6(uint32_t port);
389  void delete_upnp_port_mapping(uint32_t port);
390  template<class t_callback>
391  bool try_ping(basic_node_data& node_data, p2p_connection_context& context, const t_callback &cb);
392  bool try_get_support_flags(const p2p_connection_context& context, std::function<void(p2p_connection_context&, const uint32_t&)> f);
393  bool make_expected_connections_count(network_zone& zone, PeerType peer_type, size_t expected_connections);
394  void record_addr_failed(const epee::net_utils::network_address& addr);
395  bool is_addr_recently_failed(const epee::net_utils::network_address& addr);
396  bool is_priority_node(const epee::net_utils::network_address& na);
397  std::set<std::string> get_ip_seed_nodes() const;
398  std::set<std::string> get_dns_seed_nodes();
399  std::set<std::string> get_seed_nodes(epee::net_utils::zone);
400  bool connect_to_seed(epee::net_utils::zone);
401 
402  template <class Container>
403  bool connect_to_peerlist(const Container& peers);
404 
405  template <class Container>
406  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);
407 
408  bool set_max_out_peers(network_zone& zone, int64_t max);
409  bool set_max_in_peers(network_zone& zone, int64_t max);
410  bool set_tos_flag(const boost::program_options::variables_map& vm, int limit);
411 
412  bool set_rate_up_limit(const boost::program_options::variables_map& vm, int64_t limit);
413  bool set_rate_down_limit(const boost::program_options::variables_map& vm, int64_t limit);
414  bool set_rate_limit(const boost::program_options::variables_map& vm, int64_t limit);
415 
416  bool has_too_many_connections(const epee::net_utils::network_address &address);
417  size_t get_incoming_connections_count();
418  size_t get_incoming_connections_count(network_zone&);
419  size_t get_outgoing_connections_count();
420  size_t get_outgoing_connections_count(network_zone&);
421 
422  bool check_connection_and_handshake_with_peer(const epee::net_utils::network_address& na, uint64_t last_seen_stamp);
423  bool gray_peerlist_housekeeping();
424  bool check_incoming_connections();
425 
426  void kill() {
427  _info("Killing the net_node");
428  is_closing = true;
429  if(mPeersLoggerThread != nullptr)
430  mPeersLoggerThread->join(); // make sure the thread finishes
431  _info("Joined extra background net_node threads");
432  }
433 
434  //debug functions
435  std::string print_connections_container();
436 
437 
438  public:
439 
440  void set_rpc_port(uint16_t rpc_port)
441  {
442  m_rpc_port = rpc_port;
443  }
444 
445  void set_rpc_credits_per_hash(uint32_t rpc_credits_per_hash)
446  {
447  m_rpc_credits_per_hash = rpc_credits_per_hash;
448  }
449 
450  private:
451  std::string m_config_folder;
452 
457  uint32_t m_external_port;
458  uint16_t m_rpc_port;
463  bool m_offline;
466  std::atomic<bool> is_closing;
467  std::unique_ptr<boost::thread> mPeersLoggerThread;
468  //critical_section m_connections_lock;
469  //connections_indexed_container m_connections;
470 
471  t_payload_net_handler& m_payload_handler;
473 
474  epee::math_helper::once_a_time_seconds<P2P_DEFAULT_HANDSHAKE_INTERVAL> m_peer_handshake_idle_maker_interval;
475  epee::math_helper::once_a_time_seconds<1> m_connections_maker_interval;
476  epee::math_helper::once_a_time_seconds<60*30, false> m_peerlist_store_interval;
477  epee::math_helper::once_a_time_seconds<60> m_gray_peerlist_housekeeping_interval;
478  epee::math_helper::once_a_time_seconds<3600, false> m_incoming_connections_interval;
479  epee::math_helper::once_a_time_seconds<7000> m_dns_blocklist_interval;
480 
481  std::list<epee::net_utils::network_address> m_priority_peers;
482  std::vector<epee::net_utils::network_address> m_exclusive_peers;
483  std::atomic_flag m_fallback_seed_nodes_added;
484  std::vector<nodetool::peerlist_entry> m_command_line_peers;
485  uint64_t m_peer_livetime;
486  //keep connections to initiate some interactions
487 
488 
489  static boost::optional<p2p_connection_context> public_connect(network_zone&, epee::net_utils::network_address const&, epee::net_utils::ssl_support_t);
490  static boost::optional<p2p_connection_context> socks_connect(network_zone&, epee::net_utils::network_address const&, epee::net_utils::ssl_support_t);
491 
492 
493  /* A `std::map` provides constant iterators and key/value pointers even with
494  inserts/erases to _other_ elements. This makes the configuration step easier
495  since references can safely be stored on the stack. Do not insert/erase
496  after configuration and before destruction, lock safety would need to be
497  added. `std::map::operator[]` WILL insert! */
498  std::map<epee::net_utils::zone, network_zone> m_network_zones;
499 
500 
501  std::map<std::string, time_t> m_conn_fails_cache;
502  epee::critical_section m_conn_fails_cache_lock;
503 
504  epee::critical_section m_blocked_hosts_lock; // for both hosts and subnets
505  std::map<std::string, time_t> m_blocked_hosts;
506  std::map<epee::net_utils::ipv4_network_subnet, time_t> m_blocked_subnets;
507 
508  epee::critical_section m_host_fails_score_lock;
509  std::map<std::string, uint64_t> m_host_fails_score;
510 
512  std::array<std::list<epee::net_utils::network_address>, 1 << CRYPTONOTE_PRUNING_LOG_STRIPES> m_used_stripe_peers;
513 
516 
517  epee::net_utils::ssl_support_t m_ssl_support;
518 
520  };
521 
542 
549 
554 }
555 
556 POP_WARNINGS
557 
static void init(std::string cache_filename)
Definition: blockchain_blackball.cpp:221
Provides tx notification privacy.
Definition: levin_notify.h:70
Definition: net_node.h:133
virtual bool is_host_blocked(const epee::net_utils::network_address &address, time_t *seconds)
Definition: net_node.h:295
virtual std::map< std::string, time_t > get_blocked_hosts()
Definition: net_node.h:296
peerlist_storage m_peerlist_storage
Definition: net_node.h:472
std::map< epee::net_utils::zone, network_zone > m_network_zones
Definition: net_node.h:498
bool m_first_connection_maker_call
Definition: net_node.h:454
std::vector< nodetool::peerlist_entry > m_command_line_peers
Definition: net_node.h:484
epee::critical_section m_conn_fails_cache_lock
Definition: net_node.h:502
epee::misc_utils::struct_init< config_t > config
Definition: net_node.h:161
uint64_t m_peer_livetime
Definition: net_node.h:485
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:147
std::list< epee::net_utils::network_address > m_priority_peers
Definition: net_node.h:481
boost::mutex m_used_stripe_peers_mutex
Definition: net_node.h:511
bool m_offline
Definition: net_node.h:463
std::string m_config_folder
Definition: net_node.h:451
uint32_t get_this_peer_port()
Definition: net_node.h:272
void kill()
Definition: net_node.h:426
PeerType
Definition: net_node.h:328
std::unique_ptr< boost::thread > mPeersLoggerThread
Definition: net_node.h:467
std::atomic< bool > is_closing
Definition: net_node.h:466
epee::math_helper::once_a_time_seconds< 7000 > m_dns_blocklist_interval
Definition: net_node.h:479
std::map< std::string, time_t > m_blocked_hosts
Definition: net_node.h:505
igd_t
Definition: net_node.h:242
@ no_igd
Definition: net_node.h:243
@ igd
Definition: net_node.h:244
@ delayed_igd
Definition: net_node.h:245
CHAIN_LEVIN_NOTIFY_MAP2(p2p_connection_context)
bool m_allow_local_ip
Definition: net_node.h:460
epee::net_utils::boosted_tcp_server< epee::levin::async_protocol_handler< p2p_connection_context > > net_server
Definition: net_node.h:142
virtual std::map< epee::net_utils::ipv4_network_subnet, time_t > get_blocked_subnets()
Definition: net_node.h:297
epee::critical_section m_blocked_hosts_lock
Definition: net_node.h:504
epee::math_helper::once_a_time_seconds< 60 *30, false > m_peerlist_store_interval
Definition: net_node.h:476
uint32_t m_rpc_credits_per_hash
Definition: net_node.h:459
igd_t m_igd
Definition: net_node.h:462
epee::math_helper::once_a_time_seconds< 1 > m_connections_maker_interval
Definition: net_node.h:475
epee::math_helper::once_a_time_seconds< P2P_DEFAULT_HANDSHAKE_INTERVAL > m_peer_handshake_idle_maker_interval
Definition: net_node.h:474
epee::critical_section m_host_fails_score_lock
Definition: net_node.h:508
void set_rpc_credits_per_hash(uint32_t rpc_credits_per_hash)
Definition: net_node.h:445
epee::math_helper::once_a_time_seconds< 60 > m_gray_peerlist_housekeeping_interval
Definition: net_node.h:477
uint16_t m_rpc_port
Definition: net_node.h:458
uint32_t m_external_port
Definition: net_node.h:457
std::atomic_flag m_fallback_seed_nodes_added
Definition: net_node.h:483
epee::math_helper::once_a_time_seconds< 3600, false > m_incoming_connections_interval
Definition: net_node.h:478
t_payload_net_handler payload_net_handler
Definition: net_node.h:249
std::map< std::string, uint64_t > m_host_fails_score
Definition: net_node.h:509
COMMAND_HANDSHAKE_T< typename t_payload_net_handler::payload_type > COMMAND_HANDSHAKE
Definition: net_node.h:140
boost::uuids::uuid m_network_id
Definition: net_node.h:514
COMMAND_TIMED_SYNC_T< typename t_payload_net_handler::payload_type > COMMAND_TIMED_SYNC
Definition: net_node.h:141
bool parse_peer_from_string(epee::net_utils::network_address &pe, const std::string &node_addr, uint16_t default_port=0)
cryptonote::network_type m_nettype
Definition: net_node.h:515
p2p_connection_context_t< typename t_payload_net_handler::connection_context > p2p_connection_context
Definition: net_node.h:138
t_payload_net_handler & m_payload_handler
Definition: net_node.h:471
bool m_hide_my_port
Definition: net_node.h:461
bool m_enable_dns_blocklist
Definition: net_node.h:519
epee::net_utils::ssl_support_t m_ssl_support
Definition: net_node.h:517
std::map< std::string, time_t > m_conn_fails_cache
Definition: net_node.h:501
uint32_t m_listening_port
Definition: net_node.h:455
CHAIN_LEVIN_INVOKE_MAP2(p2p_connection_context)
std::array< std::list< epee::net_utils::network_address >, 1<< CRYPTONOTE_PRUNING_LOG_STRIPES > m_used_stripe_peers
Definition: net_node.h:512
bool m_have_address
Definition: net_node.h:453
uint32_t m_listening_port_ipv6
Definition: net_node.h:456
bool m_require_ipv4
Definition: net_node.h:465
std::map< epee::net_utils::ipv4_network_subnet, time_t > m_blocked_subnets
Definition: net_node.h:506
std::vector< epee::net_utils::network_address > m_exclusive_peers
Definition: net_node.h:482
node_server(t_payload_net_handler &payload_handler)
Definition: net_node.h:251
bool m_use_ipv6
Definition: net_node.h:464
void set_rpc_port(uint16_t rpc_port)
Definition: net_node.h:440
Definition: net_peerlist.h:100
Definition: net_peerlist.h:63
#define P2P_DEFAULT_PACKET_MAX_SIZE
Definition: cryptonote_config.h:135
#define P2P_DEFAULT_LIMIT_RATE_DOWN
Definition: cryptonote_config.h:147
#define P2P_IP_BLOCKTIME
Definition: cryptonote_config.h:150
#define P2P_DEFAULT_PEERS_IN_HANDSHAKE
Definition: cryptonote_config.h:136
#define CRYPTONOTE_PRUNING_LOG_STRIPES
Definition: cryptonote_config.h:195
#define P2P_DEFAULT_CONNECTION_TIMEOUT
Definition: cryptonote_config.h:138
#define P2P_DEFAULT_LIMIT_RATE_UP
Definition: cryptonote_config.h:146
#define P2P_DEFAULT_PING_CONNECTION_TIMEOUT
Definition: cryptonote_config.h:140
#define P2P_DEFAULT_HANDSHAKE_INTERVAL
Definition: cryptonote_config.h:134
PUSH_WARNINGS
Definition: hash-ops.h:53
Definition: cryptonote_config.h:205
epee::levin::async_protocol_handler_config< detail::p2p_context > connections
Definition: levin_notify.h:66
network_type
Definition: cryptonote_config.h:273
relay_method
Methods tracking how a tx was received and relayed.
Definition: enums.h:37
void init_options(boost::program_options::options_description &hidden_options, boost::program_options::options_description &normal_options)
Definition: posix_daemonizer.inl:56
Definition: cryptonote_format_utils.h:44
mdb_size_t count(MDB_cursor *cur)
Definition: value_stream.cpp:39
std::unique_ptr< void, terminate > context
Unique ZMQ context handle, calls zmq_term on destruction.
Definition: zmq.h:105
Definition: levin_notify.h:52
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_add_priority_node
Definition: net_node.cpp:143
bool is_filtered_command(const epee::net_utils::network_address &address, int command)
Definition: net_node.cpp:306
boost::uuids::uuid uuid
Definition: net_node_common.h:46
const command_line::arg_descriptor< int > arg_tos_flag
Definition: net_node.cpp:160
const command_line::arg_descriptor< uint32_t > arg_p2p_external_port
Definition: net_node.cpp:140
const int64_t default_limit_up
Definition: net_node.h:522
const command_line::arg_descriptor< std::string > arg_ban_list
Definition: net_node.cpp:149
const command_line::arg_descriptor< bool > arg_offline
const command_line::arg_descriptor< bool > arg_enable_dns_blocklist
Definition: net_node.cpp:152
const command_line::arg_descriptor< bool > arg_pad_transactions
Definition: net_node.cpp:166
uint64_t peerid_type
Definition: p2p_protocol_defs.h:48
const command_line::arg_descriptor< bool > arg_no_igd
Definition: net_node.cpp:154
const command_line::arg_descriptor< std::vector< std::string > > arg_tx_proxy
Definition: net_node.cpp:147
const command_line::arg_descriptor< int64_t > arg_limit_rate
Definition: net_node.cpp:164
const command_line::arg_descriptor< std::string, false, true, 2 > arg_p2p_bind_port
Definition: net_node.cpp:113
const command_line::arg_descriptor< bool > arg_no_sync
Definition: net_node.cpp:151
const command_line::arg_descriptor< bool > arg_p2p_use_ipv6
Definition: net_node.cpp:156
boost::optional< std::vector< anonymous_inbound > > get_anonymous_inbounds(boost::program_options::variables_map const &vm)
Definition: net_node.cpp:239
const command_line::arg_descriptor< bool > arg_p2p_allow_local_ip
Definition: net_node.cpp:141
const command_line::arg_descriptor< int64_t > arg_limit_rate_down
Definition: net_node.cpp:163
const command_line::arg_descriptor< std::string > arg_p2p_bind_ip
Definition: net_node.cpp:111
const command_line::arg_descriptor< int64_t > arg_limit_rate_up
Definition: net_node.cpp:162
boost::optional< std::vector< proxy > > get_proxies(boost::program_options::variables_map const &vm)
Definition: net_node.cpp:170
const command_line::arg_descriptor< std::vector< std::string > > arg_anonymous_inbound
Definition: net_node.cpp:148
const command_line::arg_descriptor< std::string > arg_p2p_bind_ipv6_address
Definition: net_node.cpp:112
const command_line::arg_descriptor< int64_t > arg_out_peers
Definition: net_node.cpp:158
const command_line::arg_descriptor< std::string, false, true, 2 > arg_p2p_bind_port_ipv6
Definition: net_node.cpp:126
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:326
const command_line::arg_descriptor< bool > arg_p2p_hide_my_port
Definition: net_node.cpp:150
const command_line::arg_descriptor< bool > arg_p2p_ignore_ipv4
Definition: net_node.cpp:157
const command_line::arg_descriptor< std::string > arg_igd
Definition: net_node.cpp:155
const command_line::arg_descriptor< int64_t > arg_in_peers
Definition: net_node.cpp:159
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_seed_node
Definition: net_node.cpp:146
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_add_peer
Definition: net_node.cpp:142
const int64_t default_limit_down
Definition: net_node.h:523
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_add_exclusive_node
Definition: net_node.cpp:144
Definition: blockchain_ancestry.cpp:72
#define true
Definition: stdbool.h:36
#define false
Definition: stdbool.h:37
Definition: command_line.h:53
Definition: p2p_protocol_defs.h:209
Definition: p2p_protocol_defs.h:275
epee::misc_utils::struct_init< request_t > request
Definition: p2p_protocol_defs.h:292
epee::misc_utils::struct_init< response_t > response
Definition: p2p_protocol_defs.h:304
Definition: p2p_protocol_defs.h:312
epee::misc_utils::struct_init< response_t > response
Definition: p2p_protocol_defs.h:330
epee::misc_utils::struct_init< request_t > request
Definition: p2p_protocol_defs.h:320
Definition: p2p_protocol_defs.h:245
Definition: p2p_protocol_defs.h:102
Definition: net_node.h:83
std::string local_ip
Definition: net_node.h:93
anonymous_inbound()
Definition: net_node.h:84
std::string local_port
Definition: net_node.h:94
epee::net_utils::network_address our_address
Definition: net_node.h:95
epee::net_utils::network_address default_remote
Definition: net_node.h:96
std::int64_t max_connections
Definition: net_node.h:92
Definition: p2p_protocol_defs.h:185
Definition: net_node_common.h:51
Definition: p2p_protocol_defs.h:165
Definition: net_node.h:136
Definition: net_node.h:134
Definition: net_node.h:135
Definition: net_node.h:150
network_config m_net_config
Definition: net_node.h:157
config_t()
Definition: net_node.h:151
uint64_t m_peer_id
Definition: net_node.h:158
uint32_t m_support_flags
Definition: net_node.h:159
Definition: net_node.h:164
std::atomic< unsigned int > m_current_number_of_out_peers
Definition: net_node.h:221
cryptonote::levin::notify m_notifier
Definition: net_node.h:216
void set_config_defaults() noexcept
Definition: net_node.h:228
net_server m_net_server
Definition: net_node.h:210
std::atomic< unsigned int > m_current_number_of_in_peers
Definition: net_node.h:222
std::string m_port_ipv6
Definition: net_node.h:215
std::string m_bind_ip
Definition: net_node.h:212
boost::asio::ip::tcp::endpoint m_proxy_address
Definition: net_node.h:220
network_zone()
Definition: net_node.h:165
bool m_can_pingback
Definition: net_node.h:224
boost::shared_mutex m_seed_nodes_lock
Definition: net_node.h:223
std::vector< epee::net_utils::network_address > m_seed_nodes
Definition: net_node.h:211
std::string m_port
Definition: net_node.h:214
bool m_seed_nodes_initialized
Definition: net_node.h:225
epee::net_utils::network_address m_our_address
Definition: net_node.h:217
network_zone(boost::asio::io_service &public_service)
Definition: net_node.h:187
peerlist_manager m_peerlist
Definition: net_node.h:218
config m_config
Definition: net_node.h:219
connect_func * m_connect
Definition: net_node.h:209
std::string m_bind_ipv6_address
Definition: net_node.h:213
Definition: net_node.h:112
std::vector< cryptonote::blobdata > fluff_txs
Definition: net_node.h:121
uint32_t support_flags
Definition: net_node.h:124
peerid_type peer_id
Definition: net_node.h:123
std::set< epee::net_utils::network_address > sent_addresses
Definition: net_node.h:126
p2p_connection_context_t()
Definition: net_node.h:113
bool m_in_timedsync
Definition: net_node.h:125
std::chrono::steady_clock::time_point flush_time
Definition: net_node.h:122
Definition: p2p_protocol_defs.h:72
Definition: net_node.h:68
proxy()
Definition: net_node.h:69
epee::net_utils::zone zone
Definition: net_node.h:78
boost::asio::ip::tcp::endpoint address
Definition: net_node.h:77
bool noise
Definition: net_node.h:79
std::int64_t max_connections
Definition: net_node.h:76
DISABLE_VS_WARNINGS(4244 4345 4503) using namespace crypto