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