Browse Source

trying to fix infinite recursion in SetBestChain

miguelfreitas
Miguel Freitas 11 years ago
parent
commit
77d1a4fb7b
  1. 5
      src/init.cpp
  2. 12
      src/main.cpp

5
src/init.cpp

@ -924,8 +924,11 @@ bool AppInit2(boost::thread_group& threadGroup) @@ -924,8 +924,11 @@ bool AppInit2(boost::thread_group& threadGroup)
// scan for better chains in the block chain database, that are not yet connected in the active best chain
CValidationState state;
if (!ConnectBestBlock(state)) {
// try again before giving up
if (!ConnectBestBlock(state))
strErrors << "Failed to connect best block";
strErrors << "Failed to connect best block (try -reindex)";
}
std::vector<boost::filesystem::path> vImportFiles;
if (mapArgs.count("-loadblock"))

12
src/main.cpp

@ -1150,7 +1150,7 @@ bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, C @@ -1150,7 +1150,7 @@ bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, C
CTransaction txPubKey;
uint256 hashBlock;
if( !GetTransaction(spamUser, txPubKey, hashBlock, block.nHeight) )
return state.DoS(100, error("ConnectBlock() : spam signed by unknown user"));
return state.DoS(100, error("ConnectBlock() : spam signed by unknown user %s", spamUser.c_str()));
std::vector< std::vector<unsigned char> > vData;
if( !txPubKey.pubKey.ExtractPushData(vData) || vData.size() < 1 )
@ -1336,6 +1336,16 @@ bool SetBestChain(CValidationState &state, CBlockIndex* pindexNew) @@ -1336,6 +1336,16 @@ bool SetBestChain(CValidationState &state, CBlockIndex* pindexNew)
int64 nStart = GetTimeMicros();
if (!ConnectBlock(block, state, pindex, view)) {
if (state.IsInvalid()) {
// [MF] invalidate all pindex between pindexNew and pindex
// trying to fix infinite recursion in SetBestChain.
CBlockIndex *pinvalid = pindexNew;
do {
pinvalid->nStatus |= BLOCK_FAILED_CHILD;
pblocktree->WriteBlockIndex(CDiskBlockIndex(pinvalid));
setBlockIndexValid.erase(pinvalid);
pinvalid = pinvalid->pprev;
} while( pinvalid != NULL && pinvalid != pindex);
InvalidChainFound(pindexNew);
InvalidBlockFound(pindex);
}

Loading…
Cancel
Save