2012-08-13 05:26:27 +02:00
|
|
|
// Copyright (c) 2012 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "bloom.h"
|
2013-06-24 16:41:16 +02:00
|
|
|
#include "core.h"
|
2012-08-13 05:26:27 +02:00
|
|
|
#include "script.h"
|
|
|
|
|
|
|
|
#define LN2SQUARED 0.4804530139182014246671025263266649717305529515945455
|
|
|
|
#define LN2 0.6931471805599453094172321214581765680755001343602552
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
static const unsigned char bit_mask[8] = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};
|
|
|
|
|
2013-01-11 02:23:28 +01:00
|
|
|
CBloomFilter::CBloomFilter(unsigned int nElements, double nFPRate, unsigned int nTweakIn, unsigned char nFlagsIn) :
|
2012-08-13 05:26:27 +02:00
|
|
|
// The ideal size for a bloom filter with a given number of elements and false positive rate is:
|
|
|
|
// - nElements * log(fp rate) / ln(2)^2
|
|
|
|
// We ignore filter parameters which will create a bloom filter larger than the protocol limits
|
|
|
|
vData(min((unsigned int)(-1 / LN2SQUARED * nElements * log(nFPRate)), MAX_BLOOM_FILTER_SIZE * 8) / 8),
|
|
|
|
// The ideal number of hash functions is filter size * ln(2) / number of elements
|
|
|
|
// Again, we ignore filter parameters which will create a bloom filter with more hash functions than the protocol limits
|
|
|
|
// See http://en.wikipedia.org/wiki/Bloom_filter for an explanation of these formulas
|
2013-08-19 05:21:06 +02:00
|
|
|
isFull(false),
|
|
|
|
isEmpty(false),
|
2012-11-02 23:33:50 +01:00
|
|
|
nHashFuncs(min((unsigned int)(vData.size() * 8 / nElements * LN2), MAX_HASH_FUNCS)),
|
2013-01-11 02:23:28 +01:00
|
|
|
nTweak(nTweakIn),
|
|
|
|
nFlags(nFlagsIn)
|
2012-08-13 05:26:27 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int CBloomFilter::Hash(unsigned int nHashNum, const std::vector<unsigned char>& vDataToHash) const
|
|
|
|
{
|
|
|
|
// 0xFBA4C795 chosen as it guarantees a reasonable bit difference between nHashNum values.
|
2012-11-02 23:33:50 +01:00
|
|
|
return MurmurHash3(nHashNum * 0xFBA4C795 + nTweak, vDataToHash) % (vData.size() * 8);
|
2012-08-13 05:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CBloomFilter::insert(const vector<unsigned char>& vKey)
|
|
|
|
{
|
2013-08-19 05:21:06 +02:00
|
|
|
if (isFull)
|
2013-02-25 02:36:59 +01:00
|
|
|
return;
|
2012-08-13 05:26:27 +02:00
|
|
|
for (unsigned int i = 0; i < nHashFuncs; i++)
|
|
|
|
{
|
|
|
|
unsigned int nIndex = Hash(i, vKey);
|
|
|
|
// Sets bit nIndex of vData
|
|
|
|
vData[nIndex >> 3] |= bit_mask[7 & nIndex];
|
|
|
|
}
|
2013-08-19 05:21:06 +02:00
|
|
|
isEmpty = false;
|
2012-08-13 05:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CBloomFilter::insert(const COutPoint& outpoint)
|
|
|
|
{
|
|
|
|
CDataStream stream(SER_NETWORK, PROTOCOL_VERSION);
|
|
|
|
stream << outpoint;
|
|
|
|
vector<unsigned char> data(stream.begin(), stream.end());
|
|
|
|
insert(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBloomFilter::insert(const uint256& hash)
|
|
|
|
{
|
|
|
|
vector<unsigned char> data(hash.begin(), hash.end());
|
|
|
|
insert(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBloomFilter::contains(const vector<unsigned char>& vKey) const
|
|
|
|
{
|
2013-08-19 05:21:06 +02:00
|
|
|
if (isFull)
|
2013-02-25 02:36:59 +01:00
|
|
|
return true;
|
2013-08-19 05:21:06 +02:00
|
|
|
if (isEmpty)
|
|
|
|
return false;
|
2012-08-13 05:26:27 +02:00
|
|
|
for (unsigned int i = 0; i < nHashFuncs; i++)
|
|
|
|
{
|
|
|
|
unsigned int nIndex = Hash(i, vKey);
|
|
|
|
// Checks bit nIndex of vData
|
|
|
|
if (!(vData[nIndex >> 3] & bit_mask[7 & nIndex]))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBloomFilter::contains(const COutPoint& outpoint) const
|
|
|
|
{
|
|
|
|
CDataStream stream(SER_NETWORK, PROTOCOL_VERSION);
|
|
|
|
stream << outpoint;
|
|
|
|
vector<unsigned char> data(stream.begin(), stream.end());
|
|
|
|
return contains(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBloomFilter::contains(const uint256& hash) const
|
|
|
|
{
|
|
|
|
vector<unsigned char> data(hash.begin(), hash.end());
|
|
|
|
return contains(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBloomFilter::IsWithinSizeConstraints() const
|
|
|
|
{
|
|
|
|
return vData.size() <= MAX_BLOOM_FILTER_SIZE && nHashFuncs <= MAX_HASH_FUNCS;
|
|
|
|
}
|
|
|
|
|
2012-08-19 05:38:28 +02:00
|
|
|
bool CBloomFilter::IsRelevantAndUpdate(const CTransaction& tx, const uint256& hash)
|
2012-08-13 05:26:27 +02:00
|
|
|
{
|
2012-08-19 05:38:28 +02:00
|
|
|
bool fFound = false;
|
2012-08-13 05:26:27 +02:00
|
|
|
// Match if the filter contains the hash of tx
|
|
|
|
// for finding tx when they appear in a block
|
2013-08-19 05:21:06 +02:00
|
|
|
if (isFull)
|
|
|
|
return true;
|
|
|
|
if (isEmpty)
|
|
|
|
return false;
|
2012-08-13 05:26:30 +02:00
|
|
|
if (contains(hash))
|
2012-08-19 05:38:28 +02:00
|
|
|
fFound = true;
|
2012-08-13 05:26:27 +02:00
|
|
|
|
2012-08-19 05:38:28 +02:00
|
|
|
for (unsigned int i = 0; i < tx.vout.size(); i++)
|
2012-08-13 05:26:27 +02:00
|
|
|
{
|
2012-08-19 05:38:28 +02:00
|
|
|
const CTxOut& txout = tx.vout[i];
|
2012-08-13 05:26:27 +02:00
|
|
|
// Match if the filter contains any arbitrary script data element in any scriptPubKey in tx
|
2012-08-19 05:38:28 +02:00
|
|
|
// If this matches, also add the specific output that was matched.
|
|
|
|
// This means clients don't have to update the filter themselves when a new relevant tx
|
|
|
|
// is discovered in order to find spending transactions, which avoids round-tripping and race conditions.
|
2012-08-13 05:26:27 +02:00
|
|
|
CScript::const_iterator pc = txout.scriptPubKey.begin();
|
|
|
|
vector<unsigned char> data;
|
|
|
|
while (pc < txout.scriptPubKey.end())
|
|
|
|
{
|
|
|
|
opcodetype opcode;
|
|
|
|
if (!txout.scriptPubKey.GetOp(pc, opcode, data))
|
|
|
|
break;
|
|
|
|
if (data.size() != 0 && contains(data))
|
2012-08-19 05:38:28 +02:00
|
|
|
{
|
|
|
|
fFound = true;
|
2013-01-11 02:23:28 +01:00
|
|
|
if ((nFlags & BLOOM_UPDATE_MASK) == BLOOM_UPDATE_ALL)
|
|
|
|
insert(COutPoint(hash, i));
|
|
|
|
else if ((nFlags & BLOOM_UPDATE_MASK) == BLOOM_UPDATE_P2PUBKEY_ONLY)
|
|
|
|
{
|
|
|
|
txnouttype type;
|
|
|
|
vector<vector<unsigned char> > vSolutions;
|
|
|
|
if (Solver(txout.scriptPubKey, type, vSolutions) &&
|
|
|
|
(type == TX_PUBKEY || type == TX_MULTISIG))
|
|
|
|
insert(COutPoint(hash, i));
|
|
|
|
}
|
2012-08-19 05:38:28 +02:00
|
|
|
break;
|
|
|
|
}
|
2012-08-13 05:26:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-19 05:38:28 +02:00
|
|
|
if (fFound)
|
|
|
|
return true;
|
|
|
|
|
2012-08-13 05:26:27 +02:00
|
|
|
BOOST_FOREACH(const CTxIn& txin, tx.vin)
|
|
|
|
{
|
|
|
|
// Match if the filter contains an outpoint tx spends
|
|
|
|
if (contains(txin.prevout))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Match if the filter contains any arbitrary script data element in any scriptSig in tx
|
|
|
|
CScript::const_iterator pc = txin.scriptSig.begin();
|
|
|
|
vector<unsigned char> data;
|
|
|
|
while (pc < txin.scriptSig.end())
|
|
|
|
{
|
|
|
|
opcodetype opcode;
|
|
|
|
if (!txin.scriptSig.GetOp(pc, opcode, data))
|
|
|
|
break;
|
|
|
|
if (data.size() != 0 && contains(data))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-19 05:21:06 +02:00
|
|
|
|
|
|
|
void CBloomFilter::UpdateEmptyFull()
|
|
|
|
{
|
|
|
|
bool full = true;
|
|
|
|
bool empty = true;
|
|
|
|
for (unsigned int i = 0; i < vData.size(); i++)
|
|
|
|
{
|
|
|
|
full &= vData[i] == 0xff;
|
|
|
|
empty &= vData[i] == 0;
|
|
|
|
}
|
|
|
|
isFull = full;
|
|
|
|
isEmpty = empty;
|
|
|
|
}
|