1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2011 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
9 #include <boost/filesystem.hpp>
10 #include <boost/filesystem/fstream.hpp>
13 using namespace boost;
19 CCriticalSection cs_setpwalletRegistered;
20 set<CWallet*> setpwalletRegistered;
22 CCriticalSection cs_main;
24 static map<uint256, CTransaction> mapTransactions;
25 CCriticalSection cs_mapTransactions;
26 unsigned int nTransactionsUpdated = 0;
27 map<COutPoint, CInPoint> mapNextTx;
29 map<uint256, CBlockIndex*> mapBlockIndex;
30 uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f");
31 static CBigNum bnProofOfWorkLimit(~uint256(0) >> 32);
32 const int nTotalBlocksEstimate = 140700; // Conservative estimate of total nr of blocks on main chain
33 const int nInitialBlockThreshold = 120; // Regard blocks up until N-threshold as "initial download"
34 CBlockIndex* pindexGenesisBlock = NULL;
36 CBigNum bnBestChainWork = 0;
37 CBigNum bnBestInvalidWork = 0;
38 uint256 hashBestChain = 0;
39 CBlockIndex* pindexBest = NULL;
40 int64 nTimeBestReceived = 0;
42 CMedianFilter<int> cPeerBlockCounts(5, 0); // Amount of blocks that other nodes claim to have
44 map<uint256, CBlock*> mapOrphanBlocks;
45 multimap<uint256, CBlock*> mapOrphanBlocksByPrev;
47 map<uint256, CDataStream*> mapOrphanTransactions;
48 multimap<uint256, CDataStream*> mapOrphanTransactionsByPrev;
55 int fGenerateBitcoins = false;
56 int64 nTransactionFee = 0;
57 int fLimitProcessors = false;
58 int nLimitProcessors = 1;
59 int fMinimizeToTray = true;
60 int fMinimizeOnClose = true;
68 //////////////////////////////////////////////////////////////////////////////
70 // dispatching functions
73 // These functions dispatch to one or all registered wallets
76 void RegisterWallet(CWallet* pwalletIn)
78 CRITICAL_BLOCK(cs_setpwalletRegistered)
80 setpwalletRegistered.insert(pwalletIn);
84 void UnregisterWallet(CWallet* pwalletIn)
86 CRITICAL_BLOCK(cs_setpwalletRegistered)
88 setpwalletRegistered.erase(pwalletIn);
92 // check whether the passed transaction is from us
93 bool static IsFromMe(CTransaction& tx)
95 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
96 if (pwallet->IsFromMe(tx))
101 // get the wallet transaction with the given hash (if it exists)
102 bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
104 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
105 if (pwallet->GetTransaction(hashTx,wtx))
110 // erases transaction with the given hash from all wallets
111 void static EraseFromWallets(uint256 hash)
113 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
114 pwallet->EraseFromWallet(hash);
117 // make sure all wallets know about the given transaction, in the given block
118 void static SyncWithWallets(const CTransaction& tx, const CBlock* pblock = NULL, bool fUpdate = false)
120 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
121 pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate);
124 // notify wallets about a new best chain
125 void static SetBestChain(const CBlockLocator& loc)
127 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
128 pwallet->SetBestChain(loc);
131 // notify wallets about an updated transaction
132 void static UpdatedTransaction(const uint256& hashTx)
134 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
135 pwallet->UpdatedTransaction(hashTx);
139 void static PrintWallets(const CBlock& block)
141 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
142 pwallet->PrintWallet(block);
145 // notify wallets about an incoming inventory (for request counts)
146 void static Inventory(const uint256& hash)
148 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
149 pwallet->Inventory(hash);
152 // ask wallets to resend their transactions
153 void static ResendWalletTransactions()
155 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
156 pwallet->ResendWalletTransactions();
165 //////////////////////////////////////////////////////////////////////////////
167 // mapOrphanTransactions
170 void static AddOrphanTx(const CDataStream& vMsg)
173 CDataStream(vMsg) >> tx;
174 uint256 hash = tx.GetHash();
175 if (mapOrphanTransactions.count(hash))
177 CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg);
178 BOOST_FOREACH(const CTxIn& txin, tx.vin)
179 mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg));
182 void static EraseOrphanTx(uint256 hash)
184 if (!mapOrphanTransactions.count(hash))
186 const CDataStream* pvMsg = mapOrphanTransactions[hash];
188 CDataStream(*pvMsg) >> tx;
189 BOOST_FOREACH(const CTxIn& txin, tx.vin)
191 for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(txin.prevout.hash);
192 mi != mapOrphanTransactionsByPrev.upper_bound(txin.prevout.hash);)
194 if ((*mi).second == pvMsg)
195 mapOrphanTransactionsByPrev.erase(mi++);
201 mapOrphanTransactions.erase(hash);
211 //////////////////////////////////////////////////////////////////////////////
213 // CTransaction and CTxIndex
216 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)
219 if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
221 if (!ReadFromDisk(txindexRet.pos))
223 if (prevout.n >= vout.size())
231 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout)
234 return ReadFromDisk(txdb, prevout, txindex);
237 bool CTransaction::ReadFromDisk(COutPoint prevout)
241 return ReadFromDisk(txdb, prevout, txindex);
246 int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
258 // Load the block this tx is in
260 if (!CTxDB("r").ReadTxIndex(GetHash(), txindex))
262 if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos))
267 // Update the tx's hashBlock
268 hashBlock = pblock->GetHash();
270 // Locate the transaction
271 for (nIndex = 0; nIndex < pblock->vtx.size(); nIndex++)
272 if (pblock->vtx[nIndex] == *(CTransaction*)this)
274 if (nIndex == pblock->vtx.size())
276 vMerkleBranch.clear();
278 printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
282 // Fill in merkle branch
283 vMerkleBranch = pblock->GetMerkleBranch(nIndex);
286 // Is the tx in a block that's in the main chain
287 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
288 if (mi == mapBlockIndex.end())
290 CBlockIndex* pindex = (*mi).second;
291 if (!pindex || !pindex->IsInMainChain())
294 return pindexBest->nHeight - pindex->nHeight + 1;
303 bool CTransaction::CheckTransaction() const
305 // Basic checks that don't depend on any context
307 return DoS(10, error("CTransaction::CheckTransaction() : vin empty"));
309 return DoS(10, error("CTransaction::CheckTransaction() : vout empty"));
311 if (::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
312 return DoS(100, error("CTransaction::CheckTransaction() : size limits failed"));
314 // Check for negative or overflow output values
316 BOOST_FOREACH(const CTxOut& txout, vout)
318 if (txout.nValue < 0)
319 return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue negative"));
320 if (txout.nValue > MAX_MONEY)
321 return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));
322 nValueOut += txout.nValue;
323 if (!MoneyRange(nValueOut))
324 return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));
327 // Check for duplicate inputs
328 set<COutPoint> vInOutPoints;
329 BOOST_FOREACH(const CTxIn& txin, vin)
331 if (vInOutPoints.count(txin.prevout))
333 vInOutPoints.insert(txin.prevout);
338 if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
339 return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size"));
343 BOOST_FOREACH(const CTxIn& txin, vin)
344 if (txin.prevout.IsNull())
345 return DoS(10, error("CTransaction::CheckTransaction() : prevout is null"));
351 bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs)
354 *pfMissingInputs = false;
356 if (!CheckTransaction())
357 return error("AcceptToMemoryPool() : CheckTransaction failed");
359 // Coinbase is only valid in a block, not as a loose transaction
361 return DoS(100, error("AcceptToMemoryPool() : coinbase as individual tx"));
363 // To help v0.1.5 clients who would see it as a negative number
364 if ((int64)nLockTime > INT_MAX)
365 return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet");
368 unsigned int nSize = ::GetSerializeSize(*this, SER_NETWORK);
369 // Checking ECDSA signatures is a CPU bottleneck, so to avoid denial-of-service
370 // attacks disallow transactions with more than one SigOp per 34 bytes.
371 // 34 bytes because a TxOut is:
372 // 20-byte address + 8 byte bitcoin amount + 5 bytes of ops + 1 byte script length
373 if (GetSigOpCount() > nSize / 34 || nSize < 100)
374 return error("AcceptToMemoryPool() : transaction with out-of-bounds SigOpCount");
376 // Rather not work on nonstandard transactions (unless -testnet)
377 if (!fTestNet && !IsStandard())
378 return error("AcceptToMemoryPool() : nonstandard transaction type");
380 // Do we already have it?
381 uint256 hash = GetHash();
382 CRITICAL_BLOCK(cs_mapTransactions)
383 if (mapTransactions.count(hash))
386 if (txdb.ContainsTx(hash))
389 // Check for conflicts with in-memory transactions
390 CTransaction* ptxOld = NULL;
391 for (int i = 0; i < vin.size(); i++)
393 COutPoint outpoint = vin[i].prevout;
394 if (mapNextTx.count(outpoint))
396 // Disable replacement feature for now
399 // Allow replacing with a newer version of the same transaction
402 ptxOld = mapNextTx[outpoint].ptx;
403 if (ptxOld->IsFinal())
405 if (!IsNewerThan(*ptxOld))
407 for (int i = 0; i < vin.size(); i++)
409 COutPoint outpoint = vin[i].prevout;
410 if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
419 // Check against previous transactions
420 map<uint256, CTxIndex> mapUnused;
422 if (!ConnectInputs(txdb, mapUnused, CDiskTxPos(1,1,1), pindexBest, nFees, false, false))
425 *pfMissingInputs = true;
426 return error("AcceptToMemoryPool() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str());
429 // Don't accept it if it can't get into a block
430 if (nFees < GetMinFee(1000, true, true))
431 return error("AcceptToMemoryPool() : not enough fees");
433 // Continuously rate-limit free transactions
434 // This mitigates 'penny-flooding' -- sending thousands of free transactions just to
435 // be annoying or make other's transactions take longer to confirm.
436 if (nFees < MIN_RELAY_TX_FEE)
438 static CCriticalSection cs;
439 static double dFreeCount;
440 static int64 nLastTime;
441 int64 nNow = GetTime();
445 // Use an exponentially decaying ~10-minute window:
446 dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime));
448 // -limitfreerelay unit is thousand-bytes-per-minute
449 // At default rate it would take over a month to fill 1GB
450 if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000 && !IsFromMe(*this))
451 return error("AcceptToMemoryPool() : free transaction rejected by rate limiter");
453 printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
459 // Store transaction in memory
460 CRITICAL_BLOCK(cs_mapTransactions)
464 printf("AcceptToMemoryPool() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str());
465 ptxOld->RemoveFromMemoryPool();
467 AddToMemoryPoolUnchecked();
470 ///// are we sure this is ok when loading transactions or restoring block txes
471 // If updated, erase old tx from wallet
473 EraseFromWallets(ptxOld->GetHash());
475 printf("AcceptToMemoryPool(): accepted %s\n", hash.ToString().substr(0,10).c_str());
479 bool CTransaction::AcceptToMemoryPool(bool fCheckInputs, bool* pfMissingInputs)
482 return AcceptToMemoryPool(txdb, fCheckInputs, pfMissingInputs);
485 bool CTransaction::AddToMemoryPoolUnchecked()
487 // Add to memory pool without checking anything. Don't call this directly,
488 // call AcceptToMemoryPool to properly check the transaction first.
489 CRITICAL_BLOCK(cs_mapTransactions)
491 uint256 hash = GetHash();
492 mapTransactions[hash] = *this;
493 for (int i = 0; i < vin.size(); i++)
494 mapNextTx[vin[i].prevout] = CInPoint(&mapTransactions[hash], i);
495 nTransactionsUpdated++;
501 bool CTransaction::RemoveFromMemoryPool()
503 // Remove transaction from memory pool
504 CRITICAL_BLOCK(cs_mapTransactions)
506 BOOST_FOREACH(const CTxIn& txin, vin)
507 mapNextTx.erase(txin.prevout);
508 mapTransactions.erase(GetHash());
509 nTransactionsUpdated++;
519 int CMerkleTx::GetDepthInMainChain(int& nHeightRet) const
521 if (hashBlock == 0 || nIndex == -1)
524 // Find the block it claims to be in
525 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
526 if (mi == mapBlockIndex.end())
528 CBlockIndex* pindex = (*mi).second;
529 if (!pindex || !pindex->IsInMainChain())
532 // Make sure the merkle branch connects to this block
533 if (!fMerkleVerified)
535 if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot)
537 fMerkleVerified = true;
540 nHeightRet = pindex->nHeight;
541 return pindexBest->nHeight - pindex->nHeight + 1;
545 int CMerkleTx::GetBlocksToMaturity() const
549 return max(0, (COINBASE_MATURITY+20) - GetDepthInMainChain());
553 bool CMerkleTx::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs)
557 if (!IsInMainChain() && !ClientConnectInputs())
559 return CTransaction::AcceptToMemoryPool(txdb, false);
563 return CTransaction::AcceptToMemoryPool(txdb, fCheckInputs);
567 bool CMerkleTx::AcceptToMemoryPool()
570 return AcceptToMemoryPool(txdb);
575 bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs)
577 CRITICAL_BLOCK(cs_mapTransactions)
579 // Add previous supporting transactions first
580 BOOST_FOREACH(CMerkleTx& tx, vtxPrev)
582 if (!tx.IsCoinBase())
584 uint256 hash = tx.GetHash();
585 if (!mapTransactions.count(hash) && !txdb.ContainsTx(hash))
586 tx.AcceptToMemoryPool(txdb, fCheckInputs);
589 return AcceptToMemoryPool(txdb, fCheckInputs);
594 bool CWalletTx::AcceptWalletTransaction()
597 return AcceptWalletTransaction(txdb);
600 int CTxIndex::GetDepthInMainChain() const
604 if (!block.ReadFromDisk(pos.nFile, pos.nBlockPos, false))
606 // Find the block in the index
607 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash());
608 if (mi == mapBlockIndex.end())
610 CBlockIndex* pindex = (*mi).second;
611 if (!pindex || !pindex->IsInMainChain())
613 return 1 + nBestHeight - pindex->nHeight;
625 //////////////////////////////////////////////////////////////////////////////
627 // CBlock and CBlockIndex
630 bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions)
632 if (!fReadTransactions)
634 *this = pindex->GetBlockHeader();
637 if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions))
639 if (GetHash() != pindex->GetBlockHash())
640 return error("CBlock::ReadFromDisk() : GetHash() doesn't match index");
644 uint256 static GetOrphanRoot(const CBlock* pblock)
646 // Work back to the first block in the orphan chain
647 while (mapOrphanBlocks.count(pblock->hashPrevBlock))
648 pblock = mapOrphanBlocks[pblock->hashPrevBlock];
649 return pblock->GetHash();
652 int64 static GetBlockValue(int nHeight, int64 nFees)
654 int64 nSubsidy = 50 * COIN;
656 // Subsidy is cut in half every 4 years
657 nSubsidy >>= (nHeight / 210000);
659 return nSubsidy + nFees;
662 unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast)
664 const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks
665 const int64 nTargetSpacing = 10 * 60;
666 const int64 nInterval = nTargetTimespan / nTargetSpacing;
669 if (pindexLast == NULL)
670 return bnProofOfWorkLimit.GetCompact();
672 // Only change once per interval
673 if ((pindexLast->nHeight+1) % nInterval != 0)
674 return pindexLast->nBits;
676 // Go back by what we want to be 14 days worth of blocks
677 const CBlockIndex* pindexFirst = pindexLast;
678 for (int i = 0; pindexFirst && i < nInterval-1; i++)
679 pindexFirst = pindexFirst->pprev;
682 // Limit adjustment step
683 int64 nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
684 printf(" nActualTimespan = %"PRI64d" before bounds\n", nActualTimespan);
685 if (nActualTimespan < nTargetTimespan/4)
686 nActualTimespan = nTargetTimespan/4;
687 if (nActualTimespan > nTargetTimespan*4)
688 nActualTimespan = nTargetTimespan*4;
692 bnNew.SetCompact(pindexLast->nBits);
693 bnNew *= nActualTimespan;
694 bnNew /= nTargetTimespan;
696 if (bnNew > bnProofOfWorkLimit)
697 bnNew = bnProofOfWorkLimit;
700 printf("GetNextWorkRequired RETARGET\n");
701 printf("nTargetTimespan = %"PRI64d" nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan);
702 printf("Before: %08x %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str());
703 printf("After: %08x %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str());
705 return bnNew.GetCompact();
708 bool CheckProofOfWork(uint256 hash, unsigned int nBits)
711 bnTarget.SetCompact(nBits);
714 if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit)
715 return error("CheckProofOfWork() : nBits below minimum work");
717 // Check proof of work matches claimed amount
718 if (hash > bnTarget.getuint256())
719 return error("CheckProofOfWork() : hash doesn't match nBits");
724 // Return conservative estimate of total number of blocks, 0 if unknown
725 int GetTotalBlocksEstimate()
733 return nTotalBlocksEstimate;
737 // Return maximum amount of blocks that other nodes claim to have
738 int GetNumBlocksOfPeers()
740 return std::max(cPeerBlockCounts.median(), GetTotalBlocksEstimate());
743 bool IsInitialBlockDownload()
745 if (pindexBest == NULL || nBestHeight < (GetTotalBlocksEstimate()-nInitialBlockThreshold))
747 static int64 nLastUpdate;
748 static CBlockIndex* pindexLastBest;
749 if (pindexBest != pindexLastBest)
751 pindexLastBest = pindexBest;
752 nLastUpdate = GetTime();
754 return (GetTime() - nLastUpdate < 10 &&
755 pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60);
758 void static InvalidChainFound(CBlockIndex* pindexNew)
760 if (pindexNew->bnChainWork > bnBestInvalidWork)
762 bnBestInvalidWork = pindexNew->bnChainWork;
763 CTxDB().WriteBestInvalidWork(bnBestInvalidWork);
766 printf("InvalidChainFound: invalid block=%s height=%d work=%s\n", pindexNew->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->nHeight, pindexNew->bnChainWork.ToString().c_str());
767 printf("InvalidChainFound: current best=%s height=%d work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());
768 if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
769 printf("InvalidChainFound: WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.\n");
782 bool CTransaction::DisconnectInputs(CTxDB& txdb)
784 // Relinquish previous transactions' spent pointers
787 BOOST_FOREACH(const CTxIn& txin, vin)
789 COutPoint prevout = txin.prevout;
791 // Get prev txindex from disk
793 if (!txdb.ReadTxIndex(prevout.hash, txindex))
794 return error("DisconnectInputs() : ReadTxIndex failed");
796 if (prevout.n >= txindex.vSpent.size())
797 return error("DisconnectInputs() : prevout.n out of range");
799 // Mark outpoint as not spent
800 txindex.vSpent[prevout.n].SetNull();
803 if (!txdb.UpdateTxIndex(prevout.hash, txindex))
804 return error("DisconnectInputs() : UpdateTxIndex failed");
808 // Remove transaction from index
809 if (!txdb.EraseTxIndex(*this))
810 return error("DisconnectInputs() : EraseTxPos failed");
816 bool CTransaction::ConnectInputs(CTxDB& txdb, map<uint256, CTxIndex>& mapTestPool, CDiskTxPos posThisTx,
817 CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee)
819 // Take over previous transactions' spent pointers
820 // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
821 // fMiner is true when called from the internal bitcoin miner
822 // ... both are false when called from CTransaction::AcceptToMemoryPool
826 for (int i = 0; i < vin.size(); i++)
828 COutPoint prevout = vin[i].prevout;
833 if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
835 // Get txindex from current proposed changes
836 txindex = mapTestPool[prevout.hash];
840 // Read txindex from txdb
841 fFound = txdb.ReadTxIndex(prevout.hash, txindex);
843 if (!fFound && (fBlock || fMiner))
844 return fMiner ? false : error("ConnectInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str());
848 if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
850 // Get prev tx from single transactions in memory
851 CRITICAL_BLOCK(cs_mapTransactions)
853 if (!mapTransactions.count(prevout.hash))
854 return error("ConnectInputs() : %s mapTransactions prev not found %s", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str());
855 txPrev = mapTransactions[prevout.hash];
858 txindex.vSpent.resize(txPrev.vout.size());
862 // Get prev tx from disk
863 if (!txPrev.ReadFromDisk(txindex.pos))
864 return error("ConnectInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str());
867 if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
868 return DoS(100, error("ConnectInputs() : %s prevout.n out of range %d %d %d prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str()));
870 // If prev is coinbase, check that it's matured
871 if (txPrev.IsCoinBase())
872 for (CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev)
873 if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
874 return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight);
876 // Skip ECDSA signature verification when connecting blocks (fBlock=true) during initial download
877 // (before the last blockchain checkpoint). This is safe because block merkle hashes are
878 // still computed and checked, and any change will be caught at the next checkpoint.
879 if (!(fBlock && IsInitialBlockDownload()))
881 if (!VerifySignature(txPrev, *this, i))
882 return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
884 // Check for conflicts (double-spend)
885 // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
886 // for an attacker to attempt to split the network.
887 if (!txindex.vSpent[prevout.n].IsNull())
888 return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str());
890 // Check for negative or overflow input values
891 nValueIn += txPrev.vout[prevout.n].nValue;
892 if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
893 return DoS(100, error("ConnectInputs() : txin values out of range"));
895 // Mark outpoints as spent
896 txindex.vSpent[prevout.n] = posThisTx;
899 if (fBlock || fMiner)
901 mapTestPool[prevout.hash] = txindex;
905 if (nValueIn < GetValueOut())
906 return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
908 // Tally transaction fees
909 int64 nTxFee = nValueIn - GetValueOut();
911 return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
912 if (nTxFee < nMinFee)
915 if (!MoneyRange(nFees))
916 return DoS(100, error("ConnectInputs() : nFees out of range"));
921 // Add transaction to changes
922 mapTestPool[GetHash()] = CTxIndex(posThisTx, vout.size());
926 // Add transaction to test pool
927 mapTestPool[GetHash()] = CTxIndex(CDiskTxPos(1,1,1), vout.size());
934 bool CTransaction::ClientConnectInputs()
939 // Take over previous transactions' spent pointers
940 CRITICAL_BLOCK(cs_mapTransactions)
943 for (int i = 0; i < vin.size(); i++)
945 // Get prev tx from single transactions in memory
946 COutPoint prevout = vin[i].prevout;
947 if (!mapTransactions.count(prevout.hash))
949 CTransaction& txPrev = mapTransactions[prevout.hash];
951 if (prevout.n >= txPrev.vout.size())
955 if (!VerifySignature(txPrev, *this, i))
956 return error("ConnectInputs() : VerifySignature failed");
958 ///// this is redundant with the mapNextTx stuff, not sure which I want to get rid of
959 ///// this has to go away now that posNext is gone
960 // // Check for conflicts
961 // if (!txPrev.vout[prevout.n].posNext.IsNull())
962 // return error("ConnectInputs() : prev tx already used");
964 // // Flag outpoints as used
965 // txPrev.vout[prevout.n].posNext = posThisTx;
967 nValueIn += txPrev.vout[prevout.n].nValue;
969 if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
970 return error("ClientConnectInputs() : txin values out of range");
972 if (GetValueOut() > nValueIn)
982 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
984 // Disconnect in reverse order
985 for (int i = vtx.size()-1; i >= 0; i--)
986 if (!vtx[i].DisconnectInputs(txdb))
989 // Update block index on disk without changing it in memory.
990 // The memory index structure will be changed after the db commits.
993 CDiskBlockIndex blockindexPrev(pindex->pprev);
994 blockindexPrev.hashNext = 0;
995 if (!txdb.WriteBlockIndex(blockindexPrev))
996 return error("DisconnectBlock() : WriteBlockIndex failed");
1002 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1004 // Check it again in case a previous version let a bad block in
1008 //// issue here: it doesn't know the version
1009 unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size());
1011 map<uint256, CTxIndex> mapQueuedChanges;
1013 BOOST_FOREACH(CTransaction& tx, vtx)
1015 CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1016 nTxPos += ::GetSerializeSize(tx, SER_DISK);
1018 if (!tx.ConnectInputs(txdb, mapQueuedChanges, posThisTx, pindex, nFees, true, false))
1021 // Write queued txindex changes
1022 for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1024 if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1025 return error("ConnectBlock() : UpdateTxIndex failed");
1028 if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees))
1031 // Update block index on disk without changing it in memory.
1032 // The memory index structure will be changed after the db commits.
1035 CDiskBlockIndex blockindexPrev(pindex->pprev);
1036 blockindexPrev.hashNext = pindex->GetBlockHash();
1037 if (!txdb.WriteBlockIndex(blockindexPrev))
1038 return error("ConnectBlock() : WriteBlockIndex failed");
1041 // Watch for transactions paying to me
1042 BOOST_FOREACH(CTransaction& tx, vtx)
1043 SyncWithWallets(tx, this, true);
1048 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1050 printf("REORGANIZE\n");
1053 CBlockIndex* pfork = pindexBest;
1054 CBlockIndex* plonger = pindexNew;
1055 while (pfork != plonger)
1057 while (plonger->nHeight > pfork->nHeight)
1058 if (!(plonger = plonger->pprev))
1059 return error("Reorganize() : plonger->pprev is null");
1060 if (pfork == plonger)
1062 if (!(pfork = pfork->pprev))
1063 return error("Reorganize() : pfork->pprev is null");
1066 // List of what to disconnect
1067 vector<CBlockIndex*> vDisconnect;
1068 for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1069 vDisconnect.push_back(pindex);
1071 // List of what to connect
1072 vector<CBlockIndex*> vConnect;
1073 for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1074 vConnect.push_back(pindex);
1075 reverse(vConnect.begin(), vConnect.end());
1077 // Disconnect shorter branch
1078 vector<CTransaction> vResurrect;
1079 BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1082 if (!block.ReadFromDisk(pindex))
1083 return error("Reorganize() : ReadFromDisk for disconnect failed");
1084 if (!block.DisconnectBlock(txdb, pindex))
1085 return error("Reorganize() : DisconnectBlock failed");
1087 // Queue memory transactions to resurrect
1088 BOOST_FOREACH(const CTransaction& tx, block.vtx)
1089 if (!tx.IsCoinBase())
1090 vResurrect.push_back(tx);
1093 // Connect longer branch
1094 vector<CTransaction> vDelete;
1095 for (int i = 0; i < vConnect.size(); i++)
1097 CBlockIndex* pindex = vConnect[i];
1099 if (!block.ReadFromDisk(pindex))
1100 return error("Reorganize() : ReadFromDisk for connect failed");
1101 if (!block.ConnectBlock(txdb, pindex))
1105 return error("Reorganize() : ConnectBlock failed");
1108 // Queue memory transactions to delete
1109 BOOST_FOREACH(const CTransaction& tx, block.vtx)
1110 vDelete.push_back(tx);
1112 if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1113 return error("Reorganize() : WriteHashBestChain failed");
1115 // Make sure it's successfully written to disk before changing memory structure
1116 if (!txdb.TxnCommit())
1117 return error("Reorganize() : TxnCommit failed");
1119 // Disconnect shorter branch
1120 BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1122 pindex->pprev->pnext = NULL;
1124 // Connect longer branch
1125 BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1127 pindex->pprev->pnext = pindex;
1129 // Resurrect memory transactions that were in the disconnected branch
1130 BOOST_FOREACH(CTransaction& tx, vResurrect)
1131 tx.AcceptToMemoryPool(txdb, false);
1133 // Delete redundant memory transactions that are in the connected branch
1134 BOOST_FOREACH(CTransaction& tx, vDelete)
1135 tx.RemoveFromMemoryPool();
1141 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1143 uint256 hash = GetHash();
1146 if (pindexGenesisBlock == NULL && hash == hashGenesisBlock)
1148 txdb.WriteHashBestChain(hash);
1149 if (!txdb.TxnCommit())
1150 return error("SetBestChain() : TxnCommit failed");
1151 pindexGenesisBlock = pindexNew;
1153 else if (hashPrevBlock == hashBestChain)
1155 // Adding to current best branch
1156 if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1159 InvalidChainFound(pindexNew);
1160 return error("SetBestChain() : ConnectBlock failed");
1162 if (!txdb.TxnCommit())
1163 return error("SetBestChain() : TxnCommit failed");
1165 // Add to current best branch
1166 pindexNew->pprev->pnext = pindexNew;
1168 // Delete redundant memory transactions
1169 BOOST_FOREACH(CTransaction& tx, vtx)
1170 tx.RemoveFromMemoryPool();
1175 if (!Reorganize(txdb, pindexNew))
1178 InvalidChainFound(pindexNew);
1179 return error("SetBestChain() : Reorganize failed");
1183 // Update best block in wallet (so we can detect restored wallets)
1184 if (!IsInitialBlockDownload())
1186 const CBlockLocator locator(pindexNew);
1187 ::SetBestChain(locator);
1191 hashBestChain = hash;
1192 pindexBest = pindexNew;
1193 nBestHeight = pindexBest->nHeight;
1194 bnBestChainWork = pindexNew->bnChainWork;
1195 nTimeBestReceived = GetTime();
1196 nTransactionsUpdated++;
1197 printf("SetBestChain: new best=%s height=%d work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());
1203 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
1205 // Check for duplicate
1206 uint256 hash = GetHash();
1207 if (mapBlockIndex.count(hash))
1208 return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
1210 // Construct new block index object
1211 CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
1213 return error("AddToBlockIndex() : new CBlockIndex failed");
1214 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
1215 pindexNew->phashBlock = &((*mi).first);
1216 map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
1217 if (miPrev != mapBlockIndex.end())
1219 pindexNew->pprev = (*miPrev).second;
1220 pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
1222 pindexNew->bnChainWork = (pindexNew->pprev ? pindexNew->pprev->bnChainWork : 0) + pindexNew->GetBlockWork();
1226 txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
1227 if (!txdb.TxnCommit())
1231 if (pindexNew->bnChainWork > bnBestChainWork)
1232 if (!SetBestChain(txdb, pindexNew))
1237 if (pindexNew == pindexBest)
1239 // Notify UI to display prev block's coinbase if it was ours
1240 static uint256 hashPrevBestCoinBase;
1241 UpdatedTransaction(hashPrevBestCoinBase);
1242 hashPrevBestCoinBase = vtx[0].GetHash();
1252 bool CBlock::CheckBlock() const
1254 // These are checks that are independent of context
1255 // that can be verified before saving an orphan block.
1258 if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
1259 return DoS(100, error("CheckBlock() : size limits failed"));
1261 // Check proof of work matches claimed amount
1262 if (!CheckProofOfWork(GetHash(), nBits))
1263 return DoS(50, error("CheckBlock() : proof of work failed"));
1266 if (GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60)
1267 return error("CheckBlock() : block timestamp too far in the future");
1269 // First transaction must be coinbase, the rest must not be
1270 if (vtx.empty() || !vtx[0].IsCoinBase())
1271 return DoS(100, error("CheckBlock() : first tx is not coinbase"));
1272 for (int i = 1; i < vtx.size(); i++)
1273 if (vtx[i].IsCoinBase())
1274 return DoS(100, error("CheckBlock() : more than one coinbase"));
1276 // Check transactions
1277 BOOST_FOREACH(const CTransaction& tx, vtx)
1278 if (!tx.CheckTransaction())
1279 return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
1281 // Check that it's not full of nonstandard transactions
1282 if (GetSigOpCount() > MAX_BLOCK_SIGOPS)
1283 return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
1286 if (hashMerkleRoot != BuildMerkleTree())
1287 return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
1292 bool CBlock::AcceptBlock()
1294 // Check for duplicate
1295 uint256 hash = GetHash();
1296 if (mapBlockIndex.count(hash))
1297 return error("AcceptBlock() : block already in mapBlockIndex");
1299 // Get prev block index
1300 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
1301 if (mi == mapBlockIndex.end())
1302 return DoS(10, error("AcceptBlock() : prev block not found"));
1303 CBlockIndex* pindexPrev = (*mi).second;
1304 int nHeight = pindexPrev->nHeight+1;
1306 // Check proof of work
1307 if (nBits != GetNextWorkRequired(pindexPrev))
1308 return DoS(100, error("AcceptBlock() : incorrect proof of work"));
1310 // Check timestamp against prev
1311 if (GetBlockTime() <= pindexPrev->GetMedianTimePast())
1312 return error("AcceptBlock() : block's timestamp is too early");
1314 // Check that all transactions are finalized
1315 BOOST_FOREACH(const CTransaction& tx, vtx)
1316 if (!tx.IsFinal(nHeight, GetBlockTime()))
1317 return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
1319 // Check that the block chain matches the known block chain up to a checkpoint
1321 if ((nHeight == 11111 && hash != uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) ||
1322 (nHeight == 33333 && hash != uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) ||
1323 (nHeight == 68555 && hash != uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) ||
1324 (nHeight == 70567 && hash != uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) ||
1325 (nHeight == 74000 && hash != uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) ||
1326 (nHeight == 105000 && hash != uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) ||
1327 (nHeight == 118000 && hash != uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) ||
1328 (nHeight == 134444 && hash != uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) ||
1329 (nHeight == 140700 && hash != uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd")))
1330 return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight));
1332 // Write block to history file
1333 if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK)))
1334 return error("AcceptBlock() : out of disk space");
1335 unsigned int nFile = -1;
1336 unsigned int nBlockPos = 0;
1337 if (!WriteToDisk(nFile, nBlockPos))
1338 return error("AcceptBlock() : WriteToDisk failed");
1339 if (!AddToBlockIndex(nFile, nBlockPos))
1340 return error("AcceptBlock() : AddToBlockIndex failed");
1342 // Relay inventory, but don't relay old inventory during initial block download
1343 if (hashBestChain == hash)
1344 CRITICAL_BLOCK(cs_vNodes)
1345 BOOST_FOREACH(CNode* pnode, vNodes)
1346 if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 140700))
1347 pnode->PushInventory(CInv(MSG_BLOCK, hash));
1352 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
1354 // Check for duplicate
1355 uint256 hash = pblock->GetHash();
1356 if (mapBlockIndex.count(hash))
1357 return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
1358 if (mapOrphanBlocks.count(hash))
1359 return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
1361 // Preliminary checks
1362 if (!pblock->CheckBlock())
1363 return error("ProcessBlock() : CheckBlock FAILED");
1365 // If don't already have its previous block, shunt it off to holding area until we get it
1366 if (!mapBlockIndex.count(pblock->hashPrevBlock))
1368 printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
1369 CBlock* pblock2 = new CBlock(*pblock);
1370 mapOrphanBlocks.insert(make_pair(hash, pblock2));
1371 mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
1373 // Ask this guy to fill in what we're missing
1375 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
1380 if (!pblock->AcceptBlock())
1381 return error("ProcessBlock() : AcceptBlock FAILED");
1383 // Recursively process any orphan blocks that depended on this one
1384 vector<uint256> vWorkQueue;
1385 vWorkQueue.push_back(hash);
1386 for (int i = 0; i < vWorkQueue.size(); i++)
1388 uint256 hashPrev = vWorkQueue[i];
1389 for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
1390 mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
1393 CBlock* pblockOrphan = (*mi).second;
1394 if (pblockOrphan->AcceptBlock())
1395 vWorkQueue.push_back(pblockOrphan->GetHash());
1396 mapOrphanBlocks.erase(pblockOrphan->GetHash());
1397 delete pblockOrphan;
1399 mapOrphanBlocksByPrev.erase(hashPrev);
1402 printf("ProcessBlock: ACCEPTED\n");
1413 bool CheckDiskSpace(uint64 nAdditionalBytes)
1415 uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
1417 // Check for 15MB because database could create another 10MB log file at any time
1418 if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes)
1421 string strMessage = _("Warning: Disk space is low ");
1422 strMiscWarning = strMessage;
1423 printf("*** %s\n", strMessage.c_str());
1424 ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);
1425 CreateThread(Shutdown, NULL);
1431 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
1435 FILE* file = fopen(strprintf("%s/blk%04d.dat", GetDataDir().c_str(), nFile).c_str(), pszMode);
1438 if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
1440 if (fseek(file, nBlockPos, SEEK_SET) != 0)
1449 static unsigned int nCurrentBlockFile = 1;
1451 FILE* AppendBlockFile(unsigned int& nFileRet)
1456 FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
1459 if (fseek(file, 0, SEEK_END) != 0)
1461 // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
1462 if (ftell(file) < 0x7F000000 - MAX_SIZE)
1464 nFileRet = nCurrentBlockFile;
1468 nCurrentBlockFile++;
1472 bool LoadBlockIndex(bool fAllowNew)
1476 hashGenesisBlock = uint256("0x00000007199508e34a9ff81e6ec0c477a4cccff2a4767a8eee39c11db367b008");
1477 bnProofOfWorkLimit = CBigNum(~uint256(0) >> 28);
1478 pchMessageStart[0] = 0xfa;
1479 pchMessageStart[1] = 0xbf;
1480 pchMessageStart[2] = 0xb5;
1481 pchMessageStart[3] = 0xda;
1488 if (!txdb.LoadBlockIndex())
1493 // Init with genesis block
1495 if (mapBlockIndex.empty())
1501 // CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
1502 // CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
1503 // CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
1504 // CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
1505 // vMerkleTree: 4a5e1e
1508 const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
1510 txNew.vin.resize(1);
1511 txNew.vout.resize(1);
1512 txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
1513 txNew.vout[0].nValue = 50 * COIN;
1514 txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
1516 block.vtx.push_back(txNew);
1517 block.hashPrevBlock = 0;
1518 block.hashMerkleRoot = block.BuildMerkleTree();
1520 block.nTime = 1231006505;
1521 block.nBits = 0x1d00ffff;
1522 block.nNonce = 2083236893;
1526 block.nTime = 1296688602;
1527 block.nBits = 0x1d07fff8;
1528 block.nNonce = 384568319;
1532 printf("%s\n", block.GetHash().ToString().c_str());
1533 printf("%s\n", hashGenesisBlock.ToString().c_str());
1534 printf("%s\n", block.hashMerkleRoot.ToString().c_str());
1535 assert(block.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));
1537 assert(block.GetHash() == hashGenesisBlock);
1539 // Start new block file
1541 unsigned int nBlockPos;
1542 if (!block.WriteToDisk(nFile, nBlockPos))
1543 return error("LoadBlockIndex() : writing genesis block to disk failed");
1544 if (!block.AddToBlockIndex(nFile, nBlockPos))
1545 return error("LoadBlockIndex() : genesis block not accepted");
1553 void PrintBlockTree()
1555 // precompute tree structure
1556 map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
1557 for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
1559 CBlockIndex* pindex = (*mi).second;
1560 mapNext[pindex->pprev].push_back(pindex);
1562 //while (rand() % 3 == 0)
1563 // mapNext[pindex->pprev].push_back(pindex);
1566 vector<pair<int, CBlockIndex*> > vStack;
1567 vStack.push_back(make_pair(0, pindexGenesisBlock));
1570 while (!vStack.empty())
1572 int nCol = vStack.back().first;
1573 CBlockIndex* pindex = vStack.back().second;
1576 // print split or gap
1577 if (nCol > nPrevCol)
1579 for (int i = 0; i < nCol-1; i++)
1583 else if (nCol < nPrevCol)
1585 for (int i = 0; i < nCol; i++)
1592 for (int i = 0; i < nCol; i++)
1597 block.ReadFromDisk(pindex);
1598 printf("%d (%u,%u) %s %s tx %d",
1602 block.GetHash().ToString().substr(0,20).c_str(),
1603 DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
1606 PrintWallets(block);
1608 // put the main timechain first
1609 vector<CBlockIndex*>& vNext = mapNext[pindex];
1610 for (int i = 0; i < vNext.size(); i++)
1612 if (vNext[i]->pnext)
1614 swap(vNext[0], vNext[i]);
1620 for (int i = 0; i < vNext.size(); i++)
1621 vStack.push_back(make_pair(nCol+i, vNext[i]));
1634 //////////////////////////////////////////////////////////////////////////////
1639 map<uint256, CAlert> mapAlerts;
1640 CCriticalSection cs_mapAlerts;
1642 string GetWarnings(string strFor)
1645 string strStatusBar;
1647 if (GetBoolArg("-testsafemode"))
1650 // Misc warnings like out of disk space and clock is wrong
1651 if (strMiscWarning != "")
1654 strStatusBar = strMiscWarning;
1657 // Longer invalid proof-of-work chain
1658 if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
1661 strStatusBar = strRPC = "WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.";
1665 CRITICAL_BLOCK(cs_mapAlerts)
1667 BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
1669 const CAlert& alert = item.second;
1670 if (alert.AppliesToMe() && alert.nPriority > nPriority)
1672 nPriority = alert.nPriority;
1673 strStatusBar = alert.strStatusBar;
1678 if (strFor == "statusbar")
1679 return strStatusBar;
1680 else if (strFor == "rpc")
1682 assert(!"GetWarnings() : invalid parameter");
1686 bool CAlert::ProcessAlert()
1688 if (!CheckSignature())
1693 CRITICAL_BLOCK(cs_mapAlerts)
1695 // Cancel previous alerts
1696 for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();)
1698 const CAlert& alert = (*mi).second;
1701 printf("cancelling alert %d\n", alert.nID);
1702 mapAlerts.erase(mi++);
1704 else if (!alert.IsInEffect())
1706 printf("expiring alert %d\n", alert.nID);
1707 mapAlerts.erase(mi++);
1713 // Check if this alert has been cancelled
1714 BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
1716 const CAlert& alert = item.second;
1717 if (alert.Cancels(*this))
1719 printf("alert already cancelled by %d\n", alert.nID);
1725 mapAlerts.insert(make_pair(GetHash(), *this));
1728 printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe());
1740 //////////////////////////////////////////////////////////////////////////////
1746 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
1750 case MSG_TX: return mapTransactions.count(inv.hash) || mapOrphanTransactions.count(inv.hash) || txdb.ContainsTx(inv.hash);
1751 case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
1753 // Don't know what it is, just say we already got one
1760 // The message start string is designed to be unlikely to occur in normal data.
1761 // The characters are rarely used upper ascii, not valid as UTF-8, and produce
1762 // a large 4-byte int at any alignment.
1763 unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 };
1766 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
1768 static map<unsigned int, vector<unsigned char> > mapReuseKey;
1769 RandAddSeedPerfmon();
1771 printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
1772 printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size());
1774 if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
1776 printf("dropmessagestest DROPPING RECV MESSAGE\n");
1784 if (strCommand == "version")
1786 // Each connection can only send one version message
1787 if (pfrom->nVersion != 0)
1789 pfrom->Misbehaving(1);
1797 vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
1798 if (pfrom->nVersion == 10300)
1799 pfrom->nVersion = 300;
1800 if (pfrom->nVersion >= 106 && !vRecv.empty())
1801 vRecv >> addrFrom >> nNonce;
1802 if (pfrom->nVersion >= 106 && !vRecv.empty())
1803 vRecv >> pfrom->strSubVer;
1804 if (pfrom->nVersion >= 209 && !vRecv.empty())
1805 vRecv >> pfrom->nStartingHeight;
1807 if (pfrom->nVersion == 0)
1810 // Disconnect if we connected to ourself
1811 if (nNonce == nLocalHostNonce && nNonce > 1)
1813 printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
1814 pfrom->fDisconnect = true;
1818 // Be shy and don't send version until we hear
1819 if (pfrom->fInbound)
1820 pfrom->PushVersion();
1822 pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
1824 AddTimeData(pfrom->addr.ip, nTime);
1827 if (pfrom->nVersion >= 209)
1828 pfrom->PushMessage("verack");
1829 pfrom->vSend.SetVersion(min(pfrom->nVersion, VERSION));
1830 if (pfrom->nVersion < 209)
1831 pfrom->vRecv.SetVersion(min(pfrom->nVersion, VERSION));
1833 if (!pfrom->fInbound)
1835 // Advertise our address
1836 if (addrLocalHost.IsRoutable() && !fUseProxy)
1838 CAddress addr(addrLocalHost);
1839 addr.nTime = GetAdjustedTime();
1840 pfrom->PushAddress(addr);
1843 // Get recent addresses
1844 if (pfrom->nVersion >= 31402 || mapAddresses.size() < 1000)
1846 pfrom->PushMessage("getaddr");
1847 pfrom->fGetAddr = true;
1851 // Ask the first connected node for block updates
1852 static int nAskedForBlocks;
1853 if (!pfrom->fClient &&
1854 (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
1855 (nAskedForBlocks < 1 || vNodes.size() <= 1))
1858 pfrom->PushGetBlocks(pindexBest, uint256(0));
1862 CRITICAL_BLOCK(cs_mapAlerts)
1863 BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
1864 item.second.RelayTo(pfrom);
1866 pfrom->fSuccessfullyConnected = true;
1868 printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight);
1870 cPeerBlockCounts.input(pfrom->nStartingHeight);
1874 else if (pfrom->nVersion == 0)
1876 // Must have a version message before anything else
1877 pfrom->Misbehaving(1);
1882 else if (strCommand == "verack")
1884 pfrom->vRecv.SetVersion(min(pfrom->nVersion, VERSION));
1888 else if (strCommand == "addr")
1890 vector<CAddress> vAddr;
1893 // Don't want addr from older versions unless seeding
1894 if (pfrom->nVersion < 209)
1896 if (pfrom->nVersion < 31402 && mapAddresses.size() > 1000)
1898 if (vAddr.size() > 1000)
1900 pfrom->Misbehaving(20);
1901 return error("message addr size() = %d", vAddr.size());
1904 // Store the new addresses
1907 int64 nNow = GetAdjustedTime();
1908 int64 nSince = nNow - 10 * 60;
1909 BOOST_FOREACH(CAddress& addr, vAddr)
1913 // ignore IPv6 for now, since it isn't implemented anyway
1916 if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
1917 addr.nTime = nNow - 5 * 24 * 60 * 60;
1918 AddAddress(addr, 2 * 60 * 60, &addrDB);
1919 pfrom->AddAddressKnown(addr);
1920 if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
1922 // Relay to a limited number of other nodes
1923 CRITICAL_BLOCK(cs_vNodes)
1925 // Use deterministic randomness to send to the same nodes for 24 hours
1926 // at a time so the setAddrKnowns of the chosen nodes prevent repeats
1927 static uint256 hashSalt;
1929 RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
1930 uint256 hashRand = hashSalt ^ (((int64)addr.ip)<<32) ^ ((GetTime()+addr.ip)/(24*60*60));
1931 hashRand = Hash(BEGIN(hashRand), END(hashRand));
1932 multimap<uint256, CNode*> mapMix;
1933 BOOST_FOREACH(CNode* pnode, vNodes)
1935 if (pnode->nVersion < 31402)
1937 unsigned int nPointer;
1938 memcpy(&nPointer, &pnode, sizeof(nPointer));
1939 uint256 hashKey = hashRand ^ nPointer;
1940 hashKey = Hash(BEGIN(hashKey), END(hashKey));
1941 mapMix.insert(make_pair(hashKey, pnode));
1943 int nRelayNodes = 2;
1944 for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
1945 ((*mi).second)->PushAddress(addr);
1949 addrDB.TxnCommit(); // Save addresses (it's ok if this fails)
1950 if (vAddr.size() < 1000)
1951 pfrom->fGetAddr = false;
1955 else if (strCommand == "inv")
1959 if (vInv.size() > 50000)
1961 pfrom->Misbehaving(20);
1962 return error("message inv size() = %d", vInv.size());
1966 BOOST_FOREACH(const CInv& inv, vInv)
1970 pfrom->AddInventoryKnown(inv);
1972 bool fAlreadyHave = AlreadyHave(txdb, inv);
1974 printf(" got inventory: %s %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
1978 else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash))
1979 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
1981 // Track requests for our stuff
1982 Inventory(inv.hash);
1987 else if (strCommand == "getdata")
1991 if (vInv.size() > 50000)
1993 pfrom->Misbehaving(20);
1994 return error("message getdata size() = %d", vInv.size());
1997 BOOST_FOREACH(const CInv& inv, vInv)
2001 printf("received getdata for: %s\n", inv.ToString().c_str());
2003 if (inv.type == MSG_BLOCK)
2005 // Send block from disk
2006 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
2007 if (mi != mapBlockIndex.end())
2010 block.ReadFromDisk((*mi).second);
2011 pfrom->PushMessage("block", block);
2013 // Trigger them to send a getblocks request for the next batch of inventory
2014 if (inv.hash == pfrom->hashContinue)
2016 // Bypass PushInventory, this must send even if redundant,
2017 // and we want it right after the last block so they don't
2018 // wait for other stuff first.
2020 vInv.push_back(CInv(MSG_BLOCK, hashBestChain));
2021 pfrom->PushMessage("inv", vInv);
2022 pfrom->hashContinue = 0;
2026 else if (inv.IsKnownType())
2028 // Send stream from relay memory
2029 CRITICAL_BLOCK(cs_mapRelay)
2031 map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
2032 if (mi != mapRelay.end())
2033 pfrom->PushMessage(inv.GetCommand(), (*mi).second);
2037 // Track requests for our stuff
2038 Inventory(inv.hash);
2043 else if (strCommand == "getblocks")
2045 CBlockLocator locator;
2047 vRecv >> locator >> hashStop;
2049 // Find the last block the caller has in the main chain
2050 CBlockIndex* pindex = locator.GetBlockIndex();
2052 // Send the rest of the chain
2054 pindex = pindex->pnext;
2055 int nLimit = 500 + locator.GetDistanceBack();
2056 unsigned int nBytes = 0;
2057 printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2058 for (; pindex; pindex = pindex->pnext)
2060 if (pindex->GetBlockHash() == hashStop)
2062 printf(" getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2065 pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
2067 block.ReadFromDisk(pindex, true);
2068 nBytes += block.GetSerializeSize(SER_NETWORK);
2069 if (--nLimit <= 0 || nBytes >= SendBufferSize()/2)
2071 // When this block is requested, we'll send an inv that'll make them
2072 // getblocks the next batch of inventory.
2073 printf(" getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2074 pfrom->hashContinue = pindex->GetBlockHash();
2081 else if (strCommand == "getheaders")
2083 CBlockLocator locator;
2085 vRecv >> locator >> hashStop;
2087 CBlockIndex* pindex = NULL;
2088 if (locator.IsNull())
2090 // If locator is null, return the hashStop block
2091 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
2092 if (mi == mapBlockIndex.end())
2094 pindex = (*mi).second;
2098 // Find the last block the caller has in the main chain
2099 pindex = locator.GetBlockIndex();
2101 pindex = pindex->pnext;
2104 vector<CBlock> vHeaders;
2105 int nLimit = 2000 + locator.GetDistanceBack();
2106 printf("getheaders %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2107 for (; pindex; pindex = pindex->pnext)
2109 vHeaders.push_back(pindex->GetBlockHeader());
2110 if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
2113 pfrom->PushMessage("headers", vHeaders);
2117 else if (strCommand == "tx")
2119 vector<uint256> vWorkQueue;
2120 CDataStream vMsg(vRecv);
2124 CInv inv(MSG_TX, tx.GetHash());
2125 pfrom->AddInventoryKnown(inv);
2127 bool fMissingInputs = false;
2128 if (tx.AcceptToMemoryPool(true, &fMissingInputs))
2130 SyncWithWallets(tx, NULL, true);
2131 RelayMessage(inv, vMsg);
2132 mapAlreadyAskedFor.erase(inv);
2133 vWorkQueue.push_back(inv.hash);
2135 // Recursively process any orphan transactions that depended on this one
2136 for (int i = 0; i < vWorkQueue.size(); i++)
2138 uint256 hashPrev = vWorkQueue[i];
2139 for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev);
2140 mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev);
2143 const CDataStream& vMsg = *((*mi).second);
2145 CDataStream(vMsg) >> tx;
2146 CInv inv(MSG_TX, tx.GetHash());
2148 if (tx.AcceptToMemoryPool(true))
2150 printf(" accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2151 SyncWithWallets(tx, NULL, true);
2152 RelayMessage(inv, vMsg);
2153 mapAlreadyAskedFor.erase(inv);
2154 vWorkQueue.push_back(inv.hash);
2159 BOOST_FOREACH(uint256 hash, vWorkQueue)
2160 EraseOrphanTx(hash);
2162 else if (fMissingInputs)
2164 printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2167 if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
2171 else if (strCommand == "block")
2176 printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
2179 CInv inv(MSG_BLOCK, block.GetHash());
2180 pfrom->AddInventoryKnown(inv);
2182 if (ProcessBlock(pfrom, &block))
2183 mapAlreadyAskedFor.erase(inv);
2184 if (block.nDoS) pfrom->Misbehaving(block.nDoS);
2188 else if (strCommand == "getaddr")
2190 // Nodes rebroadcast an addr every 24 hours
2191 pfrom->vAddrToSend.clear();
2192 int64 nSince = GetAdjustedTime() - 3 * 60 * 60; // in the last 3 hours
2193 CRITICAL_BLOCK(cs_mapAddresses)
2195 unsigned int nCount = 0;
2196 BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
2198 const CAddress& addr = item.second;
2199 if (addr.nTime > nSince)
2202 BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
2204 const CAddress& addr = item.second;
2205 if (addr.nTime > nSince && GetRand(nCount) < 2500)
2206 pfrom->PushAddress(addr);
2212 else if (strCommand == "checkorder")
2217 if (!GetBoolArg("-allowreceivebyip"))
2219 pfrom->PushMessage("reply", hashReply, (int)2, string(""));
2226 /// we have a chance to check the order here
2228 // Keep giving the same key to the same ip until they use it
2229 if (!mapReuseKey.count(pfrom->addr.ip))
2230 pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr.ip], true);
2232 // Send back approval of order and pubkey to use
2233 CScript scriptPubKey;
2234 scriptPubKey << mapReuseKey[pfrom->addr.ip] << OP_CHECKSIG;
2235 pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
2239 else if (strCommand == "reply")
2244 CRequestTracker tracker;
2245 CRITICAL_BLOCK(pfrom->cs_mapRequests)
2247 map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
2248 if (mi != pfrom->mapRequests.end())
2250 tracker = (*mi).second;
2251 pfrom->mapRequests.erase(mi);
2254 if (!tracker.IsNull())
2255 tracker.fn(tracker.param1, vRecv);
2259 else if (strCommand == "ping")
2264 else if (strCommand == "alert")
2269 if (alert.ProcessAlert())
2272 pfrom->setKnown.insert(alert.GetHash());
2273 CRITICAL_BLOCK(cs_vNodes)
2274 BOOST_FOREACH(CNode* pnode, vNodes)
2275 alert.RelayTo(pnode);
2282 // Ignore unknown commands for extensibility
2286 // Update the last seen time for this node's address
2287 if (pfrom->fNetworkNode)
2288 if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
2289 AddressCurrentlyConnected(pfrom->addr);
2295 bool ProcessMessages(CNode* pfrom)
2297 CDataStream& vRecv = pfrom->vRecv;
2301 // printf("ProcessMessages(%u bytes)\n", vRecv.size());
2305 // (4) message start
2314 // Scan for message start
2315 CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
2316 int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
2317 if (vRecv.end() - pstart < nHeaderSize)
2319 if (vRecv.size() > nHeaderSize)
2321 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
2322 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
2326 if (pstart - vRecv.begin() > 0)
2327 printf("\n\nPROCESSMESSAGE SKIPPED %d BYTES\n\n", pstart - vRecv.begin());
2328 vRecv.erase(vRecv.begin(), pstart);
2331 vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
2336 printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
2339 string strCommand = hdr.GetCommand();
2342 unsigned int nMessageSize = hdr.nMessageSize;
2343 if (nMessageSize > MAX_SIZE)
2345 printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
2348 if (nMessageSize > vRecv.size())
2350 // Rewind and wait for rest of message
2351 vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
2356 if (vRecv.GetVersion() >= 209)
2358 uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
2359 unsigned int nChecksum = 0;
2360 memcpy(&nChecksum, &hash, sizeof(nChecksum));
2361 if (nChecksum != hdr.nChecksum)
2363 printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
2364 strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
2369 // Copy message to its own buffer
2370 CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
2371 vRecv.ignore(nMessageSize);
2377 CRITICAL_BLOCK(cs_main)
2378 fRet = ProcessMessage(pfrom, strCommand, vMsg);
2382 catch (std::ios_base::failure& e)
2384 if (strstr(e.what(), "end of data"))
2386 // Allow exceptions from underlength message on vRecv
2387 printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what());
2389 else if (strstr(e.what(), "size too large"))
2391 // Allow exceptions from overlong size
2392 printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
2396 PrintExceptionContinue(&e, "ProcessMessage()");
2399 catch (std::exception& e) {
2400 PrintExceptionContinue(&e, "ProcessMessage()");
2402 PrintExceptionContinue(NULL, "ProcessMessage()");
2406 printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
2414 bool SendMessages(CNode* pto, bool fSendTrickle)
2416 CRITICAL_BLOCK(cs_main)
2418 // Don't send anything until we get their version message
2419 if (pto->nVersion == 0)
2423 if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty())
2424 pto->PushMessage("ping");
2426 // Resend wallet transactions that haven't gotten in a block yet
2427 ResendWalletTransactions();
2429 // Address refresh broadcast
2430 static int64 nLastRebroadcast;
2431 if (GetTime() - nLastRebroadcast > 24 * 60 * 60)
2433 nLastRebroadcast = GetTime();
2434 CRITICAL_BLOCK(cs_vNodes)
2436 BOOST_FOREACH(CNode* pnode, vNodes)
2438 // Periodically clear setAddrKnown to allow refresh broadcasts
2439 pnode->setAddrKnown.clear();
2441 // Rebroadcast our address
2442 if (addrLocalHost.IsRoutable() && !fUseProxy)
2444 CAddress addr(addrLocalHost);
2445 addr.nTime = GetAdjustedTime();
2446 pnode->PushAddress(addr);
2452 // Clear out old addresses periodically so it's not too much work at once
2453 static int64 nLastClear;
2454 if (nLastClear == 0)
2455 nLastClear = GetTime();
2456 if (GetTime() - nLastClear > 10 * 60 && vNodes.size() >= 3)
2458 nLastClear = GetTime();
2459 CRITICAL_BLOCK(cs_mapAddresses)
2462 int64 nSince = GetAdjustedTime() - 14 * 24 * 60 * 60;
2463 for (map<vector<unsigned char>, CAddress>::iterator mi = mapAddresses.begin();
2464 mi != mapAddresses.end();)
2466 const CAddress& addr = (*mi).second;
2467 if (addr.nTime < nSince)
2469 if (mapAddresses.size() < 1000 || GetTime() > nLastClear + 20)
2471 addrdb.EraseAddress(addr);
2472 mapAddresses.erase(mi++);
2486 vector<CAddress> vAddr;
2487 vAddr.reserve(pto->vAddrToSend.size());
2488 BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
2490 // returns true if wasn't already contained in the set
2491 if (pto->setAddrKnown.insert(addr).second)
2493 vAddr.push_back(addr);
2494 // receiver rejects addr messages larger than 1000
2495 if (vAddr.size() >= 1000)
2497 pto->PushMessage("addr", vAddr);
2502 pto->vAddrToSend.clear();
2504 pto->PushMessage("addr", vAddr);
2509 // Message: inventory
2512 vector<CInv> vInvWait;
2513 CRITICAL_BLOCK(pto->cs_inventory)
2515 vInv.reserve(pto->vInventoryToSend.size());
2516 vInvWait.reserve(pto->vInventoryToSend.size());
2517 BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
2519 if (pto->setInventoryKnown.count(inv))
2522 // trickle out tx inv to protect privacy
2523 if (inv.type == MSG_TX && !fSendTrickle)
2525 // 1/4 of tx invs blast to all immediately
2526 static uint256 hashSalt;
2528 RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2529 uint256 hashRand = inv.hash ^ hashSalt;
2530 hashRand = Hash(BEGIN(hashRand), END(hashRand));
2531 bool fTrickleWait = ((hashRand & 3) != 0);
2533 // always trickle our own transactions
2537 if (GetTransaction(inv.hash, wtx))
2539 fTrickleWait = true;
2544 vInvWait.push_back(inv);
2549 // returns true if wasn't already contained in the set
2550 if (pto->setInventoryKnown.insert(inv).second)
2552 vInv.push_back(inv);
2553 if (vInv.size() >= 1000)
2555 pto->PushMessage("inv", vInv);
2560 pto->vInventoryToSend = vInvWait;
2563 pto->PushMessage("inv", vInv);
2569 vector<CInv> vGetData;
2570 int64 nNow = GetTime() * 1000000;
2572 while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
2574 const CInv& inv = (*pto->mapAskFor.begin()).second;
2575 if (!AlreadyHave(txdb, inv))
2577 printf("sending getdata: %s\n", inv.ToString().c_str());
2578 vGetData.push_back(inv);
2579 if (vGetData.size() >= 1000)
2581 pto->PushMessage("getdata", vGetData);
2585 mapAlreadyAskedFor[inv] = nNow;
2586 pto->mapAskFor.erase(pto->mapAskFor.begin());
2588 if (!vGetData.empty())
2589 pto->PushMessage("getdata", vGetData);
2608 //////////////////////////////////////////////////////////////////////////////
2613 int static FormatHashBlocks(void* pbuffer, unsigned int len)
2615 unsigned char* pdata = (unsigned char*)pbuffer;
2616 unsigned int blocks = 1 + ((len + 8) / 64);
2617 unsigned char* pend = pdata + 64 * blocks;
2618 memset(pdata + len, 0, 64 * blocks - len);
2620 unsigned int bits = len * 8;
2621 pend[-1] = (bits >> 0) & 0xff;
2622 pend[-2] = (bits >> 8) & 0xff;
2623 pend[-3] = (bits >> 16) & 0xff;
2624 pend[-4] = (bits >> 24) & 0xff;
2628 static const unsigned int pSHA256InitState[8] =
2629 {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
2631 void SHA256Transform(void* pstate, void* pinput, const void* pinit)
2634 unsigned char data[64];
2638 for (int i = 0; i < 16; i++)
2639 ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
2641 for (int i = 0; i < 8; i++)
2642 ctx.h[i] = ((uint32_t*)pinit)[i];
2644 SHA256_Update(&ctx, data, sizeof(data));
2645 for (int i = 0; i < 8; i++)
2646 ((uint32_t*)pstate)[i] = ctx.h[i];
2650 // ScanHash scans nonces looking for a hash with at least some zero bits.
2651 // It operates on big endian data. Caller does the byte reversing.
2652 // All input buffers are 16-byte aligned. nNonce is usually preserved
2653 // between calls, but periodically or if nNonce is 0xffff0000 or above,
2654 // the block is rebuilt and nNonce starts over at zero.
2656 unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone)
2658 unsigned int& nNonce = *(unsigned int*)(pdata + 12);
2662 // Hash pdata using pmidstate as the starting state into
2663 // preformatted buffer phash1, then hash phash1 into phash
2665 SHA256Transform(phash1, pdata, pmidstate);
2666 SHA256Transform(phash, phash1, pSHA256InitState);
2668 // Return the nonce if the hash has at least some zero bits,
2669 // caller will check if it has enough to reach the target
2670 if (((unsigned short*)phash)[14] == 0)
2673 // If nothing found after trying for a while, return -1
2674 if ((nNonce & 0xffff) == 0)
2676 nHashesDone = 0xffff+1;
2682 // Some explaining would be appreciated
2687 set<uint256> setDependsOn;
2690 COrphan(CTransaction* ptxIn)
2698 printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority);
2699 BOOST_FOREACH(uint256 hash, setDependsOn)
2700 printf(" setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
2705 CBlock* CreateNewBlock(CReserveKey& reservekey)
2707 CBlockIndex* pindexPrev = pindexBest;
2710 auto_ptr<CBlock> pblock(new CBlock());
2714 // Create coinbase tx
2716 txNew.vin.resize(1);
2717 txNew.vin[0].prevout.SetNull();
2718 txNew.vout.resize(1);
2719 txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
2721 // Add our coinbase tx as first transaction
2722 pblock->vtx.push_back(txNew);
2724 // Collect memory pool transactions into the block
2726 CRITICAL_BLOCK(cs_main)
2727 CRITICAL_BLOCK(cs_mapTransactions)
2731 // Priority order to process transactions
2732 list<COrphan> vOrphan; // list memory doesn't move
2733 map<uint256, vector<COrphan*> > mapDependers;
2734 multimap<double, CTransaction*> mapPriority;
2735 for (map<uint256, CTransaction>::iterator mi = mapTransactions.begin(); mi != mapTransactions.end(); ++mi)
2737 CTransaction& tx = (*mi).second;
2738 if (tx.IsCoinBase() || !tx.IsFinal())
2741 COrphan* porphan = NULL;
2742 double dPriority = 0;
2743 BOOST_FOREACH(const CTxIn& txin, tx.vin)
2745 // Read prev transaction
2746 CTransaction txPrev;
2748 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
2750 // Has to wait for dependencies
2753 // Use list for automatic deletion
2754 vOrphan.push_back(COrphan(&tx));
2755 porphan = &vOrphan.back();
2757 mapDependers[txin.prevout.hash].push_back(porphan);
2758 porphan->setDependsOn.insert(txin.prevout.hash);
2761 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
2763 // Read block header
2764 int nConf = txindex.GetDepthInMainChain();
2766 dPriority += (double)nValueIn * nConf;
2768 if (fDebug && GetBoolArg("-printpriority"))
2769 printf("priority nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority);
2772 // Priority is sum(valuein * age) / txsize
2773 dPriority /= ::GetSerializeSize(tx, SER_NETWORK);
2776 porphan->dPriority = dPriority;
2778 mapPriority.insert(make_pair(-dPriority, &(*mi).second));
2780 if (fDebug && GetBoolArg("-printpriority"))
2782 printf("priority %-20.1f %s\n%s", dPriority, tx.GetHash().ToString().substr(0,10).c_str(), tx.ToString().c_str());
2789 // Collect transactions into block
2790 map<uint256, CTxIndex> mapTestPool;
2791 uint64 nBlockSize = 1000;
2792 int nBlockSigOps = 100;
2793 while (!mapPriority.empty())
2795 // Take highest priority transaction off priority queue
2796 double dPriority = -(*mapPriority.begin()).first;
2797 CTransaction& tx = *(*mapPriority.begin()).second;
2798 mapPriority.erase(mapPriority.begin());
2801 unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK);
2802 if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN)
2804 int nTxSigOps = tx.GetSigOpCount();
2805 if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
2808 // Transaction fee required depends on block size
2809 bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority));
2810 int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, true);
2812 // Connecting shouldn't fail due to dependency on other memory pool transactions
2813 // because we're already processing them in order of dependency
2814 map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
2815 if (!tx.ConnectInputs(txdb, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, nFees, false, true, nMinFee))
2817 swap(mapTestPool, mapTestPoolTmp);
2820 pblock->vtx.push_back(tx);
2821 nBlockSize += nTxSize;
2822 nBlockSigOps += nTxSigOps;
2824 // Add transactions that depend on this one to the priority queue
2825 uint256 hash = tx.GetHash();
2826 if (mapDependers.count(hash))
2828 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
2830 if (!porphan->setDependsOn.empty())
2832 porphan->setDependsOn.erase(hash);
2833 if (porphan->setDependsOn.empty())
2834 mapPriority.insert(make_pair(-porphan->dPriority, porphan->ptx));
2840 pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees);
2843 pblock->hashPrevBlock = pindexPrev->GetBlockHash();
2844 pblock->hashMerkleRoot = pblock->BuildMerkleTree();
2845 pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
2846 pblock->nBits = GetNextWorkRequired(pindexPrev);
2849 return pblock.release();
2853 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
2855 // Update nExtraNonce
2856 static uint256 hashPrevBlock;
2857 if (hashPrevBlock != pblock->hashPrevBlock)
2860 hashPrevBlock = pblock->hashPrevBlock;
2863 pblock->vtx[0].vin[0].scriptSig = CScript() << pblock->nTime << CBigNum(nExtraNonce);
2864 pblock->hashMerkleRoot = pblock->BuildMerkleTree();
2868 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
2871 // Prebuild hash buffers
2878 uint256 hashPrevBlock;
2879 uint256 hashMerkleRoot;
2882 unsigned int nNonce;
2885 unsigned char pchPadding0[64];
2887 unsigned char pchPadding1[64];
2890 memset(&tmp, 0, sizeof(tmp));
2892 tmp.block.nVersion = pblock->nVersion;
2893 tmp.block.hashPrevBlock = pblock->hashPrevBlock;
2894 tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
2895 tmp.block.nTime = pblock->nTime;
2896 tmp.block.nBits = pblock->nBits;
2897 tmp.block.nNonce = pblock->nNonce;
2899 FormatHashBlocks(&tmp.block, sizeof(tmp.block));
2900 FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
2902 // Byte swap all the input buffer
2903 for (int i = 0; i < sizeof(tmp)/4; i++)
2904 ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
2906 // Precalc the first half of the first hash, which stays constant
2907 SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
2909 memcpy(pdata, &tmp.block, 128);
2910 memcpy(phash1, &tmp.hash1, 64);
2914 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
2916 uint256 hash = pblock->GetHash();
2917 uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
2919 if (hash > hashTarget)
2923 printf("BitcoinMiner:\n");
2924 printf("proof-of-work found \n hash: %s \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
2926 printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
2927 printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
2930 CRITICAL_BLOCK(cs_main)
2932 if (pblock->hashPrevBlock != hashBestChain)
2933 return error("BitcoinMiner : generated block is stale");
2935 // Remove key from key pool
2936 reservekey.KeepKey();
2938 // Track how many getdata requests this block gets
2939 CRITICAL_BLOCK(wallet.cs_wallet)
2940 wallet.mapRequestCount[pblock->GetHash()] = 0;
2942 // Process this block the same as if we had received it from another node
2943 if (!ProcessBlock(NULL, pblock))
2944 return error("BitcoinMiner : ProcessBlock, block not accepted");
2950 void static ThreadBitcoinMiner(void* parg);
2952 void static BitcoinMiner(CWallet *pwallet)
2954 printf("BitcoinMiner started\n");
2955 SetThreadPriority(THREAD_PRIORITY_LOWEST);
2957 // Each thread has its own key and counter
2958 CReserveKey reservekey(pwallet);
2959 unsigned int nExtraNonce = 0;
2961 while (fGenerateBitcoins)
2963 if (AffinityBugWorkaround(ThreadBitcoinMiner))
2967 while (vNodes.empty() || IsInitialBlockDownload())
2972 if (!fGenerateBitcoins)
2980 unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
2981 CBlockIndex* pindexPrev = pindexBest;
2983 auto_ptr<CBlock> pblock(CreateNewBlock(reservekey));
2986 IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
2988 printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
2992 // Prebuild hash buffers
2994 char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
2995 char pdatabuf[128+16]; char* pdata = alignup<16>(pdatabuf);
2996 char phash1buf[64+16]; char* phash1 = alignup<16>(phash1buf);
2998 FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1);
3000 unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
3001 unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
3007 int64 nStart = GetTime();
3008 uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3010 uint256& hash = *alignup<16>(hashbuf);
3013 unsigned int nHashesDone = 0;
3014 unsigned int nNonceFound;
3017 nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1,
3018 (char*)&hash, nHashesDone);
3020 // Check if something found
3021 if (nNonceFound != -1)
3023 for (int i = 0; i < sizeof(hash)/4; i++)
3024 ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]);
3026 if (hash <= hashTarget)
3029 pblock->nNonce = ByteReverse(nNonceFound);
3030 assert(hash == pblock->GetHash());
3032 SetThreadPriority(THREAD_PRIORITY_NORMAL);
3033 CheckWork(pblock.get(), *pwalletMain, reservekey);
3034 SetThreadPriority(THREAD_PRIORITY_LOWEST);
3040 static int64 nHashCounter;
3041 if (nHPSTimerStart == 0)
3043 nHPSTimerStart = GetTimeMillis();
3047 nHashCounter += nHashesDone;
3048 if (GetTimeMillis() - nHPSTimerStart > 4000)
3050 static CCriticalSection cs;
3053 if (GetTimeMillis() - nHPSTimerStart > 4000)
3055 dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
3056 nHPSTimerStart = GetTimeMillis();
3058 string strStatus = strprintf(" %.0f khash/s", dHashesPerSec/1000.0);
3059 UIThreadCall(boost::bind(CalledSetStatusBar, strStatus, 0));
3060 static int64 nLogTime;
3061 if (GetTime() - nLogTime > 30 * 60)
3063 nLogTime = GetTime();
3064 printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3065 printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[3], dHashesPerSec/1000.0);
3071 // Check for stop or if block needs to be rebuilt
3074 if (!fGenerateBitcoins)
3076 if (fLimitProcessors && vnThreadsRunning[3] > nLimitProcessors)
3080 if (nBlockNonce >= 0xffff0000)
3082 if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
3084 if (pindexPrev != pindexBest)
3087 // Update nTime every few seconds
3088 pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
3089 nBlockTime = ByteReverse(pblock->nTime);
3094 void static ThreadBitcoinMiner(void* parg)
3096 CWallet* pwallet = (CWallet*)parg;
3099 vnThreadsRunning[3]++;
3100 BitcoinMiner(pwallet);
3101 vnThreadsRunning[3]--;
3103 catch (std::exception& e) {
3104 vnThreadsRunning[3]--;
3105 PrintException(&e, "ThreadBitcoinMiner()");
3107 vnThreadsRunning[3]--;
3108 PrintException(NULL, "ThreadBitcoinMiner()");
3110 UIThreadCall(boost::bind(CalledSetStatusBar, "", 0));
3112 if (vnThreadsRunning[3] == 0)
3114 printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[3]);
3118 void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
3120 if (fGenerateBitcoins != fGenerate)
3122 fGenerateBitcoins = fGenerate;
3123 WriteSetting("fGenerateBitcoins", fGenerateBitcoins);
3126 if (fGenerateBitcoins)
3128 int nProcessors = boost::thread::hardware_concurrency();
3129 printf("%d processors\n", nProcessors);
3130 if (nProcessors < 1)
3132 if (fLimitProcessors && nProcessors > nLimitProcessors)
3133 nProcessors = nLimitProcessors;
3134 int nAddThreads = nProcessors - vnThreadsRunning[3];
3135 printf("Starting %d BitcoinMiner threads\n", nAddThreads);
3136 for (int i = 0; i < nAddThreads; i++)
3138 if (!CreateThread(ThreadBitcoinMiner, pwallet))
3139 printf("Error: CreateThread(ThreadBitcoinMiner) failed\n");