update to 0.4.2
[novacoin.git] / src / main.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 #include "alert.h"
7 #include "checkpoints.h"
8 #include "db.h"
9 #include "net.h"
10 #include "init.h"
11 #include "ui_interface.h"
12 #include "kernel.h"
13 #include "scrypt_mine.h"
14 #include <boost/algorithm/string/replace.hpp>
15 #include <boost/filesystem.hpp>
16 #include <boost/filesystem/fstream.hpp>
17
18 using namespace std;
19 using namespace boost;
20
21 //
22 // Global state
23 //
24
25 CCriticalSection cs_setpwalletRegistered;
26 set<CWallet*> setpwalletRegistered;
27
28 CCriticalSection cs_main;
29
30 CTxMemPool mempool;
31 unsigned int nTransactionsUpdated = 0;
32
33 map<uint256, CBlockIndex*> mapBlockIndex;
34 set<pair<COutPoint, unsigned int> > setStakeSeen;
35
36 CBigNum bnProofOfWorkLimit(~uint256(0) >> 20); // "standard" scrypt target limit for proof of work, results with 0,000244140625 proof-of-work difficulty
37 CBigNum bnProofOfStakeLegacyLimit(~uint256(0) >> 24); // proof of stake target limit from block #15000 and until 20 June 2013, results with 0,00390625 proof of stake difficulty
38 CBigNum bnProofOfStakeLimit(~uint256(0) >> 27); // proof of stake target limit since 20 June 2013, equal to 0.03125  proof of stake difficulty
39 CBigNum bnProofOfStakeHardLimit(~uint256(0) >> 30); // disabled temporarily, will be used in the future to fix minimal proof of stake difficulty at 0.25
40
41 CBigNum bnProofOfWorkLimitTestNet(~uint256(0) >> 16);
42
43 unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // 30 days as minimum age for coin age
44 unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // 90 days as stake age of full weight
45 unsigned int nStakeTargetSpacing = 10 * 60; // 10-minute stakes spacing
46 unsigned int nModifierInterval = 6 * 60 * 60; // time to elapse before new modifier is computed
47
48 int nCoinbaseMaturity = 500;
49 CBlockIndex* pindexGenesisBlock = NULL;
50 int nBestHeight = -1;
51 CBigNum bnBestChainTrust = 0;
52 CBigNum bnBestInvalidTrust = 0;
53 uint256 hashBestChain = 0;
54 CBlockIndex* pindexBest = NULL;
55 int64 nTimeBestReceived = 0;
56
57 CMedianFilter<int> cPeerBlockCounts(5, 0); // Amount of blocks that other nodes claim to have
58
59 map<uint256, CBlock*> mapOrphanBlocks;
60 multimap<uint256, CBlock*> mapOrphanBlocksByPrev;
61 set<pair<COutPoint, unsigned int> > setStakeSeenOrphan;
62 map<uint256, uint256> mapProofOfStake;
63
64 map<uint256, CDataStream*> mapOrphanTransactions;
65 map<uint256, map<uint256, CDataStream*> > mapOrphanTransactionsByPrev;
66
67 // Constant stuff for coinbase transactions we create:
68 CScript COINBASE_FLAGS;
69
70 const string strMessageMagic = "NovaCoin Signed Message:\n";
71
72 double dHashesPerSec;
73 int64 nHPSTimerStart;
74
75 // Settings
76 int64 nTransactionFee = MIN_TX_FEE;
77
78
79 //////////////////////////////////////////////////////////////////////////////
80 //
81 // dispatching functions
82 //
83
84 // These functions dispatch to one or all registered wallets
85
86
87 void RegisterWallet(CWallet* pwalletIn)
88 {
89     {
90         LOCK(cs_setpwalletRegistered);
91         setpwalletRegistered.insert(pwalletIn);
92     }
93 }
94
95 void UnregisterWallet(CWallet* pwalletIn)
96 {
97     {
98         LOCK(cs_setpwalletRegistered);
99         setpwalletRegistered.erase(pwalletIn);
100     }
101 }
102
103 // check whether the passed transaction is from us
104 bool static IsFromMe(CTransaction& tx)
105 {
106     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
107         if (pwallet->IsFromMe(tx))
108             return true;
109     return false;
110 }
111
112 // get the wallet transaction with the given hash (if it exists)
113 bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
114 {
115     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
116         if (pwallet->GetTransaction(hashTx,wtx))
117             return true;
118     return false;
119 }
120
121 // erases transaction with the given hash from all wallets
122 void static EraseFromWallets(uint256 hash)
123 {
124     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
125         pwallet->EraseFromWallet(hash);
126 }
127
128 // make sure all wallets know about the given transaction, in the given block
129 void SyncWithWallets(const CTransaction& tx, const CBlock* pblock, bool fUpdate, bool fConnect)
130 {
131     if (!fConnect)
132     {
133         // ppcoin: wallets need to refund inputs when disconnecting coinstake
134         if (tx.IsCoinStake())
135         {
136             BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
137                 if (pwallet->IsFromMe(tx))
138                     pwallet->DisableTransaction(tx);
139         }
140         return;
141     }
142
143     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
144         pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate);
145 }
146
147 // notify wallets about a new best chain
148 void static SetBestChain(const CBlockLocator& loc)
149 {
150     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
151         pwallet->SetBestChain(loc);
152 }
153
154 // notify wallets about an updated transaction
155 void static UpdatedTransaction(const uint256& hashTx)
156 {
157     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
158         pwallet->UpdatedTransaction(hashTx);
159 }
160
161 // dump all wallets
162 void static PrintWallets(const CBlock& block)
163 {
164     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
165         pwallet->PrintWallet(block);
166 }
167
168 // notify wallets about an incoming inventory (for request counts)
169 void static Inventory(const uint256& hash)
170 {
171     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
172         pwallet->Inventory(hash);
173 }
174
175 // ask wallets to resend their transactions
176 void ResendWalletTransactions()
177 {
178     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
179         pwallet->ResendWalletTransactions();
180 }
181
182
183
184
185
186
187
188 //////////////////////////////////////////////////////////////////////////////
189 //
190 // mapOrphanTransactions
191 //
192
193 bool AddOrphanTx(const CDataStream& vMsg)
194 {
195     CTransaction tx;
196     CDataStream(vMsg) >> tx;
197     uint256 hash = tx.GetHash();
198     if (mapOrphanTransactions.count(hash))
199         return false;
200
201     CDataStream* pvMsg = new CDataStream(vMsg);
202
203     // Ignore big transactions, to avoid a
204     // send-big-orphans memory exhaustion attack. If a peer has a legitimate
205     // large transaction with a missing parent then we assume
206     // it will rebroadcast it later, after the parent transaction(s)
207     // have been mined or received.
208     // 10,000 orphans, each of which is at most 5,000 bytes big is
209     // at most 500 megabytes of orphans:
210     if (pvMsg->size() > 5000)
211     {
212         printf("ignoring large orphan tx (size: %"PRIszu", hash: %s)\n", pvMsg->size(), hash.ToString().substr(0,10).c_str());
213         delete pvMsg;
214         return false;
215     }
216
217     mapOrphanTransactions[hash] = pvMsg;
218     BOOST_FOREACH(const CTxIn& txin, tx.vin)
219         mapOrphanTransactionsByPrev[txin.prevout.hash].insert(make_pair(hash, pvMsg));
220
221     printf("stored orphan tx %s (mapsz %"PRIszu")\n", hash.ToString().substr(0,10).c_str(),
222         mapOrphanTransactions.size());
223     return true;
224 }
225
226 void static EraseOrphanTx(uint256 hash)
227 {
228     if (!mapOrphanTransactions.count(hash))
229         return;
230     const CDataStream* pvMsg = mapOrphanTransactions[hash];
231     CTransaction tx;
232     CDataStream(*pvMsg) >> tx;
233     BOOST_FOREACH(const CTxIn& txin, tx.vin)
234     {
235         mapOrphanTransactionsByPrev[txin.prevout.hash].erase(hash);
236         if (mapOrphanTransactionsByPrev[txin.prevout.hash].empty())
237             mapOrphanTransactionsByPrev.erase(txin.prevout.hash);
238     }
239     delete pvMsg;
240     mapOrphanTransactions.erase(hash);
241 }
242
243 unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans)
244 {
245     unsigned int nEvicted = 0;
246     while (mapOrphanTransactions.size() > nMaxOrphans)
247     {
248         // Evict a random orphan:
249         uint256 randomhash = GetRandHash();
250         map<uint256, CDataStream*>::iterator it = mapOrphanTransactions.lower_bound(randomhash);
251         if (it == mapOrphanTransactions.end())
252             it = mapOrphanTransactions.begin();
253         EraseOrphanTx(it->first);
254         ++nEvicted;
255     }
256     return nEvicted;
257 }
258
259
260
261
262
263
264
265 //////////////////////////////////////////////////////////////////////////////
266 //
267 // CTransaction and CTxIndex
268 //
269
270 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)
271 {
272     SetNull();
273     if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
274         return false;
275     if (!ReadFromDisk(txindexRet.pos))
276         return false;
277     if (prevout.n >= vout.size())
278     {
279         SetNull();
280         return false;
281     }
282     return true;
283 }
284
285 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout)
286 {
287     CTxIndex txindex;
288     return ReadFromDisk(txdb, prevout, txindex);
289 }
290
291 bool CTransaction::ReadFromDisk(COutPoint prevout)
292 {
293     CTxDB txdb("r");
294     CTxIndex txindex;
295     return ReadFromDisk(txdb, prevout, txindex);
296 }
297
298 bool CTransaction::IsStandard() const
299 {
300     if (nVersion > CTransaction::CURRENT_VERSION)
301         return false;
302
303     BOOST_FOREACH(const CTxIn& txin, vin)
304     {
305         // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG
306         // pay-to-script-hash, which is 3 ~80-byte signatures, 3
307         // ~65-byte public keys, plus a few script ops.
308         if (txin.scriptSig.size() > 500)
309             return false;
310         if (!txin.scriptSig.IsPushOnly())
311             return false;
312     }
313     BOOST_FOREACH(const CTxOut& txout, vout) {
314         if (!::IsStandard(txout.scriptPubKey))
315             return false;
316         if (txout.nValue == 0)
317             return false;
318     }
319     return true;
320 }
321
322 //
323 // Check transaction inputs, and make sure any
324 // pay-to-script-hash transactions are evaluating IsStandard scripts
325 //
326 // Why bother? To avoid denial-of-service attacks; an attacker
327 // can submit a standard HASH... OP_EQUAL transaction,
328 // which will get accepted into blocks. The redemption
329 // script can be anything; an attacker could use a very
330 // expensive-to-check-upon-redemption script like:
331 //   DUP CHECKSIG DROP ... repeated 100 times... OP_1
332 //
333 bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const
334 {
335     if (IsCoinBase())
336         return true; // Coinbases don't use vin normally
337
338     for (unsigned int i = 0; i < vin.size(); i++)
339     {
340         const CTxOut& prev = GetOutputFor(vin[i], mapInputs);
341
342         vector<vector<unsigned char> > vSolutions;
343         txnouttype whichType;
344         // get the scriptPubKey corresponding to this input:
345         const CScript& prevScript = prev.scriptPubKey;
346         if (!Solver(prevScript, whichType, vSolutions))
347             return false;
348         int nArgsExpected = ScriptSigArgsExpected(whichType, vSolutions);
349         if (nArgsExpected < 0)
350             return false;
351
352         // Transactions with extra stuff in their scriptSigs are
353         // non-standard. Note that this EvalScript() call will
354         // be quick, because if there are any operations
355         // beside "push data" in the scriptSig the
356         // IsStandard() call returns false
357         vector<vector<unsigned char> > stack;
358         if (!EvalScript(stack, vin[i].scriptSig, *this, i, 0))
359             return false;
360
361         if (whichType == TX_SCRIPTHASH)
362         {
363             if (stack.empty())
364                 return false;
365             CScript subscript(stack.back().begin(), stack.back().end());
366             vector<vector<unsigned char> > vSolutions2;
367             txnouttype whichType2;
368             if (!Solver(subscript, whichType2, vSolutions2))
369                 return false;
370             if (whichType2 == TX_SCRIPTHASH)
371                 return false;
372
373             int tmpExpected;
374             tmpExpected = ScriptSigArgsExpected(whichType2, vSolutions2);
375             if (tmpExpected < 0)
376                 return false;
377             nArgsExpected += tmpExpected;
378         }
379
380         if (stack.size() != (unsigned int)nArgsExpected)
381             return false;
382     }
383
384     return true;
385 }
386
387 unsigned int
388 CTransaction::GetLegacySigOpCount() const
389 {
390     unsigned int nSigOps = 0;
391     BOOST_FOREACH(const CTxIn& txin, vin)
392     {
393         nSigOps += txin.scriptSig.GetSigOpCount(false);
394     }
395     BOOST_FOREACH(const CTxOut& txout, vout)
396     {
397         nSigOps += txout.scriptPubKey.GetSigOpCount(false);
398     }
399     return nSigOps;
400 }
401
402
403 int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
404 {
405     if (fClient)
406     {
407         if (hashBlock == 0)
408             return 0;
409     }
410     else
411     {
412         CBlock blockTmp;
413         if (pblock == NULL)
414         {
415             // Load the block this tx is in
416             CTxIndex txindex;
417             if (!CTxDB("r").ReadTxIndex(GetHash(), txindex))
418                 return 0;
419             if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos))
420                 return 0;
421             pblock = &blockTmp;
422         }
423
424         // Update the tx's hashBlock
425         hashBlock = pblock->GetHash();
426
427         // Locate the transaction
428         for (nIndex = 0; nIndex < (int)pblock->vtx.size(); nIndex++)
429             if (pblock->vtx[nIndex] == *(CTransaction*)this)
430                 break;
431         if (nIndex == (int)pblock->vtx.size())
432         {
433             vMerkleBranch.clear();
434             nIndex = -1;
435             printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
436             return 0;
437         }
438
439         // Fill in merkle branch
440         vMerkleBranch = pblock->GetMerkleBranch(nIndex);
441     }
442
443     // Is the tx in a block that's in the main chain
444     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
445     if (mi == mapBlockIndex.end())
446         return 0;
447     CBlockIndex* pindex = (*mi).second;
448     if (!pindex || !pindex->IsInMainChain())
449         return 0;
450
451     return pindexBest->nHeight - pindex->nHeight + 1;
452 }
453
454
455
456
457
458
459
460 bool CTransaction::CheckTransaction() const
461 {
462     // Basic checks that don't depend on any context
463     if (vin.empty())
464         return DoS(10, error("CTransaction::CheckTransaction() : vin empty"));
465     if (vout.empty())
466         return DoS(10, error("CTransaction::CheckTransaction() : vout empty"));
467     // Size limits
468     if (::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
469         return DoS(100, error("CTransaction::CheckTransaction() : size limits failed"));
470
471     // Check for negative or overflow output values
472     int64 nValueOut = 0;
473     for (unsigned int i = 0; i < vout.size(); i++)
474     {
475         const CTxOut& txout = vout[i];
476         if (txout.IsEmpty() && !IsCoinBase() && !IsCoinStake())
477             return DoS(100, error("CTransaction::CheckTransaction() : txout empty for user transaction"));
478
479         // ppcoin: enforce minimum output amount
480         if ((!txout.IsEmpty()) && txout.nValue < MIN_TXOUT_AMOUNT)
481             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue below minimum"));
482
483         if (txout.nValue > MAX_MONEY)
484             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));
485         nValueOut += txout.nValue;
486         if (!MoneyRange(nValueOut))
487             return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));
488     }
489
490     // Check for duplicate inputs
491     set<COutPoint> vInOutPoints;
492     BOOST_FOREACH(const CTxIn& txin, vin)
493     {
494         if (vInOutPoints.count(txin.prevout))
495             return false;
496         vInOutPoints.insert(txin.prevout);
497     }
498
499     if (IsCoinBase())
500     {
501         if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
502             return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size"));
503     }
504     else
505     {
506         BOOST_FOREACH(const CTxIn& txin, vin)
507             if (txin.prevout.IsNull())
508                 return DoS(10, error("CTransaction::CheckTransaction() : prevout is null"));
509     }
510
511     return true;
512 }
513
514 int64 CTransaction::GetMinFee(unsigned int nBlockSize, bool fAllowFree,
515                               enum GetMinFee_mode mode) const
516 {
517     // Base fee is either MIN_TX_FEE or MIN_RELAY_TX_FEE
518     int64 nBaseFee = (mode == GMF_RELAY) ? MIN_RELAY_TX_FEE : MIN_TX_FEE;
519
520     unsigned int nBytes = ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION);
521     unsigned int nNewBlockSize = nBlockSize + nBytes;
522     int64 nMinFee = (1 + (int64)nBytes / 1000) * nBaseFee;
523
524     // To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if any output is less than 0.01
525     if (nMinFee < nBaseFee)
526     {
527         BOOST_FOREACH(const CTxOut& txout, vout)
528             if (txout.nValue < CENT)
529                 nMinFee = nBaseFee;
530     }
531
532     // Raise the price as the block approaches full
533     if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2)
534     {
535         if (nNewBlockSize >= MAX_BLOCK_SIZE_GEN)
536             return MAX_MONEY;
537         nMinFee *= MAX_BLOCK_SIZE_GEN / (MAX_BLOCK_SIZE_GEN - nNewBlockSize);
538     }
539
540     if (!MoneyRange(nMinFee))
541         nMinFee = MAX_MONEY;
542     return nMinFee;
543 }
544
545
546 bool CTxMemPool::accept(CTxDB& txdb, CTransaction &tx, bool fCheckInputs,
547                         bool* pfMissingInputs)
548 {
549     if (pfMissingInputs)
550         *pfMissingInputs = false;
551
552     if (!tx.CheckTransaction())
553         return error("CTxMemPool::accept() : CheckTransaction failed");
554
555     // Coinbase is only valid in a block, not as a loose transaction
556     if (tx.IsCoinBase())
557         return tx.DoS(100, error("CTxMemPool::accept() : coinbase as individual tx"));
558
559     // ppcoin: coinstake is also only valid in a block, not as a loose transaction
560     if (tx.IsCoinStake())
561         return tx.DoS(100, error("CTxMemPool::accept() : coinstake as individual tx"));
562
563     // To help v0.1.5 clients who would see it as a negative number
564     if ((int64)tx.nLockTime > std::numeric_limits<int>::max())
565         return error("CTxMemPool::accept() : not accepting nLockTime beyond 2038 yet");
566
567     // Rather not work on nonstandard transactions (unless -testnet)
568     if (!fTestNet && !tx.IsStandard())
569         return error("CTxMemPool::accept() : nonstandard transaction type");
570
571     // Do we already have it?
572     uint256 hash = tx.GetHash();
573     {
574         LOCK(cs);
575         if (mapTx.count(hash))
576             return false;
577     }
578     if (fCheckInputs)
579         if (txdb.ContainsTx(hash))
580             return false;
581
582     // Check for conflicts with in-memory transactions
583     CTransaction* ptxOld = NULL;
584     for (unsigned int i = 0; i < tx.vin.size(); i++)
585     {
586         COutPoint outpoint = tx.vin[i].prevout;
587         if (mapNextTx.count(outpoint))
588         {
589             // Disable replacement feature for now
590             return false;
591
592             // Allow replacing with a newer version of the same transaction
593             if (i != 0)
594                 return false;
595             ptxOld = mapNextTx[outpoint].ptx;
596             if (ptxOld->IsFinal())
597                 return false;
598             if (!tx.IsNewerThan(*ptxOld))
599                 return false;
600             for (unsigned int i = 0; i < tx.vin.size(); i++)
601             {
602                 COutPoint outpoint = tx.vin[i].prevout;
603                 if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
604                     return false;
605             }
606             break;
607         }
608     }
609
610     if (fCheckInputs)
611     {
612         MapPrevTx mapInputs;
613         map<uint256, CTxIndex> mapUnused;
614         bool fInvalid = false;
615         if (!tx.FetchInputs(txdb, mapUnused, false, false, mapInputs, fInvalid))
616         {
617             if (fInvalid)
618                 return error("CTxMemPool::accept() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str());
619             if (pfMissingInputs)
620                 *pfMissingInputs = true;
621             return false;
622         }
623
624         // Check for non-standard pay-to-script-hash in inputs
625         if (!tx.AreInputsStandard(mapInputs) && !fTestNet)
626             return error("CTxMemPool::accept() : nonstandard transaction input");
627
628         // Note: if you modify this code to accept non-standard transactions, then
629         // you should add code here to check that the transaction does a
630         // reasonable number of ECDSA signature verifications.
631
632         int64 nFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
633         unsigned int nSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
634
635         // Don't accept it if it can't get into a block
636         int64 txMinFee = tx.GetMinFee(1000, false, GMF_RELAY);
637         if (nFees < txMinFee)
638             return error("CTxMemPool::accept() : not enough fees %s, %"PRI64d" < %"PRI64d,
639                          hash.ToString().c_str(),
640                          nFees, txMinFee);
641
642         // Continuously rate-limit free transactions
643         // This mitigates 'penny-flooding' -- sending thousands of free transactions just to
644         // be annoying or make others' transactions take longer to confirm.
645         if (nFees < MIN_RELAY_TX_FEE)
646         {
647             static CCriticalSection cs;
648             static double dFreeCount;
649             static int64 nLastTime;
650             int64 nNow = GetTime();
651
652             {
653                 LOCK(cs);
654                 // Use an exponentially decaying ~10-minute window:
655                 dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime));
656                 nLastTime = nNow;
657                 // -limitfreerelay unit is thousand-bytes-per-minute
658                 // At default rate it would take over a month to fill 1GB
659                 if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000 && !IsFromMe(tx))
660                     return error("CTxMemPool::accept() : free transaction rejected by rate limiter");
661                 if (fDebug)
662                     printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
663                 dFreeCount += nSize;
664             }
665         }
666
667         // Check against previous transactions
668         // This is done last to help prevent CPU exhaustion denial-of-service attacks.
669         if (!tx.ConnectInputs(txdb, mapInputs, mapUnused, CDiskTxPos(1,1,1), pindexBest, false, false))
670         {
671             return error("CTxMemPool::accept() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str());
672         }
673     }
674
675     // Store transaction in memory
676     {
677         LOCK(cs);
678         if (ptxOld)
679         {
680             printf("CTxMemPool::accept() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str());
681             remove(*ptxOld);
682         }
683         addUnchecked(hash, tx);
684     }
685
686     ///// are we sure this is ok when loading transactions or restoring block txes
687     // If updated, erase old tx from wallet
688     if (ptxOld)
689         EraseFromWallets(ptxOld->GetHash());
690
691     printf("CTxMemPool::accept() : accepted %s (poolsz %"PRIszu")\n",
692            hash.ToString().substr(0,10).c_str(),
693            mapTx.size());
694     return true;
695 }
696
697 bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs)
698 {
699     return mempool.accept(txdb, *this, fCheckInputs, pfMissingInputs);
700 }
701
702 bool CTxMemPool::addUnchecked(const uint256& hash, CTransaction &tx)
703 {
704     // Add to memory pool without checking anything.  Don't call this directly,
705     // call CTxMemPool::accept to properly check the transaction first.
706     {
707         mapTx[hash] = tx;
708         for (unsigned int i = 0; i < tx.vin.size(); i++)
709             mapNextTx[tx.vin[i].prevout] = CInPoint(&mapTx[hash], i);
710         nTransactionsUpdated++;
711     }
712     return true;
713 }
714
715
716 bool CTxMemPool::remove(CTransaction &tx)
717 {
718     // Remove transaction from memory pool
719     {
720         LOCK(cs);
721         uint256 hash = tx.GetHash();
722         if (mapTx.count(hash))
723         {
724             BOOST_FOREACH(const CTxIn& txin, tx.vin)
725                 mapNextTx.erase(txin.prevout);
726             mapTx.erase(hash);
727             nTransactionsUpdated++;
728         }
729     }
730     return true;
731 }
732
733 void CTxMemPool::clear()
734 {
735     LOCK(cs);
736     mapTx.clear();
737     mapNextTx.clear();
738     ++nTransactionsUpdated;
739 }
740
741 void CTxMemPool::queryHashes(std::vector<uint256>& vtxid)
742 {
743     vtxid.clear();
744
745     LOCK(cs);
746     vtxid.reserve(mapTx.size());
747     for (map<uint256, CTransaction>::iterator mi = mapTx.begin(); mi != mapTx.end(); ++mi)
748         vtxid.push_back((*mi).first);
749 }
750
751
752
753
754 int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const
755 {
756     if (hashBlock == 0 || nIndex == -1)
757         return 0;
758
759     // Find the block it claims to be in
760     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
761     if (mi == mapBlockIndex.end())
762         return 0;
763     CBlockIndex* pindex = (*mi).second;
764     if (!pindex || !pindex->IsInMainChain())
765         return 0;
766
767     // Make sure the merkle branch connects to this block
768     if (!fMerkleVerified)
769     {
770         if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot)
771             return 0;
772         fMerkleVerified = true;
773     }
774
775     pindexRet = pindex;
776     return pindexBest->nHeight - pindex->nHeight + 1;
777 }
778
779
780 int CMerkleTx::GetBlocksToMaturity() const
781 {
782     if (!(IsCoinBase() || IsCoinStake()))
783         return 0;
784     return max(0, (nCoinbaseMaturity+20) - GetDepthInMainChain());
785 }
786
787
788 bool CMerkleTx::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs)
789 {
790     if (fClient)
791     {
792         if (!IsInMainChain() && !ClientConnectInputs())
793             return false;
794         return CTransaction::AcceptToMemoryPool(txdb, false);
795     }
796     else
797     {
798         return CTransaction::AcceptToMemoryPool(txdb, fCheckInputs);
799     }
800 }
801
802 bool CMerkleTx::AcceptToMemoryPool()
803 {
804     CTxDB txdb("r");
805     return AcceptToMemoryPool(txdb);
806 }
807
808
809
810 bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs)
811 {
812
813     {
814         LOCK(mempool.cs);
815         // Add previous supporting transactions first
816         BOOST_FOREACH(CMerkleTx& tx, vtxPrev)
817         {
818             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
819             {
820                 uint256 hash = tx.GetHash();
821                 if (!mempool.exists(hash) && !txdb.ContainsTx(hash))
822                     tx.AcceptToMemoryPool(txdb, fCheckInputs);
823             }
824         }
825         return AcceptToMemoryPool(txdb, fCheckInputs);
826     }
827     return false;
828 }
829
830 bool CWalletTx::AcceptWalletTransaction()
831 {
832     CTxDB txdb("r");
833     return AcceptWalletTransaction(txdb);
834 }
835
836 int CTxIndex::GetDepthInMainChain() const
837 {
838     // Read block header
839     CBlock block;
840     if (!block.ReadFromDisk(pos.nFile, pos.nBlockPos, false))
841         return 0;
842     // Find the block in the index
843     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash());
844     if (mi == mapBlockIndex.end())
845         return 0;
846     CBlockIndex* pindex = (*mi).second;
847     if (!pindex || !pindex->IsInMainChain())
848         return 0;
849     return 1 + nBestHeight - pindex->nHeight;
850 }
851
852 // Return transaction in tx, and if it was found inside a block, its hash is placed in hashBlock
853 bool GetTransaction(const uint256 &hash, CTransaction &tx, uint256 &hashBlock)
854 {
855     {
856         LOCK(cs_main);
857         {
858             LOCK(mempool.cs);
859             if (mempool.exists(hash))
860             {
861                 tx = mempool.lookup(hash);
862                 return true;
863             }
864         }
865         CTxDB txdb("r");
866         CTxIndex txindex;
867         if (tx.ReadFromDisk(txdb, COutPoint(hash, 0), txindex))
868         {
869             CBlock block;
870             if (block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
871                 hashBlock = block.GetHash();
872             return true;
873         }
874     }
875     return false;
876 }
877
878
879
880
881
882
883
884
885 //////////////////////////////////////////////////////////////////////////////
886 //
887 // CBlock and CBlockIndex
888 //
889
890 static CBlockIndex* pblockindexFBBHLast;
891 CBlockIndex* FindBlockByHeight(int nHeight)
892 {
893     CBlockIndex *pblockindex;
894     if (nHeight < nBestHeight / 2)
895         pblockindex = pindexGenesisBlock;
896     else
897         pblockindex = pindexBest;
898     if (pblockindexFBBHLast && abs(nHeight - pblockindex->nHeight) > abs(nHeight - pblockindexFBBHLast->nHeight))
899         pblockindex = pblockindexFBBHLast;
900     while (pblockindex->nHeight > nHeight)
901         pblockindex = pblockindex->pprev;
902     while (pblockindex->nHeight < nHeight)
903         pblockindex = pblockindex->pnext;
904     pblockindexFBBHLast = pblockindex;
905     return pblockindex;
906 }
907
908 bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions)
909 {
910     if (!fReadTransactions)
911     {
912         *this = pindex->GetBlockHeader();
913         return true;
914     }
915     if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions))
916         return false;
917     if (GetHash() != pindex->GetBlockHash())
918         return error("CBlock::ReadFromDisk() : GetHash() doesn't match index");
919     return true;
920 }
921
922 uint256 static GetOrphanRoot(const CBlock* pblock)
923 {
924     // Work back to the first block in the orphan chain
925     while (mapOrphanBlocks.count(pblock->hashPrevBlock))
926         pblock = mapOrphanBlocks[pblock->hashPrevBlock];
927     return pblock->GetHash();
928 }
929
930 // ppcoin: find block wanted by given orphan block
931 uint256 WantedByOrphan(const CBlock* pblockOrphan)
932 {
933     // Work back to the first block in the orphan chain
934     while (mapOrphanBlocks.count(pblockOrphan->hashPrevBlock))
935         pblockOrphan = mapOrphanBlocks[pblockOrphan->hashPrevBlock];
936     return pblockOrphan->hashPrevBlock;
937 }
938
939 // select stake target limit according to hard-coded conditions
940 CBigNum static GetProofOfStakeLimit(int nHeight, unsigned int nTime)
941 {
942     if(fTestNet) // separate proof of stake target limit for testnet
943         return bnProofOfStakeLimit;
944     if(nTime > TARGETS_SWITCH_TIME) // 27 bits since 20 July 2013
945         return bnProofOfStakeLimit;
946     if(nHeight + 1 > 15000) // 24 bits since block 15000
947         return bnProofOfStakeLegacyLimit;
948     if(nHeight + 1 > 14060) // 31 bits since block 14060 until 15000
949         return bnProofOfStakeHardLimit;
950
951     return bnProofOfWorkLimit; // return bnProofOfWorkLimit of none matched
952 }
953
954 // miner's coin base reward based on nBits
955 int64 GetProofOfWorkReward(unsigned int nBits)
956 {
957     CBigNum bnSubsidyLimit = MAX_MINT_PROOF_OF_WORK;
958
959     CBigNum bnTarget;
960     bnTarget.SetCompact(nBits);
961     CBigNum bnTargetLimit = bnProofOfWorkLimit;
962     bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
963
964     // NovaCoin: subsidy is cut in half every 64x multiply of PoW difficulty
965     // A reasonably continuous curve is used to avoid shock to market
966     // (nSubsidyLimit / nSubsidy) ** 6 == bnProofOfWorkLimit / bnTarget
967     //
968     // Human readable form:
969     //
970     // nSubsidy = 100 / (diff ^ 1/6)
971     CBigNum bnLowerBound = CENT;
972     CBigNum bnUpperBound = bnSubsidyLimit;
973     while (bnLowerBound + CENT <= bnUpperBound)
974     {
975         CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
976         if (fDebug && GetBoolArg("-printcreation"))
977             printf("GetProofOfWorkReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
978         if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnTarget)
979             bnUpperBound = bnMidValue;
980         else
981             bnLowerBound = bnMidValue;
982     }
983
984     int64 nSubsidy = bnUpperBound.getuint64();
985     nSubsidy = (nSubsidy / CENT) * CENT;
986     if (fDebug && GetBoolArg("-printcreation"))
987         printf("GetProofOfWorkReward() : create=%s nBits=0x%08x nSubsidy=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nBits, nSubsidy);
988
989     return min(nSubsidy, MAX_MINT_PROOF_OF_WORK);
990 }
991
992 // miner's coin stake reward based on nBits and coin age spent (coin-days)
993 int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime)
994 {
995     int64 nRewardCoinYear;
996
997     if(fTestNet || nTime > STAKE_SWITCH_TIME)
998     {
999         // Stage 2 of emission process is PoS-based. It will be active on mainNet since 20 Jun 2013.
1000
1001         CBigNum bnRewardCoinYearLimit = MAX_MINT_PROOF_OF_STAKE; // Base stake mint rate, 100% year interest
1002         CBigNum bnTarget;
1003         bnTarget.SetCompact(nBits);
1004         CBigNum bnTargetLimit = GetProofOfStakeLimit(0, nTime);
1005         bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
1006
1007         // NovaCoin: reward for coin-year is cut in half every 64x multiply of PoS difficulty
1008         // A reasonably continuous curve is used to avoid shock to market
1009         // (nRewardCoinYearLimit / nRewardCoinYear) ** 6 == bnProofOfStakeLimit / bnTarget
1010         //
1011         // Human readable form:
1012         //
1013         // nRewardCoinYear = 1 / (posdiff ^ 1/6)
1014
1015         CBigNum bnLowerBound = 1 * CENT; // Lower interest bound is 1% per year
1016         CBigNum bnUpperBound = bnRewardCoinYearLimit;
1017         while (bnLowerBound + CENT <= bnUpperBound)
1018         {
1019             CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
1020             if (fDebug && GetBoolArg("-printcreation"))
1021                 printf("GetProofOfStakeReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
1022             if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnTarget)
1023                 bnUpperBound = bnMidValue;
1024             else
1025                 bnLowerBound = bnMidValue;
1026         }
1027
1028         nRewardCoinYear = bnUpperBound.getuint64();
1029         nRewardCoinYear = min((nRewardCoinYear / CENT) * CENT, MAX_MINT_PROOF_OF_STAKE);
1030     }
1031     else
1032     {
1033         // Old creation amount per coin-year, 5% fixed stake mint rate
1034         nRewardCoinYear = 5 * CENT;
1035     }
1036
1037     int64 nSubsidy = nCoinAge * 33 / (365 * 33 + 8) * nRewardCoinYear;
1038     if (fDebug && GetBoolArg("-printcreation"))
1039         printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);
1040     return nSubsidy;
1041 }
1042
1043 static const int64 nTargetTimespan = 7 * 24 * 60 * 60;  // one week
1044
1045 // get proof of work blocks max spacing according to hard-coded conditions
1046 int64 static GetTargetSpacingWorkMax(int nHeight, unsigned int nTime)
1047 {
1048     if(nTime > TARGETS_SWITCH_TIME)
1049         return 3 * nStakeTargetSpacing; // 30 minutes on mainNet since 20 Jul 2013 00:00:00
1050
1051     if(fTestNet)
1052         return 3 * nStakeTargetSpacing; // 15 minutes on testNet
1053
1054     return 12 * nStakeTargetSpacing; // 2 hours otherwise
1055 }
1056
1057 //
1058 // minimum amount of work that could possibly be required nTime after
1059 // minimum work required was nBase
1060 //
1061 unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
1062 {
1063     CBigNum bnTargetLimit = bnProofOfWorkLimit;
1064
1065     CBigNum bnResult;
1066     bnResult.SetCompact(nBase);
1067     bnResult *= 2;
1068     while (nTime > 0 && bnResult < bnTargetLimit)
1069     {
1070         // Maximum 200% adjustment per day...
1071         bnResult *= 2;
1072         nTime -= 24 * 60 * 60;
1073     }
1074     if (bnResult > bnTargetLimit)
1075         bnResult = bnTargetLimit;
1076     return bnResult.GetCompact();
1077 }
1078
1079 // ppcoin: find last block index up to pindex
1080 const CBlockIndex* GetLastBlockIndex(const CBlockIndex* pindex, bool fProofOfStake)
1081 {
1082     while (pindex && pindex->pprev && (pindex->IsProofOfStake() != fProofOfStake))
1083         pindex = pindex->pprev;
1084     return pindex;
1085 }
1086
1087 unsigned int GetNextTargetRequired(const CBlockIndex* pindexLast, bool fProofOfStake)
1088 {
1089     CBigNum bnTargetLimit = !fProofOfStake ? bnProofOfWorkLimit : GetProofOfStakeLimit(pindexLast->nHeight, pindexLast->nTime);
1090
1091     if (pindexLast == NULL)
1092         return bnTargetLimit.GetCompact(); // genesis block
1093
1094     const CBlockIndex* pindexPrev = GetLastBlockIndex(pindexLast, fProofOfStake);
1095     if (pindexPrev->pprev == NULL)
1096         return bnTargetLimit.GetCompact(); // first block
1097     const CBlockIndex* pindexPrevPrev = GetLastBlockIndex(pindexPrev->pprev, fProofOfStake);
1098     if (pindexPrevPrev->pprev == NULL)
1099         return bnTargetLimit.GetCompact(); // second block
1100
1101     int64 nActualSpacing = pindexPrev->GetBlockTime() - pindexPrevPrev->GetBlockTime();
1102
1103     // ppcoin: target change every block
1104     // ppcoin: retarget with exponential moving toward target spacing
1105     CBigNum bnNew;
1106     bnNew.SetCompact(pindexPrev->nBits);
1107     int64 nTargetSpacing = fProofOfStake? nStakeTargetSpacing : min(GetTargetSpacingWorkMax(pindexLast->nHeight, pindexLast->nTime), (int64) nStakeTargetSpacing * (1 + pindexLast->nHeight - pindexPrev->nHeight));
1108     int64 nInterval = nTargetTimespan / nTargetSpacing;
1109     bnNew *= ((nInterval - 1) * nTargetSpacing + nActualSpacing + nActualSpacing);
1110     bnNew /= ((nInterval + 1) * nTargetSpacing);
1111
1112     if (bnNew > bnTargetLimit)
1113         bnNew = bnTargetLimit;
1114
1115     return bnNew.GetCompact();
1116 }
1117
1118 bool CheckProofOfWork(uint256 hash, unsigned int nBits)
1119 {
1120     CBigNum bnTarget;
1121     bnTarget.SetCompact(nBits);
1122
1123     // Check range
1124     if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit)
1125         return error("CheckProofOfWork() : nBits below minimum work");
1126
1127     // Check proof of work matches claimed amount
1128     if (hash > bnTarget.getuint256())
1129         return error("CheckProofOfWork() : hash doesn't match nBits");
1130
1131     return true;
1132 }
1133
1134 // Return maximum amount of blocks that other nodes claim to have
1135 int GetNumBlocksOfPeers()
1136 {
1137     return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate());
1138 }
1139
1140 bool IsInitialBlockDownload()
1141 {
1142     if (pindexBest == NULL || nBestHeight < Checkpoints::GetTotalBlocksEstimate())
1143         return true;
1144     static int64 nLastUpdate;
1145     static CBlockIndex* pindexLastBest;
1146     if (pindexBest != pindexLastBest)
1147     {
1148         pindexLastBest = pindexBest;
1149         nLastUpdate = GetTime();
1150     }
1151     return (GetTime() - nLastUpdate < 10 &&
1152             pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60);
1153 }
1154
1155 void static InvalidChainFound(CBlockIndex* pindexNew)
1156 {
1157     if (pindexNew->bnChainTrust > bnBestInvalidTrust)
1158     {
1159         bnBestInvalidTrust = pindexNew->bnChainTrust;
1160         CTxDB().WriteBestInvalidTrust(bnBestInvalidTrust);
1161         uiInterface.NotifyBlocksChanged();
1162     }
1163
1164     printf("InvalidChainFound: invalid block=%s  height=%d  trust=%s  date=%s\n",
1165       pindexNew->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->nHeight,
1166       pindexNew->bnChainTrust.ToString().c_str(), DateTimeStrFormat("%x %H:%M:%S",
1167       pindexNew->GetBlockTime()).c_str());
1168     printf("InvalidChainFound:  current best=%s  height=%d  trust=%s  date=%s\n",
1169       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainTrust.ToString().c_str(),
1170       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
1171 }
1172
1173 void CBlock::UpdateTime(const CBlockIndex* pindexPrev)
1174 {
1175     nTime = max(GetBlockTime(), GetAdjustedTime());
1176 }
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188 bool CTransaction::DisconnectInputs(CTxDB& txdb)
1189 {
1190     // Relinquish previous transactions' spent pointers
1191     if (!IsCoinBase())
1192     {
1193         BOOST_FOREACH(const CTxIn& txin, vin)
1194         {
1195             COutPoint prevout = txin.prevout;
1196
1197             // Get prev txindex from disk
1198             CTxIndex txindex;
1199             if (!txdb.ReadTxIndex(prevout.hash, txindex))
1200                 return error("DisconnectInputs() : ReadTxIndex failed");
1201
1202             if (prevout.n >= txindex.vSpent.size())
1203                 return error("DisconnectInputs() : prevout.n out of range");
1204
1205             // Mark outpoint as not spent
1206             txindex.vSpent[prevout.n].SetNull();
1207
1208             // Write back
1209             if (!txdb.UpdateTxIndex(prevout.hash, txindex))
1210                 return error("DisconnectInputs() : UpdateTxIndex failed");
1211         }
1212     }
1213
1214     // Remove transaction from index
1215     // This can fail if a duplicate of this transaction was in a chain that got
1216     // reorganized away. This is only possible if this transaction was completely
1217     // spent, so erasing it would be a no-op anyway.
1218     txdb.EraseTxIndex(*this);
1219
1220     return true;
1221 }
1222
1223
1224 bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTestPool,
1225                                bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid)
1226 {
1227     // FetchInputs can return false either because we just haven't seen some inputs
1228     // (in which case the transaction should be stored as an orphan)
1229     // or because the transaction is malformed (in which case the transaction should
1230     // be dropped).  If tx is definitely invalid, fInvalid will be set to true.
1231     fInvalid = false;
1232
1233     if (IsCoinBase())
1234         return true; // Coinbase transactions have no inputs to fetch.
1235
1236     for (unsigned int i = 0; i < vin.size(); i++)
1237     {
1238         COutPoint prevout = vin[i].prevout;
1239         if (inputsRet.count(prevout.hash))
1240             continue; // Got it already
1241
1242         // Read txindex
1243         CTxIndex& txindex = inputsRet[prevout.hash].first;
1244         bool fFound = true;
1245         if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
1246         {
1247             // Get txindex from current proposed changes
1248             txindex = mapTestPool.find(prevout.hash)->second;
1249         }
1250         else
1251         {
1252             // Read txindex from txdb
1253             fFound = txdb.ReadTxIndex(prevout.hash, txindex);
1254         }
1255         if (!fFound && (fBlock || fMiner))
1256             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());
1257
1258         // Read txPrev
1259         CTransaction& txPrev = inputsRet[prevout.hash].second;
1260         if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
1261         {
1262             // Get prev tx from single transactions in memory
1263             {
1264                 LOCK(mempool.cs);
1265                 if (!mempool.exists(prevout.hash))
1266                     return error("FetchInputs() : %s mempool Tx prev not found %s", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1267                 txPrev = mempool.lookup(prevout.hash);
1268             }
1269             if (!fFound)
1270                 txindex.vSpent.resize(txPrev.vout.size());
1271         }
1272         else
1273         {
1274             // Get prev tx from disk
1275             if (!txPrev.ReadFromDisk(txindex.pos))
1276                 return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1277         }
1278     }
1279
1280     // Make sure all prevout.n indexes are valid:
1281     for (unsigned int i = 0; i < vin.size(); i++)
1282     {
1283         const COutPoint prevout = vin[i].prevout;
1284         assert(inputsRet.count(prevout.hash) != 0);
1285         const CTxIndex& txindex = inputsRet[prevout.hash].first;
1286         const CTransaction& txPrev = inputsRet[prevout.hash].second;
1287         if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1288         {
1289             // Revisit this if/when transaction replacement is implemented and allows
1290             // adding inputs:
1291             fInvalid = true;
1292             return DoS(100, error("FetchInputs() : %s prevout.n out of range %d %"PRIszu" %"PRIszu" 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()));
1293         }
1294     }
1295
1296     return true;
1297 }
1298
1299 const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const
1300 {
1301     MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash);
1302     if (mi == inputs.end())
1303         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found");
1304
1305     const CTransaction& txPrev = (mi->second).second;
1306     if (input.prevout.n >= txPrev.vout.size())
1307         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range");
1308
1309     return txPrev.vout[input.prevout.n];
1310 }
1311
1312 int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const
1313 {
1314     if (IsCoinBase())
1315         return 0;
1316
1317     int64 nResult = 0;
1318     for (unsigned int i = 0; i < vin.size(); i++)
1319     {
1320         nResult += GetOutputFor(vin[i], inputs).nValue;
1321     }
1322     return nResult;
1323
1324 }
1325
1326 unsigned int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const
1327 {
1328     if (IsCoinBase())
1329         return 0;
1330
1331     unsigned int nSigOps = 0;
1332     for (unsigned int i = 0; i < vin.size(); i++)
1333     {
1334         const CTxOut& prevout = GetOutputFor(vin[i], inputs);
1335         if (prevout.scriptPubKey.IsPayToScriptHash())
1336             nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig);
1337     }
1338     return nSigOps;
1339 }
1340
1341 bool CTransaction::ConnectInputs(CTxDB& txdb, MapPrevTx inputs,
1342                                  map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1343                                  const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash)
1344 {
1345     // Take over previous transactions' spent pointers
1346     // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
1347     // fMiner is true when called from the internal bitcoin miner
1348     // ... both are false when called from CTransaction::AcceptToMemoryPool
1349     if (!IsCoinBase())
1350     {
1351         int64 nValueIn = 0;
1352         int64 nFees = 0;
1353         for (unsigned int i = 0; i < vin.size(); i++)
1354         {
1355             COutPoint prevout = vin[i].prevout;
1356             assert(inputs.count(prevout.hash) > 0);
1357             CTxIndex& txindex = inputs[prevout.hash].first;
1358             CTransaction& txPrev = inputs[prevout.hash].second;
1359
1360             if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1361                 return DoS(100, error("ConnectInputs() : %s prevout.n out of range %d %"PRIszu" %"PRIszu" 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()));
1362
1363             // If prev is coinbase or coinstake, check that it's matured
1364             if (txPrev.IsCoinBase() || txPrev.IsCoinStake())
1365                 for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < nCoinbaseMaturity; pindex = pindex->pprev)
1366                     if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
1367                         return error("ConnectInputs() : tried to spend %s at depth %d", txPrev.IsCoinBase() ? "coinbase" : "coinstake", pindexBlock->nHeight - pindex->nHeight);
1368
1369             // ppcoin: check transaction timestamp
1370             if (txPrev.nTime > nTime)
1371                 return DoS(100, error("ConnectInputs() : transaction timestamp earlier than input transaction"));
1372
1373             // Check for negative or overflow input values
1374             nValueIn += txPrev.vout[prevout.n].nValue;
1375             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1376                 return DoS(100, error("ConnectInputs() : txin values out of range"));
1377
1378         }
1379         // The first loop above does all the inexpensive checks.
1380         // Only if ALL inputs pass do we perform expensive ECDSA signature checks.
1381         // Helps prevent CPU exhaustion attacks.
1382         for (unsigned int i = 0; i < vin.size(); i++)
1383         {
1384             COutPoint prevout = vin[i].prevout;
1385             assert(inputs.count(prevout.hash) > 0);
1386             CTxIndex& txindex = inputs[prevout.hash].first;
1387             CTransaction& txPrev = inputs[prevout.hash].second;
1388
1389             // Check for conflicts (double-spend)
1390             // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
1391             // for an attacker to attempt to split the network.
1392             if (!txindex.vSpent[prevout.n].IsNull())
1393                 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());
1394
1395             // Skip ECDSA signature verification when connecting blocks (fBlock=true)
1396             // before the last blockchain checkpoint. This is safe because block merkle hashes are
1397             // still computed and checked, and any change will be caught at the next checkpoint.
1398             if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate())))
1399             {
1400                 // Verify signature
1401                 if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0))
1402                 {
1403                     // only during transition phase for P2SH: do not invoke anti-DoS code for
1404                     // potentially old clients relaying bad P2SH transactions
1405                     if (fStrictPayToScriptHash && VerifySignature(txPrev, *this, i, false, 0))
1406                         return error("ConnectInputs() : %s P2SH VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1407
1408                     return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1409                 }
1410             }
1411
1412             // Mark outpoints as spent
1413             txindex.vSpent[prevout.n] = posThisTx;
1414
1415             // Write back
1416             if (fBlock || fMiner)
1417             {
1418                 mapTestPool[prevout.hash] = txindex;
1419             }
1420         }
1421
1422         if (IsCoinStake())
1423         {
1424             // ppcoin: coin stake tx earns reward instead of paying fee
1425             uint64 nCoinAge;
1426             if (!GetCoinAge(txdb, nCoinAge))
1427                 return error("ConnectInputs() : %s unable to get coin age for coinstake", GetHash().ToString().substr(0,10).c_str());
1428             int64 nStakeReward = GetValueOut() - nValueIn;
1429             if (nStakeReward > GetProofOfStakeReward(nCoinAge, pindexBlock->nBits, nTime) - GetMinFee() + MIN_TX_FEE)
1430                 return DoS(100, error("ConnectInputs() : %s stake reward exceeded", GetHash().ToString().substr(0,10).c_str()));
1431         }
1432         else
1433         {
1434             if (nValueIn < GetValueOut())
1435                 return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1436
1437             // Tally transaction fees
1438             int64 nTxFee = nValueIn - GetValueOut();
1439             if (nTxFee < 0)
1440                 return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1441             // ppcoin: enforce transaction fees for every block
1442             if (nTxFee < GetMinFee())
1443                 return fBlock? DoS(100, error("ConnectInputs() : %s not paying required fee=%s, paid=%s", GetHash().ToString().substr(0,10).c_str(), FormatMoney(GetMinFee()).c_str(), FormatMoney(nTxFee).c_str())) : false;
1444
1445             nFees += nTxFee;
1446             if (!MoneyRange(nFees))
1447                 return DoS(100, error("ConnectInputs() : nFees out of range"));
1448         }
1449     }
1450
1451     return true;
1452 }
1453
1454
1455 bool CTransaction::ClientConnectInputs()
1456 {
1457     if (IsCoinBase())
1458         return false;
1459
1460     // Take over previous transactions' spent pointers
1461     {
1462         LOCK(mempool.cs);
1463         int64 nValueIn = 0;
1464         for (unsigned int i = 0; i < vin.size(); i++)
1465         {
1466             // Get prev tx from single transactions in memory
1467             COutPoint prevout = vin[i].prevout;
1468             if (!mempool.exists(prevout.hash))
1469                 return false;
1470             CTransaction& txPrev = mempool.lookup(prevout.hash);
1471
1472             if (prevout.n >= txPrev.vout.size())
1473                 return false;
1474
1475             // Verify signature
1476             if (!VerifySignature(txPrev, *this, i, true, 0))
1477                 return error("ConnectInputs() : VerifySignature failed");
1478
1479             ///// this is redundant with the mempool.mapNextTx stuff,
1480             ///// not sure which I want to get rid of
1481             ///// this has to go away now that posNext is gone
1482             // // Check for conflicts
1483             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1484             //     return error("ConnectInputs() : prev tx already used");
1485             //
1486             // // Flag outpoints as used
1487             // txPrev.vout[prevout.n].posNext = posThisTx;
1488
1489             nValueIn += txPrev.vout[prevout.n].nValue;
1490
1491             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1492                 return error("ClientConnectInputs() : txin values out of range");
1493         }
1494         if (GetValueOut() > nValueIn)
1495             return false;
1496     }
1497
1498     return true;
1499 }
1500
1501
1502
1503
1504 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1505 {
1506     // Disconnect in reverse order
1507     for (int i = vtx.size()-1; i >= 0; i--)
1508         if (!vtx[i].DisconnectInputs(txdb))
1509             return false;
1510
1511     // Update block index on disk without changing it in memory.
1512     // The memory index structure will be changed after the db commits.
1513     if (pindex->pprev)
1514     {
1515         CDiskBlockIndex blockindexPrev(pindex->pprev);
1516         blockindexPrev.hashNext = 0;
1517         if (!txdb.WriteBlockIndex(blockindexPrev))
1518             return error("DisconnectBlock() : WriteBlockIndex failed");
1519     }
1520
1521     // ppcoin: clean up wallet after disconnecting coinstake
1522     BOOST_FOREACH(CTransaction& tx, vtx)
1523         SyncWithWallets(tx, this, false, false);
1524
1525     return true;
1526 }
1527
1528 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex, bool fJustCheck)
1529 {
1530     // Check it again in case a previous version let a bad block in
1531     if (!CheckBlock(!fJustCheck, !fJustCheck))
1532         return false;
1533
1534     // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1535     // unless those are already completely spent.
1536     // If such overwrites are allowed, coinbases and transactions depending upon those
1537     // can be duplicated to remove the ability to spend the first instance -- even after
1538     // being sent to another address.
1539     // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1540     // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1541     // already refuses previously-known transaction ids entirely.
1542     // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC.
1543     // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the
1544     // two in the chain that violate it. This prevents exploiting the issue against nodes in their
1545     // initial block download.
1546     bool fEnforceBIP30 = true; // Always active in NovaCoin
1547     bool fStrictPayToScriptHash = true; // Always active in NovaCoin
1548
1549     //// issue here: it doesn't know the version
1550     unsigned int nTxPos;
1551     if (fJustCheck)
1552         // FetchInputs treats CDiskTxPos(1,1,1) as a special "refer to memorypool" indicator
1553         // Since we're just checking the block and not actually connecting it, it might not (and probably shouldn't) be on the disk to get the transaction from
1554         nTxPos = 1;
1555     else
1556         nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK, CLIENT_VERSION) - (2 * GetSizeOfCompactSize(0)) + GetSizeOfCompactSize(vtx.size());
1557
1558     map<uint256, CTxIndex> mapQueuedChanges;
1559     int64 nFees = 0;
1560     int64 nValueIn = 0;
1561     int64 nValueOut = 0;
1562     unsigned int nSigOps = 0;
1563     BOOST_FOREACH(CTransaction& tx, vtx)
1564     {
1565         uint256 hashTx = tx.GetHash();
1566
1567         if (fEnforceBIP30) {
1568             CTxIndex txindexOld;
1569             if (txdb.ReadTxIndex(hashTx, txindexOld)) {
1570                 BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent)
1571                     if (pos.IsNull())
1572                         return false;
1573             }
1574         }
1575
1576         nSigOps += tx.GetLegacySigOpCount();
1577         if (nSigOps > MAX_BLOCK_SIGOPS)
1578             return DoS(100, error("ConnectBlock() : too many sigops"));
1579
1580         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1581         if (!fJustCheck)
1582             nTxPos += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION);
1583
1584         MapPrevTx mapInputs;
1585         if (tx.IsCoinBase())
1586             nValueOut += tx.GetValueOut();
1587         else
1588         {
1589             bool fInvalid;
1590             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1591                 return false;
1592
1593             if (fStrictPayToScriptHash)
1594             {
1595                 // Add in sigops done by pay-to-script-hash inputs;
1596                 // this is to prevent a "rogue miner" from creating
1597                 // an incredibly-expensive-to-validate block.
1598                 nSigOps += tx.GetP2SHSigOpCount(mapInputs);
1599                 if (nSigOps > MAX_BLOCK_SIGOPS)
1600                     return DoS(100, error("ConnectBlock() : too many sigops"));
1601             }
1602
1603             int64 nTxValueIn = tx.GetValueIn(mapInputs);
1604             int64 nTxValueOut = tx.GetValueOut();
1605             nValueIn += nTxValueIn;
1606             nValueOut += nTxValueOut;
1607             if (!tx.IsCoinStake())
1608                 nFees += nTxValueIn - nTxValueOut;
1609
1610             if (!tx.ConnectInputs(txdb, mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fStrictPayToScriptHash))
1611                 return false;
1612         }
1613
1614         mapQueuedChanges[hashTx] = CTxIndex(posThisTx, tx.vout.size());
1615     }
1616
1617     // ppcoin: track money supply and mint amount info
1618     pindex->nMint = nValueOut - nValueIn + nFees;
1619     pindex->nMoneySupply = (pindex->pprev? pindex->pprev->nMoneySupply : 0) + nValueOut - nValueIn;
1620     if (!txdb.WriteBlockIndex(CDiskBlockIndex(pindex)))
1621         return error("Connect() : WriteBlockIndex for pindex failed");
1622
1623     // ppcoin: fees are not collected by miners as in bitcoin
1624     // ppcoin: fees are destroyed to compensate the entire network
1625     if (fDebug && GetBoolArg("-printcreation"))
1626         printf("ConnectBlock() : destroy=%s nFees=%"PRI64d"\n", FormatMoney(nFees).c_str(), nFees);
1627
1628     if (fJustCheck)
1629         return true;
1630
1631     // Write queued txindex changes
1632     for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1633     {
1634         if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1635             return error("ConnectBlock() : UpdateTxIndex failed");
1636     }
1637
1638     // Update block index on disk without changing it in memory.
1639     // The memory index structure will be changed after the db commits.
1640     if (pindex->pprev)
1641     {
1642         CDiskBlockIndex blockindexPrev(pindex->pprev);
1643         blockindexPrev.hashNext = pindex->GetBlockHash();
1644         if (!txdb.WriteBlockIndex(blockindexPrev))
1645             return error("ConnectBlock() : WriteBlockIndex failed");
1646     }
1647
1648     // Watch for transactions paying to me
1649     BOOST_FOREACH(CTransaction& tx, vtx)
1650         SyncWithWallets(tx, this, true);
1651
1652     return true;
1653 }
1654
1655 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1656 {
1657     printf("REORGANIZE\n");
1658
1659     // Find the fork
1660     CBlockIndex* pfork = pindexBest;
1661     CBlockIndex* plonger = pindexNew;
1662     while (pfork != plonger)
1663     {
1664         while (plonger->nHeight > pfork->nHeight)
1665             if (!(plonger = plonger->pprev))
1666                 return error("Reorganize() : plonger->pprev is null");
1667         if (pfork == plonger)
1668             break;
1669         if (!(pfork = pfork->pprev))
1670             return error("Reorganize() : pfork->pprev is null");
1671     }
1672
1673     // List of what to disconnect
1674     vector<CBlockIndex*> vDisconnect;
1675     for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1676         vDisconnect.push_back(pindex);
1677
1678     // List of what to connect
1679     vector<CBlockIndex*> vConnect;
1680     for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1681         vConnect.push_back(pindex);
1682     reverse(vConnect.begin(), vConnect.end());
1683
1684     printf("REORGANIZE: Disconnect %"PRIszu" blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str());
1685     printf("REORGANIZE: Connect %"PRIszu" blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str());
1686
1687     // Disconnect shorter branch
1688     vector<CTransaction> vResurrect;
1689     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1690     {
1691         CBlock block;
1692         if (!block.ReadFromDisk(pindex))
1693             return error("Reorganize() : ReadFromDisk for disconnect failed");
1694         if (!block.DisconnectBlock(txdb, pindex))
1695             return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1696
1697         // Queue memory transactions to resurrect
1698         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1699             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
1700                 vResurrect.push_back(tx);
1701     }
1702
1703     // Connect longer branch
1704     vector<CTransaction> vDelete;
1705     for (unsigned int i = 0; i < vConnect.size(); i++)
1706     {
1707         CBlockIndex* pindex = vConnect[i];
1708         CBlock block;
1709         if (!block.ReadFromDisk(pindex))
1710             return error("Reorganize() : ReadFromDisk for connect failed");
1711         if (!block.ConnectBlock(txdb, pindex))
1712         {
1713             // Invalid block
1714             return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1715         }
1716
1717         // Queue memory transactions to delete
1718         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1719             vDelete.push_back(tx);
1720     }
1721     if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1722         return error("Reorganize() : WriteHashBestChain failed");
1723
1724     // Make sure it's successfully written to disk before changing memory structure
1725     if (!txdb.TxnCommit())
1726         return error("Reorganize() : TxnCommit failed");
1727
1728     // Disconnect shorter branch
1729     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1730         if (pindex->pprev)
1731             pindex->pprev->pnext = NULL;
1732
1733     // Connect longer branch
1734     BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1735         if (pindex->pprev)
1736             pindex->pprev->pnext = pindex;
1737
1738     // Resurrect memory transactions that were in the disconnected branch
1739     BOOST_FOREACH(CTransaction& tx, vResurrect)
1740         tx.AcceptToMemoryPool(txdb, false);
1741
1742     // Delete redundant memory transactions that are in the connected branch
1743     BOOST_FOREACH(CTransaction& tx, vDelete)
1744         mempool.remove(tx);
1745
1746     printf("REORGANIZE: done\n");
1747
1748     return true;
1749 }
1750
1751
1752 // Called from inside SetBestChain: attaches a block to the new best chain being built
1753 bool CBlock::SetBestChainInner(CTxDB& txdb, CBlockIndex *pindexNew)
1754 {
1755     uint256 hash = GetHash();
1756
1757     // Adding to current best branch
1758     if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1759     {
1760         txdb.TxnAbort();
1761         InvalidChainFound(pindexNew);
1762         return false;
1763     }
1764     if (!txdb.TxnCommit())
1765         return error("SetBestChain() : TxnCommit failed");
1766
1767     // Add to current best branch
1768     pindexNew->pprev->pnext = pindexNew;
1769
1770     // Delete redundant memory transactions
1771     BOOST_FOREACH(CTransaction& tx, vtx)
1772         mempool.remove(tx);
1773
1774     return true;
1775 }
1776
1777 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1778 {
1779     uint256 hash = GetHash();
1780
1781     if (!txdb.TxnBegin())
1782         return error("SetBestChain() : TxnBegin failed");
1783
1784     if (pindexGenesisBlock == NULL && hash == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
1785     {
1786         txdb.WriteHashBestChain(hash);
1787         if (!txdb.TxnCommit())
1788             return error("SetBestChain() : TxnCommit failed");
1789         pindexGenesisBlock = pindexNew;
1790     }
1791     else if (hashPrevBlock == hashBestChain)
1792     {
1793         if (!SetBestChainInner(txdb, pindexNew))
1794             return error("SetBestChain() : SetBestChainInner failed");
1795     }
1796     else
1797     {
1798         // the first block in the new chain that will cause it to become the new best chain
1799         CBlockIndex *pindexIntermediate = pindexNew;
1800
1801         // list of blocks that need to be connected afterwards
1802         std::vector<CBlockIndex*> vpindexSecondary;
1803
1804         // Reorganize is costly in terms of db load, as it works in a single db transaction.
1805         // Try to limit how much needs to be done inside
1806         while (pindexIntermediate->pprev && pindexIntermediate->pprev->bnChainTrust > pindexBest->bnChainTrust)
1807         {
1808             vpindexSecondary.push_back(pindexIntermediate);
1809             pindexIntermediate = pindexIntermediate->pprev;
1810         }
1811
1812         if (!vpindexSecondary.empty())
1813             printf("Postponing %"PRIszu" reconnects\n", vpindexSecondary.size());
1814
1815         // Switch to new best branch
1816         if (!Reorganize(txdb, pindexIntermediate))
1817         {
1818             txdb.TxnAbort();
1819             InvalidChainFound(pindexNew);
1820             return error("SetBestChain() : Reorganize failed");
1821         }
1822
1823         // Connect further blocks
1824         BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary)
1825         {
1826             CBlock block;
1827             if (!block.ReadFromDisk(pindex))
1828             {
1829                 printf("SetBestChain() : ReadFromDisk failed\n");
1830                 break;
1831             }
1832             if (!txdb.TxnBegin()) {
1833                 printf("SetBestChain() : TxnBegin 2 failed\n");
1834                 break;
1835             }
1836             // errors now are not fatal, we still did a reorganisation to a new chain in a valid way
1837             if (!block.SetBestChainInner(txdb, pindex))
1838                 break;
1839         }
1840     }
1841
1842     // Update best block in wallet (so we can detect restored wallets)
1843     bool fIsInitialDownload = IsInitialBlockDownload();
1844     if (!fIsInitialDownload)
1845     {
1846         const CBlockLocator locator(pindexNew);
1847         ::SetBestChain(locator);
1848     }
1849
1850     // New best block
1851     hashBestChain = hash;
1852     pindexBest = pindexNew;
1853     pblockindexFBBHLast = NULL;
1854     nBestHeight = pindexBest->nHeight;
1855     bnBestChainTrust = pindexNew->bnChainTrust;
1856     nTimeBestReceived = GetTime();
1857     nTransactionsUpdated++;
1858     printf("SetBestChain: new best=%s  height=%d  trust=%s  date=%s\n",
1859       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainTrust.ToString().c_str(),
1860       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
1861
1862     // Check the version of the last 100 blocks to see if we need to upgrade:
1863     if (!fIsInitialDownload)
1864     {
1865         int nUpgraded = 0;
1866         const CBlockIndex* pindex = pindexBest;
1867         for (int i = 0; i < 100 && pindex != NULL; i++)
1868         {
1869             if (pindex->nVersion > CBlock::CURRENT_VERSION)
1870                 ++nUpgraded;
1871             pindex = pindex->pprev;
1872         }
1873         if (nUpgraded > 0)
1874             printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CURRENT_VERSION);
1875         if (nUpgraded > 100/2)
1876             // strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
1877             strMiscWarning = _("Warning: This version is obsolete, upgrade required!");
1878     }
1879
1880     std::string strCmd = GetArg("-blocknotify", "");
1881
1882     if (!fIsInitialDownload && !strCmd.empty())
1883     {
1884         boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
1885         boost::thread t(runCommand, strCmd); // thread runs free
1886     }
1887
1888     return true;
1889 }
1890
1891 // ppcoin: total coin age spent in transaction, in the unit of coin-days.
1892 // Only those coins meeting minimum age requirement counts. As those
1893 // transactions not in main chain are not currently indexed so we
1894 // might not find out about their coin age. Older transactions are 
1895 // guaranteed to be in main chain by sync-checkpoint. This rule is
1896 // introduced to help nodes establish a consistent view of the coin
1897 // age (trust score) of competing branches.
1898 bool CTransaction::GetCoinAge(CTxDB& txdb, uint64& nCoinAge) const
1899 {
1900     CBigNum bnCentSecond = 0;  // coin age in the unit of cent-seconds
1901     nCoinAge = 0;
1902
1903     if (IsCoinBase())
1904         return true;
1905
1906     BOOST_FOREACH(const CTxIn& txin, vin)
1907     {
1908         // First try finding the previous transaction in database
1909         CTransaction txPrev;
1910         CTxIndex txindex;
1911         if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
1912             continue;  // previous transaction not in main chain
1913         if (nTime < txPrev.nTime)
1914             return false;  // Transaction timestamp violation
1915
1916         // Read block header
1917         CBlock block;
1918         if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
1919             return false; // unable to read block of previous transaction
1920         if (block.GetBlockTime() + nStakeMinAge > nTime)
1921             continue; // only count coins meeting min age requirement
1922
1923         int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
1924         bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT;
1925
1926         if (fDebug && GetBoolArg("-printcoinage"))
1927             printf("coin age nValueIn=%"PRI64d" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTime - txPrev.nTime, bnCentSecond.ToString().c_str());
1928     }
1929
1930     CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);
1931     if (fDebug && GetBoolArg("-printcoinage"))
1932         printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
1933     nCoinAge = bnCoinDay.getuint64();
1934     return true;
1935 }
1936
1937 // ppcoin: total coin age spent in block, in the unit of coin-days.
1938 bool CBlock::GetCoinAge(uint64& nCoinAge) const
1939 {
1940     nCoinAge = 0;
1941
1942     CTxDB txdb("r");
1943     BOOST_FOREACH(const CTransaction& tx, vtx)
1944     {
1945         uint64 nTxCoinAge;
1946         if (tx.GetCoinAge(txdb, nTxCoinAge))
1947             nCoinAge += nTxCoinAge;
1948         else
1949             return false;
1950     }
1951
1952     if (nCoinAge == 0) // block coin age minimum 1 coin-day
1953         nCoinAge = 1;
1954     if (fDebug && GetBoolArg("-printcoinage"))
1955         printf("block coin age total nCoinDays=%"PRI64d"\n", nCoinAge);
1956     return true;
1957 }
1958
1959 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
1960 {
1961     // Check for duplicate
1962     uint256 hash = GetHash();
1963     if (mapBlockIndex.count(hash))
1964         return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
1965
1966     // Construct new block index object
1967     CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
1968     if (!pindexNew)
1969         return error("AddToBlockIndex() : new CBlockIndex failed");
1970     pindexNew->phashBlock = &hash;
1971     map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
1972     if (miPrev != mapBlockIndex.end())
1973     {
1974         pindexNew->pprev = (*miPrev).second;
1975         pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
1976     }
1977
1978     // ppcoin: compute chain trust score
1979     pindexNew->bnChainTrust = (pindexNew->pprev ? pindexNew->pprev->bnChainTrust : 0) + pindexNew->GetBlockTrust();
1980
1981     // ppcoin: compute stake entropy bit for stake modifier
1982     if (!pindexNew->SetStakeEntropyBit(GetStakeEntropyBit(pindexNew->nHeight)))
1983         return error("AddToBlockIndex() : SetStakeEntropyBit() failed");
1984
1985     // ppcoin: record proof-of-stake hash value
1986     if (pindexNew->IsProofOfStake())
1987     {
1988         if (!mapProofOfStake.count(hash))
1989             return error("AddToBlockIndex() : hashProofOfStake not found in map");
1990         pindexNew->hashProofOfStake = mapProofOfStake[hash];
1991     }
1992
1993     // ppcoin: compute stake modifier
1994     uint64 nStakeModifier = 0;
1995     bool fGeneratedStakeModifier = false;
1996     if (!ComputeNextStakeModifier(pindexNew->pprev, nStakeModifier, fGeneratedStakeModifier))
1997         return error("AddToBlockIndex() : ComputeNextStakeModifier() failed");
1998     pindexNew->SetStakeModifier(nStakeModifier, fGeneratedStakeModifier);
1999     pindexNew->nStakeModifierChecksum = GetStakeModifierChecksum(pindexNew);
2000     if (!CheckStakeModifierCheckpoints(pindexNew->nHeight, pindexNew->nStakeModifierChecksum))
2001         return error("AddToBlockIndex() : Rejected by stake modifier checkpoint height=%d, modifier=0x%016"PRI64x, pindexNew->nHeight, nStakeModifier);
2002
2003     // Add to mapBlockIndex
2004     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
2005     if (pindexNew->IsProofOfStake())
2006         setStakeSeen.insert(make_pair(pindexNew->prevoutStake, pindexNew->nStakeTime));
2007     pindexNew->phashBlock = &((*mi).first);
2008
2009     // Write to disk block index
2010     CTxDB txdb;
2011     if (!txdb.TxnBegin())
2012         return false;
2013     txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
2014     if (!txdb.TxnCommit())
2015         return false;
2016
2017     // New best
2018     if (pindexNew->bnChainTrust > bnBestChainTrust)
2019         if (!SetBestChain(txdb, pindexNew))
2020             return false;
2021
2022     txdb.Close();
2023
2024     if (pindexNew == pindexBest)
2025     {
2026         // Notify UI to display prev block's coinbase if it was ours
2027         static uint256 hashPrevBestCoinBase;
2028         UpdatedTransaction(hashPrevBestCoinBase);
2029         hashPrevBestCoinBase = vtx[0].GetHash();
2030     }
2031
2032     uiInterface.NotifyBlocksChanged();
2033     return true;
2034 }
2035
2036
2037
2038
2039 bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot) const
2040 {
2041     // These are checks that are independent of context
2042     // that can be verified before saving an orphan block.
2043
2044     // Size limits
2045     if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
2046         return DoS(100, error("CheckBlock() : size limits failed"));
2047
2048     // Special short-term limits to avoid 10,000 BDB lock limit:
2049     if (GetBlockTime() < LOCKS_SWITCH_TIME)
2050     {
2051         // Rule is: #unique txids referenced <= 4,500
2052         // ... to prevent 10,000 BDB lock exhaustion on old clients
2053         set<uint256> setTxIn;
2054         for (size_t i = 0; i < vtx.size(); i++)
2055         {
2056             setTxIn.insert(vtx[i].GetHash());
2057             if (i == 0) continue; // skip coinbase txin
2058             BOOST_FOREACH(const CTxIn& txin, vtx[i].vin)
2059                     setTxIn.insert(txin.prevout.hash);
2060         }
2061         size_t nTxids = setTxIn.size();
2062         if (nTxids > 4500)
2063             return error("CheckBlock() : maxlocks violation");
2064     }
2065
2066     // Check proof of work matches claimed amount
2067     if (fCheckPOW && IsProofOfWork() && !CheckProofOfWork(GetHash(), nBits))
2068         return DoS(50, error("CheckBlock() : proof of work failed"));
2069
2070     // Check timestamp
2071     if (GetBlockTime() > GetAdjustedTime() + nMaxClockDrift)
2072         return error("CheckBlock() : block timestamp too far in the future");
2073
2074     // First transaction must be coinbase, the rest must not be
2075     if (vtx.empty() || !vtx[0].IsCoinBase())
2076         return DoS(100, error("CheckBlock() : first tx is not coinbase"));
2077     for (unsigned int i = 1; i < vtx.size(); i++)
2078         if (vtx[i].IsCoinBase())
2079             return DoS(100, error("CheckBlock() : more than one coinbase"));
2080
2081     // ppcoin: only the second transaction can be the optional coinstake
2082     for (unsigned int i = 2; i < vtx.size(); i++)
2083         if (vtx[i].IsCoinStake())
2084             return DoS(100, error("CheckBlock() : coinstake in wrong position"));
2085
2086     // ppcoin: coinbase output should be empty if proof-of-stake block
2087     if (IsProofOfStake() && (vtx[0].vout.size() != 1 || !vtx[0].vout[0].IsEmpty()))
2088         return error("CheckBlock() : coinbase output not empty for proof-of-stake block");
2089
2090     // Check coinbase timestamp
2091     if (GetBlockTime() > (int64)vtx[0].nTime + nMaxClockDrift)
2092         return DoS(50, error("CheckBlock() : coinbase timestamp is too early"));
2093
2094     // Check coinstake timestamp
2095     if (IsProofOfStake() && !CheckCoinStakeTimestamp(GetBlockTime(), (int64)vtx[1].nTime))
2096         return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRI64d" nTimeTx=%u", GetBlockTime(), vtx[1].nTime));
2097
2098     // Check coinbase reward
2099     if (vtx[0].GetValueOut() > (IsProofOfWork()? (GetProofOfWorkReward(nBits) - vtx[0].GetMinFee() + MIN_TX_FEE) : 0))
2100         return DoS(50, error("CheckBlock() : coinbase reward exceeded %s > %s", 
2101                    FormatMoney(vtx[0].GetValueOut()).c_str(),
2102                    FormatMoney(IsProofOfWork()? GetProofOfWorkReward(nBits) : 0).c_str()));
2103
2104     // Check transactions
2105     BOOST_FOREACH(const CTransaction& tx, vtx)
2106     {
2107         if (!tx.CheckTransaction())
2108             return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
2109
2110         // ppcoin: check transaction timestamp
2111         if (GetBlockTime() < (int64)tx.nTime)
2112             return DoS(50, error("CheckBlock() : block timestamp earlier than transaction timestamp"));
2113     }
2114
2115     // Check for duplicate txids. This is caught by ConnectInputs(),
2116     // but catching it earlier avoids a potential DoS attack:
2117     set<uint256> uniqueTx;
2118     BOOST_FOREACH(const CTransaction& tx, vtx)
2119     {
2120         uniqueTx.insert(tx.GetHash());
2121     }
2122     if (uniqueTx.size() != vtx.size())
2123         return DoS(100, error("CheckBlock() : duplicate transaction"));
2124
2125     unsigned int nSigOps = 0;
2126     BOOST_FOREACH(const CTransaction& tx, vtx)
2127     {
2128         nSigOps += tx.GetLegacySigOpCount();
2129     }
2130     if (nSigOps > MAX_BLOCK_SIGOPS)
2131         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
2132
2133     // Check merkle root
2134     if (fCheckMerkleRoot && hashMerkleRoot != BuildMerkleTree())
2135         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
2136
2137     // ppcoin: check block signature
2138     if (!CheckBlockSignature())
2139         return DoS(100, error("CheckBlock() : bad block signature"));
2140
2141     return true;
2142 }
2143
2144 bool CBlock::AcceptBlock()
2145 {
2146     // Check for duplicate
2147     uint256 hash = GetHash();
2148     if (mapBlockIndex.count(hash))
2149         return error("AcceptBlock() : block already in mapBlockIndex");
2150
2151     // Get prev block index
2152     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
2153     if (mi == mapBlockIndex.end())
2154         return DoS(10, error("AcceptBlock() : prev block not found"));
2155     CBlockIndex* pindexPrev = (*mi).second;
2156     int nHeight = pindexPrev->nHeight+1;
2157
2158     // Check proof-of-work or proof-of-stake
2159     if (nBits != GetNextTargetRequired(pindexPrev, IsProofOfStake()))
2160         return DoS(100, error("AcceptBlock() : incorrect %s", IsProofOfWork() ? "proof-of-work" : "proof-of-stake"));
2161
2162     // Check timestamp against prev
2163     if (GetBlockTime() <= pindexPrev->GetMedianTimePast() || GetBlockTime() + nMaxClockDrift < pindexPrev->GetBlockTime())
2164         return error("AcceptBlock() : block's timestamp is too early");
2165
2166     // Check that all transactions are finalized
2167     BOOST_FOREACH(const CTransaction& tx, vtx)
2168         if (!tx.IsFinal(nHeight, GetBlockTime()))
2169             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
2170
2171     // Check that the block chain matches the known block chain up to a checkpoint
2172     if (!Checkpoints::CheckHardened(nHeight, hash))
2173         return DoS(100, error("AcceptBlock() : rejected by hardened checkpoint lock-in at %d", nHeight));
2174
2175     // ppcoin: check that the block satisfies synchronized checkpoint
2176     if (!Checkpoints::CheckSync(hash, pindexPrev))
2177     {
2178         if(!GetBoolArg("-nosynccheckpoints", false))
2179         {
2180             return error("AcceptBlock() : rejected by synchronized checkpoint");
2181         }
2182         else
2183         {
2184             strMiscWarning = _("WARNING: syncronized checkpoint violation detected, but skipped!");
2185         }
2186     }
2187
2188     // Reject block.nVersion < 3 blocks since 95% threshold on mainNet and always on testNet:
2189     if (nVersion < 3 && ((!fTestNet && nHeight > 14060) || (fTestNet && nHeight > 0)))
2190         return error("CheckBlock() : rejected nVersion < 3 block");
2191
2192     // Enforce rule that the coinbase starts with serialized block height
2193     CScript expect = CScript() << nHeight;
2194     if (!std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin()))
2195         return DoS(100, error("AcceptBlock() : block height mismatch in coinbase"));
2196
2197     // Write block to history file
2198     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK, CLIENT_VERSION)))
2199         return error("AcceptBlock() : out of disk space");
2200     unsigned int nFile = -1;
2201     unsigned int nBlockPos = 0;
2202     if (!WriteToDisk(nFile, nBlockPos))
2203         return error("AcceptBlock() : WriteToDisk failed");
2204     if (!AddToBlockIndex(nFile, nBlockPos))
2205         return error("AcceptBlock() : AddToBlockIndex failed");
2206
2207     // Relay inventory, but don't relay old inventory during initial block download
2208     int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
2209     if (hashBestChain == hash)
2210     {
2211         LOCK(cs_vNodes);
2212         BOOST_FOREACH(CNode* pnode, vNodes)
2213             if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
2214                 pnode->PushInventory(CInv(MSG_BLOCK, hash));
2215     }
2216
2217     // ppcoin: check pending sync-checkpoint
2218     Checkpoints::AcceptPendingSyncCheckpoint();
2219
2220     return true;
2221 }
2222
2223 bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck)
2224 {
2225     unsigned int nFound = 0;
2226     for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++)
2227     {
2228         if (pstart->nVersion >= minVersion)
2229             ++nFound;
2230         pstart = pstart->pprev;
2231     }
2232     return (nFound >= nRequired);
2233 }
2234
2235 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
2236 {
2237     // Check for duplicate
2238     uint256 hash = pblock->GetHash();
2239     if (mapBlockIndex.count(hash))
2240         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
2241     if (mapOrphanBlocks.count(hash))
2242         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
2243
2244     // ppcoin: check proof-of-stake
2245     // Limited duplicity on stake: prevents block flood attack
2246     // Duplicate stake allowed only when there is orphan child block
2247     if (pblock->IsProofOfStake() && setStakeSeen.count(pblock->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2248         return error("ProcessBlock() : duplicate proof-of-stake (%s, %d) for block %s", pblock->GetProofOfStake().first.ToString().c_str(), pblock->GetProofOfStake().second, hash.ToString().c_str());
2249
2250     // Preliminary checks
2251     if (!pblock->CheckBlock())
2252         return error("ProcessBlock() : CheckBlock FAILED");
2253
2254     // ppcoin: verify hash target and signature of coinstake tx
2255     if (pblock->IsProofOfStake())
2256     {
2257         uint256 hashProofOfStake = 0;
2258         if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, hashProofOfStake))
2259         {
2260             printf("WARNING: ProcessBlock(): check proof-of-stake failed for block %s\n", hash.ToString().c_str());
2261             return false; // do not error here as we expect this during initial block download
2262         }
2263         if (!mapProofOfStake.count(hash)) // add to mapProofOfStake
2264             mapProofOfStake.insert(make_pair(hash, hashProofOfStake));
2265     }
2266
2267     CBlockIndex* pcheckpoint = Checkpoints::GetLastSyncCheckpoint();
2268     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2269     {
2270         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
2271         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
2272         CBigNum bnNewBlock;
2273         bnNewBlock.SetCompact(pblock->nBits);
2274         CBigNum bnRequired;
2275         bnRequired.SetCompact(ComputeMinWork(GetLastBlockIndex(pcheckpoint, pblock->IsProofOfStake())->nBits, deltaTime));
2276         if (bnNewBlock > bnRequired)
2277         {
2278             if (pfrom)
2279                 pfrom->Misbehaving(100);
2280             return error("ProcessBlock() : block with too little %s", pblock->IsProofOfStake()? "proof-of-stake" : "proof-of-work");
2281         }
2282     }
2283
2284     // ppcoin: ask for pending sync-checkpoint if any
2285     if (!IsInitialBlockDownload())
2286         Checkpoints::AskForPendingSyncCheckpoint(pfrom);
2287
2288     // If don't already have its previous block, shunt it off to holding area until we get it
2289     if (!mapBlockIndex.count(pblock->hashPrevBlock))
2290     {
2291         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
2292         CBlock* pblock2 = new CBlock(*pblock);
2293         // ppcoin: check proof-of-stake
2294         if (pblock2->IsProofOfStake())
2295         {
2296             // Limited duplicity on stake: prevents block flood attack
2297             // Duplicate stake allowed only when there is orphan child block
2298             if (setStakeSeenOrphan.count(pblock2->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2299                 return error("ProcessBlock() : duplicate proof-of-stake (%s, %d) for orphan block %s", pblock2->GetProofOfStake().first.ToString().c_str(), pblock2->GetProofOfStake().second, hash.ToString().c_str());
2300             else
2301                 setStakeSeenOrphan.insert(pblock2->GetProofOfStake());
2302         }
2303         mapOrphanBlocks.insert(make_pair(hash, pblock2));
2304         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
2305
2306         // Ask this guy to fill in what we're missing
2307         if (pfrom)
2308         {
2309             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
2310             // ppcoin: getblocks may not obtain the ancestor block rejected
2311             // earlier by duplicate-stake check so we ask for it again directly
2312             if (!IsInitialBlockDownload())
2313                 pfrom->AskFor(CInv(MSG_BLOCK, WantedByOrphan(pblock2)));
2314         }
2315         return true;
2316     }
2317
2318     // Store to disk
2319     if (!pblock->AcceptBlock())
2320         return error("ProcessBlock() : AcceptBlock FAILED");
2321
2322     // Recursively process any orphan blocks that depended on this one
2323     vector<uint256> vWorkQueue;
2324     vWorkQueue.push_back(hash);
2325     for (unsigned int i = 0; i < vWorkQueue.size(); i++)
2326     {
2327         uint256 hashPrev = vWorkQueue[i];
2328         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
2329              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
2330              ++mi)
2331         {
2332             CBlock* pblockOrphan = (*mi).second;
2333             if (pblockOrphan->AcceptBlock())
2334                 vWorkQueue.push_back(pblockOrphan->GetHash());
2335             mapOrphanBlocks.erase(pblockOrphan->GetHash());
2336             setStakeSeenOrphan.erase(pblockOrphan->GetProofOfStake());
2337             delete pblockOrphan;
2338         }
2339         mapOrphanBlocksByPrev.erase(hashPrev);
2340     }
2341
2342     printf("ProcessBlock: ACCEPTED\n");
2343
2344     // ppcoin: if responsible for sync-checkpoint send it
2345     if (pfrom && !CSyncCheckpoint::strMasterPrivKey.empty())
2346         Checkpoints::SendSyncCheckpoint(Checkpoints::AutoSelectSyncCheckpoint());
2347
2348     return true;
2349 }
2350
2351 // ppcoin: sign block
2352 bool CBlock::SignBlock(const CKeyStore& keystore)
2353 {
2354     vector<valtype> vSolutions;
2355     txnouttype whichType;
2356
2357     if(!IsProofOfStake())
2358     {
2359         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2360         {
2361             const CTxOut& txout = vtx[0].vout[i];
2362
2363             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2364                 continue;
2365
2366             if (whichType == TX_PUBKEY)
2367             {
2368                 // Sign
2369                 valtype& vchPubKey = vSolutions[0];
2370                 CKey key;
2371
2372                 if (!keystore.GetKey(Hash160(vchPubKey), key))
2373                     continue;
2374                 if (key.GetPubKey() != vchPubKey)
2375                     continue;
2376                 if(!key.Sign(GetHash(), vchBlockSig))
2377                     continue;
2378
2379                 return true;
2380             }
2381         }
2382     }
2383     else
2384     {
2385         const CTxOut& txout = vtx[1].vout[1];
2386
2387         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2388             return false;
2389
2390         if (whichType == TX_PUBKEY)
2391         {
2392             // Sign
2393             valtype& vchPubKey = vSolutions[0];
2394             CKey key;
2395
2396             if (!keystore.GetKey(Hash160(vchPubKey), key))
2397                 return false;
2398             if (key.GetPubKey() != vchPubKey)
2399                 return false;
2400
2401             return key.Sign(GetHash(), vchBlockSig);
2402         }
2403     }
2404
2405     printf("Sign failed\n");
2406     return false;
2407 }
2408
2409 // ppcoin: check block signature
2410 bool CBlock::CheckBlockSignature() const
2411 {
2412     if (GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
2413         return vchBlockSig.empty();
2414
2415     vector<valtype> vSolutions;
2416     txnouttype whichType;
2417
2418     if(IsProofOfStake())
2419     {
2420         const CTxOut& txout = vtx[1].vout[1];
2421
2422         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2423             return false;
2424         if (whichType == TX_PUBKEY)
2425         {
2426             valtype& vchPubKey = vSolutions[0];
2427             CKey key;
2428             if (!key.SetPubKey(vchPubKey))
2429                 return false;
2430             if (vchBlockSig.empty())
2431                 return false;
2432             return key.Verify(GetHash(), vchBlockSig);
2433         }
2434     }
2435     else
2436     {
2437         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2438         {
2439             const CTxOut& txout = vtx[0].vout[i];
2440
2441             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2442                 return false;
2443
2444             if (whichType == TX_PUBKEY)
2445             {
2446                 // Verify
2447                 valtype& vchPubKey = vSolutions[0];
2448                 CKey key;
2449                 if (!key.SetPubKey(vchPubKey))
2450                     continue;
2451                 if (vchBlockSig.empty())
2452                     continue;
2453                 if(!key.Verify(GetHash(), vchBlockSig))
2454                     continue;
2455
2456                 return true;
2457             }
2458         }
2459     }
2460     return false;
2461 }
2462
2463 bool CheckDiskSpace(uint64 nAdditionalBytes)
2464 {
2465     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
2466
2467     // Check for nMinDiskSpace bytes (currently 50MB)
2468     if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
2469     {
2470         fShutdown = true;
2471         string strMessage = _("Warning: Disk space is low!");
2472         strMiscWarning = strMessage;
2473         printf("*** %s\n", strMessage.c_str());
2474         uiInterface.ThreadSafeMessageBox(strMessage, "NovaCoin", CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
2475         StartShutdown();
2476         return false;
2477     }
2478     return true;
2479 }
2480
2481 static filesystem::path BlockFilePath(unsigned int nFile)
2482 {
2483     string strBlockFn = strprintf("blk%04u.dat", nFile);
2484     return GetDataDir() / strBlockFn;
2485 }
2486
2487 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
2488 {
2489     if ((nFile < 1) || (nFile == (unsigned int) -1))
2490         return NULL;
2491     FILE* file = fopen(BlockFilePath(nFile).string().c_str(), pszMode);
2492     if (!file)
2493         return NULL;
2494     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
2495     {
2496         if (fseek(file, nBlockPos, SEEK_SET) != 0)
2497         {
2498             fclose(file);
2499             return NULL;
2500         }
2501     }
2502     return file;
2503 }
2504
2505 static unsigned int nCurrentBlockFile = 1;
2506
2507 FILE* AppendBlockFile(unsigned int& nFileRet)
2508 {
2509     nFileRet = 0;
2510     loop
2511     {
2512         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
2513         if (!file)
2514             return NULL;
2515         if (fseek(file, 0, SEEK_END) != 0)
2516             return NULL;
2517         // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
2518         if (ftell(file) < (long)(0x7F000000 - MAX_SIZE))
2519         {
2520             nFileRet = nCurrentBlockFile;
2521             return file;
2522         }
2523         fclose(file);
2524         nCurrentBlockFile++;
2525     }
2526 }
2527
2528 bool LoadBlockIndex(bool fAllowNew)
2529 {
2530     if (fTestNet)
2531     {
2532         pchMessageStart[0] = 0xcd;
2533         pchMessageStart[1] = 0xf2;
2534         pchMessageStart[2] = 0xc0;
2535         pchMessageStart[3] = 0xef;
2536
2537         bnProofOfWorkLimit = bnProofOfWorkLimitTestNet; // 16 bits PoW target limit for testnet
2538         nStakeMinAge = 2 * 60 * 60; // test net min age is 2 hours
2539         nModifierInterval = 20 * 60; // test modifier interval is 20 minutes
2540         nCoinbaseMaturity = 10; // test maturity is 10 blocks
2541         nStakeTargetSpacing = 5 * 60; // test block spacing is 5 minutes
2542     }
2543
2544     //
2545     // Load block index
2546     //
2547     CTxDB txdb("cr");
2548     if (!txdb.LoadBlockIndex())
2549         return false;
2550     txdb.Close();
2551
2552     //
2553     // Init with genesis block
2554     //
2555     if (mapBlockIndex.empty())
2556     {
2557         if (!fAllowNew)
2558             return false;
2559
2560         // Genesis block
2561
2562         // MainNet:
2563
2564         //CBlock(hash=00000a060336cbb72fe969666d337b87198b1add2abaa59cca226820b32933a4, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1e0fffff, nNonce=1575379, vtx=1, vchBlockSig=)
2565         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2566         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2567         //    CTxOut(empty)
2568         //  vMerkleTree: 4cb33b3b6a
2569
2570         // TestNet:
2571
2572         //CBlock(hash=0000c763e402f2436da9ed36c7286f62c3f6e5dbafce9ff289bd43d7459327eb, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1f00ffff, nNonce=46534, vtx=1, vchBlockSig=)
2573         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2574         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2575         //    CTxOut(empty)
2576         //  vMerkleTree: 4cb33b3b6a
2577
2578         const char* pszTimestamp = "https://bitcointalk.org/index.php?topic=134179.msg1502196#msg1502196";
2579         CTransaction txNew;
2580         txNew.nTime = 1360105017;
2581         txNew.vin.resize(1);
2582         txNew.vout.resize(1);
2583         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(9999) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
2584         txNew.vout[0].SetEmpty();
2585         CBlock block;
2586         block.vtx.push_back(txNew);
2587         block.hashPrevBlock = 0;
2588         block.hashMerkleRoot = block.BuildMerkleTree();
2589         block.nVersion = 1;
2590         block.nTime    = 1360105017;
2591         block.nBits    = bnProofOfWorkLimit.GetCompact();
2592         block.nNonce   = !fTestNet ? 1575379 : 46534;
2593
2594         //// debug print
2595         assert(block.hashMerkleRoot == uint256("0x4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b"));
2596         block.print();
2597         assert(block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet));
2598         assert(block.CheckBlock());
2599
2600         // Start new block file
2601         unsigned int nFile;
2602         unsigned int nBlockPos;
2603         if (!block.WriteToDisk(nFile, nBlockPos))
2604             return error("LoadBlockIndex() : writing genesis block to disk failed");
2605         if (!block.AddToBlockIndex(nFile, nBlockPos))
2606             return error("LoadBlockIndex() : genesis block not accepted");
2607
2608         // ppcoin: initialize synchronized checkpoint
2609         if (!Checkpoints::WriteSyncCheckpoint((!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)))
2610             return error("LoadBlockIndex() : failed to init sync checkpoint");
2611     }
2612
2613     // ppcoin: if checkpoint master key changed must reset sync-checkpoint
2614     {
2615         CTxDB txdb;
2616         string strPubKey = "";
2617         if (!txdb.ReadCheckpointPubKey(strPubKey) || strPubKey != CSyncCheckpoint::strMasterPubKey)
2618         {
2619             // write checkpoint master key to db
2620             txdb.TxnBegin();
2621             if (!txdb.WriteCheckpointPubKey(CSyncCheckpoint::strMasterPubKey))
2622                 return error("LoadBlockIndex() : failed to write new checkpoint master key to db");
2623             if (!txdb.TxnCommit())
2624                 return error("LoadBlockIndex() : failed to commit new checkpoint master key to db");
2625             if ((!fTestNet) && !Checkpoints::ResetSyncCheckpoint())
2626                 return error("LoadBlockIndex() : failed to reset sync-checkpoint");
2627         }
2628         txdb.Close();
2629     }
2630
2631     return true;
2632 }
2633
2634
2635
2636 void PrintBlockTree()
2637 {
2638     // pre-compute tree structure
2639     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
2640     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
2641     {
2642         CBlockIndex* pindex = (*mi).second;
2643         mapNext[pindex->pprev].push_back(pindex);
2644         // test
2645         //while (rand() % 3 == 0)
2646         //    mapNext[pindex->pprev].push_back(pindex);
2647     }
2648
2649     vector<pair<int, CBlockIndex*> > vStack;
2650     vStack.push_back(make_pair(0, pindexGenesisBlock));
2651
2652     int nPrevCol = 0;
2653     while (!vStack.empty())
2654     {
2655         int nCol = vStack.back().first;
2656         CBlockIndex* pindex = vStack.back().second;
2657         vStack.pop_back();
2658
2659         // print split or gap
2660         if (nCol > nPrevCol)
2661         {
2662             for (int i = 0; i < nCol-1; i++)
2663                 printf("| ");
2664             printf("|\\\n");
2665         }
2666         else if (nCol < nPrevCol)
2667         {
2668             for (int i = 0; i < nCol; i++)
2669                 printf("| ");
2670             printf("|\n");
2671        }
2672         nPrevCol = nCol;
2673
2674         // print columns
2675         for (int i = 0; i < nCol; i++)
2676             printf("| ");
2677
2678         // print item
2679         CBlock block;
2680         block.ReadFromDisk(pindex);
2681         printf("%d (%u,%u) %s  %08x  %s  mint %7s  tx %"PRIszu"",
2682             pindex->nHeight,
2683             pindex->nFile,
2684             pindex->nBlockPos,
2685             block.GetHash().ToString().c_str(),
2686             block.nBits,
2687             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
2688             FormatMoney(pindex->nMint).c_str(),
2689             block.vtx.size());
2690
2691         PrintWallets(block);
2692
2693         // put the main time-chain first
2694         vector<CBlockIndex*>& vNext = mapNext[pindex];
2695         for (unsigned int i = 0; i < vNext.size(); i++)
2696         {
2697             if (vNext[i]->pnext)
2698             {
2699                 swap(vNext[0], vNext[i]);
2700                 break;
2701             }
2702         }
2703
2704         // iterate children
2705         for (unsigned int i = 0; i < vNext.size(); i++)
2706             vStack.push_back(make_pair(nCol+i, vNext[i]));
2707     }
2708 }
2709
2710 bool LoadExternalBlockFile(FILE* fileIn)
2711 {
2712     int64 nStart = GetTimeMillis();
2713
2714     int nLoaded = 0;
2715     {
2716         LOCK(cs_main);
2717         try {
2718             CAutoFile blkdat(fileIn, SER_DISK, CLIENT_VERSION);
2719             unsigned int nPos = 0;
2720             while (nPos != (unsigned int)-1 && blkdat.good() && !fRequestShutdown)
2721             {
2722                 unsigned char pchData[65536];
2723                 do {
2724                     fseek(blkdat, nPos, SEEK_SET);
2725                     int nRead = fread(pchData, 1, sizeof(pchData), blkdat);
2726                     if (nRead <= 8)
2727                     {
2728                         nPos = (unsigned int)-1;
2729                         break;
2730                     }
2731                     void* nFind = memchr(pchData, pchMessageStart[0], nRead+1-sizeof(pchMessageStart));
2732                     if (nFind)
2733                     {
2734                         if (memcmp(nFind, pchMessageStart, sizeof(pchMessageStart))==0)
2735                         {
2736                             nPos += ((unsigned char*)nFind - pchData) + sizeof(pchMessageStart);
2737                             break;
2738                         }
2739                         nPos += ((unsigned char*)nFind - pchData) + 1;
2740                     }
2741                     else
2742                         nPos += sizeof(pchData) - sizeof(pchMessageStart) + 1;
2743                 } while(!fRequestShutdown);
2744                 if (nPos == (unsigned int)-1)
2745                     break;
2746                 fseek(blkdat, nPos, SEEK_SET);
2747                 unsigned int nSize;
2748                 blkdat >> nSize;
2749                 if (nSize > 0 && nSize <= MAX_BLOCK_SIZE)
2750                 {
2751                     CBlock block;
2752                     blkdat >> block;
2753                     if (ProcessBlock(NULL,&block))
2754                     {
2755                         nLoaded++;
2756                         nPos += 4 + nSize;
2757                     }
2758                 }
2759             }
2760         }
2761         catch (std::exception &e) {
2762             printf("%s() : Deserialize or I/O error caught during load\n",
2763                    __PRETTY_FUNCTION__);
2764         }
2765     }
2766     printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
2767     return nLoaded > 0;
2768 }
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778 //////////////////////////////////////////////////////////////////////////////
2779 //
2780 // CAlert
2781 //
2782
2783 extern map<uint256, CAlert> mapAlerts;
2784 extern CCriticalSection cs_mapAlerts;
2785
2786 static string strMintMessage = "Info: Minting suspended due to locked wallet.";
2787 static string strMintWarning;
2788
2789 string GetWarnings(string strFor)
2790 {
2791     int nPriority = 0;
2792     string strStatusBar;
2793     string strRPC;
2794
2795     if (GetBoolArg("-testsafemode"))
2796         strRPC = "test";
2797
2798     // ppcoin: wallet lock warning for minting
2799     if (strMintWarning != "")
2800     {
2801         nPriority = 0;
2802         strStatusBar = strMintWarning;
2803     }
2804
2805     // Misc warnings like out of disk space and clock is wrong
2806     if (strMiscWarning != "")
2807     {
2808         nPriority = 1000;
2809         strStatusBar = strMiscWarning;
2810     }
2811
2812     // ppcoin: should not enter safe mode for longer invalid chain
2813     // ppcoin: if sync-checkpoint is too old do not enter safe mode
2814     if (Checkpoints::IsSyncCheckpointTooOld(60 * 60 * 24 * 10) && !fTestNet && !IsInitialBlockDownload())
2815     {
2816         nPriority = 100;
2817         strStatusBar = "WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.";
2818     }
2819
2820     // ppcoin: if detected invalid checkpoint enter safe mode
2821     if (Checkpoints::hashInvalidCheckpoint != 0)
2822     {
2823         nPriority = 3000;
2824         strStatusBar = strRPC = "WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers.";
2825     }
2826
2827     // Alerts
2828     {
2829         LOCK(cs_mapAlerts);
2830         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2831         {
2832             const CAlert& alert = item.second;
2833             if (alert.AppliesToMe() && alert.nPriority > nPriority)
2834             {
2835                 nPriority = alert.nPriority;
2836                 strStatusBar = alert.strStatusBar;
2837                 if (nPriority > 1000)
2838                     strRPC = strStatusBar;  // ppcoin: safe mode for high alert
2839             }
2840         }
2841     }
2842
2843     if (strFor == "statusbar")
2844         return strStatusBar;
2845     else if (strFor == "rpc")
2846         return strRPC;
2847     assert(!"GetWarnings() : invalid parameter");
2848     return "error";
2849 }
2850
2851
2852
2853
2854
2855
2856
2857
2858 //////////////////////////////////////////////////////////////////////////////
2859 //
2860 // Messages
2861 //
2862
2863
2864 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
2865 {
2866     switch (inv.type)
2867     {
2868     case MSG_TX:
2869         {
2870         bool txInMap = false;
2871             {
2872             LOCK(mempool.cs);
2873             txInMap = (mempool.exists(inv.hash));
2874             }
2875         return txInMap ||
2876                mapOrphanTransactions.count(inv.hash) ||
2877                txdb.ContainsTx(inv.hash);
2878         }
2879
2880     case MSG_BLOCK:
2881         return mapBlockIndex.count(inv.hash) ||
2882                mapOrphanBlocks.count(inv.hash);
2883     }
2884     // Don't know what it is, just say we already got one
2885     return true;
2886 }
2887
2888
2889
2890
2891 // The message start string is designed to be unlikely to occur in normal data.
2892 // The characters are rarely used upper ASCII, not valid as UTF-8, and produce
2893 // a large 4-byte int at any alignment.
2894 unsigned char pchMessageStart[4] = { 0xe4, 0xe8, 0xe9, 0xe5 };
2895
2896 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
2897 {
2898     static map<CService, CPubKey> mapReuseKey;
2899     RandAddSeedPerfmon();
2900     if (fDebug)
2901         printf("received: %s (%"PRIszu" bytes)\n", strCommand.c_str(), vRecv.size());
2902     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
2903     {
2904         printf("dropmessagestest DROPPING RECV MESSAGE\n");
2905         return true;
2906     }
2907
2908
2909
2910
2911
2912     if (strCommand == "version")
2913     {
2914         // Each connection can only send one version message
2915         if (pfrom->nVersion != 0)
2916         {
2917             pfrom->Misbehaving(1);
2918             return false;
2919         }
2920
2921         int64 nTime;
2922         CAddress addrMe;
2923         CAddress addrFrom;
2924         uint64 nNonce = 1;
2925         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
2926         if (pfrom->nVersion < MIN_PROTO_VERSION)
2927         {
2928             // Since February 20, 2012, the protocol is initiated at version 209,
2929             // and earlier versions are no longer supported
2930             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
2931             pfrom->fDisconnect = true;
2932             return false;
2933         }
2934
2935         if (pfrom->nVersion == 10300)
2936             pfrom->nVersion = 300;
2937         if (!vRecv.empty())
2938             vRecv >> addrFrom >> nNonce;
2939         if (!vRecv.empty())
2940             vRecv >> pfrom->strSubVer;
2941         if (!vRecv.empty())
2942             vRecv >> pfrom->nStartingHeight;
2943
2944         if (pfrom->fInbound && addrMe.IsRoutable())
2945         {
2946             pfrom->addrLocal = addrMe;
2947             SeenLocal(addrMe);
2948         }
2949
2950         // Disconnect if we connected to ourself
2951         if (nNonce == nLocalHostNonce && nNonce > 1)
2952         {
2953             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
2954             pfrom->fDisconnect = true;
2955             return true;
2956         }
2957
2958         // ppcoin: record my external IP reported by peer
2959         if (addrFrom.IsRoutable() && addrMe.IsRoutable())
2960             addrSeenByPeer = addrMe;
2961
2962         // Be shy and don't send version until we hear
2963         if (pfrom->fInbound)
2964             pfrom->PushVersion();
2965
2966         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
2967
2968         AddTimeData(pfrom->addr, nTime);
2969
2970         // Change version
2971         pfrom->PushMessage("verack");
2972         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
2973
2974         if (!pfrom->fInbound)
2975         {
2976             // Advertise our address
2977             if (!fNoListen && !IsInitialBlockDownload())
2978             {
2979                 CAddress addr = GetLocalAddress(&pfrom->addr);
2980                 if (addr.IsRoutable())
2981                     pfrom->PushAddress(addr);
2982             }
2983
2984             // Get recent addresses
2985             if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000)
2986             {
2987                 pfrom->PushMessage("getaddr");
2988                 pfrom->fGetAddr = true;
2989             }
2990             addrman.Good(pfrom->addr);
2991         } else {
2992             if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
2993             {
2994                 addrman.Add(addrFrom, addrFrom);
2995                 addrman.Good(addrFrom);
2996             }
2997         }
2998
2999         // Ask the first connected node for block updates
3000         static int nAskedForBlocks = 0;
3001         if (!pfrom->fClient && !pfrom->fOneShot &&
3002             (pfrom->nStartingHeight > (nBestHeight - 144)) &&
3003             (pfrom->nVersion < NOBLKS_VERSION_START ||
3004              pfrom->nVersion >= NOBLKS_VERSION_END) &&
3005              (nAskedForBlocks < 1 || vNodes.size() <= 1))
3006         {
3007             nAskedForBlocks++;
3008             pfrom->PushGetBlocks(pindexBest, uint256(0));
3009         }
3010
3011         // Relay alerts
3012         {
3013             LOCK(cs_mapAlerts);
3014             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3015                 item.second.RelayTo(pfrom);
3016         }
3017
3018         // ppcoin: relay sync-checkpoint
3019         {
3020             LOCK(Checkpoints::cs_hashSyncCheckpoint);
3021             if (!Checkpoints::checkpointMessage.IsNull())
3022                 Checkpoints::checkpointMessage.RelayTo(pfrom);
3023         }
3024
3025         pfrom->fSuccessfullyConnected = true;
3026
3027         printf("receive version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", pfrom->nVersion, pfrom->nStartingHeight, addrMe.ToString().c_str(), addrFrom.ToString().c_str(), pfrom->addr.ToString().c_str());
3028
3029         cPeerBlockCounts.input(pfrom->nStartingHeight);
3030
3031         // ppcoin: ask for pending sync-checkpoint if any
3032         if (!IsInitialBlockDownload())
3033             Checkpoints::AskForPendingSyncCheckpoint(pfrom);
3034     }
3035
3036
3037     else if (pfrom->nVersion == 0)
3038     {
3039         // Must have a version message before anything else
3040         pfrom->Misbehaving(1);
3041         return false;
3042     }
3043
3044
3045     else if (strCommand == "verack")
3046     {
3047         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3048     }
3049
3050
3051     else if (strCommand == "addr")
3052     {
3053         vector<CAddress> vAddr;
3054         vRecv >> vAddr;
3055
3056         // Don't want addr from older versions unless seeding
3057         if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000)
3058             return true;
3059         if (vAddr.size() > 1000)
3060         {
3061             pfrom->Misbehaving(20);
3062             return error("message addr size() = %"PRIszu"", vAddr.size());
3063         }
3064
3065         // Store the new addresses
3066         vector<CAddress> vAddrOk;
3067         int64 nNow = GetAdjustedTime();
3068         int64 nSince = nNow - 10 * 60;
3069         BOOST_FOREACH(CAddress& addr, vAddr)
3070         {
3071             if (fShutdown)
3072                 return true;
3073             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
3074                 addr.nTime = nNow - 5 * 24 * 60 * 60;
3075             pfrom->AddAddressKnown(addr);
3076             bool fReachable = IsReachable(addr);
3077             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
3078             {
3079                 // Relay to a limited number of other nodes
3080                 {
3081                     LOCK(cs_vNodes);
3082                     // Use deterministic randomness to send to the same nodes for 24 hours
3083                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
3084                     static uint256 hashSalt;
3085                     if (hashSalt == 0)
3086                         hashSalt = GetRandHash();
3087                     uint64 hashAddr = addr.GetHash();
3088                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
3089                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3090                     multimap<uint256, CNode*> mapMix;
3091                     BOOST_FOREACH(CNode* pnode, vNodes)
3092                     {
3093                         if (pnode->nVersion < CADDR_TIME_VERSION)
3094                             continue;
3095                         unsigned int nPointer;
3096                         memcpy(&nPointer, &pnode, sizeof(nPointer));
3097                         uint256 hashKey = hashRand ^ nPointer;
3098                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
3099                         mapMix.insert(make_pair(hashKey, pnode));
3100                     }
3101                     int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
3102                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
3103                         ((*mi).second)->PushAddress(addr);
3104                 }
3105             }
3106             // Do not store addresses outside our network
3107             if (fReachable)
3108                 vAddrOk.push_back(addr);
3109         }
3110         addrman.Add(vAddrOk, pfrom->addr, 2 * 60 * 60);
3111         if (vAddr.size() < 1000)
3112             pfrom->fGetAddr = false;
3113         if (pfrom->fOneShot)
3114             pfrom->fDisconnect = true;
3115     }
3116
3117
3118     else if (strCommand == "inv")
3119     {
3120         vector<CInv> vInv;
3121         vRecv >> vInv;
3122         if (vInv.size() > MAX_INV_SZ)
3123         {
3124             pfrom->Misbehaving(20);
3125             return error("message inv size() = %"PRIszu"", vInv.size());
3126         }
3127
3128         // find last block in inv vector
3129         unsigned int nLastBlock = (unsigned int)(-1);
3130         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) {
3131             if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) {
3132                 nLastBlock = vInv.size() - 1 - nInv;
3133                 break;
3134             }
3135         }
3136         CTxDB txdb("r");
3137         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
3138         {
3139             const CInv &inv = vInv[nInv];
3140
3141             if (fShutdown)
3142                 return true;
3143             pfrom->AddInventoryKnown(inv);
3144
3145             bool fAlreadyHave = AlreadyHave(txdb, inv);
3146             if (fDebug)
3147                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
3148
3149             if (!fAlreadyHave)
3150                 pfrom->AskFor(inv);
3151             else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) {
3152                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
3153             } else if (nInv == nLastBlock) {
3154                 // In case we are on a very long side-chain, it is possible that we already have
3155                 // the last block in an inv bundle sent in response to getblocks. Try to detect
3156                 // this situation and push another getblocks to continue.
3157                 pfrom->PushGetBlocks(mapBlockIndex[inv.hash], uint256(0));
3158                 if (fDebug)
3159                     printf("force request: %s\n", inv.ToString().c_str());
3160             }
3161
3162             // Track requests for our stuff
3163             Inventory(inv.hash);
3164         }
3165     }
3166
3167
3168     else if (strCommand == "getdata")
3169     {
3170         vector<CInv> vInv;
3171         vRecv >> vInv;
3172         if (vInv.size() > MAX_INV_SZ)
3173         {
3174             pfrom->Misbehaving(20);
3175             return error("message getdata size() = %"PRIszu"", vInv.size());
3176         }
3177
3178         if (fDebugNet || (vInv.size() != 1))
3179             printf("received getdata (%"PRIszu" invsz)\n", vInv.size());
3180
3181         BOOST_FOREACH(const CInv& inv, vInv)
3182         {
3183             if (fShutdown)
3184                 return true;
3185             if (fDebugNet || (vInv.size() == 1))
3186                 printf("received getdata for: %s\n", inv.ToString().c_str());
3187
3188             if (inv.type == MSG_BLOCK)
3189             {
3190                 // Send block from disk
3191                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
3192                 if (mi != mapBlockIndex.end())
3193                 {
3194                     CBlock block;
3195                     block.ReadFromDisk((*mi).second);
3196                     pfrom->PushMessage("block", block);
3197
3198                     // Trigger them to send a getblocks request for the next batch of inventory
3199                     if (inv.hash == pfrom->hashContinue)
3200                     {
3201                         // ppcoin: send latest proof-of-work block to allow the
3202                         // download node to accept as orphan (proof-of-stake 
3203                         // block might be rejected by stake connection check)
3204                         vector<CInv> vInv;
3205                         vInv.push_back(CInv(MSG_BLOCK, GetLastBlockIndex(pindexBest, false)->GetBlockHash()));
3206                         pfrom->PushMessage("inv", vInv);
3207                         pfrom->hashContinue = 0;
3208                     }
3209                 }
3210             }
3211             else if (inv.IsKnownType())
3212             {
3213                 // Send stream from relay memory
3214                 bool pushed = false;
3215                 {
3216                     LOCK(cs_mapRelay);
3217                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
3218                     if (mi != mapRelay.end()) {
3219                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
3220                         pushed = true;
3221                     }
3222                 }
3223                 if (!pushed && inv.type == MSG_TX) {
3224                     LOCK(mempool.cs);
3225                     if (mempool.exists(inv.hash)) {
3226                         CTransaction tx = mempool.lookup(inv.hash);
3227                         CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
3228                         ss.reserve(1000);
3229                         ss << tx;
3230                         pfrom->PushMessage("tx", ss);
3231                     }
3232                 }
3233             }
3234
3235             // Track requests for our stuff
3236             Inventory(inv.hash);
3237         }
3238     }
3239
3240
3241     else if (strCommand == "getblocks")
3242     {
3243         CBlockLocator locator;
3244         uint256 hashStop;
3245         vRecv >> locator >> hashStop;
3246
3247         // Find the last block the caller has in the main chain
3248         CBlockIndex* pindex = locator.GetBlockIndex();
3249
3250         // Send the rest of the chain
3251         if (pindex)
3252             pindex = pindex->pnext;
3253         int nLimit = 500;
3254         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
3255         for (; pindex; pindex = pindex->pnext)
3256         {
3257             if (pindex->GetBlockHash() == hashStop)
3258             {
3259                 printf("  getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3260                 // ppcoin: tell downloading node about the latest block if it's
3261                 // without risk being rejected due to stake connection check
3262                 if (hashStop != hashBestChain && pindex->GetBlockTime() + nStakeMinAge > pindexBest->GetBlockTime())
3263                     pfrom->PushInventory(CInv(MSG_BLOCK, hashBestChain));
3264                 break;
3265             }
3266             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
3267             if (--nLimit <= 0)
3268             {
3269                 // When this block is requested, we'll send an inv that'll make them
3270                 // getblocks the next batch of inventory.
3271                 printf("  getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3272                 pfrom->hashContinue = pindex->GetBlockHash();
3273                 break;
3274             }
3275         }
3276     }
3277     else if (strCommand == "checkpoint")
3278     {
3279         CSyncCheckpoint checkpoint;
3280         vRecv >> checkpoint;
3281
3282         if (checkpoint.ProcessSyncCheckpoint(pfrom))
3283         {
3284             // Relay
3285             pfrom->hashCheckpointKnown = checkpoint.hashCheckpoint;
3286             LOCK(cs_vNodes);
3287             BOOST_FOREACH(CNode* pnode, vNodes)
3288                 checkpoint.RelayTo(pnode);
3289         }
3290     }
3291
3292     else if (strCommand == "getheaders")
3293     {
3294         CBlockLocator locator;
3295         uint256 hashStop;
3296         vRecv >> locator >> hashStop;
3297
3298         CBlockIndex* pindex = NULL;
3299         if (locator.IsNull())
3300         {
3301             // If locator is null, return the hashStop block
3302             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
3303             if (mi == mapBlockIndex.end())
3304                 return true;
3305             pindex = (*mi).second;
3306         }
3307         else
3308         {
3309             // Find the last block the caller has in the main chain
3310             pindex = locator.GetBlockIndex();
3311             if (pindex)
3312                 pindex = pindex->pnext;
3313         }
3314
3315         vector<CBlock> vHeaders;
3316         int nLimit = 2000;
3317         printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str());
3318         for (; pindex; pindex = pindex->pnext)
3319         {
3320             vHeaders.push_back(pindex->GetBlockHeader());
3321             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
3322                 break;
3323         }
3324         pfrom->PushMessage("headers", vHeaders);
3325     }
3326
3327
3328     else if (strCommand == "tx")
3329     {
3330         vector<uint256> vWorkQueue;
3331         vector<uint256> vEraseQueue;
3332         CDataStream vMsg(vRecv);
3333         CTxDB txdb("r");
3334         CTransaction tx;
3335         vRecv >> tx;
3336
3337         CInv inv(MSG_TX, tx.GetHash());
3338         pfrom->AddInventoryKnown(inv);
3339
3340         bool fMissingInputs = false;
3341         if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs))
3342         {
3343             SyncWithWallets(tx, NULL, true);
3344             RelayMessage(inv, vMsg);
3345             mapAlreadyAskedFor.erase(inv);
3346             vWorkQueue.push_back(inv.hash);
3347             vEraseQueue.push_back(inv.hash);
3348
3349             // Recursively process any orphan transactions that depended on this one
3350             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
3351             {
3352                 uint256 hashPrev = vWorkQueue[i];
3353                 for (map<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev[hashPrev].begin();
3354                      mi != mapOrphanTransactionsByPrev[hashPrev].end();
3355                      ++mi)
3356                 {
3357                     const CDataStream& vMsg = *((*mi).second);
3358                     CTransaction tx;
3359                     CDataStream(vMsg) >> tx;
3360                     CInv inv(MSG_TX, tx.GetHash());
3361                     bool fMissingInputs2 = false;
3362
3363                     if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs2))
3364                     {
3365                         printf("   accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
3366                         SyncWithWallets(tx, NULL, true);
3367                         RelayMessage(inv, vMsg);
3368                         mapAlreadyAskedFor.erase(inv);
3369                         vWorkQueue.push_back(inv.hash);
3370                         vEraseQueue.push_back(inv.hash);
3371                     }
3372                     else if (!fMissingInputs2)
3373                     {
3374                         // invalid orphan
3375                         vEraseQueue.push_back(inv.hash);
3376                         printf("   removed invalid orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
3377                     }
3378                 }
3379             }
3380
3381             BOOST_FOREACH(uint256 hash, vEraseQueue)
3382                 EraseOrphanTx(hash);
3383         }
3384         else if (fMissingInputs)
3385         {
3386             AddOrphanTx(vMsg);
3387
3388             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
3389             unsigned int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
3390             if (nEvicted > 0)
3391                 printf("mapOrphan overflow, removed %u tx\n", nEvicted);
3392         }
3393         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
3394     }
3395
3396
3397     else if (strCommand == "block")
3398     {
3399         CBlock block;
3400         vRecv >> block;
3401
3402         printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
3403         // block.print();
3404
3405         CInv inv(MSG_BLOCK, block.GetHash());
3406         pfrom->AddInventoryKnown(inv);
3407
3408         if (ProcessBlock(pfrom, &block))
3409             mapAlreadyAskedFor.erase(inv);
3410         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
3411     }
3412
3413
3414     else if (strCommand == "getaddr")
3415     {
3416         pfrom->vAddrToSend.clear();
3417         vector<CAddress> vAddr = addrman.GetAddr();
3418         BOOST_FOREACH(const CAddress &addr, vAddr)
3419             pfrom->PushAddress(addr);
3420     }
3421
3422
3423     else if (strCommand == "mempool")
3424     {
3425         std::vector<uint256> vtxid;
3426         mempool.queryHashes(vtxid);
3427         vector<CInv> vInv;
3428         for (unsigned int i = 0; i < vtxid.size(); i++) {
3429             CInv inv(MSG_TX, vtxid[i]);
3430             vInv.push_back(inv);
3431             if (i == (MAX_INV_SZ - 1))
3432                     break;
3433         }
3434         if (vInv.size() > 0)
3435             pfrom->PushMessage("inv", vInv);
3436     }
3437
3438
3439     else if (strCommand == "checkorder")
3440     {
3441         uint256 hashReply;
3442         vRecv >> hashReply;
3443
3444         if (!GetBoolArg("-allowreceivebyip"))
3445         {
3446             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
3447             return true;
3448         }
3449
3450         CWalletTx order;
3451         vRecv >> order;
3452
3453         /// we have a chance to check the order here
3454
3455         // Keep giving the same key to the same ip until they use it
3456         if (!mapReuseKey.count(pfrom->addr))
3457             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
3458
3459         // Send back approval of order and pubkey to use
3460         CScript scriptPubKey;
3461         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
3462         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
3463     }
3464
3465
3466     else if (strCommand == "reply")
3467     {
3468         uint256 hashReply;
3469         vRecv >> hashReply;
3470
3471         CRequestTracker tracker;
3472         {
3473             LOCK(pfrom->cs_mapRequests);
3474             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
3475             if (mi != pfrom->mapRequests.end())
3476             {
3477                 tracker = (*mi).second;
3478                 pfrom->mapRequests.erase(mi);
3479             }
3480         }
3481         if (!tracker.IsNull())
3482             tracker.fn(tracker.param1, vRecv);
3483     }
3484
3485
3486     else if (strCommand == "ping")
3487     {
3488         if (pfrom->nVersion > BIP0031_VERSION)
3489         {
3490             uint64 nonce = 0;
3491             vRecv >> nonce;
3492             // Echo the message back with the nonce. This allows for two useful features:
3493             //
3494             // 1) A remote node can quickly check if the connection is operational
3495             // 2) Remote nodes can measure the latency of the network thread. If this node
3496             //    is overloaded it won't respond to pings quickly and the remote node can
3497             //    avoid sending us more work, like chain download requests.
3498             //
3499             // The nonce stops the remote getting confused between different pings: without
3500             // it, if the remote node sends a ping once per second and this node takes 5
3501             // seconds to respond to each, the 5th ping the remote sends would appear to
3502             // return very quickly.
3503             pfrom->PushMessage("pong", nonce);
3504         }
3505     }
3506
3507
3508     else if (strCommand == "alert")
3509     {
3510         CAlert alert;
3511         vRecv >> alert;
3512
3513         uint256 alertHash = alert.GetHash();
3514         if (pfrom->setKnown.count(alertHash) == 0)
3515         {
3516             if (alert.ProcessAlert())
3517             {
3518                 // Relay
3519                 pfrom->setKnown.insert(alertHash);
3520                 {
3521                     LOCK(cs_vNodes);
3522                     BOOST_FOREACH(CNode* pnode, vNodes)
3523                         alert.RelayTo(pnode);
3524                 }
3525             }
3526             else {
3527                 // Small DoS penalty so peers that send us lots of
3528                 // duplicate/expired/invalid-signature/whatever alerts
3529                 // eventually get banned.
3530                 // This isn't a Misbehaving(100) (immediate ban) because the
3531                 // peer might be an older or different implementation with
3532                 // a different signature key, etc.
3533                 pfrom->Misbehaving(10);
3534             }
3535         }
3536     }
3537
3538
3539     else
3540     {
3541         // Ignore unknown commands for extensibility
3542     }
3543
3544
3545     // Update the last seen time for this node's address
3546     if (pfrom->fNetworkNode)
3547         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
3548             AddressCurrentlyConnected(pfrom->addr);
3549
3550
3551     return true;
3552 }
3553
3554 bool ProcessMessages(CNode* pfrom)
3555 {
3556     CDataStream& vRecv = pfrom->vRecv;
3557     if (vRecv.empty())
3558         return true;
3559     //if (fDebug)
3560     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
3561
3562     //
3563     // Message format
3564     //  (4) message start
3565     //  (12) command
3566     //  (4) size
3567     //  (4) checksum
3568     //  (x) data
3569     //
3570
3571     loop
3572     {
3573         // Don't bother if send buffer is too full to respond anyway
3574         if (pfrom->vSend.size() >= SendBufferSize())
3575             break;
3576
3577         // Scan for message start
3578         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
3579         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
3580         if (vRecv.end() - pstart < nHeaderSize)
3581         {
3582             if ((int)vRecv.size() > nHeaderSize)
3583             {
3584                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
3585                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
3586             }
3587             break;
3588         }
3589         if (pstart - vRecv.begin() > 0)
3590             printf("\n\nPROCESSMESSAGE SKIPPED %"PRIpdd" BYTES\n\n", pstart - vRecv.begin());
3591         vRecv.erase(vRecv.begin(), pstart);
3592
3593         // Read header
3594         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
3595         CMessageHeader hdr;
3596         vRecv >> hdr;
3597         if (!hdr.IsValid())
3598         {
3599             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
3600             continue;
3601         }
3602         string strCommand = hdr.GetCommand();
3603
3604         // Message size
3605         unsigned int nMessageSize = hdr.nMessageSize;
3606         if (nMessageSize > MAX_SIZE)
3607         {
3608             printf("ProcessMessages(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
3609             continue;
3610         }
3611         if (nMessageSize > vRecv.size())
3612         {
3613             // Rewind and wait for rest of message
3614             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
3615             break;
3616         }
3617
3618         // Checksum
3619         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
3620         unsigned int nChecksum = 0;
3621         memcpy(&nChecksum, &hash, sizeof(nChecksum));
3622         if (nChecksum != hdr.nChecksum)
3623         {
3624             printf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
3625                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
3626             continue;
3627         }
3628
3629         // Copy message to its own buffer
3630         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
3631         vRecv.ignore(nMessageSize);
3632
3633         // Process message
3634         bool fRet = false;
3635         try
3636         {
3637             {
3638                 LOCK(cs_main);
3639                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
3640             }
3641             if (fShutdown)
3642                 return true;
3643         }
3644         catch (std::ios_base::failure& e)
3645         {
3646             if (strstr(e.what(), "end of data"))
3647             {
3648                 // Allow exceptions from under-length message on vRecv
3649                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what());
3650             }
3651             else if (strstr(e.what(), "size too large"))
3652             {
3653                 // Allow exceptions from over-long size
3654                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
3655             }
3656             else
3657             {
3658                 PrintExceptionContinue(&e, "ProcessMessages()");
3659             }
3660         }
3661         catch (std::exception& e) {
3662             PrintExceptionContinue(&e, "ProcessMessages()");
3663         } catch (...) {
3664             PrintExceptionContinue(NULL, "ProcessMessages()");
3665         }
3666
3667         if (!fRet)
3668             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
3669     }
3670
3671     vRecv.Compact();
3672     return true;
3673 }
3674
3675
3676 bool SendMessages(CNode* pto, bool fSendTrickle)
3677 {
3678     TRY_LOCK(cs_main, lockMain);
3679     if (lockMain) {
3680         // Don't send anything until we get their version message
3681         if (pto->nVersion == 0)
3682             return true;
3683
3684         // Keep-alive ping. We send a nonce of zero because we don't use it anywhere
3685         // right now.
3686         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
3687             uint64 nonce = 0;
3688             if (pto->nVersion > BIP0031_VERSION)
3689                 pto->PushMessage("ping", nonce);
3690             else
3691                 pto->PushMessage("ping");
3692         }
3693
3694         // Resend wallet transactions that haven't gotten in a block yet
3695         ResendWalletTransactions();
3696
3697         // Address refresh broadcast
3698         static int64 nLastRebroadcast;
3699         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
3700         {
3701             {
3702                 LOCK(cs_vNodes);
3703                 BOOST_FOREACH(CNode* pnode, vNodes)
3704                 {
3705                     // Periodically clear setAddrKnown to allow refresh broadcasts
3706                     if (nLastRebroadcast)
3707                         pnode->setAddrKnown.clear();
3708
3709                     // Rebroadcast our address
3710                     if (!fNoListen)
3711                     {
3712                         CAddress addr = GetLocalAddress(&pnode->addr);
3713                         if (addr.IsRoutable())
3714                             pnode->PushAddress(addr);
3715                     }
3716                 }
3717             }
3718             nLastRebroadcast = GetTime();
3719         }
3720
3721         //
3722         // Message: addr
3723         //
3724         if (fSendTrickle)
3725         {
3726             vector<CAddress> vAddr;
3727             vAddr.reserve(pto->vAddrToSend.size());
3728             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
3729             {
3730                 // returns true if wasn't already contained in the set
3731                 if (pto->setAddrKnown.insert(addr).second)
3732                 {
3733                     vAddr.push_back(addr);
3734                     // receiver rejects addr messages larger than 1000
3735                     if (vAddr.size() >= 1000)
3736                     {
3737                         pto->PushMessage("addr", vAddr);
3738                         vAddr.clear();
3739                     }
3740                 }
3741             }
3742             pto->vAddrToSend.clear();
3743             if (!vAddr.empty())
3744                 pto->PushMessage("addr", vAddr);
3745         }
3746
3747
3748         //
3749         // Message: inventory
3750         //
3751         vector<CInv> vInv;
3752         vector<CInv> vInvWait;
3753         {
3754             LOCK(pto->cs_inventory);
3755             vInv.reserve(pto->vInventoryToSend.size());
3756             vInvWait.reserve(pto->vInventoryToSend.size());
3757             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
3758             {
3759                 if (pto->setInventoryKnown.count(inv))
3760                     continue;
3761
3762                 // trickle out tx inv to protect privacy
3763                 if (inv.type == MSG_TX && !fSendTrickle)
3764                 {
3765                     // 1/4 of tx invs blast to all immediately
3766                     static uint256 hashSalt;
3767                     if (hashSalt == 0)
3768                         hashSalt = GetRandHash();
3769                     uint256 hashRand = inv.hash ^ hashSalt;
3770                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3771                     bool fTrickleWait = ((hashRand & 3) != 0);
3772
3773                     // always trickle our own transactions
3774                     if (!fTrickleWait)
3775                     {
3776                         CWalletTx wtx;
3777                         if (GetTransaction(inv.hash, wtx))
3778                             if (wtx.fFromMe)
3779                                 fTrickleWait = true;
3780                     }
3781
3782                     if (fTrickleWait)
3783                     {
3784                         vInvWait.push_back(inv);
3785                         continue;
3786                     }
3787                 }
3788
3789                 // returns true if wasn't already contained in the set
3790                 if (pto->setInventoryKnown.insert(inv).second)
3791                 {
3792                     vInv.push_back(inv);
3793                     if (vInv.size() >= 1000)
3794                     {
3795                         pto->PushMessage("inv", vInv);
3796                         vInv.clear();
3797                     }
3798                 }
3799             }
3800             pto->vInventoryToSend = vInvWait;
3801         }
3802         if (!vInv.empty())
3803             pto->PushMessage("inv", vInv);
3804
3805
3806         //
3807         // Message: getdata
3808         //
3809         vector<CInv> vGetData;
3810         int64 nNow = GetTime() * 1000000;
3811         CTxDB txdb("r");
3812         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
3813         {
3814             const CInv& inv = (*pto->mapAskFor.begin()).second;
3815             if (!AlreadyHave(txdb, inv))
3816             {
3817                 if (fDebugNet)
3818                     printf("sending getdata: %s\n", inv.ToString().c_str());
3819                 vGetData.push_back(inv);
3820                 if (vGetData.size() >= 1000)
3821                 {
3822                     pto->PushMessage("getdata", vGetData);
3823                     vGetData.clear();
3824                 }
3825                 mapAlreadyAskedFor[inv] = nNow;
3826             }
3827             pto->mapAskFor.erase(pto->mapAskFor.begin());
3828         }
3829         if (!vGetData.empty())
3830             pto->PushMessage("getdata", vGetData);
3831
3832     }
3833     return true;
3834 }
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849 //////////////////////////////////////////////////////////////////////////////
3850 //
3851 // BitcoinMiner
3852 //
3853
3854 int static FormatHashBlocks(void* pbuffer, unsigned int len)
3855 {
3856     unsigned char* pdata = (unsigned char*)pbuffer;
3857     unsigned int blocks = 1 + ((len + 8) / 64);
3858     unsigned char* pend = pdata + 64 * blocks;
3859     memset(pdata + len, 0, 64 * blocks - len);
3860     pdata[len] = 0x80;
3861     unsigned int bits = len * 8;
3862     pend[-1] = (bits >> 0) & 0xff;
3863     pend[-2] = (bits >> 8) & 0xff;
3864     pend[-3] = (bits >> 16) & 0xff;
3865     pend[-4] = (bits >> 24) & 0xff;
3866     return blocks;
3867 }
3868
3869 static const unsigned int pSHA256InitState[8] =
3870 {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
3871
3872 void SHA256Transform(void* pstate, void* pinput, const void* pinit)
3873 {
3874     SHA256_CTX ctx;
3875     unsigned char data[64];
3876
3877     SHA256_Init(&ctx);
3878
3879     for (int i = 0; i < 16; i++)
3880         ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
3881
3882     for (int i = 0; i < 8; i++)
3883         ctx.h[i] = ((uint32_t*)pinit)[i];
3884
3885     SHA256_Update(&ctx, data, sizeof(data));
3886     for (int i = 0; i < 8; i++)
3887         ((uint32_t*)pstate)[i] = ctx.h[i];
3888 }
3889
3890 // Some explaining would be appreciated
3891 class COrphan
3892 {
3893 public:
3894     CTransaction* ptx;
3895     set<uint256> setDependsOn;
3896     double dPriority;
3897     double dFeePerKb;
3898
3899     COrphan(CTransaction* ptxIn)
3900     {
3901         ptx = ptxIn;
3902         dPriority = dFeePerKb = 0;
3903     }
3904
3905     void print() const
3906     {
3907         printf("COrphan(hash=%s, dPriority=%.1f, dFeePerKb=%.1f)\n",
3908                ptx->GetHash().ToString().substr(0,10).c_str(), dPriority, dFeePerKb);
3909         BOOST_FOREACH(uint256 hash, setDependsOn)
3910             printf("   setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
3911     }
3912 };
3913
3914
3915 uint64 nLastBlockTx = 0;
3916 uint64 nLastBlockSize = 0;
3917 int64 nLastCoinStakeSearchInterval = 0;
3918  
3919 // We want to sort transactions by priority and fee, so:
3920 typedef boost::tuple<double, double, CTransaction*> TxPriority;
3921 class TxPriorityCompare
3922 {
3923     bool byFee;
3924 public:
3925     TxPriorityCompare(bool _byFee) : byFee(_byFee) { }
3926     bool operator()(const TxPriority& a, const TxPriority& b)
3927     {
3928         if (byFee)
3929         {
3930             if (a.get<1>() == b.get<1>())
3931                 return a.get<0>() < b.get<0>();
3932             return a.get<1>() < b.get<1>();
3933         }
3934         else
3935         {
3936             if (a.get<0>() == b.get<0>())
3937                 return a.get<1>() < b.get<1>();
3938             return a.get<0>() < b.get<0>();
3939         }
3940     }
3941 };
3942
3943 // CreateNewBlock:
3944 //   fProofOfStake: try (best effort) to make a proof-of-stake block
3945 CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake)
3946 {
3947     CReserveKey reservekey(pwallet);
3948
3949     // Create new block
3950     auto_ptr<CBlock> pblock(new CBlock());
3951     if (!pblock.get())
3952         return NULL;
3953
3954     // Create coinbase tx
3955     CTransaction txNew;
3956     txNew.vin.resize(1);
3957     txNew.vin[0].prevout.SetNull();
3958     txNew.vout.resize(1);
3959     txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
3960
3961     // Add our coinbase tx as first transaction
3962     pblock->vtx.push_back(txNew);
3963
3964     // Largest block you're willing to create:
3965     unsigned int nBlockMaxSize = GetArg("-blockmaxsize", MAX_BLOCK_SIZE_GEN/2);
3966     // Limit to betweeen 1K and MAX_BLOCK_SIZE-1K for sanity:
3967     nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize));
3968
3969     // Special compatibility rule before 20 Aug: limit size to 500,000 bytes:
3970     if (GetAdjustedTime() < LOCKS_SWITCH_TIME)
3971         nBlockMaxSize = std::min(nBlockMaxSize, (unsigned int)(MAX_BLOCK_SIZE_GEN));
3972
3973     // How much of the block should be dedicated to high-priority transactions,
3974     // included regardless of the fees they pay
3975     unsigned int nBlockPrioritySize = GetArg("-blockprioritysize", 27000);
3976     nBlockPrioritySize = std::min(nBlockMaxSize, nBlockPrioritySize);
3977
3978     // Minimum block size you want to create; block will be filled with free transactions
3979     // until there are no more or the block reaches this size:
3980     unsigned int nBlockMinSize = GetArg("-blockminsize", 0);
3981     nBlockMinSize = std::min(nBlockMaxSize, nBlockMinSize);
3982
3983     // Fee-per-kilobyte amount considered the same as "free"
3984     // Be careful setting this: if you set it to zero then
3985     // a transaction spammer can cheaply fill blocks using
3986     // 1-satoshi-fee transactions. It should be set above the real
3987     // cost to you of processing a transaction.
3988     int64 nMinTxFee = MIN_TX_FEE;
3989     if (mapArgs.count("-mintxfee"))
3990         ParseMoney(mapArgs["-mintxfee"], nMinTxFee);
3991
3992     // ppcoin: if coinstake available add coinstake tx
3993     static int64 nLastCoinStakeSearchTime = GetAdjustedTime();  // only initialized at startup
3994     CBlockIndex* pindexPrev = pindexBest;
3995
3996     if (fProofOfStake)  // attempt to find a coinstake
3997     {
3998         pblock->nBits = GetNextTargetRequired(pindexPrev, true);
3999         CTransaction txCoinStake;
4000         int64 nSearchTime = txCoinStake.nTime; // search to current time
4001         if (nSearchTime > nLastCoinStakeSearchTime)
4002         {
4003             if (pwallet->CreateCoinStake(*pwallet, pblock->nBits, nSearchTime-nLastCoinStakeSearchTime, txCoinStake))
4004             {
4005                 if (txCoinStake.nTime >= max(pindexPrev->GetMedianTimePast()+1, pindexPrev->GetBlockTime() - nMaxClockDrift))
4006                 {   // make sure coinstake would meet timestamp protocol
4007                     // as it would be the same as the block timestamp
4008                     pblock->vtx[0].vout[0].SetEmpty();
4009                     pblock->vtx[0].nTime = txCoinStake.nTime;
4010                     pblock->vtx.push_back(txCoinStake);
4011                 }
4012             }
4013             nLastCoinStakeSearchInterval = nSearchTime - nLastCoinStakeSearchTime;
4014             nLastCoinStakeSearchTime = nSearchTime;
4015         }
4016     }
4017
4018     pblock->nBits = GetNextTargetRequired(pindexPrev, pblock->IsProofOfStake());
4019
4020     // Collect memory pool transactions into the block
4021     int64 nFees = 0;
4022     {
4023         LOCK2(cs_main, mempool.cs);
4024         CBlockIndex* pindexPrev = pindexBest;
4025         CTxDB txdb("r");
4026
4027         // Priority order to process transactions
4028         list<COrphan> vOrphan; // list memory doesn't move
4029         map<uint256, vector<COrphan*> > mapDependers;
4030
4031         // This vector will be sorted into a priority queue:
4032         vector<TxPriority> vecPriority;
4033         vecPriority.reserve(mempool.mapTx.size());
4034         for (map<uint256, CTransaction>::iterator mi = mempool.mapTx.begin(); mi != mempool.mapTx.end(); ++mi)
4035         {
4036             CTransaction& tx = (*mi).second;
4037             if (tx.IsCoinBase() || tx.IsCoinStake() || !tx.IsFinal())
4038                 continue;
4039
4040             COrphan* porphan = NULL;
4041             double dPriority = 0;
4042             int64 nTotalIn = 0;
4043             bool fMissingInputs = false;
4044             BOOST_FOREACH(const CTxIn& txin, tx.vin)
4045             {
4046                 // Read prev transaction
4047                 CTransaction txPrev;
4048                 CTxIndex txindex;
4049                 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
4050                 {
4051                     // This should never happen; all transactions in the memory
4052                     // pool should connect to either transactions in the chain
4053                     // or other transactions in the memory pool.
4054                     if (!mempool.mapTx.count(txin.prevout.hash))
4055                     {
4056                         printf("ERROR: mempool transaction missing input\n");
4057                         if (fDebug) assert("mempool transaction missing input" == 0);
4058                         fMissingInputs = true;
4059                         if (porphan)
4060                             vOrphan.pop_back();
4061                         break;
4062                     }
4063
4064                     // Has to wait for dependencies
4065                     if (!porphan)
4066                     {
4067                         // Use list for automatic deletion
4068                         vOrphan.push_back(COrphan(&tx));
4069                         porphan = &vOrphan.back();
4070                     }
4071                     mapDependers[txin.prevout.hash].push_back(porphan);
4072                     porphan->setDependsOn.insert(txin.prevout.hash);
4073                     nTotalIn += mempool.mapTx[txin.prevout.hash].vout[txin.prevout.n].nValue;
4074                     continue;
4075                 }
4076                 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
4077                 nTotalIn += nValueIn;
4078
4079                 int nConf = txindex.GetDepthInMainChain();
4080                 dPriority += (double)nValueIn * nConf;
4081             }
4082             if (fMissingInputs) continue;
4083
4084             // Priority is sum(valuein * age) / txsize
4085             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
4086             dPriority /= nTxSize;
4087
4088             // This is a more accurate fee-per-kilobyte than is used by the client code, because the
4089             // client code rounds up the size to the nearest 1K. That's good, because it gives an
4090             // incentive to create smaller transactions.
4091             double dFeePerKb =  double(nTotalIn-tx.GetValueOut()) / (double(nTxSize)/1000.0);
4092
4093             if (porphan)
4094             {
4095                 porphan->dPriority = dPriority;
4096                 porphan->dFeePerKb = dFeePerKb;
4097             }
4098             else
4099                 vecPriority.push_back(TxPriority(dPriority, dFeePerKb, &(*mi).second));
4100         }
4101
4102         // Collect transactions into block
4103         map<uint256, CTxIndex> mapTestPool;
4104         uint64 nBlockSize = 1000;
4105         uint64 nBlockTx = 0;
4106         int nBlockSigOps = 100;
4107         bool fSortedByFee = (nBlockPrioritySize <= 0);
4108
4109         TxPriorityCompare comparer(fSortedByFee);
4110         std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
4111
4112         while (!vecPriority.empty())
4113         {
4114             // Take highest priority transaction off the priority queue:
4115             double dPriority = vecPriority.front().get<0>();
4116             double dFeePerKb = vecPriority.front().get<1>();
4117             CTransaction& tx = *(vecPriority.front().get<2>());
4118
4119             std::pop_heap(vecPriority.begin(), vecPriority.end(), comparer);
4120             vecPriority.pop_back();
4121
4122             // Size limits
4123             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
4124             if (nBlockSize + nTxSize >= nBlockMaxSize)
4125                 continue;
4126
4127             // Legacy limits on sigOps:
4128             unsigned int nTxSigOps = tx.GetLegacySigOpCount();
4129             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
4130                 continue;
4131
4132             // Timestamp limit
4133             if (tx.nTime > GetAdjustedTime() || (pblock->IsProofOfStake() && tx.nTime > pblock->vtx[1].nTime))
4134                 continue;
4135
4136             // ppcoin: simplify transaction fee - allow free = false
4137             int64 nMinFee = tx.GetMinFee(nBlockSize, false, GMF_BLOCK);
4138
4139             // Skip free transactions if we're past the minimum block size:
4140             if (fSortedByFee && (dFeePerKb < nMinTxFee) && (nBlockSize + nTxSize >= nBlockMinSize))
4141                 continue;
4142
4143             // Prioritize by fee once past the priority size or we run out of high-priority
4144             // transactions:
4145             if (!fSortedByFee &&
4146                 ((nBlockSize + nTxSize >= nBlockPrioritySize) || (dPriority < COIN * 144 / 250)))
4147             {
4148                 fSortedByFee = true;
4149                 comparer = TxPriorityCompare(fSortedByFee);
4150                 std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
4151             }
4152
4153             // Connecting shouldn't fail due to dependency on other memory pool transactions
4154             // because we're already processing them in order of dependency
4155             map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
4156             MapPrevTx mapInputs;
4157             bool fInvalid;
4158             if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
4159                 continue;
4160
4161             int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
4162             if (nTxFees < nMinFee)
4163                 continue;
4164
4165             nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
4166             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
4167                 continue;
4168
4169             if (!tx.ConnectInputs(txdb, mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
4170                 continue;
4171             mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
4172             swap(mapTestPool, mapTestPoolTmp);
4173
4174             // Added
4175             pblock->vtx.push_back(tx);
4176             nBlockSize += nTxSize;
4177             ++nBlockTx;
4178             nBlockSigOps += nTxSigOps;
4179             nFees += nTxFees;
4180
4181             if (fDebug && GetBoolArg("-printpriority"))
4182             {
4183                 printf("priority %.1f feeperkb %.1f txid %s\n",
4184                        dPriority, dFeePerKb, tx.GetHash().ToString().c_str());
4185             }
4186
4187             // Add transactions that depend on this one to the priority queue
4188             uint256 hash = tx.GetHash();
4189             if (mapDependers.count(hash))
4190             {
4191                 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
4192                 {
4193                     if (!porphan->setDependsOn.empty())
4194                     {
4195                         porphan->setDependsOn.erase(hash);
4196                         if (porphan->setDependsOn.empty())
4197                         {
4198                             vecPriority.push_back(TxPriority(porphan->dPriority, porphan->dFeePerKb, porphan->ptx));
4199                             std::push_heap(vecPriority.begin(), vecPriority.end(), comparer);
4200                         }
4201                     }
4202                 }
4203             }
4204         }
4205
4206         nLastBlockTx = nBlockTx;
4207         nLastBlockSize = nBlockSize;
4208
4209         if (fDebug && GetBoolArg("-printpriority"))
4210             printf("CreateNewBlock(): total size %"PRI64u"\n", nBlockSize);
4211
4212         if (pblock->IsProofOfWork())
4213             pblock->vtx[0].vout[0].nValue = GetProofOfWorkReward(pblock->nBits);
4214
4215         // Fill in header
4216         pblock->hashPrevBlock  = pindexPrev->GetBlockHash();
4217         if (pblock->IsProofOfStake())
4218             pblock->nTime      = pblock->vtx[1].nTime; //same as coinstake timestamp
4219         pblock->nTime          = max(pindexPrev->GetMedianTimePast()+1, pblock->GetMaxTransactionTime());
4220         pblock->nTime          = max(pblock->GetBlockTime(), pindexPrev->GetBlockTime() - nMaxClockDrift);
4221         if (pblock->IsProofOfWork())
4222             pblock->UpdateTime(pindexPrev);
4223         pblock->nNonce         = 0;
4224     }
4225
4226     return pblock.release();
4227 }
4228
4229
4230 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
4231 {
4232     // Update nExtraNonce
4233     static uint256 hashPrevBlock;
4234     if (hashPrevBlock != pblock->hashPrevBlock)
4235     {
4236         nExtraNonce = 0;
4237         hashPrevBlock = pblock->hashPrevBlock;
4238     }
4239     ++nExtraNonce;
4240     unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2
4241     pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
4242     assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
4243
4244     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
4245 }
4246
4247
4248 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
4249 {
4250     //
4251     // Pre-build hash buffers
4252     //
4253     struct
4254     {
4255         struct unnamed2
4256         {
4257             int nVersion;
4258             uint256 hashPrevBlock;
4259             uint256 hashMerkleRoot;
4260             unsigned int nTime;
4261             unsigned int nBits;
4262             unsigned int nNonce;
4263         }
4264         block;
4265         unsigned char pchPadding0[64];
4266         uint256 hash1;
4267         unsigned char pchPadding1[64];
4268     }
4269     tmp;
4270     memset(&tmp, 0, sizeof(tmp));
4271
4272     tmp.block.nVersion       = pblock->nVersion;
4273     tmp.block.hashPrevBlock  = pblock->hashPrevBlock;
4274     tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
4275     tmp.block.nTime          = pblock->nTime;
4276     tmp.block.nBits          = pblock->nBits;
4277     tmp.block.nNonce         = pblock->nNonce;
4278
4279     FormatHashBlocks(&tmp.block, sizeof(tmp.block));
4280     FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
4281
4282     // Byte swap all the input buffer
4283     for (unsigned int i = 0; i < sizeof(tmp)/4; i++)
4284         ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
4285
4286     // Precalc the first half of the first hash, which stays constant
4287     SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
4288
4289     memcpy(pdata, &tmp.block, 128);
4290     memcpy(phash1, &tmp.hash1, 64);
4291 }
4292
4293
4294 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
4295 {
4296     uint256 hash = pblock->GetHash();
4297     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
4298
4299     if (hash > hashTarget && pblock->IsProofOfWork())
4300         return error("BitcoinMiner : proof-of-work not meeting target");
4301
4302     //// debug print
4303     printf("BitcoinMiner:\n");
4304     printf("new block found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
4305     pblock->print();
4306     printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
4307
4308     // Found a solution
4309     {
4310         LOCK(cs_main);
4311         if (pblock->hashPrevBlock != hashBestChain)
4312             return error("BitcoinMiner : generated block is stale");
4313
4314         // Remove key from key pool
4315         reservekey.KeepKey();
4316
4317         // Track how many getdata requests this block gets
4318         {
4319             LOCK(wallet.cs_wallet);
4320             wallet.mapRequestCount[pblock->GetHash()] = 0;
4321         }
4322
4323         // Process this block the same as if we had received it from another node
4324         if (!ProcessBlock(NULL, pblock))
4325             return error("BitcoinMiner : ProcessBlock, block not accepted");
4326     }
4327
4328     return true;
4329 }
4330
4331 void static ThreadBitcoinMiner(void* parg);
4332
4333 static bool fGenerateBitcoins = false;
4334 static bool fLimitProcessors = false;
4335 static int nLimitProcessors = -1;
4336
4337 void BitcoinMiner(CWallet *pwallet, bool fProofOfStake)
4338 {
4339     void *scratchbuf = scrypt_buffer_alloc();
4340
4341     printf("CPUMiner started for proof-of-%s\n", fProofOfStake? "stake" : "work");
4342     SetThreadPriority(THREAD_PRIORITY_LOWEST);
4343
4344     // Make this thread recognisable as the mining thread
4345     RenameThread("bitcoin-miner");
4346
4347     // Each thread has its own key and counter
4348     CReserveKey reservekey(pwallet);
4349     unsigned int nExtraNonce = 0;
4350
4351     while (fGenerateBitcoins || fProofOfStake)
4352     {
4353         if (fShutdown)
4354             return;
4355         while (vNodes.empty() || IsInitialBlockDownload())
4356         {
4357             Sleep(1000);
4358             if (fShutdown)
4359                 return;
4360             if ((!fGenerateBitcoins) && !fProofOfStake)
4361                 return;
4362         }
4363
4364         while (pwallet->IsLocked())
4365         {
4366             strMintWarning = strMintMessage;
4367             Sleep(1000);
4368         }
4369         strMintWarning = "";
4370
4371         //
4372         // Create new block
4373         //
4374         unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
4375         CBlockIndex* pindexPrev = pindexBest;
4376
4377         auto_ptr<CBlock> pblock(CreateNewBlock(pwallet, fProofOfStake));
4378         if (!pblock.get())
4379             return;
4380         IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
4381
4382         if (fProofOfStake)
4383         {
4384             // ppcoin: if proof-of-stake block found then process block
4385             if (pblock->IsProofOfStake())
4386             {
4387                 if (!pblock->SignBlock(*pwalletMain))
4388                 {
4389                     strMintWarning = strMintMessage;
4390                     continue;
4391                 }
4392                 strMintWarning = "";
4393                 printf("CPUMiner : proof-of-stake block found %s\n", pblock->GetHash().ToString().c_str()); 
4394                 SetThreadPriority(THREAD_PRIORITY_NORMAL);
4395                 CheckWork(pblock.get(), *pwalletMain, reservekey);
4396                 SetThreadPriority(THREAD_PRIORITY_LOWEST);
4397             }
4398             Sleep(500);
4399             continue;
4400         }
4401
4402         printf("Running BitcoinMiner with %"PRIszu" transactions in block (%u bytes)\n", pblock->vtx.size(),
4403                ::GetSerializeSize(*pblock, SER_NETWORK, PROTOCOL_VERSION));
4404
4405         //
4406         // Pre-build hash buffers
4407         //
4408         char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
4409         char pdatabuf[128+16];    char* pdata     = alignup<16>(pdatabuf);
4410         char phash1buf[64+16];    char* phash1    = alignup<16>(phash1buf);
4411
4412         FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1);
4413
4414         unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
4415         unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
4416
4417
4418         //
4419         // Search
4420         //
4421         int64 nStart = GetTime();
4422         uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
4423
4424         unsigned int max_nonce = 0xffff0000;
4425         block_header res_header;
4426         uint256 result;
4427
4428         loop
4429         {
4430             unsigned int nHashesDone = 0;
4431             unsigned int nNonceFound;
4432
4433             nNonceFound = scanhash_scrypt(
4434                         (block_header *)&pblock->nVersion,
4435                         scratchbuf,
4436                         max_nonce,
4437                         nHashesDone,
4438                         UBEGIN(result),
4439                         &res_header
4440             );
4441
4442             // Check if something found
4443             if (nNonceFound != (unsigned int) -1)
4444             {
4445                 if (result <= hashTarget)
4446                 {
4447                     // Found a solution
4448                     pblock->nNonce = nNonceFound;
4449                     assert(result == pblock->GetHash());
4450                     if (!pblock->SignBlock(*pwalletMain))
4451                     {
4452 //                        strMintWarning = strMintMessage;
4453                         break;
4454                     }
4455                     strMintWarning = "";
4456
4457                     SetThreadPriority(THREAD_PRIORITY_NORMAL);
4458                     CheckWork(pblock.get(), *pwalletMain, reservekey);
4459                     SetThreadPriority(THREAD_PRIORITY_LOWEST);
4460                     break;
4461                 }
4462             }
4463
4464             // Meter hashes/sec
4465             static int64 nHashCounter;
4466             if (nHPSTimerStart == 0)
4467             {
4468                 nHPSTimerStart = GetTimeMillis();
4469                 nHashCounter = 0;
4470             }
4471             else
4472                 nHashCounter += nHashesDone;
4473             if (GetTimeMillis() - nHPSTimerStart > 4000)
4474             {
4475                 static CCriticalSection cs;
4476                 {
4477                     LOCK(cs);
4478                     if (GetTimeMillis() - nHPSTimerStart > 4000)
4479                     {
4480                         dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
4481                         nHPSTimerStart = GetTimeMillis();
4482                         nHashCounter = 0;
4483                         static int64 nLogTime;
4484                         if (GetTime() - nLogTime > 30 * 60)
4485                         {
4486                             nLogTime = GetTime();
4487                             printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[THREAD_MINER], dHashesPerSec/1000.0);
4488                         }
4489                     }
4490                 }
4491             }
4492
4493             // Check for stop or if block needs to be rebuilt
4494             if (fShutdown)
4495                 return;
4496             if (!fGenerateBitcoins)
4497                 return;
4498             if (fLimitProcessors && vnThreadsRunning[THREAD_MINER] > nLimitProcessors)
4499                 return;
4500             if (vNodes.empty())
4501                 break;
4502             if (nBlockNonce >= 0xffff0000)
4503                 break;
4504             if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
4505                 break;
4506             if (pindexPrev != pindexBest)
4507                 break;
4508
4509             // Update nTime every few seconds
4510             pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, pblock->GetMaxTransactionTime());
4511             pblock->nTime = max(pblock->GetBlockTime(), pindexPrev->GetBlockTime() - nMaxClockDrift);
4512             pblock->UpdateTime(pindexPrev);
4513             nBlockTime = ByteReverse(pblock->nTime);
4514
4515             if (pblock->GetBlockTime() >= (int64)pblock->vtx[0].nTime + nMaxClockDrift)
4516                 break;  // need to update coinbase timestamp
4517         }
4518     }
4519
4520     scrypt_buffer_free(scratchbuf);
4521 }
4522
4523 void static ThreadBitcoinMiner(void* parg)
4524 {
4525     CWallet* pwallet = (CWallet*)parg;
4526     try
4527     {
4528         vnThreadsRunning[THREAD_MINER]++;
4529         BitcoinMiner(pwallet, false);
4530         vnThreadsRunning[THREAD_MINER]--;
4531     }
4532     catch (std::exception& e) {
4533         vnThreadsRunning[THREAD_MINER]--;
4534         PrintException(&e, "ThreadBitcoinMiner()");
4535     } catch (...) {
4536         vnThreadsRunning[THREAD_MINER]--;
4537         PrintException(NULL, "ThreadBitcoinMiner()");
4538     }
4539     nHPSTimerStart = 0;
4540     if (vnThreadsRunning[THREAD_MINER] == 0)
4541         dHashesPerSec = 0;
4542     printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[THREAD_MINER]);
4543 }
4544
4545
4546 void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
4547 {
4548     fGenerateBitcoins = fGenerate;
4549     nLimitProcessors = GetArg("-genproclimit", -1);
4550     if (nLimitProcessors == 0)
4551         fGenerateBitcoins = false;
4552     fLimitProcessors = (nLimitProcessors != -1);
4553
4554     if (fGenerate)
4555     {
4556         int nProcessors = boost::thread::hardware_concurrency();
4557         printf("%d processors\n", nProcessors);
4558         if (nProcessors < 1)
4559             nProcessors = 1;
4560         if (fLimitProcessors && nProcessors > nLimitProcessors)
4561             nProcessors = nLimitProcessors;
4562         int nAddThreads = nProcessors - vnThreadsRunning[THREAD_MINER];
4563         printf("Starting %d BitcoinMiner threads\n", nAddThreads);
4564         for (int i = 0; i < nAddThreads; i++)
4565         {
4566             if (!NewThread(ThreadBitcoinMiner, pwallet))
4567                 printf("Error: NewThread(ThreadBitcoinMiner) failed\n");
4568             Sleep(10);
4569         }
4570     }
4571 }