Monero
net_node.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2022, 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_context.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"
53 #include "p2p_protocol_defs.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 
77  boost::asio::ip::tcp::endpoint address;
79  bool noise;
80  };
81 
83  {
85  : max_connections(-1),
86  local_ip(),
87  local_port(),
88  our_address(),
89  default_remote()
90  {}
91 
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 
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_context& 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  {
113  explicit p2p_connection_context_t(bool is_ping = false)
114  : peer_id(0),
115  support_flags(0),
116  is_ping(is_ping),
117  m_in_timedsync(false)
118  {}
119 
123  bool is_ping;
124  std::set<epee::net_utils::network_address> sent_addresses;
125  };
126 
127  template<class t_payload_net_handler>
128  class node_server: public epee::levin::levin_commands_handler<p2p_connection_context_t<typename t_payload_net_handler::connection_context> >,
129  public i_p2p_endpoint<typename t_payload_net_handler::connection_context>,
132  {
133  struct by_conn_id{};
134  struct by_peer_id{};
135  struct by_addr{};
136 
138 
141  static_assert(p2p_connection_context::handshake_command() == COMMAND_HANDSHAKE::ID, "invalid handshake command id");
142 
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(1),
153  m_support_flags(0)
154  {}
155 
159  };
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_context& 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;
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  m_enable_dns_seed_nodes(true),
262  max_connections(1)
263  {}
264  virtual ~node_server();
265 
266  static void init_options(boost::program_options::options_description& desc);
267 
268  bool run();
269  network_zone& add_zone(epee::net_utils::zone zone);
270  bool init(const boost::program_options::variables_map& vm, const std::string& proxy = {}, bool proxy_dns_leaks_allowed = {});
271  bool deinit();
272  bool send_stop_signal();
273  uint32_t get_this_peer_port(){return m_listening_port;}
274  t_payload_net_handler& get_payload_object();
275 
276  // debug functions
277  bool log_peerlist();
278  bool log_connections();
279 
280  // These functions only return information for the "public" zone
281  virtual uint64_t get_public_connections_count();
282  size_t get_public_outgoing_connections_count();
283  size_t get_public_white_peers_count();
284  size_t get_public_gray_peers_count();
285  void get_public_peerlist(std::vector<peerlist_entry>& gray, std::vector<peerlist_entry>& white);
286  void get_peerlist(std::vector<peerlist_entry>& gray, std::vector<peerlist_entry>& white);
287 
288  void change_max_out_public_peers(size_t count);
289  uint32_t get_max_out_public_peers() const;
290  void change_max_in_public_peers(size_t count);
291  uint32_t get_max_in_public_peers() const;
292  virtual bool block_host(epee::net_utils::network_address address, time_t seconds = P2P_IP_BLOCKTIME, bool add_only = false);
293  virtual bool unblock_host(const epee::net_utils::network_address &address);
294  virtual bool block_subnet(const epee::net_utils::ipv4_network_subnet &subnet, time_t seconds = P2P_IP_BLOCKTIME);
295  virtual bool unblock_subnet(const epee::net_utils::ipv4_network_subnet &subnet);
296  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); }
297  virtual std::map<std::string, time_t> get_blocked_hosts() { CRITICAL_REGION_LOCAL(m_blocked_hosts_lock); return m_blocked_hosts; }
298  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; }
299 
300  virtual void add_used_stripe_peer(const typename t_payload_net_handler::connection_context &context);
301  virtual void remove_used_stripe_peer(const typename t_payload_net_handler::connection_context &context);
302  virtual void clear_used_stripe_peers();
303 
304  private:
305  const std::vector<std::string> m_seed_nodes_list =
306  { "seeds.moneroseeds.se"
307  , "seeds.moneroseeds.ae.org"
308  , "seeds.moneroseeds.ch"
309  , "seeds.moneroseeds.li"
310  };
311 
312  bool islimitup=false;
313  bool islimitdown=false;
314 
315  CHAIN_LEVIN_INVOKE_MAP2(p2p_connection_context); //move levin_commands_handler interface invoke(...) callbacks into invoke map
316  CHAIN_LEVIN_NOTIFY_MAP2(p2p_connection_context); //move levin_commands_handler interface notify(...) callbacks into nothing
317 
319  if (is_filtered_command(context.m_remote_address, command))
321 
322  HANDLE_INVOKE_T2(COMMAND_HANDSHAKE, &node_server::handle_handshake)
323  HANDLE_INVOKE_T2(COMMAND_TIMED_SYNC, &node_server::handle_timed_sync)
324  HANDLE_INVOKE_T2(COMMAND_PING, &node_server::handle_ping)
325  HANDLE_INVOKE_T2(COMMAND_REQUEST_SUPPORT_FLAGS, &node_server::handle_get_support_flags)
326  CHAIN_INVOKE_MAP_TO_OBJ_FORCE_CONTEXT(m_payload_handler, typename t_payload_net_handler::connection_context&)
328 
329  enum PeerType { anchor = 0, white, gray };
330 
331  //----------------- commands handlers ----------------------------------------------
332  int handle_handshake(int command, typename COMMAND_HANDSHAKE::request& arg, typename COMMAND_HANDSHAKE::response& rsp, p2p_connection_context& context);
333  int handle_timed_sync(int command, typename COMMAND_TIMED_SYNC::request& arg, typename COMMAND_TIMED_SYNC::response& rsp, p2p_connection_context& context);
334  int handle_ping(int command, COMMAND_PING::request& arg, COMMAND_PING::response& rsp, p2p_connection_context& context);
335  int handle_get_support_flags(int command, COMMAND_REQUEST_SUPPORT_FLAGS::request& arg, COMMAND_REQUEST_SUPPORT_FLAGS::response& rsp, p2p_connection_context& context);
336  bool init_config();
337  bool make_default_peer_id();
338  bool make_default_config();
339  bool store_config();
340 
341 
342  //----------------- levin_commands_handler -------------------------------------------------------------
343  virtual void on_connection_new(p2p_connection_context& context);
344  virtual void on_connection_close(p2p_connection_context& context);
345  virtual void callback(p2p_connection_context& context);
346  //----------------- i_p2p_endpoint -------------------------------------------------------------
347  virtual bool relay_notify_to_list(int command, epee::levin::message_writer message, std::vector<std::pair<epee::net_utils::zone, boost::uuids::uuid>> connections) final;
348  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);
349  virtual bool invoke_notify_to_peer(int command, epee::levin::message_writer message, const epee::net_utils::connection_context_base& context) final;
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  //----------------- i_connection_limit ---------------------------------------------------------
358  virtual bool is_host_limit(const epee::net_utils::network_address &address);
359  //-----------------------------------------------------------------------------------------------
360 
361  bool parse_peer_from_string(epee::net_utils::network_address& pe, const std::string& node_addr, uint16_t default_port = 0);
362  bool handle_command_line(
363  const boost::program_options::variables_map& vm
364  );
365  bool idle_worker();
366  bool handle_remote_peerlist(const std::vector<peerlist_entry>& peerlist, const epee::net_utils::connection_context_base& context);
367  bool get_local_node_data(basic_node_data& node_data, const network_zone& zone);
368  //bool get_local_handshake_data(handshake_data& hshd);
369 
370  bool sanitize_peerlist(std::vector<peerlist_entry>& local_peerlist);
371 
372  bool connections_maker();
373  bool peer_sync_idle_maker();
374  bool do_handshake_with_peer(peerid_type& pi, p2p_connection_context& context, bool just_take_peerlist = false);
375  bool do_peer_timed_sync(const epee::net_utils::connection_context_base& context, peerid_type peer_id);
376  bool update_dns_blocklist();
377 
378  bool make_new_connection_from_anchor_peerlist(const std::vector<anchor_peerlist_entry>& anchor_peerlist);
379  bool make_new_connection_from_peerlist(network_zone& zone, bool use_white_list);
380  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);
381  size_t get_random_index_with_fixed_probability(size_t max_index);
382  bool is_peer_used(const peerlist_entry& peer);
383  bool is_peer_used(const anchor_peerlist_entry& peer);
384  bool is_addr_connected(const epee::net_utils::network_address& peer);
385  void add_upnp_port_mapping_impl(uint32_t port, bool ipv6=false);
386  void add_upnp_port_mapping_v4(uint32_t port);
387  void add_upnp_port_mapping_v6(uint32_t port);
388  void add_upnp_port_mapping(uint32_t port, bool ipv4=true, bool ipv6=false);
389  void delete_upnp_port_mapping_impl(uint32_t port, bool ipv6=false);
390  void delete_upnp_port_mapping_v4(uint32_t port);
391  void delete_upnp_port_mapping_v6(uint32_t port);
392  void delete_upnp_port_mapping(uint32_t port);
393  template<class t_callback>
394  bool try_ping(basic_node_data& node_data, p2p_connection_context& context, const t_callback &cb);
395  bool try_get_support_flags(const p2p_connection_context& context, std::function<void(p2p_connection_context&, const uint32_t&)> f);
396  bool make_expected_connections_count(network_zone& zone, PeerType peer_type, size_t expected_connections);
397  void record_addr_failed(const epee::net_utils::network_address& addr);
398  bool is_addr_recently_failed(const epee::net_utils::network_address& addr);
399  bool is_priority_node(const epee::net_utils::network_address& na);
400  std::set<std::string> get_ip_seed_nodes() const;
401  std::set<std::string> get_dns_seed_nodes();
402  std::set<std::string> get_seed_nodes(epee::net_utils::zone);
403  bool connect_to_seed(epee::net_utils::zone);
404 
405  template <class Container>
406  bool connect_to_peerlist(const Container& peers);
407 
408  template <class Container>
409  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);
410 
411  bool set_max_out_peers(network_zone& zone, int64_t max);
412  bool set_max_in_peers(network_zone& zone, int64_t max);
413  bool set_tos_flag(const boost::program_options::variables_map& vm, int limit);
414 
415  bool set_rate_up_limit(const boost::program_options::variables_map& vm, int64_t limit);
416  bool set_rate_down_limit(const boost::program_options::variables_map& vm, int64_t limit);
417  bool set_rate_limit(const boost::program_options::variables_map& vm, int64_t limit);
418 
419  bool has_too_many_connections(const epee::net_utils::network_address &address);
420  size_t get_incoming_connections_count();
421  size_t get_incoming_connections_count(network_zone&);
422  size_t get_outgoing_connections_count();
423  size_t get_outgoing_connections_count(network_zone&);
424 
425  bool check_connection_and_handshake_with_peer(const epee::net_utils::network_address& na, uint64_t last_seen_stamp);
426  bool gray_peerlist_housekeeping();
427  bool check_incoming_connections();
428 
429  void kill() {
430  _info("Killing the net_node");
431  is_closing = true;
432  if(mPeersLoggerThread != nullptr)
433  mPeersLoggerThread->join(); // make sure the thread finishes
434  _info("Joined extra background net_node threads");
435  }
436 
437  //debug functions
438  std::string print_connections_container();
439 
440 
441  public:
442 
443  void set_rpc_port(uint16_t rpc_port)
444  {
445  m_rpc_port = rpc_port;
446  }
447 
448  void set_rpc_credits_per_hash(uint32_t rpc_credits_per_hash)
449  {
450  m_rpc_credits_per_hash = rpc_credits_per_hash;
451  }
452 
453  private:
455 
465  igd_t m_igd;
466  bool m_offline;
469  std::atomic<bool> is_closing;
470  std::unique_ptr<boost::thread> mPeersLoggerThread;
471  //critical_section m_connections_lock;
472  //connections_indexed_container m_connections;
473 
474  t_payload_net_handler& m_payload_handler;
476 
483 
484  std::list<epee::net_utils::network_address> m_priority_peers;
485  std::vector<epee::net_utils::network_address> m_exclusive_peers;
486  std::atomic_flag m_fallback_seed_nodes_added;
487  std::vector<nodetool::peerlist_entry> m_command_line_peers;
489  //keep connections to initiate some interactions
490 
491 
492  static boost::optional<p2p_connection_context> public_connect(network_zone&, epee::net_utils::network_address const&, epee::net_utils::ssl_support_t);
493  static boost::optional<p2p_connection_context> socks_connect(network_zone&, epee::net_utils::network_address const&, epee::net_utils::ssl_support_t);
494 
495 
496  /* A `std::map` provides constant iterators and key/value pointers even with
497  inserts/erases to _other_ elements. This makes the configuration step easier
498  since references can safely be stored on the stack. Do not insert/erase
499  after configuration and before destruction, lock safety would need to be
500  added. `std::map::operator[]` WILL insert! */
501  std::map<epee::net_utils::zone, network_zone> m_network_zones;
502 
503 
504  std::map<std::string, time_t> m_conn_fails_cache;
506 
507  epee::critical_section m_blocked_hosts_lock; // for both hosts and subnets
508  std::map<std::string, time_t> m_blocked_hosts;
509  std::map<epee::net_utils::ipv4_network_subnet, time_t> m_blocked_subnets;
510 
512  std::map<std::string, uint64_t> m_host_fails_score;
513 
515  std::array<std::list<epee::net_utils::network_address>, 1 << CRYPTONOTE_PRUNING_LOG_STRIPES> m_used_stripe_peers;
516 
519 
521 
524 
526  };
527 
548 
555 
561 }
562 
564 
#define P2P_DEFAULT_HANDSHAKE_INTERVAL
Definition: cryptonote_config.h:140
bool m_require_ipv4
Definition: net_node.h:468
network_zone(boost::asio::io_context &public_service)
Definition: net_node.h:186
std::unique_ptr< boost::thread > mPeersLoggerThread
Definition: net_node.h:470
cryptonote::levin::notify m_notifier
Definition: net_node.h:215
bool m_use_ipv6
Definition: net_node.h:467
static int init(int argc, char **argv, struct runtime_vars *v)
Definition: miniupnpd.c:1149
const CharType(& source)[N]
Definition: pointer.h:1147
epee::math_helper::once_a_time_seconds< 7000 > m_dns_blocklist_interval
Definition: net_node.h:482
PUSH_WARNINGS
Definition: hash-ops.h:53
Definition: net_node.h:162
Definition: abstract_tcp_server2.h:342
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
p2p_connection_context_t(bool is_ping=false)
Definition: net_node.h:113
uint32_t m_listening_port
Definition: net_node.h:458
const command_line::arg_descriptor< bool > arg_enable_dns_blocklist
Definition: net_node.cpp:155
int * count
Definition: gmock_stress_test.cc:176
std::vector< epee::net_utils::network_address > m_exclusive_peers
Definition: net_node.h:485
std::map< epee::net_utils::ipv4_network_subnet, time_t > m_blocked_subnets
Definition: net_node.h:509
bool m_hide_my_port
Definition: net_node.h:464
bool m_enable_dns_blocklist
Definition: net_node.h:523
const command_line::arg_descriptor< std::vector< std::string > > arg_anonymous_inbound
Definition: net_node.cpp:151
#define P2P_DEFAULT_PING_CONNECTION_TIMEOUT
Definition: cryptonote_config.h:146
igd_t m_igd
Definition: net_node.h:465
::std::string string
Definition: gtest-port.h:1097
boost::optional< boost::asio::ip::tcp::socket > socks_connect_internal(const std::atomic< bool > &stop_signal, boost::asio::io_context &service, const boost::asio::ip::tcp::endpoint &proxy, const epee::net_utils::network_address &remote)
Definition: net_node.cpp:330
const command_line::arg_descriptor< uint32_t > arg_max_connections_per_ip
Definition: net_node.cpp:172
Definition: net_utils_base.h:224
const command_line::arg_descriptor< std::string > arg_ban_list
Definition: net_node.cpp:152
uint32_t m_rpc_credits_per_hash
Definition: net_node.h:462
t
Definition: console.py:33
Definition: minissdpd.c:83
Definition: net_node.h:242
#define LEVIN_ERROR_CONNECTION_HANDLER_NOT_DEFINED
Definition: levin_base.h:108
network_zone()
Definition: net_node.h:164
#define CRYPTONOTE_PRUNING_LOG_STRIPES
Definition: cryptonote_config.h:207
const command_line::arg_descriptor< std::string, false, true, 2 > arg_p2p_bind_port_ipv6
Definition: net_node.cpp:129
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:163
Definition: p2p_protocol_defs.h:277
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:243
bool noise
Definition: net_node.h:79
Definition: net_utils_base.h:366
epee::net_utils::boosted_tcp_server< epee::levin::async_protocol_handler< p2p_connection_context > > net_server
Definition: net_node.h:141
bool m_in_timedsync
Definition: net_node.h:122
Definition: net_utils_base.h:124
Definition: p2p_protocol_defs.h:211
unsigned short uint16_t
Definition: stdint.h:125
const command_line::arg_descriptor< bool > arg_no_sync
Definition: net_node.cpp:154
epee::math_helper::once_a_time_seconds< 60 *30, false > m_peerlist_store_interval
Definition: net_node.h:479
boost::mutex m_used_stripe_peers_mutex
Definition: net_node.h:514
Definition: cryptonote_config.h:220
const command_line::arg_descriptor< int64_t > arg_out_peers
Definition: net_node.cpp:161
def run(t, blocks)
Definition: block_weight.py:35
ssl_support_t
Definition: net_ssl.h:49
Definition: net_node.h:329
COMMAND_HANDSHAKE_T< typename t_payload_net_handler::payload_type > COMMAND_HANDSHAKE
Definition: net_node.h:139
std::array< std::list< epee::net_utils::network_address >, 1<< CRYPTONOTE_PRUNING_LOG_STRIPES > m_used_stripe_peers
Definition: net_node.h:515
bool m_enable_dns_seed_nodes
Definition: net_node.h:522
std::string m_bind_ip
Definition: net_node.h:211
Provides space for levin (p2p) header, so that payload can be sent without copy.
Definition: levin_base.h:131
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:116
void set_rpc_credits_per_hash(uint32_t rpc_credits_per_hash)
Definition: net_node.h:448
const command_line::arg_descriptor< std::string > arg_igd
Definition: net_node.cpp:158
const int64_t default_limit_down
Definition: net_node.h:529
bool m_offline
Definition: net_node.h:466
#define CHAIN_INVOKE_MAP_TO_OBJ_FORCE_CONTEXT(obj, context_type)
Definition: levin_abstract_invoke2.h:278
epee::math_helper::once_a_time_seconds< 1 > m_connections_maker_interval
Definition: net_node.h:478
Provides tx notification privacy.
Definition: levin_notify.h:69
desc
Definition: pymoduletest.py:79
boost::asio::ip::tcp::endpoint m_proxy_address
Definition: net_node.h:219
bool m_allow_local_ip
Definition: net_node.h:463
Definition: net_node.h:148
const command_line::arg_descriptor< std::string > arg_p2p_bind_ip
Definition: net_node.cpp:114
network_config m_net_config
Definition: net_node.h:156
#define P2P_IP_BLOCKTIME
Definition: cryptonote_config.h:156
#define P2P_DEFAULT_LIMIT_RATE_DOWN
Definition: cryptonote_config.h:153
COMMAND_TIMED_SYNC_T< typename t_payload_net_handler::payload_type > COMMAND_TIMED_SYNC
Definition: net_node.h:140
epee::critical_section m_blocked_hosts_lock
Definition: net_node.h:507
Definition: net_node.h:135
#define BEGIN_INVOKE_MAP2(owner_type)
Definition: levin_abstract_invoke2.h:240
const command_line::arg_descriptor< int64_t > arg_limit_rate_down
Definition: net_node.cpp:166
Definition: net_node.h:134
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:145
epee::critical_section m_conn_fails_cache_lock
Definition: net_node.h:505
#define P2P_DEFAULT_PEERS_IN_HANDSHAKE
Definition: cryptonote_config.h:142
std::string m_config_folder
Definition: net_node.h:454
anonymous_inbound()
Definition: net_node.h:84
uint32_t m_listening_port_ipv6
Definition: net_node.h:459
Definition: net_peerlist.h:62
const command_line::arg_descriptor< bool > arg_pad_transactions
Definition: net_node.cpp:169
boost::shared_mutex m_seed_nodes_lock
Definition: net_node.h:222
std::atomic< bool > is_closing
Definition: net_node.h:469
Definition: syncobj.h:81
bool is_filtered_command(const epee::net_utils::network_address &address, int command)
Definition: net_node.cpp:310
virtual std::map< std::string, time_t > get_blocked_hosts()
Definition: net_node.h:297
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:475
std::map< std::string, time_t > m_conn_fails_cache
Definition: net_node.h:504
epee::levin::async_protocol_handler_config< detail::p2p_context > connections
Definition: levin_notify.h:66
const char * uuid
Definition: minissdp.c:598
unsigned int uint32_t
Definition: stdint.h:126
#define POP_WARNINGS
Definition: warnings.h:17
const command_line::arg_descriptor< std::vector< std::string > > arg_tx_proxy
Definition: net_node.cpp:150
const int64_t default_limit_up
Definition: net_node.h:528
Definition: levin_base.h:90
std::list< epee::net_utils::network_address > m_priority_peers
Definition: net_node.h:484
#define P2P_DEFAULT_CONNECTION_TIMEOUT
Definition: cryptonote_config.h:144
the connection templated-class for one peer connection
const command_line::arg_descriptor< int64_t > arg_limit_rate_up
Definition: net_node.cpp:165
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:115
epee::math_helper::once_a_time_seconds< 60 > m_gray_peerlist_housekeeping_interval
Definition: net_node.h:480
net_server m_net_server
Definition: net_node.h:209
epee::critical_section m_host_fails_score_lock
Definition: net_node.h:511
Definition: p2p_protocol_defs.h:102
Definition: p2p_protocol_defs.h:185
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_add_priority_node
Definition: net_node.cpp:146
std::vector< nodetool::peerlist_entry > m_command_line_peers
Definition: net_node.h:487
unsigned __int64 uint64_t
Definition: stdint.h:136
Definition: abstract_tcp_server2.h:82
epee::net_utils::network_address default_remote
Definition: net_node.h:96
bool m_seed_nodes_initialized
Definition: net_node.h:224
#define CRITICAL_REGION_LOCAL(x)
Definition: syncobj.h:153
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:512
Definition: net_node.h:244
std::int64_t max_connections
Definition: net_node.h:76
uint64_t peerid_type
Definition: p2p_protocol_defs.h:49
Definition: abstract_tcp_server2.h:75
Definition: connection_basic.hpp:96
const command_line::arg_descriptor< std::vector< std::string > > arg_p2p_add_exclusive_node
Definition: net_node.cpp:147
#define false
Definition: stdbool.h:37
void kill()
Definition: net_node.h:429
std::string m_bind_ipv6_address
Definition: net_node.h:212
epee::net_utils::ssl_support_t m_ssl_support
Definition: net_node.h:520
uint32_t max_connections
Definition: net_node.h:525
std::set< epee::net_utils::network_address > sent_addresses
Definition: net_node.h:124
peerlist_manager m_peerlist
Definition: net_node.h:217
#define END_INVOKE_MAP2()
Definition: levin_abstract_invoke2.h:285
relay_method tx_relay
Definition: levin_notify.cpp:549
Definition: net_peerlist.h:99
boost::endian::big_uint16_t port
Definition: socks.cpp:61
std::string local_ip
Definition: net_node.h:93
Definition: net_node.h:133
#define HANDLE_INVOKE_T2(COMMAND, func)
Definition: levin_abstract_invoke2.h:250
DISABLE_VS_WARNINGS(4244 4345 4503) using namespace crypto
const command_line::arg_descriptor< bool > arg_offline
Definition: cryptonote_core.cpp:113
uint32_t m_external_port
Definition: net_node.h:460
network_type
Definition: cryptonote_config.h:301
randomx_vm * vm
Definition: tests.cpp:20
t_payload_net_handler & m_payload_handler
Definition: net_node.h:474
TODO: (mj-xmr) This will be reduced in an another PR.
Definition: byte_slice.h:39
uint32_t address
Definition: getifaddr.c:269
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:149
#define CHAIN_LEVIN_NOTIFY_MAP2(context_type)
Definition: levin_abstract_invoke2.h:212
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:486
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:174
std::map< epee::net_utils::zone, network_zone > m_network_zones
Definition: net_node.h:501
uint32_t support_flags
Definition: net_node.h:121
const command_line::arg_descriptor< bool > arg_p2p_hide_my_port
Definition: net_node.cpp:153
const command_line::arg_descriptor< bool > arg_no_igd
Definition: net_node.cpp:157
const command_line::arg_descriptor< bool > arg_p2p_use_ipv6
Definition: net_node.cpp:159
epee::math_helper::once_a_time_seconds< 3600, false > m_incoming_connections_interval
Definition: net_node.h:481
bool m_have_address
Definition: net_node.h:456
uint16_t m_rpc_port
Definition: net_node.h:461
cryptonote::network_type m_nettype
Definition: net_node.h:518
epee::net_utils::zone zone
Definition: net_node.h:78
signed __int64 int64_t
Definition: stdint.h:135
Definition: levin_notify.h:53
Definition: levin_notify.h:51
bool m_first_connection_maker_call
Definition: net_node.h:457
config_t()
Definition: net_node.h:150
peerid_type peer_id
Definition: net_node.h:120
uint32_t get_this_peer_port()
Definition: net_node.h:273
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:160
bool is_ping
Definition: net_node.h:123
zone
Definition: enums.h:49
p2p_connection_context_t< typename t_payload_net_handler::connection_context > p2p_connection_context
Definition: net_node.h:137
relay_method
Methods tracking how a tx was received and relayed.
Definition: enums.h:36
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:508
connect_func * m_connect
Definition: net_node.h:208
Definition: p2p_protocol_defs.h:247
virtual std::map< epee::net_utils::ipv4_network_subnet, time_t > get_blocked_subnets()
Definition: net_node.h:298
#define P2P_DEFAULT_LIMIT_RATE_UP
Definition: cryptonote_config.h:152
#define CHAIN_LEVIN_INVOKE_MAP2(context_type)
Definition: levin_abstract_invoke2.h:205
const command_line::arg_descriptor< int64_t > arg_limit_rate
Definition: net_node.cpp:167
std::string m_port
Definition: net_node.h:213
boost::uuids::uuid m_network_id
Definition: net_node.h:517
Definition: command_line.h:53
const command_line::arg_descriptor< uint32_t > arg_p2p_external_port
Definition: net_node.cpp:143
tuple message
Definition: gtest_output_test.py:331
Definition: p2p_protocol_defs.h:165
uint32_t m_support_flags
Definition: net_node.h:158
void set_rpc_port(uint16_t rpc_port)
Definition: net_node.h:443
#define true
Definition: stdbool.h:36
const command_line::arg_descriptor< bool > arg_p2p_allow_local_ip
Definition: net_node.cpp:144
Definition: net_node_common.h:52
uint64_t m_peer_livetime
Definition: net_node.h:488
Definition: net_node.h:128
const command_line::arg_descriptor< int64_t > arg_in_peers
Definition: net_node.cpp:162
Definition: p2p_protocol_defs.h:314
#define P2P_DEFAULT_PACKET_MAX_SIZE
Definition: cryptonote_config.h:141
std::string m_port_ipv6
Definition: net_node.h:214
Definition: p2p_protocol_defs.h:72
epee::math_helper::once_a_time_seconds< P2P_DEFAULT_HANDSHAKE_INTERVAL > m_peer_handshake_idle_maker_interval
Definition: net_node.h:477
virtual bool is_host_blocked(const epee::net_utils::network_address &address, time_t *seconds)
Definition: net_node.h:296
bool parse_peer_from_string(uint32_t &ip, uint16_t &port, const std::string &addres)
Definition: string_tools.cpp:98