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