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     // Check for duplicate txids. This is caught by ConnectInputs(),
1663     // but catching it earlier avoids a potential DoS attack:
1664     set<uint256> uniqueTx;
1665     BOOST_FOREACH(const CTransaction& tx, vtx)
1666     {
1667         uniqueTx.insert(tx.GetHash());
1668     }
1669     if (uniqueTx.size() != vtx.size())
1670         return DoS(100, error("CheckBlock() : duplicate transaction"));
1671
1672     // Check for duplicate txids. This is caught by ConnectInputs(),
1673     // but catching it earlier avoids a potential DoS attack:
1674     set<uint256> uniqueTx;
1675     BOOST_FOREACH(const CTransaction& tx, vtx)
1676     {
1677         uniqueTx.insert(tx.GetHash());
1678     }
1679     if (uniqueTx.size() != vtx.size())
1680         return error("CheckBlock() : duplicate transaction");
1681
1682     int nSigOps = 0;
1683     BOOST_FOREACH(const CTransaction& tx, vtx)
1684     {
1685         nSigOps += tx.GetLegacySigOpCount();
1686     }
1687     if (nSigOps > MAX_BLOCK_SIGOPS)
1688         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
1689
1690     // Check merkleroot
1691     if (hashMerkleRoot != BuildMerkleTree())
1692         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
1693
1694     return true;
1695 }
1696
1697 bool CBlock::AcceptBlock()
1698 {
1699     // Check for duplicate
1700     uint256 hash = GetHash();
1701     if (mapBlockIndex.count(hash))
1702         return error("AcceptBlock() : block already in mapBlockIndex");
1703
1704     // Get prev block index
1705     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
1706     if (mi == mapBlockIndex.end())
1707         return DoS(10, error("AcceptBlock() : prev block not found"));
1708     CBlockIndex* pindexPrev = (*mi).second;
1709     int nHeight = pindexPrev->nHeight+1;
1710
1711     // Check proof of work
1712     if (nBits != GetNextWorkRequired(pindexPrev, this))
1713         return DoS(100, error("AcceptBlock() : incorrect proof of work"));
1714
1715     // Check timestamp against prev
1716     if (GetBlockTime() <= pindexPrev->GetMedianTimePast())
1717         return error("AcceptBlock() : block's timestamp is too early");
1718
1719     // Check that all transactions are finalized
1720     BOOST_FOREACH(const CTransaction& tx, vtx)
1721         if (!tx.IsFinal(nHeight, GetBlockTime()))
1722             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
1723
1724     // Check that the block chain matches the known block chain up to a checkpoint
1725     if (!Checkpoints::CheckBlock(nHeight, hash))
1726         return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight));
1727
1728     // Write block to history file
1729     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK)))
1730         return error("AcceptBlock() : out of disk space");
1731     unsigned int nFile = -1;
1732     unsigned int nBlockPos = 0;
1733     if (!WriteToDisk(nFile, nBlockPos))
1734         return error("AcceptBlock() : WriteToDisk failed");
1735     if (!AddToBlockIndex(nFile, nBlockPos))
1736         return error("AcceptBlock() : AddToBlockIndex failed");
1737
1738     // Relay inventory, but don't relay old inventory during initial block download
1739     int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
1740     if (hashBestChain == hash)
1741         CRITICAL_BLOCK(cs_vNodes)
1742             BOOST_FOREACH(CNode* pnode, vNodes)
1743                 if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
1744                     pnode->PushInventory(CInv(MSG_BLOCK, hash));
1745
1746     return true;
1747 }
1748
1749 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
1750 {
1751     // Check for duplicate
1752     uint256 hash = pblock->GetHash();
1753     if (mapBlockIndex.count(hash))
1754         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
1755     if (mapOrphanBlocks.count(hash))
1756         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
1757
1758     // Preliminary checks
1759     if (!pblock->CheckBlock())
1760         return error("ProcessBlock() : CheckBlock FAILED");
1761
1762     CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex);
1763     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain)
1764     {
1765         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
1766         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
1767         if (deltaTime < 0)
1768         {
1769             if (pfrom)
1770                 pfrom->Misbehaving(100);
1771             return error("ProcessBlock() : block with timestamp before last checkpoint");
1772         }
1773         CBigNum bnNewBlock;
1774         bnNewBlock.SetCompact(pblock->nBits);
1775         CBigNum bnRequired;
1776         bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime));
1777         if (bnNewBlock > bnRequired)
1778         {
1779             if (pfrom)
1780                 pfrom->Misbehaving(100);
1781             return error("ProcessBlock() : block with too little proof-of-work");
1782         }
1783     }
1784
1785
1786     // If don't already have its previous block, shunt it off to holding area until we get it
1787     if (!mapBlockIndex.count(pblock->hashPrevBlock))
1788     {
1789         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
1790         CBlock* pblock2 = new CBlock(*pblock);
1791         mapOrphanBlocks.insert(make_pair(hash, pblock2));
1792         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
1793
1794         // Ask this guy to fill in what we're missing
1795         if (pfrom)
1796             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
1797         return true;
1798     }
1799
1800     // Store to disk
1801     if (!pblock->AcceptBlock())
1802         return error("ProcessBlock() : AcceptBlock FAILED");
1803
1804     // Recursively process any orphan blocks that depended on this one
1805     vector<uint256> vWorkQueue;
1806     vWorkQueue.push_back(hash);
1807     for (unsigned int i = 0; i < vWorkQueue.size(); i++)
1808     {
1809         uint256 hashPrev = vWorkQueue[i];
1810         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
1811              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
1812              ++mi)
1813         {
1814             CBlock* pblockOrphan = (*mi).second;
1815             if (pblockOrphan->AcceptBlock())
1816                 vWorkQueue.push_back(pblockOrphan->GetHash());
1817             mapOrphanBlocks.erase(pblockOrphan->GetHash());
1818             delete pblockOrphan;
1819         }
1820         mapOrphanBlocksByPrev.erase(hashPrev);
1821     }
1822
1823     printf("ProcessBlock: ACCEPTED\n");
1824     return true;
1825 }
1826
1827
1828
1829
1830
1831
1832
1833
1834 bool CheckDiskSpace(uint64 nAdditionalBytes)
1835 {
1836     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
1837
1838     // Check for 15MB because database could create another 10MB log file at any time
1839     if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes)
1840     {
1841         fShutdown = true;
1842         string strMessage = _("Warning: Disk space is low  ");
1843         strMiscWarning = strMessage;
1844         printf("*** %s\n", strMessage.c_str());
1845         ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);
1846         CreateThread(Shutdown, NULL);
1847         return false;
1848     }
1849     return true;
1850 }
1851
1852 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
1853 {
1854     if (nFile == -1)
1855         return NULL;
1856     FILE* file = fopen(strprintf("%s/blk%04d.dat", GetDataDir().c_str(), nFile).c_str(), pszMode);
1857     if (!file)
1858         return NULL;
1859     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
1860     {
1861         if (fseek(file, nBlockPos, SEEK_SET) != 0)
1862         {
1863             fclose(file);
1864             return NULL;
1865         }
1866     }
1867     return file;
1868 }
1869
1870 static unsigned int nCurrentBlockFile = 1;
1871
1872 FILE* AppendBlockFile(unsigned int& nFileRet)
1873 {
1874     nFileRet = 0;
1875     loop
1876     {
1877         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
1878         if (!file)
1879             return NULL;
1880         if (fseek(file, 0, SEEK_END) != 0)
1881             return NULL;
1882         // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
1883         if (ftell(file) < 0x7F000000 - MAX_SIZE)
1884         {
1885             nFileRet = nCurrentBlockFile;
1886             return file;
1887         }
1888         fclose(file);
1889         nCurrentBlockFile++;
1890     }
1891 }
1892
1893 bool LoadBlockIndex(bool fAllowNew)
1894 {
1895     if (fTestNet)
1896     {
1897         hashGenesisBlock = uint256("0x00000007199508e34a9ff81e6ec0c477a4cccff2a4767a8eee39c11db367b008");
1898         bnProofOfWorkLimit = CBigNum(~uint256(0) >> 28);
1899         pchMessageStart[0] = 0xfa;
1900         pchMessageStart[1] = 0xbf;
1901         pchMessageStart[2] = 0xb5;
1902         pchMessageStart[3] = 0xda;
1903     }
1904
1905     //
1906     // Load block index
1907     //
1908     CTxDB txdb("cr");
1909     if (!txdb.LoadBlockIndex())
1910         return false;
1911     txdb.Close();
1912
1913     //
1914     // Init with genesis block
1915     //
1916     if (mapBlockIndex.empty())
1917     {
1918         if (!fAllowNew)
1919             return false;
1920
1921         // Genesis Block:
1922         // CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
1923         //   CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
1924         //     CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
1925         //     CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
1926         //   vMerkleTree: 4a5e1e
1927
1928         // Genesis block
1929         const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
1930         CTransaction txNew;
1931         txNew.vin.resize(1);
1932         txNew.vout.resize(1);
1933         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
1934         txNew.vout[0].nValue = 50 * COIN;
1935         txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
1936         CBlock block;
1937         block.vtx.push_back(txNew);
1938         block.hashPrevBlock = 0;
1939         block.hashMerkleRoot = block.BuildMerkleTree();
1940         block.nVersion = 1;
1941         block.nTime    = 1231006505;
1942         block.nBits    = 0x1d00ffff;
1943         block.nNonce   = 2083236893;
1944
1945         if (fTestNet)
1946         {
1947             block.nTime    = 1296688602;
1948             block.nBits    = 0x1d07fff8;
1949             block.nNonce   = 384568319;
1950         }
1951
1952         //// debug print
1953         printf("%s\n", block.GetHash().ToString().c_str());
1954         printf("%s\n", hashGenesisBlock.ToString().c_str());
1955         printf("%s\n", block.hashMerkleRoot.ToString().c_str());
1956         assert(block.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));
1957         block.print();
1958         assert(block.GetHash() == hashGenesisBlock);
1959
1960         // Start new block file
1961         unsigned int nFile;
1962         unsigned int nBlockPos;
1963         if (!block.WriteToDisk(nFile, nBlockPos))
1964             return error("LoadBlockIndex() : writing genesis block to disk failed");
1965         if (!block.AddToBlockIndex(nFile, nBlockPos))
1966             return error("LoadBlockIndex() : genesis block not accepted");
1967     }
1968
1969     return true;
1970 }
1971
1972
1973
1974 void PrintBlockTree()
1975 {
1976     // precompute tree structure
1977     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
1978     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
1979     {
1980         CBlockIndex* pindex = (*mi).second;
1981         mapNext[pindex->pprev].push_back(pindex);
1982         // test
1983         //while (rand() % 3 == 0)
1984         //    mapNext[pindex->pprev].push_back(pindex);
1985     }
1986
1987     vector<pair<int, CBlockIndex*> > vStack;
1988     vStack.push_back(make_pair(0, pindexGenesisBlock));
1989
1990     int nPrevCol = 0;
1991     while (!vStack.empty())
1992     {
1993         int nCol = vStack.back().first;
1994         CBlockIndex* pindex = vStack.back().second;
1995         vStack.pop_back();
1996
1997         // print split or gap
1998         if (nCol > nPrevCol)
1999         {
2000             for (int i = 0; i < nCol-1; i++)
2001                 printf("| ");
2002             printf("|\\\n");
2003         }
2004         else if (nCol < nPrevCol)
2005         {
2006             for (int i = 0; i < nCol; i++)
2007                 printf("| ");
2008             printf("|\n");
2009        }
2010         nPrevCol = nCol;
2011
2012         // print columns
2013         for (int i = 0; i < nCol; i++)
2014             printf("| ");
2015
2016         // print item
2017         CBlock block;
2018         block.ReadFromDisk(pindex);
2019         printf("%d (%u,%u) %s  %s  tx %d",
2020             pindex->nHeight,
2021             pindex->nFile,
2022             pindex->nBlockPos,
2023             block.GetHash().ToString().substr(0,20).c_str(),
2024             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
2025             block.vtx.size());
2026
2027         PrintWallets(block);
2028
2029         // put the main timechain first
2030         vector<CBlockIndex*>& vNext = mapNext[pindex];
2031         for (unsigned int i = 0; i < vNext.size(); i++)
2032         {
2033             if (vNext[i]->pnext)
2034             {
2035                 swap(vNext[0], vNext[i]);
2036                 break;
2037             }
2038         }
2039
2040         // iterate children
2041         for (unsigned int i = 0; i < vNext.size(); i++)
2042             vStack.push_back(make_pair(nCol+i, vNext[i]));
2043     }
2044 }
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055 //////////////////////////////////////////////////////////////////////////////
2056 //
2057 // CAlert
2058 //
2059
2060 map<uint256, CAlert> mapAlerts;
2061 CCriticalSection cs_mapAlerts;
2062
2063 string GetWarnings(string strFor)
2064 {
2065     int nPriority = 0;
2066     string strStatusBar;
2067     string strRPC;
2068     if (GetBoolArg("-testsafemode"))
2069         strRPC = "test";
2070
2071     // Misc warnings like out of disk space and clock is wrong
2072     if (strMiscWarning != "")
2073     {
2074         nPriority = 1000;
2075         strStatusBar = strMiscWarning;
2076     }
2077
2078     // Longer invalid proof-of-work chain
2079     if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
2080     {
2081         nPriority = 2000;
2082         strStatusBar = strRPC = "WARNING: Displayed transactions may not be correct!  You may need to upgrade, or other nodes may need to upgrade.";
2083     }
2084
2085     // Alerts
2086     CRITICAL_BLOCK(cs_mapAlerts)
2087     {
2088         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2089         {
2090             const CAlert& alert = item.second;
2091             if (alert.AppliesToMe() && alert.nPriority > nPriority)
2092             {
2093                 nPriority = alert.nPriority;
2094                 strStatusBar = alert.strStatusBar;
2095             }
2096         }
2097     }
2098
2099     if (strFor == "statusbar")
2100         return strStatusBar;
2101     else if (strFor == "rpc")
2102         return strRPC;
2103     assert(!"GetWarnings() : invalid parameter");
2104     return "error";
2105 }
2106
2107 bool CAlert::ProcessAlert()
2108 {
2109     if (!CheckSignature())
2110         return false;
2111     if (!IsInEffect())
2112         return false;
2113
2114     CRITICAL_BLOCK(cs_mapAlerts)
2115     {
2116         // Cancel previous alerts
2117         for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();)
2118         {
2119             const CAlert& alert = (*mi).second;
2120             if (Cancels(alert))
2121             {
2122                 printf("cancelling alert %d\n", alert.nID);
2123                 mapAlerts.erase(mi++);
2124             }
2125             else if (!alert.IsInEffect())
2126             {
2127                 printf("expiring alert %d\n", alert.nID);
2128                 mapAlerts.erase(mi++);
2129             }
2130             else
2131                 mi++;
2132         }
2133
2134         // Check if this alert has been cancelled
2135         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2136         {
2137             const CAlert& alert = item.second;
2138             if (alert.Cancels(*this))
2139             {
2140                 printf("alert already cancelled by %d\n", alert.nID);
2141                 return false;
2142             }
2143         }
2144
2145         // Add to mapAlerts
2146         mapAlerts.insert(make_pair(GetHash(), *this));
2147     }
2148
2149     printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe());
2150     MainFrameRepaint();
2151     return true;
2152 }
2153
2154
2155
2156
2157
2158
2159
2160
2161 //////////////////////////////////////////////////////////////////////////////
2162 //
2163 // Messages
2164 //
2165
2166
2167 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
2168 {
2169     switch (inv.type)
2170     {
2171     case MSG_TX:
2172         {
2173         bool txInMap = false;
2174         CRITICAL_BLOCK(cs_mapTransactions)
2175         {
2176             txInMap = (mapTransactions.count(inv.hash) != 0);
2177         }
2178         return txInMap ||
2179                mapOrphanTransactions.count(inv.hash) ||
2180                txdb.ContainsTx(inv.hash);
2181         }
2182
2183     case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
2184     }
2185     // Don't know what it is, just say we already got one
2186     return true;
2187 }
2188
2189
2190
2191
2192 // The message start string is designed to be unlikely to occur in normal data.
2193 // The characters are rarely used upper ascii, not valid as UTF-8, and produce
2194 // a large 4-byte int at any alignment.
2195 unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 };
2196
2197
2198 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
2199 {
2200     static map<CService, vector<unsigned char> > mapReuseKey;
2201     RandAddSeedPerfmon();
2202     if (fDebug) {
2203         printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
2204         printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size());
2205     }
2206     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
2207     {
2208         printf("dropmessagestest DROPPING RECV MESSAGE\n");
2209         return true;
2210     }
2211
2212
2213
2214
2215
2216     if (strCommand == "version")
2217     {
2218         // Each connection can only send one version message
2219         if (pfrom->nVersion != 0)
2220         {
2221             pfrom->Misbehaving(1);
2222             return false;
2223         }
2224
2225         int64 nTime;
2226         CAddress addrMe;
2227         CAddress addrFrom;
2228         uint64 nNonce = 1;
2229         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
2230         if (pfrom->nVersion < 209)
2231         {
2232             // Since February 20, 2012, the protocol is initiated at version 209,
2233             // and earlier versions are no longer supported
2234             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
2235             pfrom->fDisconnect = true;
2236             return false;
2237         }
2238
2239         if (pfrom->nVersion == 10300)
2240             pfrom->nVersion = 300;
2241         if (!vRecv.empty())
2242             vRecv >> addrFrom >> nNonce;
2243         if (!vRecv.empty())
2244             vRecv >> pfrom->strSubVer;
2245         if (!vRecv.empty())
2246             vRecv >> pfrom->nStartingHeight;
2247
2248         // Disconnect if we connected to ourself
2249         if (nNonce == nLocalHostNonce && nNonce > 1)
2250         {
2251             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
2252             pfrom->fDisconnect = true;
2253             return true;
2254         }
2255
2256         // Be shy and don't send version until we hear
2257         if (pfrom->fInbound)
2258             pfrom->PushVersion();
2259
2260         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
2261
2262         AddTimeData(pfrom->addr, nTime);
2263
2264         // Change version
2265         pfrom->PushMessage("verack");
2266         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2267
2268         if (!pfrom->fInbound)
2269         {
2270             // Advertise our address
2271             if (!fNoListen && !fUseProxy && addrLocalHost.IsRoutable() &&
2272                 !IsInitialBlockDownload())
2273             {
2274                 CAddress addr(addrLocalHost);
2275                 addr.nTime = GetAdjustedTime();
2276                 pfrom->PushAddress(addr);
2277             }
2278
2279             // Get recent addresses
2280             if (pfrom->nVersion >= 31402 || addrman.size() < 1000)
2281             {
2282                 pfrom->PushMessage("getaddr");
2283                 pfrom->fGetAddr = true;
2284             }
2285             addrman.Good(pfrom->addr);
2286         } else {
2287             if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
2288             {
2289                 addrman.Add(addrFrom, addrFrom);
2290                 addrman.Good(addrFrom);
2291             }
2292         }
2293
2294         // Ask the first connected node for block updates
2295         static int nAskedForBlocks = 0;
2296         if (!pfrom->fClient &&
2297             (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
2298              (nAskedForBlocks < 1 || vNodes.size() <= 1))
2299         {
2300             nAskedForBlocks++;
2301             pfrom->PushGetBlocks(pindexBest, uint256(0));
2302         }
2303
2304         // Relay alerts
2305         CRITICAL_BLOCK(cs_mapAlerts)
2306             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2307                 item.second.RelayTo(pfrom);
2308
2309         pfrom->fSuccessfullyConnected = true;
2310
2311         printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight);
2312
2313         cPeerBlockCounts.input(pfrom->nStartingHeight);
2314     }
2315
2316
2317     else if (pfrom->nVersion == 0)
2318     {
2319         // Must have a version message before anything else
2320         pfrom->Misbehaving(1);
2321         return false;
2322     }
2323
2324
2325     else if (strCommand == "verack")
2326     {
2327         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2328     }
2329
2330
2331     else if (strCommand == "addr")
2332     {
2333         vector<CAddress> vAddr;
2334         vRecv >> vAddr;
2335
2336         // Don't want addr from older versions unless seeding
2337         if (pfrom->nVersion < 31402 && addrman.size() > 1000)
2338             return true;
2339         if (vAddr.size() > 1000)
2340         {
2341             pfrom->Misbehaving(20);
2342             return error("message addr size() = %d", vAddr.size());
2343         }
2344
2345         // Store the new addresses
2346         int64 nNow = GetAdjustedTime();
2347         int64 nSince = nNow - 10 * 60;
2348         BOOST_FOREACH(CAddress& addr, vAddr)
2349         {
2350             if (fShutdown)
2351                 return true;
2352             // ignore IPv6 for now, since it isn't implemented anyway
2353             if (!addr.IsIPv4())
2354                 continue;
2355             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
2356                 addr.nTime = nNow - 5 * 24 * 60 * 60;
2357             pfrom->AddAddressKnown(addr);
2358             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
2359             {
2360                 // Relay to a limited number of other nodes
2361                 CRITICAL_BLOCK(cs_vNodes)
2362                 {
2363                     // Use deterministic randomness to send to the same nodes for 24 hours
2364                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
2365                     static uint256 hashSalt;
2366                     if (hashSalt == 0)
2367                         RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2368                     int64 hashAddr = addr.GetHash();
2369                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
2370                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
2371                     multimap<uint256, CNode*> mapMix;
2372                     BOOST_FOREACH(CNode* pnode, vNodes)
2373                     {
2374                         if (pnode->nVersion < 31402)
2375                             continue;
2376                         unsigned int nPointer;
2377                         memcpy(&nPointer, &pnode, sizeof(nPointer));
2378                         uint256 hashKey = hashRand ^ nPointer;
2379                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
2380                         mapMix.insert(make_pair(hashKey, pnode));
2381                     }
2382                     int nRelayNodes = 2;
2383                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
2384                         ((*mi).second)->PushAddress(addr);
2385                 }
2386             }
2387         }
2388         addrman.Add(vAddr, pfrom->addr, 2 * 60 * 60);
2389         if (vAddr.size() < 1000)
2390             pfrom->fGetAddr = false;
2391     }
2392
2393
2394     else if (strCommand == "inv")
2395     {
2396         vector<CInv> vInv;
2397         vRecv >> vInv;
2398         if (vInv.size() > 50000)
2399         {
2400             pfrom->Misbehaving(20);
2401             return error("message inv size() = %d", vInv.size());
2402         }
2403
2404         CTxDB txdb("r");
2405         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
2406         {
2407             const CInv &inv = vInv[nInv];
2408
2409             if (fShutdown)
2410                 return true;
2411             pfrom->AddInventoryKnown(inv);
2412
2413             bool fAlreadyHave = AlreadyHave(txdb, inv);
2414             if (fDebug)
2415                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
2416
2417             // Always request the last block in an inv bundle (even if we already have it), as it is the
2418             // trigger for the other side to send further invs. If we are stuck on a (very long) side chain,
2419             // this is necessary to connect earlier received orphan blocks to the chain again.
2420             if (!fAlreadyHave || (inv.type == MSG_BLOCK && nInv==vInv.size()-1))
2421                 pfrom->AskFor(inv);
2422             if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash))
2423                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
2424
2425             // Track requests for our stuff
2426             Inventory(inv.hash);
2427         }
2428     }
2429
2430
2431     else if (strCommand == "getdata")
2432     {
2433         vector<CInv> vInv;
2434         vRecv >> vInv;
2435         if (vInv.size() > 50000)
2436         {
2437             pfrom->Misbehaving(20);
2438             return error("message getdata size() = %d", vInv.size());
2439         }
2440
2441         BOOST_FOREACH(const CInv& inv, vInv)
2442         {
2443             if (fShutdown)
2444                 return true;
2445             printf("received getdata for: %s\n", inv.ToString().c_str());
2446
2447             if (inv.type == MSG_BLOCK)
2448             {
2449                 // Send block from disk
2450                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
2451                 if (mi != mapBlockIndex.end())
2452                 {
2453                     CBlock block;
2454                     block.ReadFromDisk((*mi).second);
2455                     pfrom->PushMessage("block", block);
2456
2457                     // Trigger them to send a getblocks request for the next batch of inventory
2458                     if (inv.hash == pfrom->hashContinue)
2459                     {
2460                         // Bypass PushInventory, this must send even if redundant,
2461                         // and we want it right after the last block so they don't
2462                         // wait for other stuff first.
2463                         vector<CInv> vInv;
2464                         vInv.push_back(CInv(MSG_BLOCK, hashBestChain));
2465                         pfrom->PushMessage("inv", vInv);
2466                         pfrom->hashContinue = 0;
2467                     }
2468                 }
2469             }
2470             else if (inv.IsKnownType())
2471             {
2472                 // Send stream from relay memory
2473                 CRITICAL_BLOCK(cs_mapRelay)
2474                 {
2475                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
2476                     if (mi != mapRelay.end())
2477                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
2478                 }
2479             }
2480
2481             // Track requests for our stuff
2482             Inventory(inv.hash);
2483         }
2484     }
2485
2486
2487     else if (strCommand == "getblocks")
2488     {
2489         CBlockLocator locator;
2490         uint256 hashStop;
2491         vRecv >> locator >> hashStop;
2492
2493         // Find the last block the caller has in the main chain
2494         CBlockIndex* pindex = locator.GetBlockIndex();
2495
2496         // Send the rest of the chain
2497         if (pindex)
2498             pindex = pindex->pnext;
2499         int nLimit = 500 + locator.GetDistanceBack();
2500         unsigned int nBytes = 0;
2501         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2502         for (; pindex; pindex = pindex->pnext)
2503         {
2504             if (pindex->GetBlockHash() == hashStop)
2505             {
2506                 printf("  getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2507                 break;
2508             }
2509             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
2510             CBlock block;
2511             block.ReadFromDisk(pindex, true);
2512             nBytes += block.GetSerializeSize(SER_NETWORK);
2513             if (--nLimit <= 0 || nBytes >= SendBufferSize()/2)
2514             {
2515                 // When this block is requested, we'll send an inv that'll make them
2516                 // getblocks the next batch of inventory.
2517                 printf("  getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2518                 pfrom->hashContinue = pindex->GetBlockHash();
2519                 break;
2520             }
2521         }
2522     }
2523
2524
2525     else if (strCommand == "getheaders")
2526     {
2527         CBlockLocator locator;
2528         uint256 hashStop;
2529         vRecv >> locator >> hashStop;
2530
2531         CBlockIndex* pindex = NULL;
2532         if (locator.IsNull())
2533         {
2534             // If locator is null, return the hashStop block
2535             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
2536             if (mi == mapBlockIndex.end())
2537                 return true;
2538             pindex = (*mi).second;
2539         }
2540         else
2541         {
2542             // Find the last block the caller has in the main chain
2543             pindex = locator.GetBlockIndex();
2544             if (pindex)
2545                 pindex = pindex->pnext;
2546         }
2547
2548         vector<CBlock> vHeaders;
2549         int nLimit = 2000 + locator.GetDistanceBack();
2550         printf("getheaders %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2551         for (; pindex; pindex = pindex->pnext)
2552         {
2553             vHeaders.push_back(pindex->GetBlockHeader());
2554             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
2555                 break;
2556         }
2557         pfrom->PushMessage("headers", vHeaders);
2558     }
2559
2560
2561     else if (strCommand == "tx")
2562     {
2563         vector<uint256> vWorkQueue;
2564         CDataStream vMsg(vRecv);
2565         CTransaction tx;
2566         vRecv >> tx;
2567
2568         CInv inv(MSG_TX, tx.GetHash());
2569         pfrom->AddInventoryKnown(inv);
2570
2571         bool fMissingInputs = false;
2572         if (tx.AcceptToMemoryPool(true, &fMissingInputs))
2573         {
2574             SyncWithWallets(tx, NULL, true);
2575             RelayMessage(inv, vMsg);
2576             mapAlreadyAskedFor.erase(inv);
2577             vWorkQueue.push_back(inv.hash);
2578
2579             // Recursively process any orphan transactions that depended on this one
2580             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
2581             {
2582                 uint256 hashPrev = vWorkQueue[i];
2583                 for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev);
2584                      mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev);
2585                      ++mi)
2586                 {
2587                     const CDataStream& vMsg = *((*mi).second);
2588                     CTransaction tx;
2589                     CDataStream(vMsg) >> tx;
2590                     CInv inv(MSG_TX, tx.GetHash());
2591
2592                     if (tx.AcceptToMemoryPool(true))
2593                     {
2594                         printf("   accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2595                         SyncWithWallets(tx, NULL, true);
2596                         RelayMessage(inv, vMsg);
2597                         mapAlreadyAskedFor.erase(inv);
2598                         vWorkQueue.push_back(inv.hash);
2599                     }
2600                 }
2601             }
2602
2603             BOOST_FOREACH(uint256 hash, vWorkQueue)
2604                 EraseOrphanTx(hash);
2605         }
2606         else if (fMissingInputs)
2607         {
2608             printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2609             AddOrphanTx(vMsg);
2610
2611             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
2612             int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
2613             if (nEvicted > 0)
2614                 printf("mapOrphan overflow, removed %d tx\n", nEvicted);
2615         }
2616         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
2617     }
2618
2619
2620     else if (strCommand == "block")
2621     {
2622         CBlock block;
2623         vRecv >> block;
2624
2625         printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
2626         // block.print();
2627
2628         CInv inv(MSG_BLOCK, block.GetHash());
2629         pfrom->AddInventoryKnown(inv);
2630
2631         if (ProcessBlock(pfrom, &block))
2632             mapAlreadyAskedFor.erase(inv);
2633         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
2634     }
2635
2636
2637     else if (strCommand == "getaddr")
2638     {
2639         pfrom->vAddrToSend.clear();
2640         vector<CAddress> vAddr = addrman.GetAddr();
2641         BOOST_FOREACH(const CAddress &addr, vAddr)
2642             pfrom->PushAddress(addr);
2643     }
2644
2645
2646     else if (strCommand == "checkorder")
2647     {
2648         uint256 hashReply;
2649         vRecv >> hashReply;
2650
2651         if (!GetBoolArg("-allowreceivebyip"))
2652         {
2653             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
2654             return true;
2655         }
2656
2657         CWalletTx order;
2658         vRecv >> order;
2659
2660         /// we have a chance to check the order here
2661
2662         // Keep giving the same key to the same ip until they use it
2663         if (!mapReuseKey.count(pfrom->addr))
2664             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
2665
2666         // Send back approval of order and pubkey to use
2667         CScript scriptPubKey;
2668         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
2669         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
2670     }
2671
2672
2673     else if (strCommand == "reply")
2674     {
2675         uint256 hashReply;
2676         vRecv >> hashReply;
2677
2678         CRequestTracker tracker;
2679         CRITICAL_BLOCK(pfrom->cs_mapRequests)
2680         {
2681             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
2682             if (mi != pfrom->mapRequests.end())
2683             {
2684                 tracker = (*mi).second;
2685                 pfrom->mapRequests.erase(mi);
2686             }
2687         }
2688         if (!tracker.IsNull())
2689             tracker.fn(tracker.param1, vRecv);
2690     }
2691
2692
2693     else if (strCommand == "ping")
2694     {
2695     }
2696
2697
2698     else if (strCommand == "alert")
2699     {
2700         CAlert alert;
2701         vRecv >> alert;
2702
2703         if (alert.ProcessAlert())
2704         {
2705             // Relay
2706             pfrom->setKnown.insert(alert.GetHash());
2707             CRITICAL_BLOCK(cs_vNodes)
2708                 BOOST_FOREACH(CNode* pnode, vNodes)
2709                     alert.RelayTo(pnode);
2710         }
2711     }
2712
2713
2714     else
2715     {
2716         // Ignore unknown commands for extensibility
2717     }
2718
2719
2720     // Update the last seen time for this node's address
2721     if (pfrom->fNetworkNode)
2722         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
2723             AddressCurrentlyConnected(pfrom->addr);
2724
2725
2726     return true;
2727 }
2728
2729 bool ProcessMessages(CNode* pfrom)
2730 {
2731     CDataStream& vRecv = pfrom->vRecv;
2732     if (vRecv.empty())
2733         return true;
2734     //if (fDebug)
2735     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
2736
2737     //
2738     // Message format
2739     //  (4) message start
2740     //  (12) command
2741     //  (4) size
2742     //  (4) checksum
2743     //  (x) data
2744     //
2745
2746     loop
2747     {
2748         // Scan for message start
2749         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
2750         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
2751         if (vRecv.end() - pstart < nHeaderSize)
2752         {
2753             if (vRecv.size() > nHeaderSize)
2754             {
2755                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
2756                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
2757             }
2758             break;
2759         }
2760         if (pstart - vRecv.begin() > 0)
2761             printf("\n\nPROCESSMESSAGE SKIPPED %d BYTES\n\n", pstart - vRecv.begin());
2762         vRecv.erase(vRecv.begin(), pstart);
2763
2764         // Read header
2765         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
2766         CMessageHeader hdr;
2767         vRecv >> hdr;
2768         if (!hdr.IsValid())
2769         {
2770             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
2771             continue;
2772         }
2773         string strCommand = hdr.GetCommand();
2774
2775         // Message size
2776         unsigned int nMessageSize = hdr.nMessageSize;
2777         if (nMessageSize > MAX_SIZE)
2778         {
2779             printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
2780             continue;
2781         }
2782         if (nMessageSize > vRecv.size())
2783         {
2784             // Rewind and wait for rest of message
2785             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
2786             break;
2787         }
2788
2789         // Checksum
2790         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
2791         unsigned int nChecksum = 0;
2792         memcpy(&nChecksum, &hash, sizeof(nChecksum));
2793         if (nChecksum != hdr.nChecksum)
2794         {
2795             printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
2796                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
2797             continue;
2798         }
2799
2800         // Copy message to its own buffer
2801         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
2802         vRecv.ignore(nMessageSize);
2803
2804         // Process message
2805         bool fRet = false;
2806         try
2807         {
2808             CRITICAL_BLOCK(cs_main)
2809                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
2810             if (fShutdown)
2811                 return true;
2812         }
2813         catch (std::ios_base::failure& e)
2814         {
2815             if (strstr(e.what(), "end of data"))
2816             {
2817                 // Allow exceptions from underlength message on vRecv
2818                 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());
2819             }
2820             else if (strstr(e.what(), "size too large"))
2821             {
2822                 // Allow exceptions from overlong size
2823                 printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
2824             }
2825             else
2826             {
2827                 PrintExceptionContinue(&e, "ProcessMessage()");
2828             }
2829         }
2830         catch (std::exception& e) {
2831             PrintExceptionContinue(&e, "ProcessMessage()");
2832         } catch (...) {
2833             PrintExceptionContinue(NULL, "ProcessMessage()");
2834         }
2835
2836         if (!fRet)
2837             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
2838     }
2839
2840     vRecv.Compact();
2841     return true;
2842 }
2843
2844
2845 bool SendMessages(CNode* pto, bool fSendTrickle)
2846 {
2847     TRY_CRITICAL_BLOCK(cs_main)
2848     {
2849         // Don't send anything until we get their version message
2850         if (pto->nVersion == 0)
2851             return true;
2852
2853         // Keep-alive ping
2854         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty())
2855             pto->PushMessage("ping");
2856
2857         // Resend wallet transactions that haven't gotten in a block yet
2858         ResendWalletTransactions();
2859
2860         // Address refresh broadcast
2861         static int64 nLastRebroadcast;
2862         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
2863         {
2864             CRITICAL_BLOCK(cs_vNodes)
2865             {
2866                 BOOST_FOREACH(CNode* pnode, vNodes)
2867                 {
2868                     // Periodically clear setAddrKnown to allow refresh broadcasts
2869                     if (nLastRebroadcast)
2870                         pnode->setAddrKnown.clear();
2871
2872                     // Rebroadcast our address
2873                     if (!fNoListen && !fUseProxy && addrLocalHost.IsRoutable())
2874                     {
2875                         CAddress addr(addrLocalHost);
2876                         addr.nTime = GetAdjustedTime();
2877                         pnode->PushAddress(addr);
2878                     }
2879                 }
2880             }
2881             nLastRebroadcast = GetTime();
2882         }
2883
2884         //
2885         // Message: addr
2886         //
2887         if (fSendTrickle)
2888         {
2889             vector<CAddress> vAddr;
2890             vAddr.reserve(pto->vAddrToSend.size());
2891             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
2892             {
2893                 // returns true if wasn't already contained in the set
2894                 if (pto->setAddrKnown.insert(addr).second)
2895                 {
2896                     vAddr.push_back(addr);
2897                     // receiver rejects addr messages larger than 1000
2898                     if (vAddr.size() >= 1000)
2899                     {
2900                         pto->PushMessage("addr", vAddr);
2901                         vAddr.clear();
2902                     }
2903                 }
2904             }
2905             pto->vAddrToSend.clear();
2906             if (!vAddr.empty())
2907                 pto->PushMessage("addr", vAddr);
2908         }
2909
2910
2911         //
2912         // Message: inventory
2913         //
2914         vector<CInv> vInv;
2915         vector<CInv> vInvWait;
2916         CRITICAL_BLOCK(pto->cs_inventory)
2917         {
2918             vInv.reserve(pto->vInventoryToSend.size());
2919             vInvWait.reserve(pto->vInventoryToSend.size());
2920             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
2921             {
2922                 if (pto->setInventoryKnown.count(inv))
2923                     continue;
2924
2925                 // trickle out tx inv to protect privacy
2926                 if (inv.type == MSG_TX && !fSendTrickle)
2927                 {
2928                     // 1/4 of tx invs blast to all immediately
2929                     static uint256 hashSalt;
2930                     if (hashSalt == 0)
2931                         RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2932                     uint256 hashRand = inv.hash ^ hashSalt;
2933                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
2934                     bool fTrickleWait = ((hashRand & 3) != 0);
2935
2936                     // always trickle our own transactions
2937                     if (!fTrickleWait)
2938                     {
2939                         CWalletTx wtx;
2940                         if (GetTransaction(inv.hash, wtx))
2941                             if (wtx.fFromMe)
2942                                 fTrickleWait = true;
2943                     }
2944
2945                     if (fTrickleWait)
2946                     {
2947                         vInvWait.push_back(inv);
2948                         continue;
2949                     }
2950                 }
2951
2952                 // returns true if wasn't already contained in the set
2953                 if (pto->setInventoryKnown.insert(inv).second)
2954                 {
2955                     vInv.push_back(inv);
2956                     if (vInv.size() >= 1000)
2957                     {
2958                         pto->PushMessage("inv", vInv);
2959                         vInv.clear();
2960                     }
2961                 }
2962             }
2963             pto->vInventoryToSend = vInvWait;
2964         }
2965         if (!vInv.empty())
2966             pto->PushMessage("inv", vInv);
2967
2968
2969         //
2970         // Message: getdata
2971         //
2972         vector<CInv> vGetData;
2973         int64 nNow = GetTime() * 1000000;
2974         CTxDB txdb("r");
2975         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
2976         {
2977             const CInv& inv = (*pto->mapAskFor.begin()).second;
2978             if (!AlreadyHave(txdb, inv))
2979             {
2980                 printf("sending getdata: %s\n", inv.ToString().c_str());
2981                 vGetData.push_back(inv);
2982                 if (vGetData.size() >= 1000)
2983                 {
2984                     pto->PushMessage("getdata", vGetData);
2985                     vGetData.clear();
2986                 }
2987             }
2988             mapAlreadyAskedFor[inv] = nNow;
2989             pto->mapAskFor.erase(pto->mapAskFor.begin());
2990         }
2991         if (!vGetData.empty())
2992             pto->PushMessage("getdata", vGetData);
2993
2994     }
2995     return true;
2996 }
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011 //////////////////////////////////////////////////////////////////////////////
3012 //
3013 // BitcoinMiner
3014 //
3015
3016 int static FormatHashBlocks(void* pbuffer, unsigned int len)
3017 {
3018     unsigned char* pdata = (unsigned char*)pbuffer;
3019     unsigned int blocks = 1 + ((len + 8) / 64);
3020     unsigned char* pend = pdata + 64 * blocks;
3021     memset(pdata + len, 0, 64 * blocks - len);
3022     pdata[len] = 0x80;
3023     unsigned int bits = len * 8;
3024     pend[-1] = (bits >> 0) & 0xff;
3025     pend[-2] = (bits >> 8) & 0xff;
3026     pend[-3] = (bits >> 16) & 0xff;
3027     pend[-4] = (bits >> 24) & 0xff;
3028     return blocks;
3029 }
3030
3031 static const unsigned int pSHA256InitState[8] =
3032 {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
3033
3034 void SHA256Transform(void* pstate, void* pinput, const void* pinit)
3035 {
3036     SHA256_CTX ctx;
3037     unsigned char data[64];
3038
3039     SHA256_Init(&ctx);
3040
3041     for (int i = 0; i < 16; i++)
3042         ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
3043
3044     for (int i = 0; i < 8; i++)
3045         ctx.h[i] = ((uint32_t*)pinit)[i];
3046
3047     SHA256_Update(&ctx, data, sizeof(data));
3048     for (int i = 0; i < 8; i++) 
3049         ((uint32_t*)pstate)[i] = ctx.h[i];
3050 }
3051
3052 //
3053 // ScanHash scans nonces looking for a hash with at least some zero bits.
3054 // It operates on big endian data.  Caller does the byte reversing.
3055 // All input buffers are 16-byte aligned.  nNonce is usually preserved
3056 // between calls, but periodically or if nNonce is 0xffff0000 or above,
3057 // the block is rebuilt and nNonce starts over at zero.
3058 //
3059 unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone)
3060 {
3061     unsigned int& nNonce = *(unsigned int*)(pdata + 12);
3062     for (;;)
3063     {
3064         // Crypto++ SHA-256
3065         // Hash pdata using pmidstate as the starting state into
3066         // preformatted buffer phash1, then hash phash1 into phash
3067         nNonce++;
3068         SHA256Transform(phash1, pdata, pmidstate);
3069         SHA256Transform(phash, phash1, pSHA256InitState);
3070
3071         // Return the nonce if the hash has at least some zero bits,
3072         // caller will check if it has enough to reach the target
3073         if (((unsigned short*)phash)[14] == 0)
3074             return nNonce;
3075
3076         // If nothing found after trying for a while, return -1
3077         if ((nNonce & 0xffff) == 0)
3078         {
3079             nHashesDone = 0xffff+1;
3080             return -1;
3081         }
3082     }
3083 }
3084
3085 // Some explaining would be appreciated
3086 class COrphan
3087 {
3088 public:
3089     CTransaction* ptx;
3090     set<uint256> setDependsOn;
3091     double dPriority;
3092
3093     COrphan(CTransaction* ptxIn)
3094     {
3095         ptx = ptxIn;
3096         dPriority = 0;
3097     }
3098
3099     void print() const
3100     {
3101         printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority);
3102         BOOST_FOREACH(uint256 hash, setDependsOn)
3103             printf("   setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
3104     }
3105 };
3106
3107
3108 uint64 nLastBlockTx = 0;
3109 uint64 nLastBlockSize = 0;
3110
3111 CBlock* CreateNewBlock(CReserveKey& reservekey)
3112 {
3113     CBlockIndex* pindexPrev = pindexBest;
3114
3115     // Create new block
3116     auto_ptr<CBlock> pblock(new CBlock());
3117     if (!pblock.get())
3118         return NULL;
3119
3120     // Create coinbase tx
3121     CTransaction txNew;
3122     txNew.vin.resize(1);
3123     txNew.vin[0].prevout.SetNull();
3124     txNew.vout.resize(1);
3125     txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
3126
3127     // Add our coinbase tx as first transaction
3128     pblock->vtx.push_back(txNew);
3129
3130     // Collect memory pool transactions into the block
3131     int64 nFees = 0;
3132     CRITICAL_BLOCK(cs_main)
3133     CRITICAL_BLOCK(cs_mapTransactions)
3134     {
3135         CTxDB txdb("r");
3136
3137         // Priority order to process transactions
3138         list<COrphan> vOrphan; // list memory doesn't move
3139         map<uint256, vector<COrphan*> > mapDependers;
3140         multimap<double, CTransaction*> mapPriority;
3141         for (map<uint256, CTransaction>::iterator mi = mapTransactions.begin(); mi != mapTransactions.end(); ++mi)
3142         {
3143             CTransaction& tx = (*mi).second;
3144             if (tx.IsCoinBase() || !tx.IsFinal())
3145                 continue;
3146
3147             COrphan* porphan = NULL;
3148             double dPriority = 0;
3149             BOOST_FOREACH(const CTxIn& txin, tx.vin)
3150             {
3151                 // Read prev transaction
3152                 CTransaction txPrev;
3153                 CTxIndex txindex;
3154                 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
3155                 {
3156                     // Has to wait for dependencies
3157                     if (!porphan)
3158                     {
3159                         // Use list for automatic deletion
3160                         vOrphan.push_back(COrphan(&tx));
3161                         porphan = &vOrphan.back();
3162                     }
3163                     mapDependers[txin.prevout.hash].push_back(porphan);
3164                     porphan->setDependsOn.insert(txin.prevout.hash);
3165                     continue;
3166                 }
3167                 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
3168
3169                 // Read block header
3170                 int nConf = txindex.GetDepthInMainChain();
3171
3172                 dPriority += (double)nValueIn * nConf;
3173
3174                 if (fDebug && GetBoolArg("-printpriority"))
3175                     printf("priority     nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority);
3176             }
3177
3178             // Priority is sum(valuein * age) / txsize
3179             dPriority /= ::GetSerializeSize(tx, SER_NETWORK);
3180
3181             if (porphan)
3182                 porphan->dPriority = dPriority;
3183             else
3184                 mapPriority.insert(make_pair(-dPriority, &(*mi).second));
3185
3186             if (fDebug && GetBoolArg("-printpriority"))
3187             {
3188                 printf("priority %-20.1f %s\n%s", dPriority, tx.GetHash().ToString().substr(0,10).c_str(), tx.ToString().c_str());
3189                 if (porphan)
3190                     porphan->print();
3191                 printf("\n");
3192             }
3193         }
3194
3195         // Collect transactions into block
3196         map<uint256, CTxIndex> mapTestPool;
3197         uint64 nBlockSize = 1000;
3198         uint64 nBlockTx = 0;
3199         int nBlockSigOps = 100;
3200         while (!mapPriority.empty())
3201         {
3202             // Take highest priority transaction off priority queue
3203             double dPriority = -(*mapPriority.begin()).first;
3204             CTransaction& tx = *(*mapPriority.begin()).second;
3205             mapPriority.erase(mapPriority.begin());
3206
3207             // Size limits
3208             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK);
3209             if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN)
3210                 continue;
3211
3212             // Legacy limits on sigOps:
3213             int nTxSigOps = tx.GetLegacySigOpCount();
3214             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
3215                 continue;
3216
3217             // Transaction fee required depends on block size
3218             bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority));
3219             int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, GMF_BLOCK);
3220
3221             // Connecting shouldn't fail due to dependency on other memory pool transactions
3222             // because we're already processing them in order of dependency
3223             map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
3224             MapPrevTx mapInputs;
3225             bool fInvalid;
3226             if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
3227                 continue;
3228
3229             int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
3230             if (nTxFees < nMinFee)
3231                 continue;
3232
3233             nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
3234             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
3235                 continue;
3236
3237             if (!tx.ConnectInputs(mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
3238                 continue;
3239             mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
3240             swap(mapTestPool, mapTestPoolTmp);
3241
3242             // Added
3243             pblock->vtx.push_back(tx);
3244             nBlockSize += nTxSize;
3245             ++nBlockTx;
3246             nBlockSigOps += nTxSigOps;
3247             nFees += nTxFees;
3248
3249             // Add transactions that depend on this one to the priority queue
3250             uint256 hash = tx.GetHash();
3251             if (mapDependers.count(hash))
3252             {
3253                 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
3254                 {
3255                     if (!porphan->setDependsOn.empty())
3256                     {
3257                         porphan->setDependsOn.erase(hash);
3258                         if (porphan->setDependsOn.empty())
3259                             mapPriority.insert(make_pair(-porphan->dPriority, porphan->ptx));
3260                     }
3261                 }
3262             }
3263         }
3264
3265         nLastBlockTx = nBlockTx;
3266         nLastBlockSize = nBlockSize;
3267         printf("CreateNewBlock(): total size %lu\n", nBlockSize);
3268
3269     }
3270     pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees);
3271
3272     // Fill in header
3273     pblock->hashPrevBlock  = pindexPrev->GetBlockHash();
3274     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
3275     pblock->UpdateTime(pindexPrev);
3276     pblock->nBits          = GetNextWorkRequired(pindexPrev, pblock.get());
3277     pblock->nNonce         = 0;
3278
3279     return pblock.release();
3280 }
3281
3282
3283 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
3284 {
3285     // Update nExtraNonce
3286     static uint256 hashPrevBlock;
3287     if (hashPrevBlock != pblock->hashPrevBlock)
3288     {
3289         nExtraNonce = 0;
3290         hashPrevBlock = pblock->hashPrevBlock;
3291     }
3292     ++nExtraNonce;
3293     pblock->vtx[0].vin[0].scriptSig = (CScript() << pblock->nTime << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
3294     assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
3295
3296     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
3297 }
3298
3299
3300 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
3301 {
3302     //
3303     // Prebuild hash buffers
3304     //
3305     struct
3306     {
3307         struct unnamed2
3308         {
3309             int nVersion;
3310             uint256 hashPrevBlock;
3311             uint256 hashMerkleRoot;
3312             unsigned int nTime;
3313             unsigned int nBits;
3314             unsigned int nNonce;
3315         }
3316         block;
3317         unsigned char pchPadding0[64];
3318         uint256 hash1;
3319         unsigned char pchPadding1[64];
3320     }
3321     tmp;
3322     memset(&tmp, 0, sizeof(tmp));
3323
3324     tmp.block.nVersion       = pblock->nVersion;
3325     tmp.block.hashPrevBlock  = pblock->hashPrevBlock;
3326     tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
3327     tmp.block.nTime          = pblock->nTime;
3328     tmp.block.nBits          = pblock->nBits;
3329     tmp.block.nNonce         = pblock->nNonce;
3330
3331     FormatHashBlocks(&tmp.block, sizeof(tmp.block));
3332     FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
3333
3334     // Byte swap all the input buffer
3335     for (unsigned int i = 0; i < sizeof(tmp)/4; i++)
3336         ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
3337
3338     // Precalc the first half of the first hash, which stays constant
3339     SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
3340
3341     memcpy(pdata, &tmp.block, 128);
3342     memcpy(phash1, &tmp.hash1, 64);
3343 }
3344
3345
3346 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
3347 {
3348     uint256 hash = pblock->GetHash();
3349     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3350
3351     if (hash > hashTarget)
3352         return false;
3353
3354     //// debug print
3355     printf("BitcoinMiner:\n");
3356     printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
3357     pblock->print();
3358     printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3359     printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
3360
3361     // Found a solution
3362     CRITICAL_BLOCK(cs_main)
3363     {
3364         if (pblock->hashPrevBlock != hashBestChain)
3365             return error("BitcoinMiner : generated block is stale");
3366
3367         // Remove key from key pool
3368         reservekey.KeepKey();
3369
3370         // Track how many getdata requests this block gets
3371         CRITICAL_BLOCK(wallet.cs_wallet)
3372             wallet.mapRequestCount[pblock->GetHash()] = 0;
3373
3374         // Process this block the same as if we had received it from another node
3375         if (!ProcessBlock(NULL, pblock))
3376             return error("BitcoinMiner : ProcessBlock, block not accepted");
3377     }
3378
3379     return true;
3380 }
3381
3382 void static ThreadBitcoinMiner(void* parg);
3383
3384 static bool fGenerateBitcoins = false;
3385 static bool fLimitProcessors = false;
3386 static int nLimitProcessors = -1;
3387
3388 void static BitcoinMiner(CWallet *pwallet)
3389 {
3390     printf("BitcoinMiner started\n");
3391     SetThreadPriority(THREAD_PRIORITY_LOWEST);
3392
3393     // Each thread has its own key and counter
3394     CReserveKey reservekey(pwallet);
3395     unsigned int nExtraNonce = 0;
3396
3397     while (fGenerateBitcoins)
3398     {
3399         if (AffinityBugWorkaround(ThreadBitcoinMiner))
3400             return;
3401         if (fShutdown)
3402             return;
3403         while (vNodes.empty() || IsInitialBlockDownload())
3404         {
3405             Sleep(1000);
3406             if (fShutdown)
3407                 return;
3408             if (!fGenerateBitcoins)
3409                 return;
3410         }
3411
3412
3413         //
3414         // Create new block
3415         //
3416         unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
3417         CBlockIndex* pindexPrev = pindexBest;
3418
3419         auto_ptr<CBlock> pblock(CreateNewBlock(reservekey));
3420         if (!pblock.get())
3421             return;
3422         IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
3423
3424         printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
3425
3426
3427         //
3428         // Prebuild hash buffers
3429         //
3430         char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
3431         char pdatabuf[128+16];    char* pdata     = alignup<16>(pdatabuf);
3432         char phash1buf[64+16];    char* phash1    = alignup<16>(phash1buf);
3433
3434         FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1);
3435
3436         unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
3437         unsigned int& nBlockBits = *(unsigned int*)(pdata + 64 + 8);
3438         unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
3439
3440
3441         //
3442         // Search
3443         //
3444         int64 nStart = GetTime();
3445         uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3446         uint256 hashbuf[2];
3447         uint256& hash = *alignup<16>(hashbuf);
3448         loop
3449         {
3450             unsigned int nHashesDone = 0;
3451             unsigned int nNonceFound;
3452
3453             // Crypto++ SHA-256
3454             nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1,
3455                                             (char*)&hash, nHashesDone);
3456
3457             // Check if something found
3458             if (nNonceFound != -1)
3459             {
3460                 for (unsigned int i = 0; i < sizeof(hash)/4; i++)
3461                     ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]);
3462
3463                 if (hash <= hashTarget)
3464                 {
3465                     // Found a solution
3466                     pblock->nNonce = ByteReverse(nNonceFound);
3467                     assert(hash == pblock->GetHash());
3468
3469                     SetThreadPriority(THREAD_PRIORITY_NORMAL);
3470                     CheckWork(pblock.get(), *pwalletMain, reservekey);
3471                     SetThreadPriority(THREAD_PRIORITY_LOWEST);
3472                     break;
3473                 }
3474             }
3475
3476             // Meter hashes/sec
3477             static int64 nHashCounter;
3478             if (nHPSTimerStart == 0)
3479             {
3480                 nHPSTimerStart = GetTimeMillis();
3481                 nHashCounter = 0;
3482             }
3483             else
3484                 nHashCounter += nHashesDone;
3485             if (GetTimeMillis() - nHPSTimerStart > 4000)
3486             {
3487                 static CCriticalSection cs;
3488                 CRITICAL_BLOCK(cs)
3489                 {
3490                     if (GetTimeMillis() - nHPSTimerStart > 4000)
3491                     {
3492                         dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
3493                         nHPSTimerStart = GetTimeMillis();
3494                         nHashCounter = 0;
3495                         string strStatus = strprintf("    %.0f khash/s", dHashesPerSec/1000.0);
3496                         UIThreadCall(boost::bind(CalledSetStatusBar, strStatus, 0));
3497                         static int64 nLogTime;
3498                         if (GetTime() - nLogTime > 30 * 60)
3499                         {
3500                             nLogTime = GetTime();
3501                             printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3502                             printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[THREAD_MINER], dHashesPerSec/1000.0);
3503                         }
3504                     }
3505                 }
3506             }
3507
3508             // Check for stop or if block needs to be rebuilt
3509             if (fShutdown)
3510                 return;
3511             if (!fGenerateBitcoins)
3512                 return;
3513             if (fLimitProcessors && vnThreadsRunning[THREAD_MINER] > nLimitProcessors)
3514                 return;
3515             if (vNodes.empty())
3516                 break;
3517             if (nBlockNonce >= 0xffff0000)
3518                 break;
3519             if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
3520                 break;
3521             if (pindexPrev != pindexBest)
3522                 break;
3523
3524             // Update nTime every few seconds
3525             pblock->UpdateTime(pindexPrev);
3526             nBlockTime = ByteReverse(pblock->nTime);
3527             if (fTestNet)
3528             {
3529                 // Changing pblock->nTime can change work required on testnet:
3530                 nBlockBits = ByteReverse(pblock->nBits);
3531                 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3532             }
3533         }
3534     }
3535 }
3536
3537 void static ThreadBitcoinMiner(void* parg)
3538 {
3539     CWallet* pwallet = (CWallet*)parg;
3540     try
3541     {
3542         vnThreadsRunning[THREAD_MINER]++;
3543         BitcoinMiner(pwallet);
3544         vnThreadsRunning[THREAD_MINER]--;
3545     }
3546     catch (std::exception& e) {
3547         vnThreadsRunning[THREAD_MINER]--;
3548         PrintException(&e, "ThreadBitcoinMiner()");
3549     } catch (...) {
3550         vnThreadsRunning[THREAD_MINER]--;
3551         PrintException(NULL, "ThreadBitcoinMiner()");
3552     }
3553     UIThreadCall(boost::bind(CalledSetStatusBar, "", 0));
3554     nHPSTimerStart = 0;
3555     if (vnThreadsRunning[THREAD_MINER] == 0)
3556         dHashesPerSec = 0;
3557     printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[THREAD_MINER]);
3558 }
3559
3560
3561 void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
3562 {
3563     fGenerateBitcoins = fGenerate;
3564     nLimitProcessors = GetArg("-genproclimit", -1);
3565     if (nLimitProcessors == 0)
3566         fGenerateBitcoins = false;
3567     fLimitProcessors = (nLimitProcessors != -1);
3568
3569     if (fGenerate)
3570     {
3571         int nProcessors = boost::thread::hardware_concurrency();
3572         printf("%d processors\n", nProcessors);
3573         if (nProcessors < 1)
3574             nProcessors = 1;
3575         if (fLimitProcessors && nProcessors > nLimitProcessors)
3576             nProcessors = nLimitProcessors;
3577         int nAddThreads = nProcessors - vnThreadsRunning[THREAD_MINER];
3578         printf("Starting %d BitcoinMiner threads\n", nAddThreads);
3579         for (int i = 0; i < nAddThreads; i++)
3580         {
3581             if (!CreateThread(ThreadBitcoinMiner, pwallet))
3582                 printf("Error: CreateThread(ThreadBitcoinMiner) failed\n");
3583             Sleep(10);
3584         }
3585     }
3586 }