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