Stake checkings refactoring
[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     CBigNum bnBestInvalidBlockTrust = pindexNew->bnChainTrust - pindexNew->pprev->bnChainTrust;
1165     CBigNum bnBestBlockTrust = pindexBest->nHeight != 0 ? (pindexBest->bnChainTrust - pindexBest->pprev->bnChainTrust) : pindexBest->bnChainTrust;
1166
1167     printf("InvalidChainFound: invalid block=%s  height=%d  trust=%s  blocktrust=%s  date=%s\n",
1168       pindexNew->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->nHeight,
1169       pindexNew->bnChainTrust.ToString().c_str(), bnBestInvalidBlockTrust.ToString().c_str(),
1170       DateTimeStrFormat("%x %H:%M:%S", pindexNew->GetBlockTime()).c_str());
1171     printf("InvalidChainFound:  current best=%s  height=%d  trust=%s  blocktrust=%s  date=%s\n",
1172       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, 
1173       bnBestChainTrust.ToString().c_str(),
1174       bnBestBlockTrust.ToString().c_str(),
1175       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
1176 }
1177
1178
1179 void CBlock::UpdateTime(const CBlockIndex* pindexPrev)
1180 {
1181     nTime = max(GetBlockTime(), GetAdjustedTime());
1182 }
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194 bool CTransaction::DisconnectInputs(CTxDB& txdb)
1195 {
1196     // Relinquish previous transactions' spent pointers
1197     if (!IsCoinBase())
1198     {
1199         BOOST_FOREACH(const CTxIn& txin, vin)
1200         {
1201             COutPoint prevout = txin.prevout;
1202
1203             // Get prev txindex from disk
1204             CTxIndex txindex;
1205             if (!txdb.ReadTxIndex(prevout.hash, txindex))
1206                 return error("DisconnectInputs() : ReadTxIndex failed");
1207
1208             if (prevout.n >= txindex.vSpent.size())
1209                 return error("DisconnectInputs() : prevout.n out of range");
1210
1211             // Mark outpoint as not spent
1212             txindex.vSpent[prevout.n].SetNull();
1213
1214             // Write back
1215             if (!txdb.UpdateTxIndex(prevout.hash, txindex))
1216                 return error("DisconnectInputs() : UpdateTxIndex failed");
1217         }
1218     }
1219
1220     // Remove transaction from index
1221     // This can fail if a duplicate of this transaction was in a chain that got
1222     // reorganized away. This is only possible if this transaction was completely
1223     // spent, so erasing it would be a no-op anyway.
1224     txdb.EraseTxIndex(*this);
1225
1226     return true;
1227 }
1228
1229
1230 bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTestPool,
1231                                bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid)
1232 {
1233     // FetchInputs can return false either because we just haven't seen some inputs
1234     // (in which case the transaction should be stored as an orphan)
1235     // or because the transaction is malformed (in which case the transaction should
1236     // be dropped).  If tx is definitely invalid, fInvalid will be set to true.
1237     fInvalid = false;
1238
1239     if (IsCoinBase())
1240         return true; // Coinbase transactions have no inputs to fetch.
1241
1242     for (unsigned int i = 0; i < vin.size(); i++)
1243     {
1244         COutPoint prevout = vin[i].prevout;
1245         if (inputsRet.count(prevout.hash))
1246             continue; // Got it already
1247
1248         // Read txindex
1249         CTxIndex& txindex = inputsRet[prevout.hash].first;
1250         bool fFound = true;
1251         if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
1252         {
1253             // Get txindex from current proposed changes
1254             txindex = mapTestPool.find(prevout.hash)->second;
1255         }
1256         else
1257         {
1258             // Read txindex from txdb
1259             fFound = txdb.ReadTxIndex(prevout.hash, txindex);
1260         }
1261         if (!fFound && (fBlock || fMiner))
1262             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());
1263
1264         // Read txPrev
1265         CTransaction& txPrev = inputsRet[prevout.hash].second;
1266         if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
1267         {
1268             // Get prev tx from single transactions in memory
1269             {
1270                 LOCK(mempool.cs);
1271                 if (!mempool.exists(prevout.hash))
1272                     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());
1273                 txPrev = mempool.lookup(prevout.hash);
1274             }
1275             if (!fFound)
1276                 txindex.vSpent.resize(txPrev.vout.size());
1277         }
1278         else
1279         {
1280             // Get prev tx from disk
1281             if (!txPrev.ReadFromDisk(txindex.pos))
1282                 return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1283         }
1284     }
1285
1286     // Make sure all prevout.n indexes are valid:
1287     for (unsigned int i = 0; i < vin.size(); i++)
1288     {
1289         const COutPoint prevout = vin[i].prevout;
1290         assert(inputsRet.count(prevout.hash) != 0);
1291         const CTxIndex& txindex = inputsRet[prevout.hash].first;
1292         const CTransaction& txPrev = inputsRet[prevout.hash].second;
1293         if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1294         {
1295             // Revisit this if/when transaction replacement is implemented and allows
1296             // adding inputs:
1297             fInvalid = true;
1298             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()));
1299         }
1300     }
1301
1302     return true;
1303 }
1304
1305 const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const
1306 {
1307     MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash);
1308     if (mi == inputs.end())
1309         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found");
1310
1311     const CTransaction& txPrev = (mi->second).second;
1312     if (input.prevout.n >= txPrev.vout.size())
1313         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range");
1314
1315     return txPrev.vout[input.prevout.n];
1316 }
1317
1318 int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const
1319 {
1320     if (IsCoinBase())
1321         return 0;
1322
1323     int64 nResult = 0;
1324     for (unsigned int i = 0; i < vin.size(); i++)
1325     {
1326         nResult += GetOutputFor(vin[i], inputs).nValue;
1327     }
1328     return nResult;
1329
1330 }
1331
1332 unsigned int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const
1333 {
1334     if (IsCoinBase())
1335         return 0;
1336
1337     unsigned int nSigOps = 0;
1338     for (unsigned int i = 0; i < vin.size(); i++)
1339     {
1340         const CTxOut& prevout = GetOutputFor(vin[i], inputs);
1341         if (prevout.scriptPubKey.IsPayToScriptHash())
1342             nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig);
1343     }
1344     return nSigOps;
1345 }
1346
1347 bool CTransaction::ConnectInputs(CTxDB& txdb, MapPrevTx inputs,
1348                                  map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1349                                  const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash)
1350 {
1351     // Take over previous transactions' spent pointers
1352     // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
1353     // fMiner is true when called from the internal bitcoin miner
1354     // ... both are false when called from CTransaction::AcceptToMemoryPool
1355     if (!IsCoinBase())
1356     {
1357         int64 nValueIn = 0;
1358         int64 nFees = 0;
1359         for (unsigned int i = 0; i < vin.size(); i++)
1360         {
1361             COutPoint prevout = vin[i].prevout;
1362             assert(inputs.count(prevout.hash) > 0);
1363             CTxIndex& txindex = inputs[prevout.hash].first;
1364             CTransaction& txPrev = inputs[prevout.hash].second;
1365
1366             if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1367                 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()));
1368
1369             // If prev is coinbase or coinstake, check that it's matured
1370             if (txPrev.IsCoinBase() || txPrev.IsCoinStake())
1371                 for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < nCoinbaseMaturity; pindex = pindex->pprev)
1372                     if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
1373                         return error("ConnectInputs() : tried to spend %s at depth %d", txPrev.IsCoinBase() ? "coinbase" : "coinstake", pindexBlock->nHeight - pindex->nHeight);
1374
1375             // ppcoin: check transaction timestamp
1376             if (txPrev.nTime > nTime)
1377                 return DoS(100, error("ConnectInputs() : transaction timestamp earlier than input transaction"));
1378
1379             // Check for negative or overflow input values
1380             nValueIn += txPrev.vout[prevout.n].nValue;
1381             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1382                 return DoS(100, error("ConnectInputs() : txin values out of range"));
1383
1384         }
1385         // The first loop above does all the inexpensive checks.
1386         // Only if ALL inputs pass do we perform expensive ECDSA signature checks.
1387         // Helps prevent CPU exhaustion attacks.
1388         for (unsigned int i = 0; i < vin.size(); i++)
1389         {
1390             COutPoint prevout = vin[i].prevout;
1391             assert(inputs.count(prevout.hash) > 0);
1392             CTxIndex& txindex = inputs[prevout.hash].first;
1393             CTransaction& txPrev = inputs[prevout.hash].second;
1394
1395             // Check for conflicts (double-spend)
1396             // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
1397             // for an attacker to attempt to split the network.
1398             if (!txindex.vSpent[prevout.n].IsNull())
1399                 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());
1400
1401             // Skip ECDSA signature verification when connecting blocks (fBlock=true)
1402             // before the last blockchain checkpoint. This is safe because block merkle hashes are
1403             // still computed and checked, and any change will be caught at the next checkpoint.
1404             if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate())))
1405             {
1406                 // Verify signature
1407                 if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0))
1408                 {
1409                     // only during transition phase for P2SH: do not invoke anti-DoS code for
1410                     // potentially old clients relaying bad P2SH transactions
1411                     if (fStrictPayToScriptHash && VerifySignature(txPrev, *this, i, false, 0))
1412                         return error("ConnectInputs() : %s P2SH VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1413
1414                     return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1415                 }
1416             }
1417
1418             // Mark outpoints as spent
1419             txindex.vSpent[prevout.n] = posThisTx;
1420
1421             // Write back
1422             if (fBlock || fMiner)
1423             {
1424                 mapTestPool[prevout.hash] = txindex;
1425             }
1426         }
1427
1428         if (IsCoinStake())
1429         {
1430             // ppcoin: coin stake tx earns reward instead of paying fee
1431             uint64 nCoinAge;
1432             if (!GetCoinAge(txdb, nCoinAge))
1433                 return error("ConnectInputs() : %s unable to get coin age for coinstake", GetHash().ToString().substr(0,10).c_str());
1434             int64 nStakeReward = GetValueOut() - nValueIn;
1435             if (nStakeReward > GetProofOfStakeReward(nCoinAge, pindexBlock->nBits, nTime) - GetMinFee() + MIN_TX_FEE)
1436                 return DoS(100, error("ConnectInputs() : %s stake reward exceeded", GetHash().ToString().substr(0,10).c_str()));
1437         }
1438         else
1439         {
1440             if (nValueIn < GetValueOut())
1441                 return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1442
1443             // Tally transaction fees
1444             int64 nTxFee = nValueIn - GetValueOut();
1445             if (nTxFee < 0)
1446                 return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1447             // ppcoin: enforce transaction fees for every block
1448             if (nTxFee < GetMinFee())
1449                 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;
1450
1451             nFees += nTxFee;
1452             if (!MoneyRange(nFees))
1453                 return DoS(100, error("ConnectInputs() : nFees out of range"));
1454         }
1455     }
1456
1457     return true;
1458 }
1459
1460
1461 bool CTransaction::ClientConnectInputs()
1462 {
1463     if (IsCoinBase())
1464         return false;
1465
1466     // Take over previous transactions' spent pointers
1467     {
1468         LOCK(mempool.cs);
1469         int64 nValueIn = 0;
1470         for (unsigned int i = 0; i < vin.size(); i++)
1471         {
1472             // Get prev tx from single transactions in memory
1473             COutPoint prevout = vin[i].prevout;
1474             if (!mempool.exists(prevout.hash))
1475                 return false;
1476             CTransaction& txPrev = mempool.lookup(prevout.hash);
1477
1478             if (prevout.n >= txPrev.vout.size())
1479                 return false;
1480
1481             // Verify signature
1482             if (!VerifySignature(txPrev, *this, i, true, 0))
1483                 return error("ConnectInputs() : VerifySignature failed");
1484
1485             ///// this is redundant with the mempool.mapNextTx stuff,
1486             ///// not sure which I want to get rid of
1487             ///// this has to go away now that posNext is gone
1488             // // Check for conflicts
1489             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1490             //     return error("ConnectInputs() : prev tx already used");
1491             //
1492             // // Flag outpoints as used
1493             // txPrev.vout[prevout.n].posNext = posThisTx;
1494
1495             nValueIn += txPrev.vout[prevout.n].nValue;
1496
1497             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1498                 return error("ClientConnectInputs() : txin values out of range");
1499         }
1500         if (GetValueOut() > nValueIn)
1501             return false;
1502     }
1503
1504     return true;
1505 }
1506
1507
1508
1509
1510 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1511 {
1512     // Disconnect in reverse order
1513     for (int i = vtx.size()-1; i >= 0; i--)
1514         if (!vtx[i].DisconnectInputs(txdb))
1515             return false;
1516
1517     // Update block index on disk without changing it in memory.
1518     // The memory index structure will be changed after the db commits.
1519     if (pindex->pprev)
1520     {
1521         CDiskBlockIndex blockindexPrev(pindex->pprev);
1522         blockindexPrev.hashNext = 0;
1523         if (!txdb.WriteBlockIndex(blockindexPrev))
1524             return error("DisconnectBlock() : WriteBlockIndex failed");
1525     }
1526
1527     // ppcoin: clean up wallet after disconnecting coinstake
1528     BOOST_FOREACH(CTransaction& tx, vtx)
1529         SyncWithWallets(tx, this, false, false);
1530
1531     return true;
1532 }
1533
1534 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex, bool fJustCheck)
1535 {
1536     // Check it again in case a previous version let a bad block in
1537     if (!CheckBlock(!fJustCheck, !fJustCheck))
1538         return false;
1539
1540     // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1541     // unless those are already completely spent.
1542     // If such overwrites are allowed, coinbases and transactions depending upon those
1543     // can be duplicated to remove the ability to spend the first instance -- even after
1544     // being sent to another address.
1545     // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1546     // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1547     // already refuses previously-known transaction ids entirely.
1548     // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC.
1549     // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the
1550     // two in the chain that violate it. This prevents exploiting the issue against nodes in their
1551     // initial block download.
1552     bool fEnforceBIP30 = true; // Always active in NovaCoin
1553     bool fStrictPayToScriptHash = true; // Always active in NovaCoin
1554
1555     //// issue here: it doesn't know the version
1556     unsigned int nTxPos;
1557     if (fJustCheck)
1558         // FetchInputs treats CDiskTxPos(1,1,1) as a special "refer to memorypool" indicator
1559         // 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
1560         nTxPos = 1;
1561     else
1562         nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK, CLIENT_VERSION) - (2 * GetSizeOfCompactSize(0)) + GetSizeOfCompactSize(vtx.size());
1563
1564     map<uint256, CTxIndex> mapQueuedChanges;
1565     int64 nFees = 0;
1566     int64 nValueIn = 0;
1567     int64 nValueOut = 0;
1568     unsigned int nSigOps = 0;
1569     BOOST_FOREACH(CTransaction& tx, vtx)
1570     {
1571         uint256 hashTx = tx.GetHash();
1572
1573         if (fEnforceBIP30) {
1574             CTxIndex txindexOld;
1575             if (txdb.ReadTxIndex(hashTx, txindexOld)) {
1576                 BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent)
1577                     if (pos.IsNull())
1578                         return false;
1579             }
1580         }
1581
1582         nSigOps += tx.GetLegacySigOpCount();
1583         if (nSigOps > MAX_BLOCK_SIGOPS)
1584             return DoS(100, error("ConnectBlock() : too many sigops"));
1585
1586         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1587         if (!fJustCheck)
1588             nTxPos += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION);
1589
1590         MapPrevTx mapInputs;
1591         if (tx.IsCoinBase())
1592             nValueOut += tx.GetValueOut();
1593         else
1594         {
1595             bool fInvalid;
1596             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1597                 return false;
1598
1599             if (fStrictPayToScriptHash)
1600             {
1601                 // Add in sigops done by pay-to-script-hash inputs;
1602                 // this is to prevent a "rogue miner" from creating
1603                 // an incredibly-expensive-to-validate block.
1604                 nSigOps += tx.GetP2SHSigOpCount(mapInputs);
1605                 if (nSigOps > MAX_BLOCK_SIGOPS)
1606                     return DoS(100, error("ConnectBlock() : too many sigops"));
1607             }
1608
1609             int64 nTxValueIn = tx.GetValueIn(mapInputs);
1610             int64 nTxValueOut = tx.GetValueOut();
1611             nValueIn += nTxValueIn;
1612             nValueOut += nTxValueOut;
1613             if (!tx.IsCoinStake())
1614                 nFees += nTxValueIn - nTxValueOut;
1615
1616             if (!tx.ConnectInputs(txdb, mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fStrictPayToScriptHash))
1617                 return false;
1618         }
1619
1620         mapQueuedChanges[hashTx] = CTxIndex(posThisTx, tx.vout.size());
1621     }
1622
1623     // ppcoin: track money supply and mint amount info
1624     pindex->nMint = nValueOut - nValueIn + nFees;
1625     pindex->nMoneySupply = (pindex->pprev? pindex->pprev->nMoneySupply : 0) + nValueOut - nValueIn;
1626     if (!txdb.WriteBlockIndex(CDiskBlockIndex(pindex)))
1627         return error("Connect() : WriteBlockIndex for pindex failed");
1628
1629     // ppcoin: fees are not collected by miners as in bitcoin
1630     // ppcoin: fees are destroyed to compensate the entire network
1631     if (fDebug && GetBoolArg("-printcreation"))
1632         printf("ConnectBlock() : destroy=%s nFees=%"PRI64d"\n", FormatMoney(nFees).c_str(), nFees);
1633
1634     if (fJustCheck)
1635         return true;
1636
1637     // Write queued txindex changes
1638     for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1639     {
1640         if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1641             return error("ConnectBlock() : UpdateTxIndex failed");
1642     }
1643
1644     // Update block index on disk without changing it in memory.
1645     // The memory index structure will be changed after the db commits.
1646     if (pindex->pprev)
1647     {
1648         CDiskBlockIndex blockindexPrev(pindex->pprev);
1649         blockindexPrev.hashNext = pindex->GetBlockHash();
1650         if (!txdb.WriteBlockIndex(blockindexPrev))
1651             return error("ConnectBlock() : WriteBlockIndex failed");
1652     }
1653
1654     // Watch for transactions paying to me
1655     BOOST_FOREACH(CTransaction& tx, vtx)
1656         SyncWithWallets(tx, this, true);
1657
1658     return true;
1659 }
1660
1661 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1662 {
1663     printf("REORGANIZE\n");
1664
1665     // Find the fork
1666     CBlockIndex* pfork = pindexBest;
1667     CBlockIndex* plonger = pindexNew;
1668     while (pfork != plonger)
1669     {
1670         while (plonger->nHeight > pfork->nHeight)
1671             if (!(plonger = plonger->pprev))
1672                 return error("Reorganize() : plonger->pprev is null");
1673         if (pfork == plonger)
1674             break;
1675         if (!(pfork = pfork->pprev))
1676             return error("Reorganize() : pfork->pprev is null");
1677     }
1678
1679     // List of what to disconnect
1680     vector<CBlockIndex*> vDisconnect;
1681     for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1682         vDisconnect.push_back(pindex);
1683
1684     // List of what to connect
1685     vector<CBlockIndex*> vConnect;
1686     for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1687         vConnect.push_back(pindex);
1688     reverse(vConnect.begin(), vConnect.end());
1689
1690     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());
1691     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());
1692
1693     // Disconnect shorter branch
1694     vector<CTransaction> vResurrect;
1695     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1696     {
1697         CBlock block;
1698         if (!block.ReadFromDisk(pindex))
1699             return error("Reorganize() : ReadFromDisk for disconnect failed");
1700         if (!block.DisconnectBlock(txdb, pindex))
1701             return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1702
1703         // Queue memory transactions to resurrect
1704         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1705             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
1706                 vResurrect.push_back(tx);
1707     }
1708
1709     // Connect longer branch
1710     vector<CTransaction> vDelete;
1711     for (unsigned int i = 0; i < vConnect.size(); i++)
1712     {
1713         CBlockIndex* pindex = vConnect[i];
1714         CBlock block;
1715         if (!block.ReadFromDisk(pindex))
1716             return error("Reorganize() : ReadFromDisk for connect failed");
1717         if (!block.ConnectBlock(txdb, pindex))
1718         {
1719             // Invalid block
1720             return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1721         }
1722
1723         // Queue memory transactions to delete
1724         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1725             vDelete.push_back(tx);
1726     }
1727     if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1728         return error("Reorganize() : WriteHashBestChain failed");
1729
1730     // Make sure it's successfully written to disk before changing memory structure
1731     if (!txdb.TxnCommit())
1732         return error("Reorganize() : TxnCommit failed");
1733
1734     // Disconnect shorter branch
1735     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1736         if (pindex->pprev)
1737             pindex->pprev->pnext = NULL;
1738
1739     // Connect longer branch
1740     BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1741         if (pindex->pprev)
1742             pindex->pprev->pnext = pindex;
1743
1744     // Resurrect memory transactions that were in the disconnected branch
1745     BOOST_FOREACH(CTransaction& tx, vResurrect)
1746         tx.AcceptToMemoryPool(txdb, false);
1747
1748     // Delete redundant memory transactions that are in the connected branch
1749     BOOST_FOREACH(CTransaction& tx, vDelete)
1750         mempool.remove(tx);
1751
1752     printf("REORGANIZE: done\n");
1753
1754     return true;
1755 }
1756
1757
1758 // Called from inside SetBestChain: attaches a block to the new best chain being built
1759 bool CBlock::SetBestChainInner(CTxDB& txdb, CBlockIndex *pindexNew)
1760 {
1761     uint256 hash = GetHash();
1762
1763     // Adding to current best branch
1764     if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1765     {
1766         txdb.TxnAbort();
1767         InvalidChainFound(pindexNew);
1768         return false;
1769     }
1770     if (!txdb.TxnCommit())
1771         return error("SetBestChain() : TxnCommit failed");
1772
1773     // Add to current best branch
1774     pindexNew->pprev->pnext = pindexNew;
1775
1776     // Delete redundant memory transactions
1777     BOOST_FOREACH(CTransaction& tx, vtx)
1778         mempool.remove(tx);
1779
1780     return true;
1781 }
1782
1783 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1784 {
1785     uint256 hash = GetHash();
1786
1787     if (!txdb.TxnBegin())
1788         return error("SetBestChain() : TxnBegin failed");
1789
1790     if (pindexGenesisBlock == NULL && hash == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
1791     {
1792         txdb.WriteHashBestChain(hash);
1793         if (!txdb.TxnCommit())
1794             return error("SetBestChain() : TxnCommit failed");
1795         pindexGenesisBlock = pindexNew;
1796     }
1797     else if (hashPrevBlock == hashBestChain)
1798     {
1799         if (!SetBestChainInner(txdb, pindexNew))
1800             return error("SetBestChain() : SetBestChainInner failed");
1801     }
1802     else
1803     {
1804         // the first block in the new chain that will cause it to become the new best chain
1805         CBlockIndex *pindexIntermediate = pindexNew;
1806
1807         // list of blocks that need to be connected afterwards
1808         std::vector<CBlockIndex*> vpindexSecondary;
1809
1810         // Reorganize is costly in terms of db load, as it works in a single db transaction.
1811         // Try to limit how much needs to be done inside
1812         while (pindexIntermediate->pprev && pindexIntermediate->pprev->bnChainTrust > pindexBest->bnChainTrust)
1813         {
1814             vpindexSecondary.push_back(pindexIntermediate);
1815             pindexIntermediate = pindexIntermediate->pprev;
1816         }
1817
1818         if (!vpindexSecondary.empty())
1819             printf("Postponing %"PRIszu" reconnects\n", vpindexSecondary.size());
1820
1821         // Switch to new best branch
1822         if (!Reorganize(txdb, pindexIntermediate))
1823         {
1824             txdb.TxnAbort();
1825             InvalidChainFound(pindexNew);
1826             return error("SetBestChain() : Reorganize failed");
1827         }
1828
1829         // Connect further blocks
1830         BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary)
1831         {
1832             CBlock block;
1833             if (!block.ReadFromDisk(pindex))
1834             {
1835                 printf("SetBestChain() : ReadFromDisk failed\n");
1836                 break;
1837             }
1838             if (!txdb.TxnBegin()) {
1839                 printf("SetBestChain() : TxnBegin 2 failed\n");
1840                 break;
1841             }
1842             // errors now are not fatal, we still did a reorganisation to a new chain in a valid way
1843             if (!block.SetBestChainInner(txdb, pindex))
1844                 break;
1845         }
1846     }
1847
1848     // Update best block in wallet (so we can detect restored wallets)
1849     bool fIsInitialDownload = IsInitialBlockDownload();
1850     if (!fIsInitialDownload)
1851     {
1852         const CBlockLocator locator(pindexNew);
1853         ::SetBestChain(locator);
1854     }
1855
1856     // New best block
1857     hashBestChain = hash;
1858     pindexBest = pindexNew;
1859     pblockindexFBBHLast = NULL;
1860     nBestHeight = pindexBest->nHeight;
1861     bnBestChainTrust = pindexNew->bnChainTrust;
1862     nTimeBestReceived = GetTime();
1863     nTransactionsUpdated++;
1864
1865     CBigNum bnBestBlockTrust = pindexBest->nHeight != 0 ? (pindexBest->bnChainTrust - pindexBest->pprev->bnChainTrust) : pindexBest->bnChainTrust;
1866
1867     printf("SetBestChain: new best=%s  height=%d  trust=%s  blocktrust=%s  date=%s\n",
1868       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainTrust.ToString().c_str(),
1869       bnBestBlockTrust.ToString().c_str(),
1870       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
1871
1872     // Check the version of the last 100 blocks to see if we need to upgrade:
1873     if (!fIsInitialDownload)
1874     {
1875         int nUpgraded = 0;
1876         const CBlockIndex* pindex = pindexBest;
1877         for (int i = 0; i < 100 && pindex != NULL; i++)
1878         {
1879             if (pindex->nVersion > CBlock::CURRENT_VERSION)
1880                 ++nUpgraded;
1881             pindex = pindex->pprev;
1882         }
1883         if (nUpgraded > 0)
1884             printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CURRENT_VERSION);
1885         if (nUpgraded > 100/2)
1886             // strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
1887             strMiscWarning = _("Warning: This version is obsolete, upgrade required!");
1888     }
1889
1890     std::string strCmd = GetArg("-blocknotify", "");
1891
1892     if (!fIsInitialDownload && !strCmd.empty())
1893     {
1894         boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
1895         boost::thread t(runCommand, strCmd); // thread runs free
1896     }
1897
1898     return true;
1899 }
1900
1901 // ppcoin: total coin age spent in transaction, in the unit of coin-days.
1902 // Only those coins meeting minimum age requirement counts. As those
1903 // transactions not in main chain are not currently indexed so we
1904 // might not find out about their coin age. Older transactions are 
1905 // guaranteed to be in main chain by sync-checkpoint. This rule is
1906 // introduced to help nodes establish a consistent view of the coin
1907 // age (trust score) of competing branches.
1908 bool CTransaction::GetCoinAge(CTxDB& txdb, uint64& nCoinAge) const
1909 {
1910     CBigNum bnCentSecond = 0;  // coin age in the unit of cent-seconds
1911     nCoinAge = 0;
1912
1913     if (IsCoinBase())
1914         return true;
1915
1916     BOOST_FOREACH(const CTxIn& txin, vin)
1917     {
1918         // First try finding the previous transaction in database
1919         CTransaction txPrev;
1920         CTxIndex txindex;
1921         if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
1922             continue;  // previous transaction not in main chain
1923         if (nTime < txPrev.nTime)
1924             return false;  // Transaction timestamp violation
1925
1926         // Read block header
1927         CBlock block;
1928         if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
1929             return false; // unable to read block of previous transaction
1930         if (block.GetBlockTime() + nStakeMinAge > nTime)
1931             continue; // only count coins meeting min age requirement
1932
1933         int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
1934         bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT;
1935
1936         if (fDebug && GetBoolArg("-printcoinage"))
1937             printf("coin age nValueIn=%"PRI64d" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTime - txPrev.nTime, bnCentSecond.ToString().c_str());
1938     }
1939
1940     CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);
1941     if (fDebug && GetBoolArg("-printcoinage"))
1942         printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
1943     nCoinAge = bnCoinDay.getuint64();
1944     return true;
1945 }
1946
1947 // ppcoin: total coin age spent in block, in the unit of coin-days.
1948 bool CBlock::GetCoinAge(uint64& nCoinAge) const
1949 {
1950     nCoinAge = 0;
1951
1952     CTxDB txdb("r");
1953     BOOST_FOREACH(const CTransaction& tx, vtx)
1954     {
1955         uint64 nTxCoinAge;
1956         if (tx.GetCoinAge(txdb, nTxCoinAge))
1957             nCoinAge += nTxCoinAge;
1958         else
1959             return false;
1960     }
1961
1962     if (nCoinAge == 0) // block coin age minimum 1 coin-day
1963         nCoinAge = 1;
1964     if (fDebug && GetBoolArg("-printcoinage"))
1965         printf("block coin age total nCoinDays=%"PRI64d"\n", nCoinAge);
1966     return true;
1967 }
1968
1969 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
1970 {
1971     // Check for duplicate
1972     uint256 hash = GetHash();
1973     if (mapBlockIndex.count(hash))
1974         return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
1975
1976     // Construct new block index object
1977     CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
1978     if (!pindexNew)
1979         return error("AddToBlockIndex() : new CBlockIndex failed");
1980     pindexNew->phashBlock = &hash;
1981     map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
1982     if (miPrev != mapBlockIndex.end())
1983     {
1984         pindexNew->pprev = (*miPrev).second;
1985         pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
1986     }
1987
1988     // ppcoin: compute chain trust score
1989     pindexNew->bnChainTrust = (pindexNew->pprev ? pindexNew->pprev->bnChainTrust : 0) + pindexNew->GetBlockTrust();
1990
1991     // ppcoin: compute stake entropy bit for stake modifier
1992     if (!pindexNew->SetStakeEntropyBit(GetStakeEntropyBit(pindexNew->nHeight)))
1993         return error("AddToBlockIndex() : SetStakeEntropyBit() failed");
1994
1995     // ppcoin: record proof-of-stake hash value
1996     if (pindexNew->IsProofOfStake())
1997     {
1998         if (!mapProofOfStake.count(hash))
1999             return error("AddToBlockIndex() : hashProofOfStake not found in map");
2000         pindexNew->hashProofOfStake = mapProofOfStake[hash];
2001     }
2002
2003     // ppcoin: compute stake modifier
2004     uint64 nStakeModifier = 0;
2005     bool fGeneratedStakeModifier = false;
2006     if (!ComputeNextStakeModifier(pindexNew->pprev, nStakeModifier, fGeneratedStakeModifier))
2007         return error("AddToBlockIndex() : ComputeNextStakeModifier() failed");
2008     pindexNew->SetStakeModifier(nStakeModifier, fGeneratedStakeModifier);
2009     pindexNew->nStakeModifierChecksum = GetStakeModifierChecksum(pindexNew);
2010     if (!CheckStakeModifierCheckpoints(pindexNew->nHeight, pindexNew->nStakeModifierChecksum))
2011         return error("AddToBlockIndex() : Rejected by stake modifier checkpoint height=%d, modifier=0x%016"PRI64x, pindexNew->nHeight, nStakeModifier);
2012
2013     // Add to mapBlockIndex
2014     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
2015     if (pindexNew->IsProofOfStake())
2016         setStakeSeen.insert(make_pair(pindexNew->prevoutStake, pindexNew->nStakeTime));
2017     pindexNew->phashBlock = &((*mi).first);
2018
2019     // Write to disk block index
2020     CTxDB txdb;
2021     if (!txdb.TxnBegin())
2022         return false;
2023     txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
2024     if (!txdb.TxnCommit())
2025         return false;
2026
2027     // New best
2028     if (pindexNew->bnChainTrust > bnBestChainTrust)
2029         if (!SetBestChain(txdb, pindexNew))
2030             return false;
2031
2032     txdb.Close();
2033
2034     if (pindexNew == pindexBest)
2035     {
2036         // Notify UI to display prev block's coinbase if it was ours
2037         static uint256 hashPrevBestCoinBase;
2038         UpdatedTransaction(hashPrevBestCoinBase);
2039         hashPrevBestCoinBase = vtx[0].GetHash();
2040     }
2041
2042     uiInterface.NotifyBlocksChanged();
2043     return true;
2044 }
2045
2046
2047
2048
2049 bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot) const
2050 {
2051     // These are checks that are independent of context
2052     // that can be verified before saving an orphan block.
2053
2054     // Size limits
2055     if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
2056         return DoS(100, error("CheckBlock() : size limits failed"));
2057
2058     // Special short-term limits to avoid 10,000 BDB lock limit:
2059     if (GetBlockTime() < LOCKS_SWITCH_TIME)
2060     {
2061         // Rule is: #unique txids referenced <= 4,500
2062         // ... to prevent 10,000 BDB lock exhaustion on old clients
2063         set<uint256> setTxIn;
2064         for (size_t i = 0; i < vtx.size(); i++)
2065         {
2066             setTxIn.insert(vtx[i].GetHash());
2067             if (i == 0) continue; // skip coinbase txin
2068             BOOST_FOREACH(const CTxIn& txin, vtx[i].vin)
2069                     setTxIn.insert(txin.prevout.hash);
2070         }
2071         size_t nTxids = setTxIn.size();
2072         if (nTxids > 4500)
2073             return error("CheckBlock() : maxlocks violation");
2074     }
2075
2076     // Check proof of work matches claimed amount
2077     if (fCheckPOW && IsProofOfWork() && !CheckProofOfWork(GetHash(), nBits))
2078         return DoS(50, error("CheckBlock() : proof of work failed"));
2079
2080     // Check timestamp
2081     if (GetBlockTime() > GetAdjustedTime() + nMaxClockDrift)
2082         return error("CheckBlock() : block timestamp too far in the future");
2083
2084     // First transaction must be coinbase, the rest must not be
2085     if (vtx.empty() || !vtx[0].IsCoinBase())
2086         return DoS(100, error("CheckBlock() : first tx is not coinbase"));
2087     for (unsigned int i = 1; i < vtx.size(); i++)
2088         if (vtx[i].IsCoinBase())
2089             return DoS(100, error("CheckBlock() : more than one coinbase"));
2090
2091     // Check coinbase timestamp
2092     if (GetBlockTime() > (int64)vtx[0].nTime + nMaxClockDrift)
2093         return DoS(50, error("CheckBlock() : coinbase timestamp is too early"));
2094
2095     if (IsProofOfStake())
2096     {
2097         // ppcoin: coinbase output should be empty if proof-of-stake block
2098         if (vtx[0].vout.size() != 1 || !vtx[0].vout[0].IsEmpty())
2099             return error("CheckBlock() : coinbase output not empty for proof-of-stake block");
2100
2101         // Second transaction must be coinstake, the rest must not be
2102         if (vtx.empty() || !vtx[1].IsCoinStake())
2103             return DoS(100, error("CheckBlock() : second tx is not coinstake"));
2104         for (unsigned int i = 2; i < vtx.size(); i++)
2105             if (vtx[i].IsCoinStake())
2106                 return DoS(100, error("CheckBlock() : more than one coinstake"));
2107
2108         // Check coinstake timestamp
2109         if (!CheckCoinStakeTimestamp(GetBlockTime(), (int64)vtx[1].nTime))
2110             return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRI64d" nTimeTx=%u", GetBlockTime(), vtx[1].nTime));
2111     }
2112     else
2113     {
2114         // Check coinbase reward
2115         if (vtx[0].GetValueOut() > (GetProofOfWorkReward(nBits) - vtx[0].GetMinFee() + MIN_TX_FEE))
2116             return DoS(50, error("CheckBlock() : coinbase reward exceeded %s > %s", 
2117                    FormatMoney(vtx[0].GetValueOut()).c_str(),
2118                    FormatMoney(IsProofOfWork()? GetProofOfWorkReward(nBits) : 0).c_str()));
2119     }
2120
2121     // Check transactions
2122     BOOST_FOREACH(const CTransaction& tx, vtx)
2123     {
2124         if (!tx.CheckTransaction())
2125             return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
2126
2127         // ppcoin: check transaction timestamp
2128         if (GetBlockTime() < (int64)tx.nTime)
2129             return DoS(50, error("CheckBlock() : block timestamp earlier than transaction timestamp"));
2130     }
2131
2132     // Check for duplicate txids. This is caught by ConnectInputs(),
2133     // but catching it earlier avoids a potential DoS attack:
2134     set<uint256> uniqueTx;
2135     BOOST_FOREACH(const CTransaction& tx, vtx)
2136     {
2137         uniqueTx.insert(tx.GetHash());
2138     }
2139     if (uniqueTx.size() != vtx.size())
2140         return DoS(100, error("CheckBlock() : duplicate transaction"));
2141
2142     unsigned int nSigOps = 0;
2143     BOOST_FOREACH(const CTransaction& tx, vtx)
2144     {
2145         nSigOps += tx.GetLegacySigOpCount();
2146     }
2147     if (nSigOps > MAX_BLOCK_SIGOPS)
2148         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
2149
2150     // Check merkle root
2151     if (fCheckMerkleRoot && hashMerkleRoot != BuildMerkleTree())
2152         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
2153
2154     // NovaCoin: check proof-of-stake block signature
2155     if (IsProofOfStake() || (!fTestNet && GetBlockTime() < CHAINCHECKS_SWITCH_TIME))
2156     {
2157         if (!CheckBlockSignature())
2158             return DoS(100, error("CheckBlock() : bad block signature"));
2159     }
2160
2161     return true;
2162 }
2163
2164 bool CBlock::AcceptBlock()
2165 {
2166     // Check for duplicate
2167     uint256 hash = GetHash();
2168     if (mapBlockIndex.count(hash))
2169         return error("AcceptBlock() : block already in mapBlockIndex");
2170
2171     // Get prev block index
2172     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
2173     if (mi == mapBlockIndex.end())
2174         return DoS(10, error("AcceptBlock() : prev block not found"));
2175     CBlockIndex* pindexPrev = (*mi).second;
2176     int nHeight = pindexPrev->nHeight+1;
2177
2178     // Check proof-of-work or proof-of-stake
2179     if (nBits != GetNextTargetRequired(pindexPrev, IsProofOfStake()))
2180         return DoS(100, error("AcceptBlock() : incorrect %s", IsProofOfWork() ? "proof-of-work" : "proof-of-stake"));
2181
2182     // Check timestamp against prev
2183     if (GetBlockTime() <= pindexPrev->GetMedianTimePast() || GetBlockTime() + nMaxClockDrift < pindexPrev->GetBlockTime())
2184         return error("AcceptBlock() : block's timestamp is too early");
2185
2186     // Check that all transactions are finalized
2187     BOOST_FOREACH(const CTransaction& tx, vtx)
2188         if (!tx.IsFinal(nHeight, GetBlockTime()))
2189             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
2190
2191     // Check that the block chain matches the known block chain up to a checkpoint
2192     if (!Checkpoints::CheckHardened(nHeight, hash))
2193         return DoS(100, error("AcceptBlock() : rejected by hardened checkpoint lock-in at %d", nHeight));
2194
2195     // ppcoin: check that the block satisfies synchronized checkpoint
2196     if (!Checkpoints::CheckSync(hash, pindexPrev))
2197     {
2198         if(!GetBoolArg("-nosynccheckpoints", false))
2199         {
2200             return error("AcceptBlock() : rejected by synchronized checkpoint");
2201         }
2202         else
2203         {
2204             strMiscWarning = _("WARNING: syncronized checkpoint violation detected, but skipped!");
2205         }
2206     }
2207
2208     // Reject block.nVersion < 3 blocks since 95% threshold on mainNet and always on testNet:
2209     if (nVersion < 3 && ((!fTestNet && nHeight > 14060) || (fTestNet && nHeight > 0)))
2210         return error("CheckBlock() : rejected nVersion < 3 block");
2211
2212     // Enforce rule that the coinbase starts with serialized block height
2213     CScript expect = CScript() << nHeight;
2214     if (!std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin()))
2215         return DoS(100, error("AcceptBlock() : block height mismatch in coinbase"));
2216
2217     // Write block to history file
2218     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK, CLIENT_VERSION)))
2219         return error("AcceptBlock() : out of disk space");
2220     unsigned int nFile = -1;
2221     unsigned int nBlockPos = 0;
2222     if (!WriteToDisk(nFile, nBlockPos))
2223         return error("AcceptBlock() : WriteToDisk failed");
2224     if (!AddToBlockIndex(nFile, nBlockPos))
2225         return error("AcceptBlock() : AddToBlockIndex failed");
2226
2227     // Relay inventory, but don't relay old inventory during initial block download
2228     int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
2229     if (hashBestChain == hash)
2230     {
2231         LOCK(cs_vNodes);
2232         BOOST_FOREACH(CNode* pnode, vNodes)
2233             if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
2234                 pnode->PushInventory(CInv(MSG_BLOCK, hash));
2235     }
2236
2237     // ppcoin: check pending sync-checkpoint
2238     Checkpoints::AcceptPendingSyncCheckpoint();
2239
2240     return true;
2241 }
2242
2243 CBigNum CBlockIndex::GetBlockTrust() const
2244 {
2245     CBigNum bnTarget;
2246
2247     // Old protocol
2248     if (!fTestNet && GetBlockTime() < CHAINCHECKS_SWITCH_TIME)
2249     {
2250         CBigNum bnTarget;
2251         bnTarget.SetCompact(nBits);
2252
2253         if (bnTarget <= 0)
2254             return 0;
2255         return (IsProofOfStake()? (CBigNum(1)<<256) / (bnTarget+1) : 1);
2256     }
2257
2258     // New protocol
2259     if (pprev == NULL || pprev->nHeight < 10)
2260         return 1;
2261
2262     const CBlockIndex* currentIndex = pprev;
2263
2264     if(IsProofOfStake())
2265     {
2266         bnTarget.SetCompact(nBits);
2267         if (bnTarget <= 0)
2268             return 0;
2269
2270         if (!pprev->IsProofOfWork())
2271             return (CBigNum(1)<<256) / (3 * (bnTarget+1));
2272
2273         int nPoWCount = 0;
2274
2275         // Check last 12 blocks type
2276         while (pprev->nHeight - currentIndex->nHeight < 12)
2277         {
2278             if (currentIndex->IsProofOfWork())
2279                 nPoWCount++;
2280             currentIndex = currentIndex->pprev;
2281         }
2282
2283         // Return 1/3 of score if less than 3 PoW blocks found
2284         if (nPoWCount < 3)
2285             return (CBigNum(1)<<256) / (3 * (bnTarget+1));
2286
2287         return (CBigNum(1)<<256) / (bnTarget+1);
2288     }
2289     else
2290     {
2291         if (!(pprev->IsProofOfStake() && pprev->pprev->IsProofOfStake()))
2292             return 1 + (2 * (pprev->bnChainTrust - pprev->pprev->bnChainTrust) / 3);
2293
2294         int nPoSCount = 0;
2295
2296         // Check last 12 blocks type
2297         while (pprev->nHeight - currentIndex->nHeight < 12)
2298         {
2299             if (currentIndex->IsProofOfStake())
2300                 nPoSCount++;
2301             currentIndex = currentIndex->pprev;
2302         }
2303
2304         // Return 2/3 of previous block score if less than 7 PoS blocks found
2305         if (nPoSCount < 7)
2306             return 1 + (2 * (pprev->bnChainTrust - pprev->pprev->bnChainTrust) / 3);
2307
2308         return (pprev->bnChainTrust - pprev->pprev->bnChainTrust);
2309     }
2310 }
2311
2312 bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck)
2313 {
2314     unsigned int nFound = 0;
2315     for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++)
2316     {
2317         if (pstart->nVersion >= minVersion)
2318             ++nFound;
2319         pstart = pstart->pprev;
2320     }
2321     return (nFound >= nRequired);
2322 }
2323
2324 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
2325 {
2326     // Check for duplicate
2327     uint256 hash = pblock->GetHash();
2328     if (mapBlockIndex.count(hash))
2329         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
2330     if (mapOrphanBlocks.count(hash))
2331         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
2332
2333     // ppcoin: check proof-of-stake
2334     // Limited duplicity on stake: prevents block flood attack
2335     // Duplicate stake allowed only when there is orphan child block
2336     if (pblock->IsProofOfStake() && setStakeSeen.count(pblock->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2337         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());
2338
2339     // Preliminary checks
2340     if (!pblock->CheckBlock())
2341         return error("ProcessBlock() : CheckBlock FAILED");
2342
2343     // ppcoin: verify hash target and signature of coinstake tx
2344     if (pblock->IsProofOfStake())
2345     {
2346         uint256 hashProofOfStake = 0;
2347         if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, hashProofOfStake))
2348         {
2349             printf("WARNING: ProcessBlock(): check proof-of-stake failed for block %s\n", hash.ToString().c_str());
2350             return false; // do not error here as we expect this during initial block download
2351         }
2352         if (!mapProofOfStake.count(hash)) // add to mapProofOfStake
2353             mapProofOfStake.insert(make_pair(hash, hashProofOfStake));
2354     }
2355
2356     CBlockIndex* pcheckpoint = Checkpoints::GetLastSyncCheckpoint();
2357     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2358     {
2359         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
2360         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
2361         CBigNum bnNewBlock;
2362         bnNewBlock.SetCompact(pblock->nBits);
2363         CBigNum bnRequired;
2364         bnRequired.SetCompact(ComputeMinWork(GetLastBlockIndex(pcheckpoint, pblock->IsProofOfStake())->nBits, deltaTime));
2365         if (bnNewBlock > bnRequired)
2366         {
2367             if (pfrom)
2368                 pfrom->Misbehaving(100);
2369             return error("ProcessBlock() : block with too little %s", pblock->IsProofOfStake()? "proof-of-stake" : "proof-of-work");
2370         }
2371     }
2372
2373     // ppcoin: ask for pending sync-checkpoint if any
2374     if (!IsInitialBlockDownload())
2375         Checkpoints::AskForPendingSyncCheckpoint(pfrom);
2376
2377     // If don't already have its previous block, shunt it off to holding area until we get it
2378     if (!mapBlockIndex.count(pblock->hashPrevBlock))
2379     {
2380         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
2381         CBlock* pblock2 = new CBlock(*pblock);
2382         // ppcoin: check proof-of-stake
2383         if (pblock2->IsProofOfStake())
2384         {
2385             // Limited duplicity on stake: prevents block flood attack
2386             // Duplicate stake allowed only when there is orphan child block
2387             if (setStakeSeenOrphan.count(pblock2->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2388                 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());
2389             else
2390                 setStakeSeenOrphan.insert(pblock2->GetProofOfStake());
2391         }
2392         mapOrphanBlocks.insert(make_pair(hash, pblock2));
2393         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
2394
2395         // Ask this guy to fill in what we're missing
2396         if (pfrom)
2397         {
2398             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
2399             // ppcoin: getblocks may not obtain the ancestor block rejected
2400             // earlier by duplicate-stake check so we ask for it again directly
2401             if (!IsInitialBlockDownload())
2402                 pfrom->AskFor(CInv(MSG_BLOCK, WantedByOrphan(pblock2)));
2403         }
2404         return true;
2405     }
2406
2407     // Store to disk
2408     if (!pblock->AcceptBlock())
2409         return error("ProcessBlock() : AcceptBlock FAILED");
2410
2411     // Recursively process any orphan blocks that depended on this one
2412     vector<uint256> vWorkQueue;
2413     vWorkQueue.push_back(hash);
2414     for (unsigned int i = 0; i < vWorkQueue.size(); i++)
2415     {
2416         uint256 hashPrev = vWorkQueue[i];
2417         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
2418              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
2419              ++mi)
2420         {
2421             CBlock* pblockOrphan = (*mi).second;
2422             if (pblockOrphan->AcceptBlock())
2423                 vWorkQueue.push_back(pblockOrphan->GetHash());
2424             mapOrphanBlocks.erase(pblockOrphan->GetHash());
2425             setStakeSeenOrphan.erase(pblockOrphan->GetProofOfStake());
2426             delete pblockOrphan;
2427         }
2428         mapOrphanBlocksByPrev.erase(hashPrev);
2429     }
2430
2431     printf("ProcessBlock: ACCEPTED\n");
2432
2433     // ppcoin: if responsible for sync-checkpoint send it
2434     if (pfrom && !CSyncCheckpoint::strMasterPrivKey.empty())
2435         Checkpoints::SendSyncCheckpoint(Checkpoints::AutoSelectSyncCheckpoint());
2436
2437     return true;
2438 }
2439
2440 // ppcoin: sign block
2441 bool CBlock::SignBlock(const CKeyStore& keystore)
2442 {
2443     vector<valtype> vSolutions;
2444     txnouttype whichType;
2445
2446     if(!IsProofOfStake())
2447     {
2448         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2449         {
2450             const CTxOut& txout = vtx[0].vout[i];
2451
2452             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2453                 continue;
2454
2455             if (whichType == TX_PUBKEY)
2456             {
2457                 // Sign
2458                 valtype& vchPubKey = vSolutions[0];
2459                 CKey key;
2460
2461                 if (!keystore.GetKey(Hash160(vchPubKey), key))
2462                     continue;
2463                 if (key.GetPubKey() != vchPubKey)
2464                     continue;
2465                 if(!key.Sign(GetHash(), vchBlockSig))
2466                     continue;
2467
2468                 return true;
2469             }
2470         }
2471     }
2472     else
2473     {
2474         const CTxOut& txout = vtx[1].vout[1];
2475
2476         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2477             return false;
2478
2479         if (whichType == TX_PUBKEY)
2480         {
2481             // Sign
2482             valtype& vchPubKey = vSolutions[0];
2483             CKey key;
2484
2485             if (!keystore.GetKey(Hash160(vchPubKey), key))
2486                 return false;
2487             if (key.GetPubKey() != vchPubKey)
2488                 return false;
2489
2490             return key.Sign(GetHash(), vchBlockSig);
2491         }
2492     }
2493
2494     printf("Sign failed\n");
2495     return false;
2496 }
2497
2498 // ppcoin: check block signature
2499 bool CBlock::CheckBlockSignature() const
2500 {
2501     if (GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
2502         return vchBlockSig.empty();
2503
2504     vector<valtype> vSolutions;
2505     txnouttype whichType;
2506
2507     if(IsProofOfStake())
2508     {
2509         const CTxOut& txout = vtx[1].vout[1];
2510
2511         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2512             return false;
2513         if (whichType == TX_PUBKEY)
2514         {
2515             valtype& vchPubKey = vSolutions[0];
2516             CKey key;
2517             if (!key.SetPubKey(vchPubKey))
2518                 return false;
2519             if (vchBlockSig.empty())
2520                 return false;
2521             return key.Verify(GetHash(), vchBlockSig);
2522         }
2523     }
2524     else
2525     {
2526         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2527         {
2528             const CTxOut& txout = vtx[0].vout[i];
2529
2530             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2531                 return false;
2532
2533             if (whichType == TX_PUBKEY)
2534             {
2535                 // Verify
2536                 valtype& vchPubKey = vSolutions[0];
2537                 CKey key;
2538                 if (!key.SetPubKey(vchPubKey))
2539                     continue;
2540                 if (vchBlockSig.empty())
2541                     continue;
2542                 if(!key.Verify(GetHash(), vchBlockSig))
2543                     continue;
2544
2545                 return true;
2546             }
2547         }
2548     }
2549     return false;
2550 }
2551
2552 bool CheckDiskSpace(uint64 nAdditionalBytes)
2553 {
2554     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
2555
2556     // Check for nMinDiskSpace bytes (currently 50MB)
2557     if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
2558     {
2559         fShutdown = true;
2560         string strMessage = _("Warning: Disk space is low!");
2561         strMiscWarning = strMessage;
2562         printf("*** %s\n", strMessage.c_str());
2563         uiInterface.ThreadSafeMessageBox(strMessage, "NovaCoin", CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
2564         StartShutdown();
2565         return false;
2566     }
2567     return true;
2568 }
2569
2570 static filesystem::path BlockFilePath(unsigned int nFile)
2571 {
2572     string strBlockFn = strprintf("blk%04u.dat", nFile);
2573     return GetDataDir() / strBlockFn;
2574 }
2575
2576 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
2577 {
2578     if ((nFile < 1) || (nFile == (unsigned int) -1))
2579         return NULL;
2580     FILE* file = fopen(BlockFilePath(nFile).string().c_str(), pszMode);
2581     if (!file)
2582         return NULL;
2583     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
2584     {
2585         if (fseek(file, nBlockPos, SEEK_SET) != 0)
2586         {
2587             fclose(file);
2588             return NULL;
2589         }
2590     }
2591     return file;
2592 }
2593
2594 static unsigned int nCurrentBlockFile = 1;
2595
2596 FILE* AppendBlockFile(unsigned int& nFileRet)
2597 {
2598     nFileRet = 0;
2599     loop
2600     {
2601         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
2602         if (!file)
2603             return NULL;
2604         if (fseek(file, 0, SEEK_END) != 0)
2605             return NULL;
2606         // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
2607         if (ftell(file) < (long)(0x7F000000 - MAX_SIZE))
2608         {
2609             nFileRet = nCurrentBlockFile;
2610             return file;
2611         }
2612         fclose(file);
2613         nCurrentBlockFile++;
2614     }
2615 }
2616
2617 bool LoadBlockIndex(bool fAllowNew)
2618 {
2619     if (fTestNet)
2620     {
2621         pchMessageStart[0] = 0xcd;
2622         pchMessageStart[1] = 0xf2;
2623         pchMessageStart[2] = 0xc0;
2624         pchMessageStart[3] = 0xef;
2625
2626         bnProofOfWorkLimit = bnProofOfWorkLimitTestNet; // 16 bits PoW target limit for testnet
2627         nStakeMinAge = 2 * 60 * 60; // test net min age is 2 hours
2628         nModifierInterval = 20 * 60; // test modifier interval is 20 minutes
2629         nCoinbaseMaturity = 10; // test maturity is 10 blocks
2630         nStakeTargetSpacing = 5 * 60; // test block spacing is 5 minutes
2631     }
2632
2633     //
2634     // Load block index
2635     //
2636     CTxDB txdb("cr");
2637     if (!txdb.LoadBlockIndex())
2638         return false;
2639     txdb.Close();
2640
2641     //
2642     // Init with genesis block
2643     //
2644     if (mapBlockIndex.empty())
2645     {
2646         if (!fAllowNew)
2647             return false;
2648
2649         // Genesis block
2650
2651         // MainNet:
2652
2653         //CBlock(hash=00000a060336cbb72fe969666d337b87198b1add2abaa59cca226820b32933a4, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1e0fffff, nNonce=1575379, vtx=1, vchBlockSig=)
2654         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2655         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2656         //    CTxOut(empty)
2657         //  vMerkleTree: 4cb33b3b6a
2658
2659         // TestNet:
2660
2661         //CBlock(hash=0000c763e402f2436da9ed36c7286f62c3f6e5dbafce9ff289bd43d7459327eb, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1f00ffff, nNonce=46534, vtx=1, vchBlockSig=)
2662         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2663         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2664         //    CTxOut(empty)
2665         //  vMerkleTree: 4cb33b3b6a
2666
2667         const char* pszTimestamp = "https://bitcointalk.org/index.php?topic=134179.msg1502196#msg1502196";
2668         CTransaction txNew;
2669         txNew.nTime = 1360105017;
2670         txNew.vin.resize(1);
2671         txNew.vout.resize(1);
2672         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(9999) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
2673         txNew.vout[0].SetEmpty();
2674         CBlock block;
2675         block.vtx.push_back(txNew);
2676         block.hashPrevBlock = 0;
2677         block.hashMerkleRoot = block.BuildMerkleTree();
2678         block.nVersion = 1;
2679         block.nTime    = 1360105017;
2680         block.nBits    = bnProofOfWorkLimit.GetCompact();
2681         block.nNonce   = !fTestNet ? 1575379 : 46534;
2682
2683         //// debug print
2684         assert(block.hashMerkleRoot == uint256("0x4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b"));
2685         block.print();
2686         assert(block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet));
2687         assert(block.CheckBlock());
2688
2689         // Start new block file
2690         unsigned int nFile;
2691         unsigned int nBlockPos;
2692         if (!block.WriteToDisk(nFile, nBlockPos))
2693             return error("LoadBlockIndex() : writing genesis block to disk failed");
2694         if (!block.AddToBlockIndex(nFile, nBlockPos))
2695             return error("LoadBlockIndex() : genesis block not accepted");
2696
2697         // ppcoin: initialize synchronized checkpoint
2698         if (!Checkpoints::WriteSyncCheckpoint((!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)))
2699             return error("LoadBlockIndex() : failed to init sync checkpoint");
2700     }
2701
2702     // ppcoin: if checkpoint master key changed must reset sync-checkpoint
2703     {
2704         CTxDB txdb;
2705         string strPubKey = "";
2706         if (!txdb.ReadCheckpointPubKey(strPubKey) || strPubKey != CSyncCheckpoint::strMasterPubKey)
2707         {
2708             // write checkpoint master key to db
2709             txdb.TxnBegin();
2710             if (!txdb.WriteCheckpointPubKey(CSyncCheckpoint::strMasterPubKey))
2711                 return error("LoadBlockIndex() : failed to write new checkpoint master key to db");
2712             if (!txdb.TxnCommit())
2713                 return error("LoadBlockIndex() : failed to commit new checkpoint master key to db");
2714             if ((!fTestNet) && !Checkpoints::ResetSyncCheckpoint())
2715                 return error("LoadBlockIndex() : failed to reset sync-checkpoint");
2716         }
2717         txdb.Close();
2718     }
2719
2720     return true;
2721 }
2722
2723
2724
2725 void PrintBlockTree()
2726 {
2727     // pre-compute tree structure
2728     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
2729     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
2730     {
2731         CBlockIndex* pindex = (*mi).second;
2732         mapNext[pindex->pprev].push_back(pindex);
2733         // test
2734         //while (rand() % 3 == 0)
2735         //    mapNext[pindex->pprev].push_back(pindex);
2736     }
2737
2738     vector<pair<int, CBlockIndex*> > vStack;
2739     vStack.push_back(make_pair(0, pindexGenesisBlock));
2740
2741     int nPrevCol = 0;
2742     while (!vStack.empty())
2743     {
2744         int nCol = vStack.back().first;
2745         CBlockIndex* pindex = vStack.back().second;
2746         vStack.pop_back();
2747
2748         // print split or gap
2749         if (nCol > nPrevCol)
2750         {
2751             for (int i = 0; i < nCol-1; i++)
2752                 printf("| ");
2753             printf("|\\\n");
2754         }
2755         else if (nCol < nPrevCol)
2756         {
2757             for (int i = 0; i < nCol; i++)
2758                 printf("| ");
2759             printf("|\n");
2760        }
2761         nPrevCol = nCol;
2762
2763         // print columns
2764         for (int i = 0; i < nCol; i++)
2765             printf("| ");
2766
2767         // print item
2768         CBlock block;
2769         block.ReadFromDisk(pindex);
2770         printf("%d (%u,%u) %s  %08x  %s  mint %7s  tx %"PRIszu"",
2771             pindex->nHeight,
2772             pindex->nFile,
2773             pindex->nBlockPos,
2774             block.GetHash().ToString().c_str(),
2775             block.nBits,
2776             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
2777             FormatMoney(pindex->nMint).c_str(),
2778             block.vtx.size());
2779
2780         PrintWallets(block);
2781
2782         // put the main time-chain first
2783         vector<CBlockIndex*>& vNext = mapNext[pindex];
2784         for (unsigned int i = 0; i < vNext.size(); i++)
2785         {
2786             if (vNext[i]->pnext)
2787             {
2788                 swap(vNext[0], vNext[i]);
2789                 break;
2790             }
2791         }
2792
2793         // iterate children
2794         for (unsigned int i = 0; i < vNext.size(); i++)
2795             vStack.push_back(make_pair(nCol+i, vNext[i]));
2796     }
2797 }
2798
2799 bool LoadExternalBlockFile(FILE* fileIn)
2800 {
2801     int64 nStart = GetTimeMillis();
2802
2803     int nLoaded = 0;
2804     {
2805         LOCK(cs_main);
2806         try {
2807             CAutoFile blkdat(fileIn, SER_DISK, CLIENT_VERSION);
2808             unsigned int nPos = 0;
2809             while (nPos != (unsigned int)-1 && blkdat.good() && !fRequestShutdown)
2810             {
2811                 unsigned char pchData[65536];
2812                 do {
2813                     fseek(blkdat, nPos, SEEK_SET);
2814                     int nRead = fread(pchData, 1, sizeof(pchData), blkdat);
2815                     if (nRead <= 8)
2816                     {
2817                         nPos = (unsigned int)-1;
2818                         break;
2819                     }
2820                     void* nFind = memchr(pchData, pchMessageStart[0], nRead+1-sizeof(pchMessageStart));
2821                     if (nFind)
2822                     {
2823                         if (memcmp(nFind, pchMessageStart, sizeof(pchMessageStart))==0)
2824                         {
2825                             nPos += ((unsigned char*)nFind - pchData) + sizeof(pchMessageStart);
2826                             break;
2827                         }
2828                         nPos += ((unsigned char*)nFind - pchData) + 1;
2829                     }
2830                     else
2831                         nPos += sizeof(pchData) - sizeof(pchMessageStart) + 1;
2832                 } while(!fRequestShutdown);
2833                 if (nPos == (unsigned int)-1)
2834                     break;
2835                 fseek(blkdat, nPos, SEEK_SET);
2836                 unsigned int nSize;
2837                 blkdat >> nSize;
2838                 if (nSize > 0 && nSize <= MAX_BLOCK_SIZE)
2839                 {
2840                     CBlock block;
2841                     blkdat >> block;
2842                     if (ProcessBlock(NULL,&block))
2843                     {
2844                         nLoaded++;
2845                         nPos += 4 + nSize;
2846                     }
2847                 }
2848             }
2849         }
2850         catch (std::exception &e) {
2851             printf("%s() : Deserialize or I/O error caught during load\n",
2852                    __PRETTY_FUNCTION__);
2853         }
2854     }
2855     printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
2856     return nLoaded > 0;
2857 }
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867 //////////////////////////////////////////////////////////////////////////////
2868 //
2869 // CAlert
2870 //
2871
2872 extern map<uint256, CAlert> mapAlerts;
2873 extern CCriticalSection cs_mapAlerts;
2874
2875 static string strMintMessage = "Info: Minting suspended due to locked wallet.";
2876 static string strMintWarning;
2877
2878 string GetWarnings(string strFor)
2879 {
2880     int nPriority = 0;
2881     string strStatusBar;
2882     string strRPC;
2883
2884     if (GetBoolArg("-testsafemode"))
2885         strRPC = "test";
2886
2887     // ppcoin: wallet lock warning for minting
2888     if (strMintWarning != "")
2889     {
2890         nPriority = 0;
2891         strStatusBar = strMintWarning;
2892     }
2893
2894     // Misc warnings like out of disk space and clock is wrong
2895     if (strMiscWarning != "")
2896     {
2897         nPriority = 1000;
2898         strStatusBar = strMiscWarning;
2899     }
2900
2901     // ppcoin: should not enter safe mode for longer invalid chain
2902     // ppcoin: if sync-checkpoint is too old do not enter safe mode
2903     if (Checkpoints::IsSyncCheckpointTooOld(60 * 60 * 24 * 10) && !fTestNet && !IsInitialBlockDownload())
2904     {
2905         nPriority = 100;
2906         strStatusBar = "WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.";
2907     }
2908
2909     // ppcoin: if detected invalid checkpoint enter safe mode
2910     if (Checkpoints::hashInvalidCheckpoint != 0)
2911     {
2912         nPriority = 3000;
2913         strStatusBar = strRPC = "WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers.";
2914     }
2915
2916     // Alerts
2917     {
2918         LOCK(cs_mapAlerts);
2919         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
2920         {
2921             const CAlert& alert = item.second;
2922             if (alert.AppliesToMe() && alert.nPriority > nPriority)
2923             {
2924                 nPriority = alert.nPriority;
2925                 strStatusBar = alert.strStatusBar;
2926                 if (nPriority > 1000)
2927                     strRPC = strStatusBar;  // ppcoin: safe mode for high alert
2928             }
2929         }
2930     }
2931
2932     if (strFor == "statusbar")
2933         return strStatusBar;
2934     else if (strFor == "rpc")
2935         return strRPC;
2936     assert(!"GetWarnings() : invalid parameter");
2937     return "error";
2938 }
2939
2940
2941
2942
2943
2944
2945
2946
2947 //////////////////////////////////////////////////////////////////////////////
2948 //
2949 // Messages
2950 //
2951
2952
2953 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
2954 {
2955     switch (inv.type)
2956     {
2957     case MSG_TX:
2958         {
2959         bool txInMap = false;
2960             {
2961             LOCK(mempool.cs);
2962             txInMap = (mempool.exists(inv.hash));
2963             }
2964         return txInMap ||
2965                mapOrphanTransactions.count(inv.hash) ||
2966                txdb.ContainsTx(inv.hash);
2967         }
2968
2969     case MSG_BLOCK:
2970         return mapBlockIndex.count(inv.hash) ||
2971                mapOrphanBlocks.count(inv.hash);
2972     }
2973     // Don't know what it is, just say we already got one
2974     return true;
2975 }
2976
2977
2978
2979
2980 // The message start string is designed to be unlikely to occur in normal data.
2981 // The characters are rarely used upper ASCII, not valid as UTF-8, and produce
2982 // a large 4-byte int at any alignment.
2983 unsigned char pchMessageStart[4] = { 0xe4, 0xe8, 0xe9, 0xe5 };
2984
2985 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
2986 {
2987     static map<CService, CPubKey> mapReuseKey;
2988     RandAddSeedPerfmon();
2989     if (fDebug)
2990         printf("received: %s (%"PRIszu" bytes)\n", strCommand.c_str(), vRecv.size());
2991     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
2992     {
2993         printf("dropmessagestest DROPPING RECV MESSAGE\n");
2994         return true;
2995     }
2996
2997
2998
2999
3000
3001     if (strCommand == "version")
3002     {
3003         // Each connection can only send one version message
3004         if (pfrom->nVersion != 0)
3005         {
3006             pfrom->Misbehaving(1);
3007             return false;
3008         }
3009
3010         int64 nTime;
3011         CAddress addrMe;
3012         CAddress addrFrom;
3013         uint64 nNonce = 1;
3014         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
3015         if (pfrom->nVersion < MIN_PROTO_VERSION)
3016         {
3017             // Since February 20, 2012, the protocol is initiated at version 209,
3018             // and earlier versions are no longer supported
3019             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
3020             pfrom->fDisconnect = true;
3021             return false;
3022         }
3023
3024         if (pfrom->nVersion == 10300)
3025             pfrom->nVersion = 300;
3026         if (!vRecv.empty())
3027             vRecv >> addrFrom >> nNonce;
3028         if (!vRecv.empty())
3029             vRecv >> pfrom->strSubVer;
3030         if (!vRecv.empty())
3031             vRecv >> pfrom->nStartingHeight;
3032
3033         if (pfrom->fInbound && addrMe.IsRoutable())
3034         {
3035             pfrom->addrLocal = addrMe;
3036             SeenLocal(addrMe);
3037         }
3038
3039         // Disconnect if we connected to ourself
3040         if (nNonce == nLocalHostNonce && nNonce > 1)
3041         {
3042             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
3043             pfrom->fDisconnect = true;
3044             return true;
3045         }
3046
3047         // ppcoin: record my external IP reported by peer
3048         if (addrFrom.IsRoutable() && addrMe.IsRoutable())
3049             addrSeenByPeer = addrMe;
3050
3051         // Be shy and don't send version until we hear
3052         if (pfrom->fInbound)
3053             pfrom->PushVersion();
3054
3055         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
3056
3057         AddTimeData(pfrom->addr, nTime);
3058
3059         // Change version
3060         pfrom->PushMessage("verack");
3061         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3062
3063         if (!pfrom->fInbound)
3064         {
3065             // Advertise our address
3066             if (!fNoListen && !IsInitialBlockDownload())
3067             {
3068                 CAddress addr = GetLocalAddress(&pfrom->addr);
3069                 if (addr.IsRoutable())
3070                     pfrom->PushAddress(addr);
3071             }
3072
3073             // Get recent addresses
3074             if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000)
3075             {
3076                 pfrom->PushMessage("getaddr");
3077                 pfrom->fGetAddr = true;
3078             }
3079             addrman.Good(pfrom->addr);
3080         } else {
3081             if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
3082             {
3083                 addrman.Add(addrFrom, addrFrom);
3084                 addrman.Good(addrFrom);
3085             }
3086         }
3087
3088         // Ask the first connected node for block updates
3089         static int nAskedForBlocks = 0;
3090         if (!pfrom->fClient && !pfrom->fOneShot &&
3091             (pfrom->nStartingHeight > (nBestHeight - 144)) &&
3092             (pfrom->nVersion < NOBLKS_VERSION_START ||
3093              pfrom->nVersion >= NOBLKS_VERSION_END) &&
3094              (nAskedForBlocks < 1 || vNodes.size() <= 1))
3095         {
3096             nAskedForBlocks++;
3097             pfrom->PushGetBlocks(pindexBest, uint256(0));
3098         }
3099
3100         // Relay alerts
3101         {
3102             LOCK(cs_mapAlerts);
3103             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3104                 item.second.RelayTo(pfrom);
3105         }
3106
3107         // ppcoin: relay sync-checkpoint
3108         {
3109             LOCK(Checkpoints::cs_hashSyncCheckpoint);
3110             if (!Checkpoints::checkpointMessage.IsNull())
3111                 Checkpoints::checkpointMessage.RelayTo(pfrom);
3112         }
3113
3114         pfrom->fSuccessfullyConnected = true;
3115
3116         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());
3117
3118         cPeerBlockCounts.input(pfrom->nStartingHeight);
3119
3120         // ppcoin: ask for pending sync-checkpoint if any
3121         if (!IsInitialBlockDownload())
3122             Checkpoints::AskForPendingSyncCheckpoint(pfrom);
3123     }
3124
3125
3126     else if (pfrom->nVersion == 0)
3127     {
3128         // Must have a version message before anything else
3129         pfrom->Misbehaving(1);
3130         return false;
3131     }
3132
3133
3134     else if (strCommand == "verack")
3135     {
3136         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3137     }
3138
3139
3140     else if (strCommand == "addr")
3141     {
3142         vector<CAddress> vAddr;
3143         vRecv >> vAddr;
3144
3145         // Don't want addr from older versions unless seeding
3146         if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000)
3147             return true;
3148         if (vAddr.size() > 1000)
3149         {
3150             pfrom->Misbehaving(20);
3151             return error("message addr size() = %"PRIszu"", vAddr.size());
3152         }
3153
3154         // Store the new addresses
3155         vector<CAddress> vAddrOk;
3156         int64 nNow = GetAdjustedTime();
3157         int64 nSince = nNow - 10 * 60;
3158         BOOST_FOREACH(CAddress& addr, vAddr)
3159         {
3160             if (fShutdown)
3161                 return true;
3162             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
3163                 addr.nTime = nNow - 5 * 24 * 60 * 60;
3164             pfrom->AddAddressKnown(addr);
3165             bool fReachable = IsReachable(addr);
3166             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
3167             {
3168                 // Relay to a limited number of other nodes
3169                 {
3170                     LOCK(cs_vNodes);
3171                     // Use deterministic randomness to send to the same nodes for 24 hours
3172                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
3173                     static uint256 hashSalt;
3174                     if (hashSalt == 0)
3175                         hashSalt = GetRandHash();
3176                     uint64 hashAddr = addr.GetHash();
3177                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
3178                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3179                     multimap<uint256, CNode*> mapMix;
3180                     BOOST_FOREACH(CNode* pnode, vNodes)
3181                     {
3182                         if (pnode->nVersion < CADDR_TIME_VERSION)
3183                             continue;
3184                         unsigned int nPointer;
3185                         memcpy(&nPointer, &pnode, sizeof(nPointer));
3186                         uint256 hashKey = hashRand ^ nPointer;
3187                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
3188                         mapMix.insert(make_pair(hashKey, pnode));
3189                     }
3190                     int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
3191                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
3192                         ((*mi).second)->PushAddress(addr);
3193                 }
3194             }
3195             // Do not store addresses outside our network
3196             if (fReachable)
3197                 vAddrOk.push_back(addr);
3198         }
3199         addrman.Add(vAddrOk, pfrom->addr, 2 * 60 * 60);
3200         if (vAddr.size() < 1000)
3201             pfrom->fGetAddr = false;
3202         if (pfrom->fOneShot)
3203             pfrom->fDisconnect = true;
3204     }
3205
3206
3207     else if (strCommand == "inv")
3208     {
3209         vector<CInv> vInv;
3210         vRecv >> vInv;
3211         if (vInv.size() > MAX_INV_SZ)
3212         {
3213             pfrom->Misbehaving(20);
3214             return error("message inv size() = %"PRIszu"", vInv.size());
3215         }
3216
3217         // find last block in inv vector
3218         unsigned int nLastBlock = (unsigned int)(-1);
3219         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) {
3220             if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) {
3221                 nLastBlock = vInv.size() - 1 - nInv;
3222                 break;
3223             }
3224         }
3225         CTxDB txdb("r");
3226         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
3227         {
3228             const CInv &inv = vInv[nInv];
3229
3230             if (fShutdown)
3231                 return true;
3232             pfrom->AddInventoryKnown(inv);
3233
3234             bool fAlreadyHave = AlreadyHave(txdb, inv);
3235             if (fDebug)
3236                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
3237
3238             if (!fAlreadyHave)
3239                 pfrom->AskFor(inv);
3240             else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) {
3241                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
3242             } else if (nInv == nLastBlock) {
3243                 // In case we are on a very long side-chain, it is possible that we already have
3244                 // the last block in an inv bundle sent in response to getblocks. Try to detect
3245                 // this situation and push another getblocks to continue.
3246                 pfrom->PushGetBlocks(mapBlockIndex[inv.hash], uint256(0));
3247                 if (fDebug)
3248                     printf("force request: %s\n", inv.ToString().c_str());
3249             }
3250
3251             // Track requests for our stuff
3252             Inventory(inv.hash);
3253         }
3254     }
3255
3256
3257     else if (strCommand == "getdata")
3258     {
3259         vector<CInv> vInv;
3260         vRecv >> vInv;
3261         if (vInv.size() > MAX_INV_SZ)
3262         {
3263             pfrom->Misbehaving(20);
3264             return error("message getdata size() = %"PRIszu"", vInv.size());
3265         }
3266
3267         if (fDebugNet || (vInv.size() != 1))
3268             printf("received getdata (%"PRIszu" invsz)\n", vInv.size());
3269
3270         BOOST_FOREACH(const CInv& inv, vInv)
3271         {
3272             if (fShutdown)
3273                 return true;
3274             if (fDebugNet || (vInv.size() == 1))
3275                 printf("received getdata for: %s\n", inv.ToString().c_str());
3276
3277             if (inv.type == MSG_BLOCK)
3278             {
3279                 // Send block from disk
3280                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
3281                 if (mi != mapBlockIndex.end())
3282                 {
3283                     CBlock block;
3284                     block.ReadFromDisk((*mi).second);
3285                     pfrom->PushMessage("block", block);
3286
3287                     // Trigger them to send a getblocks request for the next batch of inventory
3288                     if (inv.hash == pfrom->hashContinue)
3289                     {
3290                         // ppcoin: send latest proof-of-work block to allow the
3291                         // download node to accept as orphan (proof-of-stake 
3292                         // block might be rejected by stake connection check)
3293                         vector<CInv> vInv;
3294                         vInv.push_back(CInv(MSG_BLOCK, GetLastBlockIndex(pindexBest, false)->GetBlockHash()));
3295                         pfrom->PushMessage("inv", vInv);
3296                         pfrom->hashContinue = 0;
3297                     }
3298                 }
3299             }
3300             else if (inv.IsKnownType())
3301             {
3302                 // Send stream from relay memory
3303                 bool pushed = false;
3304                 {
3305                     LOCK(cs_mapRelay);
3306                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
3307                     if (mi != mapRelay.end()) {
3308                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
3309                         pushed = true;
3310                     }
3311                 }
3312                 if (!pushed && inv.type == MSG_TX) {
3313                     LOCK(mempool.cs);
3314                     if (mempool.exists(inv.hash)) {
3315                         CTransaction tx = mempool.lookup(inv.hash);
3316                         CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
3317                         ss.reserve(1000);
3318                         ss << tx;
3319                         pfrom->PushMessage("tx", ss);
3320                     }
3321                 }
3322             }
3323
3324             // Track requests for our stuff
3325             Inventory(inv.hash);
3326         }
3327     }
3328
3329
3330     else if (strCommand == "getblocks")
3331     {
3332         CBlockLocator locator;
3333         uint256 hashStop;
3334         vRecv >> locator >> hashStop;
3335
3336         // Find the last block the caller has in the main chain
3337         CBlockIndex* pindex = locator.GetBlockIndex();
3338
3339         // Send the rest of the chain
3340         if (pindex)
3341             pindex = pindex->pnext;
3342         int nLimit = 500;
3343         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
3344         for (; pindex; pindex = pindex->pnext)
3345         {
3346             if (pindex->GetBlockHash() == hashStop)
3347             {
3348                 printf("  getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3349                 // ppcoin: tell downloading node about the latest block if it's
3350                 // without risk being rejected due to stake connection check
3351                 if (hashStop != hashBestChain && pindex->GetBlockTime() + nStakeMinAge > pindexBest->GetBlockTime())
3352                     pfrom->PushInventory(CInv(MSG_BLOCK, hashBestChain));
3353                 break;
3354             }
3355             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
3356             if (--nLimit <= 0)
3357             {
3358                 // When this block is requested, we'll send an inv that'll make them
3359                 // getblocks the next batch of inventory.
3360                 printf("  getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3361                 pfrom->hashContinue = pindex->GetBlockHash();
3362                 break;
3363             }
3364         }
3365     }
3366     else if (strCommand == "checkpoint")
3367     {
3368         CSyncCheckpoint checkpoint;
3369         vRecv >> checkpoint;
3370
3371         if (checkpoint.ProcessSyncCheckpoint(pfrom))
3372         {
3373             // Relay
3374             pfrom->hashCheckpointKnown = checkpoint.hashCheckpoint;
3375             LOCK(cs_vNodes);
3376             BOOST_FOREACH(CNode* pnode, vNodes)
3377                 checkpoint.RelayTo(pnode);
3378         }
3379     }
3380
3381     else if (strCommand == "getheaders")
3382     {
3383         CBlockLocator locator;
3384         uint256 hashStop;
3385         vRecv >> locator >> hashStop;
3386
3387         CBlockIndex* pindex = NULL;
3388         if (locator.IsNull())
3389         {
3390             // If locator is null, return the hashStop block
3391             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
3392             if (mi == mapBlockIndex.end())
3393                 return true;
3394             pindex = (*mi).second;
3395         }
3396         else
3397         {
3398             // Find the last block the caller has in the main chain
3399             pindex = locator.GetBlockIndex();
3400             if (pindex)
3401                 pindex = pindex->pnext;
3402         }
3403
3404         vector<CBlock> vHeaders;
3405         int nLimit = 2000;
3406         printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str());
3407         for (; pindex; pindex = pindex->pnext)
3408         {
3409             vHeaders.push_back(pindex->GetBlockHeader());
3410             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
3411                 break;
3412         }
3413         pfrom->PushMessage("headers", vHeaders);
3414     }
3415
3416
3417     else if (strCommand == "tx")
3418     {
3419         vector<uint256> vWorkQueue;
3420         vector<uint256> vEraseQueue;
3421         CDataStream vMsg(vRecv);
3422         CTxDB txdb("r");
3423         CTransaction tx;
3424         vRecv >> tx;
3425
3426         CInv inv(MSG_TX, tx.GetHash());
3427         pfrom->AddInventoryKnown(inv);
3428
3429         bool fMissingInputs = false;
3430         if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs))
3431         {
3432             SyncWithWallets(tx, NULL, true);
3433             RelayMessage(inv, vMsg);
3434             mapAlreadyAskedFor.erase(inv);
3435             vWorkQueue.push_back(inv.hash);
3436             vEraseQueue.push_back(inv.hash);
3437
3438             // Recursively process any orphan transactions that depended on this one
3439             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
3440             {
3441                 uint256 hashPrev = vWorkQueue[i];
3442                 for (map<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev[hashPrev].begin();
3443                      mi != mapOrphanTransactionsByPrev[hashPrev].end();
3444                      ++mi)
3445                 {
3446                     const CDataStream& vMsg = *((*mi).second);
3447                     CTransaction tx;
3448                     CDataStream(vMsg) >> tx;
3449                     CInv inv(MSG_TX, tx.GetHash());
3450                     bool fMissingInputs2 = false;
3451
3452                     if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs2))
3453                     {
3454                         printf("   accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
3455                         SyncWithWallets(tx, NULL, true);
3456                         RelayMessage(inv, vMsg);
3457                         mapAlreadyAskedFor.erase(inv);
3458                         vWorkQueue.push_back(inv.hash);
3459                         vEraseQueue.push_back(inv.hash);
3460                     }
3461                     else if (!fMissingInputs2)
3462                     {
3463                         // invalid orphan
3464                         vEraseQueue.push_back(inv.hash);
3465                         printf("   removed invalid orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
3466                     }
3467                 }
3468             }
3469
3470             BOOST_FOREACH(uint256 hash, vEraseQueue)
3471                 EraseOrphanTx(hash);
3472         }
3473         else if (fMissingInputs)
3474         {
3475             AddOrphanTx(vMsg);
3476
3477             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
3478             unsigned int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
3479             if (nEvicted > 0)
3480                 printf("mapOrphan overflow, removed %u tx\n", nEvicted);
3481         }
3482         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
3483     }
3484
3485
3486     else if (strCommand == "block")
3487     {
3488         CBlock block;
3489         vRecv >> block;
3490
3491         printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
3492         // block.print();
3493
3494         CInv inv(MSG_BLOCK, block.GetHash());
3495         pfrom->AddInventoryKnown(inv);
3496
3497         if (ProcessBlock(pfrom, &block))
3498             mapAlreadyAskedFor.erase(inv);
3499         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
3500     }
3501
3502
3503     else if (strCommand == "getaddr")
3504     {
3505         pfrom->vAddrToSend.clear();
3506         vector<CAddress> vAddr = addrman.GetAddr();
3507         BOOST_FOREACH(const CAddress &addr, vAddr)
3508             pfrom->PushAddress(addr);
3509     }
3510
3511
3512     else if (strCommand == "mempool")
3513     {
3514         std::vector<uint256> vtxid;
3515         mempool.queryHashes(vtxid);
3516         vector<CInv> vInv;
3517         for (unsigned int i = 0; i < vtxid.size(); i++) {
3518             CInv inv(MSG_TX, vtxid[i]);
3519             vInv.push_back(inv);
3520             if (i == (MAX_INV_SZ - 1))
3521                     break;
3522         }
3523         if (vInv.size() > 0)
3524             pfrom->PushMessage("inv", vInv);
3525     }
3526
3527
3528     else if (strCommand == "checkorder")
3529     {
3530         uint256 hashReply;
3531         vRecv >> hashReply;
3532
3533         if (!GetBoolArg("-allowreceivebyip"))
3534         {
3535             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
3536             return true;
3537         }
3538
3539         CWalletTx order;
3540         vRecv >> order;
3541
3542         /// we have a chance to check the order here
3543
3544         // Keep giving the same key to the same ip until they use it
3545         if (!mapReuseKey.count(pfrom->addr))
3546             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
3547
3548         // Send back approval of order and pubkey to use
3549         CScript scriptPubKey;
3550         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
3551         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
3552     }
3553
3554
3555     else if (strCommand == "reply")
3556     {
3557         uint256 hashReply;
3558         vRecv >> hashReply;
3559
3560         CRequestTracker tracker;
3561         {
3562             LOCK(pfrom->cs_mapRequests);
3563             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
3564             if (mi != pfrom->mapRequests.end())
3565             {
3566                 tracker = (*mi).second;
3567                 pfrom->mapRequests.erase(mi);
3568             }
3569         }
3570         if (!tracker.IsNull())
3571             tracker.fn(tracker.param1, vRecv);
3572     }
3573
3574
3575     else if (strCommand == "ping")
3576     {
3577         if (pfrom->nVersion > BIP0031_VERSION)
3578         {
3579             uint64 nonce = 0;
3580             vRecv >> nonce;
3581             // Echo the message back with the nonce. This allows for two useful features:
3582             //
3583             // 1) A remote node can quickly check if the connection is operational
3584             // 2) Remote nodes can measure the latency of the network thread. If this node
3585             //    is overloaded it won't respond to pings quickly and the remote node can
3586             //    avoid sending us more work, like chain download requests.
3587             //
3588             // The nonce stops the remote getting confused between different pings: without
3589             // it, if the remote node sends a ping once per second and this node takes 5
3590             // seconds to respond to each, the 5th ping the remote sends would appear to
3591             // return very quickly.
3592             pfrom->PushMessage("pong", nonce);
3593         }
3594     }
3595
3596
3597     else if (strCommand == "alert")
3598     {
3599         CAlert alert;
3600         vRecv >> alert;
3601
3602         uint256 alertHash = alert.GetHash();
3603         if (pfrom->setKnown.count(alertHash) == 0)
3604         {
3605             if (alert.ProcessAlert())
3606             {
3607                 // Relay
3608                 pfrom->setKnown.insert(alertHash);
3609                 {
3610                     LOCK(cs_vNodes);
3611                     BOOST_FOREACH(CNode* pnode, vNodes)
3612                         alert.RelayTo(pnode);
3613                 }
3614             }
3615             else {
3616                 // Small DoS penalty so peers that send us lots of
3617                 // duplicate/expired/invalid-signature/whatever alerts
3618                 // eventually get banned.
3619                 // This isn't a Misbehaving(100) (immediate ban) because the
3620                 // peer might be an older or different implementation with
3621                 // a different signature key, etc.
3622                 pfrom->Misbehaving(10);
3623             }
3624         }
3625     }
3626
3627
3628     else
3629     {
3630         // Ignore unknown commands for extensibility
3631     }
3632
3633
3634     // Update the last seen time for this node's address
3635     if (pfrom->fNetworkNode)
3636         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
3637             AddressCurrentlyConnected(pfrom->addr);
3638
3639
3640     return true;
3641 }
3642
3643 bool ProcessMessages(CNode* pfrom)
3644 {
3645     CDataStream& vRecv = pfrom->vRecv;
3646     if (vRecv.empty())
3647         return true;
3648     //if (fDebug)
3649     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
3650
3651     //
3652     // Message format
3653     //  (4) message start
3654     //  (12) command
3655     //  (4) size
3656     //  (4) checksum
3657     //  (x) data
3658     //
3659
3660     loop
3661     {
3662         // Don't bother if send buffer is too full to respond anyway
3663         if (pfrom->vSend.size() >= SendBufferSize())
3664             break;
3665
3666         // Scan for message start
3667         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
3668         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
3669         if (vRecv.end() - pstart < nHeaderSize)
3670         {
3671             if ((int)vRecv.size() > nHeaderSize)
3672             {
3673                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
3674                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
3675             }
3676             break;
3677         }
3678         if (pstart - vRecv.begin() > 0)
3679             printf("\n\nPROCESSMESSAGE SKIPPED %"PRIpdd" BYTES\n\n", pstart - vRecv.begin());
3680         vRecv.erase(vRecv.begin(), pstart);
3681
3682         // Read header
3683         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
3684         CMessageHeader hdr;
3685         vRecv >> hdr;
3686         if (!hdr.IsValid())
3687         {
3688             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
3689             continue;
3690         }
3691         string strCommand = hdr.GetCommand();
3692
3693         // Message size
3694         unsigned int nMessageSize = hdr.nMessageSize;
3695         if (nMessageSize > MAX_SIZE)
3696         {
3697             printf("ProcessMessages(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
3698             continue;
3699         }
3700         if (nMessageSize > vRecv.size())
3701         {
3702             // Rewind and wait for rest of message
3703             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
3704             break;
3705         }
3706
3707         // Checksum
3708         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
3709         unsigned int nChecksum = 0;
3710         memcpy(&nChecksum, &hash, sizeof(nChecksum));
3711         if (nChecksum != hdr.nChecksum)
3712         {
3713             printf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
3714                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
3715             continue;
3716         }
3717
3718         // Copy message to its own buffer
3719         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
3720         vRecv.ignore(nMessageSize);
3721
3722         // Process message
3723         bool fRet = false;
3724         try
3725         {
3726             {
3727                 LOCK(cs_main);
3728                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
3729             }
3730             if (fShutdown)
3731                 return true;
3732         }
3733         catch (std::ios_base::failure& e)
3734         {
3735             if (strstr(e.what(), "end of data"))
3736             {
3737                 // Allow exceptions from under-length message on vRecv
3738                 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());
3739             }
3740             else if (strstr(e.what(), "size too large"))
3741             {
3742                 // Allow exceptions from over-long size
3743                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
3744             }
3745             else
3746             {
3747                 PrintExceptionContinue(&e, "ProcessMessages()");
3748             }
3749         }
3750         catch (std::exception& e) {
3751             PrintExceptionContinue(&e, "ProcessMessages()");
3752         } catch (...) {
3753             PrintExceptionContinue(NULL, "ProcessMessages()");
3754         }
3755
3756         if (!fRet)
3757             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
3758     }
3759
3760     vRecv.Compact();
3761     return true;
3762 }
3763
3764
3765 bool SendMessages(CNode* pto, bool fSendTrickle)
3766 {
3767     TRY_LOCK(cs_main, lockMain);
3768     if (lockMain) {
3769         // Don't send anything until we get their version message
3770         if (pto->nVersion == 0)
3771             return true;
3772
3773         // Keep-alive ping. We send a nonce of zero because we don't use it anywhere
3774         // right now.
3775         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
3776             uint64 nonce = 0;
3777             if (pto->nVersion > BIP0031_VERSION)
3778                 pto->PushMessage("ping", nonce);
3779             else
3780                 pto->PushMessage("ping");
3781         }
3782
3783         // Resend wallet transactions that haven't gotten in a block yet
3784         ResendWalletTransactions();
3785
3786         // Address refresh broadcast
3787         static int64 nLastRebroadcast;
3788         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
3789         {
3790             {
3791                 LOCK(cs_vNodes);
3792                 BOOST_FOREACH(CNode* pnode, vNodes)
3793                 {
3794                     // Periodically clear setAddrKnown to allow refresh broadcasts
3795                     if (nLastRebroadcast)
3796                         pnode->setAddrKnown.clear();
3797
3798                     // Rebroadcast our address
3799                     if (!fNoListen)
3800                     {
3801                         CAddress addr = GetLocalAddress(&pnode->addr);
3802                         if (addr.IsRoutable())
3803                             pnode->PushAddress(addr);
3804                     }
3805                 }
3806             }
3807             nLastRebroadcast = GetTime();
3808         }
3809
3810         //
3811         // Message: addr
3812         //
3813         if (fSendTrickle)
3814         {
3815             vector<CAddress> vAddr;
3816             vAddr.reserve(pto->vAddrToSend.size());
3817             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
3818             {
3819                 // returns true if wasn't already contained in the set
3820                 if (pto->setAddrKnown.insert(addr).second)
3821                 {
3822                     vAddr.push_back(addr);
3823                     // receiver rejects addr messages larger than 1000
3824                     if (vAddr.size() >= 1000)
3825                     {
3826                         pto->PushMessage("addr", vAddr);
3827                         vAddr.clear();
3828                     }
3829                 }
3830             }
3831             pto->vAddrToSend.clear();
3832             if (!vAddr.empty())
3833                 pto->PushMessage("addr", vAddr);
3834         }
3835
3836
3837         //
3838         // Message: inventory
3839         //
3840         vector<CInv> vInv;
3841         vector<CInv> vInvWait;
3842         {
3843             LOCK(pto->cs_inventory);
3844             vInv.reserve(pto->vInventoryToSend.size());
3845             vInvWait.reserve(pto->vInventoryToSend.size());
3846             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
3847             {
3848                 if (pto->setInventoryKnown.count(inv))
3849                     continue;
3850
3851                 // trickle out tx inv to protect privacy
3852                 if (inv.type == MSG_TX && !fSendTrickle)
3853                 {
3854                     // 1/4 of tx invs blast to all immediately
3855                     static uint256 hashSalt;
3856                     if (hashSalt == 0)
3857                         hashSalt = GetRandHash();
3858                     uint256 hashRand = inv.hash ^ hashSalt;
3859                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3860                     bool fTrickleWait = ((hashRand & 3) != 0);
3861
3862                     // always trickle our own transactions
3863                     if (!fTrickleWait)
3864                     {
3865                         CWalletTx wtx;
3866                         if (GetTransaction(inv.hash, wtx))
3867                             if (wtx.fFromMe)
3868                                 fTrickleWait = true;
3869                     }
3870
3871                     if (fTrickleWait)
3872                     {
3873                         vInvWait.push_back(inv);
3874                         continue;
3875                     }
3876                 }
3877
3878                 // returns true if wasn't already contained in the set
3879                 if (pto->setInventoryKnown.insert(inv).second)
3880                 {
3881                     vInv.push_back(inv);
3882                     if (vInv.size() >= 1000)
3883                     {
3884                         pto->PushMessage("inv", vInv);
3885                         vInv.clear();
3886                     }
3887                 }
3888             }
3889             pto->vInventoryToSend = vInvWait;
3890         }
3891         if (!vInv.empty())
3892             pto->PushMessage("inv", vInv);
3893
3894
3895         //
3896         // Message: getdata
3897         //
3898         vector<CInv> vGetData;
3899         int64 nNow = GetTime() * 1000000;
3900         CTxDB txdb("r");
3901         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
3902         {
3903             const CInv& inv = (*pto->mapAskFor.begin()).second;
3904             if (!AlreadyHave(txdb, inv))
3905             {
3906                 if (fDebugNet)
3907                     printf("sending getdata: %s\n", inv.ToString().c_str());
3908                 vGetData.push_back(inv);
3909                 if (vGetData.size() >= 1000)
3910                 {
3911                     pto->PushMessage("getdata", vGetData);
3912                     vGetData.clear();
3913                 }
3914                 mapAlreadyAskedFor[inv] = nNow;
3915             }
3916             pto->mapAskFor.erase(pto->mapAskFor.begin());
3917         }
3918         if (!vGetData.empty())
3919             pto->PushMessage("getdata", vGetData);
3920
3921     }
3922     return true;
3923 }
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938 //////////////////////////////////////////////////////////////////////////////
3939 //
3940 // BitcoinMiner
3941 //
3942
3943 int static FormatHashBlocks(void* pbuffer, unsigned int len)
3944 {
3945     unsigned char* pdata = (unsigned char*)pbuffer;
3946     unsigned int blocks = 1 + ((len + 8) / 64);
3947     unsigned char* pend = pdata + 64 * blocks;
3948     memset(pdata + len, 0, 64 * blocks - len);
3949     pdata[len] = 0x80;
3950     unsigned int bits = len * 8;
3951     pend[-1] = (bits >> 0) & 0xff;
3952     pend[-2] = (bits >> 8) & 0xff;
3953     pend[-3] = (bits >> 16) & 0xff;
3954     pend[-4] = (bits >> 24) & 0xff;
3955     return blocks;
3956 }
3957
3958 static const unsigned int pSHA256InitState[8] =
3959 {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
3960
3961 void SHA256Transform(void* pstate, void* pinput, const void* pinit)
3962 {
3963     SHA256_CTX ctx;
3964     unsigned char data[64];
3965
3966     SHA256_Init(&ctx);
3967
3968     for (int i = 0; i < 16; i++)
3969         ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);
3970
3971     for (int i = 0; i < 8; i++)
3972         ctx.h[i] = ((uint32_t*)pinit)[i];
3973
3974     SHA256_Update(&ctx, data, sizeof(data));
3975     for (int i = 0; i < 8; i++)
3976         ((uint32_t*)pstate)[i] = ctx.h[i];
3977 }
3978
3979 // Some explaining would be appreciated
3980 class COrphan
3981 {
3982 public:
3983     CTransaction* ptx;
3984     set<uint256> setDependsOn;
3985     double dPriority;
3986     double dFeePerKb;
3987
3988     COrphan(CTransaction* ptxIn)
3989     {
3990         ptx = ptxIn;
3991         dPriority = dFeePerKb = 0;
3992     }
3993
3994     void print() const
3995     {
3996         printf("COrphan(hash=%s, dPriority=%.1f, dFeePerKb=%.1f)\n",
3997                ptx->GetHash().ToString().substr(0,10).c_str(), dPriority, dFeePerKb);
3998         BOOST_FOREACH(uint256 hash, setDependsOn)
3999             printf("   setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
4000     }
4001 };
4002
4003
4004 uint64 nLastBlockTx = 0;
4005 uint64 nLastBlockSize = 0;
4006 int64 nLastCoinStakeSearchInterval = 0;
4007  
4008 // We want to sort transactions by priority and fee, so:
4009 typedef boost::tuple<double, double, CTransaction*> TxPriority;
4010 class TxPriorityCompare
4011 {
4012     bool byFee;
4013 public:
4014     TxPriorityCompare(bool _byFee) : byFee(_byFee) { }
4015     bool operator()(const TxPriority& a, const TxPriority& b)
4016     {
4017         if (byFee)
4018         {
4019             if (a.get<1>() == b.get<1>())
4020                 return a.get<0>() < b.get<0>();
4021             return a.get<1>() < b.get<1>();
4022         }
4023         else
4024         {
4025             if (a.get<0>() == b.get<0>())
4026                 return a.get<1>() < b.get<1>();
4027             return a.get<0>() < b.get<0>();
4028         }
4029     }
4030 };
4031
4032 // CreateNewBlock:
4033 //   fProofOfStake: try (best effort) to make a proof-of-stake block
4034 CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake)
4035 {
4036     CReserveKey reservekey(pwallet);
4037
4038     // Create new block
4039     auto_ptr<CBlock> pblock(new CBlock());
4040     if (!pblock.get())
4041         return NULL;
4042
4043     // Create coinbase tx
4044     CTransaction txNew;
4045     txNew.vin.resize(1);
4046     txNew.vin[0].prevout.SetNull();
4047     txNew.vout.resize(1);
4048     txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
4049
4050     // Add our coinbase tx as first transaction
4051     pblock->vtx.push_back(txNew);
4052
4053     // Largest block you're willing to create:
4054     unsigned int nBlockMaxSize = GetArg("-blockmaxsize", MAX_BLOCK_SIZE_GEN/2);
4055     // Limit to betweeen 1K and MAX_BLOCK_SIZE-1K for sanity:
4056     nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize));
4057
4058     // Special compatibility rule before 20 Aug: limit size to 500,000 bytes:
4059     if (GetAdjustedTime() < LOCKS_SWITCH_TIME)
4060         nBlockMaxSize = std::min(nBlockMaxSize, (unsigned int)(MAX_BLOCK_SIZE_GEN));
4061
4062     // How much of the block should be dedicated to high-priority transactions,
4063     // included regardless of the fees they pay
4064     unsigned int nBlockPrioritySize = GetArg("-blockprioritysize", 27000);
4065     nBlockPrioritySize = std::min(nBlockMaxSize, nBlockPrioritySize);
4066
4067     // Minimum block size you want to create; block will be filled with free transactions
4068     // until there are no more or the block reaches this size:
4069     unsigned int nBlockMinSize = GetArg("-blockminsize", 0);
4070     nBlockMinSize = std::min(nBlockMaxSize, nBlockMinSize);
4071
4072     // Fee-per-kilobyte amount considered the same as "free"
4073     // Be careful setting this: if you set it to zero then
4074     // a transaction spammer can cheaply fill blocks using
4075     // 1-satoshi-fee transactions. It should be set above the real
4076     // cost to you of processing a transaction.
4077     int64 nMinTxFee = MIN_TX_FEE;
4078     if (mapArgs.count("-mintxfee"))
4079         ParseMoney(mapArgs["-mintxfee"], nMinTxFee);
4080
4081     // ppcoin: if coinstake available add coinstake tx
4082     static int64 nLastCoinStakeSearchTime = GetAdjustedTime();  // only initialized at startup
4083     CBlockIndex* pindexPrev = pindexBest;
4084
4085     if (fProofOfStake)  // attempt to find a coinstake
4086     {
4087         pblock->nBits = GetNextTargetRequired(pindexPrev, true);
4088         CTransaction txCoinStake;
4089         int64 nSearchTime = txCoinStake.nTime; // search to current time
4090         if (nSearchTime > nLastCoinStakeSearchTime)
4091         {
4092             if (pwallet->CreateCoinStake(*pwallet, pblock->nBits, nSearchTime-nLastCoinStakeSearchTime, txCoinStake))
4093             {
4094                 if (txCoinStake.nTime >= max(pindexPrev->GetMedianTimePast()+1, pindexPrev->GetBlockTime() - nMaxClockDrift))
4095                 {   // make sure coinstake would meet timestamp protocol
4096                     // as it would be the same as the block timestamp
4097                     pblock->vtx[0].vout[0].SetEmpty();
4098                     pblock->vtx[0].nTime = txCoinStake.nTime;
4099                     pblock->vtx.push_back(txCoinStake);
4100                 }
4101             }
4102             nLastCoinStakeSearchInterval = nSearchTime - nLastCoinStakeSearchTime;
4103             nLastCoinStakeSearchTime = nSearchTime;
4104         }
4105     }
4106
4107     pblock->nBits = GetNextTargetRequired(pindexPrev, pblock->IsProofOfStake());
4108
4109     // Collect memory pool transactions into the block
4110     int64 nFees = 0;
4111     {
4112         LOCK2(cs_main, mempool.cs);
4113         CBlockIndex* pindexPrev = pindexBest;
4114         CTxDB txdb("r");
4115
4116         // Priority order to process transactions
4117         list<COrphan> vOrphan; // list memory doesn't move
4118         map<uint256, vector<COrphan*> > mapDependers;
4119
4120         // This vector will be sorted into a priority queue:
4121         vector<TxPriority> vecPriority;
4122         vecPriority.reserve(mempool.mapTx.size());
4123         for (map<uint256, CTransaction>::iterator mi = mempool.mapTx.begin(); mi != mempool.mapTx.end(); ++mi)
4124         {
4125             CTransaction& tx = (*mi).second;
4126             if (tx.IsCoinBase() || tx.IsCoinStake() || !tx.IsFinal())
4127                 continue;
4128
4129             COrphan* porphan = NULL;
4130             double dPriority = 0;
4131             int64 nTotalIn = 0;
4132             bool fMissingInputs = false;
4133             BOOST_FOREACH(const CTxIn& txin, tx.vin)
4134             {
4135                 // Read prev transaction
4136                 CTransaction txPrev;
4137                 CTxIndex txindex;
4138                 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
4139                 {
4140                     // This should never happen; all transactions in the memory
4141                     // pool should connect to either transactions in the chain
4142                     // or other transactions in the memory pool.
4143                     if (!mempool.mapTx.count(txin.prevout.hash))
4144                     {
4145                         printf("ERROR: mempool transaction missing input\n");
4146                         if (fDebug) assert("mempool transaction missing input" == 0);
4147                         fMissingInputs = true;
4148                         if (porphan)
4149                             vOrphan.pop_back();
4150                         break;
4151                     }
4152
4153                     // Has to wait for dependencies
4154                     if (!porphan)
4155                     {
4156                         // Use list for automatic deletion
4157                         vOrphan.push_back(COrphan(&tx));
4158                         porphan = &vOrphan.back();
4159                     }
4160                     mapDependers[txin.prevout.hash].push_back(porphan);
4161                     porphan->setDependsOn.insert(txin.prevout.hash);
4162                     nTotalIn += mempool.mapTx[txin.prevout.hash].vout[txin.prevout.n].nValue;
4163                     continue;
4164                 }
4165                 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
4166                 nTotalIn += nValueIn;
4167
4168                 int nConf = txindex.GetDepthInMainChain();
4169                 dPriority += (double)nValueIn * nConf;
4170             }
4171             if (fMissingInputs) continue;
4172
4173             // Priority is sum(valuein * age) / txsize
4174             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
4175             dPriority /= nTxSize;
4176
4177             // This is a more accurate fee-per-kilobyte than is used by the client code, because the
4178             // client code rounds up the size to the nearest 1K. That's good, because it gives an
4179             // incentive to create smaller transactions.
4180             double dFeePerKb =  double(nTotalIn-tx.GetValueOut()) / (double(nTxSize)/1000.0);
4181
4182             if (porphan)
4183             {
4184                 porphan->dPriority = dPriority;
4185                 porphan->dFeePerKb = dFeePerKb;
4186             }
4187             else
4188                 vecPriority.push_back(TxPriority(dPriority, dFeePerKb, &(*mi).second));
4189         }
4190
4191         // Collect transactions into block
4192         map<uint256, CTxIndex> mapTestPool;
4193         uint64 nBlockSize = 1000;
4194         uint64 nBlockTx = 0;
4195         int nBlockSigOps = 100;
4196         bool fSortedByFee = (nBlockPrioritySize <= 0);
4197
4198         TxPriorityCompare comparer(fSortedByFee);
4199         std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
4200
4201         while (!vecPriority.empty())
4202         {
4203             // Take highest priority transaction off the priority queue:
4204             double dPriority = vecPriority.front().get<0>();
4205             double dFeePerKb = vecPriority.front().get<1>();
4206             CTransaction& tx = *(vecPriority.front().get<2>());
4207
4208             std::pop_heap(vecPriority.begin(), vecPriority.end(), comparer);
4209             vecPriority.pop_back();
4210
4211             // Size limits
4212             unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
4213             if (nBlockSize + nTxSize >= nBlockMaxSize)
4214                 continue;
4215
4216             // Legacy limits on sigOps:
4217             unsigned int nTxSigOps = tx.GetLegacySigOpCount();
4218             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
4219                 continue;
4220
4221             // Timestamp limit
4222             if (tx.nTime > GetAdjustedTime() || (pblock->IsProofOfStake() && tx.nTime > pblock->vtx[1].nTime))
4223                 continue;
4224
4225             // ppcoin: simplify transaction fee - allow free = false
4226             int64 nMinFee = tx.GetMinFee(nBlockSize, false, GMF_BLOCK);
4227
4228             // Skip free transactions if we're past the minimum block size:
4229             if (fSortedByFee && (dFeePerKb < nMinTxFee) && (nBlockSize + nTxSize >= nBlockMinSize))
4230                 continue;
4231
4232             // Prioritize by fee once past the priority size or we run out of high-priority
4233             // transactions:
4234             if (!fSortedByFee &&
4235                 ((nBlockSize + nTxSize >= nBlockPrioritySize) || (dPriority < COIN * 144 / 250)))
4236             {
4237                 fSortedByFee = true;
4238                 comparer = TxPriorityCompare(fSortedByFee);
4239                 std::make_heap(vecPriority.begin(), vecPriority.end(), comparer);
4240             }
4241
4242             // Connecting shouldn't fail due to dependency on other memory pool transactions
4243             // because we're already processing them in order of dependency
4244             map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
4245             MapPrevTx mapInputs;
4246             bool fInvalid;
4247             if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
4248                 continue;
4249
4250             int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
4251             if (nTxFees < nMinFee)
4252                 continue;
4253
4254             nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
4255             if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
4256                 continue;
4257
4258             if (!tx.ConnectInputs(txdb, mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
4259                 continue;
4260             mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
4261             swap(mapTestPool, mapTestPoolTmp);
4262
4263             // Added
4264             pblock->vtx.push_back(tx);
4265             nBlockSize += nTxSize;
4266             ++nBlockTx;
4267             nBlockSigOps += nTxSigOps;
4268             nFees += nTxFees;
4269
4270             if (fDebug && GetBoolArg("-printpriority"))
4271             {
4272                 printf("priority %.1f feeperkb %.1f txid %s\n",
4273                        dPriority, dFeePerKb, tx.GetHash().ToString().c_str());
4274             }
4275
4276             // Add transactions that depend on this one to the priority queue
4277             uint256 hash = tx.GetHash();
4278             if (mapDependers.count(hash))
4279             {
4280                 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
4281                 {
4282                     if (!porphan->setDependsOn.empty())
4283                     {
4284                         porphan->setDependsOn.erase(hash);
4285                         if (porphan->setDependsOn.empty())
4286                         {
4287                             vecPriority.push_back(TxPriority(porphan->dPriority, porphan->dFeePerKb, porphan->ptx));
4288                             std::push_heap(vecPriority.begin(), vecPriority.end(), comparer);
4289                         }
4290                     }
4291                 }
4292             }
4293         }
4294
4295         nLastBlockTx = nBlockTx;
4296         nLastBlockSize = nBlockSize;
4297
4298         if (fDebug && GetBoolArg("-printpriority"))
4299             printf("CreateNewBlock(): total size %"PRI64u"\n", nBlockSize);
4300
4301         if (pblock->IsProofOfWork())
4302             pblock->vtx[0].vout[0].nValue = GetProofOfWorkReward(pblock->nBits);
4303
4304         // Fill in header
4305         pblock->hashPrevBlock  = pindexPrev->GetBlockHash();
4306         if (pblock->IsProofOfStake())
4307             pblock->nTime      = pblock->vtx[1].nTime; //same as coinstake timestamp
4308         pblock->nTime          = max(pindexPrev->GetMedianTimePast()+1, pblock->GetMaxTransactionTime());
4309         pblock->nTime          = max(pblock->GetBlockTime(), pindexPrev->GetBlockTime() - nMaxClockDrift);
4310         if (pblock->IsProofOfWork())
4311             pblock->UpdateTime(pindexPrev);
4312         pblock->nNonce         = 0;
4313     }
4314
4315     return pblock.release();
4316 }
4317
4318
4319 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
4320 {
4321     // Update nExtraNonce
4322     static uint256 hashPrevBlock;
4323     if (hashPrevBlock != pblock->hashPrevBlock)
4324     {
4325         nExtraNonce = 0;
4326         hashPrevBlock = pblock->hashPrevBlock;
4327     }
4328     ++nExtraNonce;
4329     unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2
4330     pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
4331     assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);
4332
4333     pblock->hashMerkleRoot = pblock->BuildMerkleTree();
4334 }
4335
4336
4337 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
4338 {
4339     //
4340     // Pre-build hash buffers
4341     //
4342     struct
4343     {
4344         struct unnamed2
4345         {
4346             int nVersion;
4347             uint256 hashPrevBlock;
4348             uint256 hashMerkleRoot;
4349             unsigned int nTime;
4350             unsigned int nBits;
4351             unsigned int nNonce;
4352         }
4353         block;
4354         unsigned char pchPadding0[64];
4355         uint256 hash1;
4356         unsigned char pchPadding1[64];
4357     }
4358     tmp;
4359     memset(&tmp, 0, sizeof(tmp));
4360
4361     tmp.block.nVersion       = pblock->nVersion;
4362     tmp.block.hashPrevBlock  = pblock->hashPrevBlock;
4363     tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
4364     tmp.block.nTime          = pblock->nTime;
4365     tmp.block.nBits          = pblock->nBits;
4366     tmp.block.nNonce         = pblock->nNonce;
4367
4368     FormatHashBlocks(&tmp.block, sizeof(tmp.block));
4369     FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
4370
4371     // Byte swap all the input buffer
4372     for (unsigned int i = 0; i < sizeof(tmp)/4; i++)
4373         ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
4374
4375     // Precalc the first half of the first hash, which stays constant
4376     SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
4377
4378     memcpy(pdata, &tmp.block, 128);
4379     memcpy(phash1, &tmp.hash1, 64);
4380 }
4381
4382
4383 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
4384 {
4385     uint256 hash = pblock->GetHash();
4386     uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
4387
4388     if (hash > hashTarget && pblock->IsProofOfWork())
4389         return error("BitcoinMiner : proof-of-work not meeting target");
4390
4391     //// debug print
4392     printf("BitcoinMiner:\n");
4393     printf("new block found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
4394     pblock->print();
4395     printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
4396
4397     // Found a solution
4398     {
4399         LOCK(cs_main);
4400         if (pblock->hashPrevBlock != hashBestChain)
4401             return error("BitcoinMiner : generated block is stale");
4402
4403         // Remove key from key pool
4404         reservekey.KeepKey();
4405
4406         // Track how many getdata requests this block gets
4407         {
4408             LOCK(wallet.cs_wallet);
4409             wallet.mapRequestCount[pblock->GetHash()] = 0;
4410         }
4411
4412         // Process this block the same as if we had received it from another node
4413         if (!ProcessBlock(NULL, pblock))
4414             return error("BitcoinMiner : ProcessBlock, block not accepted");
4415     }
4416
4417     return true;
4418 }
4419
4420 void static ThreadBitcoinMiner(void* parg);
4421
4422 static bool fGenerateBitcoins = false;
4423 static bool fLimitProcessors = false;
4424 static int nLimitProcessors = -1;
4425
4426 void BitcoinMiner(CWallet *pwallet, bool fProofOfStake)
4427 {
4428     SetThreadPriority(THREAD_PRIORITY_LOWEST);
4429
4430     // Make this thread recognisable as the mining thread
4431     RenameThread("bitcoin-miner");
4432
4433     // Each thread has its own key and counter
4434     CReserveKey reservekey(pwallet);
4435     unsigned int nExtraNonce = 0;
4436
4437     while (fProofOfStake)
4438     {
4439         if (fShutdown)
4440             return;
4441         while (vNodes.empty() || IsInitialBlockDownload())
4442         {
4443             Sleep(1000);
4444             if (fShutdown)
4445                 return;
4446             if (!fProofOfStake)
4447                 return;
4448         }
4449
4450         while (pwallet->IsLocked())
4451         {
4452             strMintWarning = strMintMessage;
4453             Sleep(1000);
4454         }
4455         strMintWarning = "";
4456
4457         //
4458         // Create new block
4459         //
4460         CBlockIndex* pindexPrev = pindexBest;
4461
4462         auto_ptr<CBlock> pblock(CreateNewBlock(pwallet, fProofOfStake));
4463         if (!pblock.get())
4464             return;
4465         IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
4466
4467         if (fProofOfStake)
4468         {
4469             // ppcoin: if proof-of-stake block found then process block
4470             if (pblock->IsProofOfStake())
4471             {
4472                 if (!pblock->SignBlock(*pwalletMain))
4473                 {
4474                     strMintWarning = strMintMessage;
4475                     continue;
4476                 }
4477                 strMintWarning = "";
4478                 printf("StakeMiner : proof-of-stake block found %s\n", pblock->GetHash().ToString().c_str()); 
4479                 SetThreadPriority(THREAD_PRIORITY_NORMAL);
4480                 CheckWork(pblock.get(), *pwalletMain, reservekey);
4481                 SetThreadPriority(THREAD_PRIORITY_LOWEST);
4482             }
4483             Sleep(500);
4484             continue;
4485         }
4486     }
4487 }
4488
4489 void static ThreadBitcoinMiner(void* parg)
4490 {
4491     CWallet* pwallet = (CWallet*)parg;
4492     try
4493     {
4494         vnThreadsRunning[THREAD_MINER]++;
4495         BitcoinMiner(pwallet, false);
4496         vnThreadsRunning[THREAD_MINER]--;
4497     }
4498     catch (std::exception& e) {
4499         vnThreadsRunning[THREAD_MINER]--;
4500         PrintException(&e, "ThreadBitcoinMiner()");
4501     } catch (...) {
4502         vnThreadsRunning[THREAD_MINER]--;
4503         PrintException(NULL, "ThreadBitcoinMiner()");
4504     }
4505     nHPSTimerStart = 0;
4506     if (vnThreadsRunning[THREAD_MINER] == 0)
4507         dHashesPerSec = 0;
4508     printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[THREAD_MINER]);
4509 }
4510
4511
4512 void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
4513 {
4514     fGenerateBitcoins = fGenerate;
4515     nLimitProcessors = GetArg("-genproclimit", -1);
4516     if (nLimitProcessors == 0)
4517         fGenerateBitcoins = false;
4518     fLimitProcessors = (nLimitProcessors != -1);
4519
4520     if (fGenerate)
4521     {
4522         int nProcessors = boost::thread::hardware_concurrency();
4523         printf("%d processors\n", nProcessors);
4524         if (nProcessors < 1)
4525             nProcessors = 1;
4526         if (fLimitProcessors && nProcessors > nLimitProcessors)
4527             nProcessors = nLimitProcessors;
4528         int nAddThreads = nProcessors - vnThreadsRunning[THREAD_MINER];
4529         printf("Starting %d BitcoinMiner threads\n", nAddThreads);
4530         for (int i = 0; i < nAddThreads; i++)
4531         {
4532             if (!NewThread(ThreadBitcoinMiner, pwallet))
4533                 printf("Error: NewThread(ThreadBitcoinMiner) failed\n");
4534             Sleep(10);
4535         }
4536     }
4537 }