Bitcoin Core 31.99.0
P2P Digital Currency
chain.cpp
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-present 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 <chain.h>
7#include <tinyformat.h>
8#include <util/check.h>
9
10std::string CBlockIndex::ToString() const
11{
12 return strprintf("CBlockIndex(pprev=%p, nHeight=%d, merkle=%s, hashBlock=%s)",
14}
15
17{
18 CBlockIndex* pindex = &block;
19 vChain.resize(pindex->nHeight + 1);
20 while (pindex && vChain[pindex->nHeight] != pindex) {
21 vChain[pindex->nHeight] = pindex;
22 pindex = pindex->pprev;
23 }
24}
25
26std::vector<uint256> LocatorEntries(const CBlockIndex* index)
27{
28 int step = 1;
29 std::vector<uint256> have;
30 if (index == nullptr) return have;
31
32 have.reserve(32);
33 while (index) {
34 have.emplace_back(index->GetBlockHash());
35 if (index->nHeight == 0) break;
36 // Exponentially larger steps back, plus the genesis block.
37 int height = std::max(index->nHeight - step, 0);
38 // Use skiplist.
39 index = index->GetAncestor(height);
40 if (have.size() > 10) step *= 2;
41 }
42 return have;
43}
44
46{
47 return CBlockLocator{LocatorEntries(index)};
48}
49
50const CBlockIndex* CChain::FindFork(const CBlockIndex& index) const
51{
52 const auto* pindex{&index};
53 if (pindex->nHeight > Height())
54 pindex = pindex->GetAncestor(Height());
55 while (pindex && !Contains(*pindex))
56 pindex = pindex->pprev;
57 return pindex;
58}
59
60CBlockIndex* CChain::FindEarliestAtLeast(int64_t nTime, int height) const
61{
62 std::pair<int64_t, int> blockparams = std::make_pair(nTime, height);
63 std::vector<CBlockIndex*>::const_iterator lower = std::lower_bound(vChain.begin(), vChain.end(), blockparams,
64 [](CBlockIndex* pBlock, const std::pair<int64_t, int>& blockparams) -> bool { return pBlock->GetBlockTimeMax() < blockparams.first || pBlock->nHeight < blockparams.second; });
65 return (lower == vChain.end() ? nullptr : *lower);
66}
67
69int static inline InvertLowestOne(int n) { return n & (n - 1); }
70
72int static inline GetSkipHeight(int height) {
73 if (height < 2)
74 return 0;
75
76 // Determine which height to jump back to. Any number strictly lower than height is acceptable,
77 // but the following expression seems to perform well in simulations (max 110 steps to go back
78 // up to 2**18 blocks).
79 return (height & 1) ? InvertLowestOne(InvertLowestOne(height - 1)) + 1 : InvertLowestOne(height);
80}
81
82const CBlockIndex* CBlockIndex::GetAncestor(int height) const
83{
84 if (height > nHeight || height < 0) {
85 return nullptr;
86 }
87
88 const CBlockIndex* pindexWalk = this;
89 int heightWalk = nHeight;
90 while (heightWalk > height) {
91 int heightSkip = GetSkipHeight(heightWalk);
92 int heightSkipPrev = GetSkipHeight(heightWalk - 1);
93 if (pindexWalk->pskip != nullptr &&
94 (heightSkip == height ||
95 (heightSkip > height && !(heightSkipPrev < heightSkip - 2 &&
96 heightSkipPrev >= height)))) {
97 // Only follow pskip if pprev->pskip isn't better than pskip->pprev.
98 pindexWalk = pindexWalk->pskip;
99 heightWalk = heightSkip;
100 } else {
101 assert(pindexWalk->pprev);
102 pindexWalk = pindexWalk->pprev;
103 heightWalk--;
104 }
105 }
106 return pindexWalk;
107}
108
110{
111 return const_cast<CBlockIndex*>(static_cast<const CBlockIndex*>(this)->GetAncestor(height));
112}
113
115{
116 if (pprev)
118}
119
121{
122 arith_uint256 bnTarget;
123 bool fNegative;
124 bool fOverflow;
125 bnTarget.SetCompact(bits, &fNegative, &fOverflow);
126 if (fNegative || fOverflow || bnTarget == 0)
127 return 0;
128 // We need to compute 2**256 / (bnTarget+1), but we can't represent 2**256
129 // as it's too large for an arith_uint256. However, as 2**256 is at least as large
130 // as bnTarget+1, it is equal to ((2**256 - bnTarget - 1) / (bnTarget+1)) + 1,
131 // or ~bnTarget / (bnTarget+1) + 1.
132 return (~bnTarget / (bnTarget + 1)) + 1;
133}
134
135int64_t GetBlockProofEquivalentTime(const CBlockIndex& to, const CBlockIndex& from, const CBlockIndex& tip, const Consensus::Params& params)
136{
138 int sign = 1;
139 if (to.nChainWork > from.nChainWork) {
140 r = to.nChainWork - from.nChainWork;
141 } else {
142 r = from.nChainWork - to.nChainWork;
143 sign = -1;
144 }
145 r = r * arith_uint256(params.nPowTargetSpacing) / GetBlockProof(tip);
146 if (r.bits() > 63) {
147 return sign * std::numeric_limits<int64_t>::max();
148 }
149 return sign * int64_t(r.GetLow64());
150}
151
155 // First rewind to the last common height (the forking point cannot be past one of the two).
156 if (pa->nHeight > pb->nHeight) {
157 pa = pa->GetAncestor(pb->nHeight);
158 } else if (pb->nHeight > pa->nHeight) {
159 pb = pb->GetAncestor(pa->nHeight);
160 }
161 while (pa != pb) {
162 // Jump back until pa and pb have a common "skip" ancestor.
163 while (pa->pskip != pb->pskip) {
164 // This logic relies on the property that equal-height blocks have equal-height skip
165 // pointers.
166 Assume(pa->nHeight == pb->nHeight);
167 Assume(pa->pskip->nHeight == pb->pskip->nHeight);
168 pa = pa->pskip;
169 pb = pb->pskip;
170 }
171 // At this point, pa and pb are different, but have equal pskip. The forking point lies in
172 // between pa/pb on the one end, and pa->pskip/pb->pskip on the other end.
173 pa = pa->pprev;
174 pb = pb->pprev;
175 }
176 return pa;
177}
std::vector< uint256 > LocatorEntries(const CBlockIndex *index)
Construct a list of hash entries to put in a locator.
Definition: chain.cpp:26
CBlockLocator GetLocator(const CBlockIndex *index)
Get a locator for a block index entry.
Definition: chain.cpp:45
int64_t GetBlockProofEquivalentTime(const CBlockIndex &to, const CBlockIndex &from, const CBlockIndex &tip, const Consensus::Params &params)
Return the time it would take to redo the work difference between from and to, assuming the current h...
Definition: chain.cpp:135
static int GetSkipHeight(int height)
Compute what height to jump back to with the CBlockIndex::pskip pointer.
Definition: chain.cpp:72
const CBlockIndex * LastCommonAncestor(const CBlockIndex *pa, const CBlockIndex *pb)
Find the last common ancestor two blocks have.
Definition: chain.cpp:154
static int InvertLowestOne(int n)
Turn the lowest '1' bit in the binary representation of a number into a '0'.
Definition: chain.cpp:69
arith_uint256 GetBitsProof(uint32_t bits)
Compute how much work an nBits value corresponds to.
Definition: chain.cpp:120
arith_uint256 GetBlockProof(const CBlockIndex &block)
Compute how much work a block index entry corresponds to.
Definition: chain.h:305
#define Assume(val)
Assume is the identity function.
Definition: check.h:128
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:94
uint256 hashMerkleRoot
Definition: chain.h:141
std::string ToString() const
Definition: chain.cpp:10
CBlockIndex * pprev
pointer to the index of the predecessor of this block
Definition: chain.h:100
void BuildSkip()
Build the skiplist pointer for this entry.
Definition: chain.cpp:114
arith_uint256 nChainWork
(memory only) Total amount of work (expected number of hashes) in the chain up to and including this ...
Definition: chain.h:118
uint256 GetBlockHash() const
Definition: chain.h:198
CBlockIndex * pskip
pointer to the index of some further predecessor of this block
Definition: chain.h:103
CBlockIndex * GetAncestor(int height)
Efficiently find an ancestor of this block.
Definition: chain.cpp:109
int nHeight
height of the entry in the chain. The genesis block has height 0
Definition: chain.h:106
bool Contains(const CBlockIndex &index) const
Efficiently check whether a block is present in this chain.
Definition: chain.h:410
const CBlockIndex * FindFork(const CBlockIndex &index) const
Find the last common block between this chain and a block index entry.
Definition: chain.cpp:50
void SetTip(CBlockIndex &block)
Set/initialize a chain with a given tip.
Definition: chain.cpp:16
CBlockIndex * FindEarliestAtLeast(int64_t nTime, int height) const
Find the earliest block with timestamp equal or greater than the given time and height equal or great...
Definition: chain.cpp:60
int Height() const
Return the maximal height in the chain.
Definition: chain.h:425
std::vector< CBlockIndex * > vChain
Definition: chain.h:382
256-bit unsigned big integer.
arith_uint256 & SetCompact(uint32_t nCompact, bool *pfNegative=nullptr, bool *pfOverflow=nullptr)
The "compact" format is a representation of a whole number N using an unsigned 32bit number similar t...
std::string ToString() const
Definition: uint256.cpp:21
uint64_t GetLow64() const
unsigned int bits() const
Returns the position of the highest bit set plus one, or zero if the value is zero.
static int sign(const secp256k1_context *ctx, struct signer_secrets *signer_secrets, struct signer *signer, const secp256k1_musig_keyagg_cache *cache, const unsigned char *msg32, unsigned char *sig64)
Definition: musig.c:106
Describes a place in the block chain to another node such that if the other node doesn't have the sam...
Definition: block.h:117
Parameters that influence chain consensus.
Definition: params.h:87
int64_t nPowTargetSpacing
Definition: params.h:123
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1172
assert(!tx.IsCoinBase())