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