2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
2016-04-23 00:19:33 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
|
|
#include "config/bitcoin-config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "consensus/merkle.h"
|
|
|
|
#include "primitives/block.h"
|
|
|
|
#include "script/script.h"
|
|
|
|
#include "addrman.h"
|
|
|
|
#include "chain.h"
|
|
|
|
#include "coins.h"
|
|
|
|
#include "compressor.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "streams.h"
|
|
|
|
#include "undo.h"
|
|
|
|
#include "version.h"
|
2017-02-05 18:37:13 +01:00
|
|
|
#include "pubkey.h"
|
2016-04-23 00:19:33 +02:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
enum TEST_ID {
|
|
|
|
CBLOCK_DESERIALIZE=0,
|
|
|
|
CTRANSACTION_DESERIALIZE,
|
|
|
|
CBLOCKLOCATOR_DESERIALIZE,
|
|
|
|
CBLOCKMERKLEROOT,
|
|
|
|
CADDRMAN_DESERIALIZE,
|
|
|
|
CBLOCKHEADER_DESERIALIZE,
|
|
|
|
CBANENTRY_DESERIALIZE,
|
|
|
|
CTXUNDO_DESERIALIZE,
|
|
|
|
CBLOCKUNDO_DESERIALIZE,
|
|
|
|
CCOINS_DESERIALIZE,
|
|
|
|
CNETADDR_DESERIALIZE,
|
|
|
|
CSERVICE_DESERIALIZE,
|
|
|
|
CMESSAGEHEADER_DESERIALIZE,
|
|
|
|
CADDRESS_DESERIALIZE,
|
|
|
|
CINV_DESERIALIZE,
|
|
|
|
CBLOOMFILTER_DESERIALIZE,
|
|
|
|
CDISKBLOCKINDEX_DESERIALIZE,
|
|
|
|
CTXOUTCOMPRESSOR_DESERIALIZE,
|
|
|
|
TEST_ID_END
|
|
|
|
};
|
|
|
|
|
|
|
|
bool read_stdin(std::vector<char> &data) {
|
|
|
|
char buffer[1024];
|
|
|
|
ssize_t length=0;
|
|
|
|
while((length = read(STDIN_FILENO, buffer, 1024)) > 0) {
|
|
|
|
data.insert(data.end(), buffer, buffer+length);
|
|
|
|
|
|
|
|
if (data.size() > (1<<20)) return false;
|
|
|
|
}
|
|
|
|
return length==0;
|
|
|
|
}
|
|
|
|
|
2017-05-18 21:37:31 +02:00
|
|
|
int do_fuzz()
|
2016-04-23 00:19:33 +02:00
|
|
|
{
|
|
|
|
std::vector<char> buffer;
|
|
|
|
if (!read_stdin(buffer)) return 0;
|
|
|
|
|
|
|
|
if (buffer.size() < sizeof(uint32_t)) return 0;
|
|
|
|
|
|
|
|
uint32_t test_id = 0xffffffff;
|
2017-07-11 11:37:53 +02:00
|
|
|
memcpy(&test_id, buffer.data(), sizeof(uint32_t));
|
2016-04-23 00:19:33 +02:00
|
|
|
buffer.erase(buffer.begin(), buffer.begin() + sizeof(uint32_t));
|
|
|
|
|
|
|
|
if (test_id >= TEST_ID_END) return 0;
|
|
|
|
|
|
|
|
CDataStream ds(buffer, SER_NETWORK, INIT_PROTO_VERSION);
|
|
|
|
try {
|
|
|
|
int nVersion;
|
|
|
|
ds >> nVersion;
|
|
|
|
ds.SetVersion(nVersion);
|
|
|
|
} catch (const std::ios_base::failure& e) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(test_id) {
|
|
|
|
case CBLOCK_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CBlock block;
|
|
|
|
ds >> block;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CTRANSACTION_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CTransaction tx(deserialize, ds);
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CBLOCKLOCATOR_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CBlockLocator bl;
|
|
|
|
ds >> bl;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CBLOCKMERKLEROOT:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CBlock block;
|
|
|
|
ds >> block;
|
|
|
|
bool mutated;
|
|
|
|
BlockMerkleRoot(block, &mutated);
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CADDRMAN_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CAddrMan am;
|
|
|
|
ds >> am;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CBLOCKHEADER_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CBlockHeader bh;
|
|
|
|
ds >> bh;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CBANENTRY_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CBanEntry be;
|
|
|
|
ds >> be;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CTXUNDO_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CTxUndo tu;
|
|
|
|
ds >> tu;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CBLOCKUNDO_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CBlockUndo bu;
|
|
|
|
ds >> bu;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CCOINS_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2017-04-25 20:29:39 +02:00
|
|
|
Coin coin;
|
|
|
|
ds >> coin;
|
2016-04-23 00:19:33 +02:00
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CNETADDR_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CNetAddr na;
|
|
|
|
ds >> na;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CSERVICE_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CService s;
|
|
|
|
ds >> s;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CMESSAGEHEADER_DESERIALIZE:
|
|
|
|
{
|
|
|
|
CMessageHeader::MessageStartChars pchMessageStart = {0x00, 0x00, 0x00, 0x00};
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CMessageHeader mh(pchMessageStart);
|
|
|
|
ds >> mh;
|
|
|
|
if (!mh.IsValid(pchMessageStart)) {return 0;}
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CADDRESS_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CAddress a;
|
|
|
|
ds >> a;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CINV_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CInv i;
|
|
|
|
ds >> i;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CBLOOMFILTER_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CBloomFilter bf;
|
|
|
|
ds >> bf;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CDISKBLOCKINDEX_DESERIALIZE:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CDiskBlockIndex dbi;
|
|
|
|
ds >> dbi;
|
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CTXOUTCOMPRESSOR_DESERIALIZE:
|
|
|
|
{
|
|
|
|
CTxOut to;
|
2016-12-15 18:18:31 +01:00
|
|
|
CTxOutCompressor toc(to);
|
2016-04-23 00:19:33 +02:00
|
|
|
try
|
|
|
|
{
|
2016-12-15 18:18:31 +01:00
|
|
|
ds >> toc;
|
2016-04-23 00:19:33 +02:00
|
|
|
} catch (const std::ios_base::failure& e) {return 0;}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-18 21:37:31 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
ECCVerifyHandle globalVerifyHandle;
|
|
|
|
#ifdef __AFL_INIT
|
|
|
|
// Enable AFL deferred forkserver mode. Requires compilation using
|
|
|
|
// afl-clang-fast++. See fuzzing.md for details.
|
|
|
|
__AFL_INIT();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __AFL_LOOP
|
|
|
|
// Enable AFL persistent mode. Requires compilation using afl-clang-fast++.
|
|
|
|
// See fuzzing.md for details.
|
|
|
|
while (__AFL_LOOP(1000)) {
|
|
|
|
do_fuzz();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
return do_fuzz();
|
|
|
|
#endif
|
|
|
|
}
|