2010-08-29 12:58:15 -04:00
|
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2020-01-14 16:17:38 -03:00
|
|
|
|
// Copyright (c) 2009-2020 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 10:02:28 -04:00
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 02:13:08 -03:00
|
|
|
|
|
2011-05-15 03:11:04 -04:00
|
|
|
|
#ifndef BITCOIN_NET_H
|
|
|
|
|
#define BITCOIN_NET_H
|
|
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
|
#include <addrdb.h>
|
|
|
|
|
#include <addrman.h>
|
|
|
|
|
#include <amount.h>
|
|
|
|
|
#include <bloom.h>
|
2020-06-08 22:26:22 -04:00
|
|
|
|
#include <chainparams.h>
|
2017-11-09 21:57:53 -03:00
|
|
|
|
#include <compat.h>
|
2018-08-24 18:48:23 -03:00
|
|
|
|
#include <crypto/siphash.h>
|
2017-11-09 21:57:53 -03:00
|
|
|
|
#include <hash.h>
|
|
|
|
|
#include <limitedmap.h>
|
2019-06-20 05:37:51 -04:00
|
|
|
|
#include <net_permissions.h>
|
2020-06-29 14:15:06 -04:00
|
|
|
|
#include <netaddress.h>
|
|
|
|
|
#include <optional.h>
|
2017-11-09 21:57:53 -03:00
|
|
|
|
#include <policy/feerate.h>
|
|
|
|
|
#include <protocol.h>
|
|
|
|
|
#include <random.h>
|
|
|
|
|
#include <streams.h>
|
|
|
|
|
#include <sync.h>
|
|
|
|
|
#include <threadinterrupt.h>
|
2020-04-11 11:47:17 -04:00
|
|
|
|
#include <uint256.h>
|
2013-04-13 02:13:08 -03:00
|
|
|
|
|
2016-05-20 12:19:26 -04:00
|
|
|
|
#include <atomic>
|
2019-12-29 18:04:02 -03:00
|
|
|
|
#include <cstdint>
|
2011-05-15 03:11:04 -04:00
|
|
|
|
#include <deque>
|
2020-05-16 21:05:44 -04:00
|
|
|
|
#include <map>
|
2016-12-27 19:12:44 -03:00
|
|
|
|
#include <thread>
|
2016-04-16 15:47:18 -03:00
|
|
|
|
#include <memory>
|
2016-12-27 19:12:44 -03:00
|
|
|
|
#include <condition_variable>
|
2011-05-15 03:11:04 -04:00
|
|
|
|
|
2011-10-07 12:02:21 -03:00
|
|
|
|
#ifndef WIN32
|
2011-05-15 03:11:04 -04:00
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
#endif
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
2013-06-06 03:04:33 -04:00
|
|
|
|
|
2015-04-02 13:04:59 -03:00
|
|
|
|
class CScheduler;
|
2013-04-13 02:13:08 -03:00
|
|
|
|
class CNode;
|
2017-10-05 17:40:43 -03:00
|
|
|
|
class BanMan;
|
2020-04-11 11:47:17 -04:00
|
|
|
|
struct bilingual_str;
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
2019-08-16 04:45:13 -04:00
|
|
|
|
/** Default for -whitelistrelay. */
|
|
|
|
|
static const bool DEFAULT_WHITELISTRELAY = true;
|
|
|
|
|
/** Default for -whitelistforcerelay. */
|
|
|
|
|
static const bool DEFAULT_WHITELISTFORCERELAY = false;
|
|
|
|
|
|
2013-10-14 19:34:20 -03:00
|
|
|
|
/** Time after which to disconnect, after waiting for a ping response (or inactivity). */
|
|
|
|
|
static const int TIMEOUT_INTERVAL = 20 * 60;
|
2016-06-17 00:10:07 -04:00
|
|
|
|
/** Run the feeler connection loop once every 2 minutes or 120 seconds. **/
|
|
|
|
|
static const int FEELER_INTERVAL = 120;
|
2020-07-23 10:34:40 -04:00
|
|
|
|
/** The maximum number of addresses from our addrman to return in response to a getaddr message. */
|
|
|
|
|
static constexpr size_t MAX_ADDR_TO_SEND = 1000;
|
2016-01-03 14:54:50 -03:00
|
|
|
|
/** Maximum length of incoming protocol messages (no message over 4 MB is currently acceptable). */
|
|
|
|
|
static const unsigned int MAX_PROTOCOL_MESSAGE_LENGTH = 4 * 1000 * 1000;
|
2019-03-23 12:34:40 -03:00
|
|
|
|
/** Maximum length of the user agent string in `version` message */
|
2015-07-31 13:05:42 -03:00
|
|
|
|
static const unsigned int MAX_SUBVERSION_LENGTH = 256;
|
2019-03-09 14:55:06 -03:00
|
|
|
|
/** Maximum number of automatic outgoing nodes over which we'll relay everything (blocks, tx, addrs, etc) */
|
|
|
|
|
static const int MAX_OUTBOUND_FULL_RELAY_CONNECTIONS = 8;
|
2016-12-11 01:39:26 -03:00
|
|
|
|
/** Maximum number of addnode outgoing nodes */
|
|
|
|
|
static const int MAX_ADDNODE_CONNECTIONS = 8;
|
2019-03-09 14:55:06 -03:00
|
|
|
|
/** Maximum number of block-relay-only outgoing connections */
|
2020-06-09 01:04:07 -04:00
|
|
|
|
static const int MAX_BLOCK_RELAY_ONLY_CONNECTIONS = 2;
|
2019-05-08 04:34:01 -04:00
|
|
|
|
/** Maximum number of feeler connections */
|
|
|
|
|
static const int MAX_FEELER_CONNECTIONS = 1;
|
2014-05-29 07:02:22 -04:00
|
|
|
|
/** -listen default */
|
|
|
|
|
static const bool DEFAULT_LISTEN = true;
|
2014-05-05 15:06:14 -04:00
|
|
|
|
/** -upnp default */
|
|
|
|
|
#ifdef USE_UPNP
|
|
|
|
|
static const bool DEFAULT_UPNP = USE_UPNP;
|
|
|
|
|
#else
|
|
|
|
|
static const bool DEFAULT_UPNP = false;
|
|
|
|
|
#endif
|
2015-08-01 14:41:21 -03:00
|
|
|
|
/** The maximum number of peer connections to maintain. */
|
|
|
|
|
static const unsigned int DEFAULT_MAX_PEER_CONNECTIONS = 125;
|
2015-11-05 20:05:06 -03:00
|
|
|
|
/** The default for -maxuploadtarget. 0 = Unlimited */
|
|
|
|
|
static const uint64_t DEFAULT_MAX_UPLOAD_TARGET = 0;
|
2016-09-12 16:04:20 -03:00
|
|
|
|
/** The default timeframe for -maxuploadtarget. 1 day. */
|
|
|
|
|
static const uint64_t MAX_UPLOAD_TIMEFRAME = 60 * 60 * 24;
|
2015-11-14 09:47:53 -03:00
|
|
|
|
/** Default for blocks only*/
|
|
|
|
|
static const bool DEFAULT_BLOCKSONLY = false;
|
2018-11-15 20:30:26 -03:00
|
|
|
|
/** -peertimeout default */
|
|
|
|
|
static const int64_t DEFAULT_PEER_CONNECT_TIMEOUT = 60;
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
2015-06-27 16:21:41 -03:00
|
|
|
|
static const bool DEFAULT_FORCEDNSSEED = false;
|
|
|
|
|
static const size_t DEFAULT_MAXRECEIVEBUFFER = 5 * 1000;
|
|
|
|
|
static const size_t DEFAULT_MAXSENDBUFFER = 1 * 1000;
|
|
|
|
|
|
2017-04-10 16:00:23 -03:00
|
|
|
|
typedef int64_t NodeId;
|
2016-05-06 15:50:24 -03:00
|
|
|
|
|
2016-04-16 19:12:58 -03:00
|
|
|
|
struct AddedNodeInfo
|
|
|
|
|
{
|
|
|
|
|
std::string strAddedNode;
|
|
|
|
|
CService resolvedAddress;
|
|
|
|
|
bool fConnected;
|
|
|
|
|
bool fInbound;
|
|
|
|
|
};
|
|
|
|
|
|
2016-04-16 19:30:03 -03:00
|
|
|
|
class CNodeStats;
|
2016-05-25 21:26:46 -04:00
|
|
|
|
class CClientUIInterface;
|
|
|
|
|
|
2016-11-10 19:05:23 -03:00
|
|
|
|
struct CSerializedNetMsg
|
|
|
|
|
{
|
|
|
|
|
CSerializedNetMsg() = default;
|
|
|
|
|
CSerializedNetMsg(CSerializedNetMsg&&) = default;
|
|
|
|
|
CSerializedNetMsg& operator=(CSerializedNetMsg&&) = default;
|
|
|
|
|
// No copying, only moves.
|
|
|
|
|
CSerializedNetMsg(const CSerializedNetMsg& msg) = delete;
|
|
|
|
|
CSerializedNetMsg& operator=(const CSerializedNetMsg&) = delete;
|
|
|
|
|
|
|
|
|
|
std::vector<unsigned char> data;
|
2020-05-10 13:48:11 -04:00
|
|
|
|
std::string m_type;
|
2016-11-10 19:05:23 -03:00
|
|
|
|
};
|
|
|
|
|
|
2020-08-12 16:57:13 -04:00
|
|
|
|
const std::vector<std::string> CONNECTION_TYPE_DOC{
|
|
|
|
|
"outbound-full-relay (default automatic connections)",
|
|
|
|
|
"block-relay-only (does not relay transactions or addresses)",
|
|
|
|
|
"inbound (initiated by the peer)",
|
|
|
|
|
"manual (added via addnode RPC or -addnode/-connect configuration options)",
|
|
|
|
|
"addr-fetch (short-lived automatic connection for soliciting addresses)",
|
|
|
|
|
"feeler (short-lived automatic connection for testing addresses)"};
|
|
|
|
|
|
2020-06-02 14:43:57 -04:00
|
|
|
|
/** Different types of connections to a peer. This enum encapsulates the
|
|
|
|
|
* information we have available at the time of opening or accepting the
|
|
|
|
|
* connection. Aside from INBOUND, all types are initiated by us. */
|
2020-05-06 21:09:24 -04:00
|
|
|
|
enum class ConnectionType {
|
2020-08-14 00:58:08 -04:00
|
|
|
|
/**
|
|
|
|
|
* Inbound connections are those initiated by a peer. This is the only
|
|
|
|
|
* property we know at the time of connection, until P2P messages are
|
|
|
|
|
* exchanged.
|
|
|
|
|
*/
|
|
|
|
|
INBOUND,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* These are the default connections that we use to connect with the
|
|
|
|
|
* network. There is no restriction on what is relayed- by default we relay
|
|
|
|
|
* blocks, addresses & transactions. We automatically attempt to open
|
|
|
|
|
* MAX_OUTBOUND_FULL_RELAY_CONNECTIONS using addresses from our AddrMan.
|
|
|
|
|
*/
|
|
|
|
|
OUTBOUND_FULL_RELAY,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* We open manual connections to addresses that users explicitly inputted
|
|
|
|
|
* via the addnode RPC, or the -connect command line argument. Even if a
|
|
|
|
|
* manual connection is misbehaving, we do not automatically disconnect or
|
|
|
|
|
* add it to our discouragement filter.
|
|
|
|
|
*/
|
|
|
|
|
MANUAL,
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-15 04:29:20 -03:00
|
|
|
|
* Feeler connections are short-lived connections made to check that a node
|
|
|
|
|
* is alive. They can be useful for:
|
|
|
|
|
* - test-before-evict: if one of the peers is considered for eviction from
|
|
|
|
|
* our AddrMan because another peer is mapped to the same slot in the tried table,
|
|
|
|
|
* evict only if this longer-known peer is offline.
|
|
|
|
|
* - move node addresses from New to Tried table, so that we have more
|
|
|
|
|
* connectable addresses in our AddrMan.
|
|
|
|
|
* Note that in the literature ("Eclipse Attacks on Bitcoin’s Peer-to-Peer Network")
|
|
|
|
|
* only the latter feature is referred to as "feeler connections",
|
|
|
|
|
* although in our codebase feeler connections encompass test-before-evict as well.
|
|
|
|
|
* We make these connections approximately every FEELER_INTERVAL:
|
|
|
|
|
* first we resolve previously found collisions if they exist (test-before-evict),
|
|
|
|
|
* otherwise connect to a node from the new table.
|
2020-08-14 00:58:08 -04:00
|
|
|
|
*/
|
|
|
|
|
FEELER,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* We use block-relay-only connections to help prevent against partition
|
|
|
|
|
* attacks. By not relaying transactions or addresses, these connections
|
|
|
|
|
* are harder to detect by a third party, thus helping obfuscate the
|
|
|
|
|
* network topology. We automatically attempt to open
|
|
|
|
|
* MAX_BLOCK_RELAY_ONLY_CONNECTIONS using addresses from our AddrMan.
|
|
|
|
|
*/
|
|
|
|
|
BLOCK_RELAY,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* AddrFetch connections are short lived connections used to solicit
|
|
|
|
|
* addresses from peers. These are initiated to addresses submitted via the
|
|
|
|
|
* -seednode command line argument, or under certain conditions when the
|
|
|
|
|
* AddrMan is empty.
|
|
|
|
|
*/
|
|
|
|
|
ADDR_FETCH,
|
2020-05-06 21:09:24 -04:00
|
|
|
|
};
|
2017-10-05 14:10:58 -03:00
|
|
|
|
|
2017-07-06 13:40:09 -04:00
|
|
|
|
class NetEventsInterface;
|
2016-04-16 15:47:18 -03:00
|
|
|
|
class CConnman
|
|
|
|
|
{
|
|
|
|
|
public:
|
2016-04-16 19:30:03 -03:00
|
|
|
|
|
|
|
|
|
enum NumConnections {
|
|
|
|
|
CONNECTIONS_NONE = 0,
|
|
|
|
|
CONNECTIONS_IN = (1U << 0),
|
|
|
|
|
CONNECTIONS_OUT = (1U << 1),
|
|
|
|
|
CONNECTIONS_ALL = (CONNECTIONS_IN | CONNECTIONS_OUT),
|
|
|
|
|
};
|
|
|
|
|
|
2016-05-26 23:53:08 -04:00
|
|
|
|
struct Options
|
|
|
|
|
{
|
|
|
|
|
ServiceFlags nLocalServices = NODE_NONE;
|
|
|
|
|
int nMaxConnections = 0;
|
2019-03-09 14:55:06 -03:00
|
|
|
|
int m_max_outbound_full_relay = 0;
|
|
|
|
|
int m_max_outbound_block_relay = 0;
|
2016-12-11 01:39:26 -03:00
|
|
|
|
int nMaxAddnode = 0;
|
2016-08-31 14:17:28 -03:00
|
|
|
|
int nMaxFeeler = 0;
|
2016-05-26 23:53:08 -04:00
|
|
|
|
int nBestHeight = 0;
|
|
|
|
|
CClientUIInterface* uiInterface = nullptr;
|
2017-07-06 13:40:09 -04:00
|
|
|
|
NetEventsInterface* m_msgproc = nullptr;
|
2017-10-05 14:10:58 -03:00
|
|
|
|
BanMan* m_banman = nullptr;
|
2016-05-27 00:00:02 -04:00
|
|
|
|
unsigned int nSendBufferMaxSize = 0;
|
|
|
|
|
unsigned int nReceiveFloodSize = 0;
|
2016-09-12 16:04:20 -03:00
|
|
|
|
uint64_t nMaxOutboundTimeframe = 0;
|
|
|
|
|
uint64_t nMaxOutboundLimit = 0;
|
2018-11-15 20:30:26 -03:00
|
|
|
|
int64_t m_peer_connect_timeout = DEFAULT_PEER_CONNECT_TIMEOUT;
|
2017-05-27 06:00:37 -04:00
|
|
|
|
std::vector<std::string> vSeedNodes;
|
2019-06-20 05:37:51 -04:00
|
|
|
|
std::vector<NetWhitelistPermissions> vWhitelistedRange;
|
|
|
|
|
std::vector<NetWhitebindPermissions> vWhiteBinds;
|
|
|
|
|
std::vector<CService> vBinds;
|
2020-09-29 12:03:43 -03:00
|
|
|
|
std::vector<CService> onion_binds;
|
2017-06-15 03:39:07 -04:00
|
|
|
|
bool m_use_addrman_outgoing = true;
|
|
|
|
|
std::vector<std::string> m_specified_outgoing;
|
2017-09-11 11:13:46 -03:00
|
|
|
|
std::vector<std::string> m_added_nodes;
|
2019-12-24 15:18:44 -03:00
|
|
|
|
std::vector<bool> m_asmap;
|
2016-05-26 23:53:08 -04:00
|
|
|
|
};
|
[net] Fix use of uninitialized value in getnetworkinfo(const JSONRPCRequest& request)
When running test_bitcoin under Valgrind I found the following issue:
```
$ valgrind src/test/test_bitcoin
...
==10465== Use of uninitialised value of size 8
==10465== at 0x6D09B61: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B1BB: std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<unsigned long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B36C: std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D17699: std::ostream& std::ostream::_M_insert<unsigned long>(unsigned long) (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x4CAAD7: operator<< (ostream:171)
==10465== by 0x4CAAD7: formatValue<ServiceFlags> (tinyformat.h:345)
==10465== by 0x4CAAD7: void tinyformat::detail::FormatArg::formatImpl<ServiceFlags>(std::ostream&, char const*, char const*, int, void const*) (tinyformat.h:523)
==10465== by 0x1924D4: format (tinyformat.h:510)
==10465== by 0x1924D4: tinyformat::detail::formatImpl(std::ostream&, char const*, tinyformat::detail::FormatArg const*, int) (tinyformat.h:803)
==10465== by 0x553A55: vformat (tinyformat.h:947)
==10465== by 0x553A55: format<ServiceFlags> (tinyformat.h:957)
==10465== by 0x553A55: std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > tinyformat::format<ServiceFlags>(char const*, ServiceFlags const&) (tinyformat.h:966)
==10465== by 0x54C952: getnetworkinfo(JSONRPCRequest const&) (net.cpp:462)
==10465== by 0x28EDB5: CallRPC(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) (rpc_tests.cpp:31)
==10465== by 0x293947: rpc_tests::rpc_togglenetwork::test_method() (rpc_tests.cpp:88)
==10465== by 0x2950E5: rpc_tests::rpc_togglenetwork_invoker() (rpc_tests.cpp:84)
==10465== by 0x182496: invoke<void (*)()> (callback.hpp:56)
==10465== by 0x182496: boost::unit_test::ut_detail::callback0_impl_t<boost::unit_test::ut_detail::unused, void (*)()>::invoke() (callback.hpp:89)
...
```
The read of the uninitialized variable nLocalServices is triggered by g_connman->GetLocalServices()
in getnetworkinfo(const JSONRPCRequest& request) (net.cpp:462):
```c++
UniValue getnetworkinfo(const JSONRPCRequest& request)
{
...
if(g_connman)
obj.push_back(Pair("localservices", strprintf("%016x", g_connman->GetLocalServices())));
...
}
```
The reason for the uninitialized nLocalServices is that CConnman::Start(...) is not called
by the tests, and hence the initialization normally performed by CConnman::Start(...) is
not done.
This commit adds a method Init(const Options& connOptions) which is called by both the
constructor and CConnman::Start(...). This method initializes nLocalServices and the other
relevant values from the supplied Options object.
2017-08-02 08:02:36 -04:00
|
|
|
|
|
|
|
|
|
void Init(const Options& connOptions) {
|
|
|
|
|
nLocalServices = connOptions.nLocalServices;
|
|
|
|
|
nMaxConnections = connOptions.nMaxConnections;
|
2019-03-09 14:55:06 -03:00
|
|
|
|
m_max_outbound_full_relay = std::min(connOptions.m_max_outbound_full_relay, connOptions.nMaxConnections);
|
|
|
|
|
m_max_outbound_block_relay = connOptions.m_max_outbound_block_relay;
|
2018-08-22 20:29:01 -03:00
|
|
|
|
m_use_addrman_outgoing = connOptions.m_use_addrman_outgoing;
|
[net] Fix use of uninitialized value in getnetworkinfo(const JSONRPCRequest& request)
When running test_bitcoin under Valgrind I found the following issue:
```
$ valgrind src/test/test_bitcoin
...
==10465== Use of uninitialised value of size 8
==10465== at 0x6D09B61: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B1BB: std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<unsigned long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B36C: std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D17699: std::ostream& std::ostream::_M_insert<unsigned long>(unsigned long) (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x4CAAD7: operator<< (ostream:171)
==10465== by 0x4CAAD7: formatValue<ServiceFlags> (tinyformat.h:345)
==10465== by 0x4CAAD7: void tinyformat::detail::FormatArg::formatImpl<ServiceFlags>(std::ostream&, char const*, char const*, int, void const*) (tinyformat.h:523)
==10465== by 0x1924D4: format (tinyformat.h:510)
==10465== by 0x1924D4: tinyformat::detail::formatImpl(std::ostream&, char const*, tinyformat::detail::FormatArg const*, int) (tinyformat.h:803)
==10465== by 0x553A55: vformat (tinyformat.h:947)
==10465== by 0x553A55: format<ServiceFlags> (tinyformat.h:957)
==10465== by 0x553A55: std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > tinyformat::format<ServiceFlags>(char const*, ServiceFlags const&) (tinyformat.h:966)
==10465== by 0x54C952: getnetworkinfo(JSONRPCRequest const&) (net.cpp:462)
==10465== by 0x28EDB5: CallRPC(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) (rpc_tests.cpp:31)
==10465== by 0x293947: rpc_tests::rpc_togglenetwork::test_method() (rpc_tests.cpp:88)
==10465== by 0x2950E5: rpc_tests::rpc_togglenetwork_invoker() (rpc_tests.cpp:84)
==10465== by 0x182496: invoke<void (*)()> (callback.hpp:56)
==10465== by 0x182496: boost::unit_test::ut_detail::callback0_impl_t<boost::unit_test::ut_detail::unused, void (*)()>::invoke() (callback.hpp:89)
...
```
The read of the uninitialized variable nLocalServices is triggered by g_connman->GetLocalServices()
in getnetworkinfo(const JSONRPCRequest& request) (net.cpp:462):
```c++
UniValue getnetworkinfo(const JSONRPCRequest& request)
{
...
if(g_connman)
obj.push_back(Pair("localservices", strprintf("%016x", g_connman->GetLocalServices())));
...
}
```
The reason for the uninitialized nLocalServices is that CConnman::Start(...) is not called
by the tests, and hence the initialization normally performed by CConnman::Start(...) is
not done.
This commit adds a method Init(const Options& connOptions) which is called by both the
constructor and CConnman::Start(...). This method initializes nLocalServices and the other
relevant values from the supplied Options object.
2017-08-02 08:02:36 -04:00
|
|
|
|
nMaxAddnode = connOptions.nMaxAddnode;
|
|
|
|
|
nMaxFeeler = connOptions.nMaxFeeler;
|
2019-03-09 14:55:06 -03:00
|
|
|
|
m_max_outbound = m_max_outbound_full_relay + m_max_outbound_block_relay + nMaxFeeler;
|
[net] Fix use of uninitialized value in getnetworkinfo(const JSONRPCRequest& request)
When running test_bitcoin under Valgrind I found the following issue:
```
$ valgrind src/test/test_bitcoin
...
==10465== Use of uninitialised value of size 8
==10465== at 0x6D09B61: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B1BB: std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<unsigned long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B36C: std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D17699: std::ostream& std::ostream::_M_insert<unsigned long>(unsigned long) (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x4CAAD7: operator<< (ostream:171)
==10465== by 0x4CAAD7: formatValue<ServiceFlags> (tinyformat.h:345)
==10465== by 0x4CAAD7: void tinyformat::detail::FormatArg::formatImpl<ServiceFlags>(std::ostream&, char const*, char const*, int, void const*) (tinyformat.h:523)
==10465== by 0x1924D4: format (tinyformat.h:510)
==10465== by 0x1924D4: tinyformat::detail::formatImpl(std::ostream&, char const*, tinyformat::detail::FormatArg const*, int) (tinyformat.h:803)
==10465== by 0x553A55: vformat (tinyformat.h:947)
==10465== by 0x553A55: format<ServiceFlags> (tinyformat.h:957)
==10465== by 0x553A55: std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > tinyformat::format<ServiceFlags>(char const*, ServiceFlags const&) (tinyformat.h:966)
==10465== by 0x54C952: getnetworkinfo(JSONRPCRequest const&) (net.cpp:462)
==10465== by 0x28EDB5: CallRPC(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) (rpc_tests.cpp:31)
==10465== by 0x293947: rpc_tests::rpc_togglenetwork::test_method() (rpc_tests.cpp:88)
==10465== by 0x2950E5: rpc_tests::rpc_togglenetwork_invoker() (rpc_tests.cpp:84)
==10465== by 0x182496: invoke<void (*)()> (callback.hpp:56)
==10465== by 0x182496: boost::unit_test::ut_detail::callback0_impl_t<boost::unit_test::ut_detail::unused, void (*)()>::invoke() (callback.hpp:89)
...
```
The read of the uninitialized variable nLocalServices is triggered by g_connman->GetLocalServices()
in getnetworkinfo(const JSONRPCRequest& request) (net.cpp:462):
```c++
UniValue getnetworkinfo(const JSONRPCRequest& request)
{
...
if(g_connman)
obj.push_back(Pair("localservices", strprintf("%016x", g_connman->GetLocalServices())));
...
}
```
The reason for the uninitialized nLocalServices is that CConnman::Start(...) is not called
by the tests, and hence the initialization normally performed by CConnman::Start(...) is
not done.
This commit adds a method Init(const Options& connOptions) which is called by both the
constructor and CConnman::Start(...). This method initializes nLocalServices and the other
relevant values from the supplied Options object.
2017-08-02 08:02:36 -04:00
|
|
|
|
nBestHeight = connOptions.nBestHeight;
|
|
|
|
|
clientInterface = connOptions.uiInterface;
|
2017-10-05 14:10:58 -03:00
|
|
|
|
m_banman = connOptions.m_banman;
|
2017-07-06 13:40:09 -04:00
|
|
|
|
m_msgproc = connOptions.m_msgproc;
|
[net] Fix use of uninitialized value in getnetworkinfo(const JSONRPCRequest& request)
When running test_bitcoin under Valgrind I found the following issue:
```
$ valgrind src/test/test_bitcoin
...
==10465== Use of uninitialised value of size 8
==10465== at 0x6D09B61: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B1BB: std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<unsigned long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B36C: std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D17699: std::ostream& std::ostream::_M_insert<unsigned long>(unsigned long) (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x4CAAD7: operator<< (ostream:171)
==10465== by 0x4CAAD7: formatValue<ServiceFlags> (tinyformat.h:345)
==10465== by 0x4CAAD7: void tinyformat::detail::FormatArg::formatImpl<ServiceFlags>(std::ostream&, char const*, char const*, int, void const*) (tinyformat.h:523)
==10465== by 0x1924D4: format (tinyformat.h:510)
==10465== by 0x1924D4: tinyformat::detail::formatImpl(std::ostream&, char const*, tinyformat::detail::FormatArg const*, int) (tinyformat.h:803)
==10465== by 0x553A55: vformat (tinyformat.h:947)
==10465== by 0x553A55: format<ServiceFlags> (tinyformat.h:957)
==10465== by 0x553A55: std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > tinyformat::format<ServiceFlags>(char const*, ServiceFlags const&) (tinyformat.h:966)
==10465== by 0x54C952: getnetworkinfo(JSONRPCRequest const&) (net.cpp:462)
==10465== by 0x28EDB5: CallRPC(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) (rpc_tests.cpp:31)
==10465== by 0x293947: rpc_tests::rpc_togglenetwork::test_method() (rpc_tests.cpp:88)
==10465== by 0x2950E5: rpc_tests::rpc_togglenetwork_invoker() (rpc_tests.cpp:84)
==10465== by 0x182496: invoke<void (*)()> (callback.hpp:56)
==10465== by 0x182496: boost::unit_test::ut_detail::callback0_impl_t<boost::unit_test::ut_detail::unused, void (*)()>::invoke() (callback.hpp:89)
...
```
The read of the uninitialized variable nLocalServices is triggered by g_connman->GetLocalServices()
in getnetworkinfo(const JSONRPCRequest& request) (net.cpp:462):
```c++
UniValue getnetworkinfo(const JSONRPCRequest& request)
{
...
if(g_connman)
obj.push_back(Pair("localservices", strprintf("%016x", g_connman->GetLocalServices())));
...
}
```
The reason for the uninitialized nLocalServices is that CConnman::Start(...) is not called
by the tests, and hence the initialization normally performed by CConnman::Start(...) is
not done.
This commit adds a method Init(const Options& connOptions) which is called by both the
constructor and CConnman::Start(...). This method initializes nLocalServices and the other
relevant values from the supplied Options object.
2017-08-02 08:02:36 -04:00
|
|
|
|
nSendBufferMaxSize = connOptions.nSendBufferMaxSize;
|
|
|
|
|
nReceiveFloodSize = connOptions.nReceiveFloodSize;
|
2018-11-15 20:30:26 -03:00
|
|
|
|
m_peer_connect_timeout = connOptions.m_peer_connect_timeout;
|
2017-11-21 14:02:57 -03:00
|
|
|
|
{
|
|
|
|
|
LOCK(cs_totalBytesSent);
|
|
|
|
|
nMaxOutboundTimeframe = connOptions.nMaxOutboundTimeframe;
|
|
|
|
|
nMaxOutboundLimit = connOptions.nMaxOutboundLimit;
|
|
|
|
|
}
|
[net] Fix use of uninitialized value in getnetworkinfo(const JSONRPCRequest& request)
When running test_bitcoin under Valgrind I found the following issue:
```
$ valgrind src/test/test_bitcoin
...
==10465== Use of uninitialised value of size 8
==10465== at 0x6D09B61: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B1BB: std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<unsigned long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B36C: std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D17699: std::ostream& std::ostream::_M_insert<unsigned long>(unsigned long) (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x4CAAD7: operator<< (ostream:171)
==10465== by 0x4CAAD7: formatValue<ServiceFlags> (tinyformat.h:345)
==10465== by 0x4CAAD7: void tinyformat::detail::FormatArg::formatImpl<ServiceFlags>(std::ostream&, char const*, char const*, int, void const*) (tinyformat.h:523)
==10465== by 0x1924D4: format (tinyformat.h:510)
==10465== by 0x1924D4: tinyformat::detail::formatImpl(std::ostream&, char const*, tinyformat::detail::FormatArg const*, int) (tinyformat.h:803)
==10465== by 0x553A55: vformat (tinyformat.h:947)
==10465== by 0x553A55: format<ServiceFlags> (tinyformat.h:957)
==10465== by 0x553A55: std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > tinyformat::format<ServiceFlags>(char const*, ServiceFlags const&) (tinyformat.h:966)
==10465== by 0x54C952: getnetworkinfo(JSONRPCRequest const&) (net.cpp:462)
==10465== by 0x28EDB5: CallRPC(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) (rpc_tests.cpp:31)
==10465== by 0x293947: rpc_tests::rpc_togglenetwork::test_method() (rpc_tests.cpp:88)
==10465== by 0x2950E5: rpc_tests::rpc_togglenetwork_invoker() (rpc_tests.cpp:84)
==10465== by 0x182496: invoke<void (*)()> (callback.hpp:56)
==10465== by 0x182496: boost::unit_test::ut_detail::callback0_impl_t<boost::unit_test::ut_detail::unused, void (*)()>::invoke() (callback.hpp:89)
...
```
The read of the uninitialized variable nLocalServices is triggered by g_connman->GetLocalServices()
in getnetworkinfo(const JSONRPCRequest& request) (net.cpp:462):
```c++
UniValue getnetworkinfo(const JSONRPCRequest& request)
{
...
if(g_connman)
obj.push_back(Pair("localservices", strprintf("%016x", g_connman->GetLocalServices())));
...
}
```
The reason for the uninitialized nLocalServices is that CConnman::Start(...) is not called
by the tests, and hence the initialization normally performed by CConnman::Start(...) is
not done.
This commit adds a method Init(const Options& connOptions) which is called by both the
constructor and CConnman::Start(...). This method initializes nLocalServices and the other
relevant values from the supplied Options object.
2017-08-02 08:02:36 -04:00
|
|
|
|
vWhitelistedRange = connOptions.vWhitelistedRange;
|
2017-11-21 14:02:57 -03:00
|
|
|
|
{
|
|
|
|
|
LOCK(cs_vAddedNodes);
|
|
|
|
|
vAddedNodes = connOptions.m_added_nodes;
|
|
|
|
|
}
|
[net] Fix use of uninitialized value in getnetworkinfo(const JSONRPCRequest& request)
When running test_bitcoin under Valgrind I found the following issue:
```
$ valgrind src/test/test_bitcoin
...
==10465== Use of uninitialised value of size 8
==10465== at 0x6D09B61: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B1BB: std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<unsigned long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B36C: std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D17699: std::ostream& std::ostream::_M_insert<unsigned long>(unsigned long) (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x4CAAD7: operator<< (ostream:171)
==10465== by 0x4CAAD7: formatValue<ServiceFlags> (tinyformat.h:345)
==10465== by 0x4CAAD7: void tinyformat::detail::FormatArg::formatImpl<ServiceFlags>(std::ostream&, char const*, char const*, int, void const*) (tinyformat.h:523)
==10465== by 0x1924D4: format (tinyformat.h:510)
==10465== by 0x1924D4: tinyformat::detail::formatImpl(std::ostream&, char const*, tinyformat::detail::FormatArg const*, int) (tinyformat.h:803)
==10465== by 0x553A55: vformat (tinyformat.h:947)
==10465== by 0x553A55: format<ServiceFlags> (tinyformat.h:957)
==10465== by 0x553A55: std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > tinyformat::format<ServiceFlags>(char const*, ServiceFlags const&) (tinyformat.h:966)
==10465== by 0x54C952: getnetworkinfo(JSONRPCRequest const&) (net.cpp:462)
==10465== by 0x28EDB5: CallRPC(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) (rpc_tests.cpp:31)
==10465== by 0x293947: rpc_tests::rpc_togglenetwork::test_method() (rpc_tests.cpp:88)
==10465== by 0x2950E5: rpc_tests::rpc_togglenetwork_invoker() (rpc_tests.cpp:84)
==10465== by 0x182496: invoke<void (*)()> (callback.hpp:56)
==10465== by 0x182496: boost::unit_test::ut_detail::callback0_impl_t<boost::unit_test::ut_detail::unused, void (*)()>::invoke() (callback.hpp:89)
...
```
The read of the uninitialized variable nLocalServices is triggered by g_connman->GetLocalServices()
in getnetworkinfo(const JSONRPCRequest& request) (net.cpp:462):
```c++
UniValue getnetworkinfo(const JSONRPCRequest& request)
{
...
if(g_connman)
obj.push_back(Pair("localservices", strprintf("%016x", g_connman->GetLocalServices())));
...
}
```
The reason for the uninitialized nLocalServices is that CConnman::Start(...) is not called
by the tests, and hence the initialization normally performed by CConnman::Start(...) is
not done.
This commit adds a method Init(const Options& connOptions) which is called by both the
constructor and CConnman::Start(...). This method initializes nLocalServices and the other
relevant values from the supplied Options object.
2017-08-02 08:02:36 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-09 03:07:47 -04:00
|
|
|
|
CConnman(uint64_t seed0, uint64_t seed1, bool network_active = true);
|
2016-04-16 15:47:18 -03:00
|
|
|
|
~CConnman();
|
[net] Fix use of uninitialized value in getnetworkinfo(const JSONRPCRequest& request)
When running test_bitcoin under Valgrind I found the following issue:
```
$ valgrind src/test/test_bitcoin
...
==10465== Use of uninitialised value of size 8
==10465== at 0x6D09B61: ??? (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B1BB: std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<unsigned long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D0B36C: std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, unsigned long) const (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x6D17699: std::ostream& std::ostream::_M_insert<unsigned long>(unsigned long) (in /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21)
==10465== by 0x4CAAD7: operator<< (ostream:171)
==10465== by 0x4CAAD7: formatValue<ServiceFlags> (tinyformat.h:345)
==10465== by 0x4CAAD7: void tinyformat::detail::FormatArg::formatImpl<ServiceFlags>(std::ostream&, char const*, char const*, int, void const*) (tinyformat.h:523)
==10465== by 0x1924D4: format (tinyformat.h:510)
==10465== by 0x1924D4: tinyformat::detail::formatImpl(std::ostream&, char const*, tinyformat::detail::FormatArg const*, int) (tinyformat.h:803)
==10465== by 0x553A55: vformat (tinyformat.h:947)
==10465== by 0x553A55: format<ServiceFlags> (tinyformat.h:957)
==10465== by 0x553A55: std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > tinyformat::format<ServiceFlags>(char const*, ServiceFlags const&) (tinyformat.h:966)
==10465== by 0x54C952: getnetworkinfo(JSONRPCRequest const&) (net.cpp:462)
==10465== by 0x28EDB5: CallRPC(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) (rpc_tests.cpp:31)
==10465== by 0x293947: rpc_tests::rpc_togglenetwork::test_method() (rpc_tests.cpp:88)
==10465== by 0x2950E5: rpc_tests::rpc_togglenetwork_invoker() (rpc_tests.cpp:84)
==10465== by 0x182496: invoke<void (*)()> (callback.hpp:56)
==10465== by 0x182496: boost::unit_test::ut_detail::callback0_impl_t<boost::unit_test::ut_detail::unused, void (*)()>::invoke() (callback.hpp:89)
...
```
The read of the uninitialized variable nLocalServices is triggered by g_connman->GetLocalServices()
in getnetworkinfo(const JSONRPCRequest& request) (net.cpp:462):
```c++
UniValue getnetworkinfo(const JSONRPCRequest& request)
{
...
if(g_connman)
obj.push_back(Pair("localservices", strprintf("%016x", g_connman->GetLocalServices())));
...
}
```
The reason for the uninitialized nLocalServices is that CConnman::Start(...) is not called
by the tests, and hence the initialization normally performed by CConnman::Start(...) is
not done.
This commit adds a method Init(const Options& connOptions) which is called by both the
constructor and CConnman::Start(...). This method initializes nLocalServices and the other
relevant values from the supplied Options object.
2017-08-02 08:02:36 -04:00
|
|
|
|
bool Start(CScheduler& scheduler, const Options& options);
|
2019-01-19 10:49:29 -03:00
|
|
|
|
|
2020-03-28 11:44:53 -03:00
|
|
|
|
void StopThreads();
|
|
|
|
|
void StopNodes();
|
|
|
|
|
void Stop()
|
|
|
|
|
{
|
|
|
|
|
StopThreads();
|
|
|
|
|
StopNodes();
|
|
|
|
|
};
|
2019-01-19 10:49:29 -03:00
|
|
|
|
|
2016-12-27 19:12:44 -03:00
|
|
|
|
void Interrupt();
|
2013-03-25 22:38:24 -03:00
|
|
|
|
bool GetNetworkActive() const { return fNetworkActive; };
|
2018-08-22 20:29:01 -03:00
|
|
|
|
bool GetUseAddrmanOutgoing() const { return m_use_addrman_outgoing; };
|
2013-03-25 22:33:25 -03:00
|
|
|
|
void SetNetworkActive(bool active);
|
2020-08-10 15:21:07 -04:00
|
|
|
|
void OpenNetworkConnection(const CAddress& addrConnect, bool fCountFailure, CSemaphoreGrant* grantOutbound, const char* strDest, ConnectionType conn_type);
|
2016-04-17 21:21:58 -03:00
|
|
|
|
bool CheckIncomingNonce(uint64_t nonce);
|
2016-04-16 16:46:00 -03:00
|
|
|
|
|
2016-04-16 20:13:12 -03:00
|
|
|
|
bool ForNode(NodeId id, std::function<bool(CNode* pnode)> func);
|
2016-06-19 21:42:15 -04:00
|
|
|
|
|
2016-11-10 22:17:30 -03:00
|
|
|
|
void PushMessage(CNode* pnode, CSerializedNetMsg&& msg);
|
2016-09-12 21:00:33 -03:00
|
|
|
|
|
2020-09-19 05:52:27 -03:00
|
|
|
|
using NodeFn = std::function<void(CNode*)>;
|
|
|
|
|
void ForEachNode(const NodeFn& func)
|
2016-06-19 21:42:15 -04:00
|
|
|
|
{
|
|
|
|
|
LOCK(cs_vNodes);
|
2017-01-20 22:34:57 -03:00
|
|
|
|
for (auto&& node : vNodes) {
|
|
|
|
|
if (NodeFullyConnected(node))
|
|
|
|
|
func(node);
|
|
|
|
|
}
|
2016-06-19 21:42:15 -04:00
|
|
|
|
};
|
|
|
|
|
|
2020-09-19 05:52:27 -03:00
|
|
|
|
void ForEachNode(const NodeFn& func) const
|
2016-06-19 21:42:15 -04:00
|
|
|
|
{
|
|
|
|
|
LOCK(cs_vNodes);
|
2017-01-20 22:34:57 -03:00
|
|
|
|
for (auto&& node : vNodes) {
|
|
|
|
|
if (NodeFullyConnected(node))
|
|
|
|
|
func(node);
|
|
|
|
|
}
|
2016-06-19 21:42:15 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename Callable, typename CallableAfter>
|
|
|
|
|
void ForEachNodeThen(Callable&& pre, CallableAfter&& post)
|
|
|
|
|
{
|
|
|
|
|
LOCK(cs_vNodes);
|
2017-01-20 22:34:57 -03:00
|
|
|
|
for (auto&& node : vNodes) {
|
|
|
|
|
if (NodeFullyConnected(node))
|
|
|
|
|
pre(node);
|
|
|
|
|
}
|
2016-06-19 21:42:15 -04:00
|
|
|
|
post();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename Callable, typename CallableAfter>
|
|
|
|
|
void ForEachNodeThen(Callable&& pre, CallableAfter&& post) const
|
|
|
|
|
{
|
|
|
|
|
LOCK(cs_vNodes);
|
2017-01-20 22:34:57 -03:00
|
|
|
|
for (auto&& node : vNodes) {
|
|
|
|
|
if (NodeFullyConnected(node))
|
|
|
|
|
pre(node);
|
|
|
|
|
}
|
2016-06-19 21:42:15 -04:00
|
|
|
|
post();
|
|
|
|
|
};
|
2016-04-16 20:13:12 -03:00
|
|
|
|
|
2016-04-16 18:43:11 -03:00
|
|
|
|
// Addrman functions
|
|
|
|
|
void SetServices(const CService &addr, ServiceFlags nServices);
|
|
|
|
|
void MarkAddressGood(const CAddress& addr);
|
2020-07-23 13:10:35 -04:00
|
|
|
|
bool AddNewAddresses(const std::vector<CAddress>& vAddr, const CAddress& addrFrom, int64_t nTimePenalty = 0);
|
2020-07-23 10:34:40 -04:00
|
|
|
|
std::vector<CAddress> GetAddresses(size_t max_addresses, size_t max_pct);
|
2020-05-16 21:05:44 -04:00
|
|
|
|
/**
|
|
|
|
|
* Cache is used to minimize topology leaks, so it should
|
|
|
|
|
* be used for all non-trusted calls, for example, p2p.
|
2020-06-03 11:51:34 -04:00
|
|
|
|
* A non-malicious call (from RPC or a peer with addr permission) should
|
2020-05-16 21:05:44 -04:00
|
|
|
|
* call the function without a parameter to avoid using the cache.
|
|
|
|
|
*/
|
2020-08-11 05:41:26 -04:00
|
|
|
|
std::vector<CAddress> GetAddresses(CNode& requestor, size_t max_addresses, size_t max_pct);
|
2016-04-16 18:43:11 -03:00
|
|
|
|
|
2019-03-09 14:55:06 -03:00
|
|
|
|
// This allows temporarily exceeding m_max_outbound_full_relay, with the goal of finding
|
2017-10-23 14:36:15 -03:00
|
|
|
|
// a peer that is better than all our current peers.
|
|
|
|
|
void SetTryNewOutboundPeer(bool flag);
|
|
|
|
|
bool GetTryNewOutboundPeer();
|
|
|
|
|
|
|
|
|
|
// Return the number of outbound peers we have in excess of our target (eg,
|
|
|
|
|
// if we previously called SetTryNewOutboundPeer(true), and have since set
|
|
|
|
|
// to false, we may have extra peers that we wish to disconnect). This may
|
|
|
|
|
// return a value less than (num_outbound_connections - num_outbound_slots)
|
|
|
|
|
// in cases where some outbound connections are not yet fully connected, or
|
|
|
|
|
// not yet fully disconnected.
|
|
|
|
|
int GetExtraOutboundCount();
|
|
|
|
|
|
2016-04-16 19:12:58 -03:00
|
|
|
|
bool AddNode(const std::string& node);
|
|
|
|
|
bool RemoveAddedNode(const std::string& node);
|
|
|
|
|
std::vector<AddedNodeInfo> GetAddedNodeInfo();
|
|
|
|
|
|
2016-04-16 19:30:03 -03:00
|
|
|
|
size_t GetNodeCount(NumConnections num);
|
|
|
|
|
void GetNodeStats(std::vector<CNodeStats>& vstats);
|
|
|
|
|
bool DisconnectNode(const std::string& node);
|
2017-10-04 19:25:34 -03:00
|
|
|
|
bool DisconnectNode(const CSubNet& subnet);
|
|
|
|
|
bool DisconnectNode(const CNetAddr& addr);
|
2016-04-16 19:30:03 -03:00
|
|
|
|
bool DisconnectNode(NodeId id);
|
|
|
|
|
|
2019-09-10 14:09:12 -03:00
|
|
|
|
//! Used to convey which local services we are offering peers during node
|
|
|
|
|
//! connection.
|
|
|
|
|
//!
|
|
|
|
|
//! The data returned by this is used in CNode construction,
|
|
|
|
|
//! which is used to advertise which services we are offering
|
|
|
|
|
//! that peer during `net_processing.cpp:PushNodeVersion()`.
|
2016-04-19 01:04:58 -03:00
|
|
|
|
ServiceFlags GetLocalServices() const;
|
|
|
|
|
|
2016-04-18 22:44:42 -03:00
|
|
|
|
//!set the max outbound target in bytes
|
|
|
|
|
void SetMaxOutboundTarget(uint64_t limit);
|
|
|
|
|
uint64_t GetMaxOutboundTarget();
|
|
|
|
|
|
|
|
|
|
//!set the timeframe for the max outbound target
|
|
|
|
|
void SetMaxOutboundTimeframe(uint64_t timeframe);
|
|
|
|
|
uint64_t GetMaxOutboundTimeframe();
|
|
|
|
|
|
2019-01-25 00:44:54 -03:00
|
|
|
|
//! check if the outbound target is reached
|
|
|
|
|
//! if param historicalBlockServingLimit is set true, the function will
|
|
|
|
|
//! response true if the limit for serving historical blocks has been reached
|
2016-04-18 22:44:42 -03:00
|
|
|
|
bool OutboundTargetReached(bool historicalBlockServingLimit);
|
|
|
|
|
|
2019-01-25 00:44:54 -03:00
|
|
|
|
//! response the bytes left in the current max outbound cycle
|
|
|
|
|
//! in case of no limit, it will always response 0
|
2016-04-18 22:44:42 -03:00
|
|
|
|
uint64_t GetOutboundTargetBytesLeft();
|
|
|
|
|
|
2019-01-25 00:44:54 -03:00
|
|
|
|
//! response the time in second left in the current max outbound cycle
|
|
|
|
|
//! in case of no limit, it will always response 0
|
2016-04-18 22:44:42 -03:00
|
|
|
|
uint64_t GetMaxOutboundTimeLeftInCycle();
|
|
|
|
|
|
|
|
|
|
uint64_t GetTotalBytesRecv();
|
|
|
|
|
uint64_t GetTotalBytesSent();
|
|
|
|
|
|
2016-05-24 16:42:17 -04:00
|
|
|
|
void SetBestHeight(int height);
|
|
|
|
|
int GetBestHeight() const;
|
|
|
|
|
|
2016-09-09 07:48:10 -03:00
|
|
|
|
/** Get a unique deterministic randomizer. */
|
2017-01-23 22:32:52 -03:00
|
|
|
|
CSipHasher GetDeterministicRandomizer(uint64_t id) const;
|
2016-05-24 16:42:17 -04:00
|
|
|
|
|
2016-12-31 04:05:09 -03:00
|
|
|
|
unsigned int GetReceiveFloodSize() const;
|
2017-01-14 21:00:00 -03:00
|
|
|
|
|
|
|
|
|
void WakeMessageHandler();
|
2018-05-21 15:02:40 -04:00
|
|
|
|
|
|
|
|
|
/** Attempts to obfuscate tx time through exponentially distributed emitting.
|
|
|
|
|
Works assuming that a single interval is used.
|
|
|
|
|
Variable intervals will result in privacy decrease.
|
|
|
|
|
*/
|
|
|
|
|
int64_t PoissonNextSendInbound(int64_t now, int average_interval_seconds);
|
|
|
|
|
|
2020-01-29 18:55:40 -03:00
|
|
|
|
void SetAsmap(std::vector<bool> asmap) { addrman.m_asmap = std::move(asmap); }
|
2019-12-24 15:18:44 -03:00
|
|
|
|
|
2016-04-16 15:47:18 -03:00
|
|
|
|
private:
|
2016-04-16 16:46:00 -03:00
|
|
|
|
struct ListenSocket {
|
2019-06-20 05:37:51 -04:00
|
|
|
|
public:
|
2016-04-16 16:46:00 -03:00
|
|
|
|
SOCKET socket;
|
2019-06-20 05:37:51 -04:00
|
|
|
|
inline void AddSocketPermissionFlags(NetPermissionFlags& flags) const { NetPermissions::AddFlag(flags, m_permissions); }
|
|
|
|
|
ListenSocket(SOCKET socket_, NetPermissionFlags permissions_) : socket(socket_), m_permissions(permissions_) {}
|
|
|
|
|
private:
|
|
|
|
|
NetPermissionFlags m_permissions;
|
2016-04-16 16:46:00 -03:00
|
|
|
|
};
|
|
|
|
|
|
2020-04-11 11:47:17 -04:00
|
|
|
|
bool BindListenPort(const CService& bindAddr, bilingual_str& strError, NetPermissionFlags permissions);
|
2019-06-20 05:37:51 -04:00
|
|
|
|
bool Bind(const CService& addr, unsigned int flags, NetPermissionFlags permissions);
|
2020-09-29 12:03:43 -03:00
|
|
|
|
bool InitBinds(
|
|
|
|
|
const std::vector<CService>& binds,
|
|
|
|
|
const std::vector<NetWhitebindPermissions>& whiteBinds,
|
|
|
|
|
const std::vector<CService>& onion_binds);
|
|
|
|
|
|
2016-04-16 15:47:18 -03:00
|
|
|
|
void ThreadOpenAddedConnections();
|
2020-07-17 17:56:34 -04:00
|
|
|
|
void AddAddrFetch(const std::string& strDest);
|
|
|
|
|
void ProcessAddrFetch();
|
2017-06-15 03:39:07 -04:00
|
|
|
|
void ThreadOpenConnections(std::vector<std::string> connect);
|
2016-04-16 15:47:18 -03:00
|
|
|
|
void ThreadMessageHandler();
|
|
|
|
|
void AcceptConnection(const ListenSocket& hListenSocket);
|
2018-09-24 17:36:58 -03:00
|
|
|
|
void DisconnectNodes();
|
2018-09-24 17:30:53 -03:00
|
|
|
|
void NotifyNumConnectionsChanged();
|
2018-09-24 17:43:00 -03:00
|
|
|
|
void InactivityCheck(CNode *pnode);
|
2018-09-25 16:32:07 -03:00
|
|
|
|
bool GenerateSelectSet(std::set<SOCKET> &recv_set, std::set<SOCKET> &send_set, std::set<SOCKET> &error_set);
|
2018-09-26 22:51:46 -03:00
|
|
|
|
void SocketEvents(std::set<SOCKET> &recv_set, std::set<SOCKET> &send_set, std::set<SOCKET> &error_set);
|
2018-09-24 18:03:17 -03:00
|
|
|
|
void SocketHandler();
|
2016-04-16 15:47:18 -03:00
|
|
|
|
void ThreadSocketHandler();
|
|
|
|
|
void ThreadDNSAddressSeed();
|
2016-04-16 16:46:00 -03:00
|
|
|
|
|
2017-01-23 22:32:52 -03:00
|
|
|
|
uint64_t CalculateKeyedNetGroup(const CAddress& ad) const;
|
2016-09-09 07:48:10 -03:00
|
|
|
|
|
2016-04-16 20:13:12 -03:00
|
|
|
|
CNode* FindNode(const CNetAddr& ip);
|
|
|
|
|
CNode* FindNode(const CSubNet& subNet);
|
|
|
|
|
CNode* FindNode(const std::string& addrName);
|
|
|
|
|
CNode* FindNode(const CService& addr);
|
|
|
|
|
|
|
|
|
|
bool AttemptToEvictConnection();
|
2020-04-29 20:33:06 -04:00
|
|
|
|
CNode* ConnectNode(CAddress addrConnect, const char *pszDest, bool fCountFailure, ConnectionType conn_type);
|
2019-06-20 05:37:51 -04:00
|
|
|
|
void AddWhitelistPermissionFlags(NetPermissionFlags& flags, const CNetAddr &addr) const;
|
2016-04-17 19:34:32 -03:00
|
|
|
|
|
2016-05-24 18:59:16 -04:00
|
|
|
|
void DeleteNode(CNode* pnode);
|
2016-04-17 21:20:34 -03:00
|
|
|
|
|
|
|
|
|
NodeId GetNewNodeId();
|
|
|
|
|
|
2017-01-23 22:32:52 -03:00
|
|
|
|
size_t SocketSendData(CNode *pnode) const;
|
2016-04-16 18:43:11 -03:00
|
|
|
|
void DumpAddresses();
|
2016-04-16 16:59:10 -03:00
|
|
|
|
|
2016-04-18 22:44:42 -03:00
|
|
|
|
// Network stats
|
|
|
|
|
void RecordBytesRecv(uint64_t bytes);
|
|
|
|
|
void RecordBytesSent(uint64_t bytes);
|
|
|
|
|
|
2020-09-12 12:03:06 -03:00
|
|
|
|
/**
|
|
|
|
|
* Return vector of current BLOCK_RELAY peers.
|
|
|
|
|
*/
|
|
|
|
|
std::vector<CAddress> GetCurrentBlockRelayOnlyConns() const;
|
|
|
|
|
|
2017-01-20 22:34:57 -03:00
|
|
|
|
// Whether the node should be passed out in ForEach* callbacks
|
|
|
|
|
static bool NodeFullyConnected(const CNode* pnode);
|
|
|
|
|
|
2016-04-18 22:44:42 -03:00
|
|
|
|
// Network usage totals
|
2020-01-07 13:14:15 -03:00
|
|
|
|
RecursiveMutex cs_totalBytesRecv;
|
|
|
|
|
RecursiveMutex cs_totalBytesSent;
|
2020-01-10 16:55:10 -03:00
|
|
|
|
uint64_t nTotalBytesRecv GUARDED_BY(cs_totalBytesRecv) {0};
|
|
|
|
|
uint64_t nTotalBytesSent GUARDED_BY(cs_totalBytesSent) {0};
|
2016-04-18 22:44:42 -03:00
|
|
|
|
|
|
|
|
|
// outbound limit & stats
|
2017-11-23 03:55:45 -03:00
|
|
|
|
uint64_t nMaxOutboundTotalBytesSentInCycle GUARDED_BY(cs_totalBytesSent);
|
|
|
|
|
uint64_t nMaxOutboundCycleStartTime GUARDED_BY(cs_totalBytesSent);
|
|
|
|
|
uint64_t nMaxOutboundLimit GUARDED_BY(cs_totalBytesSent);
|
|
|
|
|
uint64_t nMaxOutboundTimeframe GUARDED_BY(cs_totalBytesSent);
|
2016-04-18 22:44:42 -03:00
|
|
|
|
|
2018-11-15 20:30:26 -03:00
|
|
|
|
// P2P timeout in seconds
|
|
|
|
|
int64_t m_peer_connect_timeout;
|
|
|
|
|
|
2016-04-17 19:34:32 -03:00
|
|
|
|
// Whitelisted ranges. Any node connecting from these is automatically
|
|
|
|
|
// whitelisted (as well as those connecting to whitelisted binds).
|
2019-06-20 05:37:51 -04:00
|
|
|
|
std::vector<NetWhitelistPermissions> vWhitelistedRange;
|
2016-04-17 19:34:32 -03:00
|
|
|
|
|
2019-01-05 08:02:12 -03:00
|
|
|
|
unsigned int nSendBufferMaxSize{0};
|
|
|
|
|
unsigned int nReceiveFloodSize{0};
|
2016-04-19 01:01:19 -03:00
|
|
|
|
|
2016-04-16 16:46:00 -03:00
|
|
|
|
std::vector<ListenSocket> vhListenSocket;
|
2019-01-05 08:02:12 -03:00
|
|
|
|
std::atomic<bool> fNetworkActive{true};
|
|
|
|
|
bool fAddressesInitialized{false};
|
2016-04-16 18:43:11 -03:00
|
|
|
|
CAddrMan addrman;
|
2020-07-17 17:56:34 -04:00
|
|
|
|
std::deque<std::string> m_addr_fetches GUARDED_BY(m_addr_fetches_mutex);
|
|
|
|
|
RecursiveMutex m_addr_fetches_mutex;
|
2017-11-23 03:55:45 -03:00
|
|
|
|
std::vector<std::string> vAddedNodes GUARDED_BY(cs_vAddedNodes);
|
2020-01-07 13:14:15 -03:00
|
|
|
|
RecursiveMutex cs_vAddedNodes;
|
2019-01-19 10:49:29 -03:00
|
|
|
|
std::vector<CNode*> vNodes GUARDED_BY(cs_vNodes);
|
2016-05-27 01:00:01 -04:00
|
|
|
|
std::list<CNode*> vNodesDisconnected;
|
2020-01-07 13:14:15 -03:00
|
|
|
|
mutable RecursiveMutex cs_vNodes;
|
2019-01-05 08:02:12 -03:00
|
|
|
|
std::atomic<NodeId> nLastNodeId{0};
|
|
|
|
|
unsigned int nPrevNodeCount{0};
|
2016-04-19 01:04:58 -03:00
|
|
|
|
|
2020-05-16 21:05:44 -04:00
|
|
|
|
/**
|
|
|
|
|
* Cache responses to addr requests to minimize privacy leak.
|
|
|
|
|
* Attack example: scraping addrs in real-time may allow an attacker
|
|
|
|
|
* to infer new connections of the victim by detecting new records
|
|
|
|
|
* with fresh timestamps (per self-announcement).
|
|
|
|
|
*/
|
|
|
|
|
struct CachedAddrResponse {
|
|
|
|
|
std::vector<CAddress> m_addrs_response_cache;
|
2020-08-11 06:39:56 -04:00
|
|
|
|
std::chrono::microseconds m_cache_entry_expiration{0};
|
2020-05-16 21:05:44 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Addr responses stored in different caches
|
2020-08-11 05:41:26 -04:00
|
|
|
|
* per (network, local socket) prevent cross-network node identification.
|
2020-05-16 21:05:44 -04:00
|
|
|
|
* If a node for example is multi-homed under Tor and IPv6,
|
|
|
|
|
* a single cache (or no cache at all) would let an attacker
|
|
|
|
|
* to easily detect that it is the same node by comparing responses.
|
2020-08-11 05:41:26 -04:00
|
|
|
|
* Indexing by local socket prevents leakage when a node has multiple
|
|
|
|
|
* listening addresses on the same network.
|
|
|
|
|
*
|
2020-08-11 06:39:56 -04:00
|
|
|
|
* The used memory equals to 1000 CAddress records (or around 40 bytes) per
|
2020-05-16 21:05:44 -04:00
|
|
|
|
* distinct Network (up to 5) we have/had an inbound peer from,
|
2020-08-11 06:39:56 -04:00
|
|
|
|
* resulting in at most ~196 KB. Every separate local socket may
|
|
|
|
|
* add up to ~196 KB extra.
|
2020-05-16 21:05:44 -04:00
|
|
|
|
*/
|
2020-08-11 05:41:26 -04:00
|
|
|
|
std::map<uint64_t, CachedAddrResponse> m_addr_response_caches;
|
2020-05-16 21:05:44 -04:00
|
|
|
|
|
2019-09-10 14:09:12 -03:00
|
|
|
|
/**
|
|
|
|
|
* Services this instance offers.
|
|
|
|
|
*
|
|
|
|
|
* This data is replicated in each CNode instance we create during peer
|
|
|
|
|
* connection (in ConnectNode()) under a member also called
|
|
|
|
|
* nLocalServices.
|
|
|
|
|
*
|
|
|
|
|
* This data is not marked const, but after being set it should not
|
|
|
|
|
* change. See the note in CNode::nLocalServices documentation.
|
|
|
|
|
*
|
|
|
|
|
* \sa CNode::nLocalServices
|
|
|
|
|
*/
|
2016-04-19 01:04:58 -03:00
|
|
|
|
ServiceFlags nLocalServices;
|
|
|
|
|
|
2017-08-09 10:07:22 -04:00
|
|
|
|
std::unique_ptr<CSemaphore> semOutbound;
|
|
|
|
|
std::unique_ptr<CSemaphore> semAddnode;
|
2016-05-22 03:52:03 -04:00
|
|
|
|
int nMaxConnections;
|
2019-03-09 14:55:06 -03:00
|
|
|
|
|
|
|
|
|
// How many full-relay (tx, block, addr) outbound peers we want
|
|
|
|
|
int m_max_outbound_full_relay;
|
|
|
|
|
|
|
|
|
|
// How many block-relay only outbound peers we want
|
|
|
|
|
// We do not relay tx or addr messages with these peers
|
|
|
|
|
int m_max_outbound_block_relay;
|
|
|
|
|
|
2016-12-11 01:39:26 -03:00
|
|
|
|
int nMaxAddnode;
|
2016-08-31 14:17:28 -03:00
|
|
|
|
int nMaxFeeler;
|
2019-03-09 14:55:06 -03:00
|
|
|
|
int m_max_outbound;
|
2018-08-22 20:29:01 -03:00
|
|
|
|
bool m_use_addrman_outgoing;
|
2016-05-24 16:42:17 -04:00
|
|
|
|
std::atomic<int> nBestHeight;
|
2016-05-25 21:26:46 -04:00
|
|
|
|
CClientUIInterface* clientInterface;
|
2017-07-06 13:40:09 -04:00
|
|
|
|
NetEventsInterface* m_msgproc;
|
2020-07-14 05:24:43 -04:00
|
|
|
|
/** Pointer to this node's banman. May be nullptr - check existence before dereferencing. */
|
2017-10-05 14:10:58 -03:00
|
|
|
|
BanMan* m_banman;
|
2016-09-09 07:48:10 -03:00
|
|
|
|
|
|
|
|
|
/** SipHasher seeds for deterministic randomness */
|
|
|
|
|
const uint64_t nSeed0, nSeed1;
|
2016-12-27 19:12:44 -03:00
|
|
|
|
|
2016-12-31 04:05:26 -03:00
|
|
|
|
/** flag for waking the message processor. */
|
2019-05-29 23:44:02 -04:00
|
|
|
|
bool fMsgProcWake GUARDED_BY(mutexMsgProc);
|
2016-12-31 04:05:26 -03:00
|
|
|
|
|
2016-12-27 19:12:44 -03:00
|
|
|
|
std::condition_variable condMsgProc;
|
2017-11-03 08:49:16 -03:00
|
|
|
|
Mutex mutexMsgProc;
|
2019-01-05 08:02:12 -03:00
|
|
|
|
std::atomic<bool> flagInterruptMsgProc{false};
|
2016-12-27 19:12:44 -03:00
|
|
|
|
|
|
|
|
|
CThreadInterrupt interruptNet;
|
|
|
|
|
|
|
|
|
|
std::thread threadDNSAddressSeed;
|
|
|
|
|
std::thread threadSocketHandler;
|
|
|
|
|
std::thread threadOpenAddedConnections;
|
|
|
|
|
std::thread threadOpenConnections;
|
|
|
|
|
std::thread threadMessageHandler;
|
2017-10-23 14:36:15 -03:00
|
|
|
|
|
|
|
|
|
/** flag for deciding to connect to an extra outbound peer,
|
2019-03-09 14:55:06 -03:00
|
|
|
|
* in excess of m_max_outbound_full_relay
|
2017-10-23 14:36:15 -03:00
|
|
|
|
* This takes the place of a feeler connection */
|
|
|
|
|
std::atomic_bool m_try_another_outbound_peer;
|
2017-10-24 05:26:05 -03:00
|
|
|
|
|
2018-07-16 17:07:52 -04:00
|
|
|
|
std::atomic<int64_t> m_next_send_inv_to_incoming{0};
|
2018-05-21 15:02:40 -04:00
|
|
|
|
|
2017-10-24 05:26:05 -03:00
|
|
|
|
friend struct CConnmanTest;
|
2020-04-03 20:30:51 -03:00
|
|
|
|
friend struct ConnmanTestMsg;
|
2016-04-16 15:47:18 -03:00
|
|
|
|
};
|
2018-02-07 19:42:39 -03:00
|
|
|
|
void Discover();
|
2018-02-07 19:20:16 -03:00
|
|
|
|
void StartMapPort();
|
|
|
|
|
void InterruptMapPort();
|
|
|
|
|
void StopMapPort();
|
2019-12-29 18:04:02 -03:00
|
|
|
|
uint16_t GetListenPort();
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
2017-07-06 13:40:09 -04:00
|
|
|
|
/**
|
|
|
|
|
* Interface for message handling
|
|
|
|
|
*/
|
|
|
|
|
class NetEventsInterface
|
2013-06-05 23:21:41 -04:00
|
|
|
|
{
|
2017-07-06 13:40:09 -04:00
|
|
|
|
public:
|
2017-07-06 14:08:23 -04:00
|
|
|
|
virtual bool ProcessMessages(CNode* pnode, std::atomic<bool>& interrupt) = 0;
|
2018-07-01 22:26:47 -04:00
|
|
|
|
virtual bool SendMessages(CNode* pnode) = 0;
|
2017-07-06 14:08:23 -04:00
|
|
|
|
virtual void InitializeNode(CNode* pnode) = 0;
|
2017-07-06 13:40:09 -04:00
|
|
|
|
virtual void FinalizeNode(NodeId id, bool& update_connection_time) = 0;
|
2018-03-14 02:04:42 -03:00
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
/**
|
|
|
|
|
* Protected destructor so that instances can only be deleted by derived classes.
|
|
|
|
|
* If that restriction is no longer desired, this should be made public and virtual.
|
|
|
|
|
*/
|
|
|
|
|
~NetEventsInterface() = default;
|
2013-06-05 23:21:41 -04:00
|
|
|
|
};
|
|
|
|
|
|
2012-02-12 09:45:24 -03:00
|
|
|
|
enum
|
|
|
|
|
{
|
2012-05-10 14:35:13 -04:00
|
|
|
|
LOCAL_NONE, // unknown
|
|
|
|
|
LOCAL_IF, // address a local interface listens on
|
2012-05-11 09:28:59 -04:00
|
|
|
|
LOCAL_BIND, // address explicit bound to
|
2012-05-10 14:35:13 -04:00
|
|
|
|
LOCAL_UPNP, // address reported by UPnP
|
|
|
|
|
LOCAL_MANUAL, // address explicitly specified (-externalip=)
|
2012-02-19 16:44:35 -03:00
|
|
|
|
|
|
|
|
|
LOCAL_MAX
|
2012-02-12 09:45:24 -03:00
|
|
|
|
};
|
|
|
|
|
|
2014-07-21 02:32:25 -04:00
|
|
|
|
bool IsPeerAddrLocalGood(CNode *pnode);
|
2016-02-12 15:35:32 -03:00
|
|
|
|
void AdvertiseLocal(CNode *pnode);
|
2019-01-09 21:41:37 -03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Mark a network as reachable or unreachable (no automatic connects to it)
|
|
|
|
|
* @note Networks are reachable by default
|
|
|
|
|
*/
|
|
|
|
|
void SetReachable(enum Network net, bool reachable);
|
|
|
|
|
/** @returns true if the network is reachable, false otherwise */
|
|
|
|
|
bool IsReachable(enum Network net);
|
|
|
|
|
/** @returns true if the address is in a reachable network, false otherwise */
|
|
|
|
|
bool IsReachable(const CNetAddr& addr);
|
|
|
|
|
|
2012-05-10 14:35:13 -04:00
|
|
|
|
bool AddLocal(const CService& addr, int nScore = LOCAL_NONE);
|
2012-05-12 19:26:14 -04:00
|
|
|
|
bool AddLocal(const CNetAddr& addr, int nScore = LOCAL_NONE);
|
2018-07-27 02:22:42 -04:00
|
|
|
|
void RemoveLocal(const CService& addr);
|
2012-05-10 14:35:13 -04:00
|
|
|
|
bool SeenLocal(const CService& addr);
|
|
|
|
|
bool IsLocal(const CService& addr);
|
2017-08-07 01:36:37 -04:00
|
|
|
|
bool GetLocal(CService &addr, const CNetAddr *paddrPeer = nullptr);
|
2016-04-19 01:04:58 -03:00
|
|
|
|
CAddress GetLocalAddress(const CNetAddr *paddrPeer, ServiceFlags nLocalServices);
|
2012-02-12 09:45:24 -03:00
|
|
|
|
|
2012-04-10 15:22:04 -03:00
|
|
|
|
|
2012-05-24 13:02:21 -04:00
|
|
|
|
extern bool fDiscover;
|
2014-05-29 06:33:17 -04:00
|
|
|
|
extern bool fListen;
|
2019-05-09 09:16:29 -04:00
|
|
|
|
extern bool g_relay_txes;
|
2014-11-16 08:19:23 -03:00
|
|
|
|
|
2015-07-31 13:05:42 -03:00
|
|
|
|
/** Subversion as sent to the P2P network in `version` messages */
|
|
|
|
|
extern std::string strSubVersion;
|
|
|
|
|
|
2014-05-05 07:22:28 -04:00
|
|
|
|
struct LocalServiceInfo {
|
|
|
|
|
int nScore;
|
|
|
|
|
int nPort;
|
|
|
|
|
};
|
|
|
|
|
|
2020-01-07 13:14:15 -03:00
|
|
|
|
extern RecursiveMutex cs_mapLocalHost;
|
2018-10-08 10:34:39 -03:00
|
|
|
|
extern std::map<CNetAddr, LocalServiceInfo> mapLocalHost GUARDED_BY(cs_mapLocalHost);
|
2019-01-02 09:13:50 -03:00
|
|
|
|
|
|
|
|
|
extern const std::string NET_MESSAGE_COMMAND_OTHER;
|
2015-08-25 11:30:31 -03:00
|
|
|
|
typedef std::map<std::string, uint64_t> mapMsgCmdSize; //command, total bytes
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
2012-06-29 17:24:53 -04:00
|
|
|
|
class CNodeStats
|
|
|
|
|
{
|
|
|
|
|
public:
|
2013-11-17 21:25:17 -03:00
|
|
|
|
NodeId nodeid;
|
2016-06-08 13:12:22 -04:00
|
|
|
|
ServiceFlags nServices;
|
2015-11-20 20:51:44 -03:00
|
|
|
|
bool fRelayTxes;
|
2013-04-13 02:13:08 -03:00
|
|
|
|
int64_t nLastSend;
|
|
|
|
|
int64_t nLastRecv;
|
2020-08-09 15:49:31 -04:00
|
|
|
|
int64_t nLastTXTime;
|
|
|
|
|
int64_t nLastBlockTime;
|
2013-04-13 02:13:08 -03:00
|
|
|
|
int64_t nTimeConnected;
|
2014-12-15 07:06:15 -03:00
|
|
|
|
int64_t nTimeOffset;
|
2012-06-29 17:24:53 -04:00
|
|
|
|
std::string addrName;
|
|
|
|
|
int nVersion;
|
2013-11-26 08:52:21 -03:00
|
|
|
|
std::string cleanSubVer;
|
2012-06-29 17:24:53 -04:00
|
|
|
|
bool fInbound;
|
2017-10-05 12:49:16 -03:00
|
|
|
|
bool m_manual_connection;
|
2012-06-29 17:24:53 -04:00
|
|
|
|
int nStartingHeight;
|
2013-04-13 02:13:08 -03:00
|
|
|
|
uint64_t nSendBytes;
|
2015-08-25 11:30:31 -03:00
|
|
|
|
mapMsgCmdSize mapSendBytesPerMsgCmd;
|
2013-04-13 02:13:08 -03:00
|
|
|
|
uint64_t nRecvBytes;
|
2015-08-25 11:30:31 -03:00
|
|
|
|
mapMsgCmdSize mapRecvBytesPerMsgCmd;
|
2019-06-20 05:37:51 -04:00
|
|
|
|
NetPermissionFlags m_permissionFlags;
|
2019-06-20 22:42:04 -04:00
|
|
|
|
bool m_legacyWhitelisted;
|
2020-03-03 10:35:01 -03:00
|
|
|
|
int64_t m_ping_usec;
|
2020-03-03 10:42:50 -03:00
|
|
|
|
int64_t m_ping_wait_usec;
|
2020-03-03 10:40:29 -03:00
|
|
|
|
int64_t m_min_ping_usec;
|
2018-06-22 04:53:39 -04:00
|
|
|
|
CAmount minFeeFilter;
|
2017-05-30 05:59:42 -04:00
|
|
|
|
// Our address, as reported by the peer
|
2013-08-22 01:50:19 -04:00
|
|
|
|
std::string addrLocal;
|
2017-05-30 05:59:42 -04:00
|
|
|
|
// Address of this peer
|
2016-10-04 20:27:11 -03:00
|
|
|
|
CAddress addr;
|
2017-05-30 05:59:42 -04:00
|
|
|
|
// Bind address of our side of the connection
|
|
|
|
|
CAddress addrBind;
|
2019-12-24 15:26:46 -03:00
|
|
|
|
uint32_t m_mapped_as;
|
2020-08-12 16:57:13 -04:00
|
|
|
|
std::string m_conn_type_string;
|
2012-06-29 17:24:53 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-06-13 04:39:44 -04:00
|
|
|
|
/** Transport protocol agnostic message container.
|
|
|
|
|
* Ideally it should only contain receive time, payload,
|
|
|
|
|
* command and size.
|
|
|
|
|
*/
|
2012-11-15 21:41:12 -03:00
|
|
|
|
class CNetMessage {
|
2019-06-13 04:39:44 -04:00
|
|
|
|
public:
|
2020-04-14 13:24:18 -04:00
|
|
|
|
CDataStream m_recv; //!< received message data
|
|
|
|
|
std::chrono::microseconds m_time{0}; //!< time of message receipt
|
2020-05-26 17:01:57 -04:00
|
|
|
|
uint32_t m_message_size{0}; //!< size of the payload
|
|
|
|
|
uint32_t m_raw_message_size{0}; //!< used wire size of the message (including header/checksum)
|
2019-06-13 04:39:44 -04:00
|
|
|
|
std::string m_command;
|
|
|
|
|
|
2019-10-22 10:28:32 -03:00
|
|
|
|
CNetMessage(CDataStream&& recv_in) : m_recv(std::move(recv_in)) {}
|
2019-06-13 04:39:44 -04:00
|
|
|
|
|
|
|
|
|
void SetVersion(int nVersionIn)
|
|
|
|
|
{
|
|
|
|
|
m_recv.SetVersion(nVersionIn);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** The TransportDeserializer takes care of holding and deserializing the
|
|
|
|
|
* network receive buffer. It can deserialize the network buffer into a
|
|
|
|
|
* transport protocol agnostic CNetMessage (command & payload)
|
|
|
|
|
*/
|
|
|
|
|
class TransportDeserializer {
|
2019-06-13 05:25:54 -04:00
|
|
|
|
public:
|
|
|
|
|
// returns true if the current deserialization is complete
|
|
|
|
|
virtual bool Complete() const = 0;
|
|
|
|
|
// set the serialization context version
|
|
|
|
|
virtual void SetVersion(int version) = 0;
|
|
|
|
|
// read and deserialize data
|
|
|
|
|
virtual int Read(const char *data, unsigned int bytes) = 0;
|
|
|
|
|
// decomposes a message from the context
|
2020-06-08 22:26:22 -04:00
|
|
|
|
virtual Optional<CNetMessage> GetMessage(std::chrono::microseconds time, uint32_t& out_err) = 0;
|
2019-06-13 05:25:54 -04:00
|
|
|
|
virtual ~TransportDeserializer() {}
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-18 16:09:48 -03:00
|
|
|
|
class V1TransportDeserializer final : public TransportDeserializer
|
2019-06-13 05:25:54 -04:00
|
|
|
|
{
|
2016-10-30 19:02:16 -03:00
|
|
|
|
private:
|
2020-06-08 22:26:22 -04:00
|
|
|
|
const CChainParams& m_chain_params;
|
2020-06-29 14:09:42 -04:00
|
|
|
|
const NodeId m_node_id; // Only for logging
|
2016-10-30 19:02:16 -03:00
|
|
|
|
mutable CHash256 hasher;
|
|
|
|
|
mutable uint256 data_hash;
|
2012-11-15 21:41:12 -03:00
|
|
|
|
bool in_data; // parsing header (false) or data (true)
|
|
|
|
|
CDataStream hdrbuf; // partially received header
|
|
|
|
|
CMessageHeader hdr; // complete header
|
|
|
|
|
CDataStream vRecv; // received message data
|
2019-06-13 05:25:54 -04:00
|
|
|
|
unsigned int nHdrPos;
|
2012-11-15 21:41:12 -03:00
|
|
|
|
unsigned int nDataPos;
|
|
|
|
|
|
2019-06-13 05:25:54 -04:00
|
|
|
|
const uint256& GetMessageHash() const;
|
|
|
|
|
int readHeader(const char *pch, unsigned int nBytes);
|
|
|
|
|
int readData(const char *pch, unsigned int nBytes);
|
2014-07-06 10:06:46 -04:00
|
|
|
|
|
2019-06-13 04:39:44 -04:00
|
|
|
|
void Reset() {
|
|
|
|
|
vRecv.clear();
|
|
|
|
|
hdrbuf.clear();
|
2012-11-15 21:41:12 -03:00
|
|
|
|
hdrbuf.resize(24);
|
|
|
|
|
in_data = false;
|
|
|
|
|
nHdrPos = 0;
|
|
|
|
|
nDataPos = 0;
|
2019-06-13 04:39:44 -04:00
|
|
|
|
data_hash.SetNull();
|
|
|
|
|
hasher.Reset();
|
2012-11-15 21:41:12 -03:00
|
|
|
|
}
|
2019-10-18 16:03:13 -03:00
|
|
|
|
|
|
|
|
|
public:
|
2020-06-08 22:26:22 -04:00
|
|
|
|
V1TransportDeserializer(const CChainParams& chain_params, const NodeId node_id, int nTypeIn, int nVersionIn)
|
|
|
|
|
: m_chain_params(chain_params),
|
|
|
|
|
m_node_id(node_id),
|
2020-06-29 14:09:42 -04:00
|
|
|
|
hdrbuf(nTypeIn, nVersionIn),
|
|
|
|
|
vRecv(nTypeIn, nVersionIn)
|
|
|
|
|
{
|
2019-10-18 16:03:13 -03:00
|
|
|
|
Reset();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-18 16:09:48 -03:00
|
|
|
|
bool Complete() const override
|
2012-11-15 21:41:12 -03:00
|
|
|
|
{
|
|
|
|
|
if (!in_data)
|
|
|
|
|
return false;
|
|
|
|
|
return (hdr.nMessageSize == nDataPos);
|
|
|
|
|
}
|
2019-10-18 16:09:48 -03:00
|
|
|
|
void SetVersion(int nVersionIn) override
|
2012-11-15 21:41:12 -03:00
|
|
|
|
{
|
|
|
|
|
hdrbuf.SetVersion(nVersionIn);
|
|
|
|
|
vRecv.SetVersion(nVersionIn);
|
|
|
|
|
}
|
2019-10-18 16:09:48 -03:00
|
|
|
|
int Read(const char *pch, unsigned int nBytes) override {
|
2019-10-18 16:03:13 -03:00
|
|
|
|
int ret = in_data ? readData(pch, nBytes) : readHeader(pch, nBytes);
|
|
|
|
|
if (ret < 0) Reset();
|
|
|
|
|
return ret;
|
2019-06-13 05:25:54 -04:00
|
|
|
|
}
|
2020-06-08 22:26:22 -04:00
|
|
|
|
Optional<CNetMessage> GetMessage(std::chrono::microseconds time, uint32_t& out_err_raw_size) override;
|
2019-06-13 04:39:44 -04:00
|
|
|
|
};
|
2012-11-15 21:41:12 -03:00
|
|
|
|
|
2019-08-07 09:56:24 -04:00
|
|
|
|
/** The TransportSerializer prepares messages for the network transport
|
|
|
|
|
*/
|
|
|
|
|
class TransportSerializer {
|
|
|
|
|
public:
|
|
|
|
|
// prepare message for transport (header construction, error-correction computation, payload encryption, etc.)
|
|
|
|
|
virtual void prepareForTransport(CSerializedNetMsg& msg, std::vector<unsigned char>& header) = 0;
|
|
|
|
|
virtual ~TransportSerializer() {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class V1TransportSerializer : public TransportSerializer {
|
|
|
|
|
public:
|
|
|
|
|
void prepareForTransport(CSerializedNetMsg& msg, std::vector<unsigned char>& header) override;
|
|
|
|
|
};
|
|
|
|
|
|
2012-03-26 11:48:23 -03:00
|
|
|
|
/** Information about a peer */
|
2010-08-29 12:58:15 -04:00
|
|
|
|
class CNode
|
|
|
|
|
{
|
2016-09-12 21:00:33 -03:00
|
|
|
|
friend class CConnman;
|
2020-04-03 20:30:51 -03:00
|
|
|
|
friend struct ConnmanTestMsg;
|
|
|
|
|
|
2010-08-29 12:58:15 -04:00
|
|
|
|
public:
|
2019-06-13 04:39:44 -04:00
|
|
|
|
std::unique_ptr<TransportDeserializer> m_deserializer;
|
2019-08-07 09:56:24 -04:00
|
|
|
|
std::unique_ptr<TransportSerializer> m_serializer;
|
2019-06-13 04:39:44 -04:00
|
|
|
|
|
2010-08-29 12:58:15 -04:00
|
|
|
|
// socket
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<ServiceFlags> nServices{NODE_NONE};
|
2018-10-08 10:34:39 -03:00
|
|
|
|
SOCKET hSocket GUARDED_BY(cs_hSocket);
|
2019-01-05 08:11:04 -03:00
|
|
|
|
size_t nSendSize{0}; // total size of all vSendMsg entries
|
|
|
|
|
size_t nSendOffset{0}; // offset inside the first vSendMsg already sent
|
|
|
|
|
uint64_t nSendBytes GUARDED_BY(cs_vSend){0};
|
2018-10-08 10:34:39 -03:00
|
|
|
|
std::deque<std::vector<unsigned char>> vSendMsg GUARDED_BY(cs_vSend);
|
2020-01-07 13:14:15 -03:00
|
|
|
|
RecursiveMutex cs_vSend;
|
|
|
|
|
RecursiveMutex cs_hSocket;
|
|
|
|
|
RecursiveMutex cs_vRecv;
|
2012-11-15 21:41:12 -03:00
|
|
|
|
|
2020-01-07 13:14:15 -03:00
|
|
|
|
RecursiveMutex cs_vProcessMsg;
|
2018-10-08 10:34:39 -03:00
|
|
|
|
std::list<CNetMessage> vProcessMsg GUARDED_BY(cs_vProcessMsg);
|
2019-01-05 08:11:04 -03:00
|
|
|
|
size_t nProcessQueueSize{0};
|
2016-12-31 04:05:28 -03:00
|
|
|
|
|
2020-01-07 13:14:15 -03:00
|
|
|
|
RecursiveMutex cs_sendProcessing;
|
2016-12-24 16:34:20 -03:00
|
|
|
|
|
2013-03-29 19:49:38 -03:00
|
|
|
|
std::deque<CInv> vRecvGetData;
|
2019-01-05 08:11:04 -03:00
|
|
|
|
uint64_t nRecvBytes GUARDED_BY(cs_vRecv){0};
|
2012-11-15 21:41:12 -03:00
|
|
|
|
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int64_t> nLastSend{0};
|
|
|
|
|
std::atomic<int64_t> nLastRecv{0};
|
2017-02-06 13:42:49 -03:00
|
|
|
|
const int64_t nTimeConnected;
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int64_t> nTimeOffset{0};
|
2017-05-30 05:59:42 -04:00
|
|
|
|
// Address of this peer
|
2016-05-25 09:38:32 -04:00
|
|
|
|
const CAddress addr;
|
2017-05-30 05:59:42 -04:00
|
|
|
|
// Bind address of our side of the connection
|
|
|
|
|
const CAddress addrBind;
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int> nVersion{0};
|
2019-03-23 12:34:40 -03:00
|
|
|
|
RecursiveMutex cs_SubVer;
|
|
|
|
|
/**
|
|
|
|
|
* cleanSubVer is a sanitized string of the user agent byte array we read
|
|
|
|
|
* from the wire. This cleaned string can safely be logged or displayed.
|
|
|
|
|
*/
|
|
|
|
|
std::string cleanSubVer GUARDED_BY(cs_SubVer){};
|
2018-12-11 18:07:36 -03:00
|
|
|
|
bool m_prefer_evict{false}; // This peer is preferred for eviction.
|
2019-06-20 05:37:51 -04:00
|
|
|
|
bool HasPermission(NetPermissionFlags permission) const {
|
|
|
|
|
return NetPermissions::HasFlag(m_permissionFlags, permission);
|
|
|
|
|
}
|
2019-06-20 22:42:04 -04:00
|
|
|
|
// This boolean is unusued in actual processing, only present for backward compatibility at RPC/QT level
|
|
|
|
|
bool m_legacyWhitelisted{false};
|
2019-01-05 08:11:04 -03:00
|
|
|
|
bool fClient{false}; // set by version message
|
|
|
|
|
bool m_limited_node{false}; //after BIP159, set by version message
|
|
|
|
|
std::atomic_bool fSuccessfullyConnected{false};
|
2019-01-17 20:27:13 -03:00
|
|
|
|
// Setting fDisconnect to true will cause the node to be disconnected the
|
|
|
|
|
// next time DisconnectNodes() runs
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic_bool fDisconnect{false};
|
|
|
|
|
bool fSentAddr{false};
|
2012-05-10 12:44:07 -04:00
|
|
|
|
CSemaphoreGrant grantOutbound;
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int> nRefCount{0};
|
2016-05-23 03:21:05 -04:00
|
|
|
|
|
2016-05-25 09:38:32 -04:00
|
|
|
|
const uint64_t nKeyedNetGroup;
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic_bool fPauseRecv{false};
|
|
|
|
|
std::atomic_bool fPauseSend{false};
|
2011-09-06 17:09:04 -03:00
|
|
|
|
|
2020-07-20 17:24:48 -04:00
|
|
|
|
bool IsOutboundOrBlockRelayConn() const {
|
2020-08-11 13:36:42 -04:00
|
|
|
|
switch (m_conn_type) {
|
2020-08-11 23:37:32 -04:00
|
|
|
|
case ConnectionType::OUTBOUND_FULL_RELAY:
|
2020-07-20 17:24:48 -04:00
|
|
|
|
case ConnectionType::BLOCK_RELAY:
|
|
|
|
|
return true;
|
|
|
|
|
case ConnectionType::INBOUND:
|
|
|
|
|
case ConnectionType::MANUAL:
|
|
|
|
|
case ConnectionType::ADDR_FETCH:
|
|
|
|
|
case ConnectionType::FEELER:
|
|
|
|
|
return false;
|
2020-08-20 18:26:27 -04:00
|
|
|
|
} // no default case, so the compiler can warn about missing cases
|
2020-07-20 17:24:48 -04:00
|
|
|
|
|
|
|
|
|
assert(false);
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-03 00:23:44 -04:00
|
|
|
|
bool IsFullOutboundConn() const {
|
2020-08-11 23:37:32 -04:00
|
|
|
|
return m_conn_type == ConnectionType::OUTBOUND_FULL_RELAY;
|
2020-06-03 00:23:44 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-02 11:39:47 -04:00
|
|
|
|
bool IsManualConn() const {
|
|
|
|
|
return m_conn_type == ConnectionType::MANUAL;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-03 00:23:44 -04:00
|
|
|
|
bool IsBlockOnlyConn() const {
|
|
|
|
|
return m_conn_type == ConnectionType::BLOCK_RELAY;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-12 15:58:41 -04:00
|
|
|
|
bool IsFeelerConn() const {
|
|
|
|
|
return m_conn_type == ConnectionType::FEELER;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-28 16:17:16 -04:00
|
|
|
|
bool IsAddrFetchConn() const {
|
|
|
|
|
return m_conn_type == ConnectionType::ADDR_FETCH;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-28 16:39:38 -04:00
|
|
|
|
bool IsInboundConn() const {
|
|
|
|
|
return m_conn_type == ConnectionType::INBOUND;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-10 17:48:54 -04:00
|
|
|
|
/* Whether we send addr messages over this connection */
|
|
|
|
|
bool RelayAddrsWithConn() const
|
|
|
|
|
{
|
|
|
|
|
return m_conn_type != ConnectionType::BLOCK_RELAY;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-03 00:23:44 -04:00
|
|
|
|
bool ExpectServicesFromConn() const {
|
2020-08-11 13:36:42 -04:00
|
|
|
|
switch (m_conn_type) {
|
2020-06-03 00:23:44 -04:00
|
|
|
|
case ConnectionType::INBOUND:
|
|
|
|
|
case ConnectionType::MANUAL:
|
|
|
|
|
case ConnectionType::FEELER:
|
|
|
|
|
return false;
|
2020-08-11 23:37:32 -04:00
|
|
|
|
case ConnectionType::OUTBOUND_FULL_RELAY:
|
2020-06-03 00:23:44 -04:00
|
|
|
|
case ConnectionType::BLOCK_RELAY:
|
|
|
|
|
case ConnectionType::ADDR_FETCH:
|
|
|
|
|
return true;
|
2020-08-20 18:26:27 -04:00
|
|
|
|
} // no default case, so the compiler can warn about missing cases
|
2020-06-03 00:23:44 -04:00
|
|
|
|
|
|
|
|
|
assert(false);
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-02 09:13:50 -03:00
|
|
|
|
protected:
|
2015-08-25 11:30:31 -03:00
|
|
|
|
mapMsgCmdSize mapSendBytesPerMsgCmd;
|
2018-10-08 10:34:39 -03:00
|
|
|
|
mapMsgCmdSize mapRecvBytesPerMsgCmd GUARDED_BY(cs_vRecv);
|
2015-08-25 11:30:31 -03:00
|
|
|
|
|
2010-08-29 12:58:15 -04:00
|
|
|
|
public:
|
|
|
|
|
uint256 hashContinue;
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int> nStartingHeight{-1};
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
|
|
|
|
// flood relay
|
2011-05-15 03:11:04 -04:00
|
|
|
|
std::vector<CAddress> vAddrToSend;
|
2020-08-11 13:36:42 -04:00
|
|
|
|
std::unique_ptr<CRollingBloomFilter> m_addr_known{nullptr};
|
2019-01-05 08:11:04 -03:00
|
|
|
|
bool fGetAddr{false};
|
2020-03-27 19:00:29 -03:00
|
|
|
|
std::chrono::microseconds m_next_addr_send GUARDED_BY(cs_sendProcessing){0};
|
|
|
|
|
std::chrono::microseconds m_next_local_addr_send GUARDED_BY(cs_sendProcessing){0};
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
2016-04-07 08:57:36 -03:00
|
|
|
|
// List of block ids we still have announce.
|
|
|
|
|
// There is no final sorting before sending, as they are always sent immediately
|
|
|
|
|
// and in the order requested.
|
2018-10-08 10:34:39 -03:00
|
|
|
|
std::vector<uint256> vInventoryBlockToSend GUARDED_BY(cs_inventory);
|
2020-06-20 23:17:29 -04:00
|
|
|
|
Mutex cs_inventory;
|
2019-03-08 16:26:36 -03:00
|
|
|
|
|
|
|
|
|
struct TxRelay {
|
2020-01-07 13:14:15 -03:00
|
|
|
|
mutable RecursiveMutex cs_filter;
|
2019-03-08 16:26:36 -03:00
|
|
|
|
// We use fRelayTxes for two purposes -
|
|
|
|
|
// a) it allows us to not relay tx invs before receiving the peer's version message
|
|
|
|
|
// b) the peer may tell us in its version message that we should not relay tx invs
|
|
|
|
|
// unless it loads a bloom filter.
|
|
|
|
|
bool fRelayTxes GUARDED_BY(cs_filter){false};
|
2020-04-06 11:34:07 -04:00
|
|
|
|
std::unique_ptr<CBloomFilter> pfilter PT_GUARDED_BY(cs_filter) GUARDED_BY(cs_filter){nullptr};
|
2019-03-08 16:26:36 -03:00
|
|
|
|
|
2020-01-07 13:14:15 -03:00
|
|
|
|
mutable RecursiveMutex cs_tx_inventory;
|
2019-03-08 16:26:36 -03:00
|
|
|
|
CRollingBloomFilter filterInventoryKnown GUARDED_BY(cs_tx_inventory){50000, 0.000001};
|
|
|
|
|
// Set of transaction ids we still have to announce.
|
|
|
|
|
// They are sorted by the mempool before relay, so the order is not important.
|
|
|
|
|
std::set<uint256> setInventoryTxToSend;
|
|
|
|
|
// Used for BIP35 mempool sending
|
|
|
|
|
bool fSendMempool GUARDED_BY(cs_tx_inventory){false};
|
|
|
|
|
// Last time a "MEMPOOL" request was serviced.
|
2019-09-18 14:31:59 -03:00
|
|
|
|
std::atomic<std::chrono::seconds> m_last_mempool_req{std::chrono::seconds{0}};
|
2019-10-30 19:37:35 -03:00
|
|
|
|
std::chrono::microseconds nNextInvSend{0};
|
2019-03-08 16:26:36 -03:00
|
|
|
|
|
2020-01-07 13:14:15 -03:00
|
|
|
|
RecursiveMutex cs_feeFilter;
|
2019-03-08 16:26:36 -03:00
|
|
|
|
// Minimum fee rate with which to filter inv's to this node
|
|
|
|
|
CAmount minFeeFilter GUARDED_BY(cs_feeFilter){0};
|
|
|
|
|
CAmount lastSentFeeFilter{0};
|
|
|
|
|
int64_t nextSendTimeFeeFilter{0};
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-08 18:04:55 -03:00
|
|
|
|
// m_tx_relay == nullptr if we're not relaying transactions with this peer
|
2019-03-08 17:30:36 -03:00
|
|
|
|
std::unique_ptr<TxRelay> m_tx_relay;
|
2019-04-05 14:35:15 -03:00
|
|
|
|
|
2014-11-18 18:16:32 -03:00
|
|
|
|
// Used for headers announcements - unfiltered blocks to relay
|
2018-02-02 20:11:01 -03:00
|
|
|
|
std::vector<uint256> vBlockHashesToAnnounce GUARDED_BY(cs_inventory);
|
2016-05-22 01:55:15 -04:00
|
|
|
|
|
2020-09-01 11:40:32 -04:00
|
|
|
|
/** UNIX epoch time of the last block received from this peer that we had
|
|
|
|
|
* not yet seen (e.g. not already received from another peer), that passed
|
|
|
|
|
* preliminary validity checks and was saved to disk, even if we don't
|
|
|
|
|
* connect the block or it eventually fails connection. Used as an inbound
|
|
|
|
|
* peer eviction criterium in CConnman::AttemptToEvictConnection. */
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int64_t> nLastBlockTime{0};
|
2020-09-01 11:40:32 -04:00
|
|
|
|
|
|
|
|
|
/** UNIX epoch time of the last transaction received from this peer that we
|
|
|
|
|
* had not yet seen (e.g. not already received from another peer) and that
|
|
|
|
|
* was accepted into our mempool. Used as an inbound peer eviction criterium
|
|
|
|
|
* in CConnman::AttemptToEvictConnection. */
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int64_t> nLastTXTime{0};
|
2016-05-22 01:55:15 -04:00
|
|
|
|
|
2013-10-14 19:34:20 -03:00
|
|
|
|
// Ping time measurement:
|
|
|
|
|
// The pong reply we're expecting, or 0 if no pong expected.
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<uint64_t> nPingNonceSent{0};
|
2020-04-14 13:24:18 -04:00
|
|
|
|
/** When the last ping was sent, or 0 if no ping was ever sent */
|
|
|
|
|
std::atomic<std::chrono::microseconds> m_ping_start{std::chrono::microseconds{0}};
|
2013-10-14 19:34:20 -03:00
|
|
|
|
// Last measured round-trip time.
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int64_t> nPingUsecTime{0};
|
2015-08-13 06:31:46 -03:00
|
|
|
|
// Best measured round-trip time.
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<int64_t> nMinPingUsecTime{std::numeric_limits<int64_t>::max()};
|
2013-10-14 19:34:20 -03:00
|
|
|
|
// Whether a ping is requested.
|
2019-01-05 08:11:04 -03:00
|
|
|
|
std::atomic<bool> fPingQueued{false};
|
2014-01-11 14:14:29 -03:00
|
|
|
|
|
2019-03-20 19:26:21 -03:00
|
|
|
|
std::set<uint256> orphan_work_set;
|
|
|
|
|
|
2020-07-29 21:43:28 -04:00
|
|
|
|
CNode(NodeId id, ServiceFlags nLocalServicesIn, int nMyStartingHeightIn, SOCKET hSocketIn, const CAddress &addrIn, uint64_t nKeyedNetGroupIn, uint64_t nLocalHostNonceIn, const CAddress &addrBindIn, const std::string &addrNameIn, ConnectionType conn_type_in);
|
2014-08-20 23:17:21 -04:00
|
|
|
|
~CNode();
|
2017-09-16 07:06:05 -03:00
|
|
|
|
CNode(const CNode&) = delete;
|
|
|
|
|
CNode& operator=(const CNode&) = delete;
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
|
|
|
|
private:
|
2017-04-11 13:11:27 -03:00
|
|
|
|
const NodeId id;
|
2016-10-26 16:10:15 -03:00
|
|
|
|
const uint64_t nLocalHostNonce;
|
2020-04-30 14:21:33 -04:00
|
|
|
|
const ConnectionType m_conn_type;
|
2020-06-05 03:22:53 -04:00
|
|
|
|
std::atomic<int> m_greatest_common_version{INIT_PROTO_VERSION};
|
2019-09-10 14:09:12 -03:00
|
|
|
|
|
|
|
|
|
//! Services offered to this peer.
|
|
|
|
|
//!
|
|
|
|
|
//! This is supplied by the parent CConnman during peer connection
|
|
|
|
|
//! (CConnman::ConnectNode()) from its attribute of the same name.
|
|
|
|
|
//!
|
|
|
|
|
//! This is const because there is no protocol defined for renegotiating
|
|
|
|
|
//! services initially offered to a peer. The set of local services we
|
|
|
|
|
//! offer should not change after initialization.
|
|
|
|
|
//!
|
|
|
|
|
//! An interesting example of this is NODE_NETWORK and initial block
|
|
|
|
|
//! download: a node which starts up from scratch doesn't have any blocks
|
|
|
|
|
//! to serve, but still advertises NODE_NETWORK because it will eventually
|
|
|
|
|
//! fulfill this role after IBD completes. P2P code is written in such a
|
|
|
|
|
//! way that it can gracefully handle peers who don't make good on their
|
|
|
|
|
//! service advertisements.
|
2016-10-31 18:06:15 -03:00
|
|
|
|
const ServiceFlags nLocalServices;
|
2019-09-10 14:09:12 -03:00
|
|
|
|
|
2016-10-31 18:06:15 -03:00
|
|
|
|
const int nMyStartingHeight;
|
2019-06-20 05:37:51 -04:00
|
|
|
|
NetPermissionFlags m_permissionFlags{ PF_NONE };
|
2016-12-31 04:05:36 -03:00
|
|
|
|
std::list<CNetMessage> vRecvMsg; // Used only by SocketHandler thread
|
2017-02-06 14:04:34 -03:00
|
|
|
|
|
2020-01-07 13:14:15 -03:00
|
|
|
|
mutable RecursiveMutex cs_addrName;
|
2018-10-08 10:34:39 -03:00
|
|
|
|
std::string addrName GUARDED_BY(cs_addrName);
|
2017-02-06 14:18:51 -03:00
|
|
|
|
|
2017-05-30 05:59:42 -04:00
|
|
|
|
// Our address, as reported by the peer
|
2018-10-08 10:34:39 -03:00
|
|
|
|
CService addrLocal GUARDED_BY(cs_addrLocal);
|
2020-01-07 13:14:15 -03:00
|
|
|
|
mutable RecursiveMutex cs_addrLocal;
|
2010-08-29 12:58:15 -04:00
|
|
|
|
public:
|
|
|
|
|
|
2013-11-17 21:25:17 -03:00
|
|
|
|
NodeId GetId() const {
|
2017-03-06 13:54:08 -03:00
|
|
|
|
return id;
|
2013-11-17 21:25:17 -03:00
|
|
|
|
}
|
2010-08-29 12:58:15 -04:00
|
|
|
|
|
2016-04-17 21:21:58 -03:00
|
|
|
|
uint64_t GetLocalNonce() const {
|
2017-03-06 13:54:08 -03:00
|
|
|
|
return nLocalHostNonce;
|
2016-04-17 21:21:58 -03:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-26 19:08:11 -03:00
|
|
|
|
int GetMyStartingHeight() const {
|
2017-03-06 13:54:08 -03:00
|
|
|
|
return nMyStartingHeight;
|
2016-10-26 19:08:11 -03:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-01 11:21:03 -04:00
|
|
|
|
int GetRefCount() const
|
2010-08-29 12:58:15 -04:00
|
|
|
|
{
|
2013-03-28 20:43:31 -03:00
|
|
|
|
assert(nRefCount >= 0);
|
|
|
|
|
return nRefCount;
|
2010-08-29 12:58:15 -04:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-18 22:33:54 -03:00
|
|
|
|
bool ReceiveMsgBytes(const char *pch, unsigned int nBytes, bool& complete);
|
2012-11-15 21:41:12 -03:00
|
|
|
|
|
2020-06-05 03:22:53 -04:00
|
|
|
|
void SetCommonVersion(int greatest_common_version)
|
2012-11-15 21:41:12 -03:00
|
|
|
|
{
|
2020-06-05 03:22:53 -04:00
|
|
|
|
m_greatest_common_version = greatest_common_version;
|
2016-12-31 04:05:15 -03:00
|
|
|
|
}
|
2020-06-05 03:22:53 -04:00
|
|
|
|
int GetCommonVersion() const
|
2016-12-31 04:05:15 -03:00
|
|
|
|
{
|
2020-06-05 03:22:53 -04:00
|
|
|
|
return m_greatest_common_version;
|
2012-11-15 21:41:12 -03:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-06 14:18:51 -03:00
|
|
|
|
CService GetAddrLocal() const;
|
|
|
|
|
//! May not be called more than once
|
|
|
|
|
void SetAddrLocal(const CService& addrLocalIn);
|
|
|
|
|
|
2013-03-28 20:43:31 -03:00
|
|
|
|
CNode* AddRef()
|
2010-08-29 12:58:15 -04:00
|
|
|
|
{
|
2013-03-28 20:43:31 -03:00
|
|
|
|
nRefCount++;
|
2010-08-29 12:58:15 -04:00
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Release()
|
|
|
|
|
{
|
|
|
|
|
nRefCount--;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-08-15 09:10:07 -03:00
|
|
|
|
void AddAddressKnown(const CAddress& _addr)
|
2010-08-29 12:58:15 -04:00
|
|
|
|
{
|
2019-10-25 17:28:14 -03:00
|
|
|
|
assert(m_addr_known);
|
2019-10-16 18:06:20 -03:00
|
|
|
|
m_addr_known->insert(_addr.GetKey());
|
2010-08-29 12:58:15 -04:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-13 11:19:20 -03:00
|
|
|
|
void PushAddress(const CAddress& _addr, FastRandomContext &insecure_rand)
|
2010-08-29 12:58:15 -04:00
|
|
|
|
{
|
|
|
|
|
// Known checking here is only to save space from duplicates.
|
|
|
|
|
// SendMessages will filter it again for knowns that were added
|
|
|
|
|
// after addresses were pushed.
|
2019-10-25 17:28:14 -03:00
|
|
|
|
assert(m_addr_known);
|
2019-10-16 18:06:20 -03:00
|
|
|
|
if (_addr.IsValid() && !m_addr_known->contains(_addr.GetKey())) {
|
2014-11-21 08:22:11 -03:00
|
|
|
|
if (vAddrToSend.size() >= MAX_ADDR_TO_SEND) {
|
2017-02-25 17:16:58 -03:00
|
|
|
|
vAddrToSend[insecure_rand.randrange(vAddrToSend.size())] = _addr;
|
2014-11-21 08:22:11 -03:00
|
|
|
|
} else {
|
2016-08-15 09:10:07 -03:00
|
|
|
|
vAddrToSend.push_back(_addr);
|
2014-11-21 08:22:11 -03:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-29 12:58:15 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-02-26 15:36:35 -03:00
|
|
|
|
void AddKnownTx(const uint256& hash)
|
2010-08-29 12:58:15 -04:00
|
|
|
|
{
|
2019-03-08 17:48:41 -03:00
|
|
|
|
if (m_tx_relay != nullptr) {
|
2019-03-08 17:30:36 -03:00
|
|
|
|
LOCK(m_tx_relay->cs_tx_inventory);
|
2020-01-30 13:12:56 -03:00
|
|
|
|
m_tx_relay->filterInventoryKnown.insert(hash);
|
2012-04-06 13:39:12 -03:00
|
|
|
|
}
|
2010-08-29 12:58:15 -04:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-18 15:19:12 -04:00
|
|
|
|
void PushTxInventory(const uint256& hash)
|
2010-08-29 12:58:15 -04:00
|
|
|
|
{
|
2020-06-18 15:19:12 -04:00
|
|
|
|
if (m_tx_relay == nullptr) return;
|
|
|
|
|
LOCK(m_tx_relay->cs_tx_inventory);
|
|
|
|
|
if (!m_tx_relay->filterInventoryKnown.contains(hash)) {
|
|
|
|
|
m_tx_relay->setInventoryTxToSend.insert(hash);
|
2012-04-06 13:39:12 -03:00
|
|
|
|
}
|
2010-08-29 12:58:15 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CloseSocketDisconnect();
|
2011-09-06 17:09:04 -03:00
|
|
|
|
|
2020-01-29 18:57:58 -03:00
|
|
|
|
void copyStats(CNodeStats &stats, const std::vector<bool> &m_asmap);
|
2016-04-19 01:04:58 -03:00
|
|
|
|
|
|
|
|
|
ServiceFlags GetLocalServices() const
|
|
|
|
|
{
|
|
|
|
|
return nLocalServices;
|
|
|
|
|
}
|
2017-02-06 14:04:34 -03:00
|
|
|
|
|
|
|
|
|
std::string GetAddrName() const;
|
|
|
|
|
//! Sets the addrName only if it was not previously set
|
|
|
|
|
void MaybeSetAddrName(const std::string& addrNameIn);
|
2020-08-10 21:30:04 -04:00
|
|
|
|
|
|
|
|
|
std::string ConnectionTypeAsString() const;
|
2010-08-29 12:58:15 -04:00
|
|
|
|
};
|
|
|
|
|
|
2015-04-08 15:20:00 -03:00
|
|
|
|
/** Return a timestamp in the future (in microseconds) for exponentially distributed events. */
|
2018-05-21 15:02:40 -04:00
|
|
|
|
int64_t PoissonNextSend(int64_t now, int average_interval_seconds);
|
2015-04-08 15:20:00 -03:00
|
|
|
|
|
2019-11-05 07:06:53 -03:00
|
|
|
|
/** Wrapper to return mockable type */
|
|
|
|
|
inline std::chrono::microseconds PoissonNextSend(std::chrono::microseconds now, std::chrono::seconds average_interval)
|
|
|
|
|
{
|
|
|
|
|
return std::chrono::microseconds{PoissonNextSend(now.count(), average_interval.count())};
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-28 16:21:03 -04:00
|
|
|
|
#endif // BITCOIN_NET_H
|