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