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