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