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