2010-08-29 18:58:15 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-02-08 22:50:24 +01:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
2010-08-29 18:58:15 +02:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2011-05-15 09:11:04 +02:00
|
|
|
#ifndef BITCOIN_NET_H
|
|
|
|
#define BITCOIN_NET_H
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "bloom.h"
|
|
|
|
#include "compat.h"
|
|
|
|
#include "hash.h"
|
|
|
|
#include "limitedmap.h"
|
|
|
|
#include "mruset.h"
|
|
|
|
#include "netbase.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "sync.h"
|
|
|
|
#include "uint256.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2011-05-15 09:11:04 +02:00
|
|
|
#include <deque>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <stdint.h>
|
2011-05-15 09:11:04 +02:00
|
|
|
|
2011-10-07 17:02:21 +02:00
|
|
|
#ifndef WIN32
|
2011-05-15 09:11:04 +02:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <boost/signals2/signal.hpp>
|
|
|
|
#include <openssl/rand.h>
|
2013-06-06 09:04:33 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
class CAddrMan;
|
2010-08-29 18:58:15 +02:00
|
|
|
class CBlockIndex;
|
2013-04-13 07:13:08 +02:00
|
|
|
class CNode;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
namespace boost {
|
|
|
|
class thread_group;
|
|
|
|
}
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
/** The maximum number of entries in an 'inv' protocol message */
|
|
|
|
static const unsigned int MAX_INV_SZ = 50000;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2012-11-16 01:41:12 +01:00
|
|
|
inline unsigned int ReceiveFloodSize() { return 1000*GetArg("-maxreceivebuffer", 5*1000); }
|
2012-07-01 04:17:26 +02:00
|
|
|
inline unsigned int SendBufferSize() { return 1000*GetArg("-maxsendbuffer", 1*1000); }
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2012-04-24 02:15:00 +02:00
|
|
|
void AddOneShot(std::string strDest);
|
2012-02-19 19:05:41 +01:00
|
|
|
bool RecvLine(SOCKET hSocket, std::string& strLine);
|
2012-01-03 23:33:31 +01:00
|
|
|
bool GetMyExternalIP(CNetAddr& ipRet);
|
|
|
|
void AddressCurrentlyConnected(const CService& addr);
|
|
|
|
CNode* FindNode(const CNetAddr& ip);
|
|
|
|
CNode* FindNode(const CService& ip);
|
2013-03-29 00:43:31 +01:00
|
|
|
CNode* ConnectNode(CAddress addrConnect, const char *strDest = NULL);
|
2013-03-07 04:31:26 +01:00
|
|
|
void MapPort(bool fUseUPnP);
|
2012-05-13 01:26:14 +02:00
|
|
|
unsigned short GetListenPort();
|
2012-05-11 15:28:59 +02:00
|
|
|
bool BindListenPort(const CService &bindAddr, std::string& strError=REF(std::string()));
|
2013-03-09 18:02:57 +01:00
|
|
|
void StartNode(boost::thread_group& threadGroup);
|
2010-08-29 18:58:15 +02:00
|
|
|
bool StopNode();
|
2012-11-16 00:20:26 +01:00
|
|
|
void SocketSendData(CNode *pnode);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-11-18 01:25:17 +01:00
|
|
|
typedef int NodeId;
|
|
|
|
|
2013-06-06 05:21:41 +02:00
|
|
|
// Signals for message handling
|
|
|
|
struct CNodeSignals
|
|
|
|
{
|
2013-10-10 23:07:44 +02:00
|
|
|
boost::signals2::signal<int ()> GetHeight;
|
2013-06-06 05:21:41 +02:00
|
|
|
boost::signals2::signal<bool (CNode*)> ProcessMessages;
|
|
|
|
boost::signals2::signal<bool (CNode*, bool)> SendMessages;
|
2013-11-18 01:25:17 +01:00
|
|
|
boost::signals2::signal<void (NodeId, const CNode*)> InitializeNode;
|
|
|
|
boost::signals2::signal<void (NodeId)> FinalizeNode;
|
2013-06-06 05:21:41 +02:00
|
|
|
};
|
|
|
|
|
2013-11-18 01:25:17 +01:00
|
|
|
|
2013-06-06 05:21:41 +02:00
|
|
|
CNodeSignals& GetNodeSignals();
|
2013-01-07 17:07:51 +01: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
|
2012-07-26 02:48:39 +02:00
|
|
|
LOCAL_HTTP, // address reported by whatismyip.com and similar
|
2012-05-10 20:35:13 +02:00
|
|
|
LOCAL_MANUAL, // address explicitly specified (-externalip=)
|
2012-02-19 20:44:35 +01:00
|
|
|
|
|
|
|
LOCAL_MAX
|
2012-02-12 13:45:24 +01:00
|
|
|
};
|
|
|
|
|
2012-05-04 16:46:22 +02:00
|
|
|
void SetLimited(enum Network net, bool fLimited = true);
|
2012-05-14 17:15:58 +02:00
|
|
|
bool IsLimited(enum Network net);
|
2012-05-04 16:46:22 +02:00
|
|
|
bool IsLimited(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);
|
2012-05-10 20:35:13 +02:00
|
|
|
bool SeenLocal(const CService& addr);
|
|
|
|
bool IsLocal(const CService& addr);
|
|
|
|
bool GetLocal(CService &addr, const CNetAddr *paddrPeer = NULL);
|
2012-04-10 20:22:04 +02:00
|
|
|
bool IsReachable(const CNetAddr &addr);
|
2012-05-01 21:04:07 +02:00
|
|
|
void SetReachable(enum Network net, bool fFlag = true);
|
2012-02-12 13:45:24 +01:00
|
|
|
CAddress GetLocalAddress(const CNetAddr *paddrPeer = NULL);
|
|
|
|
|
2012-04-10 20:22:04 +02:00
|
|
|
|
2012-05-24 19:02:21 +02:00
|
|
|
extern bool fDiscover;
|
2013-04-13 07:13:08 +02:00
|
|
|
extern uint64_t nLocalServices;
|
|
|
|
extern uint64_t nLocalHostNonce;
|
2012-01-04 23:39:45 +01:00
|
|
|
extern CAddrMan addrman;
|
2013-04-26 00:46:47 +02:00
|
|
|
extern int nMaxConnections;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2011-05-15 09:11:04 +02:00
|
|
|
extern std::vector<CNode*> vNodes;
|
2010-08-29 18:58:15 +02:00
|
|
|
extern CCriticalSection cs_vNodes;
|
2011-05-15 09:11:04 +02:00
|
|
|
extern std::map<CInv, CDataStream> mapRelay;
|
2013-04-13 07:13:08 +02:00
|
|
|
extern std::deque<std::pair<int64_t, CInv> > vRelayExpiration;
|
2010-08-29 18:58:15 +02:00
|
|
|
extern CCriticalSection cs_mapRelay;
|
2013-04-13 07:13:08 +02:00
|
|
|
extern limitedmap<CInv, int64_t> mapAlreadyAskedFor;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2012-07-02 19:55:16 +02:00
|
|
|
extern std::vector<std::string> vAddedNodes;
|
|
|
|
extern CCriticalSection cs_vAddedNodes;
|
|
|
|
|
2013-11-18 01:25:17 +01:00
|
|
|
extern NodeId nLastNodeId;
|
|
|
|
extern CCriticalSection cs_nLastNodeId;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
|
|
|
|
2012-06-29 23:24:53 +02:00
|
|
|
class CNodeStats
|
|
|
|
{
|
|
|
|
public:
|
2013-11-18 01:25:17 +01:00
|
|
|
NodeId nodeid;
|
2013-04-13 07:13:08 +02:00
|
|
|
uint64_t nServices;
|
|
|
|
int64_t nLastSend;
|
|
|
|
int64_t nLastRecv;
|
|
|
|
int64_t nTimeConnected;
|
2012-06-29 23:24:53 +02:00
|
|
|
std::string addrName;
|
|
|
|
int nVersion;
|
2013-11-26 12:52:21 +01:00
|
|
|
std::string cleanSubVer;
|
2012-06-29 23:24:53 +02:00
|
|
|
bool fInbound;
|
|
|
|
int nStartingHeight;
|
2013-04-13 07:13:08 +02:00
|
|
|
uint64_t nSendBytes;
|
|
|
|
uint64_t nRecvBytes;
|
2013-04-07 19:31:13 +02:00
|
|
|
bool fSyncNode;
|
2013-08-22 13:34:33 +02:00
|
|
|
double dPingTime;
|
|
|
|
double dPingWait;
|
2013-08-22 07:50:19 +02:00
|
|
|
std::string addrLocal;
|
2012-06-29 23:24:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2012-11-16 01:41:12 +01:00
|
|
|
class CNetMessage {
|
|
|
|
public:
|
|
|
|
bool in_data; // parsing header (false) or data (true)
|
|
|
|
|
|
|
|
CDataStream hdrbuf; // partially received header
|
|
|
|
CMessageHeader hdr; // complete header
|
|
|
|
unsigned int nHdrPos;
|
|
|
|
|
|
|
|
CDataStream vRecv; // received message data
|
|
|
|
unsigned int nDataPos;
|
|
|
|
|
|
|
|
CNetMessage(int nTypeIn, int nVersionIn) : hdrbuf(nTypeIn, nVersionIn), vRecv(nTypeIn, nVersionIn) {
|
|
|
|
hdrbuf.resize(24);
|
|
|
|
in_data = false;
|
|
|
|
nHdrPos = 0;
|
|
|
|
nDataPos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool complete() const
|
|
|
|
{
|
|
|
|
if (!in_data)
|
|
|
|
return false;
|
|
|
|
return (hdr.nMessageSize == nDataPos);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetVersion(int nVersionIn)
|
|
|
|
{
|
|
|
|
hdrbuf.SetVersion(nVersionIn);
|
|
|
|
vRecv.SetVersion(nVersionIn);
|
|
|
|
}
|
|
|
|
|
|
|
|
int readHeader(const char *pch, unsigned int nBytes);
|
|
|
|
int readData(const char *pch, unsigned int nBytes);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2012-03-26 16:48:23 +02:00
|
|
|
/** Information about a peer */
|
2010-08-29 18:58:15 +02:00
|
|
|
class CNode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// socket
|
2013-04-13 07:13:08 +02:00
|
|
|
uint64_t nServices;
|
2010-08-29 18:58:15 +02:00
|
|
|
SOCKET hSocket;
|
2013-03-24 16:52:24 +01:00
|
|
|
CDataStream ssSend;
|
|
|
|
size_t nSendSize; // total size of all vSendMsg entries
|
|
|
|
size_t nSendOffset; // offset inside the first vSendMsg already sent
|
2013-04-13 07:13:08 +02:00
|
|
|
uint64_t nSendBytes;
|
2013-03-24 16:52:24 +01:00
|
|
|
std::deque<CSerializeData> vSendMsg;
|
2010-08-29 18:58:15 +02:00
|
|
|
CCriticalSection cs_vSend;
|
2012-11-16 01:41:12 +01:00
|
|
|
|
2013-03-29 23:49:38 +01:00
|
|
|
std::deque<CInv> vRecvGetData;
|
2013-03-01 01:41:28 +01:00
|
|
|
std::deque<CNetMessage> vRecvMsg;
|
2012-11-16 01:41:12 +01:00
|
|
|
CCriticalSection cs_vRecvMsg;
|
2013-04-13 07:13:08 +02:00
|
|
|
uint64_t nRecvBytes;
|
2012-11-16 01:41:12 +01:00
|
|
|
int nRecvVersion;
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t nLastSend;
|
|
|
|
int64_t nLastRecv;
|
|
|
|
int64_t nLastSendEmpty;
|
|
|
|
int64_t nTimeConnected;
|
2010-08-29 18:58:15 +02:00
|
|
|
CAddress addr;
|
2012-04-19 17:38:03 +02:00
|
|
|
std::string addrName;
|
2012-05-10 20:35:13 +02:00
|
|
|
CService addrLocal;
|
2010-08-29 18:58:15 +02:00
|
|
|
int nVersion;
|
2014-01-11 18:14:29 +01:00
|
|
|
// strSubVer is whatever byte array we read from the wire. However, this field is intended
|
2013-11-26 12:52:21 +01:00
|
|
|
// to be printed out, displayed to humans in various forms and so on. So we sanitize it and
|
|
|
|
// store the sanitized version in cleanSubVer. The original should be used when dealing with
|
|
|
|
// the network or wire types and the cleaned string used when displayed or logged.
|
|
|
|
std::string strSubVer, cleanSubVer;
|
2012-04-24 02:15:00 +02:00
|
|
|
bool fOneShot;
|
2010-08-29 18:58:15 +02:00
|
|
|
bool fClient;
|
|
|
|
bool fInbound;
|
|
|
|
bool fNetworkNode;
|
|
|
|
bool fSuccessfullyConnected;
|
|
|
|
bool fDisconnect;
|
2012-08-21 03:10:25 +02: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 their version message that we should not relay tx invs
|
|
|
|
// until they have initialized their bloom filter.
|
|
|
|
bool fRelayTxes;
|
2012-05-10 18:44:07 +02:00
|
|
|
CSemaphoreGrant grantOutbound;
|
2012-08-13 05:26:29 +02:00
|
|
|
CCriticalSection cs_filter;
|
|
|
|
CBloomFilter* pfilter;
|
2010-08-29 18:58:15 +02:00
|
|
|
int nRefCount;
|
2013-11-18 01:25:17 +01:00
|
|
|
NodeId id;
|
2013-03-29 00:43:31 +01:00
|
|
|
protected:
|
2011-09-06 22:09:04 +02:00
|
|
|
|
|
|
|
// Denial-of-service detection/prevention
|
2012-07-26 02:48:39 +02:00
|
|
|
// Key is IP address, value is banned-until-time
|
2013-04-13 07:13:08 +02:00
|
|
|
static std::map<CNetAddr, int64_t> setBanned;
|
2011-09-06 22:09:04 +02:00
|
|
|
static CCriticalSection cs_setBanned;
|
|
|
|
|
2013-10-28 07:28:00 +01:00
|
|
|
// Basic fuzz-testing
|
|
|
|
void Fuzz(int nChance); // modifies ssSend
|
|
|
|
|
2010-08-29 18:58:15 +02:00
|
|
|
public:
|
|
|
|
uint256 hashContinue;
|
|
|
|
CBlockIndex* pindexLastGetBlocksBegin;
|
|
|
|
uint256 hashLastGetBlocksEnd;
|
|
|
|
int nStartingHeight;
|
2013-04-05 00:43:04 +02:00
|
|
|
bool fStartSync;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
|
|
|
// flood relay
|
2011-05-15 09:11:04 +02:00
|
|
|
std::vector<CAddress> vAddrToSend;
|
|
|
|
std::set<CAddress> setAddrKnown;
|
2010-08-29 18:58:15 +02:00
|
|
|
bool fGetAddr;
|
2011-05-15 09:11:04 +02:00
|
|
|
std::set<uint256> setKnown;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
|
|
|
// inventory based relay
|
2012-02-27 17:55:53 +01:00
|
|
|
mruset<CInv> setInventoryKnown;
|
2011-05-15 09:11:04 +02:00
|
|
|
std::vector<CInv> vInventoryToSend;
|
2010-08-29 18:58:15 +02:00
|
|
|
CCriticalSection cs_inventory;
|
2013-04-13 07:13:08 +02:00
|
|
|
std::multimap<int64_t, CInv> mapAskFor;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-08-22 13:34:33 +02:00
|
|
|
// Ping time measurement
|
2013-04-13 07:13:08 +02:00
|
|
|
uint64_t nPingNonceSent;
|
|
|
|
int64_t nPingUsecStart;
|
|
|
|
int64_t nPingUsecTime;
|
2013-08-22 13:34:33 +02:00
|
|
|
bool fPingQueued;
|
2014-01-11 18:14:29 +01:00
|
|
|
|
2013-10-26 11:21:21 +02:00
|
|
|
CNode(SOCKET hSocketIn, CAddress addrIn, std::string addrNameIn = "", bool fInboundIn=false) : ssSend(SER_NETWORK, INIT_PROTO_VERSION)
|
2010-08-29 18:58:15 +02:00
|
|
|
{
|
|
|
|
nServices = 0;
|
|
|
|
hSocket = hSocketIn;
|
2013-10-26 11:21:21 +02:00
|
|
|
nRecvVersion = INIT_PROTO_VERSION;
|
2010-08-29 18:58:15 +02:00
|
|
|
nLastSend = 0;
|
|
|
|
nLastRecv = 0;
|
2013-04-07 19:31:13 +02:00
|
|
|
nSendBytes = 0;
|
|
|
|
nRecvBytes = 0;
|
2010-08-29 18:58:15 +02:00
|
|
|
nLastSendEmpty = GetTime();
|
|
|
|
nTimeConnected = GetTime();
|
|
|
|
addr = addrIn;
|
2012-04-19 17:38:03 +02:00
|
|
|
addrName = addrNameIn == "" ? addr.ToStringIPPort() : addrNameIn;
|
2010-08-29 18:58:15 +02:00
|
|
|
nVersion = 0;
|
|
|
|
strSubVer = "";
|
2012-04-24 02:15:00 +02:00
|
|
|
fOneShot = false;
|
2010-08-29 18:58:15 +02:00
|
|
|
fClient = false; // set by version message
|
|
|
|
fInbound = fInboundIn;
|
|
|
|
fNetworkNode = false;
|
|
|
|
fSuccessfullyConnected = false;
|
|
|
|
fDisconnect = false;
|
|
|
|
nRefCount = 0;
|
2013-03-24 16:52:24 +01:00
|
|
|
nSendSize = 0;
|
|
|
|
nSendOffset = 0;
|
2010-08-29 18:58:15 +02:00
|
|
|
hashContinue = 0;
|
|
|
|
pindexLastGetBlocksBegin = 0;
|
|
|
|
hashLastGetBlocksEnd = 0;
|
|
|
|
nStartingHeight = -1;
|
2013-04-05 00:43:04 +02:00
|
|
|
fStartSync = false;
|
2010-08-29 18:58:15 +02:00
|
|
|
fGetAddr = false;
|
2012-08-21 03:10:25 +02:00
|
|
|
fRelayTxes = false;
|
2012-02-27 17:55:53 +01:00
|
|
|
setInventoryKnown.max_size(SendBufferSize() / 1000);
|
2013-08-19 05:21:06 +02:00
|
|
|
pfilter = new CBloomFilter();
|
2013-08-22 13:34:33 +02:00
|
|
|
nPingNonceSent = 0;
|
|
|
|
nPingUsecStart = 0;
|
|
|
|
nPingUsecTime = 0;
|
|
|
|
fPingQueued = false;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-11-18 01:25:17 +01:00
|
|
|
{
|
|
|
|
LOCK(cs_nLastNodeId);
|
|
|
|
id = nLastNodeId++;
|
|
|
|
}
|
|
|
|
|
2011-01-24 16:42:17 +01:00
|
|
|
// Be shy and don't send version until we hear
|
2013-04-30 16:12:21 +02:00
|
|
|
if (hSocket != INVALID_SOCKET && !fInbound)
|
2011-01-24 16:42:17 +01:00
|
|
|
PushVersion();
|
2013-11-18 01:25:17 +01:00
|
|
|
|
|
|
|
GetNodeSignals().InitializeNode(GetId(), this);
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
~CNode()
|
|
|
|
{
|
|
|
|
if (hSocket != INVALID_SOCKET)
|
|
|
|
{
|
|
|
|
closesocket(hSocket);
|
|
|
|
hSocket = INVALID_SOCKET;
|
|
|
|
}
|
2012-08-13 05:26:29 +02:00
|
|
|
if (pfilter)
|
|
|
|
delete pfilter;
|
2013-11-18 01:25:17 +01:00
|
|
|
GetNodeSignals().FinalizeNode(GetId());
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-08-22 18:09:32 +02:00
|
|
|
// Network usage totals
|
|
|
|
static CCriticalSection cs_totalBytesRecv;
|
|
|
|
static CCriticalSection cs_totalBytesSent;
|
2013-04-13 07:13:08 +02:00
|
|
|
static uint64_t nTotalBytesRecv;
|
|
|
|
static uint64_t nTotalBytesSent;
|
2013-08-22 18:09:32 +02:00
|
|
|
|
2010-08-29 18:58:15 +02:00
|
|
|
CNode(const CNode&);
|
|
|
|
void operator=(const CNode&);
|
2013-08-22 18:09:32 +02:00
|
|
|
|
2010-08-29 18:58:15 +02:00
|
|
|
public:
|
|
|
|
|
2013-11-18 01:25:17 +01:00
|
|
|
NodeId GetId() const {
|
|
|
|
return id;
|
|
|
|
}
|
2010-08-29 18:58:15 +02:00
|
|
|
|
|
|
|
int GetRefCount()
|
|
|
|
{
|
2013-03-29 00:43:31 +01:00
|
|
|
assert(nRefCount >= 0);
|
|
|
|
return nRefCount;
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
2012-11-16 01:41:12 +01:00
|
|
|
// requires LOCK(cs_vRecvMsg)
|
|
|
|
unsigned int GetTotalRecvSize()
|
|
|
|
{
|
|
|
|
unsigned int total = 0;
|
2013-10-15 12:13:54 +02:00
|
|
|
BOOST_FOREACH(const CNetMessage &msg, vRecvMsg)
|
2013-03-01 01:41:28 +01:00
|
|
|
total += msg.vRecv.size() + 24;
|
2012-11-16 01:41:12 +01:00
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
|
|
|
// requires LOCK(cs_vRecvMsg)
|
|
|
|
bool ReceiveMsgBytes(const char *pch, unsigned int nBytes);
|
|
|
|
|
|
|
|
// requires LOCK(cs_vRecvMsg)
|
|
|
|
void SetRecvVersion(int nVersionIn)
|
|
|
|
{
|
|
|
|
nRecvVersion = nVersionIn;
|
2013-03-01 01:41:28 +01:00
|
|
|
BOOST_FOREACH(CNetMessage &msg, vRecvMsg)
|
|
|
|
msg.SetVersion(nVersionIn);
|
2012-11-16 01:41:12 +01:00
|
|
|
}
|
|
|
|
|
2013-03-29 00:43:31 +01:00
|
|
|
CNode* AddRef()
|
2010-08-29 18:58:15 +02:00
|
|
|
{
|
2013-03-29 00:43:31 +01:00
|
|
|
nRefCount++;
|
2010-08-29 18:58:15 +02:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Release()
|
|
|
|
{
|
|
|
|
nRefCount--;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void AddAddressKnown(const CAddress& addr)
|
|
|
|
{
|
|
|
|
setAddrKnown.insert(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PushAddress(const CAddress& addr)
|
|
|
|
{
|
|
|
|
// Known checking here is only to save space from duplicates.
|
|
|
|
// SendMessages will filter it again for knowns that were added
|
|
|
|
// after addresses were pushed.
|
|
|
|
if (addr.IsValid() && !setAddrKnown.count(addr))
|
|
|
|
vAddrToSend.push_back(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AddInventoryKnown(const CInv& inv)
|
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
{
|
|
|
|
LOCK(cs_inventory);
|
2010-08-29 18:58:15 +02:00
|
|
|
setInventoryKnown.insert(inv);
|
2012-04-06 18:39:12 +02:00
|
|
|
}
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void PushInventory(const CInv& inv)
|
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
{
|
|
|
|
LOCK(cs_inventory);
|
2010-08-29 18:58:15 +02:00
|
|
|
if (!setInventoryKnown.count(inv))
|
|
|
|
vInventoryToSend.push_back(inv);
|
2012-04-06 18:39:12 +02:00
|
|
|
}
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AskFor(const CInv& inv)
|
|
|
|
{
|
|
|
|
// We're using mapAskFor as a priority queue,
|
|
|
|
// the key is the earliest time the request can be sent
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t nRequestTime;
|
|
|
|
limitedmap<CInv, int64_t>::const_iterator it = mapAlreadyAskedFor.find(inv);
|
2013-03-28 00:45:43 +01:00
|
|
|
if (it != mapAlreadyAskedFor.end())
|
|
|
|
nRequestTime = it->second;
|
|
|
|
else
|
|
|
|
nRequestTime = 0;
|
2014-02-24 09:08:56 +01:00
|
|
|
LogPrint("net", "askfor %s %d (%s)\n", inv.ToString().c_str(), nRequestTime, DateTimeStrFormat("%H:%M:%S", nRequestTime/1000000).c_str());
|
2010-08-29 18:58:15 +02:00
|
|
|
|
|
|
|
// Make sure not to reuse time indexes to keep things in the same order
|
2014-01-10 13:23:26 +01:00
|
|
|
int64_t nNow = GetTimeMicros() - 1000000;
|
2013-04-13 07:13:08 +02:00
|
|
|
static int64_t nLastTime;
|
2012-01-13 02:02:47 +01:00
|
|
|
++nLastTime;
|
|
|
|
nNow = std::max(nNow, nLastTime);
|
|
|
|
nLastTime = nNow;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
|
|
|
// Each retry is 2 minutes after the last
|
2011-05-15 09:11:04 +02:00
|
|
|
nRequestTime = std::max(nRequestTime + 2 * 60 * 1000000, nNow);
|
2013-03-28 00:45:43 +01:00
|
|
|
if (it != mapAlreadyAskedFor.end())
|
|
|
|
mapAlreadyAskedFor.update(it, nRequestTime);
|
|
|
|
else
|
|
|
|
mapAlreadyAskedFor.insert(std::make_pair(inv, nRequestTime));
|
2011-05-15 09:11:04 +02:00
|
|
|
mapAskFor.insert(std::make_pair(nRequestTime, inv));
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-11-11 03:51:50 +01:00
|
|
|
// TODO: Document the postcondition of this function. Is cs_vSend locked?
|
|
|
|
void BeginMessage(const char* pszCommand) EXCLUSIVE_LOCK_FUNCTION(cs_vSend)
|
2010-08-29 18:58:15 +02:00
|
|
|
{
|
2012-02-11 20:02:55 +01:00
|
|
|
ENTER_CRITICAL_SECTION(cs_vSend);
|
2013-03-24 16:52:24 +01:00
|
|
|
assert(ssSend.size() == 0);
|
|
|
|
ssSend << CMessageHeader(pszCommand, 0);
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrint("net", "sending: %s ", pszCommand);
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
2012-11-11 03:51:50 +01:00
|
|
|
// TODO: Document the precondition of this function. Is cs_vSend locked?
|
|
|
|
void AbortMessage() UNLOCK_FUNCTION(cs_vSend)
|
2010-08-29 18:58:15 +02:00
|
|
|
{
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend.clear();
|
|
|
|
|
2012-02-11 20:02:55 +01:00
|
|
|
LEAVE_CRITICAL_SECTION(cs_vSend);
|
2011-09-17 21:36:58 +02:00
|
|
|
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrint("net", "(aborted)\n");
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
2012-11-11 03:51:50 +01:00
|
|
|
// TODO: Document the precondition of this function. Is cs_vSend locked?
|
|
|
|
void EndMessage() UNLOCK_FUNCTION(cs_vSend)
|
2010-08-29 18:58:15 +02:00
|
|
|
{
|
2013-10-28 07:28:00 +01:00
|
|
|
// The -*messagestest options are intentionally not documented in the help message,
|
|
|
|
// since they are only used during development to debug the networking code and are
|
|
|
|
// not intended for end-users.
|
|
|
|
if (mapArgs.count("-dropmessagestest") && GetRand(GetArg("-dropmessagestest", 2)) == 0)
|
2010-08-29 18:58:15 +02:00
|
|
|
{
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrint("net", "dropmessages DROPPING SEND MESSAGE\n");
|
2010-08-29 18:58:15 +02:00
|
|
|
AbortMessage();
|
|
|
|
return;
|
|
|
|
}
|
2013-10-28 07:28:00 +01:00
|
|
|
if (mapArgs.count("-fuzzmessagestest"))
|
|
|
|
Fuzz(GetArg("-fuzzmessagestest", 10));
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-03-24 16:52:24 +01:00
|
|
|
if (ssSend.size() == 0)
|
2010-08-29 18:58:15 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Set the size
|
2013-03-24 16:52:24 +01:00
|
|
|
unsigned int nSize = ssSend.size() - CMessageHeader::HEADER_SIZE;
|
|
|
|
memcpy((char*)&ssSend[CMessageHeader::MESSAGE_SIZE_OFFSET], &nSize, sizeof(nSize));
|
2010-08-29 18:58:15 +02:00
|
|
|
|
|
|
|
// Set the checksum
|
2013-03-24 16:52:24 +01:00
|
|
|
uint256 hash = Hash(ssSend.begin() + CMessageHeader::HEADER_SIZE, ssSend.end());
|
2012-02-20 01:33:31 +01:00
|
|
|
unsigned int nChecksum = 0;
|
|
|
|
memcpy(&nChecksum, &hash, sizeof(nChecksum));
|
2013-03-24 16:52:24 +01:00
|
|
|
assert(ssSend.size () >= CMessageHeader::CHECKSUM_OFFSET + sizeof(nChecksum));
|
|
|
|
memcpy((char*)&ssSend[CMessageHeader::CHECKSUM_OFFSET], &nChecksum, sizeof(nChecksum));
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-09-18 12:38:08 +02:00
|
|
|
LogPrint("net", "(%d bytes)\n", nSize);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-03-24 16:52:24 +01:00
|
|
|
std::deque<CSerializeData>::iterator it = vSendMsg.insert(vSendMsg.end(), CSerializeData());
|
|
|
|
ssSend.GetAndClear(*it);
|
|
|
|
nSendSize += (*it).size();
|
|
|
|
|
2012-11-16 00:20:26 +01:00
|
|
|
// If write queue empty, attempt "optimistic write"
|
2013-03-24 16:52:24 +01:00
|
|
|
if (it == vSendMsg.begin())
|
2012-11-16 00:20:26 +01:00
|
|
|
SocketSendData(this);
|
|
|
|
|
2012-02-11 20:02:55 +01:00
|
|
|
LEAVE_CRITICAL_SECTION(cs_vSend);
|
2010-08-29 18:58:15 +02:00
|
|
|
}
|
|
|
|
|
2011-12-16 22:26:14 +01:00
|
|
|
void PushVersion();
|
2011-01-24 16:42:17 +01:00
|
|
|
|
2010-08-29 18:58:15 +02:00
|
|
|
|
|
|
|
void PushMessage(const char* pszCommand)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, typename T2>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1 << a2;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, typename T2, typename T3>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1 << a2 << a3;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, typename T2, typename T3, typename T4>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1 << a2 << a3 << a4;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, typename T2, typename T3, typename T4, typename T5>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1 << a2 << a3 << a4 << a5;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1 << a2 << a3 << a4 << a5 << a6;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
|
|
|
|
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BeginMessage(pszCommand);
|
2013-03-24 16:52:24 +01:00
|
|
|
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9;
|
2010-08-29 18:58:15 +02:00
|
|
|
EndMessage();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
AbortMessage();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsSubscribed(unsigned int nChannel);
|
|
|
|
void Subscribe(unsigned int nChannel, unsigned int nHops=0);
|
|
|
|
void CancelSubscribe(unsigned int nChannel);
|
|
|
|
void CloseSocketDisconnect();
|
|
|
|
void Cleanup();
|
2011-09-06 22:09:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Denial-of-service detection/prevention
|
|
|
|
// The idea is to detect peers that are behaving
|
|
|
|
// badly and disconnect/ban them, but do it in a
|
|
|
|
// one-coding-mistake-won't-shatter-the-entire-network
|
|
|
|
// way.
|
|
|
|
// IMPORTANT: There should be nothing I can give a
|
|
|
|
// node that it will forward on that will make that
|
|
|
|
// node's peers drop it. If there is, an attacker
|
|
|
|
// can isolate a node and/or try to split the network.
|
|
|
|
// Dropping a node for sending stuff that is invalid
|
|
|
|
// now but might be valid in a later version is also
|
|
|
|
// dangerous, because it can cause a network split
|
|
|
|
// between nodes running old code and nodes running
|
|
|
|
// new code.
|
|
|
|
static void ClearBanned(); // needed for unit testing
|
2012-01-03 23:33:31 +01:00
|
|
|
static bool IsBanned(CNetAddr ip);
|
2013-11-18 01:25:17 +01:00
|
|
|
static bool Ban(const CNetAddr &ip);
|
2012-06-29 23:24:53 +02:00
|
|
|
void copyStats(CNodeStats &stats);
|
2013-08-22 18:09:32 +02:00
|
|
|
|
|
|
|
// Network stats
|
2013-04-13 07:13:08 +02:00
|
|
|
static void RecordBytesRecv(uint64_t bytes);
|
|
|
|
static void RecordBytesSent(uint64_t bytes);
|
2013-08-22 18:09:32 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
static uint64_t GetTotalBytesRecv();
|
|
|
|
static uint64_t GetTotalBytesSent();
|
2010-08-29 18:58:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-13 05:26:30 +02:00
|
|
|
class CTransaction;
|
|
|
|
void RelayTransaction(const CTransaction& tx, const uint256& hash);
|
|
|
|
void RelayTransaction(const CTransaction& tx, const uint256& hash, const CDataStream& ss);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-11-29 16:33:34 +01:00
|
|
|
/** Access to the (IP) address database (peers.dat) */
|
|
|
|
class CAddrDB
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
boost::filesystem::path pathAddr;
|
|
|
|
public:
|
|
|
|
CAddrDB();
|
|
|
|
bool Write(const CAddrMan& addr);
|
|
|
|
bool Read(CAddrMan& addr);
|
|
|
|
};
|
|
|
|
|
2011-05-15 09:11:04 +02:00
|
|
|
#endif
|