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