2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2011-2016 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 10:11:00 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-09-06 22:09:04 +02:00
|
|
|
// Unit tests for denial-of-service detection/prevention code
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2015-07-05 14:17:46 +02:00
|
|
|
#include "chainparams.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "keystore.h"
|
2011-10-12 01:50:06 +02:00
|
|
|
#include "net.h"
|
2016-12-02 00:45:50 +01:00
|
|
|
#include "net_processing.h"
|
2014-03-10 16:46:53 +01:00
|
|
|
#include "pow.h"
|
2014-08-27 17:22:33 +02:00
|
|
|
#include "script/sign.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "serialize.h"
|
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
|
|
|
#include "util.h"
|
2016-12-24 17:28:44 +01:00
|
|
|
#include "validation.h"
|
2011-09-06 22:09:04 +02:00
|
|
|
|
2015-03-03 16:49:12 +01:00
|
|
|
#include "test/test_bitcoin.h"
|
|
|
|
|
2012-01-03 23:33:31 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <boost/assign/list_of.hpp> // for 'map_list_of()'
|
|
|
|
#include <boost/date_time/posix_time/posix_time_types.hpp>
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2012-02-29 16:14:18 +01:00
|
|
|
// Tests this internal-to-main.cpp method:
|
2016-12-05 09:15:33 +01:00
|
|
|
extern bool AddOrphanTx(const CTransactionRef& tx, NodeId peer);
|
2014-08-28 19:23:24 +02:00
|
|
|
extern void EraseOrphansFor(NodeId peer);
|
2012-04-23 20:14:03 +02:00
|
|
|
extern unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans);
|
2014-09-20 09:53:50 +02:00
|
|
|
struct COrphanTx {
|
2016-12-05 09:15:33 +01:00
|
|
|
CTransactionRef tx;
|
2014-09-20 09:53:50 +02:00
|
|
|
NodeId fromPeer;
|
2016-12-03 04:24:23 +01:00
|
|
|
int64_t nTimeExpire;
|
2014-09-20 09:53:50 +02:00
|
|
|
};
|
|
|
|
extern std::map<uint256, COrphanTx> mapOrphanTransactions;
|
2012-02-29 16:14:18 +01:00
|
|
|
|
2012-01-03 23:33:31 +01:00
|
|
|
CService ip(uint32_t i)
|
|
|
|
{
|
|
|
|
struct in_addr s;
|
|
|
|
s.s_addr = i;
|
2013-05-07 15:16:25 +02:00
|
|
|
return CService(CNetAddr(s), Params().GetDefaultPort());
|
2012-01-03 23:33:31 +01:00
|
|
|
}
|
2011-09-06 22:09:04 +02:00
|
|
|
|
2016-04-18 02:20:34 +02:00
|
|
|
static NodeId id = 0;
|
|
|
|
|
2015-03-03 16:49:12 +01:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(DoS_tests, TestingSetup)
|
2011-09-06 22:09:04 +02:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(DoS_banning)
|
|
|
|
{
|
2016-12-27 23:13:04 +01:00
|
|
|
std::atomic<bool> interruptDummy(false);
|
|
|
|
|
2016-04-16 23:43:11 +02:00
|
|
|
connman->ClearBanned();
|
2016-06-08 19:12:22 +02:00
|
|
|
CAddress addr1(ip(0xa0b0c001), NODE_NONE);
|
2016-10-26 21:10:15 +02:00
|
|
|
CNode dummyNode1(id++, NODE_NETWORK, 0, INVALID_SOCKET, addr1, 0, 0, "", true);
|
2016-09-13 02:00:33 +02:00
|
|
|
dummyNode1.SetSendVersion(PROTOCOL_VERSION);
|
2016-10-27 00:08:11 +02:00
|
|
|
GetNodeSignals().InitializeNode(&dummyNode1, *connman);
|
2013-11-18 01:25:17 +01:00
|
|
|
dummyNode1.nVersion = 1;
|
|
|
|
Misbehaving(dummyNode1.GetId(), 100); // Should get banned
|
2016-12-27 23:13:04 +01:00
|
|
|
SendMessages(&dummyNode1, *connman, interruptDummy);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(connman->IsBanned(addr1));
|
|
|
|
BOOST_CHECK(!connman->IsBanned(ip(0xa0b0c001|0x0000ff00))); // Different IP, not banned
|
2011-09-06 22:09:04 +02:00
|
|
|
|
2016-06-08 19:12:22 +02:00
|
|
|
CAddress addr2(ip(0xa0b0c002), NODE_NONE);
|
2016-10-26 21:10:15 +02:00
|
|
|
CNode dummyNode2(id++, NODE_NETWORK, 0, INVALID_SOCKET, addr2, 1, 1, "", true);
|
2016-09-13 02:00:33 +02:00
|
|
|
dummyNode2.SetSendVersion(PROTOCOL_VERSION);
|
2016-10-27 00:08:11 +02:00
|
|
|
GetNodeSignals().InitializeNode(&dummyNode2, *connman);
|
2013-11-18 01:25:17 +01:00
|
|
|
dummyNode2.nVersion = 1;
|
|
|
|
Misbehaving(dummyNode2.GetId(), 50);
|
2016-12-27 23:13:04 +01:00
|
|
|
SendMessages(&dummyNode2, *connman, interruptDummy);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(!connman->IsBanned(addr2)); // 2 not banned yet...
|
|
|
|
BOOST_CHECK(connman->IsBanned(addr1)); // ... but 1 still should be
|
2013-11-18 01:25:17 +01:00
|
|
|
Misbehaving(dummyNode2.GetId(), 50);
|
2016-12-27 23:13:04 +01:00
|
|
|
SendMessages(&dummyNode2, *connman, interruptDummy);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(connman->IsBanned(addr2));
|
2012-10-05 19:22:21 +02:00
|
|
|
}
|
2011-09-06 22:09:04 +02:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(DoS_banscore)
|
|
|
|
{
|
2016-12-27 23:13:04 +01:00
|
|
|
std::atomic<bool> interruptDummy(false);
|
|
|
|
|
2016-04-16 23:43:11 +02:00
|
|
|
connman->ClearBanned();
|
2016-12-24 17:28:44 +01:00
|
|
|
ForceSetArg("-banscore", "111"); // because 11 is my favorite number
|
2016-06-08 19:12:22 +02:00
|
|
|
CAddress addr1(ip(0xa0b0c001), NODE_NONE);
|
2016-10-26 21:10:15 +02:00
|
|
|
CNode dummyNode1(id++, NODE_NETWORK, 0, INVALID_SOCKET, addr1, 3, 1, "", true);
|
2016-09-13 02:00:33 +02:00
|
|
|
dummyNode1.SetSendVersion(PROTOCOL_VERSION);
|
2016-10-27 00:08:11 +02:00
|
|
|
GetNodeSignals().InitializeNode(&dummyNode1, *connman);
|
2013-11-18 01:25:17 +01:00
|
|
|
dummyNode1.nVersion = 1;
|
|
|
|
Misbehaving(dummyNode1.GetId(), 100);
|
2016-12-27 23:13:04 +01:00
|
|
|
SendMessages(&dummyNode1, *connman, interruptDummy);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(!connman->IsBanned(addr1));
|
2013-11-18 01:25:17 +01:00
|
|
|
Misbehaving(dummyNode1.GetId(), 10);
|
2016-12-27 23:13:04 +01:00
|
|
|
SendMessages(&dummyNode1, *connman, interruptDummy);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(!connman->IsBanned(addr1));
|
2013-11-18 01:25:17 +01:00
|
|
|
Misbehaving(dummyNode1.GetId(), 1);
|
2016-12-27 23:13:04 +01:00
|
|
|
SendMessages(&dummyNode1, *connman, interruptDummy);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(connman->IsBanned(addr1));
|
2016-12-24 17:28:44 +01:00
|
|
|
ForceSetArg("-banscore", std::to_string(DEFAULT_BANSCORE_THRESHOLD));
|
2011-09-06 22:09:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(DoS_bantime)
|
|
|
|
{
|
2016-12-27 23:13:04 +01:00
|
|
|
std::atomic<bool> interruptDummy(false);
|
|
|
|
|
2016-04-16 23:43:11 +02:00
|
|
|
connman->ClearBanned();
|
2013-04-13 07:13:08 +02:00
|
|
|
int64_t nStartTime = GetTime();
|
2011-09-06 22:09:04 +02:00
|
|
|
SetMockTime(nStartTime); // Overrides future calls to GetTime()
|
|
|
|
|
2016-06-08 19:12:22 +02:00
|
|
|
CAddress addr(ip(0xa0b0c001), NODE_NONE);
|
2016-10-26 21:10:15 +02:00
|
|
|
CNode dummyNode(id++, NODE_NETWORK, 0, INVALID_SOCKET, addr, 4, 4, "", true);
|
2016-09-13 02:00:33 +02:00
|
|
|
dummyNode.SetSendVersion(PROTOCOL_VERSION);
|
2016-10-27 00:08:11 +02:00
|
|
|
GetNodeSignals().InitializeNode(&dummyNode, *connman);
|
2013-11-18 01:25:17 +01:00
|
|
|
dummyNode.nVersion = 1;
|
2011-09-06 22:09:04 +02:00
|
|
|
|
2013-11-18 01:25:17 +01:00
|
|
|
Misbehaving(dummyNode.GetId(), 100);
|
2016-12-27 23:13:04 +01:00
|
|
|
SendMessages(&dummyNode, *connman, interruptDummy);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(connman->IsBanned(addr));
|
2011-09-06 22:09:04 +02:00
|
|
|
|
|
|
|
SetMockTime(nStartTime+60*60);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(connman->IsBanned(addr));
|
2011-09-06 22:09:04 +02:00
|
|
|
|
|
|
|
SetMockTime(nStartTime+60*60*24+1);
|
2016-04-16 23:43:11 +02:00
|
|
|
BOOST_CHECK(!connman->IsBanned(addr));
|
2012-01-03 23:33:31 +01:00
|
|
|
}
|
2011-09-06 22:09:04 +02:00
|
|
|
|
2016-12-05 09:15:33 +01:00
|
|
|
CTransactionRef RandomOrphan()
|
2012-02-29 16:14:18 +01:00
|
|
|
{
|
2014-09-20 09:53:50 +02:00
|
|
|
std::map<uint256, COrphanTx>::iterator it;
|
2012-05-17 18:13:14 +02:00
|
|
|
it = mapOrphanTransactions.lower_bound(GetRandHash());
|
2012-02-29 16:14:18 +01:00
|
|
|
if (it == mapOrphanTransactions.end())
|
|
|
|
it = mapOrphanTransactions.begin();
|
2014-09-20 09:53:50 +02:00
|
|
|
return it->second.tx;
|
2012-02-29 16:14:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(DoS_mapOrphans)
|
|
|
|
{
|
|
|
|
CKey key;
|
|
|
|
key.MakeNewKey(true);
|
|
|
|
CBasicKeyStore keystore;
|
|
|
|
keystore.AddKey(key);
|
|
|
|
|
|
|
|
// 50 orphan transactions:
|
|
|
|
for (int i = 0; i < 50; i++)
|
|
|
|
{
|
2014-06-07 13:53:27 +02:00
|
|
|
CMutableTransaction tx;
|
2012-02-29 16:14:18 +01:00
|
|
|
tx.vin.resize(1);
|
|
|
|
tx.vin[0].prevout.n = 0;
|
2012-05-17 18:13:14 +02:00
|
|
|
tx.vin[0].prevout.hash = GetRandHash();
|
2012-02-29 16:14:18 +01:00
|
|
|
tx.vin[0].scriptSig << OP_1;
|
|
|
|
tx.vout.resize(1);
|
|
|
|
tx.vout[0].nValue = 1*CENT;
|
2014-09-11 19:15:29 +02:00
|
|
|
tx.vout[0].scriptPubKey = GetScriptForDestination(key.GetPubKey().GetID());
|
2012-02-29 16:14:18 +01:00
|
|
|
|
2016-12-05 09:15:33 +01:00
|
|
|
AddOrphanTx(MakeTransactionRef(tx), i);
|
2012-02-29 16:14:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ... and 50 that depend on other orphans:
|
|
|
|
for (int i = 0; i < 50; i++)
|
|
|
|
{
|
2016-12-05 09:15:33 +01:00
|
|
|
CTransactionRef txPrev = RandomOrphan();
|
2012-02-29 16:14:18 +01:00
|
|
|
|
2014-06-07 13:53:27 +02:00
|
|
|
CMutableTransaction tx;
|
2012-02-29 16:14:18 +01:00
|
|
|
tx.vin.resize(1);
|
|
|
|
tx.vin[0].prevout.n = 0;
|
2016-12-05 09:15:33 +01:00
|
|
|
tx.vin[0].prevout.hash = txPrev->GetHash();
|
2012-02-29 16:14:18 +01:00
|
|
|
tx.vout.resize(1);
|
|
|
|
tx.vout[0].nValue = 1*CENT;
|
2014-09-11 19:15:29 +02:00
|
|
|
tx.vout[0].scriptPubKey = GetScriptForDestination(key.GetPubKey().GetID());
|
2016-12-05 09:15:33 +01:00
|
|
|
SignSignature(keystore, *txPrev, tx, 0, SIGHASH_ALL);
|
2012-02-29 16:14:18 +01:00
|
|
|
|
2016-12-05 09:15:33 +01:00
|
|
|
AddOrphanTx(MakeTransactionRef(tx), i);
|
2012-02-29 16:14:18 +01:00
|
|
|
}
|
|
|
|
|
2012-05-15 21:53:30 +02:00
|
|
|
// This really-big orphan should be ignored:
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
|
|
{
|
2016-12-05 09:15:33 +01:00
|
|
|
CTransactionRef txPrev = RandomOrphan();
|
2012-05-15 21:53:30 +02:00
|
|
|
|
2014-06-07 13:53:27 +02:00
|
|
|
CMutableTransaction tx;
|
2012-05-15 21:53:30 +02:00
|
|
|
tx.vout.resize(1);
|
|
|
|
tx.vout[0].nValue = 1*CENT;
|
2014-09-11 19:15:29 +02:00
|
|
|
tx.vout[0].scriptPubKey = GetScriptForDestination(key.GetPubKey().GetID());
|
2016-06-11 02:28:48 +02:00
|
|
|
tx.vin.resize(2777);
|
2012-05-24 18:18:50 +02:00
|
|
|
for (unsigned int j = 0; j < tx.vin.size(); j++)
|
2012-05-15 21:53:30 +02:00
|
|
|
{
|
|
|
|
tx.vin[j].prevout.n = j;
|
2016-12-05 09:15:33 +01:00
|
|
|
tx.vin[j].prevout.hash = txPrev->GetHash();
|
2012-05-15 21:53:30 +02:00
|
|
|
}
|
2016-12-05 09:15:33 +01:00
|
|
|
SignSignature(keystore, *txPrev, tx, 0, SIGHASH_ALL);
|
2012-05-15 21:53:30 +02:00
|
|
|
// Re-use same signature for other inputs
|
|
|
|
// (they don't have to be valid for this test)
|
2012-05-24 18:18:50 +02:00
|
|
|
for (unsigned int j = 1; j < tx.vin.size(); j++)
|
2012-05-15 21:53:30 +02:00
|
|
|
tx.vin[j].scriptSig = tx.vin[0].scriptSig;
|
|
|
|
|
2016-12-05 09:15:33 +01:00
|
|
|
BOOST_CHECK(!AddOrphanTx(MakeTransactionRef(tx), i));
|
2014-08-28 19:23:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test EraseOrphansFor:
|
|
|
|
for (NodeId i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
size_t sizeBefore = mapOrphanTransactions.size();
|
|
|
|
EraseOrphansFor(i);
|
|
|
|
BOOST_CHECK(mapOrphanTransactions.size() < sizeBefore);
|
2012-05-15 21:53:30 +02:00
|
|
|
}
|
|
|
|
|
2012-02-29 16:14:18 +01:00
|
|
|
// Test LimitOrphanTxSize() function:
|
|
|
|
LimitOrphanTxSize(40);
|
|
|
|
BOOST_CHECK(mapOrphanTransactions.size() <= 40);
|
|
|
|
LimitOrphanTxSize(10);
|
|
|
|
BOOST_CHECK(mapOrphanTransactions.size() <= 10);
|
|
|
|
LimitOrphanTxSize(0);
|
|
|
|
BOOST_CHECK(mapOrphanTransactions.empty());
|
|
|
|
}
|
|
|
|
|
2011-09-06 22:09:04 +02:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|