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