1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/versionbits.h]
//-------------------------------------------[.cpp/bitcoin/src/versionbits.cpp]
/**
| What block version to use for new blocks
| (pre versionbits)
|
*/
pub const VERSIONBITS_LAST_OLD_BLOCK_VERSION: u32 = 4;
/**
| What bits to set in version for versionbits
| blocks
|
*/
pub const VERSIONBITS_TOP_BITS: u32 = 0x20000000;
/**
| What bitmask determines whether versionbits
| is in use
|
*/
pub const VERSIONBITS_TOP_MASK: u32 = 0xE0000000;
/**
| Total bits available for versionbits
|
*/
pub const VERSIONBITS_NUM_BITS: u32 = 29;
/**
| BIP 9 defines a finite-state-machine
| to deploy a softfork in multiple stages.
|
| State transitions happen during retarget
| period if conditions are met
|
| In case of reorg, transitions can go
| backward. Without transition, state
| is inherited between periods. All blocks
| of a period share the same state.
|
*/
pub enum ThresholdState {
/**
| First state that each softfork starts
| out as. The genesis block is by definition
| in this state for each deployment.
|
*/
DEFINED,
/**
| For blocks past the starttime.
|
*/
STARTED,
/**
| For at least one retarget period after
| the first retarget period with STARTED
| blocks of which at least threshold have
| the associated bit set in nVersion,
| until min_activation_height is reached.
|
*/
LOCKED_IN,
/**
| For all blocks after the LOCKED_IN retarget
| period (final state)
|
*/
ACTIVE,
/**
| For all blocks once the first retarget
| period after the timeout time is hit,
| if LOCKED_IN wasn't already reached
| (final state)
|
*/
FAILED,
}
/**
| A map that gives the state for blocks whose
| height is a multiple of Period().
|
| The map is indexed by the block's parent,
| however, so all keys in the map will either be
| nullptr or a block with (height + 1) % Period()
| == 0.
*/
pub type ThresholdConditionCache = HashMap<*const BlockIndex,ThresholdState>;
/**
| Display status of an in-progress BIP9
| softfork
|
*/
pub struct BIP9Stats {
/**
| Length of blocks of the BIP9 signalling
| period
|
*/
period: i32,
/**
| Number of blocks with the version bit
| set required to activate the softfork
|
*/
threshold: i32,
/**
| Number of blocks elapsed since the beginning
| of the current period
|
*/
elapsed: i32,
/**
| Number of blocks with the version bit
| set since the beginning of the current
| period
|
*/
count: i32,
/**
| False if there are not enough blocks
| left in this period to pass activation
| threshold
|
*/
possible: bool,
}
/**
| Abstract class that implements BIP9-style
| threshold logic, and caches results.
|
*/
pub trait AbstractThresholdConditionChecker:
abstract_threshold_condition_checker::Interface {
/**
| Returns the state for pindex A based
| on parent pindexPrev B. Applies any
| state transition if conditions are
| present.
|
| Caches state from first block of period.
|
*/
fn get_state_for(&self,
pindex_prev: *const BlockIndex,
params: &ChainConsensusParams,
cache: &mut ThresholdConditionCache) -> ThresholdState {
todo!();
/*
int nPeriod = Period(params);
int nThreshold = Threshold(params);
int min_activation_height = MinActivationHeight(params);
int64_t nTimeStart = BeginTime(params);
int64_t nTimeTimeout = EndTime(params);
// Check if this deployment is always active.
if (nTimeStart == consensus::BIP9Deployment::ALWAYS_ACTIVE) {
return ThresholdState::ACTIVE;
}
// Check if this deployment is never active.
if (nTimeStart == consensus::BIP9Deployment::NEVER_ACTIVE) {
return ThresholdState::FAILED;
}
// A block's state is always the same as that of the first of its period, so it is computed based on a pindexPrev whose height equals a multiple of nPeriod - 1.
if (pindexPrev != nullptr) {
pindexPrev = pindexPrev->GetAncestor(pindexPrev->nHeight - ((pindexPrev->nHeight + 1) % nPeriod));
}
// Walk backwards in steps of nPeriod to find a pindexPrev whose information is known
std::vector<const CBlockIndex*> vToCompute;
while (cache.count(pindexPrev) == 0) {
if (pindexPrev == nullptr) {
// The genesis block is by definition defined.
cache[pindexPrev] = ThresholdState::DEFINED;
break;
}
if (pindexPrev->GetMedianTimePast() < nTimeStart) {
// Optimization: don't recompute down further, as we know every earlier block will be before the start time
cache[pindexPrev] = ThresholdState::DEFINED;
break;
}
vToCompute.push_back(pindexPrev);
pindexPrev = pindexPrev->GetAncestor(pindexPrev->nHeight - nPeriod);
}
// At this point, cache[pindexPrev] is known
assert(cache.count(pindexPrev));
ThresholdState state = cache[pindexPrev];
// Now walk forward and compute the state of descendants of pindexPrev
while (!vToCompute.empty()) {
ThresholdState stateNext = state;
pindexPrev = vToCompute.back();
vToCompute.pop_back();
switch (state) {
case ThresholdState::DEFINED: {
if (pindexPrev->GetMedianTimePast() >= nTimeStart) {
stateNext = ThresholdState::STARTED;
}
break;
}
case ThresholdState::STARTED: {
// We need to count
const CBlockIndex* pindexCount = pindexPrev;
int count = 0;
for (int i = 0; i < nPeriod; i++) {
if (Condition(pindexCount, params)) {
count++;
}
pindexCount = pindexCount->pprev;
}
if (count >= nThreshold) {
stateNext = ThresholdState::LOCKED_IN;
} else if (pindexPrev->GetMedianTimePast() >= nTimeTimeout) {
stateNext = ThresholdState::FAILED;
}
break;
}
case ThresholdState::LOCKED_IN: {
// Progresses into ACTIVE provided activation height will have been reached.
if (pindexPrev->nHeight + 1 >= min_activation_height) {
stateNext = ThresholdState::ACTIVE;
}
break;
}
case ThresholdState::FAILED:
case ThresholdState::ACTIVE: {
// Nothing happens, these are terminal states.
break;
}
}
cache[pindexPrev] = state = stateNext;
}
return state;
*/
}
/**
| Returns the numerical statistics of
| an in-progress BIP9 softfork in the
| current period
|
*/
fn get_state_statistics_for(&self,
pindex: *const BlockIndex,
params: &ChainConsensusParams) -> BIP9Stats {
todo!();
/*
BIP9Stats stats = {};
stats.period = Period(params);
stats.threshold = Threshold(params);
if (pindex == nullptr)
return stats;
// Find beginning of period
const CBlockIndex* pindexEndOfPrevPeriod = pindex->GetAncestor(pindex->nHeight - ((pindex->nHeight + 1) % stats.period));
stats.elapsed = pindex->nHeight - pindexEndOfPrevPeriod->nHeight;
// Count from current block to beginning of period
int count = 0;
const CBlockIndex* currentIndex = pindex;
while (pindexEndOfPrevPeriod->nHeight != currentIndex->nHeight){
if (Condition(currentIndex, params))
count++;
currentIndex = currentIndex->pprev;
}
stats.count = count;
stats.possible = (stats.period - stats.threshold ) >= (stats.elapsed - count);
return stats;
*/
}
/**
| Returns the height since when the ThresholdState
| has started for pindex A based on parent
| pindexPrev B, all blocks of a period
| share the same
|
*/
fn get_state_since_height_for(&self,
pindex_prev: *const BlockIndex,
params: &ChainConsensusParams,
cache: &mut ThresholdConditionCache) -> i32 {
todo!();
/*
int64_t start_time = BeginTime(params);
if (start_time == consensus::BIP9Deployment::ALWAYS_ACTIVE || start_time == consensus::BIP9Deployment::NEVER_ACTIVE) {
return 0;
}
const ThresholdState initialState = GetStateFor(pindexPrev, params, cache);
// BIP 9 about state DEFINED: "The genesis block is by definition in this state for each deployment."
if (initialState == ThresholdState::DEFINED) {
return 0;
}
const int nPeriod = Period(params);
// A block's state is always the same as that of the first of its period, so it is computed based on a pindexPrev whose height equals a multiple of nPeriod - 1.
// To ease understanding of the following height calculation, it helps to remember that
// right now pindexPrev points to the block prior to the block that we are computing for, thus:
// if we are computing for the last block of a period, then pindexPrev points to the second to last block of the period, and
// if we are computing for the first block of a period, then pindexPrev points to the last block of the previous period.
// The parent of the genesis block is represented by nullptr.
pindexPrev = pindexPrev->GetAncestor(pindexPrev->nHeight - ((pindexPrev->nHeight + 1) % nPeriod));
const CBlockIndex* previousPeriodParent = pindexPrev->GetAncestor(pindexPrev->nHeight - nPeriod);
while (previousPeriodParent != nullptr && GetStateFor(previousPeriodParent, params, cache) == initialState) {
pindexPrev = previousPeriodParent;
previousPeriodParent = pindexPrev->GetAncestor(pindexPrev->nHeight - nPeriod);
}
// Adjust the result because right now we point to the parent block.
return pindexPrev->nHeight + 1;
*/
}
}
pub mod abstract_threshold_condition_checker {
use super::*;
pub trait Condition {
fn condition(&self,
pindex: *const BlockIndex,
params: &ChainConsensusParams) -> bool;
}
pub trait BeginTime {
fn begin_time(&self, params: &ChainConsensusParams) -> i64;
}
pub trait EndTime {
fn end_time(&self, params: &ChainConsensusParams) -> i64;
}
pub trait MinActivationHeight {
fn min_activation_height(&self, params: &ChainConsensusParams) -> i32 { 0 }
}
pub trait Period {
fn period(&self, params: &ChainConsensusParams) -> i32;
}
pub trait Threshold {
fn threshold(&self, params: &ChainConsensusParams) -> i32;
}
pub trait Interface:
Condition
+ BeginTime
+ EndTime
+ MinActivationHeight
+ Period
+ Threshold { }
}
/**
| BIP 9 allows multiple softforks to be
| deployed in parallel. We cache per-period
| state for every one of them.
|
*/
pub struct VersionBitsCache {
mutex: std::sync::Mutex<version_bits_cache::Inner>,
}
pub mod version_bits_cache {
use super::*;
pub struct Inner {
caches: [ThresholdConditionCache; ConsensusDeploymentPos::MAX_VERSION_BITS_DEPLOYMENTS as usize],
}
}
/**
| Class to implement versionbits logic.
|
*/
pub struct VersionBitsConditionChecker {
id: ConsensusDeploymentPos,
}
impl AbstractThresholdConditionChecker for VersionBitsConditionChecker {
}
impl abstract_threshold_condition_checker::Interface for VersionBitsConditionChecker {}
impl abstract_threshold_condition_checker::BeginTime for VersionBitsConditionChecker {
fn begin_time(&self, params: &ChainConsensusParams) -> i64 {
todo!();
/*
return params.vDeployments[id].nStartTime;
*/
}
}
impl abstract_threshold_condition_checker::EndTime for VersionBitsConditionChecker {
fn end_time(&self, params: &ChainConsensusParams) -> i64 {
todo!();
/*
return params.vDeployments[id].nTimeout;
*/
}
}
impl abstract_threshold_condition_checker::MinActivationHeight for VersionBitsConditionChecker {
fn min_activation_height(&self, params: &ChainConsensusParams) -> i32 {
todo!();
/*
return params.vDeployments[id].min_activation_height;
*/
}
}
impl abstract_threshold_condition_checker::Period for VersionBitsConditionChecker {
fn period(&self, params: &ChainConsensusParams) -> i32 {
todo!();
/*
return params.nMinerConfirmationWindow;
*/
}
}
impl abstract_threshold_condition_checker::Threshold for VersionBitsConditionChecker {
fn threshold(&self, params: &ChainConsensusParams) -> i32 {
todo!();
/*
return params.nRuleChangeActivationThreshold;
*/
}
}
impl abstract_threshold_condition_checker::Condition for VersionBitsConditionChecker {
fn condition(&self,
pindex: *const BlockIndex,
params: &ChainConsensusParams) -> bool {
todo!();
/*
return (((pindex->nVersion & VERSIONBITS_TOP_MASK) == VERSIONBITS_TOP_BITS) && (pindex->nVersion & Mask(params)) != 0);
*/
}
}
impl VersionBitsConditionChecker {
pub fn mask(&self, params: &ChainConsensusParams) -> u32 {
todo!();
/*
return ((uint32_t)1) << params.vDeployments[id].bit;
*/
}
pub fn new(id: ConsensusDeploymentPos) -> Self {
todo!();
/*
: id(id_),
*/
}
}
impl VersionBitsCache {
/**
| Get the BIP9 state for a given deployment
| for the block after pindexPrev.
|
*/
pub fn state(&mut self,
pindex_prev: *const BlockIndex,
params: &ChainConsensusParams,
pos: ConsensusDeploymentPos) -> ThresholdState {
todo!();
/*
LOCK(m_mutex);
return VersionBitsConditionChecker(pos).GetStateFor(pindexPrev, params, m_caches[pos]);
*/
}
/**
| Get the numerical statistics for a given
| deployment for the signalling period
| that includes the block after pindexPrev.
|
*/
pub fn statistics(&mut self,
pindex_prev: *const BlockIndex,
params: &ChainConsensusParams,
pos: ConsensusDeploymentPos) -> BIP9Stats {
todo!();
/*
return VersionBitsConditionChecker(pos).GetStateStatisticsFor(pindexPrev, params);
*/
}
/**
| Get the block height at which the BIP9
| deployment switched into the state
| for the block after pindexPrev.
|
*/
pub fn state_since_height(&mut self,
pindex_prev: *const BlockIndex,
params: &ChainConsensusParams,
pos: ConsensusDeploymentPos) -> i32 {
todo!();
/*
LOCK(m_mutex);
return VersionBitsConditionChecker(pos).GetStateSinceHeightFor(pindexPrev, params, m_caches[pos]);
*/
}
pub fn mask(&mut self,
params: &ChainConsensusParams,
pos: ConsensusDeploymentPos) -> u32 {
todo!();
/*
return VersionBitsConditionChecker(pos).Mask(params);
*/
}
/**
| Determine what nVersion a new block
| should use
|
*/
pub fn compute_block_version(&mut self,
pindex_prev: *const BlockIndex,
params: &ChainConsensusParams) -> i32 {
todo!();
/*
LOCK(m_mutex);
int32_t nVersion = VERSIONBITS_TOP_BITS;
for (int i = 0; i < (int)consensus::MAX_VERSION_BITS_DEPLOYMENTS; i++) {
consensus::DeploymentPos pos = static_cast<consensus::DeploymentPos>(i);
ThresholdState state = VersionBitsConditionChecker(pos).GetStateFor(pindexPrev, params, m_caches[pos]);
if (state == ThresholdState::LOCKED_IN || state == ThresholdState::STARTED) {
nVersion |= Mask(params, pos);
}
}
return nVersion;
*/
}
pub fn clear(&mut self) {
todo!();
/*
LOCK(m_mutex);
for (unsigned int d = 0; d < consensus::MAX_VERSION_BITS_DEPLOYMENTS; d++) {
m_caches[d].clear();
}
*/
}
}