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