2010-08-29 16:58:15 +00:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2020-01-15 02:17:38 +07:00
|
|
|
// Copyright (c) 2009-2020 The Bitcoin Core developers
|
2014-12-13 12:09:33 +08:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 22:02:28 +08:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 00:13:08 -05:00
|
|
|
|
2011-05-15 09:11:04 +02:00
|
|
|
#ifndef BITCOIN_NET_H
|
|
|
|
#define BITCOIN_NET_H
|
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <addrdb.h>
|
|
|
|
#include <addrman.h>
|
|
|
|
#include <amount.h>
|
|
|
|
#include <bloom.h>
|
|
|
|
#include <compat.h>
|
2018-08-24 14:48:23 -07:00
|
|
|
#include <crypto/siphash.h>
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <hash.h>
|
|
|
|
#include <limitedmap.h>
|
|
|
|
#include <netaddress.h>
|
2019-06-20 18:37:51 +09:00
|
|
|
#include <net_permissions.h>
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <policy/feerate.h>
|
|
|
|
#include <protocol.h>
|
|
|
|
#include <random.h>
|
|
|
|
#include <streams.h>
|
|
|
|
#include <sync.h>
|
|
|
|
#include <threadinterrupt.h>
|
2020-04-11 18:47:17 +03:00
|
|
|
#include <uint256.h>
|
2013-04-13 00:13:08 -05:00
|
|
|
|
2016-05-20 16:19:26 +00:00
|
|
|
#include <atomic>
|
2019-12-29 13:04:02 -08:00
|
|
|
#include <cstdint>
|
2011-05-15 09:11:04 +02:00
|
|
|
#include <deque>
|
2020-05-16 21:05:44 -04:00
|
|
|
#include <map>
|
2016-12-27 17:12:44 -05:00
|
|
|
#include <thread>
|
2016-04-16 14:47:18 -04:00
|
|
|
#include <memory>
|
2016-12-27 17:12:44 -05:00
|
|
|
#include <condition_variable>
|
2011-05-15 09:11:04 +02:00
|
|
|
|
2011-10-07 11:02:21 -04:00
|
|
|
#ifndef WIN32
|
2011-05-15 09:11:04 +02:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
2010-08-29 16:58:15 +00:00
|
|
|
|
2013-06-06 00:04:33 -07:00
|
|
|
|
2015-04-02 12:04:59 -04:00
|
|
|
class CScheduler;
|
2013-04-13 00:13:08 -05:00
|
|
|
class CNode;
|
2017-10-05 16:40:43 -04:00
|
|
|
class BanMan;
|
2020-04-11 18:47:17 +03:00
|
|
|
struct bilingual_str;
|
2010-08-29 16:58:15 +00:00
|
|
|
|
2019-08-16 17:45:13 +09:00
|
|
|
/** Default for -whitelistrelay. */
|
|
|
|
static const bool DEFAULT_WHITELISTRELAY = true;
|
|
|
|
/** Default for -whitelistforcerelay. */
|
|
|
|
static const bool DEFAULT_WHITELISTFORCERELAY = false;
|
|
|
|
|
2013-10-15 00:34:20 +02: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 15:34:40 +01: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 18:54:50 +01: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 11:34:40 -04:00
|
|
|
/** Maximum length of the user agent string in `version` message */
|
2015-07-31 18:05:42 +02:00
|
|
|
static const unsigned int MAX_SUBVERSION_LENGTH = 256;
|
2019-03-09 12:55:06 -05: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 04:39:26 +00:00
|
|
|
/** Maximum number of addnode outgoing nodes */
|
|
|
|
static const int MAX_ADDNODE_CONNECTIONS = 8;
|
2019-03-09 12:55:06 -05:00
|
|
|
/** Maximum number of block-relay-only outgoing connections */
|
2020-06-08 22:04:07 -07: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 13:02:22 +02:00
|
|
|
/** -listen default */
|
|
|
|
static const bool DEFAULT_LISTEN = true;
|
2014-05-05 21:06:14 +02:00
|
|
|
/** -upnp default */
|
|
|
|
#ifdef USE_UPNP
|
|
|
|
static const bool DEFAULT_UPNP = USE_UPNP;
|
|
|
|
#else
|
|
|
|
static const bool DEFAULT_UPNP = false;
|
|
|
|
#endif
|
2015-08-01 10:41:21 -07:00
|
|
|
/** The maximum number of peer connections to maintain. */
|
|
|
|
static const unsigned int DEFAULT_MAX_PEER_CONNECTIONS = 125;
|
2015-11-06 00:05:06 +01:00
|
|
|
/** The default for -maxuploadtarget. 0 = Unlimited */
|
|
|
|
static const uint64_t DEFAULT_MAX_UPLOAD_TARGET = 0;
|
2016-09-12 15:04:20 -04:00
|
|
|
/** The default timeframe for -maxuploadtarget. 1 day. */
|
|
|
|
static const uint64_t MAX_UPLOAD_TIMEFRAME = 60 * 60 * 24;
|
2015-11-14 04:47:53 -08:00
|
|
|
/** Default for blocks only*/
|
|
|
|
static const bool DEFAULT_BLOCKSONLY = false;
|
2018-11-15 15:30:26 -08:00
|
|
|
/** -peertimeout default */
|
|
|
|
static const int64_t DEFAULT_PEER_CONNECT_TIMEOUT = 60;
|
2010-08-29 16:58:15 +00:00
|
|
|
|
2015-06-27 19:21:41 +00: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 15:00:23 -04:00
|
|
|
typedef int64_t NodeId;
|
2016-05-06 11:50:24 -07:00
|
|
|
|
2016-04-16 18:12:58 -04:00
|
|
|
struct AddedNodeInfo
|
|
|
|
{
|
|
|
|
std::string strAddedNode;
|
|
|
|
CService resolvedAddress;
|
|
|
|
bool fConnected;
|
|
|
|
bool fInbound;
|
|
|
|
};
|
|
|
|
|
2016-04-16 18:30:03 -04:00
|
|
|
class CNodeStats;
|
2016-05-25 21:26:46 -04:00
|
|
|
class CClientUIInterface;
|
|
|
|
|
2016-11-10 17:05:23 -05: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 19:48:11 +02:00
|
|
|
std::string m_type;
|
2016-11-10 17:05:23 -05:00
|
|
|
};
|
|
|
|
|
2020-08-12 13:57:13 -07: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 11:43:57 -07: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 18:09:24 -07:00
|
|
|
enum class ConnectionType {
|
2020-08-13 21:58:08 -07: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,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Feeler connections are short lived connections used to increase the
|
|
|
|
* number of connectable addresses in our AddrMan. Approximately every
|
|
|
|
* FEELER_INTERVAL, we attempt to connect to a random address from the new
|
|
|
|
* table. If successful, we add it to the tried table.
|
|
|
|
*/
|
|
|
|
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 18:09:24 -07:00
|
|
|
};
|
2017-10-05 13:10:58 -04:00
|
|
|
|
2017-07-06 13:40:09 -04:00
|
|
|
class NetEventsInterface;
|
2016-04-16 14:47:18 -04:00
|
|
|
class CConnman
|
|
|
|
{
|
|
|
|
public:
|
2016-04-16 18:30:03 -04: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 12:55:06 -05:00
|
|
|
int m_max_outbound_full_relay = 0;
|
|
|
|
int m_max_outbound_block_relay = 0;
|
2016-12-11 04:39:26 +00:00
|
|
|
int nMaxAddnode = 0;
|
2016-08-31 13:17:28 -04: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 13:10:58 -04:00
|
|
|
BanMan* m_banman = nullptr;
|
2016-05-27 00:00:02 -04:00
|
|
|
unsigned int nSendBufferMaxSize = 0;
|
|
|
|
unsigned int nReceiveFloodSize = 0;
|
2016-09-12 15:04:20 -04:00
|
|
|
uint64_t nMaxOutboundTimeframe = 0;
|
|
|
|
uint64_t nMaxOutboundLimit = 0;
|
2018-11-15 15:30:26 -08:00
|
|
|
int64_t m_peer_connect_timeout = DEFAULT_PEER_CONNECT_TIMEOUT;
|
2017-05-27 12:00:37 +02:00
|
|
|
std::vector<std::string> vSeedNodes;
|
2019-06-20 18:37:51 +09:00
|
|
|
std::vector<NetWhitelistPermissions> vWhitelistedRange;
|
|
|
|
std::vector<NetWhitebindPermissions> vWhiteBinds;
|
|
|
|
std::vector<CService> vBinds;
|
2017-06-15 09:39:07 +02:00
|
|
|
bool m_use_addrman_outgoing = true;
|
|
|
|
std::vector<std::string> m_specified_outgoing;
|
2017-09-11 16:13:46 +02:00
|
|
|
std::vector<std::string> m_added_nodes;
|
2019-12-24 13:18:44 -05: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 14:02:36 +02:00
|
|
|
|
|
|
|
void Init(const Options& connOptions) {
|
|
|
|
nLocalServices = connOptions.nLocalServices;
|
|
|
|
nMaxConnections = connOptions.nMaxConnections;
|
2019-03-09 12:55:06 -05: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 23:29:01 +00: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 14:02:36 +02:00
|
|
|
nMaxAddnode = connOptions.nMaxAddnode;
|
|
|
|
nMaxFeeler = connOptions.nMaxFeeler;
|
2019-03-09 12:55:06 -05: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 14:02:36 +02:00
|
|
|
nBestHeight = connOptions.nBestHeight;
|
|
|
|
clientInterface = connOptions.uiInterface;
|
2017-10-05 13:10:58 -04: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 14:02:36 +02:00
|
|
|
nSendBufferMaxSize = connOptions.nSendBufferMaxSize;
|
|
|
|
nReceiveFloodSize = connOptions.nReceiveFloodSize;
|
2018-11-15 15:30:26 -08:00
|
|
|
m_peer_connect_timeout = connOptions.m_peer_connect_timeout;
|
2017-11-21 18:02:57 +01: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 14:02:36 +02:00
|
|
|
vWhitelistedRange = connOptions.vWhitelistedRange;
|
2017-11-21 18:02:57 +01: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 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
2020-07-09 10:07:47 +03:00
|
|
|
CConnman(uint64_t seed0, uint64_t seed1, bool network_active = true);
|
2016-04-16 14:47:18 -04: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 14:02:36 +02:00
|
|
|
bool Start(CScheduler& scheduler, const Options& options);
|
2019-01-19 14:49:29 +01:00
|
|
|
|
2020-03-28 10:44:53 -04:00
|
|
|
void StopThreads();
|
|
|
|
void StopNodes();
|
|
|
|
void Stop()
|
|
|
|
{
|
|
|
|
StopThreads();
|
|
|
|
StopNodes();
|
|
|
|
};
|
2019-01-19 14:49:29 +01:00
|
|
|
|
2016-12-27 17:12:44 -05:00
|
|
|
void Interrupt();
|
2013-03-26 02:38:24 +01:00
|
|
|
bool GetNetworkActive() const { return fNetworkActive; };
|
2018-08-22 23:29:01 +00:00
|
|
|
bool GetUseAddrmanOutgoing() const { return m_use_addrman_outgoing; };
|
2013-03-26 02:33:25 +01:00
|
|
|
void SetNetworkActive(bool active);
|
2020-08-10 12:21:07 -07:00
|
|
|
void OpenNetworkConnection(const CAddress& addrConnect, bool fCountFailure, CSemaphoreGrant* grantOutbound, const char* strDest, ConnectionType conn_type);
|
2016-04-17 20:21:58 -04:00
|
|
|
bool CheckIncomingNonce(uint64_t nonce);
|
2016-04-16 15:46:00 -04:00
|
|
|
|
2016-04-16 19:13:12 -04:00
|
|
|
bool ForNode(NodeId id, std::function<bool(CNode* pnode)> func);
|
2016-06-19 21:42:15 -04:00
|
|
|
|
2016-11-10 20:17:30 -05:00
|
|
|
void PushMessage(CNode* pnode, CSerializedNetMsg&& msg);
|
2016-09-12 20:00:33 -04:00
|
|
|
|
2020-09-19 11: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 20:34:57 -05:00
|
|
|
for (auto&& node : vNodes) {
|
|
|
|
if (NodeFullyConnected(node))
|
|
|
|
func(node);
|
|
|
|
}
|
2016-06-19 21:42:15 -04:00
|
|
|
};
|
|
|
|
|
2020-09-19 11:52:27 +03:00
|
|
|
void ForEachNode(const NodeFn& func) const
|
2016-06-19 21:42:15 -04:00
|
|
|
{
|
|
|
|
LOCK(cs_vNodes);
|
2017-01-20 20:34:57 -05: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 20:34:57 -05: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 20:34:57 -05:00
|
|
|
for (auto&& node : vNodes) {
|
|
|
|
if (NodeFullyConnected(node))
|
|
|
|
pre(node);
|
|
|
|
}
|
2016-06-19 21:42:15 -04:00
|
|
|
post();
|
|
|
|
};
|
2016-04-16 19:13:12 -04:00
|
|
|
|
2016-04-16 17:43:11 -04:00
|
|
|
// Addrman functions
|
|
|
|
void SetServices(const CService &addr, ServiceFlags nServices);
|
|
|
|
void MarkAddressGood(const CAddress& addr);
|
2020-07-23 18:10:35 +01:00
|
|
|
bool AddNewAddresses(const std::vector<CAddress>& vAddr, const CAddress& addrFrom, int64_t nTimePenalty = 0);
|
2020-07-23 15:34:40 +01: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 18:51:34 +03: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 12:41:26 +03:00
|
|
|
std::vector<CAddress> GetAddresses(CNode& requestor, size_t max_addresses, size_t max_pct);
|
2016-04-16 17:43:11 -04:00
|
|
|
|
2019-03-09 12:55:06 -05:00
|
|
|
// This allows temporarily exceeding m_max_outbound_full_relay, with the goal of finding
|
2017-10-23 13:36:15 -04: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 18:12:58 -04:00
|
|
|
bool AddNode(const std::string& node);
|
|
|
|
bool RemoveAddedNode(const std::string& node);
|
|
|
|
std::vector<AddedNodeInfo> GetAddedNodeInfo();
|
|
|
|
|
2016-04-16 18:30:03 -04:00
|
|
|
size_t GetNodeCount(NumConnections num);
|
|
|
|
void GetNodeStats(std::vector<CNodeStats>& vstats);
|
|
|
|
bool DisconnectNode(const std::string& node);
|
2017-10-04 18:25:34 -04:00
|
|
|
bool DisconnectNode(const CSubNet& subnet);
|
|
|
|
bool DisconnectNode(const CNetAddr& addr);
|
2016-04-16 18:30:03 -04:00
|
|
|
bool DisconnectNode(NodeId id);
|
|
|
|
|
2019-09-10 13:09:12 -04: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 00:04:58 -04:00
|
|
|
ServiceFlags GetLocalServices() const;
|
|
|
|
|
2016-04-18 21:44:42 -04: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-24 19:44:54 -08: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 21:44:42 -04:00
|
|
|
bool OutboundTargetReached(bool historicalBlockServingLimit);
|
|
|
|
|
2019-01-24 19:44:54 -08:00
|
|
|
//! response the bytes left in the current max outbound cycle
|
|
|
|
//! in case of no limit, it will always response 0
|
2016-04-18 21:44:42 -04:00
|
|
|
uint64_t GetOutboundTargetBytesLeft();
|
|
|
|
|
2019-01-24 19:44:54 -08: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 21:44:42 -04: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 12:48:10 +02:00
|
|
|
/** Get a unique deterministic randomizer. */
|
2017-01-24 02:32:52 +01:00
|
|
|
CSipHasher GetDeterministicRandomizer(uint64_t id) const;
|
2016-05-24 16:42:17 -04:00
|
|
|
|
2016-12-31 02:05:09 -05:00
|
|
|
unsigned int GetReceiveFloodSize() const;
|
2017-01-14 16:00:00 -08:00
|
|
|
|
|
|
|
void WakeMessageHandler();
|
2018-05-21 12:02:40 -07: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 13:55:40 -08:00
|
|
|
void SetAsmap(std::vector<bool> asmap) { addrman.m_asmap = std::move(asmap); }
|
2019-12-24 13:18:44 -05:00
|
|
|
|
2016-04-16 14:47:18 -04:00
|
|
|
private:
|
2016-04-16 15:46:00 -04:00
|
|
|
struct ListenSocket {
|
2019-06-20 18:37:51 +09:00
|
|
|
public:
|
2016-04-16 15:46:00 -04:00
|
|
|
SOCKET socket;
|
2019-06-20 18:37:51 +09: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 15:46:00 -04:00
|
|
|
};
|
|
|
|
|
2020-04-11 18:47:17 +03:00
|
|
|
bool BindListenPort(const CService& bindAddr, bilingual_str& strError, NetPermissionFlags permissions);
|
2019-06-20 18:37:51 +09:00
|
|
|
bool Bind(const CService& addr, unsigned int flags, NetPermissionFlags permissions);
|
|
|
|
bool InitBinds(const std::vector<CService>& binds, const std::vector<NetWhitebindPermissions>& whiteBinds);
|
2016-04-16 14:47:18 -04:00
|
|
|
void ThreadOpenAddedConnections();
|
2020-07-17 14:56:34 -07:00
|
|
|
void AddAddrFetch(const std::string& strDest);
|
|
|
|
void ProcessAddrFetch();
|
2017-06-15 09:39:07 +02:00
|
|
|
void ThreadOpenConnections(std::vector<std::string> connect);
|
2016-04-16 14:47:18 -04:00
|
|
|
void ThreadMessageHandler();
|
|
|
|
void AcceptConnection(const ListenSocket& hListenSocket);
|
2018-09-24 16:36:58 -04:00
|
|
|
void DisconnectNodes();
|
2018-09-24 16:30:53 -04:00
|
|
|
void NotifyNumConnectionsChanged();
|
2018-09-24 16:43:00 -04:00
|
|
|
void InactivityCheck(CNode *pnode);
|
2018-09-25 15:32:07 -04:00
|
|
|
bool GenerateSelectSet(std::set<SOCKET> &recv_set, std::set<SOCKET> &send_set, std::set<SOCKET> &error_set);
|
2018-09-26 21:51:46 -04:00
|
|
|
void SocketEvents(std::set<SOCKET> &recv_set, std::set<SOCKET> &send_set, std::set<SOCKET> &error_set);
|
2018-09-24 17:03:17 -04:00
|
|
|
void SocketHandler();
|
2016-04-16 14:47:18 -04:00
|
|
|
void ThreadSocketHandler();
|
|
|
|
void ThreadDNSAddressSeed();
|
2016-04-16 15:46:00 -04:00
|
|
|
|
2017-01-24 02:32:52 +01:00
|
|
|
uint64_t CalculateKeyedNetGroup(const CAddress& ad) const;
|
2016-09-09 12:48:10 +02:00
|
|
|
|
2016-04-16 19:13:12 -04: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 17:33:06 -07:00
|
|
|
CNode* ConnectNode(CAddress addrConnect, const char *pszDest, bool fCountFailure, ConnectionType conn_type);
|
2019-06-20 18:37:51 +09:00
|
|
|
void AddWhitelistPermissionFlags(NetPermissionFlags& flags, const CNetAddr &addr) const;
|
2016-04-17 18:34:32 -04:00
|
|
|
|
2016-05-24 18:59:16 -04:00
|
|
|
void DeleteNode(CNode* pnode);
|
2016-04-17 20:20:34 -04:00
|
|
|
|
|
|
|
NodeId GetNewNodeId();
|
|
|
|
|
2017-01-24 02:32:52 +01:00
|
|
|
size_t SocketSendData(CNode *pnode) const;
|
2016-04-16 17:43:11 -04:00
|
|
|
void DumpAddresses();
|
2016-04-16 15:59:10 -04:00
|
|
|
|
2016-04-18 21:44:42 -04:00
|
|
|
// Network stats
|
|
|
|
void RecordBytesRecv(uint64_t bytes);
|
|
|
|
void RecordBytesSent(uint64_t bytes);
|
|
|
|
|
2017-01-20 20:34:57 -05:00
|
|
|
// Whether the node should be passed out in ForEach* callbacks
|
|
|
|
static bool NodeFullyConnected(const CNode* pnode);
|
|
|
|
|
2016-04-18 21:44:42 -04:00
|
|
|
// Network usage totals
|
2020-01-07 23:14:15 +07:00
|
|
|
RecursiveMutex cs_totalBytesRecv;
|
|
|
|
RecursiveMutex cs_totalBytesSent;
|
2020-01-10 14:55:10 -05:00
|
|
|
uint64_t nTotalBytesRecv GUARDED_BY(cs_totalBytesRecv) {0};
|
|
|
|
uint64_t nTotalBytesSent GUARDED_BY(cs_totalBytesSent) {0};
|
2016-04-18 21:44:42 -04:00
|
|
|
|
|
|
|
// outbound limit & stats
|
2017-11-23 07:55:45 +01: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 21:44:42 -04:00
|
|
|
|
2018-11-15 15:30:26 -08:00
|
|
|
// P2P timeout in seconds
|
|
|
|
int64_t m_peer_connect_timeout;
|
|
|
|
|
2016-04-17 18:34:32 -04:00
|
|
|
// Whitelisted ranges. Any node connecting from these is automatically
|
|
|
|
// whitelisted (as well as those connecting to whitelisted binds).
|
2019-06-20 18:37:51 +09:00
|
|
|
std::vector<NetWhitelistPermissions> vWhitelistedRange;
|
2016-04-17 18:34:32 -04:00
|
|
|
|
2019-01-05 12:02:12 +01:00
|
|
|
unsigned int nSendBufferMaxSize{0};
|
|
|
|
unsigned int nReceiveFloodSize{0};
|
2016-04-19 00:01:19 -04:00
|
|
|
|
2016-04-16 15:46:00 -04:00
|
|
|
std::vector<ListenSocket> vhListenSocket;
|
2019-01-05 12:02:12 +01:00
|
|
|
std::atomic<bool> fNetworkActive{true};
|
|
|
|
bool fAddressesInitialized{false};
|
2016-04-16 17:43:11 -04:00
|
|
|
CAddrMan addrman;
|
2020-07-17 14:56:34 -07:00
|
|
|
std::deque<std::string> m_addr_fetches GUARDED_BY(m_addr_fetches_mutex);
|
|
|
|
RecursiveMutex m_addr_fetches_mutex;
|
2017-11-23 07:55:45 +01:00
|
|
|
std::vector<std::string> vAddedNodes GUARDED_BY(cs_vAddedNodes);
|
2020-01-07 23:14:15 +07:00
|
|
|
RecursiveMutex cs_vAddedNodes;
|
2019-01-19 14:49:29 +01:00
|
|
|
std::vector<CNode*> vNodes GUARDED_BY(cs_vNodes);
|
2016-05-27 01:00:01 -04:00
|
|
|
std::list<CNode*> vNodesDisconnected;
|
2020-01-07 23:14:15 +07:00
|
|
|
mutable RecursiveMutex cs_vNodes;
|
2019-01-05 12:02:12 +01:00
|
|
|
std::atomic<NodeId> nLastNodeId{0};
|
|
|
|
unsigned int nPrevNodeCount{0};
|
2016-04-19 00:04:58 -04: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 13:39:56 +03: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 12:41:26 +03: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 12:41:26 +03:00
|
|
|
* Indexing by local socket prevents leakage when a node has multiple
|
|
|
|
* listening addresses on the same network.
|
|
|
|
*
|
2020-08-11 13:39:56 +03: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 13:39:56 +03: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 12:41:26 +03:00
|
|
|
std::map<uint64_t, CachedAddrResponse> m_addr_response_caches;
|
2020-05-16 21:05:44 -04:00
|
|
|
|
2019-09-10 13:09:12 -04: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 00:04:58 -04:00
|
|
|
ServiceFlags nLocalServices;
|
|
|
|
|
2017-08-09 16:07:22 +02:00
|
|
|
std::unique_ptr<CSemaphore> semOutbound;
|
|
|
|
std::unique_ptr<CSemaphore> semAddnode;
|
2016-05-22 09:52:03 +02:00
|
|
|
int nMaxConnections;
|
2019-03-09 12:55:06 -05: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 04:39:26 +00:00
|
|
|
int nMaxAddnode;
|
2016-08-31 13:17:28 -04:00
|
|
|
int nMaxFeeler;
|
2019-03-09 12:55:06 -05:00
|
|
|
int m_max_outbound;
|
2018-08-22 23:29:01 +00: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 10:24:43 +01:00
|
|
|
/** Pointer to this node's banman. May be nullptr - check existence before dereferencing. */
|
2017-10-05 13:10:58 -04:00
|
|
|
BanMan* m_banman;
|
2016-09-09 12:48:10 +02:00
|
|
|
|
|
|
|
/** SipHasher seeds for deterministic randomness */
|
|
|
|
const uint64_t nSeed0, nSeed1;
|
2016-12-27 17:12:44 -05:00
|
|
|
|
2016-12-31 02:05:26 -05:00
|
|
|
/** flag for waking the message processor. */
|
2019-05-30 13:44:02 +10:00
|
|
|
bool fMsgProcWake GUARDED_BY(mutexMsgProc);
|
2016-12-31 02:05:26 -05:00
|
|
|
|
2016-12-27 17:12:44 -05:00
|
|
|
std::condition_variable condMsgProc;
|
2017-11-03 07:49:16 -04:00
|
|
|
Mutex mutexMsgProc;
|
2019-01-05 12:02:12 +01:00
|
|
|
std::atomic<bool> flagInterruptMsgProc{false};
|
2016-12-27 17:12:44 -05:00
|
|
|
|
|
|
|
CThreadInterrupt interruptNet;
|
|
|
|
|
|
|
|
std::thread threadDNSAddressSeed;
|
|
|
|
std::thread threadSocketHandler;
|
|
|
|
std::thread threadOpenAddedConnections;
|
|
|
|
std::thread threadOpenConnections;
|
|
|
|
std::thread threadMessageHandler;
|
2017-10-23 13:36:15 -04:00
|
|
|
|
|
|
|
/** flag for deciding to connect to an extra outbound peer,
|
2019-03-09 12:55:06 -05:00
|
|
|
* in excess of m_max_outbound_full_relay
|
2017-10-23 13:36:15 -04:00
|
|
|
* This takes the place of a feeler connection */
|
|
|
|
std::atomic_bool m_try_another_outbound_peer;
|
2017-10-24 09:26:05 +01:00
|
|
|
|
2018-07-16 14:07:52 -07:00
|
|
|
std::atomic<int64_t> m_next_send_inv_to_incoming{0};
|
2018-05-21 12:02:40 -07:00
|
|
|
|
2017-10-24 09:26:05 +01:00
|
|
|
friend struct CConnmanTest;
|
2020-04-04 07:30:51 +08:00
|
|
|
friend struct ConnmanTestMsg;
|
2016-04-16 14:47:18 -04:00
|
|
|
};
|
2018-02-07 17:42:39 -05:00
|
|
|
void Discover();
|
2018-02-07 17:20:16 -05:00
|
|
|
void StartMapPort();
|
|
|
|
void InterruptMapPort();
|
|
|
|
void StopMapPort();
|
2019-12-29 13:04:02 -08:00
|
|
|
uint16_t GetListenPort();
|
2010-08-29 16:58:15 +00:00
|
|
|
|
2015-03-05 04:01:01 -08:00
|
|
|
struct CombinerAll
|
|
|
|
{
|
|
|
|
typedef bool result_type;
|
|
|
|
|
|
|
|
template<typename I>
|
|
|
|
bool operator()(I first, I last) const
|
|
|
|
{
|
|
|
|
while (first != last) {
|
|
|
|
if (!(*first)) return false;
|
|
|
|
++first;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-07-06 13:40:09 -04:00
|
|
|
/**
|
|
|
|
* Interface for message handling
|
|
|
|
*/
|
|
|
|
class NetEventsInterface
|
2013-06-05 20:21:41 -07: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-02 10:26:47 +08: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 06:04:42 +01: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 20:21:41 -07:00
|
|
|
};
|
|
|
|
|
2012-02-12 13:45:24 +01:00
|
|
|
enum
|
|
|
|
{
|
2012-05-10 20:35:13 +02:00
|
|
|
LOCAL_NONE, // unknown
|
|
|
|
LOCAL_IF, // address a local interface listens on
|
2012-05-11 15:28:59 +02:00
|
|
|
LOCAL_BIND, // address explicit bound to
|
2012-05-10 20:35:13 +02:00
|
|
|
LOCAL_UPNP, // address reported by UPnP
|
|
|
|
LOCAL_MANUAL, // address explicitly specified (-externalip=)
|
2012-02-19 20:44:35 +01:00
|
|
|
|
|
|
|
LOCAL_MAX
|
2012-02-12 13:45:24 +01:00
|
|
|
};
|
|
|
|
|
2014-07-20 23:32:25 -07:00
|
|
|
bool IsPeerAddrLocalGood(CNode *pnode);
|
2016-02-12 11:35:32 -07:00
|
|
|
void AdvertiseLocal(CNode *pnode);
|
2019-01-09 16:41:37 -08: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 20:35:13 +02:00
|
|
|
bool AddLocal(const CService& addr, int nScore = LOCAL_NONE);
|
2012-05-13 01:26:14 +02:00
|
|
|
bool AddLocal(const CNetAddr& addr, int nScore = LOCAL_NONE);
|
2018-07-27 08:22:42 +02:00
|
|
|
void RemoveLocal(const CService& addr);
|
2012-05-10 20:35:13 +02:00
|
|
|
bool SeenLocal(const CService& addr);
|
|
|
|
bool IsLocal(const CService& addr);
|
2017-08-07 07:36:37 +02:00
|
|
|
bool GetLocal(CService &addr, const CNetAddr *paddrPeer = nullptr);
|
2016-04-19 00:04:58 -04:00
|
|
|
CAddress GetLocalAddress(const CNetAddr *paddrPeer, ServiceFlags nLocalServices);
|
2012-02-12 13:45:24 +01:00
|
|
|
|
2012-04-10 20:22:04 +02:00
|
|
|
|
2012-05-24 19:02:21 +02:00
|
|
|
extern bool fDiscover;
|
2014-05-29 12:33:17 +02:00
|
|
|
extern bool fListen;
|
2019-05-09 09:16:29 -04:00
|
|
|
extern bool g_relay_txes;
|
2014-11-16 03:19:23 -08:00
|
|
|
|
2015-07-31 18:05:42 +02:00
|
|
|
/** Subversion as sent to the P2P network in `version` messages */
|
|
|
|
extern std::string strSubVersion;
|
|
|
|
|
2014-05-05 13:22:28 +02:00
|
|
|
struct LocalServiceInfo {
|
|
|
|
int nScore;
|
|
|
|
int nPort;
|
|
|
|
};
|
|
|
|
|
2020-01-07 23:14:15 +07:00
|
|
|
extern RecursiveMutex cs_mapLocalHost;
|
2018-10-08 15:34:39 +02:00
|
|
|
extern std::map<CNetAddr, LocalServiceInfo> mapLocalHost GUARDED_BY(cs_mapLocalHost);
|
2019-01-02 13:13:50 +01:00
|
|
|
|
|
|
|
extern const std::string NET_MESSAGE_COMMAND_OTHER;
|
2015-08-25 16:30:31 +02:00
|
|
|
typedef std::map<std::string, uint64_t> mapMsgCmdSize; //command, total bytes
|
2010-08-29 16:58:15 +00:00
|
|
|
|
2012-06-29 17:24:53 -04:00
|
|
|
class CNodeStats
|
|
|
|
{
|
|
|
|
public:
|
2013-11-18 01:25:17 +01:00
|
|
|
NodeId nodeid;
|
2016-06-08 19:12:22 +02:00
|
|
|
ServiceFlags nServices;
|
2015-11-20 18:51:44 -05:00
|
|
|
bool fRelayTxes;
|
2013-04-13 00:13:08 -05:00
|
|
|
int64_t nLastSend;
|
|
|
|
int64_t nLastRecv;
|
2020-08-09 21:49:31 +02:00
|
|
|
int64_t nLastTXTime;
|
|
|
|
int64_t nLastBlockTime;
|
2013-04-13 00:13:08 -05:00
|
|
|
int64_t nTimeConnected;
|
2014-12-15 11:06:15 +01:00
|
|
|
int64_t nTimeOffset;
|
2012-06-29 17:24:53 -04:00
|
|
|
std::string addrName;
|
|
|
|
int nVersion;
|
2013-11-26 12:52:21 +01:00
|
|
|
std::string cleanSubVer;
|
2012-06-29 17:24:53 -04:00
|
|
|
bool fInbound;
|
2017-10-05 11:49:16 -04:00
|
|
|
bool m_manual_connection;
|
2012-06-29 17:24:53 -04:00
|
|
|
int nStartingHeight;
|
2013-04-13 00:13:08 -05:00
|
|
|
uint64_t nSendBytes;
|
2015-08-25 16:30:31 +02:00
|
|
|
mapMsgCmdSize mapSendBytesPerMsgCmd;
|
2013-04-13 00:13:08 -05:00
|
|
|
uint64_t nRecvBytes;
|
2015-08-25 16:30:31 +02:00
|
|
|
mapMsgCmdSize mapRecvBytesPerMsgCmd;
|
2019-06-20 18:37:51 +09:00
|
|
|
NetPermissionFlags m_permissionFlags;
|
2019-06-21 11:42:04 +09:00
|
|
|
bool m_legacyWhitelisted;
|
2020-03-03 08:35:01 -05:00
|
|
|
int64_t m_ping_usec;
|
2020-03-03 08:42:50 -05:00
|
|
|
int64_t m_ping_wait_usec;
|
2020-03-03 08:40:29 -05:00
|
|
|
int64_t m_min_ping_usec;
|
2018-06-22 18:53:39 +10:00
|
|
|
CAmount minFeeFilter;
|
2017-05-30 11:59:42 +02:00
|
|
|
// Our address, as reported by the peer
|
2013-08-21 22:50:19 -07:00
|
|
|
std::string addrLocal;
|
2017-05-30 11:59:42 +02:00
|
|
|
// Address of this peer
|
2016-10-04 19:27:11 -04:00
|
|
|
CAddress addr;
|
2017-05-30 11:59:42 +02:00
|
|
|
// Bind address of our side of the connection
|
|
|
|
CAddress addrBind;
|
2019-12-24 13:26:46 -05:00
|
|
|
uint32_t m_mapped_as;
|
2020-08-12 13:57:13 -07:00
|
|
|
std::string m_conn_type_string;
|
2012-06-29 17:24:53 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-06-13 10:39:44 +02:00
|
|
|
/** Transport protocol agnostic message container.
|
|
|
|
* Ideally it should only contain receive time, payload,
|
|
|
|
* command and size.
|
|
|
|
*/
|
2012-11-15 19:41:12 -05:00
|
|
|
class CNetMessage {
|
2019-06-13 10:39:44 +02: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
|
2019-06-13 10:39:44 +02:00
|
|
|
bool m_valid_netmagic = false;
|
|
|
|
bool m_valid_header = false;
|
|
|
|
bool m_valid_checksum = false;
|
2020-04-14 13:24:18 -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 10:39:44 +02:00
|
|
|
std::string m_command;
|
|
|
|
|
2019-10-22 15:28:32 +02:00
|
|
|
CNetMessage(CDataStream&& recv_in) : m_recv(std::move(recv_in)) {}
|
2019-06-13 10:39:44 +02: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 11:25:54 +02: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-04-14 13:24:18 -04:00
|
|
|
virtual CNetMessage GetMessage(const CMessageHeader::MessageStartChars& message_start, std::chrono::microseconds time) = 0;
|
2019-06-13 11:25:54 +02:00
|
|
|
virtual ~TransportDeserializer() {}
|
|
|
|
};
|
|
|
|
|
2019-10-18 12:09:48 -07:00
|
|
|
class V1TransportDeserializer final : public TransportDeserializer
|
2019-06-13 11:25:54 +02:00
|
|
|
{
|
2016-10-30 18:02:16 -04:00
|
|
|
private:
|
|
|
|
mutable CHash256 hasher;
|
|
|
|
mutable uint256 data_hash;
|
2012-11-15 19:41:12 -05: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 11:25:54 +02:00
|
|
|
unsigned int nHdrPos;
|
2012-11-15 19:41:12 -05:00
|
|
|
unsigned int nDataPos;
|
|
|
|
|
2019-06-13 11:25:54 +02:00
|
|
|
const uint256& GetMessageHash() const;
|
|
|
|
int readHeader(const char *pch, unsigned int nBytes);
|
|
|
|
int readData(const char *pch, unsigned int nBytes);
|
2014-07-06 16:06:46 +02:00
|
|
|
|
2019-06-13 10:39:44 +02:00
|
|
|
void Reset() {
|
|
|
|
vRecv.clear();
|
|
|
|
hdrbuf.clear();
|
2012-11-15 19:41:12 -05:00
|
|
|
hdrbuf.resize(24);
|
|
|
|
in_data = false;
|
|
|
|
nHdrPos = 0;
|
|
|
|
nDataPos = 0;
|
2019-06-13 10:39:44 +02:00
|
|
|
data_hash.SetNull();
|
|
|
|
hasher.Reset();
|
2012-11-15 19:41:12 -05:00
|
|
|
}
|
2019-10-18 12:03:13 -07:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
V1TransportDeserializer(const CMessageHeader::MessageStartChars& pchMessageStartIn, int nTypeIn, int nVersionIn) : hdrbuf(nTypeIn, nVersionIn), hdr(pchMessageStartIn), vRecv(nTypeIn, nVersionIn) {
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
2019-10-18 12:09:48 -07:00
|
|
|
bool Complete() const override
|
2012-11-15 19:41:12 -05:00
|
|
|
{
|
|
|
|
if (!in_data)
|
|
|
|
return false;
|
|
|
|
return (hdr.nMessageSize == nDataPos);
|
|
|
|
}
|
2019-10-18 12:09:48 -07:00
|
|
|
void SetVersion(int nVersionIn) override
|
2012-11-15 19:41:12 -05:00
|
|
|
{
|
|
|
|
hdrbuf.SetVersion(nVersionIn);
|
|
|
|
vRecv.SetVersion(nVersionIn);
|
|
|
|
}
|
2019-10-18 12:09:48 -07:00
|
|
|
int Read(const char *pch, unsigned int nBytes) override {
|
2019-10-18 12:03:13 -07:00
|
|
|
int ret = in_data ? readData(pch, nBytes) : readHeader(pch, nBytes);
|
|
|
|
if (ret < 0) Reset();
|
|
|
|
return ret;
|
2019-06-13 11:25:54 +02:00
|
|
|
}
|
2020-04-14 13:24:18 -04:00
|
|
|
CNetMessage GetMessage(const CMessageHeader::MessageStartChars& message_start, std::chrono::microseconds time) override;
|
2019-06-13 10:39:44 +02:00
|
|
|
};
|
2012-11-15 19:41:12 -05:00
|
|
|
|
2019-08-07 15:56:24 +02: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 16:48:23 +02:00
|
|
|
/** Information about a peer */
|
2010-08-29 16:58:15 +00:00
|
|
|
class CNode
|
|
|
|
{
|
2016-09-12 20:00:33 -04:00
|
|
|
friend class CConnman;
|
2020-04-04 07:30:51 +08:00
|
|
|
friend struct ConnmanTestMsg;
|
|
|
|
|
2010-08-29 16:58:15 +00:00
|
|
|
public:
|
2019-06-13 10:39:44 +02:00
|
|
|
std::unique_ptr<TransportDeserializer> m_deserializer;
|
2019-08-07 15:56:24 +02:00
|
|
|
std::unique_ptr<TransportSerializer> m_serializer;
|
2019-06-13 10:39:44 +02:00
|
|
|
|
2010-08-29 16:58:15 +00:00
|
|
|
// socket
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<ServiceFlags> nServices{NODE_NONE};
|
2018-10-08 15:34:39 +02:00
|
|
|
SOCKET hSocket GUARDED_BY(cs_hSocket);
|
2019-01-05 06:11:04 -05: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 15:34:39 +02:00
|
|
|
std::deque<std::vector<unsigned char>> vSendMsg GUARDED_BY(cs_vSend);
|
2020-01-07 23:14:15 +07:00
|
|
|
RecursiveMutex cs_vSend;
|
|
|
|
RecursiveMutex cs_hSocket;
|
|
|
|
RecursiveMutex cs_vRecv;
|
2012-11-15 19:41:12 -05:00
|
|
|
|
2020-01-07 23:14:15 +07:00
|
|
|
RecursiveMutex cs_vProcessMsg;
|
2018-10-08 15:34:39 +02:00
|
|
|
std::list<CNetMessage> vProcessMsg GUARDED_BY(cs_vProcessMsg);
|
2019-01-05 06:11:04 -05:00
|
|
|
size_t nProcessQueueSize{0};
|
2016-12-31 02:05:28 -05:00
|
|
|
|
2020-01-07 23:14:15 +07:00
|
|
|
RecursiveMutex cs_sendProcessing;
|
2016-12-24 14:34:20 -05:00
|
|
|
|
2013-03-29 23:49:38 +01:00
|
|
|
std::deque<CInv> vRecvGetData;
|
2019-01-05 06:11:04 -05:00
|
|
|
uint64_t nRecvBytes GUARDED_BY(cs_vRecv){0};
|
2012-11-15 19:41:12 -05:00
|
|
|
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<int64_t> nLastSend{0};
|
|
|
|
std::atomic<int64_t> nLastRecv{0};
|
2017-02-06 11:42:49 -05:00
|
|
|
const int64_t nTimeConnected;
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<int64_t> nTimeOffset{0};
|
2017-05-30 11:59:42 +02:00
|
|
|
// Address of this peer
|
2016-05-25 15:38:32 +02:00
|
|
|
const CAddress addr;
|
2017-05-30 11:59:42 +02:00
|
|
|
// Bind address of our side of the connection
|
|
|
|
const CAddress addrBind;
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<int> nVersion{0};
|
2019-03-23 11:34:40 -04: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 21:07:36 +00:00
|
|
|
bool m_prefer_evict{false}; // This peer is preferred for eviction.
|
2019-06-20 18:37:51 +09:00
|
|
|
bool HasPermission(NetPermissionFlags permission) const {
|
|
|
|
return NetPermissions::HasFlag(m_permissionFlags, permission);
|
|
|
|
}
|
2019-06-21 11:42:04 +09:00
|
|
|
// This boolean is unusued in actual processing, only present for backward compatibility at RPC/QT level
|
|
|
|
bool m_legacyWhitelisted{false};
|
2019-01-05 06:11:04 -05: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 18:27:13 -05:00
|
|
|
// Setting fDisconnect to true will cause the node to be disconnected the
|
|
|
|
// next time DisconnectNodes() runs
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic_bool fDisconnect{false};
|
|
|
|
bool fSentAddr{false};
|
2012-05-10 18:44:07 +02:00
|
|
|
CSemaphoreGrant grantOutbound;
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<int> nRefCount{0};
|
2016-05-23 00:21:05 -07:00
|
|
|
|
2016-05-25 15:38:32 +02:00
|
|
|
const uint64_t nKeyedNetGroup;
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic_bool fPauseRecv{false};
|
|
|
|
std::atomic_bool fPauseSend{false};
|
2011-09-06 16:09:04 -04:00
|
|
|
|
2020-07-20 14:24:48 -07:00
|
|
|
bool IsOutboundOrBlockRelayConn() const {
|
2020-08-11 10:36:42 -07:00
|
|
|
switch (m_conn_type) {
|
2020-08-11 20:37:32 -07:00
|
|
|
case ConnectionType::OUTBOUND_FULL_RELAY:
|
2020-07-20 14:24:48 -07: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 15:26:27 -07:00
|
|
|
} // no default case, so the compiler can warn about missing cases
|
2020-07-20 14:24:48 -07:00
|
|
|
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
2020-06-02 21:23:44 -07:00
|
|
|
bool IsFullOutboundConn() const {
|
2020-08-11 20:37:32 -07:00
|
|
|
return m_conn_type == ConnectionType::OUTBOUND_FULL_RELAY;
|
2020-06-02 21:23:44 -07:00
|
|
|
}
|
|
|
|
|
2020-06-02 08:39:47 -07:00
|
|
|
bool IsManualConn() const {
|
|
|
|
return m_conn_type == ConnectionType::MANUAL;
|
|
|
|
}
|
|
|
|
|
2020-06-02 21:23:44 -07:00
|
|
|
bool IsBlockOnlyConn() const {
|
|
|
|
return m_conn_type == ConnectionType::BLOCK_RELAY;
|
|
|
|
}
|
|
|
|
|
2020-05-12 12:58:41 -07:00
|
|
|
bool IsFeelerConn() const {
|
|
|
|
return m_conn_type == ConnectionType::FEELER;
|
|
|
|
}
|
|
|
|
|
2020-07-28 13:17:16 -07:00
|
|
|
bool IsAddrFetchConn() const {
|
|
|
|
return m_conn_type == ConnectionType::ADDR_FETCH;
|
|
|
|
}
|
|
|
|
|
2020-07-28 13:39:38 -07:00
|
|
|
bool IsInboundConn() const {
|
|
|
|
return m_conn_type == ConnectionType::INBOUND;
|
|
|
|
}
|
|
|
|
|
2020-08-10 14:48:54 -07:00
|
|
|
/* Whether we send addr messages over this connection */
|
|
|
|
bool RelayAddrsWithConn() const
|
|
|
|
{
|
|
|
|
return m_conn_type != ConnectionType::BLOCK_RELAY;
|
|
|
|
}
|
|
|
|
|
2020-06-02 21:23:44 -07:00
|
|
|
bool ExpectServicesFromConn() const {
|
2020-08-11 10:36:42 -07:00
|
|
|
switch (m_conn_type) {
|
2020-06-02 21:23:44 -07:00
|
|
|
case ConnectionType::INBOUND:
|
|
|
|
case ConnectionType::MANUAL:
|
|
|
|
case ConnectionType::FEELER:
|
|
|
|
return false;
|
2020-08-11 20:37:32 -07:00
|
|
|
case ConnectionType::OUTBOUND_FULL_RELAY:
|
2020-06-02 21:23:44 -07:00
|
|
|
case ConnectionType::BLOCK_RELAY:
|
|
|
|
case ConnectionType::ADDR_FETCH:
|
|
|
|
return true;
|
2020-08-20 15:26:27 -07:00
|
|
|
} // no default case, so the compiler can warn about missing cases
|
2020-06-02 21:23:44 -07:00
|
|
|
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
2019-01-02 13:13:50 +01:00
|
|
|
protected:
|
2015-08-25 16:30:31 +02:00
|
|
|
mapMsgCmdSize mapSendBytesPerMsgCmd;
|
2018-10-08 15:34:39 +02:00
|
|
|
mapMsgCmdSize mapRecvBytesPerMsgCmd GUARDED_BY(cs_vRecv);
|
2015-08-25 16:30:31 +02:00
|
|
|
|
2010-08-29 16:58:15 +00:00
|
|
|
public:
|
|
|
|
uint256 hashContinue;
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<int> nStartingHeight{-1};
|
2010-08-29 16:58:15 +00:00
|
|
|
|
|
|
|
// flood relay
|
2011-05-15 09:11:04 +02:00
|
|
|
std::vector<CAddress> vAddrToSend;
|
2020-08-11 10:36:42 -07:00
|
|
|
std::unique_ptr<CRollingBloomFilter> m_addr_known{nullptr};
|
2019-01-05 06:11:04 -05:00
|
|
|
bool fGetAddr{false};
|
2020-03-27 18:00:29 -04: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 16:58:15 +00:00
|
|
|
|
2016-04-07 13:57:36 +02: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 15:34:39 +02:00
|
|
|
std::vector<uint256> vInventoryBlockToSend GUARDED_BY(cs_inventory);
|
2020-06-20 23:17:29 -04:00
|
|
|
Mutex cs_inventory;
|
2019-03-08 14:26:36 -05:00
|
|
|
|
|
|
|
struct TxRelay {
|
2020-01-07 23:14:15 +07:00
|
|
|
mutable RecursiveMutex cs_filter;
|
2019-03-08 14:26:36 -05: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 17:34:07 +02:00
|
|
|
std::unique_ptr<CBloomFilter> pfilter PT_GUARDED_BY(cs_filter) GUARDED_BY(cs_filter){nullptr};
|
2019-03-08 14:26:36 -05:00
|
|
|
|
2020-01-07 23:14:15 +07:00
|
|
|
mutable RecursiveMutex cs_tx_inventory;
|
2019-03-08 14:26:36 -05: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 13:31:59 -04:00
|
|
|
std::atomic<std::chrono::seconds> m_last_mempool_req{std::chrono::seconds{0}};
|
2019-10-30 15:37:35 -07:00
|
|
|
std::chrono::microseconds nNextInvSend{0};
|
2019-03-08 14:26:36 -05:00
|
|
|
|
2020-01-07 23:14:15 +07:00
|
|
|
RecursiveMutex cs_feeFilter;
|
2019-03-08 14:26:36 -05: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 16:04:55 -05:00
|
|
|
// m_tx_relay == nullptr if we're not relaying transactions with this peer
|
2019-03-08 15:30:36 -05:00
|
|
|
std::unique_ptr<TxRelay> m_tx_relay;
|
2019-04-05 13:35:15 -04:00
|
|
|
|
2014-11-18 22:16:32 +01:00
|
|
|
// Used for headers announcements - unfiltered blocks to relay
|
2018-02-02 18:11:01 -05:00
|
|
|
std::vector<uint256> vBlockHashesToAnnounce GUARDED_BY(cs_inventory);
|
2016-05-22 05:55:15 +00:00
|
|
|
|
2020-09-01 17:40:32 +02: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 06:11:04 -05:00
|
|
|
std::atomic<int64_t> nLastBlockTime{0};
|
2020-09-01 17:40:32 +02: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 06:11:04 -05:00
|
|
|
std::atomic<int64_t> nLastTXTime{0};
|
2016-05-22 05:55:15 +00:00
|
|
|
|
2013-10-15 00:34:20 +02:00
|
|
|
// Ping time measurement:
|
|
|
|
// The pong reply we're expecting, or 0 if no pong expected.
|
2019-01-05 06:11:04 -05: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-15 00:34:20 +02:00
|
|
|
// Last measured round-trip time.
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<int64_t> nPingUsecTime{0};
|
2015-08-13 02:31:46 -07:00
|
|
|
// Best measured round-trip time.
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<int64_t> nMinPingUsecTime{std::numeric_limits<int64_t>::max()};
|
2013-10-15 00:34:20 +02:00
|
|
|
// Whether a ping is requested.
|
2019-01-05 06:11:04 -05:00
|
|
|
std::atomic<bool> fPingQueued{false};
|
2014-01-11 18:14:29 +01:00
|
|
|
|
2019-03-20 15:26:21 -07:00
|
|
|
std::set<uint256> orphan_work_set;
|
|
|
|
|
2020-07-29 18:43:28 -07: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-21 05:17:21 +02:00
|
|
|
~CNode();
|
2017-09-16 13:06:05 +03:00
|
|
|
CNode(const CNode&) = delete;
|
|
|
|
CNode& operator=(const CNode&) = delete;
|
2010-08-29 16:58:15 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-11 12:11:27 -04:00
|
|
|
const NodeId id;
|
2016-10-26 15:10:15 -04:00
|
|
|
const uint64_t nLocalHostNonce;
|
2020-04-30 11:21:33 -07:00
|
|
|
const ConnectionType m_conn_type;
|
2020-06-05 10:22:53 +03:00
|
|
|
std::atomic<int> m_greatest_common_version{INIT_PROTO_VERSION};
|
2019-09-10 13:09:12 -04: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 17:06:15 -04:00
|
|
|
const ServiceFlags nLocalServices;
|
2019-09-10 13:09:12 -04:00
|
|
|
|
2016-10-31 17:06:15 -04:00
|
|
|
const int nMyStartingHeight;
|
2019-06-20 18:37:51 +09:00
|
|
|
NetPermissionFlags m_permissionFlags{ PF_NONE };
|
2016-12-31 02:05:36 -05:00
|
|
|
std::list<CNetMessage> vRecvMsg; // Used only by SocketHandler thread
|
2017-02-06 12:04:34 -05:00
|
|
|
|
2020-01-07 23:14:15 +07:00
|
|
|
mutable RecursiveMutex cs_addrName;
|
2018-10-08 15:34:39 +02:00
|
|
|
std::string addrName GUARDED_BY(cs_addrName);
|
2017-02-06 12:18:51 -05:00
|
|
|
|
2017-05-30 11:59:42 +02:00
|
|
|
// Our address, as reported by the peer
|
2018-10-08 15:34:39 +02:00
|
|
|
CService addrLocal GUARDED_BY(cs_addrLocal);
|
2020-01-07 23:14:15 +07:00
|
|
|
mutable RecursiveMutex cs_addrLocal;
|
2010-08-29 16:58:15 +00:00
|
|
|
public:
|
|
|
|
|
2013-11-18 01:25:17 +01:00
|
|
|
NodeId GetId() const {
|
2017-03-06 17:54:08 +01:00
|
|
|
return id;
|
2013-11-18 01:25:17 +01:00
|
|
|
}
|
2010-08-29 16:58:15 +00:00
|
|
|
|
2016-04-17 20:21:58 -04:00
|
|
|
uint64_t GetLocalNonce() const {
|
2017-03-06 17:54:08 +01:00
|
|
|
return nLocalHostNonce;
|
2016-04-17 20:21:58 -04:00
|
|
|
}
|
|
|
|
|
2016-10-26 18:08:11 -04:00
|
|
|
int GetMyStartingHeight() const {
|
2017-03-06 17:54:08 +01:00
|
|
|
return nMyStartingHeight;
|
2016-10-26 18:08:11 -04:00
|
|
|
}
|
|
|
|
|
2017-06-01 17:21:03 +02:00
|
|
|
int GetRefCount() const
|
2010-08-29 16:58:15 +00:00
|
|
|
{
|
2013-03-29 00:43:31 +01:00
|
|
|
assert(nRefCount >= 0);
|
|
|
|
return nRefCount;
|
2010-08-29 16:58:15 +00:00
|
|
|
}
|
|
|
|
|
2016-04-18 21:33:54 -04:00
|
|
|
bool ReceiveMsgBytes(const char *pch, unsigned int nBytes, bool& complete);
|
2012-11-15 19:41:12 -05:00
|
|
|
|
2020-06-05 10:22:53 +03:00
|
|
|
void SetCommonVersion(int greatest_common_version)
|
2012-11-15 19:41:12 -05:00
|
|
|
{
|
2020-06-05 10:22:53 +03:00
|
|
|
m_greatest_common_version = greatest_common_version;
|
2016-12-31 02:05:15 -05:00
|
|
|
}
|
2020-06-05 10:22:53 +03:00
|
|
|
int GetCommonVersion() const
|
2016-12-31 02:05:15 -05:00
|
|
|
{
|
2020-06-05 10:22:53 +03:00
|
|
|
return m_greatest_common_version;
|
2012-11-15 19:41:12 -05:00
|
|
|
}
|
|
|
|
|
2017-02-06 12:18:51 -05:00
|
|
|
CService GetAddrLocal() const;
|
|
|
|
//! May not be called more than once
|
|
|
|
void SetAddrLocal(const CService& addrLocalIn);
|
|
|
|
|
2013-03-29 00:43:31 +01:00
|
|
|
CNode* AddRef()
|
2010-08-29 16:58:15 +00:00
|
|
|
{
|
2013-03-29 00:43:31 +01:00
|
|
|
nRefCount++;
|
2010-08-29 16:58:15 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Release()
|
|
|
|
{
|
|
|
|
nRefCount--;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-08-15 14:10:07 +02:00
|
|
|
void AddAddressKnown(const CAddress& _addr)
|
2010-08-29 16:58:15 +00:00
|
|
|
{
|
2019-10-25 16:28:14 -04:00
|
|
|
assert(m_addr_known);
|
2019-10-16 17:06:20 -04:00
|
|
|
m_addr_known->insert(_addr.GetKey());
|
2010-08-29 16:58:15 +00:00
|
|
|
}
|
|
|
|
|
2016-10-13 16:19:20 +02:00
|
|
|
void PushAddress(const CAddress& _addr, FastRandomContext &insecure_rand)
|
2010-08-29 16:58:15 +00: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 16:28:14 -04:00
|
|
|
assert(m_addr_known);
|
2019-10-16 17:06:20 -04:00
|
|
|
if (_addr.IsValid() && !m_addr_known->contains(_addr.GetKey())) {
|
2014-11-21 12:22:11 +01:00
|
|
|
if (vAddrToSend.size() >= MAX_ADDR_TO_SEND) {
|
2017-02-25 12:16:58 -08:00
|
|
|
vAddrToSend[insecure_rand.randrange(vAddrToSend.size())] = _addr;
|
2014-11-21 12:22:11 +01:00
|
|
|
} else {
|
2016-08-15 14:10:07 +02:00
|
|
|
vAddrToSend.push_back(_addr);
|
2014-11-21 12:22:11 +01:00
|
|
|
}
|
|
|
|
}
|
2010-08-29 16:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-26 13:36:35 -05:00
|
|
|
void AddKnownTx(const uint256& hash)
|
2010-08-29 16:58:15 +00:00
|
|
|
{
|
2019-03-08 15:48:41 -05:00
|
|
|
if (m_tx_relay != nullptr) {
|
2019-03-08 15:30:36 -05:00
|
|
|
LOCK(m_tx_relay->cs_tx_inventory);
|
2020-01-30 11:12:56 -05:00
|
|
|
m_tx_relay->filterInventoryKnown.insert(hash);
|
2012-04-06 18:39:12 +02:00
|
|
|
}
|
2010-08-29 16:58:15 +00:00
|
|
|
}
|
|
|
|
|
2020-06-18 15:19:12 -04:00
|
|
|
void PushTxInventory(const uint256& hash)
|
2010-08-29 16:58:15 +00: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 18:39:12 +02:00
|
|
|
}
|
2010-08-29 16:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CloseSocketDisconnect();
|
2011-09-06 16:09:04 -04:00
|
|
|
|
2020-01-29 13:57:58 -08:00
|
|
|
void copyStats(CNodeStats &stats, const std::vector<bool> &m_asmap);
|
2016-04-19 00:04:58 -04:00
|
|
|
|
|
|
|
ServiceFlags GetLocalServices() const
|
|
|
|
{
|
|
|
|
return nLocalServices;
|
|
|
|
}
|
2017-02-06 12:04:34 -05:00
|
|
|
|
|
|
|
std::string GetAddrName() const;
|
|
|
|
//! Sets the addrName only if it was not previously set
|
|
|
|
void MaybeSetAddrName(const std::string& addrNameIn);
|
2020-08-10 18:30:04 -07:00
|
|
|
|
|
|
|
std::string ConnectionTypeAsString() const;
|
2010-08-29 16:58:15 +00:00
|
|
|
};
|
|
|
|
|
2015-04-08 11:20:00 -07:00
|
|
|
/** Return a timestamp in the future (in microseconds) for exponentially distributed events. */
|
2018-05-21 12:02:40 -07:00
|
|
|
int64_t PoissonNextSend(int64_t now, int average_interval_seconds);
|
2015-04-08 11:20:00 -07:00
|
|
|
|
2019-11-05 11:06:53 +01: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 22:21:03 +02:00
|
|
|
#endif // BITCOIN_NET_H
|