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