Merge branch 'bugfix_areinpstd' of https://github.com/luke-jr/bitcoin
[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 double dHashesPerSec;
57 int64 nHPSTimerStart;
58
59 // Settings
60 int fGenerateBitcoins = false;
61 int64 nTransactionFee = 0;
62 int fLimitProcessors = false;
63 int nLimitProcessors = 1;
64 int fMinimizeToTray = true;
65 int fMinimizeOnClose = true;
66 #if USE_UPNP
67 int fUseUPnP = true;
68 #else
69 int fUseUPnP = false;
70 #endif
71
72
73 //////////////////////////////////////////////////////////////////////////////
74 //
75 // dispatching functions
76 //
77
78 // These functions dispatch to one or all registered wallets
79
80
81 void RegisterWallet(CWallet* pwalletIn)
82 {
83     CRITICAL_BLOCK(cs_setpwalletRegistered)
84     {
85         setpwalletRegistered.insert(pwalletIn);
86     }
87 }
88
89 void UnregisterWallet(CWallet* pwalletIn)
90 {
91     CRITICAL_BLOCK(cs_setpwalletRegistered)
92     {
93         setpwalletRegistered.erase(pwalletIn);
94     }
95 }
96
97 // check whether the passed transaction is from us
98 bool static IsFromMe(CTransaction& tx)
99 {
100     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
101         if (pwallet->IsFromMe(tx))
102             return true;
103     return false;
104 }
105
106 // get the wallet transaction with the given hash (if it exists)
107 bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
108 {
109     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
110         if (pwallet->GetTransaction(hashTx,wtx))
111             return true;
112     return false;
113 }
114
115 // erases transaction with the given hash from all wallets
116 void static EraseFromWallets(uint256 hash)
117 {
118     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
119         pwallet->EraseFromWallet(hash);
120 }
121
122 // make sure all wallets know about the given transaction, in the given block
123 void static SyncWithWallets(const CTransaction& tx, const CBlock* pblock = NULL, bool fUpdate = false)
124 {
125     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
126         pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate);
127 }
128
129 // notify wallets about a new best chain
130 void static SetBestChain(const CBlockLocator& loc)
131 {
132     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
133         pwallet->SetBestChain(loc);
134 }
135
136 // notify wallets about an updated transaction
137 void static UpdatedTransaction(const uint256& hashTx)
138 {
139     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
140         pwallet->UpdatedTransaction(hashTx);
141 }
142
143 // dump all wallets
144 void static PrintWallets(const CBlock& block)
145 {
146     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
147         pwallet->PrintWallet(block);
148 }
149
150 // notify wallets about an incoming inventory (for request counts)
151 void static Inventory(const uint256& hash)
152 {
153     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
154         pwallet->Inventory(hash);
155 }
156
157 // ask wallets to resend their transactions
158 void static ResendWalletTransactions()
159 {
160     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
161         pwallet->ResendWalletTransactions();
162 }
163
164
165
166
167
168
169
170 //////////////////////////////////////////////////////////////////////////////
171 //
172 // mapOrphanTransactions
173 //
174
175 void static AddOrphanTx(const CDataStream& vMsg)
176 {
177     CTransaction tx;
178     CDataStream(vMsg) >> tx;
179     uint256 hash = tx.GetHash();
180     if (mapOrphanTransactions.count(hash))
181         return;
182     CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg);
183     BOOST_FOREACH(const CTxIn& txin, tx.vin)
184         mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg));
185 }
186
187 void static EraseOrphanTx(uint256 hash)
188 {
189     if (!mapOrphanTransactions.count(hash))
190         return;
191     const CDataStream* pvMsg = mapOrphanTransactions[hash];
192     CTransaction tx;
193     CDataStream(*pvMsg) >> tx;
194     BOOST_FOREACH(const CTxIn& txin, tx.vin)
195     {
196         for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(txin.prevout.hash);
197              mi != mapOrphanTransactionsByPrev.upper_bound(txin.prevout.hash);)
198         {
199             if ((*mi).second == pvMsg)
200                 mapOrphanTransactionsByPrev.erase(mi++);
201             else
202                 mi++;
203         }
204     }
205     delete pvMsg;
206     mapOrphanTransactions.erase(hash);
207 }
208
209
210
211
212
213
214
215
216 //////////////////////////////////////////////////////////////////////////////
217 //
218 // CTransaction and CTxIndex
219 //
220
221 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)
222 {
223     SetNull();
224     if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
225         return false;
226     if (!ReadFromDisk(txindexRet.pos))
227         return false;
228     if (prevout.n >= vout.size())
229     {
230         SetNull();
231         return false;
232     }
233     return true;
234 }
235
236 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout)
237 {
238     CTxIndex txindex;
239     return ReadFromDisk(txdb, prevout, txindex);
240 }
241
242 bool CTransaction::ReadFromDisk(COutPoint prevout)
243 {
244     CTxDB txdb("r");
245     CTxIndex txindex;
246     return ReadFromDisk(txdb, prevout, txindex);
247 }
248
249 bool CTransaction::IsStandard() const
250 {
251     BOOST_FOREACH(const CTxIn& txin, vin)
252     {
253         // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG
254         // pay-to-script-hash, which is 3 ~80-byte signatures, 3
255         // ~65-byte public keys, plus a few script ops.
256         if (txin.scriptSig.size() > 500)
257             return false;
258         if (!txin.scriptSig.IsPushOnly())
259             return false;
260     }
261     BOOST_FOREACH(const CTxOut& txout, vout)
262         if (!::IsStandard(txout.scriptPubKey))
263             return false;
264     return true;
265 }
266
267 //
268 // Check transaction inputs, and make sure any
269 // pay-to-script-hash transactions are evaluating IsStandard scripts
270 //
271 // Why bother? To avoid denial-of-service attacks; an attacker
272 // can submit a standard HASH... OP_EQUAL transaction,
273 // which will get accepted into blocks. The redemption
274 // script can be anything; an attacker could use a very
275 // expensive-to-check-upon-redemption script like:
276 //   DUP CHECKSIG DROP ... repeated 100 times... OP_1
277 //
278 bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const
279 {
280     if (IsCoinBase())
281         return true; // Coinbases don't use vin normally
282
283     for (int i = 0; i < vin.size(); i++)
284     {
285         const CTxOut& prev = GetOutputFor(vin[i], mapInputs);
286
287         vector<vector<unsigned char> > vSolutions;
288         txnouttype whichType;
289         // get the scriptPubKey corresponding to this input:
290         const CScript& prevScript = prev.scriptPubKey;
291         if (!Solver(prevScript, whichType, vSolutions))
292             return false;
293         if (whichType == TX_SCRIPTHASH)
294         {
295             vector<vector<unsigned char> > stack;
296
297             if (!EvalScript(stack, vin[i].scriptSig, *this, i, 0))
298                 return false;
299             if (stack.empty())
300                 return false;
301             CScript subscript(stack.back().begin(), stack.back().end());
302             if (!::IsStandard(subscript))
303                 return false;
304         }
305     }
306
307     return true;
308 }
309
310 int
311 CTransaction::GetLegacySigOpCount() const
312 {
313     int nSigOps = 0;
314     BOOST_FOREACH(const CTxIn& txin, vin)
315     {
316         nSigOps += txin.scriptSig.GetSigOpCount(false);
317     }
318     BOOST_FOREACH(const CTxOut& txout, vout)
319     {
320         nSigOps += txout.scriptPubKey.GetSigOpCount(false);
321     }
322     return nSigOps;
323 }
324
325
326 int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
327 {
328     if (fClient)
329     {
330         if (hashBlock == 0)
331             return 0;
332     }
333     else
334     {
335         CBlock blockTmp;
336         if (pblock == NULL)
337         {
338             // Load the block this tx is in
339             CTxIndex txindex;
340             if (!CTxDB("r").ReadTxIndex(GetHash(), txindex))
341                 return 0;
342             if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos))
343                 return 0;
344             pblock = &blockTmp;
345         }
346
347         // Update the tx's hashBlock
348         hashBlock = pblock->GetHash();
349
350         // Locate the transaction
351         for (nIndex = 0; nIndex < pblock->vtx.size(); nIndex++)
352             if (pblock->vtx[nIndex] == *(CTransaction*)this)
353                 break;
354         if (nIndex == pblock->vtx.size())
355         {
356             vMerkleBranch.clear();
357             nIndex = -1;
358             printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
359             return 0;
360         }
361
362         // Fill in merkle branch
363         vMerkleBranch = pblock->GetMerkleBranch(nIndex);
364     }
365
366     // Is the tx in a block that's in the main chain
367     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
368     if (mi == mapBlockIndex.end())
369         return 0;
370     CBlockIndex* pindex = (*mi).second;
371     if (!pindex || !pindex->IsInMainChain())
372         return 0;
373
374     return pindexBest->nHeight - pindex->nHeight + 1;
375 }
376
377
378
379
380
381
382
383 bool CTransaction::CheckTransaction() const
384 {
385     // Basic checks that don't depend on any context
386     if (vin.empty())
387         return DoS(10, error("CTransaction::CheckTransaction() : vin empty"));
388     if (vout.empty())
389         return DoS(10, error("CTransaction::CheckTransaction() : vout empty"));
390     // Size limits
391     if (::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
392         return DoS(100, error("CTransaction::CheckTransaction() : size limits failed"));
393
394     // Check for negative or overflow output values
395     int64 nValueOut = 0;
396     BOOST_FOREACH(const CTxOut& txout, vout)
397     {
398         if (txout.nValue < 0)
399             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue negative"));
400         if (txout.nValue > MAX_MONEY)
401             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));
402         nValueOut += txout.nValue;
403         if (!MoneyRange(nValueOut))
404             return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));
405     }
406
407     // Check for duplicate inputs
408     set<COutPoint> vInOutPoints;
409     BOOST_FOREACH(const CTxIn& txin, vin)
410     {
411         if (vInOutPoints.count(txin.prevout))
412             return false;
413         vInOutPoints.insert(txin.prevout);
414     }
415
416     if (IsCoinBase())
417     {
418         if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
419             return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size"));
420     }
421     else
422     {
423         BOOST_FOREACH(const CTxIn& txin, vin)
424             if (txin.prevout.IsNull())
425                 return DoS(10, error("CTransaction::CheckTransaction() : prevout is null"));
426     }
427
428     return true;
429 }
430
431 bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs)
432 {
433     if (pfMissingInputs)
434         *pfMissingInputs = false;
435
436     if (!CheckTransaction())
437         return error("AcceptToMemoryPool() : CheckTransaction failed");
438
439     // Coinbase is only valid in a block, not as a loose transaction
440     if (IsCoinBase())
441         return DoS(100, error("AcceptToMemoryPool() : coinbase as individual tx"));
442
443     // To help v0.1.5 clients who would see it as a negative number
444     if ((int64)nLockTime > std::numeric_limits<int>::max())
445         return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet");
446
447     // Rather not work on nonstandard transactions (unless -testnet)
448     if (!fTestNet && !IsStandard())
449         return error("AcceptToMemoryPool() : nonstandard transaction type");
450
451     // Do we already have it?
452     uint256 hash = GetHash();
453     CRITICAL_BLOCK(cs_mapTransactions)
454         if (mapTransactions.count(hash))
455             return false;
456     if (fCheckInputs)
457         if (txdb.ContainsTx(hash))
458             return false;
459
460     // Check for conflicts with in-memory transactions
461     CTransaction* ptxOld = NULL;
462     for (int i = 0; i < vin.size(); i++)
463     {
464         COutPoint outpoint = vin[i].prevout;
465         if (mapNextTx.count(outpoint))
466         {
467             // Disable replacement feature for now
468             return false;
469
470             // Allow replacing with a newer version of the same transaction
471             if (i != 0)
472                 return false;
473             ptxOld = mapNextTx[outpoint].ptx;
474             if (ptxOld->IsFinal())
475                 return false;
476             if (!IsNewerThan(*ptxOld))
477                 return false;
478             for (int i = 0; i < vin.size(); i++)
479             {
480                 COutPoint outpoint = vin[i].prevout;
481                 if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
482                     return false;
483             }
484             break;
485         }
486     }
487
488     if (fCheckInputs)
489     {
490         MapPrevTx mapInputs;
491         map<uint256, CTxIndex> mapUnused;
492         bool fInvalid = false;
493         if (!FetchInputs(txdb, mapUnused, false, false, mapInputs, fInvalid))
494         {
495             if (fInvalid)
496                 return error("AcceptToMemoryPool() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str());
497             if (pfMissingInputs)
498                 *pfMissingInputs = true;
499             return error("AcceptToMemoryPool() : FetchInputs failed %s", hash.ToString().substr(0,10).c_str());
500         }
501
502         // Check for non-standard pay-to-script-hash in inputs
503         if (!AreInputsStandard(mapInputs) && !fTestNet)
504             return error("AcceptToMemoryPool() : nonstandard transaction input");
505
506         int64 nFees = GetValueIn(mapInputs)-GetValueOut();
507         int nSigOps = GetSigOpCount(mapInputs);
508         unsigned int nSize = ::GetSerializeSize(*this, SER_NETWORK);
509
510         // Don't accept it if it can't get into a block
511         if (nFees < GetMinFee(1000, true, GMF_RELAY))
512             return error("AcceptToMemoryPool() : not enough fees");
513
514         // Checking ECDSA signatures is a CPU bottleneck, so to avoid denial-of-service
515         // attacks disallow transactions with more than one SigOp per 65 bytes.
516         // 65 bytes because that is the minimum size of an ECDSA signature
517         if (nSigOps > nSize / 65 || nSize < 100)
518             return error("AcceptToMemoryPool() : transaction with out-of-bounds SigOpCount");
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::GetSigOpCount(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         nSigOps += GetOutputFor(vin[i], inputs).scriptPubKey.GetSigOpCount(vin[i].scriptSig);
1034     }
1035     return nSigOps;
1036 }
1037
1038 bool CTransaction::ConnectInputs(MapPrevTx inputs,
1039                                  map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1040                                  const CBlockIndex* pindexBlock, bool fBlock, bool fMiner)
1041 {
1042     // Take over previous transactions' spent pointers
1043     // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
1044     // fMiner is true when called from the internal bitcoin miner
1045     // ... both are false when called from CTransaction::AcceptToMemoryPool
1046     if (!IsCoinBase())
1047     {
1048         int64 nValueIn = 0;
1049         int64 nFees = 0;
1050         for (int i = 0; i < vin.size(); i++)
1051         {
1052             COutPoint prevout = vin[i].prevout;
1053             assert(inputs.count(prevout.hash) > 0);
1054             CTxIndex& txindex = inputs[prevout.hash].first;
1055             CTransaction& txPrev = inputs[prevout.hash].second;
1056
1057             if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1058                 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()));
1059
1060             // If prev is coinbase, check that it's matured
1061             if (txPrev.IsCoinBase())
1062                 for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev)
1063                     if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
1064                         return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight);
1065
1066             // Check for conflicts (double-spend)
1067             // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
1068             // for an attacker to attempt to split the network.
1069             if (!txindex.vSpent[prevout.n].IsNull())
1070                 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());
1071
1072             // Check for negative or overflow input values
1073             nValueIn += txPrev.vout[prevout.n].nValue;
1074             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1075                 return DoS(100, error("ConnectInputs() : txin values out of range"));
1076
1077             bool fStrictPayToScriptHash = true;
1078             if (fBlock)
1079             {
1080                 // To avoid being on the short end of a block-chain split,
1081                 // don't do secondary validation of pay-to-script-hash transactions
1082                 // until blocks with timestamps after paytoscripthashtime:
1083                 int64 nEvalSwitchTime = GetArg("paytoscripthashtime", 1329264000); // Feb 15, 2012
1084                 fStrictPayToScriptHash = (pindexBlock->nTime >= nEvalSwitchTime);
1085             }
1086             // if !fBlock, then always be strict-- don't accept
1087             // invalid-under-new-rules pay-to-script-hash transactions into
1088             // our memory pool (don't relay them, don't include them
1089             // in blocks we mine).
1090
1091             // Skip ECDSA signature verification when connecting blocks (fBlock=true)
1092             // before the last blockchain checkpoint. This is safe because block merkle hashes are
1093             // still computed and checked, and any change will be caught at the next checkpoint.
1094             if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate())))
1095             {
1096                 // Verify signature
1097                 if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0))
1098                     return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1099             }
1100
1101             // Mark outpoints as spent
1102             txindex.vSpent[prevout.n] = posThisTx;
1103
1104             // Write back
1105             if (fBlock || fMiner)
1106             {
1107                 mapTestPool[prevout.hash] = txindex;
1108             }
1109         }
1110
1111         if (nValueIn < GetValueOut())
1112             return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1113
1114         // Tally transaction fees
1115         int64 nTxFee = nValueIn - GetValueOut();
1116         if (nTxFee < 0)
1117             return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1118         nFees += nTxFee;
1119         if (!MoneyRange(nFees))
1120             return DoS(100, error("ConnectInputs() : nFees out of range"));
1121     }
1122
1123     return true;
1124 }
1125
1126
1127 bool CTransaction::ClientConnectInputs()
1128 {
1129     if (IsCoinBase())
1130         return false;
1131
1132     // Take over previous transactions' spent pointers
1133     CRITICAL_BLOCK(cs_mapTransactions)
1134     {
1135         int64 nValueIn = 0;
1136         for (int i = 0; i < vin.size(); i++)
1137         {
1138             // Get prev tx from single transactions in memory
1139             COutPoint prevout = vin[i].prevout;
1140             if (!mapTransactions.count(prevout.hash))
1141                 return false;
1142             CTransaction& txPrev = mapTransactions[prevout.hash];
1143
1144             if (prevout.n >= txPrev.vout.size())
1145                 return false;
1146
1147             // Verify signature
1148             if (!VerifySignature(txPrev, *this, i, true, 0))
1149                 return error("ConnectInputs() : VerifySignature failed");
1150
1151             ///// this is redundant with the mapNextTx stuff, not sure which I want to get rid of
1152             ///// this has to go away now that posNext is gone
1153             // // Check for conflicts
1154             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1155             //     return error("ConnectInputs() : prev tx already used");
1156             //
1157             // // Flag outpoints as used
1158             // txPrev.vout[prevout.n].posNext = posThisTx;
1159
1160             nValueIn += txPrev.vout[prevout.n].nValue;
1161
1162             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1163                 return error("ClientConnectInputs() : txin values out of range");
1164         }
1165         if (GetValueOut() > nValueIn)
1166             return false;
1167     }
1168
1169     return true;
1170 }
1171
1172
1173
1174
1175 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1176 {
1177     // Disconnect in reverse order
1178     for (int i = vtx.size()-1; i >= 0; i--)
1179         if (!vtx[i].DisconnectInputs(txdb))
1180             return false;
1181
1182     // Update block index on disk without changing it in memory.
1183     // The memory index structure will be changed after the db commits.
1184     if (pindex->pprev)
1185     {
1186         CDiskBlockIndex blockindexPrev(pindex->pprev);
1187         blockindexPrev.hashNext = 0;
1188         if (!txdb.WriteBlockIndex(blockindexPrev))
1189             return error("DisconnectBlock() : WriteBlockIndex failed");
1190     }
1191
1192     return true;
1193 }
1194
1195 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1196 {
1197     // Check it again in case a previous version let a bad block in
1198     if (!CheckBlock())
1199         return false;
1200
1201     //// issue here: it doesn't know the version
1202     unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size());
1203
1204     map<uint256, CTxIndex> mapQueuedChanges;
1205     int64 nFees = 0;
1206     int nSigOps = 0;
1207     BOOST_FOREACH(CTransaction& tx, vtx)
1208     {
1209         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1210         nTxPos += ::GetSerializeSize(tx, SER_DISK);
1211
1212         MapPrevTx mapInputs;
1213         if (!tx.IsCoinBase())
1214         {
1215             bool fInvalid;
1216             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1217                 return false;
1218
1219             int nTxOps = tx.GetSigOpCount(mapInputs);
1220             nSigOps += nTxOps;
1221             if (nSigOps > MAX_BLOCK_SIGOPS)
1222                 return DoS(100, error("ConnectBlock() : too many sigops"));
1223             // There is a different MAX_BLOCK_SIGOPS check in AcceptBlock();
1224             // a block must satisfy both to make it into the best-chain
1225             // (AcceptBlock() is always called before ConnectBlock())
1226
1227             nFees += tx.GetValueIn(mapInputs)-tx.GetValueOut();
1228
1229             if (!tx.ConnectInputs(mapInputs, mapQueuedChanges, posThisTx, pindex, true, false))
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     // Pre-pay-to-script-hash (before version 0.6), this is how sigops
1514     // were counted; there is another check in ConnectBlock when
1515     // transaction inputs are fetched to count pay-to-script-hash sigops:
1516     int nSigOps = 0;
1517     BOOST_FOREACH(const CTransaction& tx, vtx)
1518     {
1519         nSigOps += tx.GetLegacySigOpCount();
1520     }
1521     if (nSigOps > MAX_BLOCK_SIGOPS)
1522         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
1523
1524     // Check merkleroot
1525     if (hashMerkleRoot != BuildMerkleTree())
1526         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
1527
1528     return true;
1529 }
1530
1531 bool CBlock::AcceptBlock()
1532 {
1533     // Check for duplicate
1534     uint256 hash = GetHash();
1535     if (mapBlockIndex.count(hash))
1536         return error("AcceptBlock() : block already in mapBlockIndex");
1537
1538     // Get prev block index
1539     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
1540     if (mi == mapBlockIndex.end())
1541         return DoS(10, error("AcceptBlock() : prev block not found"));
1542     CBlockIndex* pindexPrev = (*mi).second;
1543     int nHeight = pindexPrev->nHeight+1;
1544
1545     // Check proof of work
1546     if (nBits != GetNextWorkRequired(pindexPrev))
1547         return DoS(100, error("AcceptBlock() : incorrect proof of work"));
1548
1549     // Check timestamp against prev
1550     if (GetBlockTime() <= pindexPrev->GetMedianTimePast())
1551         return error("AcceptBlock() : block's timestamp is too early");
1552
1553     // Check that all transactions are finalized
1554     BOOST_FOREACH(const CTransaction& tx, vtx)
1555         if (!tx.IsFinal(nHeight, GetBlockTime()))
1556             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
1557
1558     // Check that the block chain matches the known block chain up to a checkpoint
1559     if (!Checkpoints::CheckBlock(nHeight, hash))
1560         return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight));
1561
1562     // Write block to history file
1563     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK)))
1564         return error("AcceptBlock() : out of disk space");
1565     unsigned int nFile = -1;
1566     unsigned int nBlockPos = 0;
1567     if (!WriteToDisk(nFile, nBlockPos))
1568         return error("AcceptBlock() : WriteToDisk failed");
1569     if (!AddToBlockIndex(nFile, nBlockPos))
1570         return error("AcceptBlock() : AddToBlockIndex failed");
1571
1572     // Relay inventory, but don't relay old inventory during initial block download
1573     if (hashBestChain == hash)
1574         CRITICAL_BLOCK(cs_vNodes)
1575             BOOST_FOREACH(CNode* pnode, vNodes)
1576                 if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 140700))
1577                     pnode->PushInventory(CInv(MSG_BLOCK, hash));
1578
1579     return true;
1580 }
1581
1582 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
1583 {
1584     // Check for duplicate
1585     uint256 hash = pblock->GetHash();
1586     if (mapBlockIndex.count(hash))
1587         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
1588     if (mapOrphanBlocks.count(hash))
1589         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
1590
1591     // Preliminary checks
1592     if (!pblock->CheckBlock())
1593         return error("ProcessBlock() : CheckBlock FAILED");
1594
1595     CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex);
1596     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain)
1597     {
1598         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
1599         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
1600         if (deltaTime < 0)
1601         {
1602             pfrom->Misbehaving(100);
1603             return error("ProcessBlock() : block with timestamp before last checkpoint");
1604         }
1605         CBigNum bnNewBlock;
1606         bnNewBlock.SetCompact(pblock->nBits);
1607         CBigNum bnRequired;
1608         bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime));
1609         if (bnNewBlock > bnRequired)
1610         {
1611             pfrom->Misbehaving(100);
1612             return error("ProcessBlock() : block with too little proof-of-work");
1613         }
1614     }
1615
1616
1617     // If don't already have its previous block, shunt it off to holding area until we get it
1618     if (!mapBlockIndex.count(pblock->hashPrevBlock))
1619     {
1620         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
1621         CBlock* pblock2 = new CBlock(*pblock);
1622         mapOrphanBlocks.insert(make_pair(hash, pblock2));
1623         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
1624
1625         // Ask this guy to fill in what we're missing
1626         if (pfrom)
1627             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
1628         return true;
1629     }
1630
1631     // Store to disk
1632     if (!pblock->AcceptBlock())
1633         return error("ProcessBlock() : AcceptBlock FAILED");
1634
1635     // Recursively process any orphan blocks that depended on this one
1636     vector<uint256> vWorkQueue;
1637     vWorkQueue.push_back(hash);
1638     for (int i = 0; i < vWorkQueue.size(); i++)
1639     {
1640         uint256 hashPrev = vWorkQueue[i];
1641         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
1642              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
1643              ++mi)
1644         {
1645             CBlock* pblockOrphan = (*mi).second;
1646             if (pblockOrphan->AcceptBlock())
1647                 vWorkQueue.push_back(pblockOrphan->GetHash());
1648             mapOrphanBlocks.erase(pblockOrphan->GetHash());
1649             delete pblockOrphan;
1650         }
1651         mapOrphanBlocksByPrev.erase(hashPrev);
1652     }
1653
1654     printf("ProcessBlock: ACCEPTED\n");
1655     return true;
1656 }
1657
1658
1659
1660
1661
1662
1663
1664
1665 bool CheckDiskSpace(uint64 nAdditionalBytes)
1666 {
1667     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
1668
1669     // Check for 15MB because database could create another 10MB log file at any time
1670     if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes)
1671     {
1672         fShutdown = true;
1673         string strMessage = _("Warning: Disk space is low  ");
1674         strMiscWarning = strMessage;
1675         printf("*** %s\n", strMessage.c_str());
1676         ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);
1677         CreateThread(Shutdown, NULL);
1678         return false;
1679     }
1680     return true;
1681 }
1682
1683 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
1684 {
1685     if (nFile == -1)
1686         return NULL;
1687     FILE* file = fopen(strprintf("%s/blk%04d.dat", GetDataDir().c_str(), nFile).c_str(), pszMode);
1688     if (!file)
1689         return NULL;
1690     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
1691     {
1692         if (fseek(file, nBlockPos, SEEK_SET) != 0)
1693         {
1694             fclose(file);
1695             return NULL;
1696         }
1697     }
1698     return file;
1699 }
1700
1701 static unsigned int nCurrentBlockFile = 1;
1702
1703 FILE* AppendBlockFile(unsigned int& nFileRet)
1704 {
1705     nFileRet = 0;
1706     loop
1707     {
1708         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
1709         if (!file)
1710             return NULL;
1711         if (fseek(file, 0, SEEK_END) != 0)
1712             return NULL;
1713         // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
1714         if (ftell(file) < 0x7F000000 - MAX_SIZE)
1715         {
1716             nFileRet = nCurrentBlockFile;
1717             return file;
1718         }
1719         fclose(file);
1720         nCurrentBlockFile++;
1721     }
1722 }
1723
1724 bool LoadBlockIndex(bool fAllowNew)
1725 {
1726     if (fTestNet)
1727     {
1728         hashGenesisBlock = uint256("0x00000007199508e34a9ff81e6ec0c477a4cccff2a4767a8eee39c11db367b008");
1729         bnProofOfWorkLimit = CBigNum(~uint256(0) >> 28);
1730         pchMessageStart[0] = 0xfa;
1731         pchMessageStart[1] = 0xbf;
1732         pchMessageStart[2] = 0xb5;
1733         pchMessageStart[3] = 0xda;
1734     }
1735
1736     //
1737     // Load block index
1738     //
1739     CTxDB txdb("cr");
1740     if (!txdb.LoadBlockIndex())
1741         return false;
1742     txdb.Close();
1743
1744     //
1745     // Init with genesis block
1746     //
1747     if (mapBlockIndex.empty())
1748     {
1749         if (!fAllowNew)
1750             return false;
1751
1752         // Genesis Block:
1753         // CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
1754         //   CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
1755         //     CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
1756         //     CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
1757         //   vMerkleTree: 4a5e1e
1758
1759         // Genesis block
1760         const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
1761         CTransaction txNew;
1762         txNew.vin.resize(1);
1763         txNew.vout.resize(1);
1764         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
1765         txNew.vout[0].nValue = 50 * COIN;
1766         txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
1767         CBlock block;
1768         block.vtx.push_back(txNew);
1769         block.hashPrevBlock = 0;
1770         block.hashMerkleRoot = block.BuildMerkleTree();
1771         block.nVersion = 1;
1772         block.nTime    = 1231006505;
1773         block.nBits    = 0x1d00ffff;
1774         block.nNonce   = 2083236893;
1775
1776         if (fTestNet)
1777         {
1778             block.nTime    = 1296688602;
1779             block.nBits    = 0x1d07fff8;
1780             block.nNonce   = 384568319;
1781         }
1782
1783         //// debug print
1784         printf("%s\n", block.GetHash().ToString().c_str());
1785         printf("%s\n", hashGenesisBlock.ToString().c_str());
1786         printf("%s\n", block.hashMerkleRoot.ToString().c_str());
1787         assert(block.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));
1788         block.print();
1789         assert(block.GetHash() == hashGenesisBlock);
1790
1791         // Start new block file
1792         unsigned int nFile;
1793         unsigned int nBlockPos;
1794         if (!block.WriteToDisk(nFile, nBlockPos))
1795             return error("LoadBlockIndex() : writing genesis block to disk failed");
1796         if (!block.AddToBlockIndex(nFile, nBlockPos))
1797             return error("LoadBlockIndex() : genesis block not accepted");
1798     }
1799
1800     return true;
1801 }
1802
1803
1804
1805 void PrintBlockTree()
1806 {
1807     // precompute tree structure
1808     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
1809     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
1810     {
1811         CBlockIndex* pindex = (*mi).second;
1812         mapNext[pindex->pprev].push_back(pindex);
1813         // test
1814         //while (rand() % 3 == 0)
1815         //    mapNext[pindex->pprev].push_back(pindex);
1816     }
1817
1818     vector<pair<int, CBlockIndex*> > vStack;
1819     vStack.push_back(make_pair(0, pindexGenesisBlock));
1820
1821     int nPrevCol = 0;
1822     while (!vStack.empty())
1823     {
1824         int nCol = vStack.back().first;
1825         CBlockIndex* pindex = vStack.back().second;
1826         vStack.pop_back();
1827
1828         // print split or gap
1829         if (nCol > nPrevCol)
1830         {
1831             for (int i = 0; i < nCol-1; i++)
1832                 printf("| ");
1833             printf("|\\\n");
1834         }
1835         else if (nCol < nPrevCol)
1836         {
1837             for (int i = 0; i < nCol; i++)
1838                 printf("| ");
1839             printf("|\n");
1840        }
1841         nPrevCol = nCol;
1842
1843         // print columns
1844         for (int i = 0; i < nCol; i++)
1845             printf("| ");
1846
1847         // print item
1848         CBlock block;
1849         block.ReadFromDisk(pindex);
1850         printf("%d (%u,%u) %s  %s  tx %d",
1851             pindex->nHeight,
1852             pindex->nFile,
1853             pindex->nBlockPos,
1854             block.GetHash().ToString().substr(0,20).c_str(),
1855             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
1856             block.vtx.size());
1857
1858         PrintWallets(block);
1859
1860         // put the main timechain first
1861         vector<CBlockIndex*>& vNext = mapNext[pindex];
1862         for (int i = 0; i < vNext.size(); i++)
1863         {
1864             if (vNext[i]->pnext)
1865             {
1866                 swap(vNext[0], vNext[i]);
1867                 break;
1868             }
1869         }
1870
1871         // iterate children
1872         for (int i = 0; i < vNext.size(); i++)
1873             vStack.push_back(make_pair(nCol+i, vNext[i]));
1874     }
1875 }
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886 //////////////////////////////////////////////////////////////////////////////
1887 //
1888 // CAlert
1889 //
1890
1891 map<uint256, CAlert> mapAlerts;
1892 CCriticalSection cs_mapAlerts;
1893
1894 string GetWarnings(string strFor)
1895 {
1896     int nPriority = 0;
1897     string strStatusBar;
1898     string strRPC;
1899     if (GetBoolArg("-testsafemode"))
1900         strRPC = "test";
1901
1902     // Misc warnings like out of disk space and clock is wrong
1903     if (strMiscWarning != "")
1904     {
1905         nPriority = 1000;
1906         strStatusBar = strMiscWarning;
1907     }
1908
1909     // Longer invalid proof-of-work chain
1910     if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
1911     {
1912         nPriority = 2000;
1913         strStatusBar = strRPC = "WARNING: Displayed transactions may not be correct!  You may need to upgrade, or other nodes may need to upgrade.";
1914     }
1915
1916     // Alerts
1917     CRITICAL_BLOCK(cs_mapAlerts)
1918     {
1919         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
1920         {
1921             const CAlert& alert = item.second;
1922             if (alert.AppliesToMe() && alert.nPriority > nPriority)
1923             {
1924                 nPriority = alert.nPriority;
1925                 strStatusBar = alert.strStatusBar;
1926             }
1927         }
1928     }
1929
1930     if (strFor == "statusbar")
1931         return strStatusBar;
1932     else if (strFor == "rpc")
1933         return strRPC;
1934     assert(!"GetWarnings() : invalid parameter");
1935     return "error";
1936 }
1937
1938 bool CAlert::ProcessAlert()
1939 {
1940     if (!CheckSignature())
1941         return false;
1942     if (!IsInEffect())
1943         return false;
1944
1945     CRITICAL_BLOCK(cs_mapAlerts)
1946     {
1947         // Cancel previous alerts
1948         for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();)
1949         {
1950             const CAlert& alert = (*mi).second;
1951             if (Cancels(alert))
1952             {
1953                 printf("cancelling alert %d\n", alert.nID);
1954                 mapAlerts.erase(mi++);
1955             }
1956             else if (!alert.IsInEffect())
1957             {
1958                 printf("expiring alert %d\n", alert.nID);
1959                 mapAlerts.erase(mi++);
1960             }
1961             else
1962                 mi++;
1963         }
1964
1965         // Check if this alert has been cancelled
1966         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
1967         {
1968             const CAlert& alert = item.second;
1969             if (alert.Cancels(*this))
1970             {
1971                 printf("alert already cancelled by %d\n", alert.nID);
1972                 return false;
1973             }
1974         }
1975
1976         // Add to mapAlerts
1977         mapAlerts.insert(make_pair(GetHash(), *this));
1978     }
1979
1980     printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe());
1981     MainFrameRepaint();
1982     return true;
1983 }
1984
1985
1986
1987
1988
1989
1990
1991
1992 //////////////////////////////////////////////////////////////////////////////
1993 //
1994 // Messages
1995 //
1996
1997
1998 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
1999 {
2000     switch (inv.type)
2001     {
2002     case MSG_TX:    return mapTransactions.count(inv.hash) || mapOrphanTransactions.count(inv.hash) || txdb.ContainsTx(inv.hash);
2003     case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
2004     }
2005     // Don't know what it is, just say we already got one
2006     return true;
2007 }
2008
2009
2010
2011
2012 // The message start string is designed to be unlikely to occur in normal data.
2013 // The characters are rarely used upper ascii, not valid as UTF-8, and produce
2014 // a large 4-byte int at any alignment.
2015 unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 };
2016
2017
2018 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
2019 {
2020     static map<CService, vector<unsigned char> > mapReuseKey;
2021     RandAddSeedPerfmon();
2022     if (fDebug) {
2023         printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
2024         printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size());
2025     }
2026     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
2027     {
2028         printf("dropmessagestest DROPPING RECV MESSAGE\n");
2029         return true;
2030     }
2031
2032
2033
2034
2035
2036     if (strCommand == "version")
2037     {
2038         // Each connection can only send one version message
2039         if (pfrom->nVersion != 0)
2040         {
2041             pfrom->Misbehaving(1);
2042             return false;
2043         }
2044
2045         int64 nTime;
2046         CAddress addrMe;
2047         CAddress addrFrom;
2048         uint64 nNonce = 1;
2049         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
2050         if (pfrom->nVersion == 10300)
2051             pfrom->nVersion = 300;
2052         if (pfrom->nVersion >= 106 && !vRecv.empty())
2053             vRecv >> addrFrom >> nNonce;
2054         if (pfrom->nVersion >= 106 && !vRecv.empty())
2055             vRecv >> pfrom->strSubVer;
2056         if (pfrom->nVersion >= 209 && !vRecv.empty())
2057             vRecv >> pfrom->nStartingHeight;
2058
2059         if (pfrom->nVersion == 0)
2060             return false;
2061
2062         // Disconnect if we connected to ourself
2063         if (nNonce == nLocalHostNonce && nNonce > 1)
2064         {
2065             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
2066             pfrom->fDisconnect = true;
2067             return true;
2068         }
2069
2070         // Be shy and don't send version until we hear
2071         if (pfrom->fInbound)
2072             pfrom->PushVersion();
2073
2074         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
2075
2076         AddTimeData(pfrom->addr, nTime);
2077
2078         // Change version
2079         if (pfrom->nVersion >= 209)
2080             pfrom->PushMessage("verack");
2081         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2082         if (pfrom->nVersion < 209)
2083             pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2084
2085         if (!pfrom->fInbound)
2086         {
2087             // Advertise our address
2088             if (addrLocalHost.IsRoutable() && !fUseProxy)
2089             {
2090                 CAddress addr(addrLocalHost);
2091                 addr.nTime = GetAdjustedTime();
2092                 pfrom->PushAddress(addr);
2093             }
2094
2095             // Get recent addresses
2096             if (pfrom->nVersion >= 31402 || mapAddresses.size() < 1000)
2097             {
2098                 pfrom->PushMessage("getaddr");
2099                 pfrom->fGetAddr = true;
2100             }
2101         }
2102
2103         // Ask the first connected node for block updates
2104         static int nAskedForBlocks = 0;
2105         if (!pfrom->fClient &&
2106             (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
2107              (nAskedForBlocks < 1 || vNodes.size() <= 1))
2108         {
2109             nAskedForBlocks++;
2110             pfrom->PushGetBlocks(pindexBest, uint256(0));
2111         }
2112
2113         // Relay alerts
2114         CRITICAL_BLOCK(cs_mapAlerts)
2115             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2116                 item.second.RelayTo(pfrom);
2117
2118         pfrom->fSuccessfullyConnected = true;
2119
2120         printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight);
2121
2122         cPeerBlockCounts.input(pfrom->nStartingHeight);
2123     }
2124
2125
2126     else if (pfrom->nVersion == 0)
2127     {
2128         // Must have a version message before anything else
2129         pfrom->Misbehaving(1);
2130         return false;
2131     }
2132
2133
2134     else if (strCommand == "verack")
2135     {
2136         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2137     }
2138
2139
2140     else if (strCommand == "addr")
2141     {
2142         vector<CAddress> vAddr;
2143         vRecv >> vAddr;
2144
2145         // Don't want addr from older versions unless seeding
2146         if (pfrom->nVersion < 209)
2147             return true;
2148         if (pfrom->nVersion < 31402 && mapAddresses.size() > 1000)
2149             return true;
2150         if (vAddr.size() > 1000)
2151         {
2152             pfrom->Misbehaving(20);
2153             return error("message addr size() = %d", vAddr.size());
2154         }
2155
2156         // Store the new addresses
2157         CAddrDB addrDB;
2158         addrDB.TxnBegin();
2159         int64 nNow = GetAdjustedTime();
2160         int64 nSince = nNow - 10 * 60;
2161         BOOST_FOREACH(CAddress& addr, vAddr)
2162         {
2163             if (fShutdown)
2164                 return true;
2165             // ignore IPv6 for now, since it isn't implemented anyway
2166             if (!addr.IsIPv4())
2167                 continue;
2168             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
2169                 addr.nTime = nNow - 5 * 24 * 60 * 60;
2170             AddAddress(addr, 2 * 60 * 60, &addrDB);
2171             pfrom->AddAddressKnown(addr);
2172             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
2173             {
2174                 // Relay to a limited number of other nodes
2175                 CRITICAL_BLOCK(cs_vNodes)
2176                 {
2177                     // Use deterministic randomness to send to the same nodes for 24 hours
2178                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
2179                     static uint256 hashSalt;
2180                     if (hashSalt == 0)
2181                         RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2182                     int64 hashAddr = addr.GetHash();
2183                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
2184                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
2185                     multimap<uint256, CNode*> mapMix;
2186                     BOOST_FOREACH(CNode* pnode, vNodes)
2187                     {
2188                         if (pnode->nVersion < 31402)
2189                             continue;
2190                         unsigned int nPointer;
2191                         memcpy(&nPointer, &pnode, sizeof(nPointer));
2192                         uint256 hashKey = hashRand ^ nPointer;
2193                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
2194                         mapMix.insert(make_pair(hashKey, pnode));
2195                     }
2196                     int nRelayNodes = 2;
2197                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
2198                         ((*mi).second)->PushAddress(addr);
2199                 }
2200             }
2201         }
2202         addrDB.TxnCommit();  // Save addresses (it's ok if this fails)
2203         if (vAddr.size() < 1000)
2204             pfrom->fGetAddr = false;
2205     }
2206
2207
2208     else if (strCommand == "inv")
2209     {
2210         vector<CInv> vInv;
2211         vRecv >> vInv;
2212         if (vInv.size() > 50000)
2213         {
2214             pfrom->Misbehaving(20);
2215             return error("message inv size() = %d", vInv.size());
2216         }
2217
2218         CTxDB txdb("r");
2219         BOOST_FOREACH(const CInv& inv, vInv)
2220         {
2221             if (fShutdown)
2222                 return true;
2223             pfrom->AddInventoryKnown(inv);
2224
2225             bool fAlreadyHave = AlreadyHave(txdb, inv);
2226             if (fDebug)
2227                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
2228
2229             if (!fAlreadyHave)
2230                 pfrom->AskFor(inv);
2231             else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash))
2232                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
2233
2234             // Track requests for our stuff
2235             Inventory(inv.hash);
2236         }
2237     }
2238
2239
2240     else if (strCommand == "getdata")
2241     {
2242         vector<CInv> vInv;
2243         vRecv >> vInv;
2244         if (vInv.size() > 50000)
2245         {
2246             pfrom->Misbehaving(20);
2247             return error("message getdata size() = %d", vInv.size());
2248         }
2249
2250         BOOST_FOREACH(const CInv& inv, vInv)
2251         {
2252             if (fShutdown)
2253                 return true;
2254             printf("received getdata for: %s\n", inv.ToString().c_str());
2255
2256             if (inv.type == MSG_BLOCK)
2257             {
2258                 // Send block from disk
2259                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
2260                 if (mi != mapBlockIndex.end())
2261                 {
2262                     CBlock block;
2263                     block.ReadFromDisk((*mi).second);
2264                     pfrom->PushMessage("block", block);
2265
2266                     // Trigger them to send a getblocks request for the next batch of inventory
2267                     if (inv.hash == pfrom->hashContinue)
2268                     {
2269                         // Bypass PushInventory, this must send even if redundant,
2270                         // and we want it right after the last block so they don't
2271                         // wait for other stuff first.
2272                         vector<CInv> vInv;
2273                         vInv.push_back(CInv(MSG_BLOCK, hashBestChain));
2274                         pfrom->PushMessage("inv", vInv);
2275                         pfrom->hashContinue = 0;
2276                     }
2277                 }
2278             }
2279             else if (inv.IsKnownType())
2280             {
2281                 // Send stream from relay memory
2282                 CRITICAL_BLOCK(cs_mapRelay)
2283                 {
2284                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
2285                     if (mi != mapRelay.end())
2286                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
2287                 }
2288             }
2289
2290             // Track requests for our stuff
2291             Inventory(inv.hash);
2292         }
2293     }
2294
2295
2296     else if (strCommand == "getblocks")
2297     {
2298         CBlockLocator locator;
2299         uint256 hashStop;
2300         vRecv >> locator >> hashStop;
2301
2302         // Find the last block the caller has in the main chain
2303         CBlockIndex* pindex = locator.GetBlockIndex();
2304
2305         // Send the rest of the chain
2306         if (pindex)
2307             pindex = pindex->pnext;
2308         int nLimit = 500 + locator.GetDistanceBack();
2309         unsigned int nBytes = 0;
2310         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2311         for (; pindex; pindex = pindex->pnext)
2312         {
2313             if (pindex->GetBlockHash() == hashStop)
2314             {
2315                 printf("  getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2316                 break;
2317             }
2318             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
2319             CBlock block;
2320             block.ReadFromDisk(pindex, true);
2321             nBytes += block.GetSerializeSize(SER_NETWORK);
2322             if (--nLimit <= 0 || nBytes >= SendBufferSize()/2)
2323             {
2324                 // When this block is requested, we'll send an inv that'll make them
2325                 // getblocks the next batch of inventory.
2326                 printf("  getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2327                 pfrom->hashContinue = pindex->GetBlockHash();
2328                 break;
2329             }
2330         }
2331     }
2332
2333
2334     else if (strCommand == "getheaders")
2335     {
2336         CBlockLocator locator;
2337         uint256 hashStop;
2338         vRecv >> locator >> hashStop;
2339
2340         CBlockIndex* pindex = NULL;
2341         if (locator.IsNull())
2342         {
2343             // If locator is null, return the hashStop block
2344             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
2345             if (mi == mapBlockIndex.end())
2346                 return true;
2347             pindex = (*mi).second;
2348         }
2349         else
2350         {
2351             // Find the last block the caller has in the main chain
2352             pindex = locator.GetBlockIndex();
2353             if (pindex)
2354                 pindex = pindex->pnext;
2355         }
2356
2357         vector<CBlock> vHeaders;
2358         int nLimit = 2000 + locator.GetDistanceBack();
2359         printf("getheaders %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2360         for (; pindex; pindex = pindex->pnext)
2361         {
2362             vHeaders.push_back(pindex->GetBlockHeader());
2363             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
2364                 break;
2365         }
2366         pfrom->PushMessage("headers", vHeaders);
2367     }
2368
2369
2370     else if (strCommand == "tx")
2371     {
2372         vector<uint256> vWorkQueue;
2373         CDataStream vMsg(vRecv);
2374         CTransaction tx;
2375         vRecv >> tx;
2376
2377         CInv inv(MSG_TX, tx.GetHash());
2378         pfrom->AddInventoryKnown(inv);
2379
2380         bool fMissingInputs = false;
2381         if (tx.AcceptToMemoryPool(true, &fMissingInputs))
2382         {
2383             SyncWithWallets(tx, NULL, true);
2384             RelayMessage(inv, vMsg);
2385             mapAlreadyAskedFor.erase(inv);
2386             vWorkQueue.push_back(inv.hash);
2387
2388             // Recursively process any orphan transactions that depended on this one
2389             for (int i = 0; i < vWorkQueue.size(); i++)
2390             {
2391                 uint256 hashPrev = vWorkQueue[i];
2392                 for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev);
2393                      mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev);
2394                      ++mi)
2395                 {
2396                     const CDataStream& vMsg = *((*mi).second);
2397                     CTransaction tx;
2398                     CDataStream(vMsg) >> tx;
2399                     CInv inv(MSG_TX, tx.GetHash());
2400
2401                     if (tx.AcceptToMemoryPool(true))
2402                     {
2403                         printf("   accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2404                         SyncWithWallets(tx, NULL, true);
2405                         RelayMessage(inv, vMsg);
2406                         mapAlreadyAskedFor.erase(inv);
2407                         vWorkQueue.push_back(inv.hash);
2408                     }
2409                 }
2410             }
2411
2412             BOOST_FOREACH(uint256 hash, vWorkQueue)
2413                 EraseOrphanTx(hash);
2414         }
2415         else if (fMissingInputs)
2416         {
2417             printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2418             AddOrphanTx(vMsg);
2419         }
2420         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
2421     }
2422
2423
2424     else if (strCommand == "block")
2425     {
2426         CBlock block;
2427         vRecv >> block;
2428
2429         printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
2430         // block.print();
2431
2432         CInv inv(MSG_BLOCK, block.GetHash());
2433         pfrom->AddInventoryKnown(inv);
2434
2435         if (ProcessBlock(pfrom, &block))
2436             mapAlreadyAskedFor.erase(inv);
2437         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
2438     }
2439
2440
2441     else if (strCommand == "getaddr")
2442     {
2443         // Nodes rebroadcast an addr every 24 hours
2444         pfrom->vAddrToSend.clear();
2445         int64 nSince = GetAdjustedTime() - 3 * 60 * 60; // in the last 3 hours
2446         CRITICAL_BLOCK(cs_mapAddresses)
2447         {
2448             unsigned int nCount = 0;
2449             BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
2450             {
2451                 const CAddress& addr = item.second;
2452                 if (addr.nTime > nSince)
2453                     nCount++;
2454             }
2455             BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
2456             {
2457                 const CAddress& addr = item.second;
2458                 if (addr.nTime > nSince && GetRand(nCount) < 2500)
2459                     pfrom->PushAddress(addr);
2460             }
2461         }
2462     }
2463
2464
2465     else if (strCommand == "checkorder")
2466     {
2467         uint256 hashReply;
2468         vRecv >> hashReply;
2469
2470         if (!GetBoolArg("-allowreceivebyip"))
2471         {
2472             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
2473             return true;
2474         }
2475
2476         CWalletTx order;
2477         vRecv >> order;
2478
2479         /// we have a chance to check the order here
2480
2481         // Keep giving the same key to the same ip until they use it
2482         if (!mapReuseKey.count(pfrom->addr))
2483             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
2484
2485         // Send back approval of order and pubkey to use
2486         CScript scriptPubKey;
2487         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
2488         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
2489     }
2490
2491
2492     else if (strCommand == "reply")
2493     {
2494         uint256 hashReply;
2495         vRecv >> hashReply;
2496
2497         CRequestTracker tracker;
2498         CRITICAL_BLOCK(pfrom->cs_mapRequests)
2499         {
2500             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
2501             if (mi != pfrom->mapRequests.end())
2502             {
2503                 tracker = (*mi).second;
2504                 pfrom->mapRequests.erase(mi);
2505             }
2506         }
2507         if (!tracker.IsNull())
2508             tracker.fn(tracker.param1, vRecv);
2509     }
2510
2511
2512     else if (strCommand == "ping")
2513     {
2514     }
2515
2516
2517     else if (strCommand == "alert")
2518     {
2519         CAlert alert;
2520         vRecv >> alert;
2521
2522         if (alert.ProcessAlert())
2523         {
2524             // Relay
2525             pfrom->setKnown.insert(alert.GetHash());
2526             CRITICAL_BLOCK(cs_vNodes)
2527                 BOOST_FOREACH(CNode* pnode, vNodes)
2528                     alert.RelayTo(pnode);
2529         }
2530     }
2531
2532
2533     else
2534     {
2535         // Ignore unknown commands for extensibility
2536     }
2537
2538
2539     // Update the last seen time for this node's address
2540     if (pfrom->fNetworkNode)
2541         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
2542             AddressCurrentlyConnected(pfrom->addr);
2543
2544
2545     return true;
2546 }
2547
2548 bool ProcessMessages(CNode* pfrom)
2549 {
2550     CDataStream& vRecv = pfrom->vRecv;
2551     if (vRecv.empty())
2552         return true;
2553     //if (fDebug)
2554     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
2555
2556     //
2557     // Message format
2558     //  (4) message start
2559     //  (12) command
2560     //  (4) size
2561     //  (4) checksum
2562     //  (x) data
2563     //
2564
2565     loop
2566     {
2567         // Scan for message start
2568         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
2569         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
2570         if (vRecv.end() - pstart < nHeaderSize)
2571         {
2572             if (vRecv.size() > nHeaderSize)
2573             {
2574                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
2575                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
2576             }
2577             break;
2578         }
2579         if (pstart - vRecv.begin() > 0)
2580             printf("\n\nPROCESSMESSAGE SKIPPED %d BYTES\n\n", pstart - vRecv.begin());
2581         vRecv.erase(vRecv.begin(), pstart);
2582
2583         // Read header
2584         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
2585         CMessageHeader hdr;
2586         vRecv >> hdr;
2587         if (!hdr.IsValid())
2588         {
2589             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
2590             continue;
2591         }
2592         string strCommand = hdr.GetCommand();
2593
2594         // Message size
2595         unsigned int nMessageSize = hdr.nMessageSize;
2596         if (nMessageSize > MAX_SIZE)
2597         {
2598             printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
2599             continue;
2600         }
2601         if (nMessageSize > vRecv.size())
2602         {
2603             // Rewind and wait for rest of message
2604             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
2605             break;
2606         }
2607
2608         // Checksum
2609         if (vRecv.GetVersion() >= 209)
2610         {
2611             uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
2612             unsigned int nChecksum = 0;
2613             memcpy(&nChecksum, &hash, sizeof(nChecksum));
2614             if (nChecksum != hdr.nChecksum)
2615             {
2616                 printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
2617                        strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
2618                 continue;
2619             }
2620         }
2621
2622         // Copy message to its own buffer
2623         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
2624         vRecv.ignore(nMessageSize);
2625
2626         // Process message
2627         bool fRet = false;
2628         try
2629         {
2630             CRITICAL_BLOCK(cs_main)
2631                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
2632             if (fShutdown)
2633                 return true;
2634         }
2635         catch (std::ios_base::failure& e)
2636         {
2637             if (strstr(e.what(), "end of data"))
2638             {
2639                 // Allow exceptions from underlength message on vRecv
2640                 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());
2641             }
2642             else if (strstr(e.what(), "size too large"))
2643             {
2644                 // Allow exceptions from overlong size
2645                 printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
2646             }
2647             else
2648             {
2649                 PrintExceptionContinue(&e, "ProcessMessage()");
2650             }
2651         }
2652         catch (std::exception& e) {
2653             PrintExceptionContinue(&e, "ProcessMessage()");
2654         } catch (...) {
2655             PrintExceptionContinue(NULL, "ProcessMessage()");
2656         }
2657
2658         if (!fRet)
2659             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
2660     }
2661
2662     vRecv.Compact();
2663     return true;
2664 }
2665
2666
2667 bool SendMessages(CNode* pto, bool fSendTrickle)
2668 {
2669     CRITICAL_BLOCK(cs_main)
2670     {
2671         // Don't send anything until we get their version message
2672         if (pto->nVersion == 0)
2673             return true;
2674
2675         // Keep-alive ping
2676         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty())
2677             pto->PushMessage("ping");
2678
2679         // Resend wallet transactions that haven't gotten in a block yet
2680         ResendWalletTransactions();
2681
2682         // Address refresh broadcast
2683         static int64 nLastRebroadcast;
2684         if (GetTime() - nLastRebroadcast > 24 * 60 * 60)
2685         {
2686             nLastRebroadcast = GetTime();
2687             CRITICAL_BLOCK(cs_vNodes)
2688             {
2689                 BOOST_FOREACH(CNode* pnode, vNodes)
2690                 {
2691                     // Periodically clear setAddrKnown to allow refresh broadcasts
2692                     pnode->setAddrKnown.clear();
2693
2694                     // Rebroadcast our address
2695                     if (addrLocalHost.IsRoutable() && !fUseProxy)
2696                     {
2697                         CAddress addr(addrLocalHost);
2698                         addr.nTime = GetAdjustedTime();
2699                         pnode->PushAddress(addr);
2700                     }
2701                 }
2702             }
2703         }
2704
2705         // Clear out old addresses periodically so it's not too much work at once
2706         static int64 nLastClear;
2707         if (nLastClear == 0)
2708             nLastClear = GetTime();
2709         if (GetTime() - nLastClear > 10 * 60 && vNodes.size() >= 3)
2710         {
2711             nLastClear = GetTime();
2712             CRITICAL_BLOCK(cs_mapAddresses)
2713             {
2714                 CAddrDB addrdb;
2715                 int64 nSince = GetAdjustedTime() - 14 * 24 * 60 * 60;
2716                 for (map<vector<unsigned char>, CAddress>::iterator mi = mapAddresses.begin();
2717                      mi != mapAddresses.end();)
2718                 {
2719                     const CAddress& addr = (*mi).second;
2720                     if (addr.nTime < nSince)
2721                     {
2722                         if (mapAddresses.size() < 1000 || GetTime() > nLastClear + 20)
2723                             break;
2724                         addrdb.EraseAddress(addr);
2725                         mapAddresses.erase(mi++);
2726                     }
2727                     else
2728                         mi++;
2729                 }
2730             }
2731         }
2732
2733
2734         //
2735         // Message: addr
2736         //
2737         if (fSendTrickle)
2738         {
2739             vector<CAddress> vAddr;
2740             vAddr.reserve(pto->vAddrToSend.size());
2741             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
2742             {
2743                 // returns true if wasn't already contained in the set
2744                 if (pto->setAddrKnown.insert(addr).second)
2745                 {
2746                     vAddr.push_back(addr);
2747                     // receiver rejects addr messages larger than 1000
2748                     if (vAddr.size() >= 1000)
2749                     {
2750                         pto->PushMessage("addr", vAddr);
2751                         vAddr.clear();
2752                     }
2753                 }
2754             }
2755             pto->vAddrToSend.clear();
2756             if (!vAddr.empty())
2757                 pto->PushMessage("addr", vAddr);
2758         }
2759
2760
2761         //
2762         // Message: inventory
2763         //
2764         vector<CInv> vInv;
2765         vector<CInv> vInvWait;
2766         CRITICAL_BLOCK(pto->cs_inventory)
2767         {
2768             vInv.reserve(pto->vInventoryToSend.size());
2769             vInvWait.reserve(pto->vInventoryToSend.size());
2770             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
2771             {
2772                 if (pto->setInventoryKnown.count(inv))
2773                     continue;
2774
2775                 // trickle out tx inv to protect privacy
2776                 if (inv.type == MSG_TX && !fSendTrickle)
2777                 {
2778                     // 1/4 of tx invs blast to all immediately
2779                     static uint256 hashSalt;
2780                     if (hashSalt == 0)
2781                         RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2782                     uint256 hashRand = inv.hash ^ hashSalt;
2783                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
2784                     bool fTrickleWait = ((hashRand & 3) != 0);
2785
2786                     // always trickle our own transactions
2787                     if (!fTrickleWait)
2788                     {
2789                         CWalletTx wtx;
2790                         if (GetTransaction(inv.hash, wtx))
2791                             if (wtx.fFromMe)
2792                                 fTrickleWait = true;
2793                     }
2794
2795                     if (fTrickleWait)
2796                     {
2797                         vInvWait.push_back(inv);
2798                         continue;
2799                     }
2800                 }
2801
2802                 // returns true if wasn't already contained in the set
2803                 if (pto->setInventoryKnown.insert(inv).second)
2804                 {
2805                     vInv.push_back(inv);
2806                     if (vInv.size() >= 1000)
2807                     {
2808                         pto->PushMessage("inv", vInv);
2809                         vInv.clear();
2810                     }
2811                 }
2812             }
2813             pto->vInventoryToSend = vInvWait;
2814         }
2815         if (!vInv.empty())
2816             pto->PushMessage("inv", vInv);
2817
2818
2819         //
2820         // Message: getdata
2821         //
2822         vector<CInv> vGetData;
2823         int64 nNow = GetTime() * 1000000;
2824         CTxDB txdb("r");
2825         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
2826         {
2827             const CInv& inv = (*pto->mapAskFor.begin()).second;
2828             if (!AlreadyHave(txdb, inv))
2829             {
2830                 printf("sending getdata: %s\n", inv.ToString().c_str());
2831                 vGetData.push_back(inv);
2832                 if (vGetData.size() >= 1000)
2833                 {
2834                     pto->PushMessage("getdata", vGetData);
2835                     vGetData.clear();
2836                 }
2837             }
2838             mapAlreadyAskedFor[inv] = nNow;
2839             pto->mapAskFor.erase(pto->mapAskFor.begin());
2840         }
2841         if (!vGetData.empty())
2842             pto->PushMessage("getdata", vGetData);
2843
2844     }
2845     return true;
2846 }
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861 //////////////////////////////////////////////////////////////////////////////
2862 //
2863 // BitcoinMiner
2864 //
2865
2866 int static FormatHashBlocks(void* pbuffer, unsigned int len)
2867 {
2868     unsigned char* pdata = (unsigned char*)pbuffer;
2869     unsigned int blocks = 1 + ((len + 8) / 64);
2870     unsigned char* pend = pdata + 64 * blocks;
2871     memset(pdata + len, 0, 64 * blocks - len);
2872     pdata[len] = 0x80;
2873     unsigned int bits = len * 8;
2874     pend[-1] = (bits >> 0) & 0xff;
2875     pend[-2] = (bits >> 8) & 0xff;
2876     pend[-3] = (bits >> 16) & 0xff;
2877     pend[-4] = (bits >> 24) & 0xff;
2878     return blocks;
2879 }
2880
2881 static const unsigned int pSHA256InitState[8] =
2882 {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
2883
2884 void SHA256Transform(void* pstate, void* pinput, const void* pinit)
2885 {
2886     SHA256_CTX ctx;
2887     unsigned char data[64];
2888
2889     SHA256_Init(&ctx);
2890
2891     for (int i = 0; i < 16; i++)
2892         ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
2893
2894     for (int i = 0; i < 8; i++)
2895         ctx.h[i] = ((uint32_t*)pinit)[i];
2896
2897     SHA256_Update(&ctx, data, sizeof(data));
2898     for (int i = 0; i < 8; i++) 
2899         ((uint32_t*)pstate)[i] = ctx.h[i];
2900 }
2901
2902 //
2903 // ScanHash scans nonces looking for a hash with at least some zero bits.
2904 // It operates on big endian data.  Caller does the byte reversing.
2905 // All input buffers are 16-byte aligned.  nNonce is usually preserved
2906 // between calls, but periodically or if nNonce is 0xffff0000 or above,
2907 // the block is rebuilt and nNonce starts over at zero.
2908 //
2909 unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone)
2910 {
2911     unsigned int& nNonce = *(unsigned int*)(pdata + 12);
2912     for (;;)
2913     {
2914         // Crypto++ SHA-256
2915         // Hash pdata using pmidstate as the starting state into
2916         // preformatted buffer phash1, then hash phash1 into phash
2917         nNonce++;
2918         SHA256Transform(phash1, pdata, pmidstate);
2919         SHA256Transform(phash, phash1, pSHA256InitState);
2920
2921         // Return the nonce if the hash has at least some zero bits,
2922         // caller will check if it has enough to reach the target
2923         if (((unsigned short*)phash)[14] == 0)
2924             return nNonce;
2925
2926         // If nothing found after trying for a while, return -1
2927         if ((nNonce & 0xffff) == 0)
2928         {
2929             nHashesDone = 0xffff+1;
2930             return -1;
2931         }
2932     }
2933 }
2934
2935 // Some explaining would be appreciated
2936 class COrphan
2937 {
2938 public:
2939     CTransaction* ptx;
2940     set<uint256> setDependsOn;
2941     double dPriority;
2942
2943     COrphan(CTransaction* ptxIn)
2944     {
2945         ptx = ptxIn;
2946         dPriority = 0;
2947     }
2948
2949     void print() const
2950     {
2951         printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority);
2952         BOOST_FOREACH(uint256 hash, setDependsOn)
2953             printf("   setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
2954     }
2955 };
2956
2957
2958 uint64 nLastBlockTx = 0;
2959 uint64 nLastBlockSize = 0;
2960
2961 CBlock* CreateNewBlock(CReserveKey& reservekey)
2962 {
2963     CBlockIndex* pindexPrev = pindexBest;
2964
2965     // Create new block
2966     auto_ptr<CBlock> pblock(new CBlock());
2967     if (!pblock.get())
2968         return NULL;
2969
2970     // Create coinbase tx
2971     CTransaction txNew;
2972     txNew.vin.resize(1);
2973     txNew.vin[0].prevout.SetNull();
2974     txNew.vout.resize(1);
2975     txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
2976
2977     // Add our coinbase tx as first transaction
2978     pblock->vtx.push_back(txNew);
2979
2980     // Collect memory pool transactions into the block
2981     int64 nFees = 0;
2982     CRITICAL_BLOCK(cs_main)
2983     CRITICAL_BLOCK(cs_mapTransactions)
2984     {
2985         CTxDB txdb("r");
2986
2987         // Priority order to process transactions
2988         list<COrphan> vOrphan; // list memory doesn't move
2989         map<uint256, vector<COrphan*> > mapDependers;
2990         multimap<double, CTransaction*> mapPriority;
2991         for (map<uint256, CTransaction>::iterator mi = mapTransactions.begin(); mi != mapTransactions.end(); ++mi)
2992         {
2993             CTransaction& tx = (*mi).second;
2994             if (tx.IsCoinBase() || !tx.IsFinal())
2995                 continue;
2996
2997             COrphan* porphan = NULL;
2998             double dPriority = 0;
2999             BOOST_FOREACH(const CTxIn& txin, tx.vin)
3000             {
3001                 // Read prev transaction
3002                 CTransaction txPrev;
3003                 CTxIndex txindex;
3004                 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
3005                 {
3006                     // Has to wait for dependencies
3007                     if (!porphan)
3008                     {
3009                         // Use list for automatic deletion
3010                         vOrphan.push_back(COrphan(&tx));
3011                         porphan = &vOrphan.back();
3012                     }
3013                     mapDependers[txin.prevout.hash].push_back(porphan);
3014                     porphan->setDependsOn.insert(txin.prevout.hash);
3015                     continue;
3016                 }
3017                 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
3018
3019                 // Read block header
3020                 int nConf = txindex.GetDepthInMainChain();
3021
3022                 dPriority += (double)nValueIn * nConf;
3023
3024                 if (fDebug && GetBoolArg("-printpriority"))
3025                     printf("priority     nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority);
3026             }
3027
3028             // Priority is sum(valuein * age) / txsize
3029             dPriority /= ::GetSerializeSize(tx, SER_NETWORK);
3030
3031             if (porphan)
3032                 porphan->dPriority = dPriority;
3033             else
3034                 mapPriority.insert(make_pair(-dPriority, &(*mi).second));
3035
3036             if (fDebug && GetBoolArg("-printpriority"))
3037             {
3038                 printf("priority %-20.1f %s\n%s", dPriority, tx.GetHash().ToString().substr(0,10).c_str(), tx.ToString().c_str());
3039                 if (porphan)
3040                     porphan->print();
3041                 printf("\n");
3042             }
3043         }
3044
3045         // Collect transactions into block
3046         map<uint256, CTxIndex> mapTestPool;
3047         uint64 nBlockSize = 1000;
3048         uint64 nBlockTx = 0;
3049         int nBlockSigOps1 = 100; // pre-0.6 count of sigOps
3050         int nBlockSigOps2 = 100; // post-0.6 count of sigOps
3051         while (!mapPriority.empty())
3052         {
3053             // Take highest priority transaction off priority queue
3054             double dPriority = -(*mapPriority.begin()).first;
3055             CTransaction& tx = *(*mapPriority.begin()).second;
3056             mapPriority.erase(mapPriority.begin());
3057
3058             // Size limits
3059             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK);
3060             if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN)
3061                 continue;
3062
3063             // Legacy limits on sigOps:
3064             int nTxSigOps1 = tx.GetLegacySigOpCount();
3065             if (nBlockSigOps1 + nTxSigOps1 >= MAX_BLOCK_SIGOPS)
3066                 continue;
3067
3068             // Transaction fee required depends on block size
3069             bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority));
3070             int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, GMF_BLOCK);
3071
3072             // Connecting shouldn't fail due to dependency on other memory pool transactions
3073             // because we're already processing them in order of dependency
3074             map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
3075             MapPrevTx mapInputs;
3076             bool fInvalid;
3077             if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
3078                 continue;
3079
3080             int64 nFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
3081             if (nFees < nMinFee)
3082                 continue;
3083
3084             int nTxSigOps2 = tx.GetSigOpCount(mapInputs);
3085             if (nBlockSigOps2 + nTxSigOps2 >= MAX_BLOCK_SIGOPS)
3086                 continue;
3087
3088             if (!tx.ConnectInputs(mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
3089                 continue;
3090             mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
3091             swap(mapTestPool, mapTestPoolTmp);
3092
3093             // Added
3094             pblock->vtx.push_back(tx);
3095             nBlockSize += nTxSize;
3096             ++nBlockTx;
3097             nBlockSigOps1 += nTxSigOps1;
3098             nBlockSigOps2 += nTxSigOps2;
3099
3100             // Add transactions that depend on this one to the priority queue
3101             uint256 hash = tx.GetHash();
3102             if (mapDependers.count(hash))
3103             {
3104                 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
3105                 {
3106                     if (!porphan->setDependsOn.empty())
3107                     {
3108                         porphan->setDependsOn.erase(hash);
3109                         if (porphan->setDependsOn.empty())
3110                             mapPriority.insert(make_pair(-porphan->dPriority, porphan->ptx));
3111                     }
3112                 }
3113             }
3114         }
3115
3116         nLastBlockTx = nBlockTx;
3117         nLastBlockSize = nBlockSize;
3118         printf("CreateNewBlock(): total size %lu\n", nBlockSize);
3119
3120     }
3121     pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees);
3122
3123     // Fill in header
3124     pblock->hashPrevBlock  = pindexPrev->GetBlockHash();
3125     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
3126     pblock->nTime          = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
3127     pblock->nBits          = GetNextWorkRequired(pindexPrev);
3128     pblock->nNonce         = 0;
3129
3130     return pblock.release();
3131 }
3132
3133
3134 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
3135 {
3136     // Update nExtraNonce
3137     static uint256 hashPrevBlock;
3138     if (hashPrevBlock != pblock->hashPrevBlock)
3139     {
3140         nExtraNonce = 0;
3141         hashPrevBlock = pblock->hashPrevBlock;
3142     }
3143     ++nExtraNonce;
3144     pblock->vtx[0].vin[0].scriptSig = (CScript() << pblock->nTime << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
3145     assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
3146
3147     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
3148 }
3149
3150
3151 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
3152 {
3153     //
3154     // Prebuild hash buffers
3155     //
3156     struct
3157     {
3158         struct unnamed2
3159         {
3160             int nVersion;
3161             uint256 hashPrevBlock;
3162             uint256 hashMerkleRoot;
3163             unsigned int nTime;
3164             unsigned int nBits;
3165             unsigned int nNonce;
3166         }
3167         block;
3168         unsigned char pchPadding0[64];
3169         uint256 hash1;
3170         unsigned char pchPadding1[64];
3171     }
3172     tmp;
3173     memset(&tmp, 0, sizeof(tmp));
3174
3175     tmp.block.nVersion       = pblock->nVersion;
3176     tmp.block.hashPrevBlock  = pblock->hashPrevBlock;
3177     tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
3178     tmp.block.nTime          = pblock->nTime;
3179     tmp.block.nBits          = pblock->nBits;
3180     tmp.block.nNonce         = pblock->nNonce;
3181
3182     FormatHashBlocks(&tmp.block, sizeof(tmp.block));
3183     FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
3184
3185     // Byte swap all the input buffer
3186     for (int i = 0; i < sizeof(tmp)/4; i++)
3187         ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
3188
3189     // Precalc the first half of the first hash, which stays constant
3190     SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
3191
3192     memcpy(pdata, &tmp.block, 128);
3193     memcpy(phash1, &tmp.hash1, 64);
3194 }
3195
3196
3197 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
3198 {
3199     uint256 hash = pblock->GetHash();
3200     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3201
3202     if (hash > hashTarget)
3203         return false;
3204
3205     //// debug print
3206     printf("BitcoinMiner:\n");
3207     printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
3208     pblock->print();
3209     printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3210     printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
3211
3212     // Found a solution
3213     CRITICAL_BLOCK(cs_main)
3214     {
3215         if (pblock->hashPrevBlock != hashBestChain)
3216             return error("BitcoinMiner : generated block is stale");
3217
3218         // Remove key from key pool
3219         reservekey.KeepKey();
3220
3221         // Track how many getdata requests this block gets
3222         CRITICAL_BLOCK(wallet.cs_wallet)
3223             wallet.mapRequestCount[pblock->GetHash()] = 0;
3224
3225         // Process this block the same as if we had received it from another node
3226         if (!ProcessBlock(NULL, pblock))
3227             return error("BitcoinMiner : ProcessBlock, block not accepted");
3228     }
3229
3230     return true;
3231 }
3232
3233 void static ThreadBitcoinMiner(void* parg);
3234
3235 void static BitcoinMiner(CWallet *pwallet)
3236 {
3237     printf("BitcoinMiner started\n");
3238     SetThreadPriority(THREAD_PRIORITY_LOWEST);
3239
3240     // Each thread has its own key and counter
3241     CReserveKey reservekey(pwallet);
3242     unsigned int nExtraNonce = 0;
3243
3244     while (fGenerateBitcoins)
3245     {
3246         if (AffinityBugWorkaround(ThreadBitcoinMiner))
3247             return;
3248         if (fShutdown)
3249             return;
3250         while (vNodes.empty() || IsInitialBlockDownload())
3251         {
3252             Sleep(1000);
3253             if (fShutdown)
3254                 return;
3255             if (!fGenerateBitcoins)
3256                 return;
3257         }
3258
3259
3260         //
3261         // Create new block
3262         //
3263         unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
3264         CBlockIndex* pindexPrev = pindexBest;
3265
3266         auto_ptr<CBlock> pblock(CreateNewBlock(reservekey));
3267         if (!pblock.get())
3268             return;
3269         IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
3270
3271         printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
3272
3273
3274         //
3275         // Prebuild hash buffers
3276         //
3277         char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
3278         char pdatabuf[128+16];    char* pdata     = alignup<16>(pdatabuf);
3279         char phash1buf[64+16];    char* phash1    = alignup<16>(phash1buf);
3280
3281         FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1);
3282
3283         unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
3284         unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
3285
3286
3287         //
3288         // Search
3289         //
3290         int64 nStart = GetTime();
3291         uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3292         uint256 hashbuf[2];
3293         uint256& hash = *alignup<16>(hashbuf);
3294         loop
3295         {
3296             unsigned int nHashesDone = 0;
3297             unsigned int nNonceFound;
3298
3299             // Crypto++ SHA-256
3300             nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1,
3301                                             (char*)&hash, nHashesDone);
3302
3303             // Check if something found
3304             if (nNonceFound != -1)
3305             {
3306                 for (int i = 0; i < sizeof(hash)/4; i++)
3307                     ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]);
3308
3309                 if (hash <= hashTarget)
3310                 {
3311                     // Found a solution
3312                     pblock->nNonce = ByteReverse(nNonceFound);
3313                     assert(hash == pblock->GetHash());
3314
3315                     SetThreadPriority(THREAD_PRIORITY_NORMAL);
3316                     CheckWork(pblock.get(), *pwalletMain, reservekey);
3317                     SetThreadPriority(THREAD_PRIORITY_LOWEST);
3318                     break;
3319                 }
3320             }
3321
3322             // Meter hashes/sec
3323             static int64 nHashCounter;
3324             if (nHPSTimerStart == 0)
3325             {
3326                 nHPSTimerStart = GetTimeMillis();
3327                 nHashCounter = 0;
3328             }
3329             else
3330                 nHashCounter += nHashesDone;
3331             if (GetTimeMillis() - nHPSTimerStart > 4000)
3332             {
3333                 static CCriticalSection cs;
3334                 CRITICAL_BLOCK(cs)
3335                 {
3336                     if (GetTimeMillis() - nHPSTimerStart > 4000)
3337                     {
3338                         dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
3339                         nHPSTimerStart = GetTimeMillis();
3340                         nHashCounter = 0;
3341                         string strStatus = strprintf("    %.0f khash/s", dHashesPerSec/1000.0);
3342                         UIThreadCall(boost::bind(CalledSetStatusBar, strStatus, 0));
3343                         static int64 nLogTime;
3344                         if (GetTime() - nLogTime > 30 * 60)
3345                         {
3346                             nLogTime = GetTime();
3347                             printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3348                             printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[3], dHashesPerSec/1000.0);
3349                         }
3350                     }
3351                 }
3352             }
3353
3354             // Check for stop or if block needs to be rebuilt
3355             if (fShutdown)
3356                 return;
3357             if (!fGenerateBitcoins)
3358                 return;
3359             if (fLimitProcessors && vnThreadsRunning[3] > nLimitProcessors)
3360                 return;
3361             if (vNodes.empty())
3362                 break;
3363             if (nBlockNonce >= 0xffff0000)
3364                 break;
3365             if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
3366                 break;
3367             if (pindexPrev != pindexBest)
3368                 break;
3369
3370             // Update nTime every few seconds
3371             pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
3372             nBlockTime = ByteReverse(pblock->nTime);
3373         }
3374     }
3375 }
3376
3377 void static ThreadBitcoinMiner(void* parg)
3378 {
3379     CWallet* pwallet = (CWallet*)parg;
3380     try
3381     {
3382         vnThreadsRunning[3]++;
3383         BitcoinMiner(pwallet);
3384         vnThreadsRunning[3]--;
3385     }
3386     catch (std::exception& e) {
3387         vnThreadsRunning[3]--;
3388         PrintException(&e, "ThreadBitcoinMiner()");
3389     } catch (...) {
3390         vnThreadsRunning[3]--;
3391         PrintException(NULL, "ThreadBitcoinMiner()");
3392     }
3393     UIThreadCall(boost::bind(CalledSetStatusBar, "", 0));
3394     nHPSTimerStart = 0;
3395     if (vnThreadsRunning[3] == 0)
3396         dHashesPerSec = 0;
3397     printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[3]);
3398 }
3399
3400
3401 void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
3402 {
3403     if (fGenerateBitcoins != fGenerate)
3404     {
3405         fGenerateBitcoins = fGenerate;
3406         WriteSetting("fGenerateBitcoins", fGenerateBitcoins);
3407         MainFrameRepaint();
3408     }
3409     if (fGenerateBitcoins)
3410     {
3411         int nProcessors = boost::thread::hardware_concurrency();
3412         printf("%d processors\n", nProcessors);
3413         if (nProcessors < 1)
3414             nProcessors = 1;
3415         if (fLimitProcessors && nProcessors > nLimitProcessors)
3416             nProcessors = nLimitProcessors;
3417         int nAddThreads = nProcessors - vnThreadsRunning[3];
3418         printf("Starting %d BitcoinMiner threads\n", nAddThreads);
3419         for (int i = 0; i < nAddThreads; i++)
3420         {
3421             if (!CreateThread(ThreadBitcoinMiner, pwallet))
3422                 printf("Error: CreateThread(ThreadBitcoinMiner) failed\n");
3423             Sleep(10);
3424         }
3425     }
3426 }