Fabcoin Core  0.16.2
P2P Digital Currency
merkleblock.cpp
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2017 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #include <merkleblock.h>
7 
8 #include <hash.h>
9 #include <consensus/consensus.h>
10 #include <utilstrencodings.h>
11 
13 {
14  header = block.GetBlockHeader();
15 
16  std::vector<bool> vMatch;
17  std::vector<uint256> vHashes;
18 
19  vMatch.reserve(block.vtx.size());
20  vHashes.reserve(block.vtx.size());
21 
22  for (unsigned int i = 0; i < block.vtx.size(); i++)
23  {
24  const uint256& hash = block.vtx[i]->GetHash();
25  if (filter.IsRelevantAndUpdate(*block.vtx[i]))
26  {
27  vMatch.push_back(true);
28  vMatchedTxn.push_back(std::make_pair(i, hash));
29  }
30  else
31  vMatch.push_back(false);
32  vHashes.push_back(hash);
33  }
34 
35  txn = CPartialMerkleTree(vHashes, vMatch);
36 }
37 
38 CMerkleBlock::CMerkleBlock(const CBlock& block, const std::set<uint256>& txids)
39 {
40  header = block.GetBlockHeader();
41 
42  std::vector<bool> vMatch;
43  std::vector<uint256> vHashes;
44 
45  vMatch.reserve(block.vtx.size());
46  vHashes.reserve(block.vtx.size());
47 
48  for (unsigned int i = 0; i < block.vtx.size(); i++)
49  {
50  const uint256& hash = block.vtx[i]->GetHash();
51  if (txids.count(hash))
52  vMatch.push_back(true);
53  else
54  vMatch.push_back(false);
55  vHashes.push_back(hash);
56  }
57 
58  txn = CPartialMerkleTree(vHashes, vMatch);
59 }
60 
61 uint256 CPartialMerkleTree::CalcHash(int height, unsigned int pos, const std::vector<uint256> &vTxid) {
62  //we can never have zero txs in a merkle block, we always need the coinbase tx
63  //if we do not have this assert, we can hit a memory access violation when indexing into vTxid
64  assert(vTxid.size() != 0);
65  if (height == 0) {
66  // hash at height 0 is the txids themself
67  return vTxid[pos];
68  } else {
69  // calculate left hash
70  uint256 left = CalcHash(height-1, pos*2, vTxid), right;
71  // calculate right hash if not beyond the end of the array - copy left hash otherwise
72  if (pos*2+1 < CalcTreeWidth(height-1))
73  right = CalcHash(height-1, pos*2+1, vTxid);
74  else
75  right = left;
76  // combine subhashes
77  return Hash(BEGIN(left), END(left), BEGIN(right), END(right));
78  }
79 }
80 
81 void CPartialMerkleTree::TraverseAndBuild(int height, unsigned int pos, const std::vector<uint256> &vTxid, const std::vector<bool> &vMatch) {
82  // determine whether this node is the parent of at least one matched txid
83  bool fParentOfMatch = false;
84  for (unsigned int p = pos << height; p < (pos+1) << height && p < nTransactions; p++)
85  fParentOfMatch |= vMatch[p];
86  // store as flag bit
87  vBits.push_back(fParentOfMatch);
88  if (height==0 || !fParentOfMatch) {
89  // if at height 0, or nothing interesting below, store hash and stop
90  vHash.push_back(CalcHash(height, pos, vTxid));
91  } else {
92  // otherwise, don't store any hash, but descend into the subtrees
93  TraverseAndBuild(height-1, pos*2, vTxid, vMatch);
94  if (pos*2+1 < CalcTreeWidth(height-1))
95  TraverseAndBuild(height-1, pos*2+1, vTxid, vMatch);
96  }
97 }
98 
99 uint256 CPartialMerkleTree::TraverseAndExtract(int height, unsigned int pos, unsigned int &nBitsUsed, unsigned int &nHashUsed, std::vector<uint256> &vMatch, std::vector<unsigned int> &vnIndex) {
100  if (nBitsUsed >= vBits.size()) {
101  // overflowed the bits array - failure
102  fBad = true;
103  return uint256();
104  }
105  bool fParentOfMatch = vBits[nBitsUsed++];
106  if (height==0 || !fParentOfMatch) {
107  // if at height 0, or nothing interesting below, use stored hash and do not descend
108  if (nHashUsed >= vHash.size()) {
109  // overflowed the hash array - failure
110  fBad = true;
111  return uint256();
112  }
113  const uint256 &hash = vHash[nHashUsed++];
114  if (height==0 && fParentOfMatch) { // in case of height 0, we have a matched txid
115  vMatch.push_back(hash);
116  vnIndex.push_back(pos);
117  }
118  return hash;
119  } else {
120  // otherwise, descend into the subtrees to extract matched txids and hashes
121  uint256 left = TraverseAndExtract(height-1, pos*2, nBitsUsed, nHashUsed, vMatch, vnIndex), right;
122  if (pos*2+1 < CalcTreeWidth(height-1)) {
123  right = TraverseAndExtract(height-1, pos*2+1, nBitsUsed, nHashUsed, vMatch, vnIndex);
124  if (right == left) {
125  // The left and right branches should never be identical, as the transaction
126  // hashes covered by them must each be unique.
127  fBad = true;
128  }
129  } else {
130  right = left;
131  }
132  // and combine them before returning
133  return Hash(BEGIN(left), END(left), BEGIN(right), END(right));
134  }
135 }
136 
137 CPartialMerkleTree::CPartialMerkleTree(const std::vector<uint256> &vTxid, const std::vector<bool> &vMatch) : nTransactions(vTxid.size()), fBad(false) {
138  // reset state
139  vBits.clear();
140  vHash.clear();
141 
142  // calculate height of tree
143  int nHeight = 0;
144  while (CalcTreeWidth(nHeight) > 1)
145  nHeight++;
146 
147  // traverse the partial tree
148  TraverseAndBuild(nHeight, 0, vTxid, vMatch);
149 }
150 
152 
153 uint256 CPartialMerkleTree::ExtractMatches(std::vector<uint256> &vMatch, std::vector<unsigned int> &vnIndex) {
154  vMatch.clear();
155  // An empty set will not work
156  if (nTransactions == 0)
157  return uint256();
158  // check for excessively high numbers of transactions
159  //if (nTransactions > MAX_BLOCK_WEIGHT / MIN_TRANSACTION_WEIGHT)
160  if (nTransactions > dgpMaxBlockSize * WITNESS_SCALE_FACTOR / MIN_TRANSACTION_WEIGHT)
161  return uint256();
162  // there can never be more hashes provided than one for every txid
163  if (vHash.size() > nTransactions)
164  return uint256();
165  // there must be at least one bit per node in the partial tree, and at least one node per hash
166  if (vBits.size() < vHash.size())
167  return uint256();
168  // calculate height of tree
169  int nHeight = 0;
170  while (CalcTreeWidth(nHeight) > 1)
171  nHeight++;
172  // traverse the partial tree
173  unsigned int nBitsUsed = 0, nHashUsed = 0;
174  uint256 hashMerkleRoot = TraverseAndExtract(nHeight, 0, nBitsUsed, nHashUsed, vMatch, vnIndex);
175  // verify that no problems occurred during the tree traversal
176  if (fBad)
177  return uint256();
178  // verify that all bits were consumed (except for the padding caused by serializing it as a byte sequence)
179  if ((nBitsUsed+7)/8 != (vBits.size()+7)/8)
180  return uint256();
181  // verify that all hashes were consumed
182  if (nHashUsed != vHash.size())
183  return uint256();
184  return hashMerkleRoot;
185 }
CBlockHeader header
Public only for unit testing.
Definition: merkleblock.h:131
uint256 ExtractMatches(std::vector< uint256 > &vMatch, std::vector< unsigned int > &vnIndex)
extract the matching txid&#39;s represented by this partial merkle tree and their respective indices with...
void TraverseAndBuild(int height, unsigned int pos, const std::vector< uint256 > &vTxid, const std::vector< bool > &vMatch)
recursive function that traverses tree nodes, storing the data as bits and hashes ...
Definition: merkleblock.cpp:81
unsigned int nTransactions
the total number of transactions in the block
Definition: merkleblock.h:54
Definition: block.h:155
bool fBad
flag set when encountering invalid data
Definition: merkleblock.h:63
bool IsRelevantAndUpdate(const CTransaction &tx)
Also adds any outputs which match the filter to the filter (to match their spending txes) ...
Definition: bloom.cpp:133
BloomFilter is a probabilistic filter which SPV clients provide so that we can filter the transaction...
Definition: bloom.h:44
assert(len-trim+(2 *lenIndices)<=WIDTH)
Data structure that represents a partial merkle tree.
Definition: merkleblock.h:50
unsigned int dgpMaxBlockSize
Definition: consensus.cpp:12
#define BEGIN(a)
Utilities for converting data from/to strings.
std::vector< uint256 > vHash
txids and internal hashes
Definition: merkleblock.h:60
unsigned int CalcTreeWidth(int height)
helper function to efficiently calculate the number of nodes at given height in the merkle tree ...
Definition: merkleblock.h:66
CBlockHeader GetBlockHeader() const
Definition: block.h:190
#define END(a)
uint256 Hash(const T1 pbegin, const T1 pend)
Compute the 256-bit hash of an object.
Definition: hash.h:70
CPartialMerkleTree txn
Definition: merkleblock.h:132
std::vector< bool > vBits
node-is-parent-of-matched-txid bits
Definition: merkleblock.h:57
256-bit opaque blob.
Definition: uint256.h:132
std::vector< CTransactionRef > vtx
Definition: block.h:159
uint256 TraverseAndExtract(int height, unsigned int pos, unsigned int &nBitsUsed, unsigned int &nHashUsed, std::vector< uint256 > &vMatch, std::vector< unsigned int > &vnIndex)
recursive function that traverses tree nodes, consuming the bits and hashes produced by TraverseAndBu...
Definition: merkleblock.cpp:99
uint8_t const size_t const size
Definition: sha3.h:20
std::vector< std::pair< unsigned int, uint256 > > vMatchedTxn
Public only for unit testing and relay testing (not relayed)
Definition: merkleblock.h:136
uint256 CalcHash(int height, unsigned int pos, const std::vector< uint256 > &vTxid)
calculate the hash of a node in the merkle tree (at leaf level: the txid&#39;s themselves) ...
Definition: merkleblock.cpp:61