20aa069a79310042e232b064762c254fde2a3f4f
[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     // This can fail if a duplicate of this transaction was in a chain that got
980     // reorganized away. This is only possible if this transaction was completely
981     // spent, so erasing it would be a no-op anway.
982     txdb.EraseTxIndex(*this);
983
984     return true;
985 }
986
987
988 bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTestPool,
989                                bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid)
990 {
991     // FetchInputs can return false either because we just haven't seen some inputs
992     // (in which case the transaction should be stored as an orphan)
993     // or because the transaction is malformed (in which case the transaction should
994     // be dropped).  If tx is definitely invalid, fInvalid will be set to true.
995     fInvalid = false;
996
997     if (IsCoinBase())
998         return true; // Coinbase transactions have no inputs to fetch.
999
1000     for (int i = 0; i < vin.size(); i++)
1001     {
1002         COutPoint prevout = vin[i].prevout;
1003         if (inputsRet.count(prevout.hash))
1004             continue; // Got it already
1005
1006         // Read txindex
1007         CTxIndex& txindex = inputsRet[prevout.hash].first;
1008         bool fFound = true;
1009         if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
1010         {
1011             // Get txindex from current proposed changes
1012             txindex = mapTestPool.find(prevout.hash)->second;
1013         }
1014         else
1015         {
1016             // Read txindex from txdb
1017             fFound = txdb.ReadTxIndex(prevout.hash, txindex);
1018         }
1019         if (!fFound && (fBlock || fMiner))
1020             return fMiner ? false : error("FetchInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1021
1022         // Read txPrev
1023         CTransaction& txPrev = inputsRet[prevout.hash].second;
1024         if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
1025         {
1026             // Get prev tx from single transactions in memory
1027             CRITICAL_BLOCK(cs_mapTransactions)
1028             {
1029                 if (!mapTransactions.count(prevout.hash))
1030                     return error("FetchInputs() : %s mapTransactions prev not found %s", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1031                 txPrev = mapTransactions[prevout.hash];
1032             }
1033             if (!fFound)
1034                 txindex.vSpent.resize(txPrev.vout.size());
1035         }
1036         else
1037         {
1038             // Get prev tx from disk
1039             if (!txPrev.ReadFromDisk(txindex.pos))
1040                 return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1041         }
1042     }
1043
1044     // Make sure all prevout.n's are valid:
1045     for (int i = 0; i < vin.size(); i++)
1046     {
1047         const COutPoint prevout = vin[i].prevout;
1048         assert(inputsRet.count(prevout.hash) != 0);
1049         const CTxIndex& txindex = inputsRet[prevout.hash].first;
1050         const CTransaction& txPrev = inputsRet[prevout.hash].second;
1051         if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1052         {
1053             // Revisit this if/when transaction replacement is implemented and allows
1054             // adding inputs:
1055             fInvalid = true;
1056             return DoS(100, error("FetchInputs() : %s prevout.n out of range %d %d %d prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str()));
1057         }
1058     }
1059
1060     return true;
1061 }
1062
1063 const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const
1064 {
1065     MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash);
1066     if (mi == inputs.end())
1067         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found");
1068
1069     const CTransaction& txPrev = (mi->second).second;
1070     if (input.prevout.n >= txPrev.vout.size())
1071         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range");
1072
1073     return txPrev.vout[input.prevout.n];
1074 }
1075
1076 int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const
1077 {
1078     if (IsCoinBase())
1079         return 0;
1080
1081     int64 nResult = 0;
1082     for (int i = 0; i < vin.size(); i++)
1083     {
1084         nResult += GetOutputFor(vin[i], inputs).nValue;
1085     }
1086     return nResult;
1087
1088 }
1089
1090 int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const
1091 {
1092     if (IsCoinBase())
1093         return 0;
1094
1095     int nSigOps = 0;
1096     for (int i = 0; i < vin.size(); i++)
1097     {
1098         const CTxOut& prevout = GetOutputFor(vin[i], inputs);
1099         if (prevout.scriptPubKey.IsPayToScriptHash())
1100             nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig);
1101     }
1102     return nSigOps;
1103 }
1104
1105 bool CTransaction::ConnectInputs(MapPrevTx inputs,
1106                                  map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1107                                  const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash)
1108 {
1109     // Take over previous transactions' spent pointers
1110     // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
1111     // fMiner is true when called from the internal bitcoin miner
1112     // ... both are false when called from CTransaction::AcceptToMemoryPool
1113     if (!IsCoinBase())
1114     {
1115         int64 nValueIn = 0;
1116         int64 nFees = 0;
1117         for (int i = 0; i < vin.size(); i++)
1118         {
1119             COutPoint prevout = vin[i].prevout;
1120             assert(inputs.count(prevout.hash) > 0);
1121             CTxIndex& txindex = inputs[prevout.hash].first;
1122             CTransaction& txPrev = inputs[prevout.hash].second;
1123
1124             if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1125                 return DoS(100, error("ConnectInputs() : %s prevout.n out of range %d %d %d prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str()));
1126
1127             // If prev is coinbase, check that it's matured
1128             if (txPrev.IsCoinBase())
1129                 for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev)
1130                     if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
1131                         return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight);
1132
1133             // Check for conflicts (double-spend)
1134             // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
1135             // for an attacker to attempt to split the network.
1136             if (!txindex.vSpent[prevout.n].IsNull())
1137                 return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str());
1138
1139             // Check for negative or overflow input values
1140             nValueIn += txPrev.vout[prevout.n].nValue;
1141             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1142                 return DoS(100, error("ConnectInputs() : txin values out of range"));
1143
1144             // Skip ECDSA signature verification when connecting blocks (fBlock=true)
1145             // before the last blockchain checkpoint. This is safe because block merkle hashes are
1146             // still computed and checked, and any change will be caught at the next checkpoint.
1147             if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate())))
1148             {
1149                 // Verify signature
1150                 if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0))
1151                 {
1152                     // only during transition phase for P2SH: do not invoke anti-DoS code for
1153                     // potentially old clients relaying bad P2SH transactions
1154                     if (fStrictPayToScriptHash && VerifySignature(txPrev, *this, i, false, 0))
1155                         return error("ConnectInputs() : %s P2SH VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1156
1157                     return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1158                 }
1159             }
1160
1161             // Mark outpoints as spent
1162             txindex.vSpent[prevout.n] = posThisTx;
1163
1164             // Write back
1165             if (fBlock || fMiner)
1166             {
1167                 mapTestPool[prevout.hash] = txindex;
1168             }
1169         }
1170
1171         if (nValueIn < GetValueOut())
1172             return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1173
1174         // Tally transaction fees
1175         int64 nTxFee = nValueIn - GetValueOut();
1176         if (nTxFee < 0)
1177             return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1178         nFees += nTxFee;
1179         if (!MoneyRange(nFees))
1180             return DoS(100, error("ConnectInputs() : nFees out of range"));
1181     }
1182
1183     return true;
1184 }
1185
1186
1187 bool CTransaction::ClientConnectInputs()
1188 {
1189     if (IsCoinBase())
1190         return false;
1191
1192     // Take over previous transactions' spent pointers
1193     CRITICAL_BLOCK(cs_mapTransactions)
1194     {
1195         int64 nValueIn = 0;
1196         for (int i = 0; i < vin.size(); i++)
1197         {
1198             // Get prev tx from single transactions in memory
1199             COutPoint prevout = vin[i].prevout;
1200             if (!mapTransactions.count(prevout.hash))
1201                 return false;
1202             CTransaction& txPrev = mapTransactions[prevout.hash];
1203
1204             if (prevout.n >= txPrev.vout.size())
1205                 return false;
1206
1207             // Verify signature
1208             if (!VerifySignature(txPrev, *this, i, true, 0))
1209                 return error("ConnectInputs() : VerifySignature failed");
1210
1211             ///// this is redundant with the mapNextTx stuff, not sure which I want to get rid of
1212             ///// this has to go away now that posNext is gone
1213             // // Check for conflicts
1214             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1215             //     return error("ConnectInputs() : prev tx already used");
1216             //
1217             // // Flag outpoints as used
1218             // txPrev.vout[prevout.n].posNext = posThisTx;
1219
1220             nValueIn += txPrev.vout[prevout.n].nValue;
1221
1222             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1223                 return error("ClientConnectInputs() : txin values out of range");
1224         }
1225         if (GetValueOut() > nValueIn)
1226             return false;
1227     }
1228
1229     return true;
1230 }
1231
1232
1233
1234
1235 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1236 {
1237     // Disconnect in reverse order
1238     for (int i = vtx.size()-1; i >= 0; i--)
1239         if (!vtx[i].DisconnectInputs(txdb))
1240             return false;
1241
1242     // Update block index on disk without changing it in memory.
1243     // The memory index structure will be changed after the db commits.
1244     if (pindex->pprev)
1245     {
1246         CDiskBlockIndex blockindexPrev(pindex->pprev);
1247         blockindexPrev.hashNext = 0;
1248         if (!txdb.WriteBlockIndex(blockindexPrev))
1249             return error("DisconnectBlock() : WriteBlockIndex failed");
1250     }
1251
1252     return true;
1253 }
1254
1255 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1256 {
1257     // Check it again in case a previous version let a bad block in
1258     if (!CheckBlock())
1259         return false;
1260
1261     // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1262     // unless those are already completely spent.
1263     // If such overwrites are allowed, coinbases and transactions depending upon those
1264     // can be duplicated to remove the ability to spend the first instance -- even after
1265     // being sent to another address.
1266     // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1267     // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1268     // already refuses previously-known transaction id's entirely.
1269     // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC.
1270     // On testnet it is enabled as of februari 20, 2012, 0:00 UTC.
1271     if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000))
1272         BOOST_FOREACH(CTransaction& tx, vtx)
1273         {
1274             CTxIndex txindexOld;
1275             if (txdb.ReadTxIndex(tx.GetHash(), txindexOld))
1276                 BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent)
1277                     if (pos.IsNull())
1278                         return false;
1279         }
1280
1281     // To avoid being on the short end of a block-chain split,
1282     // don't do secondary validation of pay-to-script-hash transactions
1283     // until blocks with timestamps after paytoscripthashtime (see init.cpp for default).
1284     // This code can be removed once a super-majority of the network has upgraded.
1285     int64 nEvalSwitchTime = GetArg("-paytoscripthashtime", std::numeric_limits<int64_t>::max());
1286     bool fStrictPayToScriptHash = (pindex->nTime >= nEvalSwitchTime);
1287
1288     //// issue here: it doesn't know the version
1289     unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size());
1290
1291     map<uint256, CTxIndex> mapQueuedChanges;
1292     int64 nFees = 0;
1293     int nSigOps = 0;
1294     BOOST_FOREACH(CTransaction& tx, vtx)
1295     {
1296         nSigOps += tx.GetLegacySigOpCount();
1297         if (nSigOps > MAX_BLOCK_SIGOPS)
1298             return DoS(100, error("ConnectBlock() : too many sigops"));
1299
1300         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1301         nTxPos += ::GetSerializeSize(tx, SER_DISK);
1302
1303         MapPrevTx mapInputs;
1304         if (!tx.IsCoinBase())
1305         {
1306             bool fInvalid;
1307             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1308                 return false;
1309
1310             if (fStrictPayToScriptHash)
1311             {
1312                 // Add in sigops done by pay-to-script-hash inputs;
1313                 // this is to prevent a "rogue miner" from creating
1314                 // an incredibly-expensive-to-validate block.
1315                 nSigOps += tx.GetP2SHSigOpCount(mapInputs);
1316                 if (nSigOps > MAX_BLOCK_SIGOPS)
1317                     return DoS(100, error("ConnectBlock() : too many sigops"));
1318             }
1319
1320             nFees += tx.GetValueIn(mapInputs)-tx.GetValueOut();
1321
1322             if (!tx.ConnectInputs(mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fStrictPayToScriptHash))
1323                 return false;
1324         }
1325
1326         mapQueuedChanges[tx.GetHash()] = CTxIndex(posThisTx, tx.vout.size());
1327     }
1328
1329     // Write queued txindex changes
1330     for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1331     {
1332         if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1333             return error("ConnectBlock() : UpdateTxIndex failed");
1334     }
1335
1336     if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees))
1337         return false;
1338
1339     // Update block index on disk without changing it in memory.
1340     // The memory index structure will be changed after the db commits.
1341     if (pindex->pprev)
1342     {
1343         CDiskBlockIndex blockindexPrev(pindex->pprev);
1344         blockindexPrev.hashNext = pindex->GetBlockHash();
1345         if (!txdb.WriteBlockIndex(blockindexPrev))
1346             return error("ConnectBlock() : WriteBlockIndex failed");
1347     }
1348
1349     // Watch for transactions paying to me
1350     BOOST_FOREACH(CTransaction& tx, vtx)
1351         SyncWithWallets(tx, this, true);
1352
1353     return true;
1354 }
1355
1356 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1357 {
1358     printf("REORGANIZE\n");
1359
1360     // Find the fork
1361     CBlockIndex* pfork = pindexBest;
1362     CBlockIndex* plonger = pindexNew;
1363     while (pfork != plonger)
1364     {
1365         while (plonger->nHeight > pfork->nHeight)
1366             if (!(plonger = plonger->pprev))
1367                 return error("Reorganize() : plonger->pprev is null");
1368         if (pfork == plonger)
1369             break;
1370         if (!(pfork = pfork->pprev))
1371             return error("Reorganize() : pfork->pprev is null");
1372     }
1373
1374     // List of what to disconnect
1375     vector<CBlockIndex*> vDisconnect;
1376     for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1377         vDisconnect.push_back(pindex);
1378
1379     // List of what to connect
1380     vector<CBlockIndex*> vConnect;
1381     for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1382         vConnect.push_back(pindex);
1383     reverse(vConnect.begin(), vConnect.end());
1384
1385     // Disconnect shorter branch
1386     vector<CTransaction> vResurrect;
1387     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1388     {
1389         CBlock block;
1390         if (!block.ReadFromDisk(pindex))
1391             return error("Reorganize() : ReadFromDisk for disconnect failed");
1392         if (!block.DisconnectBlock(txdb, pindex))
1393             return error("Reorganize() : DisconnectBlock failed");
1394
1395         // Queue memory transactions to resurrect
1396         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1397             if (!tx.IsCoinBase())
1398                 vResurrect.push_back(tx);
1399     }
1400
1401     // Connect longer branch
1402     vector<CTransaction> vDelete;
1403     for (int i = 0; i < vConnect.size(); i++)
1404     {
1405         CBlockIndex* pindex = vConnect[i];
1406         CBlock block;
1407         if (!block.ReadFromDisk(pindex))
1408             return error("Reorganize() : ReadFromDisk for connect failed");
1409         if (!block.ConnectBlock(txdb, pindex))
1410         {
1411             // Invalid block
1412             txdb.TxnAbort();
1413             return error("Reorganize() : ConnectBlock failed");
1414         }
1415
1416         // Queue memory transactions to delete
1417         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1418             vDelete.push_back(tx);
1419     }
1420     if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1421         return error("Reorganize() : WriteHashBestChain failed");
1422
1423     // Make sure it's successfully written to disk before changing memory structure
1424     if (!txdb.TxnCommit())
1425         return error("Reorganize() : TxnCommit failed");
1426
1427     // Disconnect shorter branch
1428     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1429         if (pindex->pprev)
1430             pindex->pprev->pnext = NULL;
1431
1432     // Connect longer branch
1433     BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1434         if (pindex->pprev)
1435             pindex->pprev->pnext = pindex;
1436
1437     // Resurrect memory transactions that were in the disconnected branch
1438     BOOST_FOREACH(CTransaction& tx, vResurrect)
1439         tx.AcceptToMemoryPool(txdb, false);
1440
1441     // Delete redundant memory transactions that are in the connected branch
1442     BOOST_FOREACH(CTransaction& tx, vDelete)
1443         tx.RemoveFromMemoryPool();
1444
1445     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());
1446     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());
1447
1448     return true;
1449 }
1450
1451
1452 static void
1453 runCommand(std::string strCommand)
1454 {
1455     int nErr = ::system(strCommand.c_str());
1456     if (nErr)
1457         printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr);
1458 }
1459
1460 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1461 {
1462     uint256 hash = GetHash();
1463
1464     txdb.TxnBegin();
1465     if (pindexGenesisBlock == NULL && hash == hashGenesisBlock)
1466     {
1467         txdb.WriteHashBestChain(hash);
1468         if (!txdb.TxnCommit())
1469             return error("SetBestChain() : TxnCommit failed");
1470         pindexGenesisBlock = pindexNew;
1471     }
1472     else if (hashPrevBlock == hashBestChain)
1473     {
1474         // Adding to current best branch
1475         if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1476         {
1477             txdb.TxnAbort();
1478             InvalidChainFound(pindexNew);
1479             return error("SetBestChain() : ConnectBlock failed");
1480         }
1481         if (!txdb.TxnCommit())
1482             return error("SetBestChain() : TxnCommit failed");
1483
1484         // Add to current best branch
1485         pindexNew->pprev->pnext = pindexNew;
1486
1487         // Delete redundant memory transactions
1488         BOOST_FOREACH(CTransaction& tx, vtx)
1489             tx.RemoveFromMemoryPool();
1490     }
1491     else
1492     {
1493         // New best branch
1494         if (!Reorganize(txdb, pindexNew))
1495         {
1496             txdb.TxnAbort();
1497             InvalidChainFound(pindexNew);
1498             return error("SetBestChain() : Reorganize failed");
1499         }
1500     }
1501
1502     // Update best block in wallet (so we can detect restored wallets)
1503     bool fIsInitialDownload = IsInitialBlockDownload();
1504     if (!fIsInitialDownload)
1505     {
1506         const CBlockLocator locator(pindexNew);
1507         ::SetBestChain(locator);
1508     }
1509
1510     // New best block
1511     hashBestChain = hash;
1512     pindexBest = pindexNew;
1513     nBestHeight = pindexBest->nHeight;
1514     bnBestChainWork = pindexNew->bnChainWork;
1515     nTimeBestReceived = GetTime();
1516     nTransactionsUpdated++;
1517     printf("SetBestChain: new best=%s  height=%d  work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());
1518
1519     std::string strCmd = GetArg("-blocknotify", "");
1520
1521     if (!fIsInitialDownload && !strCmd.empty())
1522     {
1523         boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
1524         boost::thread t(runCommand, strCmd); // thread runs free
1525     }
1526
1527     return true;
1528 }
1529
1530
1531 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
1532 {
1533     // Check for duplicate
1534     uint256 hash = GetHash();
1535     if (mapBlockIndex.count(hash))
1536         return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
1537
1538     // Construct new block index object
1539     CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
1540     if (!pindexNew)
1541         return error("AddToBlockIndex() : new CBlockIndex failed");
1542     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
1543     pindexNew->phashBlock = &((*mi).first);
1544     map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
1545     if (miPrev != mapBlockIndex.end())
1546     {
1547         pindexNew->pprev = (*miPrev).second;
1548         pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
1549     }
1550     pindexNew->bnChainWork = (pindexNew->pprev ? pindexNew->pprev->bnChainWork : 0) + pindexNew->GetBlockWork();
1551
1552     CTxDB txdb;
1553     txdb.TxnBegin();
1554     txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
1555     if (!txdb.TxnCommit())
1556         return false;
1557
1558     // New best
1559     if (pindexNew->bnChainWork > bnBestChainWork)
1560         if (!SetBestChain(txdb, pindexNew))
1561             return false;
1562
1563     txdb.Close();
1564
1565     if (pindexNew == pindexBest)
1566     {
1567         // Notify UI to display prev block's coinbase if it was ours
1568         static uint256 hashPrevBestCoinBase;
1569         UpdatedTransaction(hashPrevBestCoinBase);
1570         hashPrevBestCoinBase = vtx[0].GetHash();
1571     }
1572
1573     MainFrameRepaint();
1574     return true;
1575 }
1576
1577
1578
1579
1580 bool CBlock::CheckBlock() const
1581 {
1582     // These are checks that are independent of context
1583     // that can be verified before saving an orphan block.
1584
1585     // Size limits
1586     if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
1587         return DoS(100, error("CheckBlock() : size limits failed"));
1588
1589     // Check proof of work matches claimed amount
1590     if (!CheckProofOfWork(GetHash(), nBits))
1591         return DoS(50, error("CheckBlock() : proof of work failed"));
1592
1593     // Check timestamp
1594     if (GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60)
1595         return error("CheckBlock() : block timestamp too far in the future");
1596
1597     // First transaction must be coinbase, the rest must not be
1598     if (vtx.empty() || !vtx[0].IsCoinBase())
1599         return DoS(100, error("CheckBlock() : first tx is not coinbase"));
1600     for (int i = 1; i < vtx.size(); i++)
1601         if (vtx[i].IsCoinBase())
1602             return DoS(100, error("CheckBlock() : more than one coinbase"));
1603
1604     // Check transactions
1605     BOOST_FOREACH(const CTransaction& tx, vtx)
1606         if (!tx.CheckTransaction())
1607             return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
1608
1609     int nSigOps = 0;
1610     BOOST_FOREACH(const CTransaction& tx, vtx)
1611     {
1612         nSigOps += tx.GetLegacySigOpCount();
1613     }
1614     if (nSigOps > MAX_BLOCK_SIGOPS)
1615         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
1616
1617     // Check merkleroot
1618     if (hashMerkleRoot != BuildMerkleTree())
1619         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
1620
1621     return true;
1622 }
1623
1624 bool CBlock::AcceptBlock()
1625 {
1626     // Check for duplicate
1627     uint256 hash = GetHash();
1628     if (mapBlockIndex.count(hash))
1629         return error("AcceptBlock() : block already in mapBlockIndex");
1630
1631     // Get prev block index
1632     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
1633     if (mi == mapBlockIndex.end())
1634         return DoS(10, error("AcceptBlock() : prev block not found"));
1635     CBlockIndex* pindexPrev = (*mi).second;
1636     int nHeight = pindexPrev->nHeight+1;
1637
1638     // Check proof of work
1639     if (nBits != GetNextWorkRequired(pindexPrev, this))
1640         return DoS(100, error("AcceptBlock() : incorrect proof of work"));
1641
1642     // Check timestamp against prev
1643     if (GetBlockTime() <= pindexPrev->GetMedianTimePast())
1644         return error("AcceptBlock() : block's timestamp is too early");
1645
1646     // Check that all transactions are finalized
1647     BOOST_FOREACH(const CTransaction& tx, vtx)
1648         if (!tx.IsFinal(nHeight, GetBlockTime()))
1649             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
1650
1651     // Check that the block chain matches the known block chain up to a checkpoint
1652     if (!Checkpoints::CheckBlock(nHeight, hash))
1653         return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight));
1654
1655     // Write block to history file
1656     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK)))
1657         return error("AcceptBlock() : out of disk space");
1658     unsigned int nFile = -1;
1659     unsigned int nBlockPos = 0;
1660     if (!WriteToDisk(nFile, nBlockPos))
1661         return error("AcceptBlock() : WriteToDisk failed");
1662     if (!AddToBlockIndex(nFile, nBlockPos))
1663         return error("AcceptBlock() : AddToBlockIndex failed");
1664
1665     // Relay inventory, but don't relay old inventory during initial block download
1666     if (hashBestChain == hash)
1667         CRITICAL_BLOCK(cs_vNodes)
1668             BOOST_FOREACH(CNode* pnode, vNodes)
1669                 if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 140700))
1670                     pnode->PushInventory(CInv(MSG_BLOCK, hash));
1671
1672     return true;
1673 }
1674
1675 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
1676 {
1677     // Check for duplicate
1678     uint256 hash = pblock->GetHash();
1679     if (mapBlockIndex.count(hash))
1680         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
1681     if (mapOrphanBlocks.count(hash))
1682         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
1683
1684     // Preliminary checks
1685     if (!pblock->CheckBlock())
1686         return error("ProcessBlock() : CheckBlock FAILED");
1687
1688     CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex);
1689     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain)
1690     {
1691         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
1692         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
1693         if (deltaTime < 0)
1694         {
1695             if (pfrom)
1696                 pfrom->Misbehaving(100);
1697             return error("ProcessBlock() : block with timestamp before last checkpoint");
1698         }
1699         CBigNum bnNewBlock;
1700         bnNewBlock.SetCompact(pblock->nBits);
1701         CBigNum bnRequired;
1702         bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime));
1703         if (bnNewBlock > bnRequired)
1704         {
1705             if (pfrom)
1706                 pfrom->Misbehaving(100);
1707             return error("ProcessBlock() : block with too little proof-of-work");
1708         }
1709     }
1710
1711
1712     // If don't already have its previous block, shunt it off to holding area until we get it
1713     if (!mapBlockIndex.count(pblock->hashPrevBlock))
1714     {
1715         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
1716         CBlock* pblock2 = new CBlock(*pblock);
1717         mapOrphanBlocks.insert(make_pair(hash, pblock2));
1718         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
1719
1720         // Ask this guy to fill in what we're missing
1721         if (pfrom)
1722             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
1723         return true;
1724     }
1725
1726     // Store to disk
1727     if (!pblock->AcceptBlock())
1728         return error("ProcessBlock() : AcceptBlock FAILED");
1729
1730     // Recursively process any orphan blocks that depended on this one
1731     vector<uint256> vWorkQueue;
1732     vWorkQueue.push_back(hash);
1733     for (int i = 0; i < vWorkQueue.size(); i++)
1734     {
1735         uint256 hashPrev = vWorkQueue[i];
1736         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
1737              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
1738              ++mi)
1739         {
1740             CBlock* pblockOrphan = (*mi).second;
1741             if (pblockOrphan->AcceptBlock())
1742                 vWorkQueue.push_back(pblockOrphan->GetHash());
1743             mapOrphanBlocks.erase(pblockOrphan->GetHash());
1744             delete pblockOrphan;
1745         }
1746         mapOrphanBlocksByPrev.erase(hashPrev);
1747     }
1748
1749     printf("ProcessBlock: ACCEPTED\n");
1750     return true;
1751 }
1752
1753
1754
1755
1756
1757
1758
1759
1760 bool CheckDiskSpace(uint64 nAdditionalBytes)
1761 {
1762     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
1763
1764     // Check for 15MB because database could create another 10MB log file at any time
1765     if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes)
1766     {
1767         fShutdown = true;
1768         string strMessage = _("Warning: Disk space is low  ");
1769         strMiscWarning = strMessage;
1770         printf("*** %s\n", strMessage.c_str());
1771         ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);
1772         CreateThread(Shutdown, NULL);
1773         return false;
1774     }
1775     return true;
1776 }
1777
1778 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
1779 {
1780     if (nFile == -1)
1781         return NULL;
1782     FILE* file = fopen(strprintf("%s/blk%04d.dat", GetDataDir().c_str(), nFile).c_str(), pszMode);
1783     if (!file)
1784         return NULL;
1785     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
1786     {
1787         if (fseek(file, nBlockPos, SEEK_SET) != 0)
1788         {
1789             fclose(file);
1790             return NULL;
1791         }
1792     }
1793     return file;
1794 }
1795
1796 static unsigned int nCurrentBlockFile = 1;
1797
1798 FILE* AppendBlockFile(unsigned int& nFileRet)
1799 {
1800     nFileRet = 0;
1801     loop
1802     {
1803         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
1804         if (!file)
1805             return NULL;
1806         if (fseek(file, 0, SEEK_END) != 0)
1807             return NULL;
1808         // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
1809         if (ftell(file) < 0x7F000000 - MAX_SIZE)
1810         {
1811             nFileRet = nCurrentBlockFile;
1812             return file;
1813         }
1814         fclose(file);
1815         nCurrentBlockFile++;
1816     }
1817 }
1818
1819 bool LoadBlockIndex(bool fAllowNew)
1820 {
1821     if (fTestNet)
1822     {
1823         hashGenesisBlock = uint256("0x00000007199508e34a9ff81e6ec0c477a4cccff2a4767a8eee39c11db367b008");
1824         bnProofOfWorkLimit = CBigNum(~uint256(0) >> 28);
1825         pchMessageStart[0] = 0xfa;
1826         pchMessageStart[1] = 0xbf;
1827         pchMessageStart[2] = 0xb5;
1828         pchMessageStart[3] = 0xda;
1829     }
1830
1831     //
1832     // Load block index
1833     //
1834     CTxDB txdb("cr");
1835     if (!txdb.LoadBlockIndex())
1836         return false;
1837     txdb.Close();
1838
1839     //
1840     // Init with genesis block
1841     //
1842     if (mapBlockIndex.empty())
1843     {
1844         if (!fAllowNew)
1845             return false;
1846
1847         // Genesis Block:
1848         // CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
1849         //   CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
1850         //     CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
1851         //     CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
1852         //   vMerkleTree: 4a5e1e
1853
1854         // Genesis block
1855         const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
1856         CTransaction txNew;
1857         txNew.vin.resize(1);
1858         txNew.vout.resize(1);
1859         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
1860         txNew.vout[0].nValue = 50 * COIN;
1861         txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
1862         CBlock block;
1863         block.vtx.push_back(txNew);
1864         block.hashPrevBlock = 0;
1865         block.hashMerkleRoot = block.BuildMerkleTree();
1866         block.nVersion = 1;
1867         block.nTime    = 1231006505;
1868         block.nBits    = 0x1d00ffff;
1869         block.nNonce   = 2083236893;
1870
1871         if (fTestNet)
1872         {
1873             block.nTime    = 1296688602;
1874             block.nBits    = 0x1d07fff8;
1875             block.nNonce   = 384568319;
1876         }
1877
1878         //// debug print
1879         printf("%s\n", block.GetHash().ToString().c_str());
1880         printf("%s\n", hashGenesisBlock.ToString().c_str());
1881         printf("%s\n", block.hashMerkleRoot.ToString().c_str());
1882         assert(block.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));
1883         block.print();
1884         assert(block.GetHash() == hashGenesisBlock);
1885
1886         // Start new block file
1887         unsigned int nFile;
1888         unsigned int nBlockPos;
1889         if (!block.WriteToDisk(nFile, nBlockPos))
1890             return error("LoadBlockIndex() : writing genesis block to disk failed");
1891         if (!block.AddToBlockIndex(nFile, nBlockPos))
1892             return error("LoadBlockIndex() : genesis block not accepted");
1893     }
1894
1895     return true;
1896 }
1897
1898
1899
1900 void PrintBlockTree()
1901 {
1902     // precompute tree structure
1903     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
1904     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
1905     {
1906         CBlockIndex* pindex = (*mi).second;
1907         mapNext[pindex->pprev].push_back(pindex);
1908         // test
1909         //while (rand() % 3 == 0)
1910         //    mapNext[pindex->pprev].push_back(pindex);
1911     }
1912
1913     vector<pair<int, CBlockIndex*> > vStack;
1914     vStack.push_back(make_pair(0, pindexGenesisBlock));
1915
1916     int nPrevCol = 0;
1917     while (!vStack.empty())
1918     {
1919         int nCol = vStack.back().first;
1920         CBlockIndex* pindex = vStack.back().second;
1921         vStack.pop_back();
1922
1923         // print split or gap
1924         if (nCol > nPrevCol)
1925         {
1926             for (int i = 0; i < nCol-1; i++)
1927                 printf("| ");
1928             printf("|\\\n");
1929         }
1930         else if (nCol < nPrevCol)
1931         {
1932             for (int i = 0; i < nCol; i++)
1933                 printf("| ");
1934             printf("|\n");
1935        }
1936         nPrevCol = nCol;
1937
1938         // print columns
1939         for (int i = 0; i < nCol; i++)
1940             printf("| ");
1941
1942         // print item
1943         CBlock block;
1944         block.ReadFromDisk(pindex);
1945         printf("%d (%u,%u) %s  %s  tx %d",
1946             pindex->nHeight,
1947             pindex->nFile,
1948             pindex->nBlockPos,
1949             block.GetHash().ToString().substr(0,20).c_str(),
1950             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
1951             block.vtx.size());
1952
1953         PrintWallets(block);
1954
1955         // put the main timechain first
1956         vector<CBlockIndex*>& vNext = mapNext[pindex];
1957         for (int i = 0; i < vNext.size(); i++)
1958         {
1959             if (vNext[i]->pnext)
1960             {
1961                 swap(vNext[0], vNext[i]);
1962                 break;
1963             }
1964         }
1965
1966         // iterate children
1967         for (int i = 0; i < vNext.size(); i++)
1968             vStack.push_back(make_pair(nCol+i, vNext[i]));
1969     }
1970 }
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981 //////////////////////////////////////////////////////////////////////////////
1982 //
1983 // CAlert
1984 //
1985
1986 map<uint256, CAlert> mapAlerts;
1987 CCriticalSection cs_mapAlerts;
1988
1989 string GetWarnings(string strFor)
1990 {
1991     int nPriority = 0;
1992     string strStatusBar;
1993     string strRPC;
1994     if (GetBoolArg("-testsafemode"))
1995         strRPC = "test";
1996
1997     // Misc warnings like out of disk space and clock is wrong
1998     if (strMiscWarning != "")
1999     {
2000         nPriority = 1000;
2001         strStatusBar = strMiscWarning;
2002     }
2003
2004     // Longer invalid proof-of-work chain
2005     if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
2006     {
2007         nPriority = 2000;
2008         strStatusBar = strRPC = "WARNING: Displayed transactions may not be correct!  You may need to upgrade, or other nodes may need to upgrade.";
2009     }
2010
2011     // Alerts
2012     CRITICAL_BLOCK(cs_mapAlerts)
2013     {
2014         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2015         {
2016             const CAlert& alert = item.second;
2017             if (alert.AppliesToMe() && alert.nPriority > nPriority)
2018             {
2019                 nPriority = alert.nPriority;
2020                 strStatusBar = alert.strStatusBar;
2021             }
2022         }
2023     }
2024
2025     if (strFor == "statusbar")
2026         return strStatusBar;
2027     else if (strFor == "rpc")
2028         return strRPC;
2029     assert(!"GetWarnings() : invalid parameter");
2030     return "error";
2031 }
2032
2033 bool CAlert::ProcessAlert()
2034 {
2035     if (!CheckSignature())
2036         return false;
2037     if (!IsInEffect())
2038         return false;
2039
2040     CRITICAL_BLOCK(cs_mapAlerts)
2041     {
2042         // Cancel previous alerts
2043         for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();)
2044         {
2045             const CAlert& alert = (*mi).second;
2046             if (Cancels(alert))
2047             {
2048                 printf("cancelling alert %d\n", alert.nID);
2049                 mapAlerts.erase(mi++);
2050             }
2051             else if (!alert.IsInEffect())
2052             {
2053                 printf("expiring alert %d\n", alert.nID);
2054                 mapAlerts.erase(mi++);
2055             }
2056             else
2057                 mi++;
2058         }
2059
2060         // Check if this alert has been cancelled
2061         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2062         {
2063             const CAlert& alert = item.second;
2064             if (alert.Cancels(*this))
2065             {
2066                 printf("alert already cancelled by %d\n", alert.nID);
2067                 return false;
2068             }
2069         }
2070
2071         // Add to mapAlerts
2072         mapAlerts.insert(make_pair(GetHash(), *this));
2073     }
2074
2075     printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe());
2076     MainFrameRepaint();
2077     return true;
2078 }
2079
2080
2081
2082
2083
2084
2085
2086
2087 //////////////////////////////////////////////////////////////////////////////
2088 //
2089 // Messages
2090 //
2091
2092
2093 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
2094 {
2095     switch (inv.type)
2096     {
2097     case MSG_TX:    return mapTransactions.count(inv.hash) || mapOrphanTransactions.count(inv.hash) || txdb.ContainsTx(inv.hash);
2098     case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
2099     }
2100     // Don't know what it is, just say we already got one
2101     return true;
2102 }
2103
2104
2105
2106
2107 // The message start string is designed to be unlikely to occur in normal data.
2108 // The characters are rarely used upper ascii, not valid as UTF-8, and produce
2109 // a large 4-byte int at any alignment.
2110 unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 };
2111
2112
2113 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
2114 {
2115     static map<CService, vector<unsigned char> > mapReuseKey;
2116     RandAddSeedPerfmon();
2117     if (fDebug) {
2118         printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
2119         printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size());
2120     }
2121     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
2122     {
2123         printf("dropmessagestest DROPPING RECV MESSAGE\n");
2124         return true;
2125     }
2126
2127
2128
2129
2130
2131     if (strCommand == "version")
2132     {
2133         // Each connection can only send one version message
2134         if (pfrom->nVersion != 0)
2135         {
2136             pfrom->Misbehaving(1);
2137             return false;
2138         }
2139
2140         int64 nTime;
2141         CAddress addrMe;
2142         CAddress addrFrom;
2143         uint64 nNonce = 1;
2144         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
2145         if (pfrom->nVersion < 209)
2146         {
2147             // Since February 20, 2012, the protocol is initiated at version 209,
2148             // and earlier versions are no longer supported
2149             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
2150             pfrom->fDisconnect = true;
2151             return false;
2152         }
2153
2154         if (pfrom->nVersion == 10300)
2155             pfrom->nVersion = 300;
2156         if (!vRecv.empty())
2157             vRecv >> addrFrom >> nNonce;
2158         if (!vRecv.empty())
2159             vRecv >> pfrom->strSubVer;
2160         if (!vRecv.empty())
2161             vRecv >> pfrom->nStartingHeight;
2162
2163         // Disconnect if we connected to ourself
2164         if (nNonce == nLocalHostNonce && nNonce > 1)
2165         {
2166             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
2167             pfrom->fDisconnect = true;
2168             return true;
2169         }
2170
2171         // Be shy and don't send version until we hear
2172         if (pfrom->fInbound)
2173             pfrom->PushVersion();
2174
2175         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
2176
2177         AddTimeData(pfrom->addr, nTime);
2178
2179         // Change version
2180         pfrom->PushMessage("verack");
2181         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2182
2183         if (!pfrom->fInbound)
2184         {
2185             // Advertise our address
2186             if (!fNoListen && !fUseProxy && addrLocalHost.IsRoutable() &&
2187                 !IsInitialBlockDownload())
2188             {
2189                 CAddress addr(addrLocalHost);
2190                 addr.nTime = GetAdjustedTime();
2191                 pfrom->PushAddress(addr);
2192             }
2193
2194             // Get recent addresses
2195             if (pfrom->nVersion >= 31402 || mapAddresses.size() < 1000)
2196             {
2197                 pfrom->PushMessage("getaddr");
2198                 pfrom->fGetAddr = true;
2199             }
2200         }
2201
2202         // Ask the first connected node for block updates
2203         static int nAskedForBlocks = 0;
2204         if (!pfrom->fClient &&
2205             (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
2206              (nAskedForBlocks < 1 || vNodes.size() <= 1))
2207         {
2208             nAskedForBlocks++;
2209             pfrom->PushGetBlocks(pindexBest, uint256(0));
2210         }
2211
2212         // Relay alerts
2213         CRITICAL_BLOCK(cs_mapAlerts)
2214             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2215                 item.second.RelayTo(pfrom);
2216
2217         pfrom->fSuccessfullyConnected = true;
2218
2219         printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight);
2220
2221         cPeerBlockCounts.input(pfrom->nStartingHeight);
2222     }
2223
2224
2225     else if (pfrom->nVersion == 0)
2226     {
2227         // Must have a version message before anything else
2228         pfrom->Misbehaving(1);
2229         return false;
2230     }
2231
2232
2233     else if (strCommand == "verack")
2234     {
2235         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2236     }
2237
2238
2239     else if (strCommand == "addr")
2240     {
2241         vector<CAddress> vAddr;
2242         vRecv >> vAddr;
2243
2244         // Don't want addr from older versions unless seeding
2245         if (pfrom->nVersion < 31402 && mapAddresses.size() > 1000)
2246             return true;
2247         if (vAddr.size() > 1000)
2248         {
2249             pfrom->Misbehaving(20);
2250             return error("message addr size() = %d", vAddr.size());
2251         }
2252
2253         // Store the new addresses
2254         CAddrDB addrDB;
2255         addrDB.TxnBegin();
2256         int64 nNow = GetAdjustedTime();
2257         int64 nSince = nNow - 10 * 60;
2258         BOOST_FOREACH(CAddress& addr, vAddr)
2259         {
2260             if (fShutdown)
2261                 return true;
2262             // ignore IPv6 for now, since it isn't implemented anyway
2263             if (!addr.IsIPv4())
2264                 continue;
2265             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
2266                 addr.nTime = nNow - 5 * 24 * 60 * 60;
2267             AddAddress(addr, 2 * 60 * 60, &addrDB);
2268             pfrom->AddAddressKnown(addr);
2269             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
2270             {
2271                 // Relay to a limited number of other nodes
2272                 CRITICAL_BLOCK(cs_vNodes)
2273                 {
2274                     // Use deterministic randomness to send to the same nodes for 24 hours
2275                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
2276                     static uint256 hashSalt;
2277                     if (hashSalt == 0)
2278                         RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2279                     int64 hashAddr = addr.GetHash();
2280                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
2281                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
2282                     multimap<uint256, CNode*> mapMix;
2283                     BOOST_FOREACH(CNode* pnode, vNodes)
2284                     {
2285                         if (pnode->nVersion < 31402)
2286                             continue;
2287                         unsigned int nPointer;
2288                         memcpy(&nPointer, &pnode, sizeof(nPointer));
2289                         uint256 hashKey = hashRand ^ nPointer;
2290                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
2291                         mapMix.insert(make_pair(hashKey, pnode));
2292                     }
2293                     int nRelayNodes = 2;
2294                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
2295                         ((*mi).second)->PushAddress(addr);
2296                 }
2297             }
2298         }
2299         addrDB.TxnCommit();  // Save addresses (it's ok if this fails)
2300         if (vAddr.size() < 1000)
2301             pfrom->fGetAddr = false;
2302     }
2303
2304
2305     else if (strCommand == "inv")
2306     {
2307         vector<CInv> vInv;
2308         vRecv >> vInv;
2309         if (vInv.size() > 50000)
2310         {
2311             pfrom->Misbehaving(20);
2312             return error("message inv size() = %d", vInv.size());
2313         }
2314
2315         CTxDB txdb("r");
2316         BOOST_FOREACH(const CInv& inv, vInv)
2317         {
2318             if (fShutdown)
2319                 return true;
2320             pfrom->AddInventoryKnown(inv);
2321
2322             bool fAlreadyHave = AlreadyHave(txdb, inv);
2323             if (fDebug)
2324                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
2325
2326             if (!fAlreadyHave)
2327                 pfrom->AskFor(inv);
2328             else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash))
2329                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
2330
2331             // Track requests for our stuff
2332             Inventory(inv.hash);
2333         }
2334     }
2335
2336
2337     else if (strCommand == "getdata")
2338     {
2339         vector<CInv> vInv;
2340         vRecv >> vInv;
2341         if (vInv.size() > 50000)
2342         {
2343             pfrom->Misbehaving(20);
2344             return error("message getdata size() = %d", vInv.size());
2345         }
2346
2347         BOOST_FOREACH(const CInv& inv, vInv)
2348         {
2349             if (fShutdown)
2350                 return true;
2351             printf("received getdata for: %s\n", inv.ToString().c_str());
2352
2353             if (inv.type == MSG_BLOCK)
2354             {
2355                 // Send block from disk
2356                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
2357                 if (mi != mapBlockIndex.end())
2358                 {
2359                     CBlock block;
2360                     block.ReadFromDisk((*mi).second);
2361                     pfrom->PushMessage("block", block);
2362
2363                     // Trigger them to send a getblocks request for the next batch of inventory
2364                     if (inv.hash == pfrom->hashContinue)
2365                     {
2366                         // Bypass PushInventory, this must send even if redundant,
2367                         // and we want it right after the last block so they don't
2368                         // wait for other stuff first.
2369                         vector<CInv> vInv;
2370                         vInv.push_back(CInv(MSG_BLOCK, hashBestChain));
2371                         pfrom->PushMessage("inv", vInv);
2372                         pfrom->hashContinue = 0;
2373                     }
2374                 }
2375             }
2376             else if (inv.IsKnownType())
2377             {
2378                 // Send stream from relay memory
2379                 CRITICAL_BLOCK(cs_mapRelay)
2380                 {
2381                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
2382                     if (mi != mapRelay.end())
2383                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
2384                 }
2385             }
2386
2387             // Track requests for our stuff
2388             Inventory(inv.hash);
2389         }
2390     }
2391
2392
2393     else if (strCommand == "getblocks")
2394     {
2395         CBlockLocator locator;
2396         uint256 hashStop;
2397         vRecv >> locator >> hashStop;
2398
2399         // Find the last block the caller has in the main chain
2400         CBlockIndex* pindex = locator.GetBlockIndex();
2401
2402         // Send the rest of the chain
2403         if (pindex)
2404             pindex = pindex->pnext;
2405         int nLimit = 500 + locator.GetDistanceBack();
2406         unsigned int nBytes = 0;
2407         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2408         for (; pindex; pindex = pindex->pnext)
2409         {
2410             if (pindex->GetBlockHash() == hashStop)
2411             {
2412                 printf("  getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2413                 break;
2414             }
2415             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
2416             CBlock block;
2417             block.ReadFromDisk(pindex, true);
2418             nBytes += block.GetSerializeSize(SER_NETWORK);
2419             if (--nLimit <= 0 || nBytes >= SendBufferSize()/2)
2420             {
2421                 // When this block is requested, we'll send an inv that'll make them
2422                 // getblocks the next batch of inventory.
2423                 printf("  getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
2424                 pfrom->hashContinue = pindex->GetBlockHash();
2425                 break;
2426             }
2427         }
2428     }
2429
2430
2431     else if (strCommand == "getheaders")
2432     {
2433         CBlockLocator locator;
2434         uint256 hashStop;
2435         vRecv >> locator >> hashStop;
2436
2437         CBlockIndex* pindex = NULL;
2438         if (locator.IsNull())
2439         {
2440             // If locator is null, return the hashStop block
2441             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
2442             if (mi == mapBlockIndex.end())
2443                 return true;
2444             pindex = (*mi).second;
2445         }
2446         else
2447         {
2448             // Find the last block the caller has in the main chain
2449             pindex = locator.GetBlockIndex();
2450             if (pindex)
2451                 pindex = pindex->pnext;
2452         }
2453
2454         vector<CBlock> vHeaders;
2455         int nLimit = 2000 + locator.GetDistanceBack();
2456         printf("getheaders %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2457         for (; pindex; pindex = pindex->pnext)
2458         {
2459             vHeaders.push_back(pindex->GetBlockHeader());
2460             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
2461                 break;
2462         }
2463         pfrom->PushMessage("headers", vHeaders);
2464     }
2465
2466
2467     else if (strCommand == "tx")
2468     {
2469         vector<uint256> vWorkQueue;
2470         CDataStream vMsg(vRecv);
2471         CTransaction tx;
2472         vRecv >> tx;
2473
2474         CInv inv(MSG_TX, tx.GetHash());
2475         pfrom->AddInventoryKnown(inv);
2476
2477         bool fMissingInputs = false;
2478         if (tx.AcceptToMemoryPool(true, &fMissingInputs))
2479         {
2480             SyncWithWallets(tx, NULL, true);
2481             RelayMessage(inv, vMsg);
2482             mapAlreadyAskedFor.erase(inv);
2483             vWorkQueue.push_back(inv.hash);
2484
2485             // Recursively process any orphan transactions that depended on this one
2486             for (int i = 0; i < vWorkQueue.size(); i++)
2487             {
2488                 uint256 hashPrev = vWorkQueue[i];
2489                 for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev);
2490                      mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev);
2491                      ++mi)
2492                 {
2493                     const CDataStream& vMsg = *((*mi).second);
2494                     CTransaction tx;
2495                     CDataStream(vMsg) >> tx;
2496                     CInv inv(MSG_TX, tx.GetHash());
2497
2498                     if (tx.AcceptToMemoryPool(true))
2499                     {
2500                         printf("   accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2501                         SyncWithWallets(tx, NULL, true);
2502                         RelayMessage(inv, vMsg);
2503                         mapAlreadyAskedFor.erase(inv);
2504                         vWorkQueue.push_back(inv.hash);
2505                     }
2506                 }
2507             }
2508
2509             BOOST_FOREACH(uint256 hash, vWorkQueue)
2510                 EraseOrphanTx(hash);
2511         }
2512         else if (fMissingInputs)
2513         {
2514             printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
2515             AddOrphanTx(vMsg);
2516
2517             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
2518             int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
2519             if (nEvicted > 0)
2520                 printf("mapOrphan overflow, removed %d tx\n", nEvicted);
2521         }
2522         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
2523     }
2524
2525
2526     else if (strCommand == "block")
2527     {
2528         CBlock block;
2529         vRecv >> block;
2530
2531         printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
2532         // block.print();
2533
2534         CInv inv(MSG_BLOCK, block.GetHash());
2535         pfrom->AddInventoryKnown(inv);
2536
2537         if (ProcessBlock(pfrom, &block))
2538             mapAlreadyAskedFor.erase(inv);
2539         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
2540     }
2541
2542
2543     else if (strCommand == "getaddr")
2544     {
2545         // Nodes rebroadcast an addr every 24 hours
2546         pfrom->vAddrToSend.clear();
2547         int64 nSince = GetAdjustedTime() - 3 * 60 * 60; // in the last 3 hours
2548         CRITICAL_BLOCK(cs_mapAddresses)
2549         {
2550             unsigned int nCount = 0;
2551             BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
2552             {
2553                 const CAddress& addr = item.second;
2554                 if (addr.nTime > nSince)
2555                     nCount++;
2556             }
2557             BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
2558             {
2559                 const CAddress& addr = item.second;
2560                 if (addr.nTime > nSince && GetRand(nCount) < 2500)
2561                     pfrom->PushAddress(addr);
2562             }
2563         }
2564     }
2565
2566
2567     else if (strCommand == "checkorder")
2568     {
2569         uint256 hashReply;
2570         vRecv >> hashReply;
2571
2572         if (!GetBoolArg("-allowreceivebyip"))
2573         {
2574             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
2575             return true;
2576         }
2577
2578         CWalletTx order;
2579         vRecv >> order;
2580
2581         /// we have a chance to check the order here
2582
2583         // Keep giving the same key to the same ip until they use it
2584         if (!mapReuseKey.count(pfrom->addr))
2585             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
2586
2587         // Send back approval of order and pubkey to use
2588         CScript scriptPubKey;
2589         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
2590         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
2591     }
2592
2593
2594     else if (strCommand == "reply")
2595     {
2596         uint256 hashReply;
2597         vRecv >> hashReply;
2598
2599         CRequestTracker tracker;
2600         CRITICAL_BLOCK(pfrom->cs_mapRequests)
2601         {
2602             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
2603             if (mi != pfrom->mapRequests.end())
2604             {
2605                 tracker = (*mi).second;
2606                 pfrom->mapRequests.erase(mi);
2607             }
2608         }
2609         if (!tracker.IsNull())
2610             tracker.fn(tracker.param1, vRecv);
2611     }
2612
2613
2614     else if (strCommand == "ping")
2615     {
2616     }
2617
2618
2619     else if (strCommand == "alert")
2620     {
2621         CAlert alert;
2622         vRecv >> alert;
2623
2624         if (alert.ProcessAlert())
2625         {
2626             // Relay
2627             pfrom->setKnown.insert(alert.GetHash());
2628             CRITICAL_BLOCK(cs_vNodes)
2629                 BOOST_FOREACH(CNode* pnode, vNodes)
2630                     alert.RelayTo(pnode);
2631         }
2632     }
2633
2634
2635     else
2636     {
2637         // Ignore unknown commands for extensibility
2638     }
2639
2640
2641     // Update the last seen time for this node's address
2642     if (pfrom->fNetworkNode)
2643         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
2644             AddressCurrentlyConnected(pfrom->addr);
2645
2646
2647     return true;
2648 }
2649
2650 bool ProcessMessages(CNode* pfrom)
2651 {
2652     CDataStream& vRecv = pfrom->vRecv;
2653     if (vRecv.empty())
2654         return true;
2655     //if (fDebug)
2656     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
2657
2658     //
2659     // Message format
2660     //  (4) message start
2661     //  (12) command
2662     //  (4) size
2663     //  (4) checksum
2664     //  (x) data
2665     //
2666
2667     loop
2668     {
2669         // Scan for message start
2670         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
2671         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
2672         if (vRecv.end() - pstart < nHeaderSize)
2673         {
2674             if (vRecv.size() > nHeaderSize)
2675             {
2676                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
2677                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
2678             }
2679             break;
2680         }
2681         if (pstart - vRecv.begin() > 0)
2682             printf("\n\nPROCESSMESSAGE SKIPPED %d BYTES\n\n", pstart - vRecv.begin());
2683         vRecv.erase(vRecv.begin(), pstart);
2684
2685         // Read header
2686         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
2687         CMessageHeader hdr;
2688         vRecv >> hdr;
2689         if (!hdr.IsValid())
2690         {
2691             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
2692             continue;
2693         }
2694         string strCommand = hdr.GetCommand();
2695
2696         // Message size
2697         unsigned int nMessageSize = hdr.nMessageSize;
2698         if (nMessageSize > MAX_SIZE)
2699         {
2700             printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
2701             continue;
2702         }
2703         if (nMessageSize > vRecv.size())
2704         {
2705             // Rewind and wait for rest of message
2706             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
2707             break;
2708         }
2709
2710         // Checksum
2711         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
2712         unsigned int nChecksum = 0;
2713         memcpy(&nChecksum, &hash, sizeof(nChecksum));
2714         if (nChecksum != hdr.nChecksum)
2715         {
2716             printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
2717                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
2718             continue;
2719         }
2720
2721         // Copy message to its own buffer
2722         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
2723         vRecv.ignore(nMessageSize);
2724
2725         // Process message
2726         bool fRet = false;
2727         try
2728         {
2729             CRITICAL_BLOCK(cs_main)
2730                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
2731             if (fShutdown)
2732                 return true;
2733         }
2734         catch (std::ios_base::failure& e)
2735         {
2736             if (strstr(e.what(), "end of data"))
2737             {
2738                 // Allow exceptions from underlength message on vRecv
2739                 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());
2740             }
2741             else if (strstr(e.what(), "size too large"))
2742             {
2743                 // Allow exceptions from overlong size
2744                 printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
2745             }
2746             else
2747             {
2748                 PrintExceptionContinue(&e, "ProcessMessage()");
2749             }
2750         }
2751         catch (std::exception& e) {
2752             PrintExceptionContinue(&e, "ProcessMessage()");
2753         } catch (...) {
2754             PrintExceptionContinue(NULL, "ProcessMessage()");
2755         }
2756
2757         if (!fRet)
2758             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
2759     }
2760
2761     vRecv.Compact();
2762     return true;
2763 }
2764
2765
2766 bool SendMessages(CNode* pto, bool fSendTrickle)
2767 {
2768     CRITICAL_BLOCK(cs_main)
2769     {
2770         // Don't send anything until we get their version message
2771         if (pto->nVersion == 0)
2772             return true;
2773
2774         // Keep-alive ping
2775         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty())
2776             pto->PushMessage("ping");
2777
2778         // Resend wallet transactions that haven't gotten in a block yet
2779         ResendWalletTransactions();
2780
2781         // Address refresh broadcast
2782         static int64 nLastRebroadcast;
2783         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
2784         {
2785             CRITICAL_BLOCK(cs_vNodes)
2786             {
2787                 BOOST_FOREACH(CNode* pnode, vNodes)
2788                 {
2789                     // Periodically clear setAddrKnown to allow refresh broadcasts
2790                     if (nLastRebroadcast)
2791                         pnode->setAddrKnown.clear();
2792
2793                     // Rebroadcast our address
2794                     if (!fNoListen && !fUseProxy && addrLocalHost.IsRoutable())
2795                     {
2796                         CAddress addr(addrLocalHost);
2797                         addr.nTime = GetAdjustedTime();
2798                         pnode->PushAddress(addr);
2799                     }
2800                 }
2801             }
2802             nLastRebroadcast = GetTime();
2803         }
2804
2805         // Clear out old addresses periodically so it's not too much work at once
2806         static int64 nLastClear;
2807         if (nLastClear == 0)
2808             nLastClear = GetTime();
2809         if (GetTime() - nLastClear > 10 * 60 && vNodes.size() >= 3)
2810         {
2811             nLastClear = GetTime();
2812             CRITICAL_BLOCK(cs_mapAddresses)
2813             {
2814                 CAddrDB addrdb;
2815                 int64 nSince = GetAdjustedTime() - 14 * 24 * 60 * 60;
2816                 for (map<vector<unsigned char>, CAddress>::iterator mi = mapAddresses.begin();
2817                      mi != mapAddresses.end();)
2818                 {
2819                     const CAddress& addr = (*mi).second;
2820                     if (addr.nTime < nSince)
2821                     {
2822                         if (mapAddresses.size() < 1000 || GetTime() > nLastClear + 20)
2823                             break;
2824                         addrdb.EraseAddress(addr);
2825                         mapAddresses.erase(mi++);
2826                     }
2827                     else
2828                         mi++;
2829                 }
2830             }
2831         }
2832
2833
2834         //
2835         // Message: addr
2836         //
2837         if (fSendTrickle)
2838         {
2839             vector<CAddress> vAddr;
2840             vAddr.reserve(pto->vAddrToSend.size());
2841             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
2842             {
2843                 // returns true if wasn't already contained in the set
2844                 if (pto->setAddrKnown.insert(addr).second)
2845                 {
2846                     vAddr.push_back(addr);
2847                     // receiver rejects addr messages larger than 1000
2848                     if (vAddr.size() >= 1000)
2849                     {
2850                         pto->PushMessage("addr", vAddr);
2851                         vAddr.clear();
2852                     }
2853                 }
2854             }
2855             pto->vAddrToSend.clear();
2856             if (!vAddr.empty())
2857                 pto->PushMessage("addr", vAddr);
2858         }
2859
2860
2861         //
2862         // Message: inventory
2863         //
2864         vector<CInv> vInv;
2865         vector<CInv> vInvWait;
2866         CRITICAL_BLOCK(pto->cs_inventory)
2867         {
2868             vInv.reserve(pto->vInventoryToSend.size());
2869             vInvWait.reserve(pto->vInventoryToSend.size());
2870             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
2871             {
2872                 if (pto->setInventoryKnown.count(inv))
2873                     continue;
2874
2875                 // trickle out tx inv to protect privacy
2876                 if (inv.type == MSG_TX && !fSendTrickle)
2877                 {
2878                     // 1/4 of tx invs blast to all immediately
2879                     static uint256 hashSalt;
2880                     if (hashSalt == 0)
2881                         RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2882                     uint256 hashRand = inv.hash ^ hashSalt;
2883                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
2884                     bool fTrickleWait = ((hashRand & 3) != 0);
2885
2886                     // always trickle our own transactions
2887                     if (!fTrickleWait)
2888                     {
2889                         CWalletTx wtx;
2890                         if (GetTransaction(inv.hash, wtx))
2891                             if (wtx.fFromMe)
2892                                 fTrickleWait = true;
2893                     }
2894
2895                     if (fTrickleWait)
2896                     {
2897                         vInvWait.push_back(inv);
2898                         continue;
2899                     }
2900                 }
2901
2902                 // returns true if wasn't already contained in the set
2903                 if (pto->setInventoryKnown.insert(inv).second)
2904                 {
2905                     vInv.push_back(inv);
2906                     if (vInv.size() >= 1000)
2907                     {
2908                         pto->PushMessage("inv", vInv);
2909                         vInv.clear();
2910                     }
2911                 }
2912             }
2913             pto->vInventoryToSend = vInvWait;
2914         }
2915         if (!vInv.empty())
2916             pto->PushMessage("inv", vInv);
2917
2918
2919         //
2920         // Message: getdata
2921         //
2922         vector<CInv> vGetData;
2923         int64 nNow = GetTime() * 1000000;
2924         CTxDB txdb("r");
2925         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
2926         {
2927             const CInv& inv = (*pto->mapAskFor.begin()).second;
2928             if (!AlreadyHave(txdb, inv))
2929             {
2930                 printf("sending getdata: %s\n", inv.ToString().c_str());
2931                 vGetData.push_back(inv);
2932                 if (vGetData.size() >= 1000)
2933                 {
2934                     pto->PushMessage("getdata", vGetData);
2935                     vGetData.clear();
2936                 }
2937             }
2938             mapAlreadyAskedFor[inv] = nNow;
2939             pto->mapAskFor.erase(pto->mapAskFor.begin());
2940         }
2941         if (!vGetData.empty())
2942             pto->PushMessage("getdata", vGetData);
2943
2944     }
2945     return true;
2946 }
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961 //////////////////////////////////////////////////////////////////////////////
2962 //
2963 // BitcoinMiner
2964 //
2965
2966 int static FormatHashBlocks(void* pbuffer, unsigned int len)
2967 {
2968     unsigned char* pdata = (unsigned char*)pbuffer;
2969     unsigned int blocks = 1 + ((len + 8) / 64);
2970     unsigned char* pend = pdata + 64 * blocks;
2971     memset(pdata + len, 0, 64 * blocks - len);
2972     pdata[len] = 0x80;
2973     unsigned int bits = len * 8;
2974     pend[-1] = (bits >> 0) & 0xff;
2975     pend[-2] = (bits >> 8) & 0xff;
2976     pend[-3] = (bits >> 16) & 0xff;
2977     pend[-4] = (bits >> 24) & 0xff;
2978     return blocks;
2979 }
2980
2981 static const unsigned int pSHA256InitState[8] =
2982 {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
2983
2984 void SHA256Transform(void* pstate, void* pinput, const void* pinit)
2985 {
2986     SHA256_CTX ctx;
2987     unsigned char data[64];
2988
2989     SHA256_Init(&ctx);
2990
2991     for (int i = 0; i < 16; i++)
2992         ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
2993
2994     for (int i = 0; i < 8; i++)
2995         ctx.h[i] = ((uint32_t*)pinit)[i];
2996
2997     SHA256_Update(&ctx, data, sizeof(data));
2998     for (int i = 0; i < 8; i++) 
2999         ((uint32_t*)pstate)[i] = ctx.h[i];
3000 }
3001
3002 //
3003 // ScanHash scans nonces looking for a hash with at least some zero bits.
3004 // It operates on big endian data.  Caller does the byte reversing.
3005 // All input buffers are 16-byte aligned.  nNonce is usually preserved
3006 // between calls, but periodically or if nNonce is 0xffff0000 or above,
3007 // the block is rebuilt and nNonce starts over at zero.
3008 //
3009 unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone)
3010 {
3011     unsigned int& nNonce = *(unsigned int*)(pdata + 12);
3012     for (;;)
3013     {
3014         // Crypto++ SHA-256
3015         // Hash pdata using pmidstate as the starting state into
3016         // preformatted buffer phash1, then hash phash1 into phash
3017         nNonce++;
3018         SHA256Transform(phash1, pdata, pmidstate);
3019         SHA256Transform(phash, phash1, pSHA256InitState);
3020
3021         // Return the nonce if the hash has at least some zero bits,
3022         // caller will check if it has enough to reach the target
3023         if (((unsigned short*)phash)[14] == 0)
3024             return nNonce;
3025
3026         // If nothing found after trying for a while, return -1
3027         if ((nNonce & 0xffff) == 0)
3028         {
3029             nHashesDone = 0xffff+1;
3030             return -1;
3031         }
3032     }
3033 }
3034
3035 // Some explaining would be appreciated
3036 class COrphan
3037 {
3038 public:
3039     CTransaction* ptx;
3040     set<uint256> setDependsOn;
3041     double dPriority;
3042
3043     COrphan(CTransaction* ptxIn)
3044     {
3045         ptx = ptxIn;
3046         dPriority = 0;
3047     }
3048
3049     void print() const
3050     {
3051         printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority);
3052         BOOST_FOREACH(uint256 hash, setDependsOn)
3053             printf("   setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
3054     }
3055 };
3056
3057
3058 uint64 nLastBlockTx = 0;
3059 uint64 nLastBlockSize = 0;
3060
3061 CBlock* CreateNewBlock(CReserveKey& reservekey)
3062 {
3063     CBlockIndex* pindexPrev = pindexBest;
3064
3065     // Create new block
3066     auto_ptr<CBlock> pblock(new CBlock());
3067     if (!pblock.get())
3068         return NULL;
3069
3070     // Create coinbase tx
3071     CTransaction txNew;
3072     txNew.vin.resize(1);
3073     txNew.vin[0].prevout.SetNull();
3074     txNew.vout.resize(1);
3075     txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
3076
3077     // Add our coinbase tx as first transaction
3078     pblock->vtx.push_back(txNew);
3079
3080     // Collect memory pool transactions into the block
3081     int64 nFees = 0;
3082     CRITICAL_BLOCK(cs_main)
3083     CRITICAL_BLOCK(cs_mapTransactions)
3084     {
3085         CTxDB txdb("r");
3086
3087         // Priority order to process transactions
3088         list<COrphan> vOrphan; // list memory doesn't move
3089         map<uint256, vector<COrphan*> > mapDependers;
3090         multimap<double, CTransaction*> mapPriority;
3091         for (map<uint256, CTransaction>::iterator mi = mapTransactions.begin(); mi != mapTransactions.end(); ++mi)
3092         {
3093             CTransaction& tx = (*mi).second;
3094             if (tx.IsCoinBase() || !tx.IsFinal())
3095                 continue;
3096
3097             COrphan* porphan = NULL;
3098             double dPriority = 0;
3099             BOOST_FOREACH(const CTxIn& txin, tx.vin)
3100             {
3101                 // Read prev transaction
3102                 CTransaction txPrev;
3103                 CTxIndex txindex;
3104                 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
3105                 {
3106                     // Has to wait for dependencies
3107                     if (!porphan)
3108                     {
3109                         // Use list for automatic deletion
3110                         vOrphan.push_back(COrphan(&tx));
3111                         porphan = &vOrphan.back();
3112                     }
3113                     mapDependers[txin.prevout.hash].push_back(porphan);
3114                     porphan->setDependsOn.insert(txin.prevout.hash);
3115                     continue;
3116                 }
3117                 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
3118
3119                 // Read block header
3120                 int nConf = txindex.GetDepthInMainChain();
3121
3122                 dPriority += (double)nValueIn * nConf;
3123
3124                 if (fDebug && GetBoolArg("-printpriority"))
3125                     printf("priority     nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority);
3126             }
3127
3128             // Priority is sum(valuein * age) / txsize
3129             dPriority /= ::GetSerializeSize(tx, SER_NETWORK);
3130
3131             if (porphan)
3132                 porphan->dPriority = dPriority;
3133             else
3134                 mapPriority.insert(make_pair(-dPriority, &(*mi).second));
3135
3136             if (fDebug && GetBoolArg("-printpriority"))
3137             {
3138                 printf("priority %-20.1f %s\n%s", dPriority, tx.GetHash().ToString().substr(0,10).c_str(), tx.ToString().c_str());
3139                 if (porphan)
3140                     porphan->print();
3141                 printf("\n");
3142             }
3143         }
3144
3145         // Collect transactions into block
3146         map<uint256, CTxIndex> mapTestPool;
3147         uint64 nBlockSize = 1000;
3148         uint64 nBlockTx = 0;
3149         int nBlockSigOps = 100;
3150         while (!mapPriority.empty())
3151         {
3152             // Take highest priority transaction off priority queue
3153             double dPriority = -(*mapPriority.begin()).first;
3154             CTransaction& tx = *(*mapPriority.begin()).second;
3155             mapPriority.erase(mapPriority.begin());
3156
3157             // Size limits
3158             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK);
3159             if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN)
3160                 continue;
3161
3162             // Legacy limits on sigOps:
3163             int nTxSigOps = tx.GetLegacySigOpCount();
3164             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
3165                 continue;
3166
3167             // Transaction fee required depends on block size
3168             bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority));
3169             int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, GMF_BLOCK);
3170
3171             // Connecting shouldn't fail due to dependency on other memory pool transactions
3172             // because we're already processing them in order of dependency
3173             map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
3174             MapPrevTx mapInputs;
3175             bool fInvalid;
3176             if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
3177                 continue;
3178
3179             int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
3180             if (nTxFees < nMinFee)
3181                 continue;
3182
3183             nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
3184             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
3185                 continue;
3186
3187             if (!tx.ConnectInputs(mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
3188                 continue;
3189             mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
3190             swap(mapTestPool, mapTestPoolTmp);
3191
3192             // Added
3193             pblock->vtx.push_back(tx);
3194             nBlockSize += nTxSize;
3195             ++nBlockTx;
3196             nBlockSigOps += nTxSigOps;
3197             nFees += nTxFees;
3198
3199             // Add transactions that depend on this one to the priority queue
3200             uint256 hash = tx.GetHash();
3201             if (mapDependers.count(hash))
3202             {
3203                 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
3204                 {
3205                     if (!porphan->setDependsOn.empty())
3206                     {
3207                         porphan->setDependsOn.erase(hash);
3208                         if (porphan->setDependsOn.empty())
3209                             mapPriority.insert(make_pair(-porphan->dPriority, porphan->ptx));
3210                     }
3211                 }
3212             }
3213         }
3214
3215         nLastBlockTx = nBlockTx;
3216         nLastBlockSize = nBlockSize;
3217         printf("CreateNewBlock(): total size %lu\n", nBlockSize);
3218
3219     }
3220     pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees);
3221
3222     // Fill in header
3223     pblock->hashPrevBlock  = pindexPrev->GetBlockHash();
3224     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
3225     pblock->UpdateTime(pindexPrev);
3226     pblock->nBits          = GetNextWorkRequired(pindexPrev, pblock.get());
3227     pblock->nNonce         = 0;
3228
3229     return pblock.release();
3230 }
3231
3232
3233 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
3234 {
3235     // Update nExtraNonce
3236     static uint256 hashPrevBlock;
3237     if (hashPrevBlock != pblock->hashPrevBlock)
3238     {
3239         nExtraNonce = 0;
3240         hashPrevBlock = pblock->hashPrevBlock;
3241     }
3242     ++nExtraNonce;
3243     pblock->vtx[0].vin[0].scriptSig = (CScript() << pblock->nTime << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
3244     assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
3245
3246     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
3247 }
3248
3249
3250 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
3251 {
3252     //
3253     // Prebuild hash buffers
3254     //
3255     struct
3256     {
3257         struct unnamed2
3258         {
3259             int nVersion;
3260             uint256 hashPrevBlock;
3261             uint256 hashMerkleRoot;
3262             unsigned int nTime;
3263             unsigned int nBits;
3264             unsigned int nNonce;
3265         }
3266         block;
3267         unsigned char pchPadding0[64];
3268         uint256 hash1;
3269         unsigned char pchPadding1[64];
3270     }
3271     tmp;
3272     memset(&tmp, 0, sizeof(tmp));
3273
3274     tmp.block.nVersion       = pblock->nVersion;
3275     tmp.block.hashPrevBlock  = pblock->hashPrevBlock;
3276     tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
3277     tmp.block.nTime          = pblock->nTime;
3278     tmp.block.nBits          = pblock->nBits;
3279     tmp.block.nNonce         = pblock->nNonce;
3280
3281     FormatHashBlocks(&tmp.block, sizeof(tmp.block));
3282     FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
3283
3284     // Byte swap all the input buffer
3285     for (int i = 0; i < sizeof(tmp)/4; i++)
3286         ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
3287
3288     // Precalc the first half of the first hash, which stays constant
3289     SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
3290
3291     memcpy(pdata, &tmp.block, 128);
3292     memcpy(phash1, &tmp.hash1, 64);
3293 }
3294
3295
3296 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
3297 {
3298     uint256 hash = pblock->GetHash();
3299     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3300
3301     if (hash > hashTarget)
3302         return false;
3303
3304     //// debug print
3305     printf("BitcoinMiner:\n");
3306     printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
3307     pblock->print();
3308     printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3309     printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
3310
3311     // Found a solution
3312     CRITICAL_BLOCK(cs_main)
3313     {
3314         if (pblock->hashPrevBlock != hashBestChain)
3315             return error("BitcoinMiner : generated block is stale");
3316
3317         // Remove key from key pool
3318         reservekey.KeepKey();
3319
3320         // Track how many getdata requests this block gets
3321         CRITICAL_BLOCK(wallet.cs_wallet)
3322             wallet.mapRequestCount[pblock->GetHash()] = 0;
3323
3324         // Process this block the same as if we had received it from another node
3325         if (!ProcessBlock(NULL, pblock))
3326             return error("BitcoinMiner : ProcessBlock, block not accepted");
3327     }
3328
3329     return true;
3330 }
3331
3332 void static ThreadBitcoinMiner(void* parg);
3333
3334 static bool fGenerateBitcoins = false;
3335 static bool fLimitProcessors = false;
3336 static int nLimitProcessors = -1;
3337
3338 void static BitcoinMiner(CWallet *pwallet)
3339 {
3340     printf("BitcoinMiner started\n");
3341     SetThreadPriority(THREAD_PRIORITY_LOWEST);
3342
3343     // Each thread has its own key and counter
3344     CReserveKey reservekey(pwallet);
3345     unsigned int nExtraNonce = 0;
3346
3347     while (fGenerateBitcoins)
3348     {
3349         if (AffinityBugWorkaround(ThreadBitcoinMiner))
3350             return;
3351         if (fShutdown)
3352             return;
3353         while (vNodes.empty() || IsInitialBlockDownload())
3354         {
3355             Sleep(1000);
3356             if (fShutdown)
3357                 return;
3358             if (!fGenerateBitcoins)
3359                 return;
3360         }
3361
3362
3363         //
3364         // Create new block
3365         //
3366         unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
3367         CBlockIndex* pindexPrev = pindexBest;
3368
3369         auto_ptr<CBlock> pblock(CreateNewBlock(reservekey));
3370         if (!pblock.get())
3371             return;
3372         IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
3373
3374         printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
3375
3376
3377         //
3378         // Prebuild hash buffers
3379         //
3380         char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
3381         char pdatabuf[128+16];    char* pdata     = alignup<16>(pdatabuf);
3382         char phash1buf[64+16];    char* phash1    = alignup<16>(phash1buf);
3383
3384         FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1);
3385
3386         unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
3387         unsigned int& nBlockBits = *(unsigned int*)(pdata + 64 + 8);
3388         unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
3389
3390
3391         //
3392         // Search
3393         //
3394         int64 nStart = GetTime();
3395         uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3396         uint256 hashbuf[2];
3397         uint256& hash = *alignup<16>(hashbuf);
3398         loop
3399         {
3400             unsigned int nHashesDone = 0;
3401             unsigned int nNonceFound;
3402
3403             // Crypto++ SHA-256
3404             nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1,
3405                                             (char*)&hash, nHashesDone);
3406
3407             // Check if something found
3408             if (nNonceFound != -1)
3409             {
3410                 for (int i = 0; i < sizeof(hash)/4; i++)
3411                     ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]);
3412
3413                 if (hash <= hashTarget)
3414                 {
3415                     // Found a solution
3416                     pblock->nNonce = ByteReverse(nNonceFound);
3417                     assert(hash == pblock->GetHash());
3418
3419                     SetThreadPriority(THREAD_PRIORITY_NORMAL);
3420                     CheckWork(pblock.get(), *pwalletMain, reservekey);
3421                     SetThreadPriority(THREAD_PRIORITY_LOWEST);
3422                     break;
3423                 }
3424             }
3425
3426             // Meter hashes/sec
3427             static int64 nHashCounter;
3428             if (nHPSTimerStart == 0)
3429             {
3430                 nHPSTimerStart = GetTimeMillis();
3431                 nHashCounter = 0;
3432             }
3433             else
3434                 nHashCounter += nHashesDone;
3435             if (GetTimeMillis() - nHPSTimerStart > 4000)
3436             {
3437                 static CCriticalSection cs;
3438                 CRITICAL_BLOCK(cs)
3439                 {
3440                     if (GetTimeMillis() - nHPSTimerStart > 4000)
3441                     {
3442                         dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
3443                         nHPSTimerStart = GetTimeMillis();
3444                         nHashCounter = 0;
3445                         string strStatus = strprintf("    %.0f khash/s", dHashesPerSec/1000.0);
3446                         UIThreadCall(boost::bind(CalledSetStatusBar, strStatus, 0));
3447                         static int64 nLogTime;
3448                         if (GetTime() - nLogTime > 30 * 60)
3449                         {
3450                             nLogTime = GetTime();
3451                             printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3452                             printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[THREAD_MINER], dHashesPerSec/1000.0);
3453                         }
3454                     }
3455                 }
3456             }
3457
3458             // Check for stop or if block needs to be rebuilt
3459             if (fShutdown)
3460                 return;
3461             if (!fGenerateBitcoins)
3462                 return;
3463             if (fLimitProcessors && vnThreadsRunning[THREAD_MINER] > nLimitProcessors)
3464                 return;
3465             if (vNodes.empty())
3466                 break;
3467             if (nBlockNonce >= 0xffff0000)
3468                 break;
3469             if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
3470                 break;
3471             if (pindexPrev != pindexBest)
3472                 break;
3473
3474             // Update nTime every few seconds
3475             pblock->UpdateTime(pindexPrev);
3476             nBlockTime = ByteReverse(pblock->nTime);
3477             if (fTestNet)
3478             {
3479                 // Changing pblock->nTime can change work required on testnet:
3480                 nBlockBits = ByteReverse(pblock->nBits);
3481                 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
3482             }
3483         }
3484     }
3485 }
3486
3487 void static ThreadBitcoinMiner(void* parg)
3488 {
3489     CWallet* pwallet = (CWallet*)parg;
3490     try
3491     {
3492         vnThreadsRunning[THREAD_MINER]++;
3493         BitcoinMiner(pwallet);
3494         vnThreadsRunning[THREAD_MINER]--;
3495     }
3496     catch (std::exception& e) {
3497         vnThreadsRunning[THREAD_MINER]--;
3498         PrintException(&e, "ThreadBitcoinMiner()");
3499     } catch (...) {
3500         vnThreadsRunning[THREAD_MINER]--;
3501         PrintException(NULL, "ThreadBitcoinMiner()");
3502     }
3503     UIThreadCall(boost::bind(CalledSetStatusBar, "", 0));
3504     nHPSTimerStart = 0;
3505     if (vnThreadsRunning[THREAD_MINER] == 0)
3506         dHashesPerSec = 0;
3507     printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[THREAD_MINER]);
3508 }
3509
3510
3511 void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
3512 {
3513     fGenerateBitcoins = fGenerate;
3514     nLimitProcessors = GetArg("-genproclimit", -1);
3515     if (nLimitProcessors == 0)
3516         fGenerateBitcoins = false;
3517     fLimitProcessors = (nLimitProcessors != -1);
3518
3519     if (fGenerate)
3520     {
3521         int nProcessors = boost::thread::hardware_concurrency();
3522         printf("%d processors\n", nProcessors);
3523         if (nProcessors < 1)
3524             nProcessors = 1;
3525         if (fLimitProcessors && nProcessors > nLimitProcessors)
3526             nProcessors = nLimitProcessors;
3527         int nAddThreads = nProcessors - vnThreadsRunning[THREAD_MINER];
3528         printf("Starting %d BitcoinMiner threads\n", nAddThreads);
3529         for (int i = 0; i < nAddThreads; i++)
3530         {
3531             if (!CreateThread(ThreadBitcoinMiner, pwallet))
3532                 printf("Error: CreateThread(ThreadBitcoinMiner) failed\n");
3533             Sleep(10);
3534         }
3535     }
3536 }