Merge branch '0.5.x' into 0.6.0.x
[novacoin.git] / src / main.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 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.
5 #include "headers.h"
6 #include "checkpoints.h"
7 #include "db.h"
8 #include "net.h"
9 #include "init.h"
10 #include <boost/algorithm/string/replace.hpp>
11 #include <boost/filesystem.hpp>
12 #include <boost/filesystem/fstream.hpp>
13
14 using namespace std;
15 using namespace boost;
16
17 //
18 // Global state
19 //
20
21 // Name of client reported in the 'version' message. Report the same name
22 // for both bitcoind and bitcoin-qt, to make it harder for attackers to
23 // target servers or GUI users specifically.
24 const std::string CLIENT_NAME("Satoshi");
25
26 CCriticalSection cs_setpwalletRegistered;
27 set<CWallet*> setpwalletRegistered;
28
29 CCriticalSection cs_main;
30
31 static map<uint256, CTransaction> mapTransactions;
32 CCriticalSection cs_mapTransactions;
33 unsigned int nTransactionsUpdated = 0;
34 map<COutPoint, CInPoint> mapNextTx;
35
36 map<uint256, CBlockIndex*> mapBlockIndex;
37 uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f");
38 static CBigNum bnProofOfWorkLimit(~uint256(0) >> 32);
39 CBlockIndex* pindexGenesisBlock = NULL;
40 int nBestHeight = -1;
41 CBigNum bnBestChainWork = 0;
42 CBigNum bnBestInvalidWork = 0;
43 uint256 hashBestChain = 0;
44 CBlockIndex* pindexBest = NULL;
45 int64 nTimeBestReceived = 0;
46
47 CMedianFilter<int> cPeerBlockCounts(5, 0); // Amount of blocks that other nodes claim to have
48
49 map<uint256, CBlock*> mapOrphanBlocks;
50 multimap<uint256, CBlock*> mapOrphanBlocksByPrev;
51
52 map<uint256, CDataStream*> mapOrphanTransactions;
53 multimap<uint256, CDataStream*> mapOrphanTransactionsByPrev;
54
55 // Constant stuff for coinbase transactions we create:
56 CScript COINBASE_FLAGS;
57
58 const string strMessageMagic = "Bitcoin Signed Message:\n";
59
60 double dHashesPerSec;
61 int64 nHPSTimerStart;
62
63 // Settings
64 int64 nTransactionFee = 0;
65
66
67
68 //////////////////////////////////////////////////////////////////////////////
69 //
70 // dispatching functions
71 //
72
73 // These functions dispatch to one or all registered wallets
74
75
76 void RegisterWallet(CWallet* pwalletIn)
77 {
78     CRITICAL_BLOCK(cs_setpwalletRegistered)
79     {
80         setpwalletRegistered.insert(pwalletIn);
81     }
82 }
83
84 void UnregisterWallet(CWallet* pwalletIn)
85 {
86     CRITICAL_BLOCK(cs_setpwalletRegistered)
87     {
88         setpwalletRegistered.erase(pwalletIn);
89     }
90 }
91
92 // check whether the passed transaction is from us
93 bool static IsFromMe(CTransaction& tx)
94 {
95     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
96         if (pwallet->IsFromMe(tx))
97             return true;
98     return false;
99 }
100
101 // get the wallet transaction with the given hash (if it exists)
102 bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
103 {
104     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
105         if (pwallet->GetTransaction(hashTx,wtx))
106             return true;
107     return false;
108 }
109
110 // erases transaction with the given hash from all wallets
111 void static EraseFromWallets(uint256 hash)
112 {
113     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
114         pwallet->EraseFromWallet(hash);
115 }
116
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)
119 {
120     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
121         pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate);
122 }
123
124 // notify wallets about a new best chain
125 void static SetBestChain(const CBlockLocator& loc)
126 {
127     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
128         pwallet->SetBestChain(loc);
129 }
130
131 // notify wallets about an updated transaction
132 void static UpdatedTransaction(const uint256& hashTx)
133 {
134     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
135         pwallet->UpdatedTransaction(hashTx);
136 }
137
138 // dump all wallets
139 void static PrintWallets(const CBlock& block)
140 {
141     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
142         pwallet->PrintWallet(block);
143 }
144
145 // notify wallets about an incoming inventory (for request counts)
146 void static Inventory(const uint256& hash)
147 {
148     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
149         pwallet->Inventory(hash);
150 }
151
152 // ask wallets to resend their transactions
153 void static ResendWalletTransactions()
154 {
155     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
156         pwallet->ResendWalletTransactions();
157 }
158
159
160
161
162
163
164
165 //////////////////////////////////////////////////////////////////////////////
166 //
167 // mapOrphanTransactions
168 //
169
170 void AddOrphanTx(const CDataStream& vMsg)
171 {
172     CTransaction tx;
173     CDataStream(vMsg) >> tx;
174     uint256 hash = tx.GetHash();
175     if (mapOrphanTransactions.count(hash))
176         return;
177
178     CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg);
179     BOOST_FOREACH(const CTxIn& txin, tx.vin)
180         mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg));
181 }
182
183 void static EraseOrphanTx(uint256 hash)
184 {
185     if (!mapOrphanTransactions.count(hash))
186         return;
187     const CDataStream* pvMsg = mapOrphanTransactions[hash];
188     CTransaction tx;
189     CDataStream(*pvMsg) >> tx;
190     BOOST_FOREACH(const CTxIn& txin, tx.vin)
191     {
192         for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(txin.prevout.hash);
193              mi != mapOrphanTransactionsByPrev.upper_bound(txin.prevout.hash);)
194         {
195             if ((*mi).second == pvMsg)
196                 mapOrphanTransactionsByPrev.erase(mi++);
197             else
198                 mi++;
199         }
200     }
201     delete pvMsg;
202     mapOrphanTransactions.erase(hash);
203 }
204
205 int LimitOrphanTxSize(int nMaxOrphans)
206 {
207     int nEvicted = 0;
208     while (mapOrphanTransactions.size() > nMaxOrphans)
209     {
210         // Evict a random orphan:
211         std::vector<unsigned char> randbytes(32);
212         RAND_bytes(&randbytes[0], 32);
213         uint256 randomhash(randbytes);
214         map<uint256, CDataStream*>::iterator it = mapOrphanTransactions.lower_bound(randomhash);
215         if (it == mapOrphanTransactions.end())
216             it = mapOrphanTransactions.begin();
217         EraseOrphanTx(it->first);
218         ++nEvicted;
219     }
220     return nEvicted;
221 }
222
223
224
225
226
227
228
229 //////////////////////////////////////////////////////////////////////////////
230 //
231 // CTransaction and CTxIndex
232 //
233
234 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)
235 {
236     SetNull();
237     if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
238         return false;
239     if (!ReadFromDisk(txindexRet.pos))
240         return false;
241     if (prevout.n >= vout.size())
242     {
243         SetNull();
244         return false;
245     }
246     return true;
247 }
248
249 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout)
250 {
251     CTxIndex txindex;
252     return ReadFromDisk(txdb, prevout, txindex);
253 }
254
255 bool CTransaction::ReadFromDisk(COutPoint prevout)
256 {
257     CTxDB txdb("r");
258     CTxIndex txindex;
259     return ReadFromDisk(txdb, prevout, txindex);
260 }
261
262 bool CTransaction::IsStandard() const
263 {
264     BOOST_FOREACH(const CTxIn& txin, vin)
265     {
266         // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG
267         // pay-to-script-hash, which is 3 ~80-byte signatures, 3
268         // ~65-byte public keys, plus a few script ops.
269         if (txin.scriptSig.size() > 500)
270             return false;
271         if (!txin.scriptSig.IsPushOnly())
272             return false;
273     }
274     BOOST_FOREACH(const CTxOut& txout, vout)
275         if (!::IsStandard(txout.scriptPubKey))
276             return false;
277     return true;
278 }
279
280 //
281 // Check transaction inputs, and make sure any
282 // pay-to-script-hash transactions are evaluating IsStandard scripts
283 //
284 // Why bother? To avoid denial-of-service attacks; an attacker
285 // can submit a standard HASH... OP_EQUAL transaction,
286 // which will get accepted into blocks. The redemption
287 // script can be anything; an attacker could use a very
288 // expensive-to-check-upon-redemption script like:
289 //   DUP CHECKSIG DROP ... repeated 100 times... OP_1
290 //
291 bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const
292 {
293     if (IsCoinBase())
294         return true; // Coinbases don't use vin normally
295
296     for (unsigned int i = 0; i < vin.size(); i++)
297     {
298         const CTxOut& prev = GetOutputFor(vin[i], mapInputs);
299
300         vector<vector<unsigned char> > vSolutions;
301         txnouttype whichType;
302         // get the scriptPubKey corresponding to this input:
303         const CScript& prevScript = prev.scriptPubKey;
304         if (!Solver(prevScript, whichType, vSolutions))
305             return false;
306         int nArgsExpected = ScriptSigArgsExpected(whichType, vSolutions);
307         if (nArgsExpected < 0)
308             return false;
309
310         // Transactions with extra stuff in their scriptSigs are
311         // non-standard. Note that this EvalScript() call will
312         // be quick, because if there are any operations
313         // beside "push data" in the scriptSig the
314         // IsStandard() call returns false
315         vector<vector<unsigned char> > stack;
316         if (!EvalScript(stack, vin[i].scriptSig, *this, i, 0))
317             return false;
318
319         if (whichType == TX_SCRIPTHASH)
320         {
321             if (stack.empty())
322                 return false;
323             CScript subscript(stack.back().begin(), stack.back().end());
324             vector<vector<unsigned char> > vSolutions2;
325             txnouttype whichType2;
326             if (!Solver(subscript, whichType2, vSolutions2))
327                 return false;
328             if (whichType2 == TX_SCRIPTHASH)
329                 return false;
330
331             int tmpExpected;
332             tmpExpected = ScriptSigArgsExpected(whichType2, vSolutions2);
333             if (tmpExpected < 0)
334                 return false;
335             nArgsExpected += tmpExpected;
336         }
337
338         if (stack.size() != (unsigned int)nArgsExpected)
339             return false;
340     }
341
342     return true;
343 }
344
345 int
346 CTransaction::GetLegacySigOpCount() const
347 {
348     int nSigOps = 0;
349     BOOST_FOREACH(const CTxIn& txin, vin)
350     {
351         nSigOps += txin.scriptSig.GetSigOpCount(false);
352     }
353     BOOST_FOREACH(const CTxOut& txout, vout)
354     {
355         nSigOps += txout.scriptPubKey.GetSigOpCount(false);
356     }
357     return nSigOps;
358 }
359
360
361 int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
362 {
363     if (fClient)
364     {
365         if (hashBlock == 0)
366             return 0;
367     }
368     else
369     {
370         CBlock blockTmp;
371         if (pblock == NULL)
372         {
373             // Load the block this tx is in
374             CTxIndex txindex;
375             if (!CTxDB("r").ReadTxIndex(GetHash(), txindex))
376                 return 0;
377             if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos))
378                 return 0;
379             pblock = &blockTmp;
380         }
381
382         // Update the tx's hashBlock
383         hashBlock = pblock->GetHash();
384
385         // Locate the transaction
386         for (nIndex = 0; nIndex < pblock->vtx.size(); nIndex++)
387             if (pblock->vtx[nIndex] == *(CTransaction*)this)
388                 break;
389         if (nIndex == pblock->vtx.size())
390         {
391             vMerkleBranch.clear();
392             nIndex = -1;
393             printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
394             return 0;
395         }
396
397         // Fill in merkle branch
398         vMerkleBranch = pblock->GetMerkleBranch(nIndex);
399     }
400
401     // Is the tx in a block that's in the main chain
402     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
403     if (mi == mapBlockIndex.end())
404         return 0;
405     CBlockIndex* pindex = (*mi).second;
406     if (!pindex || !pindex->IsInMainChain())
407         return 0;
408
409     return pindexBest->nHeight - pindex->nHeight + 1;
410 }
411
412
413
414
415
416
417
418 bool CTransaction::CheckTransaction() const
419 {
420     // Basic checks that don't depend on any context
421     if (vin.empty())
422         return DoS(10, error("CTransaction::CheckTransaction() : vin empty"));
423     if (vout.empty())
424         return DoS(10, error("CTransaction::CheckTransaction() : vout empty"));
425     // Size limits
426     if (::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
427         return DoS(100, error("CTransaction::CheckTransaction() : size limits failed"));
428
429     // Check for negative or overflow output values
430     int64 nValueOut = 0;
431     BOOST_FOREACH(const CTxOut& txout, vout)
432     {
433         if (txout.nValue < 0)
434             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue negative"));
435         if (txout.nValue > MAX_MONEY)
436             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));
437         nValueOut += txout.nValue;
438         if (!MoneyRange(nValueOut))
439             return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));
440     }
441
442     // Check for duplicate inputs
443     set<COutPoint> vInOutPoints;
444     BOOST_FOREACH(const CTxIn& txin, vin)
445     {
446         if (vInOutPoints.count(txin.prevout))
447             return false;
448         vInOutPoints.insert(txin.prevout);
449     }
450
451     if (IsCoinBase())
452     {
453         if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
454             return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size"));
455     }
456     else
457     {
458         BOOST_FOREACH(const CTxIn& txin, vin)
459             if (txin.prevout.IsNull())
460                 return DoS(10, error("CTransaction::CheckTransaction() : prevout is null"));
461     }
462
463     return true;
464 }
465
466 bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs)
467 {
468     if (pfMissingInputs)
469         *pfMissingInputs = false;
470
471     if (!CheckTransaction())
472         return error("AcceptToMemoryPool() : CheckTransaction failed");
473
474     // Coinbase is only valid in a block, not as a loose transaction
475     if (IsCoinBase())
476         return DoS(100, error("AcceptToMemoryPool() : coinbase as individual tx"));
477
478     // To help v0.1.5 clients who would see it as a negative number
479     if ((int64)nLockTime > std::numeric_limits<int>::max())
480         return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet");
481
482     // Rather not work on nonstandard transactions (unless -testnet)
483     if (!fTestNet && !IsStandard())
484         return error("AcceptToMemoryPool() : nonstandard transaction type");
485
486     // Do we already have it?
487     uint256 hash = GetHash();
488     CRITICAL_BLOCK(cs_mapTransactions)
489         if (mapTransactions.count(hash))
490             return false;
491     if (fCheckInputs)
492         if (txdb.ContainsTx(hash))
493             return false;
494
495     // Check for conflicts with in-memory transactions
496     CTransaction* ptxOld = NULL;
497     for (unsigned int i = 0; i < vin.size(); i++)
498     {
499         COutPoint outpoint = vin[i].prevout;
500         if (mapNextTx.count(outpoint))
501         {
502             // Disable replacement feature for now
503             return false;
504
505             // Allow replacing with a newer version of the same transaction
506             if (i != 0)
507                 return false;
508             ptxOld = mapNextTx[outpoint].ptx;
509             if (ptxOld->IsFinal())
510                 return false;
511             if (!IsNewerThan(*ptxOld))
512                 return false;
513             for (unsigned int i = 0; i < vin.size(); i++)
514             {
515                 COutPoint outpoint = vin[i].prevout;
516                 if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
517                     return false;
518             }
519             break;
520         }
521     }
522
523     if (fCheckInputs)
524     {
525         MapPrevTx mapInputs;
526         map<uint256, CTxIndex> mapUnused;
527         bool fInvalid = false;
528         if (!FetchInputs(txdb, mapUnused, false, false, mapInputs, fInvalid))
529         {
530             if (fInvalid)
531                 return error("AcceptToMemoryPool() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str());
532             if (pfMissingInputs)
533                 *pfMissingInputs = true;
534             return error("AcceptToMemoryPool() : FetchInputs failed %s", hash.ToString().substr(0,10).c_str());
535         }
536
537         // Check for non-standard pay-to-script-hash in inputs
538         if (!AreInputsStandard(mapInputs) && !fTestNet)
539             return error("AcceptToMemoryPool() : nonstandard transaction input");
540
541         // Note: if you modify this code to accept non-standard transactions, then
542         // you should add code here to check that the transaction does a
543         // reasonable number of ECDSA signature verifications.
544
545         int64 nFees = GetValueIn(mapInputs)-GetValueOut();
546         unsigned int nSize = ::GetSerializeSize(*this, SER_NETWORK);
547
548         // Don't accept it if it can't get into a block
549         if (nFees < GetMinFee(1000, true, GMF_RELAY))
550             return error("AcceptToMemoryPool() : not enough fees");
551
552         // Continuously rate-limit free transactions
553         // This mitigates 'penny-flooding' -- sending thousands of free transactions just to
554         // be annoying or make other's transactions take longer to confirm.
555         if (nFees < MIN_RELAY_TX_FEE)
556         {
557             static CCriticalSection cs;
558             static double dFreeCount;
559             static int64 nLastTime;
560             int64 nNow = GetTime();
561
562             CRITICAL_BLOCK(cs)
563             {
564                 // Use an exponentially decaying ~10-minute window:
565                 dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime));
566                 nLastTime = nNow;
567                 // -limitfreerelay unit is thousand-bytes-per-minute
568                 // At default rate it would take over a month to fill 1GB
569                 if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000 && !IsFromMe(*this))
570                     return error("AcceptToMemoryPool() : free transaction rejected by rate limiter");
571                 if (fDebug)
572                     printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
573                 dFreeCount += nSize;
574             }
575         }
576
577         // Check against previous transactions
578         // This is done last to help prevent CPU exhaustion denial-of-service attacks.
579         if (!ConnectInputs(mapInputs, mapUnused, CDiskTxPos(1,1,1), pindexBest, false, false))
580         {
581             return error("AcceptToMemoryPool() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str());
582         }
583     }
584
585     // Store transaction in memory
586     CRITICAL_BLOCK(cs_mapTransactions)
587     {
588         if (ptxOld)
589         {
590             printf("AcceptToMemoryPool() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str());
591             ptxOld->RemoveFromMemoryPool();
592         }
593         AddToMemoryPoolUnchecked();
594     }
595
596     ///// are we sure this is ok when loading transactions or restoring block txes
597     // If updated, erase old tx from wallet
598     if (ptxOld)
599         EraseFromWallets(ptxOld->GetHash());
600
601     printf("AcceptToMemoryPool(): accepted %s\n", hash.ToString().substr(0,10).c_str());
602     return true;
603 }
604
605 bool CTransaction::AcceptToMemoryPool(bool fCheckInputs, bool* pfMissingInputs)
606 {
607     CTxDB txdb("r");
608     return AcceptToMemoryPool(txdb, fCheckInputs, pfMissingInputs);
609 }
610
611 uint64 nPooledTx = 0;
612
613 bool CTransaction::AddToMemoryPoolUnchecked()
614 {
615     printf("AcceptToMemoryPoolUnchecked(): size %lu\n",  mapTransactions.size());
616     // Add to memory pool without checking anything.  Don't call this directly,
617     // call AcceptToMemoryPool to properly check the transaction first.
618     CRITICAL_BLOCK(cs_mapTransactions)
619     {
620         uint256 hash = GetHash();
621         mapTransactions[hash] = *this;
622         for (unsigned int i = 0; i < vin.size(); i++)
623             mapNextTx[vin[i].prevout] = CInPoint(&mapTransactions[hash], i);
624         nTransactionsUpdated++;
625         ++nPooledTx;
626     }
627     return true;
628 }
629
630
631 bool CTransaction::RemoveFromMemoryPool()
632 {
633     // Remove transaction from memory pool
634     CRITICAL_BLOCK(cs_mapTransactions)
635     {
636         uint256 hash = GetHash();
637         if (mapTransactions.count(hash))
638         {
639             BOOST_FOREACH(const CTxIn& txin, vin)
640                 mapNextTx.erase(txin.prevout);
641             mapTransactions.erase(hash);
642             nTransactionsUpdated++;
643             --nPooledTx;
644         }
645     }
646     return true;
647 }
648
649
650
651
652
653
654 int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const
655 {
656     if (hashBlock == 0 || nIndex == -1)
657         return 0;
658
659     // Find the block it claims to be in
660     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
661     if (mi == mapBlockIndex.end())
662         return 0;
663     CBlockIndex* pindex = (*mi).second;
664     if (!pindex || !pindex->IsInMainChain())
665         return 0;
666
667     // Make sure the merkle branch connects to this block
668     if (!fMerkleVerified)
669     {
670         if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot)
671             return 0;
672         fMerkleVerified = true;
673     }
674
675     pindexRet = pindex;
676     return pindexBest->nHeight - pindex->nHeight + 1;
677 }
678
679
680 int CMerkleTx::GetBlocksToMaturity() const
681 {
682     if (!IsCoinBase())
683         return 0;
684     return max(0, (COINBASE_MATURITY+20) - GetDepthInMainChain());
685 }
686
687
688 bool CMerkleTx::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs)
689 {
690     if (fClient)
691     {
692         if (!IsInMainChain() && !ClientConnectInputs())
693             return false;
694         return CTransaction::AcceptToMemoryPool(txdb, false);
695     }
696     else
697     {
698         return CTransaction::AcceptToMemoryPool(txdb, fCheckInputs);
699     }
700 }
701
702 bool CMerkleTx::AcceptToMemoryPool()
703 {
704     CTxDB txdb("r");
705     return AcceptToMemoryPool(txdb);
706 }
707
708
709
710 bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs)
711 {
712     CRITICAL_BLOCK(cs_mapTransactions)
713     {
714         // Add previous supporting transactions first
715         BOOST_FOREACH(CMerkleTx& tx, vtxPrev)
716         {
717             if (!tx.IsCoinBase())
718             {
719                 uint256 hash = tx.GetHash();
720                 if (!mapTransactions.count(hash) && !txdb.ContainsTx(hash))
721                     tx.AcceptToMemoryPool(txdb, fCheckInputs);
722             }
723         }
724         return AcceptToMemoryPool(txdb, fCheckInputs);
725     }
726     return false;
727 }
728
729 bool CWalletTx::AcceptWalletTransaction() 
730 {
731     CTxDB txdb("r");
732     return AcceptWalletTransaction(txdb);
733 }
734
735 int CTxIndex::GetDepthInMainChain() const
736 {
737     // Read block header
738     CBlock block;
739     if (!block.ReadFromDisk(pos.nFile, pos.nBlockPos, false))
740         return 0;
741     // Find the block in the index
742     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash());
743     if (mi == mapBlockIndex.end())
744         return 0;
745     CBlockIndex* pindex = (*mi).second;
746     if (!pindex || !pindex->IsInMainChain())
747         return 0;
748     return 1 + nBestHeight - pindex->nHeight;
749 }
750
751
752
753
754
755
756
757
758
759
760 //////////////////////////////////////////////////////////////////////////////
761 //
762 // CBlock and CBlockIndex
763 //
764
765 bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions)
766 {
767     if (!fReadTransactions)
768     {
769         *this = pindex->GetBlockHeader();
770         return true;
771     }
772     if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions))
773         return false;
774     if (GetHash() != pindex->GetBlockHash())
775         return error("CBlock::ReadFromDisk() : GetHash() doesn't match index");
776     return true;
777 }
778
779 uint256 static GetOrphanRoot(const CBlock* pblock)
780 {
781     // Work back to the first block in the orphan chain
782     while (mapOrphanBlocks.count(pblock->hashPrevBlock))
783         pblock = mapOrphanBlocks[pblock->hashPrevBlock];
784     return pblock->GetHash();
785 }
786
787 int64 static GetBlockValue(int nHeight, int64 nFees)
788 {
789     int64 nSubsidy = 50 * COIN;
790
791     // Subsidy is cut in half every 4 years
792     nSubsidy >>= (nHeight / 210000);
793
794     return nSubsidy + nFees;
795 }
796
797 static const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks
798 static const int64 nTargetSpacing = 10 * 60;
799 static const int64 nInterval = nTargetTimespan / nTargetSpacing;
800
801 //
802 // minimum amount of work that could possibly be required nTime after
803 // minimum work required was nBase
804 //
805 unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
806 {
807     // Testnet has min-difficulty blocks
808     // after nTargetSpacing*2 time between blocks:
809     if (fTestNet && nTime > nTargetSpacing*2)
810         return bnProofOfWorkLimit.GetCompact();
811
812     CBigNum bnResult;
813     bnResult.SetCompact(nBase);
814     while (nTime > 0 && bnResult < bnProofOfWorkLimit)
815     {
816         // Maximum 400% adjustment...
817         bnResult *= 4;
818         // ... in best-case exactly 4-times-normal target time
819         nTime -= nTargetTimespan*4;
820     }
821     if (bnResult > bnProofOfWorkLimit)
822         bnResult = bnProofOfWorkLimit;
823     return bnResult.GetCompact();
824 }
825
826 unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlock *pblock)
827 {
828     unsigned int nProofOfWorkLimit = bnProofOfWorkLimit.GetCompact();
829
830     // Genesis block
831     if (pindexLast == NULL)
832         return nProofOfWorkLimit;
833
834     // Only change once per interval
835     if ((pindexLast->nHeight+1) % nInterval != 0)
836     {
837         // Special rules for testnet after 15 Feb 2012:
838         if (fTestNet && pblock->nTime > 1329264000)
839         {
840             // If the new block's timestamp is more than 2* 10 minutes
841             // then allow mining of a min-difficulty block.
842             if (pblock->nTime - pindexLast->nTime > nTargetSpacing*2)
843                 return nProofOfWorkLimit;
844             else
845             {
846                 // Return the last non-special-min-difficulty-rules-block
847                 const CBlockIndex* pindex = pindexLast;
848                 while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit)
849                     pindex = pindex->pprev;
850                 return pindex->nBits;
851             }
852         }
853
854         return pindexLast->nBits;
855     }
856
857     // Go back by what we want to be 14 days worth of blocks
858     const CBlockIndex* pindexFirst = pindexLast;
859     for (int i = 0; pindexFirst && i < nInterval-1; i++)
860         pindexFirst = pindexFirst->pprev;
861     assert(pindexFirst);
862
863     // Limit adjustment step
864     int64 nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
865     printf("  nActualTimespan = %"PRI64d"  before bounds\n", nActualTimespan);
866     if (nActualTimespan < nTargetTimespan/4)
867         nActualTimespan = nTargetTimespan/4;
868     if (nActualTimespan > nTargetTimespan*4)
869         nActualTimespan = nTargetTimespan*4;
870
871     // Retarget
872     CBigNum bnNew;
873     bnNew.SetCompact(pindexLast->nBits);
874     bnNew *= nActualTimespan;
875     bnNew /= nTargetTimespan;
876
877     if (bnNew > bnProofOfWorkLimit)
878         bnNew = bnProofOfWorkLimit;
879
880     /// debug print
881     printf("GetNextWorkRequired RETARGET\n");
882     printf("nTargetTimespan = %"PRI64d"    nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan);
883     printf("Before: %08x  %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str());
884     printf("After:  %08x  %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str());
885
886     return bnNew.GetCompact();
887 }
888
889 bool CheckProofOfWork(uint256 hash, unsigned int nBits)
890 {
891     CBigNum bnTarget;
892     bnTarget.SetCompact(nBits);
893
894     // Check range
895     if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit)
896         return error("CheckProofOfWork() : nBits below minimum work");
897
898     // Check proof of work matches claimed amount
899     if (hash > bnTarget.getuint256())
900         return error("CheckProofOfWork() : hash doesn't match nBits");
901
902     return true;
903 }
904
905 // Return maximum amount of blocks that other nodes claim to have
906 int GetNumBlocksOfPeers()
907 {
908     return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate());
909 }
910
911 bool IsInitialBlockDownload()
912 {
913     if (pindexBest == NULL || nBestHeight < Checkpoints::GetTotalBlocksEstimate())
914         return true;
915     static int64 nLastUpdate;
916     static CBlockIndex* pindexLastBest;
917     if (pindexBest != pindexLastBest)
918     {
919         pindexLastBest = pindexBest;
920         nLastUpdate = GetTime();
921     }
922     return (GetTime() - nLastUpdate < 10 &&
923             pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60);
924 }
925
926 void static InvalidChainFound(CBlockIndex* pindexNew)
927 {
928     if (pindexNew->bnChainWork > bnBestInvalidWork)
929     {
930         bnBestInvalidWork = pindexNew->bnChainWork;
931         CTxDB().WriteBestInvalidWork(bnBestInvalidWork);
932         MainFrameRepaint();
933     }
934     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());
935     printf("InvalidChainFound:  current best=%s  height=%d  work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());
936     if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
937         printf("InvalidChainFound: WARNING: Displayed transactions may not be correct!  You may need to upgrade, or other nodes may need to upgrade.\n");
938 }
939
940 void CBlock::UpdateTime(const CBlockIndex* pindexPrev)
941 {
942     nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
943
944     // Updating time can change work required on testnet:
945     if (fTestNet)
946         nBits = GetNextWorkRequired(pindexPrev, this);
947 }
948
949
950
951
952
953
954
955
956
957
958
959 bool CTransaction::DisconnectInputs(CTxDB& txdb)
960 {
961     // Relinquish previous transactions' spent pointers
962     if (!IsCoinBase())
963     {
964         BOOST_FOREACH(const CTxIn& txin, vin)
965         {
966             COutPoint prevout = txin.prevout;
967
968             // Get prev txindex from disk
969             CTxIndex txindex;
970             if (!txdb.ReadTxIndex(prevout.hash, txindex))
971                 return error("DisconnectInputs() : ReadTxIndex failed");
972
973             if (prevout.n >= txindex.vSpent.size())
974                 return error("DisconnectInputs() : prevout.n out of range");
975
976             // Mark outpoint as not spent
977             txindex.vSpent[prevout.n].SetNull();
978
979             // Write back
980             if (!txdb.UpdateTxIndex(prevout.hash, txindex))
981                 return error("DisconnectInputs() : UpdateTxIndex failed");
982         }
983     }
984
985     // Remove transaction from index
986     // This can fail if a duplicate of this transaction was in a chain that got
987     // reorganized away. This is only possible if this transaction was completely
988     // spent, so erasing it would be a no-op anway.
989     txdb.EraseTxIndex(*this);
990
991     return true;
992 }
993
994
995 bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTestPool,
996                                bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid)
997 {
998     // FetchInputs can return false either because we just haven't seen some inputs
999     // (in which case the transaction should be stored as an orphan)
1000     // or because the transaction is malformed (in which case the transaction should
1001     // be dropped).  If tx is definitely invalid, fInvalid will be set to true.
1002     fInvalid = false;
1003
1004     if (IsCoinBase())
1005         return true; // Coinbase transactions have no inputs to fetch.
1006
1007     for (unsigned int i = 0; i < vin.size(); i++)
1008     {
1009         COutPoint prevout = vin[i].prevout;
1010         if (inputsRet.count(prevout.hash))
1011             continue; // Got it already
1012
1013         // Read txindex
1014         CTxIndex& txindex = inputsRet[prevout.hash].first;
1015         bool fFound = true;
1016         if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
1017         {
1018             // Get txindex from current proposed changes
1019             txindex = mapTestPool.find(prevout.hash)->second;
1020         }
1021         else
1022         {
1023             // Read txindex from txdb
1024             fFound = txdb.ReadTxIndex(prevout.hash, txindex);
1025         }
1026         if (!fFound && (fBlock || fMiner))
1027             return fMiner ? false : error("FetchInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1028
1029         // Read txPrev
1030         CTransaction& txPrev = inputsRet[prevout.hash].second;
1031         if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
1032         {
1033             // Get prev tx from single transactions in memory
1034             CRITICAL_BLOCK(cs_mapTransactions)
1035             {
1036                 if (!mapTransactions.count(prevout.hash))
1037                     return error("FetchInputs() : %s mapTransactions prev not found %s", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1038                 txPrev = mapTransactions[prevout.hash];
1039             }
1040             if (!fFound)
1041                 txindex.vSpent.resize(txPrev.vout.size());
1042         }
1043         else
1044         {
1045             // Get prev tx from disk
1046             if (!txPrev.ReadFromDisk(txindex.pos))
1047                 return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1048         }
1049     }
1050
1051     // Make sure all prevout.n's are valid:
1052     for (unsigned int i = 0; i < vin.size(); i++)
1053     {
1054         const COutPoint prevout = vin[i].prevout;
1055         assert(inputsRet.count(prevout.hash) != 0);
1056         const CTxIndex& txindex = inputsRet[prevout.hash].first;
1057         const CTransaction& txPrev = inputsRet[prevout.hash].second;
1058         if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1059         {
1060             // Revisit this if/when transaction replacement is implemented and allows
1061             // adding inputs:
1062             fInvalid = true;
1063             return DoS(100, error("FetchInputs() : %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()));
1064         }
1065     }
1066
1067     return true;
1068 }
1069
1070 const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const
1071 {
1072     MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash);
1073     if (mi == inputs.end())
1074         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found");
1075
1076     const CTransaction& txPrev = (mi->second).second;
1077     if (input.prevout.n >= txPrev.vout.size())
1078         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range");
1079
1080     return txPrev.vout[input.prevout.n];
1081 }
1082
1083 int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const
1084 {
1085     if (IsCoinBase())
1086         return 0;
1087
1088     int64 nResult = 0;
1089     for (unsigned int i = 0; i < vin.size(); i++)
1090     {
1091         nResult += GetOutputFor(vin[i], inputs).nValue;
1092     }
1093     return nResult;
1094
1095 }
1096
1097 int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const
1098 {
1099     if (IsCoinBase())
1100         return 0;
1101
1102     int nSigOps = 0;
1103     for (unsigned int i = 0; i < vin.size(); i++)
1104     {
1105         const CTxOut& prevout = GetOutputFor(vin[i], inputs);
1106         if (prevout.scriptPubKey.IsPayToScriptHash())
1107             nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig);
1108     }
1109     return nSigOps;
1110 }
1111
1112 bool CTransaction::ConnectInputs(MapPrevTx inputs,
1113                                  map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1114                                  const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash)
1115 {
1116     // Take over previous transactions' spent pointers
1117     // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
1118     // fMiner is true when called from the internal bitcoin miner
1119     // ... both are false when called from CTransaction::AcceptToMemoryPool
1120     if (!IsCoinBase())
1121     {
1122         int64 nValueIn = 0;
1123         int64 nFees = 0;
1124         for (unsigned int i = 0; i < vin.size(); i++)
1125         {
1126             COutPoint prevout = vin[i].prevout;
1127             assert(inputs.count(prevout.hash) > 0);
1128             CTxIndex& txindex = inputs[prevout.hash].first;
1129             CTransaction& txPrev = inputs[prevout.hash].second;
1130
1131             if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1132                 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()));
1133
1134             // If prev is coinbase, check that it's matured
1135             if (txPrev.IsCoinBase())
1136                 for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev)
1137                     if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
1138                         return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight);
1139
1140             // Check for conflicts (double-spend)
1141             // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
1142             // for an attacker to attempt to split the network.
1143             if (!txindex.vSpent[prevout.n].IsNull())
1144                 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());
1145
1146             // Check for negative or overflow input values
1147             nValueIn += txPrev.vout[prevout.n].nValue;
1148             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1149                 return DoS(100, error("ConnectInputs() : txin values out of range"));
1150
1151             // Skip ECDSA signature verification when connecting blocks (fBlock=true)
1152             // before the last blockchain checkpoint. This is safe because block merkle hashes are
1153             // still computed and checked, and any change will be caught at the next checkpoint.
1154             if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate())))
1155             {
1156                 // Verify signature
1157                 if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0))
1158                 {
1159                     // only during transition phase for P2SH: do not invoke anti-DoS code for
1160                     // potentially old clients relaying bad P2SH transactions
1161                     if (fStrictPayToScriptHash && VerifySignature(txPrev, *this, i, false, 0))
1162                         return error("ConnectInputs() : %s P2SH VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1163
1164                     return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1165                 }
1166             }
1167
1168             // Mark outpoints as spent
1169             txindex.vSpent[prevout.n] = posThisTx;
1170
1171             // Write back
1172             if (fBlock || fMiner)
1173             {
1174                 mapTestPool[prevout.hash] = txindex;
1175             }
1176         }
1177
1178         if (nValueIn < GetValueOut())
1179             return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1180
1181         // Tally transaction fees
1182         int64 nTxFee = nValueIn - GetValueOut();
1183         if (nTxFee < 0)
1184             return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1185         nFees += nTxFee;
1186         if (!MoneyRange(nFees))
1187             return DoS(100, error("ConnectInputs() : nFees out of range"));
1188     }
1189
1190     return true;
1191 }
1192
1193
1194 bool CTransaction::ClientConnectInputs()
1195 {
1196     if (IsCoinBase())
1197         return false;
1198
1199     // Take over previous transactions' spent pointers
1200     CRITICAL_BLOCK(cs_mapTransactions)
1201     {
1202         int64 nValueIn = 0;
1203         for (unsigned int i = 0; i < vin.size(); i++)
1204         {
1205             // Get prev tx from single transactions in memory
1206             COutPoint prevout = vin[i].prevout;
1207             if (!mapTransactions.count(prevout.hash))
1208                 return false;
1209             CTransaction& txPrev = mapTransactions[prevout.hash];
1210
1211             if (prevout.n >= txPrev.vout.size())
1212                 return false;
1213
1214             // Verify signature
1215             if (!VerifySignature(txPrev, *this, i, true, 0))
1216                 return error("ConnectInputs() : VerifySignature failed");
1217
1218             ///// this is redundant with the mapNextTx stuff, not sure which I want to get rid of
1219             ///// this has to go away now that posNext is gone
1220             // // Check for conflicts
1221             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1222             //     return error("ConnectInputs() : prev tx already used");
1223             //
1224             // // Flag outpoints as used
1225             // txPrev.vout[prevout.n].posNext = posThisTx;
1226
1227             nValueIn += txPrev.vout[prevout.n].nValue;
1228
1229             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1230                 return error("ClientConnectInputs() : txin values out of range");
1231         }
1232         if (GetValueOut() > nValueIn)
1233             return false;
1234     }
1235
1236     return true;
1237 }
1238
1239
1240
1241
1242 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1243 {
1244     // Disconnect in reverse order
1245     for (int i = vtx.size()-1; i >= 0; i--)
1246         if (!vtx[i].DisconnectInputs(txdb))
1247             return false;
1248
1249     // Update block index on disk without changing it in memory.
1250     // The memory index structure will be changed after the db commits.
1251     if (pindex->pprev)
1252     {
1253         CDiskBlockIndex blockindexPrev(pindex->pprev);
1254         blockindexPrev.hashNext = 0;
1255         if (!txdb.WriteBlockIndex(blockindexPrev))
1256             return error("DisconnectBlock() : WriteBlockIndex failed");
1257     }
1258
1259     return true;
1260 }
1261
1262 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1263 {
1264     // Check it again in case a previous version let a bad block in
1265     if (!CheckBlock())
1266         return false;
1267
1268     // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1269     // unless those are already completely spent.
1270     // If such overwrites are allowed, coinbases and transactions depending upon those
1271     // can be duplicated to remove the ability to spend the first instance -- even after
1272     // being sent to another address.
1273     // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1274     // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1275     // already refuses previously-known transaction id's entirely.
1276     // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC.
1277     // On testnet it is enabled as of februari 20, 2012, 0:00 UTC.
1278     if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000))
1279     {
1280         BOOST_FOREACH(CTransaction& tx, vtx)
1281         {
1282             CTxIndex txindexOld;
1283             if (txdb.ReadTxIndex(tx.GetHash(), txindexOld))
1284             {
1285                 BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent)
1286                     if (pos.IsNull())
1287                         return false;
1288             }
1289         }
1290     }
1291
1292     // BIP16 didn't become active until Apr 1 2012 (Feb 15 on testnet)
1293     int64 nBIP16SwitchTime = fTestNet ? 1329264000 : 1333238400;
1294     bool fStrictPayToScriptHash = (pindex->nTime >= nBIP16SwitchTime);
1295
1296     //// issue here: it doesn't know the version
1297     unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size());
1298
1299     map<uint256, CTxIndex> mapQueuedChanges;
1300     int64 nFees = 0;
1301     int nSigOps = 0;
1302     BOOST_FOREACH(CTransaction& tx, vtx)
1303     {
1304         nSigOps += tx.GetLegacySigOpCount();
1305         if (nSigOps > MAX_BLOCK_SIGOPS)
1306             return DoS(100, error("ConnectBlock() : too many sigops"));
1307
1308         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1309         nTxPos += ::GetSerializeSize(tx, SER_DISK);
1310
1311         MapPrevTx mapInputs;
1312         if (!tx.IsCoinBase())
1313         {
1314             bool fInvalid;
1315             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1316                 return false;
1317
1318             if (fStrictPayToScriptHash)
1319             {
1320                 // Add in sigops done by pay-to-script-hash inputs;
1321                 // this is to prevent a "rogue miner" from creating
1322                 // an incredibly-expensive-to-validate block.
1323                 nSigOps += tx.GetP2SHSigOpCount(mapInputs);
1324                 if (nSigOps > MAX_BLOCK_SIGOPS)
1325                     return DoS(100, error("ConnectBlock() : too many sigops"));
1326             }
1327
1328             nFees += tx.GetValueIn(mapInputs)-tx.GetValueOut();
1329
1330             if (!tx.ConnectInputs(mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fStrictPayToScriptHash))
1331                 return false;
1332         }
1333
1334         mapQueuedChanges[tx.GetHash()] = CTxIndex(posThisTx, tx.vout.size());
1335     }
1336
1337     // Write queued txindex changes
1338     for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1339     {
1340         if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1341             return error("ConnectBlock() : UpdateTxIndex failed");
1342     }
1343
1344     if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees))
1345         return false;
1346
1347     // Update block index on disk without changing it in memory.
1348     // The memory index structure will be changed after the db commits.
1349     if (pindex->pprev)
1350     {
1351         CDiskBlockIndex blockindexPrev(pindex->pprev);
1352         blockindexPrev.hashNext = pindex->GetBlockHash();
1353         if (!txdb.WriteBlockIndex(blockindexPrev))
1354             return error("ConnectBlock() : WriteBlockIndex failed");
1355     }
1356
1357     // Watch for transactions paying to me
1358     BOOST_FOREACH(CTransaction& tx, vtx)
1359         SyncWithWallets(tx, this, true);
1360
1361     return true;
1362 }
1363
1364 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1365 {
1366     printf("REORGANIZE\n");
1367
1368     // Find the fork
1369     CBlockIndex* pfork = pindexBest;
1370     CBlockIndex* plonger = pindexNew;
1371     while (pfork != plonger)
1372     {
1373         while (plonger->nHeight > pfork->nHeight)
1374             if (!(plonger = plonger->pprev))
1375                 return error("Reorganize() : plonger->pprev is null");
1376         if (pfork == plonger)
1377             break;
1378         if (!(pfork = pfork->pprev))
1379             return error("Reorganize() : pfork->pprev is null");
1380     }
1381
1382     // List of what to disconnect
1383     vector<CBlockIndex*> vDisconnect;
1384     for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1385         vDisconnect.push_back(pindex);
1386
1387     // List of what to connect
1388     vector<CBlockIndex*> vConnect;
1389     for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1390         vConnect.push_back(pindex);
1391     reverse(vConnect.begin(), vConnect.end());
1392
1393     printf("REORGANIZE: Disconnect %i blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str());
1394     printf("REORGANIZE: Connect %i blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str());
1395
1396     // Disconnect shorter branch
1397     vector<CTransaction> vResurrect;
1398     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1399     {
1400         CBlock block;
1401         if (!block.ReadFromDisk(pindex))
1402             return error("Reorganize() : ReadFromDisk for disconnect failed");
1403         if (!block.DisconnectBlock(txdb, pindex))
1404             return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1405
1406         // Queue memory transactions to resurrect
1407         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1408             if (!tx.IsCoinBase())
1409                 vResurrect.push_back(tx);
1410     }
1411
1412     // Connect longer branch
1413     vector<CTransaction> vDelete;
1414     for (unsigned int i = 0; i < vConnect.size(); i++)
1415     {
1416         CBlockIndex* pindex = vConnect[i];
1417         CBlock block;
1418         if (!block.ReadFromDisk(pindex))
1419             return error("Reorganize() : ReadFromDisk for connect failed");
1420         if (!block.ConnectBlock(txdb, pindex))
1421         {
1422             // Invalid block
1423             txdb.TxnAbort();
1424             return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1425         }
1426
1427         // Queue memory transactions to delete
1428         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1429             vDelete.push_back(tx);
1430     }
1431     if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1432         return error("Reorganize() : WriteHashBestChain failed");
1433
1434     // Make sure it's successfully written to disk before changing memory structure
1435     if (!txdb.TxnCommit())
1436         return error("Reorganize() : TxnCommit failed");
1437
1438     // Disconnect shorter branch
1439     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1440         if (pindex->pprev)
1441             pindex->pprev->pnext = NULL;
1442
1443     // Connect longer branch
1444     BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1445         if (pindex->pprev)
1446             pindex->pprev->pnext = pindex;
1447
1448     // Resurrect memory transactions that were in the disconnected branch
1449     BOOST_FOREACH(CTransaction& tx, vResurrect)
1450         tx.AcceptToMemoryPool(txdb, false);
1451
1452     // Delete redundant memory transactions that are in the connected branch
1453     BOOST_FOREACH(CTransaction& tx, vDelete)
1454         tx.RemoveFromMemoryPool();
1455
1456     printf("REORGANIZE: done\n");
1457
1458     return true;
1459 }
1460
1461
1462 static void
1463 runCommand(std::string strCommand)
1464 {
1465     int nErr = ::system(strCommand.c_str());
1466     if (nErr)
1467         printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr);
1468 }
1469
1470 // Called from inside SetBestChain: attaches a block to the new best chain being built
1471 bool CBlock::SetBestChainInner(CTxDB& txdb, CBlockIndex *pindexNew)
1472 {
1473     uint256 hash = GetHash();
1474
1475     // Adding to current best branch
1476     if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1477     {
1478         txdb.TxnAbort();
1479         InvalidChainFound(pindexNew);
1480         return false;
1481     }
1482     if (!txdb.TxnCommit())
1483         return error("SetBestChain() : TxnCommit failed");
1484
1485     // Add to current best branch
1486     pindexNew->pprev->pnext = pindexNew;
1487
1488     // Delete redundant memory transactions
1489     BOOST_FOREACH(CTransaction& tx, vtx)
1490         tx.RemoveFromMemoryPool();
1491
1492     return true;
1493 }
1494
1495 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1496 {
1497     uint256 hash = GetHash();
1498
1499     txdb.TxnBegin();
1500     if (pindexGenesisBlock == NULL && hash == hashGenesisBlock)
1501     {
1502         txdb.WriteHashBestChain(hash);
1503         if (!txdb.TxnCommit())
1504             return error("SetBestChain() : TxnCommit failed");
1505         pindexGenesisBlock = pindexNew;
1506     }
1507     else if (hashPrevBlock == hashBestChain)
1508     {
1509         if (!SetBestChainInner(txdb, pindexNew))
1510             return error("SetBestChain() : SetBestChainInner failed");
1511     }
1512     else
1513     {
1514         // the first block in the new chain that will cause it to become the new best chain
1515         CBlockIndex *pindexIntermediate = pindexNew;
1516
1517         // list of blocks that need to be connected afterwards
1518         std::vector<CBlockIndex*> vpindexSecondary;
1519
1520         // Reorganize is costly in terms of db load, as it works in a single db transaction.
1521         // Try to limit how much needs to be done inside
1522         while (pindexIntermediate->pprev && pindexIntermediate->pprev->bnChainWork > pindexBest->bnChainWork)
1523         {
1524             vpindexSecondary.push_back(pindexIntermediate);
1525             pindexIntermediate = pindexIntermediate->pprev;
1526         }
1527
1528         if (!vpindexSecondary.empty())
1529             printf("Postponing %i reconnects\n", vpindexSecondary.size());
1530
1531         // Switch to new best branch
1532         if (!Reorganize(txdb, pindexIntermediate))
1533         {
1534             txdb.TxnAbort();
1535             InvalidChainFound(pindexNew);
1536             return error("SetBestChain() : Reorganize failed");
1537         }
1538
1539         // Connect futher blocks
1540         BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary)
1541         {
1542             CBlock block;
1543             if (!block.ReadFromDisk(pindex))
1544             {
1545                 printf("SetBestChain() : ReadFromDisk failed\n");
1546                 break;
1547             }
1548             txdb.TxnBegin();
1549             // errors now are not fatal, we still did a reorganisation to a new chain in a valid way
1550             if (!block.SetBestChainInner(txdb, pindex))
1551                 break;
1552         }
1553     }
1554
1555     // Update best block in wallet (so we can detect restored wallets)
1556     bool fIsInitialDownload = IsInitialBlockDownload();
1557     if (!fIsInitialDownload)
1558     {
1559         const CBlockLocator locator(pindexNew);
1560         ::SetBestChain(locator);
1561     }
1562
1563     // New best block
1564     hashBestChain = hash;
1565     pindexBest = pindexNew;
1566     nBestHeight = pindexBest->nHeight;
1567     bnBestChainWork = pindexNew->bnChainWork;
1568     nTimeBestReceived = GetTime();
1569     nTransactionsUpdated++;
1570     printf("SetBestChain: new best=%s  height=%d  work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());
1571
1572     std::string strCmd = GetArg("-blocknotify", "");
1573
1574     if (!fIsInitialDownload && !strCmd.empty())
1575     {
1576         boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
1577         boost::thread t(runCommand, strCmd); // thread runs free
1578     }
1579
1580     return true;
1581 }
1582
1583
1584 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
1585 {
1586     // Check for duplicate
1587     uint256 hash = GetHash();
1588     if (mapBlockIndex.count(hash))
1589         return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
1590
1591     // Construct new block index object
1592     CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
1593     if (!pindexNew)
1594         return error("AddToBlockIndex() : new CBlockIndex failed");
1595     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
1596     pindexNew->phashBlock = &((*mi).first);
1597     map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
1598     if (miPrev != mapBlockIndex.end())
1599     {
1600         pindexNew->pprev = (*miPrev).second;
1601         pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
1602     }
1603     pindexNew->bnChainWork = (pindexNew->pprev ? pindexNew->pprev->bnChainWork : 0) + pindexNew->GetBlockWork();
1604
1605     CTxDB txdb;
1606     txdb.TxnBegin();
1607     txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
1608     if (!txdb.TxnCommit())
1609         return false;
1610
1611     // New best
1612     if (pindexNew->bnChainWork > bnBestChainWork)
1613         if (!SetBestChain(txdb, pindexNew))
1614             return false;
1615
1616     txdb.Close();
1617
1618     if (pindexNew == pindexBest)
1619     {
1620         // Notify UI to display prev block's coinbase if it was ours
1621         static uint256 hashPrevBestCoinBase;
1622         UpdatedTransaction(hashPrevBestCoinBase);
1623         hashPrevBestCoinBase = vtx[0].GetHash();
1624     }
1625
1626     MainFrameRepaint();
1627     return true;
1628 }
1629
1630
1631
1632
1633 bool CBlock::CheckBlock() const
1634 {
1635     // These are checks that are independent of context
1636     // that can be verified before saving an orphan block.
1637
1638     // Size limits
1639     if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
1640         return DoS(100, error("CheckBlock() : size limits failed"));
1641
1642     // Check proof of work matches claimed amount
1643     if (!CheckProofOfWork(GetHash(), nBits))
1644         return DoS(50, error("CheckBlock() : proof of work failed"));
1645
1646     // Check timestamp
1647     if (GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60)
1648         return error("CheckBlock() : block timestamp too far in the future");
1649
1650     // First transaction must be coinbase, the rest must not be
1651     if (vtx.empty() || !vtx[0].IsCoinBase())
1652         return DoS(100, error("CheckBlock() : first tx is not coinbase"));
1653     for (unsigned int i = 1; i < vtx.size(); i++)
1654         if (vtx[i].IsCoinBase())
1655             return DoS(100, error("CheckBlock() : more than one coinbase"));
1656
1657     // Check transactions
1658     BOOST_FOREACH(const CTransaction& tx, vtx)
1659         if (!tx.CheckTransaction())
1660             return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
1661
1662     int nSigOps = 0;
1663     BOOST_FOREACH(const CTransaction& tx, vtx)
1664     {
1665         nSigOps += tx.GetLegacySigOpCount();
1666     }
1667     if (nSigOps > MAX_BLOCK_SIGOPS)
1668         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
1669
1670     // Check merkleroot
1671     if (hashMerkleRoot != BuildMerkleTree())
1672         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
1673
1674     return true;
1675 }
1676
1677 bool CBlock::AcceptBlock()
1678 {
1679     // Check for duplicate
1680     uint256 hash = GetHash();
1681     if (mapBlockIndex.count(hash))
1682         return error("AcceptBlock() : block already in mapBlockIndex");
1683
1684     // Get prev block index
1685     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
1686     if (mi == mapBlockIndex.end())
1687         return DoS(10, error("AcceptBlock() : prev block not found"));
1688     CBlockIndex* pindexPrev = (*mi).second;
1689     int nHeight = pindexPrev->nHeight+1;
1690
1691     // Check proof of work
1692     if (nBits != GetNextWorkRequired(pindexPrev, this))
1693         return DoS(100, error("AcceptBlock() : incorrect proof of work"));
1694
1695     // Check timestamp against prev
1696     if (GetBlockTime() <= pindexPrev->GetMedianTimePast())
1697         return error("AcceptBlock() : block's timestamp is too early");
1698
1699     // Check that all transactions are finalized
1700     BOOST_FOREACH(const CTransaction& tx, vtx)
1701         if (!tx.IsFinal(nHeight, GetBlockTime()))
1702             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
1703
1704     // Check that the block chain matches the known block chain up to a checkpoint
1705     if (!Checkpoints::CheckBlock(nHeight, hash))
1706         return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight));
1707
1708     // Write block to history file
1709     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK)))
1710         return error("AcceptBlock() : out of disk space");
1711     unsigned int nFile = -1;
1712     unsigned int nBlockPos = 0;
1713     if (!WriteToDisk(nFile, nBlockPos))
1714         return error("AcceptBlock() : WriteToDisk failed");
1715     if (!AddToBlockIndex(nFile, nBlockPos))
1716         return error("AcceptBlock() : AddToBlockIndex failed");
1717
1718     // Relay inventory, but don't relay old inventory during initial block download
1719     int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
1720     if (hashBestChain == hash)
1721         CRITICAL_BLOCK(cs_vNodes)
1722             BOOST_FOREACH(CNode* pnode, vNodes)
1723                 if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
1724                     pnode->PushInventory(CInv(MSG_BLOCK, hash));
1725
1726     return true;
1727 }
1728
1729 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
1730 {
1731     // Check for duplicate
1732     uint256 hash = pblock->GetHash();
1733     if (mapBlockIndex.count(hash))
1734         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
1735     if (mapOrphanBlocks.count(hash))
1736         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
1737
1738     // Preliminary checks
1739     if (!pblock->CheckBlock())
1740         return error("ProcessBlock() : CheckBlock FAILED");
1741
1742     CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex);
1743     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain)
1744     {
1745         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
1746         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
1747         if (deltaTime < 0)
1748         {
1749             if (pfrom)
1750                 pfrom->Misbehaving(100);
1751             return error("ProcessBlock() : block with timestamp before last checkpoint");
1752         }
1753         CBigNum bnNewBlock;
1754         bnNewBlock.SetCompact(pblock->nBits);
1755         CBigNum bnRequired;
1756         bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime));
1757         if (bnNewBlock > bnRequired)
1758         {
1759             if (pfrom)
1760                 pfrom->Misbehaving(100);
1761             return error("ProcessBlock() : block with too little proof-of-work");
1762         }
1763     }
1764
1765
1766     // If don't already have its previous block, shunt it off to holding area until we get it
1767     if (!mapBlockIndex.count(pblock->hashPrevBlock))
1768     {
1769         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
1770         CBlock* pblock2 = new CBlock(*pblock);
1771         mapOrphanBlocks.insert(make_pair(hash, pblock2));
1772         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
1773
1774         // Ask this guy to fill in what we're missing
1775         if (pfrom)
1776             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
1777         return true;
1778     }
1779
1780     // Store to disk
1781     if (!pblock->AcceptBlock())
1782         return error("ProcessBlock() : AcceptBlock FAILED");
1783
1784     // Recursively process any orphan blocks that depended on this one
1785     vector<uint256> vWorkQueue;
1786     vWorkQueue.push_back(hash);
1787     for (unsigned int i = 0; i < vWorkQueue.size(); i++)
1788     {
1789         uint256 hashPrev = vWorkQueue[i];
1790         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
1791              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
1792              ++mi)
1793         {
1794             CBlock* pblockOrphan = (*mi).second;
1795             if (pblockOrphan->AcceptBlock())
1796                 vWorkQueue.push_back(pblockOrphan->GetHash());
1797             mapOrphanBlocks.erase(pblockOrphan->GetHash());
1798             delete pblockOrphan;
1799         }
1800         mapOrphanBlocksByPrev.erase(hashPrev);
1801     }
1802
1803     printf("ProcessBlock: ACCEPTED\n");
1804     return true;
1805 }
1806
1807
1808
1809
1810
1811
1812
1813
1814 bool CheckDiskSpace(uint64 nAdditionalBytes)
1815 {
1816     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
1817
1818     // Check for 15MB because database could create another 10MB log file at any time
1819     if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes)
1820     {
1821         fShutdown = true;
1822         string strMessage = _("Warning: Disk space is low  ");
1823         strMiscWarning = strMessage;
1824         printf("*** %s\n", strMessage.c_str());
1825         ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);
1826         CreateThread(Shutdown, NULL);
1827         return false;
1828     }
1829     return true;
1830 }
1831
1832 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
1833 {
1834     if (nFile == -1)
1835         return NULL;
1836     FILE* file = fopen(strprintf("%s/blk%04d.dat", GetDataDir().c_str(), nFile).c_str(), pszMode);
1837     if (!file)
1838         return NULL;
1839     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
1840     {
1841         if (fseek(file, nBlockPos, SEEK_SET) != 0)
1842         {
1843             fclose(file);
1844             return NULL;
1845         }
1846     }
1847     return file;
1848 }
1849
1850 static unsigned int nCurrentBlockFile = 1;
1851
1852 FILE* AppendBlockFile(unsigned int& nFileRet)
1853 {
1854     nFileRet = 0;
1855     loop
1856     {
1857         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
1858         if (!file)
1859             return NULL;
1860         if (fseek(file, 0, SEEK_END) != 0)
1861             return NULL;
1862         // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
1863         if (ftell(file) < 0x7F000000 - MAX_SIZE)
1864         {
1865             nFileRet = nCurrentBlockFile;
1866             return file;
1867         }
1868         fclose(file);
1869         nCurrentBlockFile++;
1870     }
1871 }
1872
1873 bool LoadBlockIndex(bool fAllowNew)
1874 {
1875     if (fTestNet)
1876     {
1877         hashGenesisBlock = uint256("0x00000007199508e34a9ff81e6ec0c477a4cccff2a4767a8eee39c11db367b008");
1878         bnProofOfWorkLimit = CBigNum(~uint256(0) >> 28);
1879         pchMessageStart[0] = 0xfa;
1880         pchMessageStart[1] = 0xbf;
1881         pchMessageStart[2] = 0xb5;
1882         pchMessageStart[3] = 0xda;
1883     }
1884
1885     //
1886     // Load block index
1887     //
1888     CTxDB txdb("cr");
1889     if (!txdb.LoadBlockIndex())
1890         return false;
1891     txdb.Close();
1892
1893     //
1894     // Init with genesis block
1895     //
1896     if (mapBlockIndex.empty())
1897     {
1898         if (!fAllowNew)
1899             return false;
1900
1901         // Genesis Block:
1902         // CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
1903         //   CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
1904         //     CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
1905         //     CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
1906         //   vMerkleTree: 4a5e1e
1907
1908         // Genesis block
1909         const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
1910         CTransaction txNew;
1911         txNew.vin.resize(1);
1912         txNew.vout.resize(1);
1913         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
1914         txNew.vout[0].nValue = 50 * COIN;
1915         txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
1916         CBlock block;
1917         block.vtx.push_back(txNew);
1918         block.hashPrevBlock = 0;
1919         block.hashMerkleRoot = block.BuildMerkleTree();
1920         block.nVersion = 1;
1921         block.nTime    = 1231006505;
1922         block.nBits    = 0x1d00ffff;
1923         block.nNonce   = 2083236893;
1924
1925         if (fTestNet)
1926         {
1927             block.nTime    = 1296688602;
1928             block.nBits    = 0x1d07fff8;
1929             block.nNonce   = 384568319;
1930         }
1931
1932         //// debug print
1933         printf("%s\n", block.GetHash().ToString().c_str());
1934         printf("%s\n", hashGenesisBlock.ToString().c_str());
1935         printf("%s\n", block.hashMerkleRoot.ToString().c_str());
1936         assert(block.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));
1937         block.print();
1938         assert(block.GetHash() == hashGenesisBlock);
1939
1940         // Start new block file
1941         unsigned int nFile;
1942         unsigned int nBlockPos;
1943         if (!block.WriteToDisk(nFile, nBlockPos))
1944             return error("LoadBlockIndex() : writing genesis block to disk failed");
1945         if (!block.AddToBlockIndex(nFile, nBlockPos))
1946             return error("LoadBlockIndex() : genesis block not accepted");
1947     }
1948
1949     return true;
1950 }
1951
1952
1953
1954 void PrintBlockTree()
1955 {
1956     // precompute tree structure
1957     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
1958     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
1959     {
1960         CBlockIndex* pindex = (*mi).second;
1961         mapNext[pindex->pprev].push_back(pindex);
1962         // test
1963         //while (rand() % 3 == 0)
1964         //    mapNext[pindex->pprev].push_back(pindex);
1965     }
1966
1967     vector<pair<int, CBlockIndex*> > vStack;
1968     vStack.push_back(make_pair(0, pindexGenesisBlock));
1969
1970     int nPrevCol = 0;
1971     while (!vStack.empty())
1972     {
1973         int nCol = vStack.back().first;
1974         CBlockIndex* pindex = vStack.back().second;
1975         vStack.pop_back();
1976
1977         // print split or gap
1978         if (nCol > nPrevCol)
1979         {
1980             for (int i = 0; i < nCol-1; i++)
1981                 printf("| ");
1982             printf("|\\\n");
1983         }
1984         else if (nCol < nPrevCol)
1985         {
1986             for (int i = 0; i < nCol; i++)
1987                 printf("| ");
1988             printf("|\n");
1989        }
1990         nPrevCol = nCol;
1991
1992         // print columns
1993         for (int i = 0; i < nCol; i++)
1994             printf("| ");
1995
1996         // print item
1997         CBlock block;
1998         block.ReadFromDisk(pindex);
1999         printf("%d (%u,%u) %s  %s  tx %d",
2000             pindex->nHeight,
2001             pindex->nFile,
2002             pindex->nBlockPos,
2003             block.GetHash().ToString().substr(0,20).c_str(),
2004             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
2005             block.vtx.size());
2006
2007         PrintWallets(block);
2008
2009         // put the main timechain first
2010         vector<CBlockIndex*>& vNext = mapNext[pindex];
2011         for (unsigned int i = 0; i < vNext.size(); i++)
2012         {
2013             if (vNext[i]->pnext)
2014             {
2015                 swap(vNext[0], vNext[i]);
2016                 break;
2017             }
2018         }
2019
2020         // iterate children
2021         for (unsigned int i = 0; i < vNext.size(); i++)
2022             vStack.push_back(make_pair(nCol+i, vNext[i]));
2023     }
2024 }
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035 //////////////////////////////////////////////////////////////////////////////
2036 //
2037 // CAlert
2038 //
2039
2040 map<uint256, CAlert> mapAlerts;
2041 CCriticalSection cs_mapAlerts;
2042
2043 string GetWarnings(string strFor)
2044 {
2045     int nPriority = 0;
2046     string strStatusBar;
2047     string strRPC;
2048     if (GetBoolArg("-testsafemode"))
2049         strRPC = "test";
2050
2051     // Misc warnings like out of disk space and clock is wrong
2052     if (strMiscWarning != "")
2053     {
2054         nPriority = 1000;
2055         strStatusBar = strMiscWarning;
2056     }
2057
2058     // Longer invalid proof-of-work chain
2059     if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
2060     {
2061         nPriority = 2000;
2062         strStatusBar = strRPC = "WARNING: Displayed transactions may not be correct!  You may need to upgrade, or other nodes may need to upgrade.";
2063     }
2064
2065     // Alerts
2066     CRITICAL_BLOCK(cs_mapAlerts)
2067     {
2068         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2069         {
2070             const CAlert& alert = item.second;
2071             if (alert.AppliesToMe() && alert.nPriority > nPriority)
2072             {
2073                 nPriority = alert.nPriority;
2074                 strStatusBar = alert.strStatusBar;
2075             }
2076         }
2077     }
2078
2079     if (strFor == "statusbar")
2080         return strStatusBar;
2081     else if (strFor == "rpc")
2082         return strRPC;
2083     assert(!"GetWarnings() : invalid parameter");
2084     return "error";
2085 }
2086
2087 bool CAlert::ProcessAlert()
2088 {
2089     if (!CheckSignature())
2090         return false;
2091     if (!IsInEffect())
2092         return false;
2093
2094     CRITICAL_BLOCK(cs_mapAlerts)
2095     {
2096         // Cancel previous alerts
2097         for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();)
2098         {
2099             const CAlert& alert = (*mi).second;
2100             if (Cancels(alert))
2101             {
2102                 printf("cancelling alert %d\n", alert.nID);
2103                 mapAlerts.erase(mi++);
2104             }
2105             else if (!alert.IsInEffect())
2106             {
2107                 printf("expiring alert %d\n", alert.nID);
2108                 mapAlerts.erase(mi++);
2109             }
2110             else
2111                 mi++;
2112         }
2113
2114         // Check if this alert has been cancelled
2115         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2116         {
2117             const CAlert& alert = item.second;
2118             if (alert.Cancels(*this))
2119             {
2120                 printf("alert already cancelled by %d\n", alert.nID);
2121                 return false;
2122             }
2123         }
2124
2125         // Add to mapAlerts
2126         mapAlerts.insert(make_pair(GetHash(), *this));
2127     }
2128
2129     printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe());
2130     MainFrameRepaint();
2131     return true;
2132 }
2133
2134
2135
2136
2137
2138
2139
2140
2141 //////////////////////////////////////////////////////////////////////////////
2142 //
2143 // Messages
2144 //
2145
2146
2147 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
2148 {
2149     switch (inv.type)
2150     {
2151     case MSG_TX:
2152         {
2153         bool txInMap = false;
2154         CRITICAL_BLOCK(cs_mapTransactions)
2155         {
2156             txInMap = (mapTransactions.count(inv.hash) != 0);
2157         }
2158         return txInMap ||
2159                mapOrphanTransactions.count(inv.hash) ||
2160                txdb.ContainsTx(inv.hash);
2161         }
2162
2163     case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
2164     }
2165     // Don't know what it is, just say we already got one
2166     return true;
2167 }
2168
2169
2170
2171
2172 // The message start string is designed to be unlikely to occur in normal data.
2173 // The characters are rarely used upper ascii, not valid as UTF-8, and produce
2174 // a large 4-byte int at any alignment.
2175 unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 };
2176
2177
2178 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
2179 {
2180     static map<CService, vector<unsigned char> > mapReuseKey;
2181     RandAddSeedPerfmon();
2182     if (fDebug) {
2183         printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
2184         printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size());
2185     }
2186     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
2187     {
2188         printf("dropmessagestest DROPPING RECV MESSAGE\n");
2189         return true;
2190     }
2191
2192
2193
2194
2195
2196     if (strCommand == "version")
2197     {
2198         // Each connection can only send one version message
2199         if (pfrom->nVersion != 0)
2200         {
2201             pfrom->Misbehaving(1);
2202             return false;
2203         }
2204
2205         int64 nTime;
2206         CAddress addrMe;
2207         CAddress addrFrom;
2208         uint64 nNonce = 1;
2209         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
2210         if (pfrom->nVersion < 209)
2211         {
2212             // Since February 20, 2012, the protocol is initiated at version 209,
2213             // and earlier versions are no longer supported
2214             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
2215             pfrom->fDisconnect = true;
2216             return false;
2217         }
2218
2219         if (pfrom->nVersion == 10300)
2220             pfrom->nVersion = 300;
2221         if (!vRecv.empty())
2222             vRecv >> addrFrom >> nNonce;
2223         if (!vRecv.empty())
2224             vRecv >> pfrom->strSubVer;
2225         if (!vRecv.empty())
2226             vRecv >> pfrom->nStartingHeight;
2227
2228         // Disconnect if we connected to ourself
2229         if (nNonce == nLocalHostNonce && nNonce > 1)
2230         {
2231             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
2232             pfrom->fDisconnect = true;
2233             return true;
2234         }
2235
2236         // Be shy and don't send version until we hear
2237         if (pfrom->fInbound)
2238             pfrom->PushVersion();
2239
2240         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
2241
2242         AddTimeData(pfrom->addr, nTime);
2243
2244         // Change version
2245         pfrom->PushMessage("verack");
2246         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2247
2248         if (!pfrom->fInbound)
2249         {
2250             // Advertise our address
2251             if (!fNoListen && !fUseProxy && addrLocalHost.IsRoutable() &&
2252                 !IsInitialBlockDownload())
2253             {
2254                 CAddress addr(addrLocalHost);
2255                 addr.nTime = GetAdjustedTime();
2256                 pfrom->PushAddress(addr);
2257             }
2258
2259             // Get recent addresses
2260             if (pfrom->nVersion >= 31402 || addrman.size() < 1000)
2261             {
2262                 pfrom->PushMessage("getaddr");
2263                 pfrom->fGetAddr = true;
2264             }
2265             addrman.Good(pfrom->addr);
2266         } else {
2267             if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
2268             {
2269                 addrman.Add(addrFrom, addrFrom);
2270                 addrman.Good(addrFrom);
2271             }
2272         }
2273
2274         // Ask the first connected node for block updates
2275         static int nAskedForBlocks = 0;
2276         if (!pfrom->fClient &&
2277             (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
2278              (nAskedForBlocks < 1 || vNodes.size() <= 1))
2279         {
2280             nAskedForBlocks++;
2281             pfrom->PushGetBlocks(pindexBest, uint256(0));
2282         }
2283
2284         // Relay alerts
2285         CRITICAL_BLOCK(cs_mapAlerts)
2286             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2287                 item.second.RelayTo(pfrom);
2288
2289         pfrom->fSuccessfullyConnected = true;
2290
2291         printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight);
2292
2293         cPeerBlockCounts.input(pfrom->nStartingHeight);
2294     }
2295
2296
2297     else if (pfrom->nVersion == 0)
2298     {
2299         // Must have a version message before anything else
2300         pfrom->Misbehaving(1);
2301         return false;
2302     }
2303
2304
2305     else if (strCommand == "verack")
2306     {
2307         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2308     }
2309
2310
2311     else if (strCommand == "addr")
2312     {
2313         vector<CAddress> vAddr;
2314         vRecv >> vAddr;
2315
2316         // Don't want addr from older versions unless seeding
2317         if (pfrom->nVersion < 31402 && addrman.size() > 1000)
2318             return true;
2319         if (vAddr.size() > 1000)
2320         {
2321             pfrom->Misbehaving(20);
2322             return error("message addr size() = %d", vAddr.size());
2323         }
2324
2325         // Store the new addresses
2326         int64 nNow = GetAdjustedTime();
2327         int64 nSince = nNow - 10 * 60;
2328         BOOST_FOREACH(CAddress& addr, vAddr)
2329         {
2330             if (fShutdown)
2331                 return true;
2332             // ignore IPv6 for now, since it isn't implemented anyway
2333             if (!addr.IsIPv4())
2334                 continue;
2335             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
2336                 addr.nTime = nNow - 5 * 24 * 60 * 60;
2337             pfrom->AddAddressKnown(addr);
2338             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
2339             {
2340                 // Relay to a limited number of other nodes
2341                 CRITICAL_BLOCK(cs_vNodes)
2342                 {
2343                     // Use deterministic randomness to send to the same nodes for 24 hours
2344                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
2345                     static uint256 hashSalt;
2346                     if (hashSalt == 0)
2347                         RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2348                     int64 hashAddr = addr.GetHash();
2349                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
2350                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
2351                     multimap<uint256, CNode*> mapMix;
2352                     BOOST_FOREACH(CNode* pnode, vNodes)
2353                     {
2354                         if (pnode->nVersion < 31402)
2355                             continue;
2356                         unsigned int nPointer;
2357                         memcpy(&nPointer, &pnode, sizeof(nPointer));
2358                         uint256 hashKey = hashRand ^ nPointer;
2359                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
2360                         mapMix.insert(make_pair(hashKey, pnode));
2361                     }
2362                     int nRelayNodes = 2;
2363                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
2364                         ((*mi).second)->PushAddress(addr);
2365                 }
2366             }
2367         }
2368         addrman.Add(vAddr, pfrom->addr, 2 * 60 * 60);
2369         if (vAddr.size() < 1000)
2370             pfrom->fGetAddr = false;
2371     }
2372
2373
2374     else if (strCommand == "inv")
2375     {
2376         vector<CInv> vInv;
2377         vRecv >> vInv;
2378         if (vInv.size() > 50000)
2379         {
2380             pfrom->Misbehaving(20);
2381             return error("message inv size() = %d", vInv.size());
2382         }
2383
2384         CTxDB txdb("r");
2385         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
2386         {
2387             const CInv &inv = vInv[nInv];
2388
2389             if (fShutdown)
2390                 return true;
2391             pfrom->AddInventoryKnown(inv);
2392
2393             bool fAlreadyHave = AlreadyHave(txdb, inv);
2394             if (fDebug)
2395                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
2396
2397             // Always request the last block in an inv bundle (even if we already have it), as it is the
2398             // trigger for the other side to send further invs. If we are stuck on a (very long) side chain,
2399             // this is necessary to connect earlier received orphan blocks to the chain again.
2400             if (!fAlreadyHave || (inv.type == MSG_BLOCK && nInv==vInv.size()-1))
2401                 pfrom->AskFor(inv);
2402             if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash))
2403                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
2404
2405             // Track requests for our stuff
2406             Inventory(inv.hash);
2407         }
2408     }
2409
2410
2411     else if (strCommand == "getdata")
2412     {
2413         vector<CInv> vInv;
2414         vRecv >> vInv;
2415         if (vInv.size() > 50000)
2416         {
2417             pfrom->Misbehaving(20);
2418             return error("message getdata size() = %d", vInv.size());
2419         }
2420
2421         BOOST_FOREACH(const CInv& inv, vInv)
2422         {
2423             if (fShutdown)
2424                 return true;
2425             printf("received getdata for: %s\n", inv.ToString().c_str());
2426
2427             if (inv.type == MSG_BLOCK)
2428             {
2429                 // Send block from disk
2430                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
2431                 if (mi != mapBlockIndex.end())
2432                 {
2433                     CBlock block;
2434                     block.ReadFromDisk((*mi).second);
2435                     pfrom->PushMessage("block", block);
2436
2437                     // Trigger them to send a getblocks request for the next batch of inventory
2438                     if (inv.hash == pfrom->hashContinue)
2439                     {
2440                         // Bypass PushInventory, this must send even if redundant,
2441                         // and we want it right after the last block so they don't
2442                         // wait for other stuff first.
2443                         vector<CInv> vInv;
2444                         vInv.push_back(CInv(MSG_BLOCK, hashBestChain));
2445                         pfrom->PushMessage("inv", vInv);
2446                         pfrom->hashContinue = 0;
2447                     }
2448                 }
2449             }
2450             else if (inv.IsKnownType())
2451             {
2452                 // Send stream from relay memory
2453                 CRITICAL_BLOCK(cs_mapRelay)
2454                 {
2455                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
2456                     if (mi != mapRelay.end())
2457                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
2458                 }
2459             }
2460
2461             // Track requests for our stuff
2462             Inventory(inv.hash);
2463         }
2464     }
2465
2466
2467     else if (strCommand == "getblocks")
2468     {
2469         CBlockLocator locator;
2470         uint256 hashStop;
2471         vRecv >> locator >> hashStop;
2472
2473         // Find the last block the caller has in the main chain
2474         CBlockIndex* pindex = locator.GetBlockIndex();
2475
2476         // Send the rest of the chain
2477         if (pindex)
2478             pindex = pindex->pnext;
2479         int nLimit = 500 + locator.GetDistanceBack();
2480         unsigned int nBytes = 0;
2481         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2482         for (; pindex; pindex = pindex->pnext)
2483         {
2484             if (pindex->GetBlockHash() == hashStop)
2485             {
2486                 printf("  getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2487                 break;
2488             }
2489             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
2490             CBlock block;
2491             block.ReadFromDisk(pindex, true);
2492             nBytes += block.GetSerializeSize(SER_NETWORK);
2493             if (--nLimit <= 0 || nBytes >= SendBufferSize()/2)
2494             {
2495                 // When this block is requested, we'll send an inv that'll make them
2496                 // getblocks the next batch of inventory.
2497                 printf("  getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2498                 pfrom->hashContinue = pindex->GetBlockHash();
2499                 break;
2500             }
2501         }
2502     }
2503
2504
2505     else if (strCommand == "getheaders")
2506     {
2507         CBlockLocator locator;
2508         uint256 hashStop;
2509         vRecv >> locator >> hashStop;
2510
2511         CBlockIndex* pindex = NULL;
2512         if (locator.IsNull())
2513         {
2514             // If locator is null, return the hashStop block
2515             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
2516             if (mi == mapBlockIndex.end())
2517                 return true;
2518             pindex = (*mi).second;
2519         }
2520         else
2521         {
2522             // Find the last block the caller has in the main chain
2523             pindex = locator.GetBlockIndex();
2524             if (pindex)
2525                 pindex = pindex->pnext;
2526         }
2527
2528         vector<CBlock> vHeaders;
2529         int nLimit = 2000 + locator.GetDistanceBack();
2530         printf("getheaders %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2531         for (; pindex; pindex = pindex->pnext)
2532         {
2533             vHeaders.push_back(pindex->GetBlockHeader());
2534             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
2535                 break;
2536         }
2537         pfrom->PushMessage("headers", vHeaders);
2538     }
2539
2540
2541     else if (strCommand == "tx")
2542     {
2543         vector<uint256> vWorkQueue;
2544         CDataStream vMsg(vRecv);
2545         CTransaction tx;
2546         vRecv >> tx;
2547
2548         CInv inv(MSG_TX, tx.GetHash());
2549         pfrom->AddInventoryKnown(inv);
2550
2551         bool fMissingInputs = false;
2552         if (tx.AcceptToMemoryPool(true, &fMissingInputs))
2553         {
2554             SyncWithWallets(tx, NULL, true);
2555             RelayMessage(inv, vMsg);
2556             mapAlreadyAskedFor.erase(inv);
2557             vWorkQueue.push_back(inv.hash);
2558
2559             // Recursively process any orphan transactions that depended on this one
2560             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
2561             {
2562                 uint256 hashPrev = vWorkQueue[i];
2563                 for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev);
2564                      mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev);
2565                      ++mi)
2566                 {
2567                     const CDataStream& vMsg = *((*mi).second);
2568                     CTransaction tx;
2569                     CDataStream(vMsg) >> tx;
2570                     CInv inv(MSG_TX, tx.GetHash());
2571
2572                     if (tx.AcceptToMemoryPool(true))
2573                     {
2574                         printf("   accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2575                         SyncWithWallets(tx, NULL, true);
2576                         RelayMessage(inv, vMsg);
2577                         mapAlreadyAskedFor.erase(inv);
2578                         vWorkQueue.push_back(inv.hash);
2579                     }
2580                 }
2581             }
2582
2583             BOOST_FOREACH(uint256 hash, vWorkQueue)
2584                 EraseOrphanTx(hash);
2585         }
2586         else if (fMissingInputs)
2587         {
2588             printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2589             AddOrphanTx(vMsg);
2590
2591             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
2592             int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
2593             if (nEvicted > 0)
2594                 printf("mapOrphan overflow, removed %d tx\n", nEvicted);
2595         }
2596         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
2597     }
2598
2599
2600     else if (strCommand == "block")
2601     {
2602         CBlock block;
2603         vRecv >> block;
2604
2605         printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
2606         // block.print();
2607
2608         CInv inv(MSG_BLOCK, block.GetHash());
2609         pfrom->AddInventoryKnown(inv);
2610
2611         if (ProcessBlock(pfrom, &block))
2612             mapAlreadyAskedFor.erase(inv);
2613         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
2614     }
2615
2616
2617     else if (strCommand == "getaddr")
2618     {
2619         pfrom->vAddrToSend.clear();
2620         vector<CAddress> vAddr = addrman.GetAddr();
2621         BOOST_FOREACH(const CAddress &addr, vAddr)
2622             pfrom->PushAddress(addr);
2623     }
2624
2625
2626     else if (strCommand == "checkorder")
2627     {
2628         uint256 hashReply;
2629         vRecv >> hashReply;
2630
2631         if (!GetBoolArg("-allowreceivebyip"))
2632         {
2633             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
2634             return true;
2635         }
2636
2637         CWalletTx order;
2638         vRecv >> order;
2639
2640         /// we have a chance to check the order here
2641
2642         // Keep giving the same key to the same ip until they use it
2643         if (!mapReuseKey.count(pfrom->addr))
2644             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
2645
2646         // Send back approval of order and pubkey to use
2647         CScript scriptPubKey;
2648         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
2649         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
2650     }
2651
2652
2653     else if (strCommand == "reply")
2654     {
2655         uint256 hashReply;
2656         vRecv >> hashReply;
2657
2658         CRequestTracker tracker;
2659         CRITICAL_BLOCK(pfrom->cs_mapRequests)
2660         {
2661             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
2662             if (mi != pfrom->mapRequests.end())
2663             {
2664                 tracker = (*mi).second;
2665                 pfrom->mapRequests.erase(mi);
2666             }
2667         }
2668         if (!tracker.IsNull())
2669             tracker.fn(tracker.param1, vRecv);
2670     }
2671
2672
2673     else if (strCommand == "ping")
2674     {
2675     }
2676
2677
2678     else if (strCommand == "alert")
2679     {
2680         CAlert alert;
2681         vRecv >> alert;
2682
2683         if (alert.ProcessAlert())
2684         {
2685             // Relay
2686             pfrom->setKnown.insert(alert.GetHash());
2687             CRITICAL_BLOCK(cs_vNodes)
2688                 BOOST_FOREACH(CNode* pnode, vNodes)
2689                     alert.RelayTo(pnode);
2690         }
2691     }
2692
2693
2694     else
2695     {
2696         // Ignore unknown commands for extensibility
2697     }
2698
2699
2700     // Update the last seen time for this node's address
2701     if (pfrom->fNetworkNode)
2702         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
2703             AddressCurrentlyConnected(pfrom->addr);
2704
2705
2706     return true;
2707 }
2708
2709 bool ProcessMessages(CNode* pfrom)
2710 {
2711     CDataStream& vRecv = pfrom->vRecv;
2712     if (vRecv.empty())
2713         return true;
2714     //if (fDebug)
2715     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
2716
2717     //
2718     // Message format
2719     //  (4) message start
2720     //  (12) command
2721     //  (4) size
2722     //  (4) checksum
2723     //  (x) data
2724     //
2725
2726     loop
2727     {
2728         // Scan for message start
2729         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
2730         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
2731         if (vRecv.end() - pstart < nHeaderSize)
2732         {
2733             if (vRecv.size() > nHeaderSize)
2734             {
2735                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
2736                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
2737             }
2738             break;
2739         }
2740         if (pstart - vRecv.begin() > 0)
2741             printf("\n\nPROCESSMESSAGE SKIPPED %d BYTES\n\n", pstart - vRecv.begin());
2742         vRecv.erase(vRecv.begin(), pstart);
2743
2744         // Read header
2745         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
2746         CMessageHeader hdr;
2747         vRecv >> hdr;
2748         if (!hdr.IsValid())
2749         {
2750             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
2751             continue;
2752         }
2753         string strCommand = hdr.GetCommand();
2754
2755         // Message size
2756         unsigned int nMessageSize = hdr.nMessageSize;
2757         if (nMessageSize > MAX_SIZE)
2758         {
2759             printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
2760             continue;
2761         }
2762         if (nMessageSize > vRecv.size())
2763         {
2764             // Rewind and wait for rest of message
2765             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
2766             break;
2767         }
2768
2769         // Checksum
2770         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
2771         unsigned int nChecksum = 0;
2772         memcpy(&nChecksum, &hash, sizeof(nChecksum));
2773         if (nChecksum != hdr.nChecksum)
2774         {
2775             printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
2776                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
2777             continue;
2778         }
2779
2780         // Copy message to its own buffer
2781         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
2782         vRecv.ignore(nMessageSize);
2783
2784         // Process message
2785         bool fRet = false;
2786         try
2787         {
2788             CRITICAL_BLOCK(cs_main)
2789                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
2790             if (fShutdown)
2791                 return true;
2792         }
2793         catch (std::ios_base::failure& e)
2794         {
2795             if (strstr(e.what(), "end of data"))
2796             {
2797                 // Allow exceptions from underlength message on vRecv
2798                 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());
2799             }
2800             else if (strstr(e.what(), "size too large"))
2801             {
2802                 // Allow exceptions from overlong size
2803                 printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
2804             }
2805             else
2806             {
2807                 PrintExceptionContinue(&e, "ProcessMessage()");
2808             }
2809         }
2810         catch (std::exception& e) {
2811             PrintExceptionContinue(&e, "ProcessMessage()");
2812         } catch (...) {
2813             PrintExceptionContinue(NULL, "ProcessMessage()");
2814         }
2815
2816         if (!fRet)
2817             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
2818     }
2819
2820     vRecv.Compact();
2821     return true;
2822 }
2823
2824
2825 bool SendMessages(CNode* pto, bool fSendTrickle)
2826 {
2827     TRY_CRITICAL_BLOCK(cs_main)
2828     {
2829         // Don't send anything until we get their version message
2830         if (pto->nVersion == 0)
2831             return true;
2832
2833         // Keep-alive ping
2834         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty())
2835             pto->PushMessage("ping");
2836
2837         // Resend wallet transactions that haven't gotten in a block yet
2838         ResendWalletTransactions();
2839
2840         // Address refresh broadcast
2841         static int64 nLastRebroadcast;
2842         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
2843         {
2844             CRITICAL_BLOCK(cs_vNodes)
2845             {
2846                 BOOST_FOREACH(CNode* pnode, vNodes)
2847                 {
2848                     // Periodically clear setAddrKnown to allow refresh broadcasts
2849                     if (nLastRebroadcast)
2850                         pnode->setAddrKnown.clear();
2851
2852                     // Rebroadcast our address
2853                     if (!fNoListen && !fUseProxy && addrLocalHost.IsRoutable())
2854                     {
2855                         CAddress addr(addrLocalHost);
2856                         addr.nTime = GetAdjustedTime();
2857                         pnode->PushAddress(addr);
2858                     }
2859                 }
2860             }
2861             nLastRebroadcast = GetTime();
2862         }
2863
2864         //
2865         // Message: addr
2866         //
2867         if (fSendTrickle)
2868         {
2869             vector<CAddress> vAddr;
2870             vAddr.reserve(pto->vAddrToSend.size());
2871             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
2872             {
2873                 // returns true if wasn't already contained in the set
2874                 if (pto->setAddrKnown.insert(addr).second)
2875                 {
2876                     vAddr.push_back(addr);
2877                     // receiver rejects addr messages larger than 1000
2878                     if (vAddr.size() >= 1000)
2879                     {
2880                         pto->PushMessage("addr", vAddr);
2881                         vAddr.clear();
2882                     }
2883                 }
2884             }
2885             pto->vAddrToSend.clear();
2886             if (!vAddr.empty())
2887                 pto->PushMessage("addr", vAddr);
2888         }
2889
2890
2891         //
2892         // Message: inventory
2893         //
2894         vector<CInv> vInv;
2895         vector<CInv> vInvWait;
2896         CRITICAL_BLOCK(pto->cs_inventory)
2897         {
2898             vInv.reserve(pto->vInventoryToSend.size());
2899             vInvWait.reserve(pto->vInventoryToSend.size());
2900             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
2901             {
2902                 if (pto->setInventoryKnown.count(inv))
2903                     continue;
2904
2905                 // trickle out tx inv to protect privacy
2906                 if (inv.type == MSG_TX && !fSendTrickle)
2907                 {
2908                     // 1/4 of tx invs blast to all immediately
2909                     static uint256 hashSalt;
2910                     if (hashSalt == 0)
2911                         RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2912                     uint256 hashRand = inv.hash ^ hashSalt;
2913                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
2914                     bool fTrickleWait = ((hashRand & 3) != 0);
2915
2916                     // always trickle our own transactions
2917                     if (!fTrickleWait)
2918                     {
2919                         CWalletTx wtx;
2920                         if (GetTransaction(inv.hash, wtx))
2921                             if (wtx.fFromMe)
2922                                 fTrickleWait = true;
2923                     }
2924
2925                     if (fTrickleWait)
2926                     {
2927                         vInvWait.push_back(inv);
2928                         continue;
2929                     }
2930                 }
2931
2932                 // returns true if wasn't already contained in the set
2933                 if (pto->setInventoryKnown.insert(inv).second)
2934                 {
2935                     vInv.push_back(inv);
2936                     if (vInv.size() >= 1000)
2937                     {
2938                         pto->PushMessage("inv", vInv);
2939                         vInv.clear();
2940                     }
2941                 }
2942             }
2943             pto->vInventoryToSend = vInvWait;
2944         }
2945         if (!vInv.empty())
2946             pto->PushMessage("inv", vInv);
2947
2948
2949         //
2950         // Message: getdata
2951         //
2952         vector<CInv> vGetData;
2953         int64 nNow = GetTime() * 1000000;
2954         CTxDB txdb("r");
2955         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
2956         {
2957             const CInv& inv = (*pto->mapAskFor.begin()).second;
2958             if (!AlreadyHave(txdb, inv))
2959             {
2960                 printf("sending getdata: %s\n", inv.ToString().c_str());
2961                 vGetData.push_back(inv);
2962                 if (vGetData.size() >= 1000)
2963                 {
2964                     pto->PushMessage("getdata", vGetData);
2965                     vGetData.clear();
2966                 }
2967             }
2968             mapAlreadyAskedFor[inv] = nNow;
2969             pto->mapAskFor.erase(pto->mapAskFor.begin());
2970         }
2971         if (!vGetData.empty())
2972             pto->PushMessage("getdata", vGetData);
2973
2974     }
2975     return true;
2976 }
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991 //////////////////////////////////////////////////////////////////////////////
2992 //
2993 // BitcoinMiner
2994 //
2995
2996 int static FormatHashBlocks(void* pbuffer, unsigned int len)
2997 {
2998     unsigned char* pdata = (unsigned char*)pbuffer;
2999     unsigned int blocks = 1 + ((len + 8) / 64);
3000     unsigned char* pend = pdata + 64 * blocks;
3001     memset(pdata + len, 0, 64 * blocks - len);
3002     pdata[len] = 0x80;
3003     unsigned int bits = len * 8;
3004     pend[-1] = (bits >> 0) & 0xff;
3005     pend[-2] = (bits >> 8) & 0xff;
3006     pend[-3] = (bits >> 16) & 0xff;
3007     pend[-4] = (bits >> 24) & 0xff;
3008     return blocks;
3009 }
3010
3011 static const unsigned int pSHA256InitState[8] =
3012 {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
3013
3014 void SHA256Transform(void* pstate, void* pinput, const void* pinit)
3015 {
3016     SHA256_CTX ctx;
3017     unsigned char data[64];
3018
3019     SHA256_Init(&ctx);
3020
3021     for (int i = 0; i < 16; i++)
3022         ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
3023
3024     for (int i = 0; i < 8; i++)
3025         ctx.h[i] = ((uint32_t*)pinit)[i];
3026
3027     SHA256_Update(&ctx, data, sizeof(data));
3028     for (int i = 0; i < 8; i++) 
3029         ((uint32_t*)pstate)[i] = ctx.h[i];
3030 }
3031
3032 //
3033 // ScanHash scans nonces looking for a hash with at least some zero bits.
3034 // It operates on big endian data.  Caller does the byte reversing.
3035 // All input buffers are 16-byte aligned.  nNonce is usually preserved
3036 // between calls, but periodically or if nNonce is 0xffff0000 or above,
3037 // the block is rebuilt and nNonce starts over at zero.
3038 //
3039 unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone)
3040 {
3041     unsigned int& nNonce = *(unsigned int*)(pdata + 12);
3042     for (;;)
3043     {
3044         // Crypto++ SHA-256
3045         // Hash pdata using pmidstate as the starting state into
3046         // preformatted buffer phash1, then hash phash1 into phash
3047         nNonce++;
3048         SHA256Transform(phash1, pdata, pmidstate);
3049         SHA256Transform(phash, phash1, pSHA256InitState);
3050
3051         // Return the nonce if the hash has at least some zero bits,
3052         // caller will check if it has enough to reach the target
3053         if (((unsigned short*)phash)[14] == 0)
3054             return nNonce;
3055
3056         // If nothing found after trying for a while, return -1
3057         if ((nNonce & 0xffff) == 0)
3058         {
3059             nHashesDone = 0xffff+1;
3060             return -1;
3061         }
3062     }
3063 }
3064
3065 // Some explaining would be appreciated
3066 class COrphan
3067 {
3068 public:
3069     CTransaction* ptx;
3070     set<uint256> setDependsOn;
3071     double dPriority;
3072
3073     COrphan(CTransaction* ptxIn)
3074     {
3075         ptx = ptxIn;
3076         dPriority = 0;
3077     }
3078
3079     void print() const
3080     {
3081         printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority);
3082         BOOST_FOREACH(uint256 hash, setDependsOn)
3083             printf("   setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
3084     }
3085 };
3086
3087
3088 uint64 nLastBlockTx = 0;
3089 uint64 nLastBlockSize = 0;
3090
3091 CBlock* CreateNewBlock(CReserveKey& reservekey)
3092 {
3093     CBlockIndex* pindexPrev = pindexBest;
3094
3095     // Create new block
3096     auto_ptr<CBlock> pblock(new CBlock());
3097     if (!pblock.get())
3098         return NULL;
3099
3100     // Create coinbase tx
3101     CTransaction txNew;
3102     txNew.vin.resize(1);
3103     txNew.vin[0].prevout.SetNull();
3104     txNew.vout.resize(1);
3105     txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
3106
3107     // Add our coinbase tx as first transaction
3108     pblock->vtx.push_back(txNew);
3109
3110     // Collect memory pool transactions into the block
3111     int64 nFees = 0;
3112     CRITICAL_BLOCK(cs_main)
3113     CRITICAL_BLOCK(cs_mapTransactions)
3114     {
3115         CTxDB txdb("r");
3116
3117         // Priority order to process transactions
3118         list<COrphan> vOrphan; // list memory doesn't move
3119         map<uint256, vector<COrphan*> > mapDependers;
3120         multimap<double, CTransaction*> mapPriority;
3121         for (map<uint256, CTransaction>::iterator mi = mapTransactions.begin(); mi != mapTransactions.end(); ++mi)
3122         {
3123             CTransaction& tx = (*mi).second;
3124             if (tx.IsCoinBase() || !tx.IsFinal())
3125                 continue;
3126
3127             COrphan* porphan = NULL;
3128             double dPriority = 0;
3129             BOOST_FOREACH(const CTxIn& txin, tx.vin)
3130             {
3131                 // Read prev transaction
3132                 CTransaction txPrev;
3133                 CTxIndex txindex;
3134                 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
3135                 {
3136                     // Has to wait for dependencies
3137                     if (!porphan)
3138                     {
3139                         // Use list for automatic deletion
3140                         vOrphan.push_back(COrphan(&tx));
3141                         porphan = &vOrphan.back();
3142                     }
3143                     mapDependers[txin.prevout.hash].push_back(porphan);
3144                     porphan->setDependsOn.insert(txin.prevout.hash);
3145                     continue;
3146                 }
3147                 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
3148
3149                 // Read block header
3150                 int nConf = txindex.GetDepthInMainChain();
3151
3152                 dPriority += (double)nValueIn * nConf;
3153
3154                 if (fDebug && GetBoolArg("-printpriority"))
3155                     printf("priority     nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority);
3156             }
3157
3158             // Priority is sum(valuein * age) / txsize
3159             dPriority /= ::GetSerializeSize(tx, SER_NETWORK);
3160
3161             if (porphan)
3162                 porphan->dPriority = dPriority;
3163             else
3164                 mapPriority.insert(make_pair(-dPriority, &(*mi).second));
3165
3166             if (fDebug && GetBoolArg("-printpriority"))
3167             {
3168                 printf("priority %-20.1f %s\n%s", dPriority, tx.GetHash().ToString().substr(0,10).c_str(), tx.ToString().c_str());
3169                 if (porphan)
3170                     porphan->print();
3171                 printf("\n");
3172             }
3173         }
3174
3175         // Collect transactions into block
3176         map<uint256, CTxIndex> mapTestPool;
3177         uint64 nBlockSize = 1000;
3178         uint64 nBlockTx = 0;
3179         int nBlockSigOps = 100;
3180         while (!mapPriority.empty())
3181         {
3182             // Take highest priority transaction off priority queue
3183             double dPriority = -(*mapPriority.begin()).first;
3184             CTransaction& tx = *(*mapPriority.begin()).second;
3185             mapPriority.erase(mapPriority.begin());
3186
3187             // Size limits
3188             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK);
3189             if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN)
3190                 continue;
3191
3192             // Legacy limits on sigOps:
3193             int nTxSigOps = tx.GetLegacySigOpCount();
3194             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
3195                 continue;
3196
3197             // Transaction fee required depends on block size
3198             bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority));
3199             int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, GMF_BLOCK);
3200
3201             // Connecting shouldn't fail due to dependency on other memory pool transactions
3202             // because we're already processing them in order of dependency
3203             map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
3204             MapPrevTx mapInputs;
3205             bool fInvalid;
3206             if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
3207                 continue;
3208
3209             int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
3210             if (nTxFees < nMinFee)
3211                 continue;
3212
3213             nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
3214             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
3215                 continue;
3216
3217             if (!tx.ConnectInputs(mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
3218                 continue;
3219             mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
3220             swap(mapTestPool, mapTestPoolTmp);
3221
3222             // Added
3223             pblock->vtx.push_back(tx);
3224             nBlockSize += nTxSize;
3225             ++nBlockTx;
3226             nBlockSigOps += nTxSigOps;
3227             nFees += nTxFees;
3228
3229             // Add transactions that depend on this one to the priority queue
3230             uint256 hash = tx.GetHash();
3231             if (mapDependers.count(hash))
3232             {
3233                 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
3234                 {
3235                     if (!porphan->setDependsOn.empty())
3236                     {
3237                         porphan->setDependsOn.erase(hash);
3238                         if (porphan->setDependsOn.empty())
3239                             mapPriority.insert(make_pair(-porphan->dPriority, porphan->ptx));
3240                     }
3241                 }
3242             }
3243         }
3244
3245         nLastBlockTx = nBlockTx;
3246         nLastBlockSize = nBlockSize;
3247         printf("CreateNewBlock(): total size %lu\n", nBlockSize);
3248
3249     }
3250     pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees);
3251
3252     // Fill in header
3253     pblock->hashPrevBlock  = pindexPrev->GetBlockHash();
3254     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
3255     pblock->UpdateTime(pindexPrev);
3256     pblock->nBits          = GetNextWorkRequired(pindexPrev, pblock.get());
3257     pblock->nNonce         = 0;
3258
3259     return pblock.release();
3260 }
3261
3262
3263 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
3264 {
3265     // Update nExtraNonce
3266     static uint256 hashPrevBlock;
3267     if (hashPrevBlock != pblock->hashPrevBlock)
3268     {
3269         nExtraNonce = 0;
3270         hashPrevBlock = pblock->hashPrevBlock;
3271     }
3272     ++nExtraNonce;
3273     pblock->vtx[0].vin[0].scriptSig = (CScript() << pblock->nTime << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
3274     assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
3275
3276     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
3277 }
3278
3279
3280 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
3281 {
3282     //
3283     // Prebuild hash buffers
3284     //
3285     struct
3286     {
3287         struct unnamed2
3288         {
3289             int nVersion;
3290             uint256 hashPrevBlock;
3291             uint256 hashMerkleRoot;
3292             unsigned int nTime;
3293             unsigned int nBits;
3294             unsigned int nNonce;
3295         }
3296         block;
3297         unsigned char pchPadding0[64];
3298         uint256 hash1;
3299         unsigned char pchPadding1[64];
3300     }
3301     tmp;
3302     memset(&tmp, 0, sizeof(tmp));
3303
3304     tmp.block.nVersion       = pblock->nVersion;
3305     tmp.block.hashPrevBlock  = pblock->hashPrevBlock;
3306     tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
3307     tmp.block.nTime          = pblock->nTime;
3308     tmp.block.nBits          = pblock->nBits;
3309     tmp.block.nNonce         = pblock->nNonce;
3310
3311     FormatHashBlocks(&tmp.block, sizeof(tmp.block));
3312     FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
3313
3314     // Byte swap all the input buffer
3315     for (unsigned int i = 0; i < sizeof(tmp)/4; i++)
3316         ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
3317
3318     // Precalc the first half of the first hash, which stays constant
3319     SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
3320
3321     memcpy(pdata, &tmp.block, 128);
3322     memcpy(phash1, &tmp.hash1, 64);
3323 }
3324
3325
3326 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
3327 {
3328     uint256 hash = pblock->GetHash();
3329     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3330
3331     if (hash > hashTarget)
3332         return false;
3333
3334     //// debug print
3335     printf("BitcoinMiner:\n");
3336     printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
3337     pblock->print();
3338     printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3339     printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
3340
3341     // Found a solution
3342     CRITICAL_BLOCK(cs_main)
3343     {
3344         if (pblock->hashPrevBlock != hashBestChain)
3345             return error("BitcoinMiner : generated block is stale");
3346
3347         // Remove key from key pool
3348         reservekey.KeepKey();
3349
3350         // Track how many getdata requests this block gets
3351         CRITICAL_BLOCK(wallet.cs_wallet)
3352             wallet.mapRequestCount[pblock->GetHash()] = 0;
3353
3354         // Process this block the same as if we had received it from another node
3355         if (!ProcessBlock(NULL, pblock))
3356             return error("BitcoinMiner : ProcessBlock, block not accepted");
3357     }
3358
3359     return true;
3360 }
3361
3362 void static ThreadBitcoinMiner(void* parg);
3363
3364 static bool fGenerateBitcoins = false;
3365 static bool fLimitProcessors = false;
3366 static int nLimitProcessors = -1;
3367
3368 void static BitcoinMiner(CWallet *pwallet)
3369 {
3370     printf("BitcoinMiner started\n");
3371     SetThreadPriority(THREAD_PRIORITY_LOWEST);
3372
3373     // Each thread has its own key and counter
3374     CReserveKey reservekey(pwallet);
3375     unsigned int nExtraNonce = 0;
3376
3377     while (fGenerateBitcoins)
3378     {
3379         if (AffinityBugWorkaround(ThreadBitcoinMiner))
3380             return;
3381         if (fShutdown)
3382             return;
3383         while (vNodes.empty() || IsInitialBlockDownload())
3384         {
3385             Sleep(1000);
3386             if (fShutdown)
3387                 return;
3388             if (!fGenerateBitcoins)
3389                 return;
3390         }
3391
3392
3393         //
3394         // Create new block
3395         //
3396         unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
3397         CBlockIndex* pindexPrev = pindexBest;
3398
3399         auto_ptr<CBlock> pblock(CreateNewBlock(reservekey));
3400         if (!pblock.get())
3401             return;
3402         IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
3403
3404         printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
3405
3406
3407         //
3408         // Prebuild hash buffers
3409         //
3410         char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
3411         char pdatabuf[128+16];    char* pdata     = alignup<16>(pdatabuf);
3412         char phash1buf[64+16];    char* phash1    = alignup<16>(phash1buf);
3413
3414         FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1);
3415
3416         unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
3417         unsigned int& nBlockBits = *(unsigned int*)(pdata + 64 + 8);
3418         unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
3419
3420
3421         //
3422         // Search
3423         //
3424         int64 nStart = GetTime();
3425         uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3426         uint256 hashbuf[2];
3427         uint256& hash = *alignup<16>(hashbuf);
3428         loop
3429         {
3430             unsigned int nHashesDone = 0;
3431             unsigned int nNonceFound;
3432
3433             // Crypto++ SHA-256
3434             nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1,
3435                                             (char*)&hash, nHashesDone);
3436
3437             // Check if something found
3438             if (nNonceFound != -1)
3439             {
3440                 for (unsigned int i = 0; i < sizeof(hash)/4; i++)
3441                     ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]);
3442
3443                 if (hash <= hashTarget)
3444                 {
3445                     // Found a solution
3446                     pblock->nNonce = ByteReverse(nNonceFound);
3447                     assert(hash == pblock->GetHash());
3448
3449                     SetThreadPriority(THREAD_PRIORITY_NORMAL);
3450                     CheckWork(pblock.get(), *pwalletMain, reservekey);
3451                     SetThreadPriority(THREAD_PRIORITY_LOWEST);
3452                     break;
3453                 }
3454             }
3455
3456             // Meter hashes/sec
3457             static int64 nHashCounter;
3458             if (nHPSTimerStart == 0)
3459             {
3460                 nHPSTimerStart = GetTimeMillis();
3461                 nHashCounter = 0;
3462             }
3463             else
3464                 nHashCounter += nHashesDone;
3465             if (GetTimeMillis() - nHPSTimerStart > 4000)
3466             {
3467                 static CCriticalSection cs;
3468                 CRITICAL_BLOCK(cs)
3469                 {
3470                     if (GetTimeMillis() - nHPSTimerStart > 4000)
3471                     {
3472                         dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
3473                         nHPSTimerStart = GetTimeMillis();
3474                         nHashCounter = 0;
3475                         string strStatus = strprintf("    %.0f khash/s", dHashesPerSec/1000.0);
3476                         UIThreadCall(boost::bind(CalledSetStatusBar, strStatus, 0));
3477                         static int64 nLogTime;
3478                         if (GetTime() - nLogTime > 30 * 60)
3479                         {
3480                             nLogTime = GetTime();
3481                             printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3482                             printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[THREAD_MINER], dHashesPerSec/1000.0);
3483                         }
3484                     }
3485                 }
3486             }
3487
3488             // Check for stop or if block needs to be rebuilt
3489             if (fShutdown)
3490                 return;
3491             if (!fGenerateBitcoins)
3492                 return;
3493             if (fLimitProcessors && vnThreadsRunning[THREAD_MINER] > nLimitProcessors)
3494                 return;
3495             if (vNodes.empty())
3496                 break;
3497             if (nBlockNonce >= 0xffff0000)
3498                 break;
3499             if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
3500                 break;
3501             if (pindexPrev != pindexBest)
3502                 break;
3503
3504             // Update nTime every few seconds
3505             pblock->UpdateTime(pindexPrev);
3506             nBlockTime = ByteReverse(pblock->nTime);
3507             if (fTestNet)
3508             {
3509                 // Changing pblock->nTime can change work required on testnet:
3510                 nBlockBits = ByteReverse(pblock->nBits);
3511                 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3512             }
3513         }
3514     }
3515 }
3516
3517 void static ThreadBitcoinMiner(void* parg)
3518 {
3519     CWallet* pwallet = (CWallet*)parg;
3520     try
3521     {
3522         vnThreadsRunning[THREAD_MINER]++;
3523         BitcoinMiner(pwallet);
3524         vnThreadsRunning[THREAD_MINER]--;
3525     }
3526     catch (std::exception& e) {
3527         vnThreadsRunning[THREAD_MINER]--;
3528         PrintException(&e, "ThreadBitcoinMiner()");
3529     } catch (...) {
3530         vnThreadsRunning[THREAD_MINER]--;
3531         PrintException(NULL, "ThreadBitcoinMiner()");
3532     }
3533     UIThreadCall(boost::bind(CalledSetStatusBar, "", 0));
3534     nHPSTimerStart = 0;
3535     if (vnThreadsRunning[THREAD_MINER] == 0)
3536         dHashesPerSec = 0;
3537     printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[THREAD_MINER]);
3538 }
3539
3540
3541 void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
3542 {
3543     fGenerateBitcoins = fGenerate;
3544     nLimitProcessors = GetArg("-genproclimit", -1);
3545     if (nLimitProcessors == 0)
3546         fGenerateBitcoins = false;
3547     fLimitProcessors = (nLimitProcessors != -1);
3548
3549     if (fGenerate)
3550     {
3551         int nProcessors = boost::thread::hardware_concurrency();
3552         printf("%d processors\n", nProcessors);
3553         if (nProcessors < 1)
3554             nProcessors = 1;
3555         if (fLimitProcessors && nProcessors > nLimitProcessors)
3556             nProcessors = nLimitProcessors;
3557         int nAddThreads = nProcessors - vnThreadsRunning[THREAD_MINER];
3558         printf("Starting %d BitcoinMiner threads\n", nAddThreads);
3559         for (int i = 0; i < nAddThreads; i++)
3560         {
3561             if (!CreateThread(ThreadBitcoinMiner, pwallet))
3562                 printf("Error: CreateThread(ThreadBitcoinMiner) failed\n");
3563             Sleep(10);
3564         }
3565     }
3566 }