LCOV - code coverage report
Current view: top level - src - versionbits.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 95.5 % 111 106
Test Date: 2024-11-04 04:15:01 Functions: 86.7 % 15 13
Branches: 77.2 % 92 71

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2016-2022 The Bitcoin Core developers
       2                 :             : // Distributed under the MIT software license, see the accompanying
       3                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       4                 :             : 
       5                 :             : #include <consensus/params.h>
       6                 :             : #include <util/check.h>
       7                 :             : #include <versionbits.h>
       8                 :             : 
       9                 :      291207 : ThresholdState AbstractThresholdConditionChecker::GetStateFor(const CBlockIndex* pindexPrev, const Consensus::Params& params, ThresholdConditionCache& cache) const
      10                 :             : {
      11                 :      291207 :     int nPeriod = Period(params);
      12                 :      291207 :     int nThreshold = Threshold(params);
      13                 :      291207 :     int min_activation_height = MinActivationHeight(params);
      14                 :      291207 :     int64_t nTimeStart = BeginTime(params);
      15                 :      291207 :     int64_t nTimeTimeout = EndTime(params);
      16                 :             : 
      17                 :             :     // Check if this deployment is always active.
      18         [ +  + ]:      291207 :     if (nTimeStart == Consensus::BIP9Deployment::ALWAYS_ACTIVE) {
      19                 :             :         return ThresholdState::ACTIVE;
      20                 :             :     }
      21                 :             : 
      22                 :             :     // Check if this deployment is never active.
      23         [ +  + ]:      175379 :     if (nTimeStart == Consensus::BIP9Deployment::NEVER_ACTIVE) {
      24                 :             :         return ThresholdState::FAILED;
      25                 :             :     }
      26                 :             : 
      27                 :             :     // 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.
      28         [ +  + ]:      174917 :     if (pindexPrev != nullptr) {
      29                 :      174891 :         pindexPrev = pindexPrev->GetAncestor(pindexPrev->nHeight - ((pindexPrev->nHeight + 1) % nPeriod));
      30                 :             :     }
      31                 :             : 
      32                 :             :     // Walk backwards in steps of nPeriod to find a pindexPrev whose information is known
      33                 :      174917 :     std::vector<const CBlockIndex*> vToCompute;
      34         [ +  + ]:      177282 :     while (cache.count(pindexPrev) == 0) {
      35         [ +  + ]:        3696 :         if (pindexPrev == nullptr) {
      36                 :             :             // The genesis block is by definition defined.
      37         [ +  - ]:        1237 :             cache[pindexPrev] = ThresholdState::DEFINED;
      38                 :        1237 :             break;
      39                 :             :         }
      40         [ +  + ]:        2459 :         if (pindexPrev->GetMedianTimePast() < nTimeStart) {
      41                 :             :             // Optimization: don't recompute down further, as we know every earlier block will be before the start time
      42         [ +  - ]:          94 :             cache[pindexPrev] = ThresholdState::DEFINED;
      43                 :          94 :             break;
      44                 :             :         }
      45         [ +  - ]:        2365 :         vToCompute.push_back(pindexPrev);
      46         [ +  - ]:        2365 :         pindexPrev = pindexPrev->GetAncestor(pindexPrev->nHeight - nPeriod);
      47                 :             :     }
      48                 :             : 
      49                 :             :     // At this point, cache[pindexPrev] is known
      50         [ -  + ]:      174917 :     assert(cache.count(pindexPrev));
      51         [ +  - ]:      174917 :     ThresholdState state = cache[pindexPrev];
      52                 :             : 
      53                 :             :     // Now walk forward and compute the state of descendants of pindexPrev
      54         [ +  + ]:      177282 :     while (!vToCompute.empty()) {
      55                 :        2365 :         ThresholdState stateNext = state;
      56                 :        2365 :         pindexPrev = vToCompute.back();
      57   [ +  +  +  + ]:        2365 :         vToCompute.pop_back();
      58                 :             : 
      59   [ +  +  +  + ]:        2365 :         switch (state) {
      60                 :         364 :             case ThresholdState::DEFINED: {
      61         [ +  - ]:         364 :                 if (pindexPrev->GetMedianTimePast() >= nTimeStart) {
      62                 :         364 :                     stateNext = ThresholdState::STARTED;
      63                 :             :                 }
      64                 :             :                 break;
      65                 :             :             }
      66                 :             :             case ThresholdState::STARTED: {
      67                 :             :                 // We need to count
      68                 :             :                 const CBlockIndex* pindexCount = pindexPrev;
      69                 :             :                 int count = 0;
      70         [ +  + ]:       12210 :                 for (int i = 0; i < nPeriod; i++) {
      71   [ +  -  +  + ]:       11840 :                     if (Condition(pindexCount, params)) {
      72                 :        3014 :                         count++;
      73                 :             :                     }
      74                 :       11840 :                     pindexCount = pindexCount->pprev;
      75                 :             :                 }
      76         [ +  + ]:         370 :                 if (count >= nThreshold) {
      77                 :             :                     stateNext = ThresholdState::LOCKED_IN;
      78         [ +  + ]:         285 :                 } else if (pindexPrev->GetMedianTimePast() >= nTimeTimeout) {
      79                 :          43 :                     stateNext = ThresholdState::FAILED;
      80                 :             :                 }
      81                 :             :                 break;
      82                 :             :             }
      83                 :         313 :             case ThresholdState::LOCKED_IN: {
      84                 :             :                 // Progresses into ACTIVE provided activation height will have been reached.
      85         [ +  + ]:         313 :                 if (pindexPrev->nHeight + 1 >= min_activation_height) {
      86                 :          71 :                     stateNext = ThresholdState::ACTIVE;
      87                 :             :                 }
      88                 :             :                 break;
      89                 :             :             }
      90                 :             :             case ThresholdState::FAILED:
      91                 :             :             case ThresholdState::ACTIVE: {
      92                 :             :                 // Nothing happens, these are terminal states.
      93                 :             :                 break;
      94                 :             :             }
      95                 :             :         }
      96         [ +  - ]:        2365 :         cache[pindexPrev] = state = stateNext;
      97                 :             :     }
      98                 :             : 
      99                 :      174917 :     return state;
     100                 :      174917 : }
     101                 :             : 
     102                 :       11340 : BIP9Stats AbstractThresholdConditionChecker::GetStateStatisticsFor(const CBlockIndex* pindex, const Consensus::Params& params, std::vector<bool>* signalling_blocks) const
     103                 :             : {
     104                 :       11340 :     BIP9Stats stats = {};
     105                 :             : 
     106                 :       11340 :     stats.period = Period(params);
     107                 :       11340 :     stats.threshold = Threshold(params);
     108                 :             : 
     109         [ +  - ]:       11340 :     if (pindex == nullptr) return stats;
     110                 :             : 
     111                 :             :     // Find how many blocks are in the current period
     112                 :       11340 :     int blocks_in_period = 1 + (pindex->nHeight % stats.period);
     113                 :             : 
     114                 :             :     // Reset signalling_blocks
     115         [ +  + ]:       11340 :     if (signalling_blocks) {
     116                 :        5580 :         signalling_blocks->assign(blocks_in_period, false);
     117                 :             :     }
     118                 :             : 
     119                 :             :     // Count from current block to beginning of period
     120                 :             :     int elapsed = 0;
     121                 :             :     int count = 0;
     122                 :             :     const CBlockIndex* currentIndex = pindex;
     123                 :      184320 :     do {
     124                 :      184320 :         ++elapsed;
     125                 :      184320 :         --blocks_in_period;
     126         [ +  + ]:      184320 :         if (Condition(currentIndex, params)) {
     127                 :       81326 :             ++count;
     128         [ +  + ]:       81326 :             if (signalling_blocks) signalling_blocks->at(blocks_in_period) = true;
     129                 :             :         }
     130                 :      184320 :         currentIndex = currentIndex->pprev;
     131         [ +  + ]:      184320 :     } while(blocks_in_period > 0);
     132                 :             : 
     133                 :       11340 :     stats.elapsed = elapsed;
     134                 :       11340 :     stats.count = count;
     135                 :       11340 :     stats.possible = (stats.period - stats.threshold ) >= (stats.elapsed - count);
     136                 :             : 
     137                 :       11340 :     return stats;
     138                 :             : }
     139                 :             : 
     140                 :        5949 : int AbstractThresholdConditionChecker::GetStateSinceHeightFor(const CBlockIndex* pindexPrev, const Consensus::Params& params, ThresholdConditionCache& cache) const
     141                 :             : {
     142                 :        5949 :     int64_t start_time = BeginTime(params);
     143         [ +  + ]:        5949 :     if (start_time == Consensus::BIP9Deployment::ALWAYS_ACTIVE || start_time == Consensus::BIP9Deployment::NEVER_ACTIVE) {
     144                 :             :         return 0;
     145                 :             :     }
     146                 :             : 
     147                 :        5283 :     const ThresholdState initialState = GetStateFor(pindexPrev, params, cache);
     148                 :             : 
     149                 :             :     // BIP 9 about state DEFINED: "The genesis block is by definition in this state for each deployment."
     150         [ +  + ]:        5283 :     if (initialState == ThresholdState::DEFINED) {
     151                 :             :         return 0;
     152                 :             :     }
     153                 :             : 
     154                 :        4593 :     const int nPeriod = Period(params);
     155                 :             : 
     156                 :             :     // 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.
     157                 :             :     // To ease understanding of the following height calculation, it helps to remember that
     158                 :             :     // right now pindexPrev points to the block prior to the block that we are computing for, thus:
     159                 :             :     // if we are computing for the last block of a period, then pindexPrev points to the second to last block of the period, and
     160                 :             :     // if we are computing for the first block of a period, then pindexPrev points to the last block of the previous period.
     161                 :             :     // The parent of the genesis block is represented by nullptr.
     162                 :        4593 :     pindexPrev = Assert(pindexPrev->GetAncestor(pindexPrev->nHeight - ((pindexPrev->nHeight + 1) % nPeriod)));
     163                 :             : 
     164                 :        4593 :     const CBlockIndex* previousPeriodParent = pindexPrev->GetAncestor(pindexPrev->nHeight - nPeriod);
     165                 :             : 
     166   [ +  +  +  + ]:       53872 :     while (previousPeriodParent != nullptr && GetStateFor(previousPeriodParent, params, cache) == initialState) {
     167                 :       44686 :         pindexPrev = previousPeriodParent;
     168                 :       44686 :         previousPeriodParent = pindexPrev->GetAncestor(pindexPrev->nHeight - nPeriod);
     169                 :             :     }
     170                 :             : 
     171                 :             :     // Adjust the result because right now we point to the parent block.
     172                 :        4593 :     return pindexPrev->nHeight + 1;
     173                 :             : }
     174                 :             : 
     175                 :             : namespace
     176                 :             : {
     177                 :             : /**
     178                 :             :  * Class to implement versionbits logic.
     179                 :             :  */
     180                 :             : class VersionBitsConditionChecker : public AbstractThresholdConditionChecker {
     181                 :             : private:
     182                 :             :     const Consensus::DeploymentPos id;
     183                 :             : 
     184                 :             : protected:
     185                 :      231272 :     int64_t BeginTime(const Consensus::Params& params) const override { return params.vDeployments[id].nStartTime; }
     186                 :      231263 :     int64_t EndTime(const Consensus::Params& params) const override { return params.vDeployments[id].nTimeout; }
     187                 :      231263 :     int MinActivationHeight(const Consensus::Params& params) const override { return params.vDeployments[id].min_activation_height; }
     188                 :      231263 :     int Period(const Consensus::Params& params) const override { return params.nMinerConfirmationWindow; }
     189                 :      231263 :     int Threshold(const Consensus::Params& params) const override { return params.nRuleChangeActivationThreshold; }
     190                 :             : 
     191                 :           0 :     bool Condition(const CBlockIndex* pindex, const Consensus::Params& params) const override
     192                 :             :     {
     193         [ #  # ]:           0 :         return (((pindex->nVersion & VERSIONBITS_TOP_MASK) == VERSIONBITS_TOP_BITS) && (pindex->nVersion & Mask(params)) != 0);
     194                 :             :     }
     195                 :             : 
     196                 :             : public:
     197                 :      242413 :     explicit VersionBitsConditionChecker(Consensus::DeploymentPos id_) : id(id_) {}
     198         [ #  # ]:           0 :     uint32_t Mask(const Consensus::Params& params) const { return (uint32_t{1}) << params.vDeployments[id].bit; }
     199                 :             : };
     200                 :             : 
     201                 :             : } // namespace
     202                 :             : 
     203                 :          12 : ThresholdState VersionBitsCache::State(const CBlockIndex* pindexPrev, const Consensus::Params& params, Consensus::DeploymentPos pos)
     204                 :             : {
     205                 :          12 :     LOCK(m_mutex);
     206   [ +  -  +  - ]:          12 :     return VersionBitsConditionChecker(pos).GetStateFor(pindexPrev, params, m_caches[pos]);
     207                 :          12 : }
     208                 :             : 
     209                 :           0 : BIP9Stats VersionBitsCache::Statistics(const CBlockIndex* pindex, const Consensus::Params& params, Consensus::DeploymentPos pos, std::vector<bool>* signalling_blocks)
     210                 :             : {
     211                 :           0 :     return VersionBitsConditionChecker(pos).GetStateStatisticsFor(pindex, params, signalling_blocks);
     212                 :             : }
     213                 :             : 
     214                 :           9 : int VersionBitsCache::StateSinceHeight(const CBlockIndex* pindexPrev, const Consensus::Params& params, Consensus::DeploymentPos pos)
     215                 :             : {
     216                 :           9 :     LOCK(m_mutex);
     217   [ +  -  +  - ]:           9 :     return VersionBitsConditionChecker(pos).GetStateSinceHeightFor(pindexPrev, params, m_caches[pos]);
     218                 :           9 : }
     219                 :             : 
     220                 :       11144 : uint32_t VersionBitsCache::Mask(const Consensus::Params& params, Consensus::DeploymentPos pos)
     221                 :             : {
     222                 :       11144 :     return VersionBitsConditionChecker(pos).Mask(params);
     223                 :             : }
     224                 :             : 
     225                 :      115624 : int32_t VersionBitsCache::ComputeBlockVersion(const CBlockIndex* pindexPrev, const Consensus::Params& params)
     226                 :             : {
     227                 :      115624 :     LOCK(m_mutex);
     228                 :      115624 :     int32_t nVersion = VERSIONBITS_TOP_BITS;
     229                 :             : 
     230         [ +  + ]:      346872 :     for (int i = 0; i < (int)Consensus::MAX_VERSION_BITS_DEPLOYMENTS; i++) {
     231                 :      231248 :         Consensus::DeploymentPos pos = static_cast<Consensus::DeploymentPos>(i);
     232         [ +  - ]:      231248 :         ThresholdState state = VersionBitsConditionChecker(pos).GetStateFor(pindexPrev, params, m_caches[pos]);
     233         [ +  + ]:      231248 :         if (state == ThresholdState::LOCKED_IN || state == ThresholdState::STARTED) {
     234         [ +  - ]:       11144 :             nVersion |= Mask(params, pos);
     235                 :             :         }
     236                 :             :     }
     237                 :             : 
     238         [ +  - ]:      115624 :     return nVersion;
     239                 :      115624 : }
     240                 :             : 
     241                 :        1592 : void VersionBitsCache::Clear()
     242                 :             : {
     243                 :        1592 :     LOCK(m_mutex);
     244         [ +  + ]:        4776 :     for (unsigned int d = 0; d < Consensus::MAX_VERSION_BITS_DEPLOYMENTS; d++) {
     245                 :        3184 :         m_caches[d].clear();
     246                 :             :     }
     247                 :        1592 : }
        

Generated by: LCOV version 2.0-1