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