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