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